Skip to content

Commit 846d1af

Browse files
authored
Merge pull request #32 from litteratum/30-add-python-313-support
30: support for Python 3.13
2 parents 8f021db + 2a83205 commit 846d1af

4 files changed

Lines changed: 19 additions & 18 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
fail-fast: false
1717
matrix:
1818
os: ["ubuntu-latest"]
19-
python-version: ["3.9", "3.11", "3.12"]
19+
python-version: ["3.9", "3.11", "3.12", "3.13"]
2020
defaults:
2121
run:
2222
shell: bash

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
nox.options.sessions = ["lint", "tests"]
77

88

9-
@nox.session(python=["3.9", "3.11", "3.12"])
9+
@nox.session(python=["3.9", "3.11", "3.12", "3.13"])
1010
def tests(session):
1111
"""Run tests."""
1212
session.run("make", "testdeps", external=True)

poetry.lock

Lines changed: 15 additions & 15 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ classifiers=[
1414
"Programming Language :: Python :: 3.9",
1515
"Programming Language :: Python :: 3.11",
1616
"Programming Language :: Python :: 3.12",
17+
"Programming Language :: Python :: 3.13",
1718
"Programming Language :: Python :: 3 :: Only",
1819
"Programming Language :: Python :: Implementation :: CPython",
1920
"Topic :: Software Development :: Libraries",
@@ -23,7 +24,7 @@ classifiers=[
2324
]
2425

2526
[tool.poetry.dependencies]
26-
python = ">=3.9, <3.13"
27+
python = "^3.9"
2728
pycryptodome = "^3.17"
2829
httprest = "^0.3"
2930

0 commit comments

Comments
 (0)