Skip to content

Commit fe3206e

Browse files
committed
Drop Python 3.6 and add Python 3.10 support
1 parent 952436d commit fe3206e

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/tox.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
strategy:
1616
max-parallel: 4
1717
matrix:
18-
python-version: ['3.6', '3.7', '3.8', '3.9']
18+
python-version: ['3.7', '3.8', '3.9', '3.10']
1919

2020
steps:
2121
- uses: actions/checkout@v2

docs/sources/install.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Installation
22
============
33

4-
You will need Python 3.6 or higher to use StagPy. StagPy is available on
4+
You will need Python 3.7 or higher to use StagPy. StagPy is available on
55
the Python Package Index, via ``pip``.
66

77
If you don't have sufficient permissions to install or update Python, you might

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@
1919
'Intended Audience :: Science/Research',
2020
'License :: OSI Approved :: Apache Software License',
2121
'Programming Language :: Python :: 3 :: Only',
22-
'Programming Language :: Python :: 3.6',
2322
'Programming Language :: Python :: 3.7',
2423
'Programming Language :: Python :: 3.8',
2524
'Programming Language :: Python :: 3.9',
25+
'Programming Language :: Python :: 3.10',
2626
],
2727

28-
python_requires='>=3.6',
28+
python_requires='>=3.7',
2929
packages=['stagpy'],
3030
entry_points={
3131
'console_scripts': ['stagpy = stagpy.__main__:main']

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py36,py37,py38,py39,flake8
2+
envlist = py37,py38,py39,py310,flake8
33
skip_missing_interpreters = True
44
skipsdist=True
55

0 commit comments

Comments
 (0)