Skip to content

Commit

Permalink
#163: Remove non-working Python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
MRichards99 committed Jan 15, 2021
1 parent e1341cd commit 8391a5c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
runs-on: ubuntu-16.04
strategy:
matrix:
python-version: ['3.4', '3.5', '3.6', '3.7', '3.8', '3.9', '3.10']
python-version: ['3.4.10', '3.5', '3.6', '3.7', '3.8', '3.9']
name: Python ${{ matrix.python-version }} Build
steps:
- name: Add apt repo
Expand Down
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def safety(session):
session.log("Error: The temporary requirements file could not be closed")


@nox.session(python=["3.4", "3.5", "3.6", "3.7", "3.8", "3.9", "3.10"], reuse_venv=True)
@nox.session(python=["3.4", "3.5", "3.6", "3.7", "3.8", "3.9"], reuse_venv=True)
def tests(session):
args = session.posargs
session.run("poetry", "install", external=True)
Expand Down

0 comments on commit 8391a5c

Please sign in to comment.