Skip to content

Commit

Permalink
Merge pull request #205 from facultyai/drop-support-old-python-versions
Browse files Browse the repository at this point in the history
Drop support for unsupported Python versions
  • Loading branch information
acroz authored Aug 9, 2023
2 parents 147c45d + 4bffb7c commit ccc009e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python: [3.6, 3.7, 3.8, 3.9, '3.10']
python: [3.8, 3.9, '3.10', 3.11]
steps:
- uses: actions/checkout@v2
- name: Setup Python
Expand All @@ -36,7 +36,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v1
with:
python-version: 3.9
python-version: 3.11
- name: Install Tox
run: pip install tox
- name: Run linter
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def load_readme():
license="Apache Software License",
packages=find_packages(),
setup_requires=["setuptools_scm"],
python_requires=">=3.6",
python_requires=">=3.8",
install_requires=[
"requests",
"pytz",
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py{36,37,38,39,310}, flake8, black, license
envlist = py{38,39,310,311}, flake8, black, license

[testenv]
sitepackages = False
Expand Down

0 comments on commit ccc009e

Please sign in to comment.