File tree Expand file tree Collapse file tree 2 files changed +5
-9
lines changed Expand file tree Collapse file tree 2 files changed +5
-9
lines changed Original file line number Diff line number Diff line change @@ -103,3 +103,5 @@ venv.bak/
103
103
# mypy
104
104
.mypy_cache /
105
105
106
+ .vscode
107
+
Original file line number Diff line number Diff line change 5
5
from pip ._internal .network .session import PipSession
6
6
from pip ._internal .req import parse_requirements
7
7
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 )
16
10
17
11
install_requires = parse_requirements ('requirements.txt' , session = PipSession ())
18
12
try :
22
16
23
17
setup (
24
18
name = 'hydra_python_core' ,
25
- version = '0.3' ,
19
+ version = '0.3.1 ' ,
26
20
packages = find_packages (),
27
21
license = 'MIT' ,
28
22
description = 'Core functions for Hydrus' ,
You can’t perform that action at this time.
0 commit comments