Skip to content

Commit c960199

Browse files
authored
Drop support for Python 3.8 (#207)
* Bump GitHub Actions * Drop support for Python 3.8 * Allow testing feature branches
1 parent d290c72 commit c960199

File tree

5 files changed

+7
-24
lines changed

5 files changed

+7
-24
lines changed

.github/workflows/build.yml

+1-7
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,7 @@ name: Build
22

33
on:
44
push:
5-
branches: [main]
65
pull_request:
7-
branches: [main]
86

97
jobs:
108
tox-jobs:
@@ -33,10 +31,6 @@ jobs:
3331
python: 'pypy3.10'
3432
- os: ubuntu-latest
3533
python: 'pypy3.9'
36-
- os: ubuntu-latest
37-
python: 'pypy3.8'
38-
- os: ubuntu-latest
39-
python: '3.8'
4034
- os: ubuntu-latest
4135
python: '3.9'
4236
- os: ubuntu-latest
@@ -57,7 +51,7 @@ jobs:
5751
with:
5852
python-version: ${{ matrix.python }}
5953
- name: Set up Python ${{ matrix.python }} using deadsnakes
60-
uses: deadsnakes/action@v3.1.0
54+
uses: deadsnakes/action@v3.2.0
6155
if: ${{ matrix.build == 'free-threading' }}
6256
with:
6357
python-version: ${{ matrix.python }}

.github/workflows/publish.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ jobs:
1313
id-token: write
1414

1515
steps:
16-
- uses: actions/checkout@v3
16+
- uses: actions/checkout@v4
1717
- name: Set up Python
18-
uses: actions/setup-python@v4
18+
uses: actions/setup-python@v5
1919
with:
2020
python-version: '3.x'
2121
cache: pip

pyperf/tests/test_misc.py

+1-5
Original file line numberDiff line numberDiff line change
@@ -67,11 +67,7 @@ def test_parse_run_list(self):
6767
self.assertRaises(ValueError, parse_run_list, '1,')
6868

6969
def test_setup_version(self):
70-
try:
71-
from importlib.metadata import version
72-
except ModuleNotFoundError:
73-
# Workaround for Python 3.7
74-
from importlib_metadata import version
70+
from importlib.metadata import version
7571

7672
self.assertEqual(pyperf.__version__, version("pyperf"))
7773

pyperf/tests/test_runner.py

+2-8
Original file line numberDiff line numberDiff line change
@@ -97,10 +97,7 @@ def time_func(loops):
9797

9898
try:
9999
s = pstats.Stats(name)
100-
if sys.version_info < (3, 9):
101-
assert len(s.stats)
102-
else:
103-
assert len(s.get_stats_profile().func_profiles)
100+
assert len(s.get_stats_profile().func_profiles)
104101
finally:
105102
if os.path.isfile(name):
106103
os.unlink(name)
@@ -123,10 +120,7 @@ def func():
123120
try:
124121
import pstats
125122
s = pstats.Stats(name)
126-
if sys.version_info < (3, 9):
127-
assert len(s.stats)
128-
else:
129-
assert len(s.get_stats_profile().func_profiles)
123+
assert len(s.get_stats_profile().func_profiles)
130124
finally:
131125
if os.path.isfile(name):
132126
os.unlink(name)

pyproject.toml

+1-2
Original file line numberDiff line numberDiff line change
@@ -44,13 +44,12 @@ classifiers = [
4444
"Programming Language :: Python :: 3",
4545
"Topic :: Software Development :: Libraries :: Python Modules"
4646
]
47-
requires-python = ">=3.7"
47+
requires-python = ">=3.9"
4848
dependencies = ["psutil>=5.9.0"]
4949

5050
[project.optional-dependencies]
5151
dev = [
5252
'tox',
53-
'importlib-metadata; python_version < "3.8"'
5453
]
5554

5655
[project.scripts]

0 commit comments

Comments
 (0)