We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 17f976c commit 1f259c1Copy full SHA for 1f259c1
.github/workflows/build.yml
@@ -16,11 +16,11 @@ jobs:
16
fail-fast: false
17
matrix:
18
python-version:
19
+ - '3.13'
20
+ - '3.12'
21
- '3.11'
22
- '3.10'
23
- '3.9'
- - '3.8'
- - '3.7'
24
25
steps:
26
- uses: actions/checkout@v1
pyproject.toml
@@ -8,7 +8,7 @@ repository = "https://github.com/IBM/python-itoolkit"
8
documentation = "https://python-itoolkit.readthedocs.io"
9
license = "MIT"
10
authors = [
11
- "Kevin Adler <kadler@us.ibm.com>",
+ "Korinne Adler <kadler@us.ibm.com>",
12
"Tony Cairns <adc@us.ibm.com>",
13
]
14
packages = [
@@ -30,7 +30,7 @@ classifiers = [
30
31
32
[tool.poetry.dependencies]
33
-python = ">=3.6.0,<3.12.0"
+python = ">=3.9.0,<3.14.0"
34
35
36
[tool.poetry.dev-dependencies]
@@ -41,15 +41,12 @@ pytest = [
41
42
pytest-mock = [
43
{ version = ">=3.7.0", python = ">=3.7" },
44
- { version = ">=1.10.0", python = "<3.7" },
45
46
coverage = [
47
{ version = ">=6.3.0", python = ">=3.7" },
48
- { version = ">=4.5.4", python = "<3.7" },
49
50
coveralls = [
51
{ version = ">=3.3.0", python = ">=3.5" },
52
- { version = "<2", python = "<3.5" },
53
54
pytest-cov = "~2.8"
55
flake8 = ">=3.6.0"
0 commit comments