Skip to content

Commit

Permalink
Add other popular python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
rbonghi committed Jan 4, 2023
1 parent 5c57517 commit 18871b6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-and-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
strategy:
# max-parallel: 1
matrix:
python-version: ["2.7", "3.8", "3.9", "3.10"]
python-version: ["2.7", "3.6", "3.8", "3.9", "3.10", "3.11"]

steps:
- run: echo "Branch $GITHUB_REF"
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -219,11 +219,11 @@ def run(self):
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: POSIX :: Linux"],
# Requisites
# https://packaging.python.org/guides/distributing-packages-using-setuptools/#python-requires
Expand Down
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@


[tox]
envlist = py{2.7,3.6,3.8,3.9,3.10}
envlist = py{2.7,3.6,3.8,3.9,3.10,3.11}
skip_missing_interpreters = true

[testenv]
Expand All @@ -30,6 +30,7 @@ basepython =
py3.8: python3.8
py3.9: python3.9
py3.10: python3.10
py3.11: python3.11
deps =
# Reference https://github.com/mgedmin/check-manifest/issues/98
check-manifest==0.41
Expand Down

0 comments on commit 18871b6

Please sign in to comment.