Skip to content

Commit

Permalink
[SYNPY-1316] Remove cryptography from specific version requirement (#…
Browse files Browse the repository at this point in the history
…1003)

* Remove cryptography dep
  • Loading branch information
BryanFauble committed Nov 1, 2023
1 parent 5e60e0f commit 38182ba
Show file tree
Hide file tree
Showing 2 changed files with 63 additions and 73 deletions.
124 changes: 63 additions & 61 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 0 additions & 12 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -43,25 +43,13 @@ zip_safe = False
include_package_data = True
packages = find:
python_requires = >=3.8
# on Linux specify a cryptography dependency that will not
# require a Rust compiler to compile from source (< 3.4).
# on Linux cryptography is a transitive dependency
# (keyring -> SecretStorage -> cryptography)
# SecretStorage doesn't pin a version so otherwise if cryptography
# is not already installed the dependency will resolve to the latest
# and will require Rust if a precompiled wheel cannot be used
# (e.g. old version of pip or no wheel available for an architecture).
# if a newer version of cryptography is already installed that is
# fine we don't want to trigger a downgrade, hence the conditional
# addition of the versioned dependency.
install_requires =
# "requests>=2.22.0,<2.30.0; python_version<'3.10'",
requests>=2.22.0,<3.0
urllib3>=1.26.18,<2
# "urllib3>=2; python_version>='3.10'",
keyring>=15,<23.5
keyrings.alt==3.1; sys_platform == "linux"
cryptography<3.4; sys_platform == "linux"
deprecated>=1.2.4,<2.0
tests_require =
pytest>=6.0.0,<7.0
Expand Down

0 comments on commit 38182ba

Please sign in to comment.