From a2729fb9ab2793a56241b00b116494790873f47d Mon Sep 17 00:00:00 2001 From: Sepand Haghighi Date: Tue, 8 Nov 2022 15:47:01 +0330 Subject: [PATCH] Python 3.11 support (#162) * fix : Python 3.11 added to test.yml * fix : Python 3.11 added to setup.py --- .github/workflows/test.yml | 2 +- CHANGELOG.md | 1 + setup.py | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 98e7db0..2a9eaab 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -12,7 +12,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, windows-latest] - python-version: [3.5, 3.6, 3.7, 3.8, 3.9, 3.10.0] + python-version: [3.5, 3.6, 3.7, 3.8, 3.9, 3.10.0, 3.11.0] steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }} diff --git a/CHANGELOG.md b/CHANGELOG.md index d074c21..bcc2dcb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ### Changed - `marker` parameter added to `plot` method - Test system modified +- `Python 3.11` added to `test.yml` ## [0.9] - 2022-09-28 ### Added - Anaconda workflow diff --git a/setup.py b/setup.py index dc14180..9d4734b 100644 --- a/setup.py +++ b/setup.py @@ -68,6 +68,7 @@ setup( 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', + 'Programming Language :: Python :: 3.11', ], license='MIT', include_package_data=True