Skip to content

Commit 30cb1de

Browse files
author
Joakim Nordling
authored
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

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

β€Ž.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)