From 8f29a833123063190abc58a75adf9cc9132c8457 Mon Sep 17 00:00:00 2001 From: AHReccese Date: Mon, 14 Oct 2024 15:11:31 -0400 Subject: [PATCH 1/7] `Python 3.13` added to `windows_test.yml` --- .github/workflows/windows_test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/windows_test.yml b/.github/workflows/windows_test.yml index 4ad911a..2ec277c 100644 --- a/.github/workflows/windows_test.yml +++ b/.github/workflows/windows_test.yml @@ -16,7 +16,7 @@ jobs: fail-fast: false matrix: os: [windows-2022, windows-2019] - 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 a9bee983167cbfe93f9a287f831649401116cbd3 Mon Sep 17 00:00:00 2001 From: AHReccese Date: Mon, 14 Oct 2024 15:11:40 -0400 Subject: [PATCH 2/7] `Python 3.13` added to `linux_test.yml` --- .github/workflows/linux_test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/linux_test.yml b/.github/workflows/linux_test.yml index dfb74ff..fdb6e5e 100644 --- a/.github/workflows/linux_test.yml +++ b/.github/workflows/linux_test.yml @@ -16,7 +16,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-20.04] - 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 e3635176fb11e348ab9ec1695a63d68183397b13 Mon Sep 17 00:00:00 2001 From: AHReccese Date: Mon, 14 Oct 2024 15:11:46 -0400 Subject: [PATCH 3/7] `Python 3.13` added to `macOS_test.yml` --- .github/workflows/macOS_test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/macOS_test.yml b/.github/workflows/macOS_test.yml index ffb7021..b6f652a 100644 --- a/.github/workflows/macOS_test.yml +++ b/.github/workflows/macOS_test.yml @@ -16,7 +16,7 @@ jobs: fail-fast: false matrix: os: [macOS-12, 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 fbc87748411c1abc1e5dc9869d457d16ab0714fe Mon Sep 17 00:00:00 2001 From: AHReccese Date: Mon, 14 Oct 2024 15:11:56 -0400 Subject: [PATCH 4/7] `Python 3.13` added to `bug_report.yml` --- .github/ISSUE_TEMPLATE/bug_report.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index d49c61b..14010c0 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 From 6bd55a9589342c326c9dfddf96b6f38f1644f00e Mon Sep 17 00:00:00 2001 From: AHReccese Date: Mon, 14 Oct 2024 15:12:07 -0400 Subject: [PATCH 5/7] `Python 3.13` added to `setup.py` --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 5f2b3b0..70d8051 100644 --- a/setup.py +++ b/setup.py @@ -61,6 +61,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 :: End Users/Desktop', 'Intended Audience :: Manufacturing', From f0b7ff195ab09992853ff8cd3d7ff55f9190d8ef Mon Sep 17 00:00:00 2001 From: AHReccese Date: Mon, 14 Oct 2024 15:12:26 -0400 Subject: [PATCH 6/7] `CHANGELOG.md` updated --- CHANGELOG.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index ec12d62..c911412 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] ### Changed +- `Python 3.13` added to `linux_test.yml` +- `Python 3.13` added to `macOS_test.yml` +- `Python 3.13` added to `windows_test.yml` +- `Python 3.13` added to `setup.py` +- `Python 3.13` added to `bug_report.yml` - `engine` parameter added to `play` function - `engine` parameter added to `NavaThread` class - `README.md` modified From 0f1538470a3a4596eb4d4274b44d5799b2a12e0e Mon Sep 17 00:00:00 2001 From: AmirHosein Rostami <32750909+AHReccese@users.noreply.github.com> Date: Tue, 15 Oct 2024 00:19:39 +0330 Subject: [PATCH 7/7] Update CHANGELOG.md --- CHANGELOG.md | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c911412..bc7d49c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,11 +6,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] ### Changed -- `Python 3.13` added to `linux_test.yml` -- `Python 3.13` added to `macOS_test.yml` -- `Python 3.13` added to `windows_test.yml` -- `Python 3.13` added to `setup.py` -- `Python 3.13` added to `bug_report.yml` +- `Python 3.13` added to tests - `engine` parameter added to `play` function - `engine` parameter added to `NavaThread` class - `README.md` modified