From d42de6c5e3b9560a03df50dde671064d7aa412d0 Mon Sep 17 00:00:00 2001 From: Tony Narlock Date: Sun, 30 Oct 2022 12:34:52 -0500 Subject: [PATCH 1/2] ci: Add python 3.11 to package classifiers, version pins --- .github/workflows/docs.yml | 2 +- .github/workflows/tests.yml | 4 ++-- .python-version | 2 +- .tool-versions | 2 +- pyproject.toml | 1 + 5 files changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 726b5d600..2baa81b93 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.10"] + python-version: ["3.11"] steps: - uses: actions/checkout@v3 diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 20f65b186..42ad9c404 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.7", "3.10"] + python-version: ["3.7", "3.11"] tmux-version: ["2.6", "2.7", "2.8", "3.0a", "3.1b", "3.2a", "3.3a", "master"] steps: - uses: actions/checkout@v3 @@ -84,7 +84,7 @@ jobs: strategy: matrix: - python-version: ["3.10"] + python-version: ["3.11"] steps: - uses: actions/checkout@v3 diff --git a/.python-version b/.python-version index 946e73f19..b6ec5ca97 100644 --- a/.python-version +++ b/.python-version @@ -1 +1 @@ -3.10.7 3.9.13 3.8.13 3.7.13 +3.11.0 3.10.7 3.9.13 3.8.13 3.7.13 diff --git a/.tool-versions b/.tool-versions index 4c9b42d1c..a0c5b80d4 100644 --- a/.tool-versions +++ b/.tool-versions @@ -1,2 +1,2 @@ poetry 1.2.1 -python 3.10.7 3.9.13 3.8.13 3.7.13 +python 3.11.0 3.10.7 3.9.13 3.8.13 3.7.13 diff --git a/pyproject.toml b/pyproject.toml index 1e7d1281d..9538ddd90 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -17,6 +17,7 @@ classifiers = [ "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", "Programming Language :: Python :: Implementation :: PyPy", "Topic :: Software Development :: Libraries :: Python Modules", "Topic :: Utilities", From a3c88f8ddeedb2f17ba01328e0ffe8caf0cb8051 Mon Sep 17 00:00:00 2001 From: Tony Narlock Date: Sun, 30 Oct 2022 12:36:37 -0500 Subject: [PATCH 2/2] docs(CHANGES): Note python 3.11 updates --- CHANGES | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/CHANGES b/CHANGES index 3916bf5dc..794dc9635 100644 --- a/CHANGES +++ b/CHANGES @@ -18,6 +18,18 @@ $ pip install --user --upgrade --pre libtmux - `tmux_cmd()`: Fix raise of TmuxCommandNotFound (#450) +### CI + +- Use python 3.11 (#451) + +### Packaging + +- Add python 3.11 to trove classifiers (#451) + +### Development + +- Add python 3.11 to asdf and pyenv configurations (#451) + ## libtmux 0.15.8 (2022-10-02) ### Bug fix