Skip to content
This repository was archived by the owner on Mar 31, 2025. It is now read-only.

Commit b62c77e

Browse files
committed
Drop dependency on future
This package doesn't explicitly say in its `setup.py` that it's meant to be used only with Python 3, but in practice it's not compatible with Python 2. We no longer need to install `future` or use `from __future__` imports.
1 parent c16585f commit b62c77e

File tree

3 files changed

+0
-3
lines changed

3 files changed

+0
-3
lines changed

clrenv/lazy_env.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
from __future__ import print_function
21
from builtins import object
32
from glob import glob
43
from itertools import chain

requirements.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
PyYAML==4.2b1
22
munch==2.2.0
3-
future==0.16.0
43
boto3==1.5.36
54
-e git+https://github.com/ColorGenomics/[email protected]#egg=clrypt

setup.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
install_requires=[
1717
'PyYAML>=4.2b1',
1818
'munch>=2.2.0',
19-
'future==0.16.0',
2019
],
2120
license = "MIT",
2221
)

0 commit comments

Comments
 (0)