Skip to content

Commit 1efcd75

Browse files
committed
Remove Python 3.10 support (#1285)
(cherry picked from commit 2a651a3)
1 parent f5e3fd9 commit 1efcd75

3 files changed

Lines changed: 3 additions & 4 deletions

File tree

.github/workflows/merge_to_master.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
strategy:
1717
matrix:
18-
python-version: ['3.10', '3.11', '3.12', '3.13']
18+
python-version: ['3.11', '3.12', '3.13']
1919
steps:
2020
- name: Checkout Nailgun
2121
uses: actions/checkout@v4

.github/workflows/pull_requests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
strategy:
1616
matrix:
17-
python-version: ['3.10', '3.11', '3.12', '3.13']
17+
python-version: ['3.11', '3.12', '3.13']
1818
steps:
1919
- name: Checkout Nailgun
2020
uses: actions/checkout@v2

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,9 @@
4040
'Development Status :: 4 - Beta',
4141
'Intended Audience :: Developers',
4242
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
43-
'Programming Language :: Python :: 3.10',
4443
'Programming Language :: Python :: 3.11',
4544
],
4645
packages=find_packages(exclude=['docs', 'tests']),
4746
install_requires=REQUIREMENTS,
48-
python_requires='>=3.10',
47+
python_requires='>=3.11',
4948
)

0 commit comments

Comments
 (0)