Skip to content

Commit

Permalink
📦 Unpin lxml restriction and add maykin local version number
Browse files Browse the repository at this point in the history
Due to a regression in lxml/libxml2/... related to dynamic/static
linking, you shouldn't install lxml from wheels but instead use the
--no-binary lxml flag to build from source.

Additionally, we track the upstream version but add a local version
label to figure out which maykin version we're dealing with.
  • Loading branch information
sergei-maertens authored and SilviaAmAm committed Nov 3, 2023
1 parent f6d1fbd commit 392bc97
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

setup(
name='maykin-python3-saml',
version='1.14.0',
version='1.14.0.post0', # can't use PEP 440 local versions with PyPI
description='Onelogin Python Toolkit. Add SAML support to your Python software using this library',
classifiers=[
'Development Status :: 5 - Production/Stable',
Expand Down Expand Up @@ -34,7 +34,7 @@
},
test_suite='tests',
install_requires=[
'lxml>=4.6.5, !=4.7.0',
'lxml>=4.7.1',
'isodate>=0.6.1',
'xmlsec>=1.3.9',
'defusedxml>=0.5.0',
Expand Down

0 comments on commit 392bc97

Please sign in to comment.