Skip to content

Commit

Permalink
hotfix: Stop poetry upgrade to 2.0 for pipelines (#132)
Browse files Browse the repository at this point in the history
* build: Avoid upgrading poetry to 2.0 as it breaks the pipelines

* docs: Update changelog
  • Loading branch information
lorenzomammana authored Jan 16, 2025
1 parent fb9e705 commit 4d49d7d
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ jobs:

- name: Install Dependencies
run: |
python -m pip install -U pip poetry
python -m pip install -U pip
curl -sSL https://install.python-poetry.org | python3 - --version 1.8.4
python -m poetry install --no-cache --with docs
- name: Determine Version
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- uses: actions/checkout@v3
- name: Build distribution 📦
run: |
curl -sSL https://install.python-poetry.org | python3 -
curl -sSL https://install.python-poetry.org | python3 - --version 1.8.4
poetry build
- name: Publish distribution 📦 to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
setup.py
- name: Install Package
run: |
curl -sSL https://install.python-poetry.org | python3 -
curl -sSL https://install.python-poetry.org | python3 - --version 1.8.4
poetry install --no-cache --with test -E onnx
- name: Run Tests
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
# Changelog
All notable changes to this project will be documented in this file.

### [2.2.7]

#### Fixed

- Avoid upgrading poetry to 2.0 as it breaks the pipelines

### [2.2.6]

#### Updated
Expand Down

0 comments on commit 4d49d7d

Please sign in to comment.