Skip to content

Commit 6d82f52

Browse files
committed
Support Python 3.10 to 3.14
1 parent 832a3e1 commit 6d82f52

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.github/workflows/build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
10+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
1111
steps:
1212
- uses: actions/checkout@v3
1313

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55

66
#### Changed
77

8+
* Stop supporting Python 3.8 and 3.9 and support Python 3.13 and 3.14
9+
* Move the build system from `poetry-core` to `hatchling` [[#43](https://github.com/multimeric/Unipressed/pull/43)]
810
* Regenerated the generated code. For the detailed changes please refer to the [git diff](https://github.com/multimeric/Unipressed/commit/6ff916761afe9801f75b28d6bd21ec141109ea62).
911

1012
### 1.4.0

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description = "Comprehensive Python client for the Uniprot REST API"
55
authors = [{name = "Michael Milton", email = "michael.r.milton@gmail.com"}]
66
license = {text = "MIT"}
77
readme = "README.md"
8-
requires-python = ">=3.8"
8+
requires-python = ">=3.10"
99
dependencies = [
1010
"requests>=2.28.1",
1111
"typing-extensions>=4.3.0",

0 commit comments

Comments
 (0)