Skip to content

Commit

Permalink
Packaging for python 3.10 (dask#966)
Browse files Browse the repository at this point in the history
* Packaging for python 3.10

* changelog
  • Loading branch information
TomAugspurger authored Mar 24, 2023
1 parent 3ffd402 commit b5640cb
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions docs/source/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
Changelog
=========

Version 2023.3.24
~~~~~~~~~~~~~~~~~

* Compatibility with Python 3.10
* Dropped support for Python 3.7
* Compatibility with scikit-learn 1.2.0 and newer

Version 2022.5.27
~~~~~~~~~~~~~~~~~

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,14 +61,14 @@
"Topic :: Scientific/Engineering",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
packages=find_packages(exclude=["docs", "tests", "tests.*", "docs.*"]),
use_scm_version=True,
setup_requires=["setuptools_scm"],
install_requires=install_requires,
extras_require=extras_require,
python_requires=">=3.7",
python_requires=">=3.8",
)

0 comments on commit b5640cb

Please sign in to comment.