-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Remove pip from scripts and use only conda #3993
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
77af519
Remove pip from scripts and use only conda
aseyboldt a17c4d2
Remove dev dependency on black_nbconvert
aseyboldt e1e7830
Use requirements.txt in tests
aseyboldt a97ee3a
Add parameterized to dev requirements
aseyboldt cdf0efe
Add some py37 leftovers
aseyboldt 8e38d0d
Update conda packages during travis tests
aseyboldt d311b21
Remove Keras dependency
aseyboldt 1e9f8b0
Use conda to uninstall arviz for travis test
aseyboldt b6b8e80
Install black_nbconvert in testenv
aseyboldt 94a645a
Use conda environmnent file for testenv
aseyboldt a33048f
Merge branch 'master' into travis-conda
twiecki File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
name: testenv | ||
channels: | ||
- conda-forge | ||
- defaults | ||
dependencies: | ||
- python=3.6 | ||
- arviz>=0.9 | ||
- theano>=1.0.4 | ||
- numpy>=1.13 | ||
- scipy>=0.18 | ||
- pandas >=0.18 | ||
- patsy>=0.5 | ||
- fastprogress>=0.2 | ||
- h5py>=2.7 | ||
- typing-extensions>=3.7 | ||
- bokeh>=0.12 | ||
- coverage>=5.1 | ||
- python-graphviz | ||
- ipython>=7.16 | ||
- nbsphinx>=0.4 | ||
- nose>=1.3 | ||
- nose-parameterized>=0.6 | ||
- numpydoc>=0.9 | ||
- pycodestyle>=2.3 | ||
- pyflakes>=1.5 | ||
- pylint>=1.7 | ||
- pytest-cov>=2.5 | ||
- pytest>=3.0 | ||
- recommonmark>=0.4 | ||
- seaborn>=0.8 | ||
- sphinx-autobuild>=0.7 | ||
- sphinx>=1.5 | ||
- watermark | ||
- parameterized | ||
- black | ||
- ipywidgets | ||
- dataclasses # python_version < 3.7 | ||
- contextvars # python_version < 3.7 | ||
- pip: | ||
- black_nbconvert |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Seems like you removed
black_nbconvert
? It's needed for NB stylingThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Now that Travis cache issue is resolved, couldn't you add back
black_nbconvert
to the file?