Skip to content

Commit 3bafbe1

Browse files
committed
removing Python 3.7 and adding 3.11
1 parent 1ec84b4 commit 3bafbe1

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
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.8", "3.9", "3.10" ]
13+
python-version: [ "3.8", "3.9", "3.10", "3.11" ]
1414
steps:
1515
- uses: actions/checkout@v2
1616
- name: Set up Python ${{ matrix.python-version }}

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,18 +64,18 @@ def run(self):
6464
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
6565
'Operating System :: OS Independent',
6666
'Programming Language :: Python :: 3',
67-
'Programming Language :: Python :: 3.7',
6867
'Programming Language :: Python :: 3.8',
6968
'Programming Language :: Python :: 3.9',
7069
'Programming Language :: Python :: 3.10',
70+
'Programming Language :: Python :: 3.11',
7171
'Intended Audience :: Developers',
7272
'Intended Audience :: Education',
7373
'Intended Audience :: Science/Research',
7474
'Natural Language :: English',
7575
'Topic :: Documentation :: Sphinx',
7676
'Topic :: System :: Distributed Computing'
7777
],
78-
python_requires='>=3.7',
78+
python_requires='>=3.8',
7979
data_files=[
8080
('bin', ['bin/cpu-benchmark'])
8181
],

0 commit comments

Comments
 (0)