Skip to content

Commit

Permalink
fix: pyopenssl dependency bumped
Browse files Browse the repository at this point in the history
  • Loading branch information
JuanFranDevo committed Jan 4, 2023
1 parent 3e05cf3 commit 1f35df7
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [5.0.2] - 2023-01-04
### Fixed
* `pyopenssl` dependency bumped
### Changed
* Error messages added to enum

## [5.0.1] - 2022-12-21
### Fixed
* Error when processing some exceptions
Expand Down
2 changes: 1 addition & 1 deletion devo/__version__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
__description__ = 'Devo Python Library.'
__url__ = 'http://www.devo.com'
__version__ = "5.0.1"
__version__ = "5.0.2"
__author__ = 'Devo'
__author_email__ = '[email protected]'
__license__ = 'MIT'
Expand Down
4 changes: 2 additions & 2 deletions 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.27.1
pem==21.2.0
pyopenssl==22.0.0
pyopenssl==22.1.*
urllib3>=1.26.5
pytz>=2019.3
cryptography<=38.0.4

2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"Topic :: Software Development :: Libraries :: Python Modules",
]
INSTALL_REQUIRES = ['requests==2.27.1', 'click==8.1.3', 'PyYAML==6.0',
'pem==21.2.0', 'pyopenssl==22.0.0', 'urllib3>=1.26.5','pytz>=2019.3']
'pem==21.2.0', 'pyopenssl==22.1.*', 'urllib3>=1.26.5','pytz>=2019.3']
CLI = ['devo-sender=devo.sender.scripts.sender_cli:cli',
'devo-api=devo.api.scripts.client_cli:cli']

Expand Down

0 comments on commit 1f35df7

Please sign in to comment.