Skip to content

Commit 388b11a

Browse files
committed
cleanup now that Python 3.14 and Pydantic 2.12.0 are released
1 parent f113c83 commit 388b11a

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,6 @@ jobs:
5959
uses: actions/setup-python@v6
6060
with:
6161
python-version: ${{ matrix.python-version }}
62-
allow-prereleases: true
6362
- name: Setup uv
6463
uses: astral-sh/setup-uv@v6
6564
with:
@@ -74,16 +73,13 @@ jobs:
7473
if: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.debug_enabled == 'true' }}
7574
with:
7675
limit-access-to-actor: true
77-
- name: Preinstall Pydantic 2.12.0a1 for Python 3.14
78-
if: matrix.python-version == '3.14'
79-
run: uv pip install --pre "pydantic==2.12.0a1"
8076
- name: Install Dependencies
8177
run: uv pip install -r requirements-tests.txt
8278
- name: Install Pydantic v1
8379
if: matrix.pydantic-version == 'pydantic-v1'
8480
run: uv pip install --upgrade "pydantic>=1.10.0,<2.0.0"
8581
- name: Install Pydantic v2
86-
if: matrix.pydantic-version == 'pydantic-v2' && matrix.python-version != '3.14'
82+
if: matrix.pydantic-version == 'pydantic-v2'
8783
run: uv pip install --upgrade "pydantic>=2.0.2,<3.0.0"
8884
- name: Lint
8985
if: matrix.pydantic-version == 'pydantic-v2' && matrix.python-version != '3.8'

0 commit comments

Comments
 (0)