Skip to content

Commit

Permalink
Merge pull request #16: update outdated cryptography lib
Browse files Browse the repository at this point in the history
  • Loading branch information
pawel-kow authored Feb 18, 2024
2 parents 33eec16 + f572aef commit d845f3f
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 8 deletions.
5 changes: 3 additions & 2 deletions requirements-test.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
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
future>=0.18.3
ipaddress>=1.0.23
linecache2>=1.0.0
publicsuffix>=1.1.1
Expand Down
5 changes: 3 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
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
future==0.18.3
ipaddress==1.0.23
publicsuffix==1.1.1
publicsuffixlist==0.7.7
Expand Down
8 changes: 4 additions & 4 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 @@ -34,8 +33,9 @@
'publicsuffix >= 1.1.0',
'publicsuffixlist >= 0.7.7',
'six >= 1.12.0',
'future >= 0.18.1',
'cryptography >= 3.3.2'
'future >= 0.18.3',
'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 d845f3f

Please sign in to comment.