Skip to content

Commit

Permalink
Merge pull request #76 from surenkov/drop-python-37
Browse files Browse the repository at this point in the history
Drop Python 3.7, declare 3.13 support
  • Loading branch information
surenkov authored Dec 20, 2024
2 parents 1bd351e + 7c9b69d commit 0a0ba97
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/python-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
pydantic-version: ["1.10.*", "2.*"]

services:
Expand Down Expand Up @@ -90,4 +90,4 @@ jobs:
- name: Install Pydantic ${{ matrix.pydantic-version }}
run: python -m pip install "pydantic==${{ matrix.pydantic-version }}"
- name: Test package
run: pytest
run: pytest
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,15 @@ classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]

requires-python = ">=3.7"
requires-python = ">=3.8"
dependencies = [
"pydantic>=1.10,<3",
"django>=3.1,<6",
Expand Down

0 comments on commit 0a0ba97

Please sign in to comment.