Skip to content

Commit b5640cb

Browse files
Packaging for python 3.10 (#966)
* Packaging for python 3.10 * changelog
1 parent 3ffd402 commit b5640cb

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

docs/source/changelog.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
Changelog
22
=========
33

4+
Version 2023.3.24
5+
~~~~~~~~~~~~~~~~~
6+
7+
* Compatibility with Python 3.10
8+
* Dropped support for Python 3.7
9+
* Compatibility with scikit-learn 1.2.0 and newer
10+
411
Version 2022.5.27
512
~~~~~~~~~~~~~~~~~
613

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,14 +61,14 @@
6161
"Topic :: Scientific/Engineering",
6262
"License :: OSI Approved :: BSD License",
6363
"Programming Language :: Python :: 3",
64-
"Programming Language :: Python :: 3.7",
6564
"Programming Language :: Python :: 3.8",
6665
"Programming Language :: Python :: 3.9",
66+
"Programming Language :: Python :: 3.10",
6767
],
6868
packages=find_packages(exclude=["docs", "tests", "tests.*", "docs.*"]),
6969
use_scm_version=True,
7070
setup_requires=["setuptools_scm"],
7171
install_requires=install_requires,
7272
extras_require=extras_require,
73-
python_requires=">=3.7",
73+
python_requires=">=3.8",
7474
)

0 commit comments

Comments
 (0)