Skip to content

Commit f10d3a8

Browse files
Merge pull request #306 from DevoInc/feature/update-dependencies
Updated some dependencies
2 parents a62df20 + a66d53b commit f10d3a8

8 files changed

Lines changed: 40 additions & 22 deletions

File tree

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,24 @@ All notable changes to this project will be documented in this file.
44

55
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).
66

7+
## [7.0.1] - 2026-06-16
8+
9+
### Changed
10+
- Changed some dependencies:
11+
12+
| Dependency | From | To |
13+
|------------------|----------|----------|
14+
| click | ~=8.3.1 | ~=8.4.1 |
15+
| pyopenssl | ~=26.0.0 | ~=26.3.0 |
16+
| pytz | ~=2026.1 | ~=2026.2 |
17+
| requests | ~=2.32 | ~=2.34.2 |
18+
| msgpack (dev) | ~=1.1.2 | ~=1.2.0 |
19+
| pipdeptree (dev) | ~=2.30.0 | ~=3.1.0 |
20+
| pytest (dev) | ~=9.0.0 | ~=9.1.0 |
21+
| pytest-cov (dev) | ~=6.0.0 | ~=7.1.0 |
22+
| responses (dev) | ~=0.26.0 | ~=0.26.1 |
23+
24+
725
## [7.0.0] - 2026-02-11
826

927
### Removed

devo/__version__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
__description__ = "Devo Python Library."
2-
__url__ = "http://www.devo.com"
3-
__version__ = "7.0.0"
2+
__url__ = "https://www.devo.com"
3+
__version__ = "7.0.1"
44
__author__ = "Devo"
55
__author_email__ = "support@devo.com"
66
__license__ = "MIT"

requirements-test.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
mock~=5.2.0
2-
msgpack~=1.1.2
2+
msgpack~=1.2.0
33
pebble~=5.2.0
4-
pipdeptree~=2.30.0
5-
pytest~=9.0.0
6-
pytest-cov~=6.0.0
4+
pipdeptree~=3.1.0
5+
pytest~=9.1.0
6+
pytest-cov~=7.1.0
77
pytest-timeout~=2.4.0
8-
responses~=0.26.0
8+
responses~=0.26.1

requirements.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
click~=8.3.1
1+
click~=8.4.1
22
pem~=23.1.0
3-
pyopenssl~=26.0.0
3+
pyopenssl~=26.3.0
44
pyyaml~=6.0.3
5-
pytz~=2026.1
6-
requests~=2.32
5+
pytz~=2026.2
6+
requests~=2.34.2

setup.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -27,23 +27,23 @@
2727
"Topic :: Software Development :: Libraries :: Python Modules",
2828
]
2929
INSTALL_REQUIRES = [
30-
"click~=8.3.1",
30+
"click~=8.4.1",
3131
"pem~=23.1.0",
32-
"pyopenssl~=26.0.0",
32+
"pyopenssl~=26.3.0",
3333
"pytz~=2026.1",
3434
"pyyaml~=6.0.3",
35-
"requests~=2.32",
35+
"requests~=2.34.2",
3636
]
3737
EXTRAS_REQUIRE = {
3838
"dev": [
3939
"mock~=5.2.0",
40-
"msgpack~=1.1.2",
40+
"msgpack~=1.2.0",
4141
"pebble~=5.2.0",
42-
"pipdeptree~=2.30.0",
43-
"pytest~=9.0.0",
44-
"pytest-cov~=6.0.0",
42+
"pipdeptree~=3.1.0",
43+
"pytest~=9.1.0",
44+
"pytest-cov~=7.1.0",
4545
"pytest-timeout~=2.4.0",
46-
"responses~=0.26.0",
46+
"responses~=0.26.1",
4747
]
4848
}
4949
CLI = [

tests/integration/resources/local_certs/generate_certificates.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ openssl req \
1414
-newkey rsa:4096 \
1515
-keyout ca/private/ca_key.pem \
1616
-out ca/ca_cert.pem \
17-
-subj "/C=US/ST=Acme State/L=Acme City/O=Acme Inc./CN=0.0.0.0"
17+
-subj "/C=US/ST=Acme State/L=Acme City/O=Acme Inc./CN=Devo Test CA"
1818

1919
# Create server private key and certificate request
2020
mkdir -p server/private

tests/integration/test_sender_send_data.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -732,7 +732,7 @@ def test_fake_get_peer_cert_chain(setup):
732732
chain_certs.append(crypto.load_certificate(crypto.FILETYPE_PEM, str(_ca)))
733733

734734
for a, b in zip(fake_chain_cert, chain_certs):
735-
assert a.get_subject() == b.get_subject()
735+
assert a.to_cryptography() == b.to_cryptography()
736736

737737

738738
def test_open_file(setup):

tests/integration/test_sender_send_lookup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -376,7 +376,7 @@ def test_deprecated_warning(setup):
376376
verify_mode=CERT_NONE,
377377
)
378378
con = Sender(engine_config)
379-
with pytest.warns(DeprecationWarning) as record:
379+
with pytest.warns(DeprecationWarning, match="lookup upload functionality") as record:
380380
lookup = Lookup(name=setup.lookup_name, historic_tag=None, con=con)
381381

382382
with open(setup.lookup_file) as f:

0 commit comments

Comments
 (0)