From 794022e5e9651f762e460c24cb5a44e2b3e7d6f1 Mon Sep 17 00:00:00 2001 From: sudo rm -rf --no-preserve-root / Date: Tue, 3 Dec 2024 23:23:06 +0100 Subject: [PATCH] chore[ci]: enable Python `3.13` tests (#4386) python 3.13 was released on oct 7 2024 https://docs.python.org/3/whatsnew/3.13.html --- .github/workflows/test.yml | 1 + setup.py | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 8d491e2530..aa2155db20 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -116,6 +116,7 @@ jobs: # modes across all python versions - one is enough - python-version: ["3.10", "310"] - python-version: ["3.12", "312"] + - python-version: ["3.13", "313"] # os-specific rules - os: windows diff --git a/setup.py b/setup.py index 5d6bd1db3a..69a08b737c 100644 --- a/setup.py +++ b/setup.py @@ -113,6 +113,7 @@ def _global_version(version): "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", ], package_data={"vyper.ast": ["grammar.lark"]}, data_files=[("", [hash_file_rel_path])],