Skip to content

Commit

Permalink
Cleaning up Python 3.6 from tox and adding quotation marks for Python…
Browse files Browse the repository at this point in the history
… versions in python-package workflow
  • Loading branch information
mirai-mjelavic committed May 15, 2024
1 parent 0445653 commit a007f56
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8, 3.9, 3.10]
python-version: ["3.7", "3.8", "3.9", "3.10"]

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
# this is a list of possible environments to test in. Usually one at most will work when running tox in a virtualenv.
envlist = py36,py37,py38,py39,py310
envlist = py37,py38,py39,py310
skip_missing_interpreters = true

skipsdist = true
Expand Down

0 comments on commit a007f56

Please sign in to comment.