Skip to content

Commit

Permalink
Merge pull request #195 from DevoInc/fix/pyopenssl-dependency
Browse files Browse the repository at this point in the history
doc: Fix build with correct versions
  • Loading branch information
angel-devo committed Jun 13, 2023
2 parents ebe3faa + 9b1c98b commit 9c97072
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a

### Changed

* `pyopenssl` dependency open from `pyopenssl==23.0.*` to `pyopenssl>=23.0.*`
* `pyopenssl` dependency open from `pyopenssl==23.0.*` to `pyopenssl>=23.0`
* Markdown documents reformated.

## [5.1.3] - 2023-03-23
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ click==8.1.3
PyYAML==6.0
requests>=2.31
pem==21.2.0
pyopenssl>=23.0.*
pyopenssl>=23.0
urllib3>=1.26.5
pytz>=2019.3
# Required because of vulnerability
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Libraries :: Python Modules",
]
INSTALL_REQUIRES = ['requests>=2.27', 'click==8.1.3', 'PyYAML==6.0',
'pem==21.2.0', 'pyopenssl>=23.0.*', 'urllib3>=1.26.5',
'pytz>=2019.3', 'cryptography>=39.0.1']
INSTALL_REQUIRES = ['requests>=2.31', 'click==8.1.3', 'PyYAML==6.0',
'pem==21.2.0', 'pyopenssl>=23.0', 'urllib3>=1.26.5',
'pytz>=2019.3', 'cryptography>=41.0.1']
CLI = ['devo-sender=devo.sender.scripts.sender_cli:cli',
'devo-api=devo.api.scripts.client_cli:cli']

Expand Down

0 comments on commit 9c97072

Please sign in to comment.