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/
103103# mypy
104104.mypy_cache /
105105
106+ .vscode
107+
Original file line number Diff line number Diff line change 55 from pip ._internal .network .session import PipSession
66 from pip ._internal .req import parse_requirements
77except 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
1711install_requires = parse_requirements ('requirements.txt' , session = PipSession ())
1812try :
2216
2317setup (
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' ,
You can’t perform that action at this time.
0 commit comments