Skip to content

Commit 02799df

Browse files
author
Fábio Malcher Miranda
committed
chore: drop Python 3.9 support (require >=3.10) and update CI matrix
1 parent a25a64c commit 02799df

3 files changed

Lines changed: 3 additions & 4 deletions

File tree

.github/workflows/test-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
strategy:
1616
fail-fast: false
1717
matrix:
18-
python-version: ["3.9", "3.10", "3.11", "3.12"]
18+
python-version: ["3.10", "3.11", "3.12"]
1919
os: [ubuntu-latest, macOS-latest, windows-latest]
2020
steps:
2121
- 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.9,<3.13"
17+
python_version = ">=3.10,<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 & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
URL_ISSUES = "https://github.com/scikit-learn-contrib/hiclass/issues"
2424
EMAIL = "fabio.malchermiranda@hpi.de, Niklas.Koehnecke@student.hpi.uni-potsdam.de"
2525
AUTHOR = "Fabio Malcher Miranda, Niklas Koehnecke"
26-
REQUIRES_PYTHON = ">=3.9,<3.13"
26+
REQUIRES_PYTHON = ">=3.10,<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?
@@ -152,7 +152,6 @@ def run(self):
152152
"Operating System :: Unix",
153153
"Operating System :: MacOS",
154154
"Programming Language :: Python :: 3",
155-
"Programming Language :: Python :: 3.9",
156155
"Programming Language :: Python :: 3.10",
157156
"Programming Language :: Python :: 3.11",
158157
"Programming Language :: Python :: 3.12",

0 commit comments

Comments
 (0)