Skip to content
Merged
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
4 changes: 2 additions & 2 deletions .github/workflows/snyk-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
steps:
- uses: actions/checkout@master
- name: Run Snyk for vulnerabilities
uses: snyk/actions/python-3.9@master
uses: snyk/actions/python-3.10@master
continue-on-error: true # To make sure that SARIF upload gets called
env:
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
Expand All @@ -34,7 +34,7 @@ jobs:
steps:
- uses: actions/checkout@master
- name: Run Snyk for static code check
uses: snyk/actions/python-3.9@master
uses: snyk/actions/python-3.10@master
continue-on-error: true # To make sure that SARIF upload gets called
env:
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
Expand Down
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,24 @@ 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.0] - 2026-02-11

### Removed
- Python 3.9 support. Minimum required Python version is now 3.10.

### Changed
- Changed some dependencies:

| Dependency | From | To |
|------------|----------|----------|
| pyopenssl | ~=25.3.0 | ~=26.0.0 |
| pytz | ~=2025.2 | ~=2026.1 |
| pebble | ~=5.1.3 | ~=5.2.0 |
| pytest | ~=8.4.2 | ~=9.0.0 |
| pytest-cov | ~=5.0.0 | ~=6.0.0 |
| responses | ~=0.25.8 | ~=0.26.0 |


## [6.0.7] - 2026-02-11

### Changed
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ This is the SDK to access Devo directly from Python. It can be used to:

## Requirements

The Devo SDK for Python requires Python 3.9+
The Devo SDK for Python requires Python 3.10+

## Compatibility

- Tested compatibility for python 3.9, 3.10, 3.11, 3.12 and 3.13
- Tested compatibility for python 3.10, 3.11, 3.12 and 3.13

## Quick Start

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__ = "6.0.7"
__version__ = "7.0.0"
__author__ = "Devo"
__author_email__ = "support@devo.com"
__license__ = "MIT"
Expand Down
8 changes: 4 additions & 4 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.1.3
pebble~=5.2.0
pipdeptree~=2.30.0
pytest~=8.4.2
pytest-cov~=5.0.0
pytest~=9.0.0
pytest-cov~=6.0.0
pytest-timeout~=2.4.0
responses~=0.25.8
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
pem~=23.1.0
pyopenssl~=25.3.0
pyopenssl~=26.0.0
pyyaml~=6.0.3
pytz~=2025.2
pytz~=2026.1
requests~=2.32
14 changes: 7 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
Expand All @@ -30,21 +29,21 @@
INSTALL_REQUIRES = [
"click~=8.3.1",
"pem~=23.1.0",
"pyopenssl~=25.3.0",
"pytz~=2025.2",
"pyopenssl~=26.0.0",
"pytz~=2026.1",
"pyyaml~=6.0.3",
"requests~=2.32",
]
EXTRAS_REQUIRE = {
"dev": [
"mock~=5.2.0",
"msgpack~=1.1.2",
"pebble~=5.1.3",
"pebble~=5.2.0",
"pipdeptree~=2.30.0",
"pytest~=8.4.2",
"pytest-cov~=5.0.0",
"pytest~=9.0.0",
"pytest-cov~=6.0.0",
"pytest-timeout~=2.4.0",
"responses~=0.25.8",
"responses~=0.26.0",
]
}
CLI = [
Expand Down Expand Up @@ -84,6 +83,7 @@ def find_meta(meta):
long_description = re.sub(pattern, replace, fh.read(), flags=re.MULTILINE)

setup(
python_requires=">=3.10",
author="Devo, Inc.",
author_email="support@devo.com",
description="Devo Software Development Kit for Python.",
Expand Down
Loading