Skip to content
Open
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
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,20 @@ 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).

## [7.0.1] - 2026-04-13

### Changed
- Changed some dependencies:

| Dependency | From | To |
|------------------|----------|----------|
| click | ~=8.3.1 | ~=8.3.2 |
| requests | ~=2.32 | ~=2.33.1 |
| pipdeptree (dev) | ~=2.30.0 | ~=2.35.1 |
| pytest (dev) | ~=9.0.0 | ~=9.0.3 |
| pytest-cov (dev) | ~=6.0.0 | ~=7.1.0 |


## [7.0.0] - 2026-02-11

### Removed
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__ = "7.0.0"
__version__ = "7.0.1"
__author__ = "Devo"
__author_email__ = "support@devo.com"
__license__ = "MIT"
Expand Down
6 changes: 3 additions & 3 deletions requirements-test.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
mock~=5.2.0
msgpack~=1.1.2
pebble~=5.2.0
pipdeptree~=2.30.0
pytest~=9.0.0
pytest-cov~=6.0.0
pipdeptree~=2.35.1
pytest~=9.0.3
pytest-cov~=7.1.0
pytest-timeout~=2.4.0
responses~=0.26.0
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
click~=8.3.1
click~=8.3.2
pem~=23.1.0
pyopenssl~=26.0.0
pyyaml~=6.0.3
pytz~=2026.1
requests~=2.32
requests~=2.33.1
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,21 +27,21 @@
"Topic :: Software Development :: Libraries :: Python Modules",
]
INSTALL_REQUIRES = [
"click~=8.3.1",
"click~=8.3.2",
"pem~=23.1.0",
"pyopenssl~=26.0.0",
"pytz~=2026.1",
"pyyaml~=6.0.3",
"requests~=2.32",
"requests~=2.33.1",
]
EXTRAS_REQUIRE = {
"dev": [
"mock~=5.2.0",
"msgpack~=1.1.2",
"pebble~=5.2.0",
"pipdeptree~=2.30.0",
"pytest~=9.0.0",
"pytest-cov~=6.0.0",
"pipdeptree~=2.35.1",
"pytest~=9.0.3",
"pytest-cov~=7.1.0",
"pytest-timeout~=2.4.0",
"responses~=0.26.0",
]
Expand Down
Loading