From 7af2ed0826245b96bbef7c00e01d70366cfa595f Mon Sep 17 00:00:00 2001 From: AmirHosein Rostami <32750909+AHReccese@users.noreply.github.com> Date: Mon, 14 Oct 2024 21:21:37 -0400 Subject: [PATCH] Add/python3.13 (#56) * `Python 3.13` added to `windows_test.yml` * `Python 3.13` added to `linux_test.yml` * `Python 3.13` added to `macOS_test.yml` * `Python 3.13` added to `bug_report.yml` * `Python 3.13` added to `setup.py` * `CHANGELOG.md` updated * Update CHANGELOG.md --- .github/ISSUE_TEMPLATE/bug_report.yml | 1 + .github/workflows/linux_test.yml | 2 +- .github/workflows/macOS_test.yml | 2 +- .github/workflows/windows_test.yml | 2 +- CHANGELOG.md | 1 + setup.py | 1 + 6 files changed, 6 insertions(+), 3 deletions(-) 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 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 }} 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 }} 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 }} diff --git a/CHANGELOG.md b/CHANGELOG.md index ec12d62..bc7d49c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] ### Changed +- `Python 3.13` added to tests - `engine` parameter added to `play` function - `engine` parameter added to `NavaThread` class - `README.md` modified 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',