Skip to content

Commit 31b4890

Browse files
committed
Drop Python 3.5 support
1 parent b1157b0 commit 31b4890

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

docs/sources/install.rst

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

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

77
If Python3 is not installed on your system or you don't have sufficient
@@ -35,7 +35,7 @@ Make sure that the directory where ``pip`` install package entry-points
3535
(usually ``~/.local/bin``) is in your ``PATH`` environment variable.
3636
You can run ``python3 -m pip show stagpy`` to obtain some hint about this
3737
location (this command will show you were the compiled sources are installed,
38-
e.g. ``~/.local/lib/python3.5/site-packages``, from which you can deduce the
38+
e.g. ``~/.local/lib/python3.8/site-packages``, from which you can deduce the
3939
entry-point location, e.g. ``~/.local/bin``).
4040

4141
See the `Some setup`_ subsection to enable autocompletion and create your

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,12 @@
4141
'Intended Audience :: Science/Research',
4242
'License :: OSI Approved :: Apache Software License',
4343
'Programming Language :: Python :: 3 :: Only',
44-
'Programming Language :: Python :: 3.5',
4544
'Programming Language :: Python :: 3.6',
4645
'Programming Language :: Python :: 3.7',
4746
'Programming Language :: Python :: 3.8',
4847
],
4948

50-
python_requires='>=3.5',
49+
python_requires='>=3.6',
5150
packages=['stagpy'],
5251
entry_points={
5352
'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 = py35,py36,py37,py38,flake8
2+
envlist = py36,py37,py38,flake8
33
skip_missing_interpreters = True
44
skipsdist=True
55

0 commit comments

Comments
 (0)