Skip to content

Commit fe18d88

Browse files
committed
Bump to version 0.3.1
1 parent d5365fb commit fe18d88

File tree

2 files changed

+5
-9
lines changed

2 files changed

+5
-9
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,3 +103,5 @@ venv.bak/
103103
# mypy
104104
.mypy_cache/
105105

106+
.vscode
107+

setup.py

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,8 @@
55
from pip._internal.network.session import PipSession
66
from pip._internal.req import parse_requirements
77
except ImportError:
8-
try:
9-
# 10.0.0 <= pip <= 19.3.1
10-
from pip._internal.download import PipSession
11-
from pip._internal.req import parse_requirements
12-
except ImportError:
13-
# pip <= 9.0.3
14-
from pip.download import PipSession
15-
from pip.req import parse_requirements
8+
msg = "Your pip version is out of date, please run `pip install --upgrade pip setuptools`"
9+
raise ImportError(msg)
1610

1711
install_requires = parse_requirements('requirements.txt', session=PipSession())
1812
try:
@@ -22,7 +16,7 @@
2216

2317
setup(
2418
name='hydra_python_core',
25-
version='0.3',
19+
version='0.3.1',
2620
packages=find_packages(),
2721
license='MIT',
2822
description='Core functions for Hydrus',

0 commit comments

Comments
 (0)