Skip to content

Commit ce2f2ca

Browse files
committed
build: require Python 3.9+ and test on 3.11
1 parent 0cda4ae commit ce2f2ca

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.github/workflows/python.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
matrix:
1414
os: [ubuntu-latest, macos-latest, windows-latest]
15-
python-version: ['3.8', '3.9', '3.10']
15+
python-version: ['3.9', '3.10', '3.11']
1616

1717
steps:
1818
- uses: actions/checkout@v3
@@ -45,7 +45,7 @@ jobs:
4545
fetch-depth: 0
4646
- uses: actions/setup-python@v4
4747
with:
48-
python-version: '3.10'
48+
python-version: '3.11'
4949
architecture: x64
5050
- run: pip install -r requirements_test.txt
5151
- run: python setup.py bdist_wheel sdist

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG PYTHON_VERSION="3.10"
1+
ARG PYTHON_VERSION="3.11"
22

33
FROM python:${PYTHON_VERSION}
44

Jenkinsfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ pipeline {
2121
axes {
2222
axis {
2323
name 'PYTHON_VERSION'
24-
values '3.8', '3.9', '3.10'
24+
values '3.9', '3.10', '3.11'
2525
}
2626
}
2727

@@ -38,7 +38,7 @@ pipeline {
3838

3939
stage('Lint') {
4040
when {
41-
environment name: 'PYTHON_VERSION', value: '3.10'
41+
environment name: 'PYTHON_VERSION', value: '3.11'
4242
}
4343
steps {
4444
sh """#!/usr/bin/env bash

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -436,7 +436,7 @@ using version-query without any issues.
436436
Requirements
437437
============
438438

439-
Python version 3.8 or later.
439+
Python version 3.9 or later.
440440

441441
Python libraries as specified in `<requirements.txt>`_.
442442

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ class Package(setup_boilerplate.Package):
2020
'Operating System :: MacOS :: MacOS X',
2121
'Operating System :: Microsoft :: Windows',
2222
'Operating System :: POSIX :: Linux',
23-
'Programming Language :: Python :: 3.8',
2423
'Programming Language :: Python :: 3.9',
2524
'Programming Language :: Python :: 3.10',
25+
'Programming Language :: Python :: 3.11',
2626
'Programming Language :: Python :: 3 :: Only',
2727
'Topic :: Software Development :: Version Control',
2828
'Topic :: Software Development :: Version Control :: Git',

0 commit comments

Comments
 (0)