Skip to content

Commit 3d0a30e

Browse files
committed
Bump minimal Python version
1 parent ad40a6a commit 3d0a30e

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
env:
3434
CIBW_TEST_COMMAND: "python -VV && python -m unittest discover -f -s {project}/tests/test_unit/"
3535
CIBW_TEST_EXTRAS: "full"
36-
CIBW_SKIP: "pp* cp27-* cp33-* cp34-* cp35-* cp36-* cp37-* *-win32 *-musllinux_* *-manylinux_i686"
36+
CIBW_SKIP: "pp* cp27-* cp33-* cp34-* cp35-* cp36-* cp37-* cp38-* *-win32 *-musllinux_* *-manylinux_i686"
3737
CIBW_ARCHS_MACOS: x86_64 arm64 universal2
3838
CIBW_ARCHS_LINUX: auto aarch64
3939

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ lines_between_types=1
1313
exclude = ["stubs"]
1414

1515
[tool.mypy]
16-
python_version = 3.8
16+
python_version = 3.10
1717
warn_unused_configs = true
1818
warn_redundant_casts = true
1919
warn_unused_ignores = true

setup.py

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
LICENSE = "MIT"
1818
LICENSE_TROVE = "License :: OSI Approved :: MIT License"
1919
NAME = "clevercsv"
20-
REQUIRES_PYTHON = ">=3.8.0"
20+
REQUIRES_PYTHON = ">=3.9.0"
2121
URL = "https://github.com/alan-turing-institute/CleverCSV"
2222
VERSION = None
2323

@@ -135,7 +135,12 @@ def run(self):
135135
LICENSE_TROVE,
136136
"Programming Language :: Python",
137137
"Programming Language :: Python :: 3",
138-
"Programming Language :: Python :: 3.6",
138+
"Programming Language :: Python :: 3.9",
139+
"Programming Language :: Python :: 3.10",
140+
"Programming Language :: Python :: 3.11",
141+
"Programming Language :: Python :: 3.12",
142+
"Programming Language :: Python :: 3.13",
143+
"Programming Language :: Python :: 3.14",
139144
"Programming Language :: Python :: Implementation :: CPython",
140145
"Programming Language :: Python :: Implementation :: PyPy",
141146
],

0 commit comments

Comments
 (0)