Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit

Permalink
Moved requirement files to a dedicated folder. (#154)
Browse files Browse the repository at this point in the history
* Moved requirement files to a dedicated folder.

* Updated dev_setup.
  • Loading branch information
Jasper Schulz committed Jun 26, 2019
1 parent 98fe152 commit 128a2e5
Show file tree
Hide file tree
Showing 8 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions dev_setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,6 @@ fi
git config core.hooksPath ".devtools/githooks"

# install project requirements
python -m pip install -r requirements-setup.txt
python -m pip install -r requirements-test.txt
python -m pip install -r requirements.txt
python -m pip install -r requirements/requirements-setup.txt
python -m pip install -r requirements/requirements-test.txt
python -m pip install -r requirements/requirements.txt
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def read(*names, encoding='utf8'):


def find_requirements(filename):
with (ROOT / filename).open() as f:
with (ROOT / "requirements" / filename).open() as f:
mxnet_old = "mxnet=="
mxnet_new = "mxnet-cu92mkl==" if GPU_SUPPORT else mxnet_old
return [
Expand Down

0 comments on commit 128a2e5

Please sign in to comment.