Skip to content

Commit 685dc2b

Browse files
OriolAbrilrobodair
authored andcommitted
Drop support for Python <3.5 (#7)
Drop support for Python <3.5 Change setup to require parso>=0.1.1 Remove __future__ import for print_function
1 parent 5b2c34b commit 685dc2b

File tree

3 files changed

+5
-10
lines changed

3 files changed

+5
-10
lines changed

.travis.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
language: python
22
sudo: false
33
python:
4-
- 2.6
5-
- 2.7
6-
- 3.3
7-
- 3.4
84
- 3.5
95
- 3.6
6+
- 3.7
7+
- 3.8
108
- pypy
119

1210
matrix:

pydocstring/cli.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@
2828
--version show program's version number and exit
2929
3030
"""
31-
from __future__ import print_function #pragma: no cover
3231
import sys #pragma: no cover
3332
import os #pragma: no cover
3433
import argparse #pragma: no cover

setup.py

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,10 @@
2020
'Environment :: Win32 (MS Windows)',
2121
'Intended Audience :: Developers',
2222
'License :: OSI Approved :: MIT License',
23-
'Programming Language :: Python :: 2.7',
24-
'Programming Language :: Python :: 3.2',
25-
'Programming Language :: Python :: 3.3',
26-
'Programming Language :: Python :: 3.4',
2723
'Programming Language :: Python :: 3.5',
2824
'Programming Language :: Python :: 3.6',
25+
'Programming Language :: Python :: 3.7',
26+
'Programming Language :: Python :: 3.8',
2927
'Topic :: Software Development :: Documentation',
3028
]
3129

@@ -49,6 +47,6 @@
4947
],
5048
},
5149
install_requires=[
52-
'parso==0.1.1'
50+
'parso>=0.1.1'
5351
]
5452
)

0 commit comments

Comments
 (0)