Skip to content

Commit 0519149

Browse files
committed
Drop Python3.7 support RE #6
1 parent cef273d commit 0519149

File tree

4 files changed

+4
-6
lines changed

4 files changed

+4
-6
lines changed

.github/workflows/CI.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
build:
99
strategy:
1010
matrix:
11-
python-version: [3.7, 3.8, 3.9, "3.10", 3.11]
11+
python-version: [3.8, 3.9, "3.10", 3.11]
1212
os: [ubuntu-latest, windows-latest, macos-latest]
1313
fail-fast: false
1414

requirements/requirements_dev.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

3-
for x in "7" "8" "9" "10" "11"; do
3+
for x in "8" "9" "10" "11"; do
44
"python3.${x}" -m uv pip compile requirements_dev.in \
55
--upgrade -v -o requirements_dev-py3${x}.txt &
66
done

setup.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,13 @@
2222
setup(
2323
author="Matthew Andres Moreno",
2424
author_email='m.more500@gmail.com',
25-
python_requires='>=3.6',
25+
python_requires='>=3.8',
2626
classifiers=[
2727
'Development Status :: 2 - Pre-Alpha',
2828
'Intended Audience :: Developers',
2929
'License :: OSI Approved :: MIT License',
3030
'Natural Language :: English',
3131
'Programming Language :: Python :: 3',
32-
'Programming Language :: Python :: 3.7',
3332
'Programming Language :: Python :: 3.8',
3433
'Programming Language :: Python :: 3.9',
3534
'Programming Language :: Python :: 3.10',

tox.ini

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
[tox]
2-
envlist = py37, py38, py39, py310, py311, flake8, mypy
2+
envlist = py38, py39, py310, py311, flake8, mypy
33

44
[gh-actions]
55
python =
6-
3.7: py37
76
3.8: py38, mypy
87
3.9: py39
98
3.10: py310

0 commit comments

Comments
 (0)