Skip to content

Commit 46ed16b

Browse files
committed
Add support for python 3.12
1 parent ee8cb75 commit 46ed16b

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/deploy-pypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
fail-fast: false
1414
matrix:
15-
python-version: ["3.8", "3.9", "3.10", "3.11"]
15+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
1616
os: [ubuntu-latest, macOS-latest, windows-latest]
1717
steps:
1818
- uses: actions/checkout@v2

.github/workflows/test-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
fail-fast: false
1515
matrix:
16-
python-version: ["3.8", "3.9", "3.10", "3.11"]
16+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
1717
os: [ubuntu-latest, macOS-latest, windows-latest]
1818
steps:
1919
- uses: actions/checkout@v2

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ exclude = **/__init__.py, docs/source/conf.py
1414
;file.py: error
1515

1616
[requires]
17-
python_version = ">=3.8,<3.12"
17+
python_version = ">=3.8,<3.13"
1818

1919
# See the docstring in versioneer.py for instructions. Note that you must
2020
# re-run 'versioneer.py setup' after changing this section, and commit the

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
URL_ISSUES = "https://github.com/scikit-learn-contrib/hiclass/issues"
2424
2525
AUTHOR = "Fabio Malcher Miranda, Niklas Koehnecke"
26-
REQUIRES_PYTHON = ">=3.8,<3.12"
26+
REQUIRES_PYTHON = ">=3.8,<3.13"
2727
KEYWORDS = ["hierarchical classification"]
2828
DACS_SOFTWARE = "https://gitlab.com/dacs-hpi"
2929
# What packages are required for this module to be executed?

0 commit comments

Comments
 (0)