Skip to content

Commit

Permalink
Merge pull request #117 from mrocklin/drop-python-2
Browse files Browse the repository at this point in the history
Drop python 2
  • Loading branch information
jacobtomlinson committed Jan 12, 2019
2 parents d06a5eb + 2ef98f4 commit 1a62284
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 10 deletions.
11 changes: 3 additions & 8 deletions dask_kubernetes/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,10 @@
import socket
import string
import time
try:
from urllib.parse import urlparse
except ImportError:
from urlparse import urlparse
from urllib.parse import urlparse
import uuid
try:
from weakref import finalize
except ImportError:
from backports.weakref import finalize
from weakref import finalize

try:
import yaml
except ImportError:
Expand Down
1 change: 0 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
dask>=0.19.0
distributed>=1.22.0
kubernetes>=4
backports.weakref>=1; python_version == '2.7'
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@
long_description=(open('README.rst').read() if exists('README.rst') else ''),
zip_safe=False,
install_requires=list(open('requirements.txt').read().strip().split('\n')),
python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*',
python_requires='>=3.5',
)

0 comments on commit 1a62284

Please sign in to comment.