Skip to content

Commit 8a62341

Browse files
committed
Remove Python 3.7 support
1 parent 025ba04 commit 8a62341

File tree

4 files changed

+4
-6
lines changed

4 files changed

+4
-6
lines changed

.github/workflows/ci.yml

-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ jobs:
1414
strategy:
1515
matrix:
1616
python-version:
17-
- "3.7"
1817
- "3.8"
1918
- "3.9"
2019
- "3.10"

README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ About
1111
-----
1212

1313
This library provides a robust and significantly extended implementation
14-
of JSONPath for Python. It is tested with CPython 3.7 and higher.
14+
of JSONPath for Python. It is tested with CPython 3.8 and higher.
1515

1616
This library differs from other JSONPath implementations in that it is a
1717
full *language* implementation, meaning the JSONPath expressions are

setup.py

-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@
3030
'Intended Audience :: Developers',
3131
'License :: OSI Approved :: Apache Software License',
3232
'Programming Language :: Python :: 3',
33-
'Programming Language :: Python :: 3.7',
3433
'Programming Language :: Python :: 3.8',
3534
'Programming Language :: Python :: 3.9',
3635
'Programming Language :: Python :: 3.10',

tox.ini

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ min_version = 4.3.5
33

44
envlist =
55
coverage-erase
6-
py{3.12, 3.11, 3.10, 3.9, 3.8, 3.7}
6+
py{3.12, 3.11, 3.10, 3.9, 3.8}
77
coverage-report
88

99
skip_missing_interpreters = True
@@ -15,7 +15,7 @@ package = wheel
1515
wheel_build_env = build_wheel
1616

1717
depends =
18-
py{3.12, 3.11, 3.10, 3.9, 3.8, 3.7}: coverage-erase
18+
py{3.12, 3.11, 3.10, 3.9, 3.8}: coverage-erase
1919
deps =
2020
coverage[toml]
2121
pytest
@@ -35,7 +35,7 @@ commands =
3535

3636
[testenv:coverage-report]
3737
depends =
38-
py{3.12, 3.11, 3.10, 3.9, 3.8, 3.7}
38+
py{3.12, 3.11, 3.10, 3.9, 3.8}
3939
no_package = true
4040
skip_install = true
4141
deps =

0 commit comments

Comments
 (0)