Skip to content

Commit

Permalink
Update setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
ankiano committed Jul 17, 2020
1 parent c471dad commit 5bebc69
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
#!/usr/bin/env python3.6
# coding=utf-8

from pip._internal.req import parse_requirements
from pip._internal.download import PipSession
try: # for pip >= 10
from pip._internal.req import parse_requirements
except ImportError: # for pip <= 9.0.3
from pip.req import parse_requirements
try: # for pip >= 10
from pip._internal.download import PipSession
except ImportError: # for pip <= 9.0.3
from pip.download import PipSession

from setuptools import setup, find_packages

Expand All @@ -15,7 +21,7 @@

setup(
name='skimpy',
version='0.0.8',
version='0.0.9',
description='',
long_description='',
py_modules=['skimpy'],
Expand Down

0 comments on commit 5bebc69

Please sign in to comment.