Skip to content

Commit 85ce095

Browse files
Merge pull request MAIF#76 from guerinclement/feature/python3.13
shift python version support
2 parents f00e751 + 538263f commit 85ce095

File tree

2 files changed

+4
-7
lines changed

2 files changed

+4
-7
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
strategy:
99
max-parallel: 1
1010
matrix:
11-
python-version: ["3.9", "3.10", "3.11", "3.12"]
11+
python-version: ["3.10", "3.11", "3.12", "3.13"]
1212
steps:
1313
- uses: actions/checkout@v2
1414
- name: Set up Python ${{ matrix.python-version }}

pyproject.toml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ authors = [
1212
]
1313
description = "Eurybia monitor model drift over time and securize model deployment with data validation"
1414
readme = "README.md"
15-
requires-python = ">=3.9"
15+
requires-python = ">=3.10"
1616
license = {text = "Apache Software License 2.0"}
1717
classifiers = [
1818
"Programming Language :: Python :: 3",
19-
"Programming Language :: Python :: 3.9",
2019
"Programming Language :: Python :: 3.10",
2120
"Programming Language :: Python :: 3.11",
2221
"Programming Language :: Python :: 3.12",
22+
"Programming Language :: Python :: 3.13",
2323
"License :: OSI Approved :: Apache Software License",
2424
"Operating System :: OS Independent",
2525
]
@@ -35,12 +35,9 @@ dependencies = [
3535
]
3636

3737
[project.optional-dependencies] # Optional
38-
all = ["eurybia[dev, test, mypy, ruff]"]
38+
all = ["eurybia[dev, test]"]
3939
dev = ["pre-commit", "mypy", "ruff"]
4040
test = ["pytest", "pytest-cov"]
41-
mypy = ["mypy"]
42-
ruff = ["ruff"]
43-
4441

4542
[tool.setuptools]
4643
package-dir = {"" = "."}

0 commit comments

Comments
 (0)