Skip to content

Commit b426cce

Browse files
Drop 3.8 support (#1604)
1 parent e572f55 commit b426cce

Some content is hidden

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

43 files changed

+648
-681
lines changed

.github/check_version.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
"""
33
Check the version in Cargo.toml matches the version from `GITHUB_REF` environment variable.
44
"""
5+
56
import os
67
import re
78
import sys
@@ -18,7 +19,7 @@ def main() -> int:
1819
if version_ref:
1920
version = re.sub('^refs/tags/v*', '', version_ref.lower())
2021
else:
21-
print(f'✖ "GITHUB_REF" env variables not found')
22+
print('✖ "GITHUB_REF" env variables not found')
2223
return 1
2324

2425
# convert from python pre-release version to rust pre-release version

.github/workflows/ci.yml

+9-16
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,6 @@ jobs:
6363
fail-fast: false
6464
matrix:
6565
python-version:
66-
- '3.8'
6766
- '3.9'
6867
- '3.10'
6968
- '3.11'
@@ -403,15 +402,15 @@ jobs:
403402
- os: linux
404403
manylinux: auto
405404
target: armv7
406-
interpreter: 3.8 3.9 3.10 3.11 3.12 3.13
405+
interpreter: 3.9 3.10 3.11 3.12 3.13
407406
- os: linux
408407
manylinux: auto
409408
target: ppc64le
410-
interpreter: 3.8 3.9 3.10 3.11 3.12 3.13
409+
interpreter: 3.9 3.10 3.11 3.12 3.13
411410
- os: linux
412411
manylinux: auto
413412
target: s390x
414-
interpreter: 3.8 3.9 3.10 3.11 3.12 3.13
413+
interpreter: 3.9 3.10 3.11 3.12 3.13
415414
- os: linux
416415
manylinux: auto
417416
target: x86_64
@@ -435,7 +434,7 @@ jobs:
435434
target: x86_64
436435
- os: macos
437436
target: aarch64
438-
interpreter: 3.8 3.9 pypy3.9 pypy3.10
437+
interpreter: 3.9 pypy3.9 pypy3.10
439438

440439
# windows;
441440
# x86_64 pypy builds are not PGO optimized
@@ -447,7 +446,7 @@ jobs:
447446
- os: windows
448447
target: i686
449448
python-architecture: x86
450-
interpreter: 3.8 3.9 3.10 3.11 3.12 3.13
449+
interpreter: 3.9 3.10 3.11 3.12 3.13
451450
- os: windows
452451
target: aarch64
453452
interpreter: 3.11 3.12 3.13
@@ -477,10 +476,8 @@ jobs:
477476
with:
478477
target: ${{ matrix.target }}
479478
manylinux: ${{ matrix.manylinux }}
480-
args: --release --out dist --interpreter ${{ matrix.interpreter || '3.8 3.9 3.10 3.11 3.12 3.13 pypy3.9 pypy3.10' }}
481-
# Limit windows builds to 1.77 to keep Windows 7 support.
482-
# FIXME: Unpin when Python 3.8 support is dropped. (3.9 requires Windows 10)
483-
rust-toolchain: ${{ (matrix.os == 'windows' && '1.77') || 'stable' }}
479+
args: --release --out dist --interpreter ${{ matrix.interpreter || '3.9 3.10 3.11 3.12 3.13 pypy3.9 pypy3.10' }}
480+
rust-toolchain: stable
484481
docker-options: -e CI
485482

486483
- run: ${{ (matrix.os == 'windows' && 'dir') || 'ls -lh' }} dist/
@@ -500,7 +497,7 @@ jobs:
500497
fail-fast: false
501498
matrix:
502499
os: [linux, windows, macos]
503-
interpreter: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
500+
interpreter: ['3.9', '3.10', '3.11', '3.12', '3.13']
504501
include:
505502
# standard runners with override for macos arm
506503
- os: linux
@@ -512,8 +509,6 @@ jobs:
512509
runs-on: macos-latest-xlarge
513510
exclude:
514511
# macos arm only supported from 3.10 and up
515-
- os: macos
516-
interpreter: '3.8'
517512
- os: macos
518513
interpreter: '3.9'
519514

@@ -531,9 +526,7 @@ jobs:
531526
uses: dtolnay/rust-toolchain@master
532527
with:
533528
components: llvm-tools
534-
# Limit windows builds to 1.77 to keep Windows 7 support.
535-
# FIXME: Unpin when Python 3.8 support is dropped. (3.9 requires Windows 10)
536-
toolchain: ${{ (matrix.os == 'windows' && '1.77') || 'stable' }}
529+
toolchain: stable
537530

538531
- name: Build PGO wheel
539532
id: pgo-wheel

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ except ValidationError as e:
7171

7272
You'll need rust stable [installed](https://rustup.rs/), or rust nightly if you want to generate accurate coverage.
7373

74-
With rust and python 3.8+ installed, compiling pydantic-core should be possible with roughly the following:
74+
With rust and python 3.9+ installed, compiling pydantic-core should be possible with roughly the following:
7575

7676
```bash
7777
# clone this repo or your fork

generate_self_schema.py

+13-14
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,12 @@
1414
from collections.abc import Callable
1515
from datetime import date, datetime, time, timedelta
1616
from pathlib import Path
17-
from typing import TYPE_CHECKING, Any, Dict, ForwardRef, List, Pattern, Set, Type, Union
17+
from re import Pattern
18+
from typing import TYPE_CHECKING, Any, ForwardRef, Union
1819

1920
from typing_extensions import TypedDict, get_args, get_origin, is_typeddict
2021

21-
TypingUnionType = Type[Union[str, int]]
22+
TypingUnionType = type[Union[str, int]]
2223

2324
try:
2425
from types import UnionType as TypesUnionType
@@ -69,17 +70,17 @@ def get_schema(obj: Any, definitions: dict[str, core_schema.CoreSchema]) -> core
6970
expected = all_literal_values(obj)
7071
assert expected, f'literal "expected" cannot be empty, obj={obj}'
7172
return {'type': 'literal', 'expected': expected}
72-
elif issubclass(origin, List):
73+
elif issubclass(origin, list):
7374
return {'type': 'list', 'items_schema': get_schema(obj.__args__[0], definitions)}
74-
elif issubclass(origin, Set):
75+
elif issubclass(origin, set):
7576
return {'type': 'set', 'items_schema': get_schema(obj.__args__[0], definitions)}
76-
elif issubclass(origin, Dict):
77+
elif issubclass(origin, dict):
7778
return {
7879
'type': 'dict',
7980
'keys_schema': get_schema(obj.__args__[0], definitions),
8081
'values_schema': get_schema(obj.__args__[1], definitions),
8182
}
82-
elif issubclass(origin, Type):
83+
elif issubclass(origin, type):
8384
# can't really use 'is-instance' since this is used for the class_ parameter of 'is-instance' validators
8485
return {'type': 'any'}
8586
elif origin in (Pattern, re.Pattern):
@@ -90,7 +91,7 @@ def get_schema(obj: Any, definitions: dict[str, core_schema.CoreSchema]) -> core
9091
raise TypeError(f'Unknown type: {obj!r}')
9192

9293

93-
def tagged_union(std_union_schema: Dict[str, Any], discriminator_key: str, ref: str | None = None) -> Dict[str, Any]:
94+
def tagged_union(std_union_schema: dict[str, Any], discriminator_key: str, ref: str | None = None) -> dict[str, Any]:
9495
"""
9596
Build a tagged union schema from a standard union schema.
9697
"""
@@ -134,13 +135,13 @@ def type_dict_schema( # noqa: C901
134135
if 'CoreSchema' == fr_arg or re.search('[^a-zA-Z]CoreSchema', fr_arg):
135136
if fr_arg == 'CoreSchema':
136137
schema = schema_ref_validator
137-
elif fr_arg == 'List[CoreSchema]':
138+
elif fr_arg == 'list[CoreSchema]':
138139
schema = {'type': 'list', 'items_schema': schema_ref_validator}
139-
elif fr_arg == 'Dict[str, CoreSchema]':
140+
elif fr_arg == 'dict[str, CoreSchema]':
140141
schema = {'type': 'dict', 'keys_schema': {'type': 'str'}, 'values_schema': schema_ref_validator}
141-
elif fr_arg == 'Dict[Hashable, CoreSchema]':
142+
elif fr_arg == 'dict[Hashable, CoreSchema]':
142143
schema = {'type': 'dict', 'keys_schema': {'type': 'any'}, 'values_schema': schema_ref_validator}
143-
elif fr_arg == 'List[Union[CoreSchema, Tuple[CoreSchema, str]]]':
144+
elif fr_arg == 'list[Union[CoreSchema, tuple[CoreSchema, str]]]':
144145
schema = {
145146
'type': 'list',
146147
'items_schema': {
@@ -193,9 +194,7 @@ def all_literal_values(type_: type[core_schema.Literal]) -> list[any]:
193194

194195

195196
def eval_forward_ref(type_: Any) -> Any:
196-
if sys.version_info < (3, 9):
197-
return type_._evaluate(core_schema.__dict__, None)
198-
elif sys.version_info < (3, 12, 4):
197+
if sys.version_info < (3, 12, 4):
199198
return type_._evaluate(core_schema.__dict__, None, recursive_guard=set())
200199
else:
201200
return type_._evaluate(core_schema.__dict__, None, type_params=set(), recursive_guard=set())

pyproject.toml

+7-3
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ build-backend = 'maturin'
88
[project]
99
name = 'pydantic_core'
1010
description = "Core functionality for Pydantic validation and serialization"
11-
requires-python = '>=3.8'
11+
requires-python = '>=3.9'
1212
authors = [
1313
{name = 'Samuel Colvin', email = '[email protected]'}
1414
]
@@ -17,7 +17,6 @@ classifiers = [
1717
'Programming Language :: Python',
1818
'Programming Language :: Python :: 3',
1919
'Programming Language :: Python :: 3 :: Only',
20-
'Programming Language :: Python :: 3.8',
2120
'Programming Language :: Python :: 3.9',
2221
'Programming Language :: Python :: 3.10',
2322
'Programming Language :: Python :: 3.11',
@@ -76,6 +75,7 @@ linting = [
7675
'pyright',
7776
'ruff',
7877
'mypy',
78+
'pyupgrade',
7979
]
8080
wasm = [
8181
'typing_extensions',
@@ -101,16 +101,20 @@ features = ["pyo3/extension-module"]
101101

102102
[tool.ruff]
103103
line-length = 120
104+
target-version = 'py39'
104105

105106
[tool.ruff.lint]
106-
extend-select = ['Q', 'RUF100', 'C90', 'I']
107+
extend-select = ['Q', 'RUF100', 'C90', 'I', 'UP']
107108
extend-ignore = [
108109
'E721', # using type() instead of isinstance() - we use this in tests
109110
]
110111
flake8-quotes = {inline-quotes = 'single', multiline-quotes = 'double'}
111112
mccabe = { max-complexity = 13 }
112113
isort = { known-first-party = ['pydantic_core', 'tests'] }
113114

115+
[tool.ruff.lint.pyupgrade]
116+
keep-runtime-typing = true
117+
114118
[tool.ruff.format]
115119
quote-style = 'single'
116120

0 commit comments

Comments
 (0)