Skip to content

Commit dfb47e1

Browse files
committed
chore: drop support for Python 3.7 / 3.8
1 parent 8598904 commit dfb47e1

File tree

4 files changed

+10
-9
lines changed

4 files changed

+10
-9
lines changed

Diff for: .github/workflows/ci-tests.yml

+1-3
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,12 @@ jobs:
1616
strategy:
1717
matrix:
1818
py:
19-
- "3.7"
20-
- "3.8"
2119
- "3.9"
2220
- "3.10"
2321
- "3.11"
2422
- "3.12"
2523
- "3.13"
26-
- "pypy-3.8"
24+
- "pypy-3.10"
2725
os:
2826
- "ubuntu-latest"
2927
- "windows-latest"

Diff for: CHANGES.rst

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
3.3.0 (unreleased)
2+
------------------
3+
4+
- Remove support for Python 3.7 and 3.8.
5+
16
3.1.1 (2024-12-01)
27
------------------
38

Diff for: setup.cfg

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = venusian
3-
version = 3.1.1
3+
version = 3.2.0dev0
44
description = A library for deferring decorator actions
55
long_description = file: README.rst, CHANGES.rst
66
long_description_content_type = text/x-rst
@@ -11,8 +11,6 @@ classifiers =
1111
Development Status :: 6 - Mature
1212
Intended Audience :: Developers
1313
Programming Language :: Python :: 3
14-
Programming Language :: Python :: 3.7
15-
Programming Language :: Python :: 3.8
1614
Programming Language :: Python :: 3.9
1715
Programming Language :: Python :: 3.10
1816
Programming Language :: Python :: 3.11
@@ -29,7 +27,7 @@ author_email = [email protected]
2927
package_dir=
3028
=src
3129
packages=find:
32-
python_requires = >=3.7
30+
python_requires = >=3.9
3331

3432
[options.packages.find]
3533
where=src

Diff for: tox.ini

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tox]
22
envlist =
33
lint,
4-
py37,py38,py39,py310,py311,py312,py313,pypy3
4+
py39,py310,py311,py312,py313,pypy3
55
docs,
66
coverage
77
isolated_build = True
@@ -33,7 +33,7 @@ commands =
3333
check-manifest
3434
# build sdist/wheel
3535
python -m build .
36-
twine check dist/*
36+
twine check .tox/.pkg/dist/*
3737
deps =
3838
black
3939
build

0 commit comments

Comments
 (0)