Skip to content

Commit 1a4b364

Browse files
committed
Merge pull request #9 from jd/jd/remove-future
Remove future usage
2 parents 740dd1f + fdccd31 commit 1a4b364

File tree

2 files changed

+0
-12
lines changed

2 files changed

+0
-12
lines changed

pytimeparse/timeparse.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@
3131
# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
3232
# SOFTWARE.
3333

34-
from builtins import dict, int
3534
import re
3635

3736
SIGN = r'(?P<sign>[+|-])?'

setup.py

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,6 @@
2222
with open(path.join(HERE, 'README.rst'), encoding='utf-8') as f:
2323
LONG_DESCRIPTION = f.read()
2424

25-
# http://stackoverflow.com/a/19719657/1062499
26-
INSTALL_REQUIRES = []
27-
if sys.version_info.major == 2:
28-
INSTALL_REQUIRES.append('future >= 0.14')
29-
3025
setup(
3126
name='pytimeparse',
3227

@@ -81,12 +76,6 @@
8176
# simple. Or you can use find_packages().
8277
packages=find_packages(exclude=[]),
8378

84-
# List run-time dependencies here. These will be installed by pip when your
85-
# project is installed. For an analysis of "install_requires" vs pip's
86-
# requirements files see:
87-
# https://packaging.python.org/en/latest/requirements.html
88-
install_requires=INSTALL_REQUIRES,
89-
9079
# List additional groups of dependencies here (e.g. development dependencies).
9180
# You can install these using the following syntax, for example:
9281
# $ pip install -e .[dev,test]

0 commit comments

Comments
 (0)