Skip to content

Commit

Permalink
Add conditional dependency locks and GitHub Actions workflow for Pyth…
Browse files Browse the repository at this point in the history
…on 3.12.
  • Loading branch information
lapets committed Jun 1, 2024
1 parent 2fe1af2 commit 36df6c6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint-test-cover-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
name: "Python ${{ matrix.python-version }}"
steps:
- uses: actions/checkout@v4
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ test = [
"fountains~=2.2"
]
lint = [
"pylint~=2.17.0"
"pylint~=2.17.0; python_version < '3.12'",
"pylint~=3.2.0; python_version >= '3.12'"
]
coveralls = [
"coveralls~=3.3.1"
Expand Down

0 comments on commit 36df6c6

Please sign in to comment.