Skip to content

Commit

Permalink
Fix bug on pip integration in conda requirements
Browse files Browse the repository at this point in the history
Conda only parses a single list of pip requirements.
If two pip lists are given, all but the last list is skipped.
  • Loading branch information
unalmis committed Oct 10, 2022
1 parent d3f527e commit 587801d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 9 deletions.
4 changes: 2 additions & 2 deletions devtools/dev-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ sphinx-rtd-theme
black == 21.7b0
click == 8.0.4
flake8 >= 4.0.1
pylint >= 2.12.2
pydocstyle >= 2.0.0
flake8-docstrings
flake8-eradicate
flake8-isort
pydocstyle >= 2.0.0
pylint >= 2.12.2

# testing and benchmarking
codecov
Expand Down
13 changes: 6 additions & 7 deletions devtools/dev-requirements_conda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ dependencies:
- jax >= 0.2.11, <= 0.2.25
- jaxlib >= 0.1.69, <= 0.1.76
- nvgpu
# testing and benchmarking
- qsc

# building the docs
- nbsphinx > 0.8.5
Expand All @@ -29,12 +31,11 @@ dependencies:
- black = 21.7b0
- click = 8.0.4
- flake8 >= 4.0.1
- flake8-docstrings
- flake8-eradicate
- flake8-isort
- pydocstyle >= 2.0.0
- pylint >= 2.12.2
- pip:
- pydocstyle >= 2.0.0
- flake8-docstrings
- flake8-eradicate
- flake8-isort

# testing and benchmarking
- codecov
Expand All @@ -47,8 +48,6 @@ dependencies:
- pytest-mpl = 0.16.1
- pytest-split
- shapely >= 1.8.2
- pip:
- qsc

# building
- python-build

0 comments on commit 587801d

Please sign in to comment.