Skip to content

Commit 8f0f68c

Browse files
committed
chore: drop support for python3.8
1 parent 8ed280f commit 8f0f68c

File tree

3 files changed

+5
-7
lines changed

3 files changed

+5
-7
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,11 @@ jobs:
3333
- pytest-benchmark
3434
- valgrind
3535
python-version:
36-
- "3.8"
3736
- "3.9"
3837
- "3.10"
3938
- "3.11"
4039
- "3.12"
41-
- "3.13.0-rc.1"
40+
- "3.13"
4241
pytest-version:
4342
- ">=8.1.1"
4443

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
[![CI](https://github.com/CodSpeedHQ/pytest-codspeed/actions/workflows/ci.yml/badge.svg)](https://github.com/CodSpeedHQ/pytest-codspeed/actions/workflows/ci.yml)
55
[![PyPi Version](https://img.shields.io/pypi/v/pytest-codspeed?color=%2334D058&label=pypi)](https://pypi.org/project/pytest-codspeed)
6-
![Python Version](https://img.shields.io/badge/python-3.8%20|%203.9%20|%203.10%20|%203.11%20|%203.12%20|%203.13-informational.svg)
6+
![Python Version](https://img.shields.io/badge/python-3.9%20|%203.10%20|%203.11%20|%203.12%20|%203.13-informational.svg)
77
[![Discord](https://img.shields.io/badge/chat%20on-discord-7289da.svg)](https://discord.com/invite/MxpaCfKSqF)
88
[![CodSpeed Badge](https://img.shields.io/endpoint?url=https://codspeed.io/badge.json)](https://codspeed.io/CodSpeedHQ/pytest-codspeed)
99

@@ -13,7 +13,7 @@ Pytest plugin to create CodSpeed benchmarks
1313

1414
## Requirements
1515

16-
**Python**: 3.8 and later
16+
**Python**: 3.9 and later
1717

1818
**pytest**: any recent version
1919

pyproject.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ dynamic = ["version"]
1313
description = "Pytest plugin to create CodSpeed benchmarks"
1414
readme = "README.md"
1515
license = { file = "LICENSE" }
16-
requires-python = ">=3.8"
16+
requires-python = ">=3.9"
1717
authors = [{ name = "Arthur Pastel", email = "[email protected]" }]
1818
keywords = ["codspeed", "benchmark", "performance", "pytest"]
1919
classifiers = [
@@ -23,7 +23,6 @@ classifiers = [
2323
"Intended Audience :: Information Technology",
2424
"License :: OSI Approved :: MIT License",
2525
"Programming Language :: Python :: 3",
26-
"Programming Language :: Python :: 3.8",
2726
"Programming Language :: Python :: 3.9",
2827
"Programming Language :: Python :: 3.10",
2928
"Programming Language :: Python :: 3.11",
@@ -65,7 +64,7 @@ features = ["lint", "test", "compat"]
6564
features = ["test"]
6665

6766
[[tool.hatch.envs.test.matrix]]
68-
python = ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
67+
python = ["3.9", "3.10", "3.11", "3.12", "3.13"]
6968
features = ["compat", "test"]
7069

7170
[tool.hatch.version]

0 commit comments

Comments
 (0)