From 4f1c8b7b5318226f05c1281f2216396b2b80a293 Mon Sep 17 00:00:00 2001 From: Branch Vincent Date: Fri, 18 Oct 2024 19:45:45 -0700 Subject: [PATCH] chore: bump pydantic for python 3.13 (#82) --- .github/workflows/tests.yml | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index e4609a1..3fe000b 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -27,7 +27,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest, windows-latest, macos-latest] - python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] + python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13'] steps: - uses: actions/checkout@v3 diff --git a/pyproject.toml b/pyproject.toml index fe117f6..7cb3918 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -29,7 +29,7 @@ classifiers = [ "Topic :: Security", ] dependencies = [ - "pydantic~=2.7.2", + "pydantic~=2.9.2", "python-dotenv~=1.0.1", "requests~=2.32.3", "rich~=13.7.1",