Skip to content

Commit bbb702c

Browse files
authored
ci: Add python 3.11 to package classifiers, version pins (#451)
2 parents 4d75ab8 + a3c88f8 commit bbb702c

File tree

6 files changed

+18
-5
lines changed

6 files changed

+18
-5
lines changed

.github/workflows/docs.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
13-
python-version: ["3.10"]
13+
python-version: ["3.11"]
1414
steps:
1515
- uses: actions/checkout@v3
1616

.github/workflows/tests.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
13-
python-version: ["3.7", "3.10"]
13+
python-version: ["3.7", "3.11"]
1414
tmux-version: ["2.6", "2.7", "2.8", "3.0a", "3.1b", "3.2a", "3.3a", "master"]
1515
steps:
1616
- uses: actions/checkout@v3
@@ -84,7 +84,7 @@ jobs:
8484

8585
strategy:
8686
matrix:
87-
python-version: ["3.10"]
87+
python-version: ["3.11"]
8888

8989
steps:
9090
- uses: actions/checkout@v3

.python-version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.10.7 3.9.13 3.8.13 3.7.13
1+
3.11.0 3.10.7 3.9.13 3.8.13 3.7.13

.tool-versions

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
poetry 1.2.1
2-
python 3.10.7 3.9.13 3.8.13 3.7.13
2+
python 3.11.0 3.10.7 3.9.13 3.8.13 3.7.13

CHANGES

+12
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,18 @@ $ pip install --user --upgrade --pre libtmux
1818

1919
- `tmux_cmd()`: Fix raise of TmuxCommandNotFound (#450)
2020

21+
### CI
22+
23+
- Use python 3.11 (#451)
24+
25+
### Packaging
26+
27+
- Add python 3.11 to trove classifiers (#451)
28+
29+
### Development
30+
31+
- Add python 3.11 to asdf and pyenv configurations (#451)
32+
2133
## libtmux 0.15.8 (2022-10-02)
2234

2335
### Bug fix

pyproject.toml

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ classifiers = [
1717
"Programming Language :: Python :: 3.8",
1818
"Programming Language :: Python :: 3.9",
1919
"Programming Language :: Python :: 3.10",
20+
"Programming Language :: Python :: 3.11",
2021
"Programming Language :: Python :: Implementation :: PyPy",
2122
"Topic :: Software Development :: Libraries :: Python Modules",
2223
"Topic :: Utilities",

0 commit comments

Comments
 (0)