Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
require python >=3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
j-tr committed Nov 28, 2023
1 parent 76629b0 commit 3f280c3
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 8 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,7 @@ jobs:
python-version:
- "3.8"
- "3.9"
# temporarily remove because Ray doesn't support yet
# https://github.com/ray-project/ray/issues/19116
# - "3.10"
- "3.10"
fail-fast: false
steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Released on November 27th, 2023.

### Added

- Support Python 3.10
- Support for Python 3.10

## 0.2.5

Expand Down
1 change: 0 additions & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ mkdocstrings[python]
isort
pre-commit
pytest-asyncio
mock; python_version < '3.8'
mkdocs-gen-files
interrogate
coverage
Expand Down
1 change: 0 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
prefect>=2.13.5
ray[default] >= 2.0.0
pickle5 >= 0.0.11; python_version < '3.8'
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
packages=find_packages(exclude=("tests", "docs")),
python_requires=">=3.7",
python_requires=">=3.8",
install_requires=install_requires,
extras_require={"dev": dev_requires},
classifiers=[
Expand All @@ -33,7 +33,6 @@
"Intended Audience :: System Administrators",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
Expand Down

0 comments on commit 3f280c3

Please sign in to comment.