Skip to content

Commit 43c58d1

Browse files
authored
Merge branch 'main' into recursive-references
2 parents d9cb65d + d8d9cec commit 43c58d1

File tree

7 files changed

+28
-28
lines changed

7 files changed

+28
-28
lines changed

.github/workflows/checks.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ jobs:
1414
os: [ ubuntu-latest, macos-latest, windows-latest ]
1515
runs-on: ${{ matrix.os }}
1616
steps:
17-
- uses: actions/checkout@v2
17+
- uses: actions/checkout@v3
1818
- name: Set up Python
19-
uses: actions/setup-python@v2
19+
uses: actions/setup-python@v3
2020
with:
2121
python-version: ${{ matrix.python }}
2222

@@ -25,7 +25,7 @@ jobs:
2525
run: echo "::set-output name=python_version::$(python --version)"
2626

2727
- name: Cache dependencies
28-
uses: actions/cache@v2
28+
uses: actions/cache@v3
2929
with:
3030
path: .venv
3131
key: ${{ runner.os }}-${{ steps.get_python_version.outputs.python_version }}-dependencies-${{ hashFiles('**/poetry.lock') }}
@@ -80,16 +80,16 @@ jobs:
8080
ports:
8181
- "3000:3000"
8282
steps:
83-
- uses: actions/checkout@v2
83+
- uses: actions/checkout@v3
8484
- name: Set up Python
85-
uses: actions/setup-python@v2
85+
uses: actions/setup-python@v3
8686
with:
8787
python-version: "3.10"
8888
- name: Get Python Version
8989
id: get_python_version
9090
run: echo "::set-output name=python_version::$(python --version)"
9191
- name: Cache dependencies
92-
uses: actions/cache@v2
92+
uses: actions/cache@v3
9393
with:
9494
path: .venv
9595
key: ${{ runner.os }}-${{ steps.get_python_version.outputs.python_version }}-dependencies-${{ hashFiles('**/poetry.lock') }}
@@ -107,7 +107,7 @@ jobs:
107107
- name: Check for any file changes
108108
run: python .github/check_for_changes.py
109109
- name: Cache Generated Client Dependencies
110-
uses: actions/cache@v2
110+
uses: actions/cache@v3
111111
with:
112112
path: integration-tests/.venv
113113
key: ${{ runner.os }}-${{ steps.get_python_version.outputs.python_version }}-integration-dependencies-${{ hashFiles('**/poetry.lock') }}

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

1717
steps:
1818
- name: Checkout repository
19-
uses: actions/checkout@v2
19+
uses: actions/checkout@v3
2020
with:
2121
# We must fetch at least the immediate parents so that if this is
2222
# a pull request then we can checkout the head.

.github/workflows/pythonpublish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ jobs:
88
deploy:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v2
11+
- uses: actions/checkout@v3
1212
- name: Set up Python
13-
uses: actions/setup-python@v2
13+
uses: actions/setup-python@v3
1414
with:
1515
python-version: '3.x'
1616
- name: Install dependencies

end_to_end_tests/golden-record/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,8 @@ Things to know:
6565
1. Every path/method combo becomes a Python module with four functions:
6666
1. `sync`: Blocking request that returns parsed data (if successful) or `None`
6767
1. `sync_detailed`: Blocking request that always returns a `Request`, optionally with `parsed` set if the request was successful.
68-
1. `asyncio`: Like `sync` but the async instead of blocking
69-
1. `asyncio_detailed`: Like `sync_detailed` by async instead of blocking
68+
1. `asyncio`: Like `sync` but async instead of blocking
69+
1. `asyncio_detailed`: Like `sync_detailed` but async instead of blocking
7070

7171
1. All path/query params, and bodies become method arguments.
7272
1. If your endpoint had any tags on it, the first tag will be used as a module name for the function (my_tag above)

integration-tests/poetry.lock

Lines changed: 13 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

integration-tests/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ attrs = ">=21.3.0"
1616
python-dateutil = "^2.8.0"
1717

1818
[tool.poetry.dev-dependencies]
19-
pytest = "^6.2.5"
19+
pytest = "^7.0.0"
2020

2121
[build-system]
2222
requires = ["poetry>=1.0"]

openapi_python_client/templates/README.md.jinja

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,8 @@ Things to know:
6565
1. Every path/method combo becomes a Python module with four functions:
6666
1. `sync`: Blocking request that returns parsed data (if successful) or `None`
6767
1. `sync_detailed`: Blocking request that always returns a `Request`, optionally with `parsed` set if the request was successful.
68-
1. `asyncio`: Like `sync` but the async instead of blocking
69-
1. `asyncio_detailed`: Like `sync_detailed` by async instead of blocking
68+
1. `asyncio`: Like `sync` but async instead of blocking
69+
1. `asyncio_detailed`: Like `sync_detailed` but async instead of blocking
7070

7171
1. All path/query params, and bodies become method arguments.
7272
1. If your endpoint had any tags on it, the first tag will be used as a module name for the function (my_tag above)

0 commit comments

Comments
 (0)