Skip to content

Commit 8785a51

Browse files
chore(deps): bump poetry from 1.8.5 to 2.0.1 (#140)
Remove support for Python 3.8 to use Poetry 2. Fix `pyproject.toml` properties. Related to #134 Depends-On: #142
1 parent 2c2a501 commit 8785a51

File tree

6 files changed

+79
-53
lines changed

6 files changed

+79
-53
lines changed

.github/workflows/ci.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@ jobs:
1414
runs-on: ubuntu-latest
1515
strategy:
1616
matrix:
17-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
17+
python-version: ["3.9", "3.10", "3.11", "3.12"]
1818
steps:
1919
- uses: actions/[email protected]
2020
- uses: actions/[email protected]
2121
with:
2222
python-version: "${{ matrix.python-version }}"
2323
- run: |
2424
pip install -r requirements-poetry.txt
25-
poetry install --sync
25+
poetry sync
2626
poetry run poe linters
2727
poetry run poe test
2828
poetry build

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
git tag $(poetry version --short)
2121
git push origin $(poetry version --short)
2222
poetry self add poetry-version-plugin
23-
poetry install --sync
23+
poetry sync
2424
poetry build
2525
- name: Publish package distributions to PyPI
2626
uses: pypa/gh-action-pypi-publish@release/v1

0 commit comments

Comments
 (0)