Skip to content

Commit a81e42d

Browse files
committed
fix: Fix dependency versions to compatible release
1 parent 538955f commit a81e42d

File tree

4 files changed

+21
-22
lines changed

4 files changed

+21
-22
lines changed

CHANGELOG.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
99
### Changed
1010

1111
- `click` dependency upgraded from `click==8.1.3` to `click==8.1.7`
12-
- `pem` dependency open from `pem==21.2.0` to `pem>=21.2.0`
13-
- `pyyaml` dependency open from `pyyaml==6.0.1` to `pyyaml>=6.0.1`
12+
- `pem` dependency open from `pem==21.2.0` to `pem~=21.2.0`
13+
- `pyyaml` dependency open from `pyyaml==6.0.1` to `pyyaml~=6.0.1`
1414
- Code reformatted with `yapf`, `black`, `isort` and `flake8` tools.
1515

1616
### Security
1717

18-
- `certifi` dependency open from `certifi==2021.10.8` to `certifi>=2023.7.22`
19-
- `cryptography` dependency upgraded from `cryptography==41.0.1` to `cryptography>=41.0.3`
18+
- `certifi` dependency open from `certifi==2021.10.8` to `certifi~=2023.7.22`
19+
- `cryptography` dependency upgraded from `cryptography==41.0.1` to `cryptography~=41.0.3`
2020

2121
## [5.1.4] - 2023-06-13
2222

requirements-test.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
stopit==1.1.2
2-
msgpack>=1.0.4
3-
responses>=0.22.0
4-
pipdeptree>=2.5.0
2+
msgpack~=1.0.4
3+
responses~=0.22.0
4+
pipdeptree~=2.5.0

requirements.txt

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
click==8.1.7
22
PyYAML==6.0.1
3-
requests>=2.31
4-
pem>=21.2.0
5-
pyopenssl>=23.0
6-
urllib3>=1.26.5
7-
pytz>=2019.3
8-
# Required because of vulnerability
9-
certifi>=2023.7.22
10-
cryptography>=41.0.3
3+
requests~=2.31
4+
pem~=21.2.0
5+
pyopenssl~=23.0
6+
urllib3~=1.26.5
7+
pytz~=2019.3
8+
certifi~=2023.7.22
9+
cryptography~=41.0.3

setup.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,15 @@
2626
"Topic :: Software Development :: Libraries :: Python Modules",
2727
]
2828
INSTALL_REQUIRES = [
29-
"requests>=2.31",
29+
"requests~=2.31",
3030
"click==8.1.7",
3131
"PyYAML==6.0.1",
32-
"pem>=21.2.0",
33-
"pyopenssl>=23.0",
34-
"urllib3>=1.26.5",
35-
"pytz>=2019.3",
36-
"certifi>=2023.7.22",
37-
"cryptography>=41.0.3",
32+
"pem~=21.2.0",
33+
"pyopenssl~=23.0",
34+
"urllib3~=1.26.5",
35+
"pytz~=2019.3",
36+
"certifi~=2023.7.22",
37+
"cryptography~=41.0.3",
3838
]
3939
CLI = [
4040
"devo-sender=devo.sender.scripts.sender_cli:cli",

0 commit comments

Comments
 (0)