Skip to content

Commit 30cb1de

Browse files
Lock poetry to 1.8.5 (#49)
Newer versions use newer metadata than PyPI can handle. Also took the opportunity to change the pipeline that can be used to test pre-release versions of Python to test it on the upcoming 3.14 version.
1 parent 4bde178 commit 30cb1de

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/publish.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
python-version: "3.9"
2020

2121
- name: Install Poetry and pre-commit 💈
22-
run: pip install poetry pre-commit
22+
run: pip install poetry==1.8.5 pre-commit
2323

2424
- name: Install dependencies 🛠
2525
run: poetry install

.github/workflows/test_latest_python.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
strategy:
1111
matrix:
12-
python-version: ["3.12", "3.13"]
12+
python-version: ["3.13", "3.14"]
1313
steps:
1414
- name: Checkout 🔁
1515
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 #v4.1.1
@@ -21,7 +21,7 @@ jobs:
2121
allow-prereleases: true
2222

2323
- name: Install Poetry and pre-commit 💈
24-
run: pip install poetry pre-commit
24+
run: pip install poetry==1.8.5 pre-commit
2525

2626
- name: Install dependencies 🛠
2727
run: poetry install

.github/workflows/tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
python-version: ${{ matrix.python-version }}
2222

2323
- name: Install Poetry and pre-commit 💈
24-
run: pip install poetry pre-commit
24+
run: pip install poetry==1.8.5 pre-commit
2525

2626
- name: Install dependencies 🛠
2727
run: poetry install

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "openapi-to-fastapi"
3-
version = "0.18.1"
3+
version = "0.18.2"
44
description = "Create FastAPI routes from OpenAPI spec"
55
authors = ["IOXIO Ltd"]
66
license = "BSD-3-Clause"

0 commit comments

Comments
 (0)