From 824ec71d9c4b2a0ec3108195965360f9f8dacc97 Mon Sep 17 00:00:00 2001 From: Sepand Haghighi Date: Thu, 17 Oct 2024 18:57:15 +0330 Subject: [PATCH] Python 3.13 (#121) * fix : Python 3.13 added to test.yml * fix : Python 3.13 added to setup.py * fix : Python 3.13 added to bug_report.yml * doc : CHANGELOG.md updated --- .github/ISSUE_TEMPLATE/bug_report.yml | 1 + .github/workflows/test.yml | 2 +- CHANGELOG.md | 1 + setup.py | 1 + 4 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 8b0e9cb..7b34b76 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -68,6 +68,7 @@ body: label: Python version description: Which version of Python are you using? options: + - Python 3.13 - Python 3.12 - Python 3.11 - Python 3.10 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 3d7aaaf..3732d26 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 }} diff --git a/CHANGELOG.md b/CHANGELOG.md index 9ed1647..e974310 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. - `show_faces_list` function updated - `README.md` updated - Test system modified +- `Python 3.13` added to `test.yml` ## [1.7] - 2024-10-09 ### Added - 2 new programs diff --git a/setup.py b/setup.py index 99a79cb..986267f 100644 --- a/setup.py +++ b/setup.py @@ -56,6 +56,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',