Skip to content

Commit 6bfe2e5

Browse files
committed
remove python 3.9
1 parent db3a3ad commit 6bfe2e5

File tree

5 files changed

+6
-8
lines changed

5 files changed

+6
-8
lines changed

.github/workflows/main-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
runs-on: ubuntu-latest
1919
strategy:
2020
matrix:
21-
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
21+
python-version: ['3.10', '3.11', '3.12', '3.13', '3.14']
2222

2323
steps:
2424
- name: Checkout source

Makefile

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,18 @@
22
PYTHON=python3
33

44
all:
5-
@echo "targets: dist, docs, upload, install, clean, test"
5+
@echo "targets: dist, docs, upload, clean, test"
66

77
docs:
88
sphinx-build docs/source build/docs
99

1010
dist:
11-
$(PYTHON) setup.py sdist bdist_wheel
11+
$(PYTHON) -m build --sdist --wheel
1212

1313
upload: dist
1414
@echo "Uploading to Pypi using twine...."
1515
twine upload dist/*
1616

17-
install:
18-
$(PYTHON) setup.py install
19-
2017
test:
2118
PYTHONPATH=. python3 -m pytest tests
2219

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ license_file = LICENSE
1313
classifiers =
1414
Development Status :: 5 - Production/Stable
1515
Intended Audience :: Developers
16-
License :: OSI Approved :: MIT License
16+
License-Expression :: MIT
1717
Natural Language :: English
1818
Natural Language :: Dutch
1919
Operating System :: OS Independent

test-requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
build
12
serpent>=1.41
23
msgpack>=0.5.2
34
pytest

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist=py39,py310,py311,py312,py313,py314,pypy3
2+
envlist=py310,py311,py312,py313,py314,pypy3
33

44
[testenv]
55
deps=

0 commit comments

Comments
 (0)