Skip to content

Commit

Permalink
Merge pull request #19 from sisp/fix
Browse files Browse the repository at this point in the history
Fix dependency manifest and CI
  • Loading branch information
timofurrer authored Mar 24, 2024
2 parents 6641cde + 5c013e8 commit ffdbc35
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,12 @@ on: [push, pull_request]

jobs:
ci:
runs-on: ${{ matrix.os }}
runs-on: ${{ matrix.python-version == '3.6' && 'ubuntu-20.04' || 'ubuntu-latest' }}
strategy:
fail-fast: false
max-parallel: 4
matrix:
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
os: [ubuntu-latest]

steps:
- uses: actions/checkout@v1
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ click = ">=7"
[tool.poetry.dev-dependencies]
pytest = "^6.2.5"
black = "^21.9b0"
isort = "^5.9.3"
isort = {version = "^5.9.3", python = "<4"}
flake8 = "^3.9.2"
mypy = "^0.910"

Expand Down

0 comments on commit ffdbc35

Please sign in to comment.