Skip to content

Commit

Permalink
chore: dropped support for python 3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
Lucino772 committed May 5, 2022
1 parent d2ec2ae commit 36a1589
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6, 3.7, 3.8, 3.9]
python-version: [3.7, 3.8, 3.9]

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import nox


@nox.session(python=["3.6", "3.7", "3.8", "3.9"])
@nox.session(python=["3.7", "3.8", "3.9"])
def tests(session: nox.Session):
session.install("-r", "requirements/requirements-tests.txt")
session.install(".")
Expand Down
1 change: 0 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ keywords = minecraft mojang python3
classifiers =
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Expand Down

0 comments on commit 36a1589

Please sign in to comment.