Skip to content

Commit e0df9d8

Browse files
authored
Merge branch 'main' into patch-1
2 parents 44d0d79 + d7af50c commit e0df9d8

File tree

83 files changed

+6056
-853
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

83 files changed

+6056
-853
lines changed

.github/workflows/build-docs.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
steps:
2020
- uses: actions/checkout@v4
2121
# For pull requests it's not necessary to checkout the code but for the main branch it is
22-
- uses: dorny/paths-filter@v2
22+
- uses: dorny/paths-filter@v3
2323
id: filter
2424
with:
2525
filters: |
@@ -49,7 +49,7 @@ jobs:
4949
uses: actions/setup-python@v5
5050
with:
5151
python-version: "3.11"
52-
- uses: actions/cache@v3
52+
- uses: actions/cache@v4
5353
id: cache
5454
with:
5555
path: ${{ env.pythonLocation }}
@@ -63,7 +63,7 @@ jobs:
6363
pip install git+https://${{ secrets.SQLMODEL_MKDOCS_MATERIAL_INSIDERS }}@github.com/squidfunk/mkdocs-material-insiders.git
6464
pip install git+https://${{ secrets.SQLMODEL_MKDOCS_MATERIAL_INSIDERS }}@github.com/pawamoy-insiders/griffe-typing-deprecated.git
6565
pip install git+https://${{ secrets.SQLMODEL_MKDOCS_MATERIAL_INSIDERS }}@github.com/pawamoy-insiders/mkdocstrings-python.git
66-
- uses: actions/cache@v3
66+
- uses: actions/cache@v4
6767
with:
6868
key: mkdocs-cards-${{ github.ref }}
6969
path: .cache

.github/workflows/issue-manager.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
issue-manager:
1919
runs-on: ubuntu-latest
2020
steps:
21-
- uses: tiangolo/issue-manager@0.4.1
21+
- uses: tiangolo/issue-manager@0.5.0
2222
with:
2323
token: ${{ secrets.GITHUB_TOKEN }}
2424
config: >

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,4 @@ jobs:
3434
TIANGOLO_BUILD_PACKAGE: ${{ matrix.package }}
3535
run: python -m build
3636
- name: Publish
37-
uses: pypa/gh-action-pypi-publish@v1.8.11
37+
uses: pypa/gh-action-pypi-publish@v1.9.0

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,11 @@ jobs:
4747
if: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.debug_enabled == 'true' }}
4848
with:
4949
limit-access-to-actor: true
50-
- uses: actions/cache@v3
50+
- uses: actions/cache@v4
5151
id: cache
5252
with:
5353
path: ${{ env.pythonLocation }}
54-
key: ${{ runner.os }}-python-${{ env.pythonLocation }}-${{ hashFiles('pyproject.toml', 'requirements-tests.txt') }}
54+
key: ${{ runner.os }}-python-${{ env.pythonLocation }}-${{ hashFiles('pyproject.toml', 'requirements-tests.txt') }}-v01
5555
- name: Install Dependencies
5656
if: steps.cache.outputs.cache-hit != 'true'
5757
run: pip install -r requirements-tests.txt
@@ -60,7 +60,7 @@ jobs:
6060
run: pip install --upgrade "pydantic>=1.10.0,<2.0.0"
6161
- name: Install Pydantic v2
6262
if: matrix.pydantic-version == 'pydantic-v2'
63-
run: pip install --upgrade "pydantic>=2.0.2,<3.0.0"
63+
run: pip install --upgrade "pydantic>=2.0.2,<3.0.0" "typing-extensions==4.6.1"
6464
- name: Lint
6565
# Do not run on Python 3.7 as mypy behaves differently
6666
if: matrix.python-version != '3.7' && matrix.pydantic-version == 'pydantic-v2'

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ default_language_version:
44
python: python3.10
55
repos:
66
- repo: https://github.com/pre-commit/pre-commit-hooks
7-
rev: v4.5.0
7+
rev: v4.6.0
88
hooks:
99
- id: check-added-large-files
1010
- id: check-toml
@@ -14,7 +14,7 @@ repos:
1414
- id: end-of-file-fixer
1515
- id: trailing-whitespace
1616
- repo: https://github.com/astral-sh/ruff-pre-commit
17-
rev: v0.2.0
17+
rev: v0.5.2
1818
hooks:
1919
- id: ruff
2020
args:

0 commit comments

Comments
 (0)