Skip to content

Commit

Permalink
drop python 3.6 support, add python 3.9 support (#123)
Browse files Browse the repository at this point in the history
  • Loading branch information
fcakyon authored Jun 9, 2021
1 parent e0badf6 commit 82bf1ba
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
matrix:
operating-system: [ubuntu-latest, windows-latest, macos-latest]
python-version: [3.6, 3.7, 3.8]
python-version: [3.7, 3.8, 3.9]
fail-fast: false

steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/package_testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
matrix:
operating-system: [ubuntu-latest, windows-latest, macos-latest]
python-version: [3.6, 3.7, 3.8]
python-version: [3.7, 3.8, 3.9]
mmdet-version: [2.12.0]
fail-fast: false

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def get_version():
long_description_content_type="text/markdown",
url="https://github.com/obss/sahi",
packages=setuptools.find_packages(exclude=["conda", "demo", "tests"]),
python_requires=">=3.6",
python_requires=">=3.7",
install_requires=get_requirements(),
extras_require={
"tests": ["pytest", "mmdet"],
Expand All @@ -45,9 +45,9 @@ def get_version():
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
],
Expand Down

0 comments on commit 82bf1ba

Please sign in to comment.