Skip to content

Commit

Permalink
Merge pull request #1892 from backend-developers-ltd/drop_py38
Browse files Browse the repository at this point in the history
Drop python 3.8 support
  • Loading branch information
gus-opentensor committed May 17, 2024
2 parents d8f7fea + b5ac175 commit 0a44098
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 deletions.
7 changes: 2 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -278,9 +278,6 @@ jobs:
workflows:
compatibility_checks:
jobs:
- check_compatibility:
python_version: "3.8"
name: check-compatibility-3.8
- check_compatibility:
python_version: "3.9"
name: check-compatibility-3.9
Expand All @@ -294,7 +291,7 @@ workflows:
pr-requirements:
jobs:
- black:
python-version: "3.8.12"
python-version: "3.9.13"
- build-and-test:
matrix:
parameters:
Expand All @@ -305,7 +302,7 @@ workflows:
- lint-and-type-check:
matrix:
parameters:
python-version: ["3.8.12", "3.9.13", "3.10.6"]
python-version: ["3.9.13", "3.10.6", "3.11.4"]
requires:
- build-and-test
#- coveralls:
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def read_requirements(path):
include_package_data=True,
author_email="",
license="MIT",
python_requires=">=3.8",
python_requires=">=3.9",
install_requires=requirements,
extras_require={
"dev": extra_requirements_dev,
Expand All @@ -85,9 +85,9 @@ def read_requirements(path):
# Pick your license as you wish
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
Expand Down

0 comments on commit 0a44098

Please sign in to comment.