Skip to content

Commit 288acf2

Browse files
chore: Release Pipeline Failure Fix (#704)
### Changes - Fixing the release pipeline
1 parent 88af880 commit 288acf2

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- name: Configure Python
2828
uses: actions/setup-python@v5
2929
with:
30-
python-version: "3.8"
30+
python-version: "3.10"
3131

3232
- name: Configure dependencies
3333
run: |

.github/workflows/publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,17 +70,17 @@ jobs:
7070
- name: Configure Python
7171
uses: actions/setup-python@v5
7272
with:
73-
python-version: "3.8"
73+
python-version: "3.9"
7474

7575
- name: Configure dependencies
7676
run: |
7777
pip install --user --upgrade pip
7878
pip install --user pipx
7979
pipx ensurepath
80-
pipx install poetry==1.4.2
80+
pipx install poetry
8181
poetry config virtualenvs.in-project true
8282
poetry install --with dev
83-
poetry self add "poetry-dynamic-versioning[plugin]==1.1.1"
83+
poetry self add "poetry-dynamic-versioning[plugin]"
8484
8585
- name: Build release
8686
run: |

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ pytest-asyncio==0.23.8 ; python_version >= "3.7" and python_version < "4.0"
3030
pytest-cov==4.1.0 ; python_version >= "3.7" and python_version < "4.0"
3131
pytest==7.4.0 ; python_version >= "3.7" and python_version < "4.0"
3232
pyyaml==6.0.2 ; python_version >= "3.7" and python_version < "4.0"
33-
requests==2.32.3 ; python_version >= "3.7" and python_version < "4.0"
33+
requests==2.32.4 ; python_version >= "3.7" and python_version < "4.0"
3434
responses==0.23.3 ; python_version >= "3.7" and python_version < "4.0"
3535
tomli==2.0.1 ; python_version >= "3.7" and python_full_version <= "3.11.0a6"
3636
types-pyyaml==6.0.12.11 ; python_version >= "3.7" and python_version < "4.0"

0 commit comments

Comments
 (0)