Skip to content

Commit ec644e2

Browse files
committed
Drop Python 3.6
Decision made based on statistics from: https://git.afpy.org/mdk/python-versions
1 parent 0d5e994 commit ec644e2

File tree

4 files changed

+11
-7
lines changed

4 files changed

+11
-7
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
strategy:
4949
matrix:
5050
# Match versions specified in tox.ini
51-
python-version: ['3.6', '3.8', '3.9', '3.10', 'pypy-3.7']
51+
python-version: ['3.8', '3.9', '3.10', 'pypy-3.7']
5252

5353
# Steps represent a sequence of tasks that will be executed as part of the job
5454
steps:

README.rst

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ dpath-python
22
============
33

44
|PyPI|
5+
|Python Version|
56
|Build Status|
67
|Gitter|
78

@@ -451,12 +452,16 @@ components instead of string globs.
451452
:target: https://pypi.python.org/pypi/dpath/
452453
:alt: PyPI: Latest Version
453454

455+
.. |Python Version| image:: https://img.shields.io/pypi/pyversions/dpath?style=flat
456+
:target: https://pypi.python.org/pypi/dpath/
457+
:alt: Supported Python Version
458+
454459
.. |Build Status| image:: https://github.com/dpath-maintainers/dpath-python/actions/workflows/tests.yml/badge.svg
455-
:target: https://github.com/dpath-maintainers/dpath-python/actions/workflows/tests.yml
460+
:target: https://github.com/dpath-maintainers/dpath-python/actions/workflows/tests.yml
456461

457462
.. |Gitter| image:: https://badges.gitter.im/dpath-python/chat.svg
458-
:target: https://gitter.im/dpath-python/chat?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge
459-
:alt: Gitter
463+
:target: https://gitter.im/dpath-python/chat?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge
464+
:alt: Gitter
460465

461466
Contributors
462467
============

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
scripts=[],
2626
packages=["dpath"],
2727
data_files=[],
28-
python_requires=">=3",
28+
python_requires=">=3.7",
2929
classifiers=[
3030
'Development Status :: 5 - Production/Stable',
3131
'Environment :: Console',

tox.ini

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,10 @@
77
ignore = E501,E722
88

99
[tox]
10-
envlist = py36, pypy37, py38, py39, py310, flake8
10+
envlist = pypy37, py38, py39, py310, flake8
1111

1212
[gh-actions]
1313
python =
14-
3.6.15: py36
1514
pypy-3.7: pypy37
1615
3.8: py38
1716
3.9: py39

0 commit comments

Comments
 (0)