Skip to content

Commit

Permalink
Run checkstyle only on Python >= 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
rovellipaolo committed Apr 1, 2024
1 parent 057b1f9 commit b010fe4
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 26 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
python-version: ["3.8", "3.10", "3.12"]
python-version: ["3.10", "3.11", "3.12"]
exclude:
- os: macos-latest
python-version: "3.8"
- os: macos-latest
python-version: "3.10"
- os: macos-latest
python-version: "3.11"
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -29,6 +29,7 @@ jobs:
make build
pip install coveralls
- name: Checkstyle
if: ${{ matrix.python-version != "3.10" }}
run: |
make checkstyle
- name: Tests
Expand Down
3 changes: 0 additions & 3 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,6 @@ pyaxmlparser = "==0.3.*"
python-dateutil = "==2.*"
typing = "==3.*"
tzlocal = "==2.1"
# Needed only for Python < 3.11:
tomli = "==2.*"
typing_extensions = "==4.*"

[dev-packages]
coverage = "==7.*"
Expand Down
23 changes: 3 additions & 20 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit b010fe4

Please sign in to comment.