Skip to content

Commit

Permalink
Merge pull request #217 from ariebovenberg/py-version-constraint
Browse files Browse the repository at this point in the history
Remove Python upper bound version constraint
  • Loading branch information
ariebovenberg authored Feb 4, 2024
2 parents 80f04ac + 7320d55 commit d6f092e
Show file tree
Hide file tree
Showing 5 changed files with 115 additions and 122 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,20 @@ on:
workflow_dispatch:

jobs:
poetry-lockfile-up-to-date:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install 'poetry>=1.7,<1.8'
poetry check --lock
build:
runs-on: ubuntu-latest
strategy:
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Changelog
=========

0.17.2 (2024-02-04)
-------------------

- Remove Python upper version constraint in package metadata

0.17.1 (2023-11-03)
-------------------

Expand Down
2 changes: 1 addition & 1 deletion docs/advanced.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Use the following configuration:
repos:
- repo: https://github.com/ariebovenberg/slotscheck
rev: v0.17.1
rev: v0.17.2
hooks:
- id: slotscheck
# If your Python files are not importable from the project root,
Expand Down
Loading

0 comments on commit d6f092e

Please sign in to comment.