Skip to content

Commit 1f259c1

Browse files
committed
Update Python versions supported
- Drop 3.7 and 3.8 - Add 3.12 and 3.13
1 parent 17f976c commit 1f259c1

File tree

2 files changed

+4
-7
lines changed

2 files changed

+4
-7
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ jobs:
1616
fail-fast: false
1717
matrix:
1818
python-version:
19+
- '3.13'
20+
- '3.12'
1921
- '3.11'
2022
- '3.10'
2123
- '3.9'
22-
- '3.8'
23-
- '3.7'
2424

2525
steps:
2626
- uses: actions/checkout@v1

pyproject.toml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ repository = "https://github.com/IBM/python-itoolkit"
88
documentation = "https://python-itoolkit.readthedocs.io"
99
license = "MIT"
1010
authors = [
11-
"Kevin Adler <[email protected]>",
11+
"Korinne Adler <[email protected]>",
1212
"Tony Cairns <[email protected]>",
1313
]
1414
packages = [
@@ -30,7 +30,7 @@ classifiers = [
3030
]
3131

3232
[tool.poetry.dependencies]
33-
python = ">=3.6.0,<3.12.0"
33+
python = ">=3.9.0,<3.14.0"
3434

3535

3636
[tool.poetry.dev-dependencies]
@@ -41,15 +41,12 @@ pytest = [
4141
]
4242
pytest-mock = [
4343
{ version = ">=3.7.0", python = ">=3.7" },
44-
{ version = ">=1.10.0", python = "<3.7" },
4544
]
4645
coverage = [
4746
{ version = ">=6.3.0", python = ">=3.7" },
48-
{ version = ">=4.5.4", python = "<3.7" },
4947
]
5048
coveralls = [
5149
{ version = ">=3.3.0", python = ">=3.5" },
52-
{ version = "<2", python = "<3.5" },
5350
]
5451
pytest-cov = "~2.8"
5552
flake8 = ">=3.6.0"

0 commit comments

Comments
 (0)