Skip to content

Commit 38182ba

Browse files
committed
[SYNPY-1316] Remove cryptography from specific version requirement (#1003)
* Remove cryptography dep
1 parent 5e60e0f commit 38182ba

File tree

2 files changed

+63
-73
lines changed

2 files changed

+63
-73
lines changed

Pipfile.lock

Lines changed: 63 additions & 61 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

setup.cfg

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -43,25 +43,13 @@ zip_safe = False
4343
include_package_data = True
4444
packages = find:
4545
python_requires = >=3.8
46-
# on Linux specify a cryptography dependency that will not
47-
# require a Rust compiler to compile from source (< 3.4).
48-
# on Linux cryptography is a transitive dependency
49-
# (keyring -> SecretStorage -> cryptography)
50-
# SecretStorage doesn't pin a version so otherwise if cryptography
51-
# is not already installed the dependency will resolve to the latest
52-
# and will require Rust if a precompiled wheel cannot be used
53-
# (e.g. old version of pip or no wheel available for an architecture).
54-
# if a newer version of cryptography is already installed that is
55-
# fine we don't want to trigger a downgrade, hence the conditional
56-
# addition of the versioned dependency.
5746
install_requires =
5847
# "requests>=2.22.0,<2.30.0; python_version<'3.10'",
5948
requests>=2.22.0,<3.0
6049
urllib3>=1.26.18,<2
6150
# "urllib3>=2; python_version>='3.10'",
6251
keyring>=15,<23.5
6352
keyrings.alt==3.1; sys_platform == "linux"
64-
cryptography<3.4; sys_platform == "linux"
6553
deprecated>=1.2.4,<2.0
6654
tests_require =
6755
pytest>=6.0.0,<7.0

0 commit comments

Comments
 (0)