From e5b44c6d49588a3f2986d2395d4a4228bf78cb69 Mon Sep 17 00:00:00 2001 From: sepandhaghighi Date: Mon, 14 Oct 2024 19:00:55 +0330 Subject: [PATCH 1/2] fix : Python 3.13 added to test.yml --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 54197df..7ca6f51 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -16,7 +16,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-20.04, windows-2022, macOS-13] - python-version: [3.6, 3.7, 3.8, 3.9, 3.10.0, 3.11.0, 3.12.0] + python-version: [3.6, 3.7, 3.8, 3.9, 3.10.0, 3.11.0, 3.12.0, 3.13.0] steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }} From 9aeff420d75a9d17b3b6b3e807f80aacda6b61b6 Mon Sep 17 00:00:00 2001 From: sepandhaghighi Date: Mon, 14 Oct 2024 19:01:47 +0330 Subject: [PATCH 2/2] fix : Python 3.13 added to setup.py --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 1a8afb4..7377a85 100644 --- a/setup.py +++ b/setup.py @@ -57,6 +57,7 @@ def read_description(): 'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: 3.11', 'Programming Language :: Python :: 3.12', + 'Programming Language :: Python :: 3.13', 'Intended Audience :: Developers', 'Intended Audience :: Education', 'Intended Audience :: End Users/Desktop',