Skip to content

Commit

Permalink
CI: update outdated cryptography lib in full
Browse files Browse the repository at this point in the history
  • Loading branch information
pawel-kow committed Feb 18, 2024
1 parent 2522941 commit f4c36c7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
cffi==1.14.5
cryptography==3.3.2
cryptography==3.3.2; python_version == '2.7'
cryptography==39.0.1; python_version > '2.7'
dnspython==1.16.0
enum34==1.1.10
future==0.18.2
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,14 @@
]

setup(name='domain_connect',
version='0.0.9',
version='0.0.10',
description='Python client library for Domain Connect protocol. See: https://domainconnect.org',
long_description_content_type="text/markdown",
long_description=open('README.md').read(),
author='Pawel Kowalik',
author_email='[email protected]',
url='https://github.com/Domain-Connect/domainconnect_python',
license='https://github.com/Domain-Connect/domainconnect_python/blob/master/LICENSE',
# python 3.5 failing in tests
classifiers=[
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6',
Expand All @@ -35,7 +34,8 @@
'publicsuffixlist >= 0.7.7',
'six >= 1.12.0',
'future >= 0.18.1',
'cryptography >= 3.3.2'
'cryptography==3.3.2; python_version == "2.7"',
'cryptography==39.0.1; python_version > "2.7"'
],
tests_require=test_deps,
extras_require={
Expand Down

0 comments on commit f4c36c7

Please sign in to comment.