Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 9 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -143,10 +143,12 @@ dc = DomainConnect(
- async revert

## CHANGELOG
| version | date | changes |
| ------- | -----------| ------ |
| 0.0.9 | 2021-04-13 | NEW FEATURE: support for openwrt (missing webbrowser module) |
| 0.0.8 | 2020-11-09 | NEW FEATURE: Detailed information on access token request fail |
| 0.0.7 | 2019-10-29 | Bugfix: error when setting up .app domain |
| 0.0.6 | 2019-07-05 | UPDATE: moved from pycrypto to cryptography (due to know security issues) |
| 0.0.5 | 2019-03-12 | NEW FEATURE: url signing capability added |
| version | date | changes |
|---------|------------|---------------------------------------------------------------------------------|
| 0.0.11 | 2024-02-18 | DEPENDENCIES: updated cryptography to the highest one for newer python versions |
| 0.0.10 | 2024-02-18 | DEPENDENCIES: updated cryptography for newer python versions |
| 0.0.9 | 2021-04-13 | NEW FEATURE: support for openwrt (missing webbrowser module) |
| 0.0.8 | 2020-11-09 | NEW FEATURE: Detailed information on access token request fail |
| 0.0.7 | 2019-10-29 | Bugfix: error when setting up .app domain |
| 0.0.6 | 2019-07-05 | UPDATE: moved from pycrypto to cryptography (due to know security issues) |
| 0.0.5 | 2019-03-12 | NEW FEATURE: url signing capability added |
6 changes: 4 additions & 2 deletions requirements-test.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
cffi>=1.14.5
cryptography==3.3.2; python_version == '2.7'
cryptography==39.0.1; python_version > '2.7'
cryptography>=3.3.2; python_version == '2.7'
cryptography>=39.0.1; python_version > '2.7' and python_version < '3.6'
cryptography>=40.0.2; python_version >= '3.6' and python_version < '3.7'
cryptography>=42.0.0; python_version >= '3.7'
dnspython>=1.16.0
enum34>=1.1.10
future>=0.18.3
Expand Down
4 changes: 3 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
cffi==1.14.5
cryptography==3.3.2; python_version == '2.7'
cryptography==39.0.1; python_version > '2.7'
cryptography==39.0.1; python_version > '2.7' and python_version < '3.6'
cryptography==40.0.2; python_version >= '3.6' and python_version < '3.7'
cryptography==42.0.3; python_version >= '3.7'
dnspython==1.16.0
enum34==1.1.10
future==0.18.3
Expand Down
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,10 @@
'publicsuffixlist >= 0.7.7',
'six >= 1.12.0',
'future >= 0.18.3',
'cryptography==3.3.2; python_version == "2.7"',
'cryptography==39.0.1; python_version > "2.7"'
'cryptography>=3.3.2; python_version == "2.7"',
'cryptography>=39.0.1; python_version > "2.7" and python_version < "3.6"',
'cryptography>=40.0.2; python_version >= "3.6" and python_version < "3.7"',
'cryptography>=42.0.0; python_version >= "3.7"',
],
tests_require=test_deps,
extras_require={
Expand Down