Skip to content

Commit 695d448

Browse files
committed
Merge branch 'drop-python3.8-support' into update-code-examples-to-python-3.9
2 parents 05af4de + a63e661 commit 695d448

File tree

4 files changed

+5
-11
lines changed

4 files changed

+5
-11
lines changed

.github/workflows/pre-commit.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
env:
1919
GITHUB_CONTEXT: ${{ toJson(github) }}
2020
run: echo "$GITHUB_CONTEXT"
21-
- uses: actions/checkout@v5
21+
- uses: actions/checkout@v6
2222
name: Checkout PR for own repo
2323
if: env.HAS_SECRETS == 'true'
2424
with:
@@ -30,7 +30,7 @@ jobs:
3030
# A token other than the default GITHUB_TOKEN is needed to be able to trigger CI
3131
token: ${{ secrets.PRE_COMMIT }}
3232
# pre-commit lite ci needs the default checkout configs to work
33-
- uses: actions/checkout@v5
33+
- uses: actions/checkout@v6
3434
name: Checkout PR for fork
3535
if: env.HAS_SECRETS == 'false'
3636
with:

.github/workflows/test.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,6 @@ jobs:
3030
pydantic-version:
3131
- pydantic-v2
3232
include:
33-
- os: macos-latest
34-
python-version: "3.8"
35-
pydantic-version: pydantic-v1
3633
- os: windows-latest
3734
python-version: "3.9"
3835
pydantic-version: pydantic-v2

docs/release-notes.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
### Internal
66

7+
* ⬆ Bump actions/checkout from 5 to 6. PR [#1692](https://github.com/fastapi/sqlmodel/pull/1692) by [@dependabot[bot]](https://github.com/apps/dependabot).
78
* 👷 Add pre-commit workflow. PR [#1684](https://github.com/fastapi/sqlmodel/pull/1684) by [@YuriiMotov](https://github.com/YuriiMotov).
89
* ✅ Simplify tests for code examples, one test file for multiple variants. PR [#1664](https://github.com/fastapi/sqlmodel/pull/1664) by [@YuriiMotov](https://github.com/YuriiMotov).
910
*[pre-commit.ci] pre-commit autoupdate. PR [#1677](https://github.com/fastapi/sqlmodel/pull/1677) by [@pre-commit-ci[bot]](https://github.com/apps/pre-commit-ci).

requirements-tests.txt

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,11 @@
22
-r requirements-docs-tests.txt
33
pytest >=7.0.1,<9.0.0
44
coverage[toml] >=6.2,<8.0
5-
# Remove when support for Python 3.8 is dropped
6-
mypy ==1.14.1; python_version < "3.9"
7-
mypy ==1.19.1; python_version >= "3.9"
5+
mypy ==1.19.1
86
ruff ==0.14.10
97
# For FastAPI tests
108
fastapi >=0.103.2,<0.126.0
119
httpx ==0.28.1
1210
dirty-equals ==0.9.0
1311
jinja2 ==3.1.6
14-
# Remove when support for Python 3.8 is dropped
15-
typing-extensions ==4.13.2; python_version < "3.9"
16-
typing-extensions ==4.15.0; python_version >= "3.9"
12+
typing-extensions ==4.15.0

0 commit comments

Comments
 (0)