forked from python-graphblas/python-graphblas
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update docs/env.yml (python-graphblas#338)
It was taking too long to create the environment on readthedocs. This PR makes three changes to improve things: 1. Use mamba instead of conda 2. Add `nodefaults` channel (i.e., only use packages from conda-forge) 3. Install from conda-forge instead of pip where possible and up to date Adding `nodefaults` actually makes solving the environment pretty fast for both conda and mamba. I suspect mamba downloads files faster.
- Loading branch information
Showing
2 changed files
with
23 additions
and
15 deletions.
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 |
---|---|---|
@@ -1,22 +1,23 @@ | ||
name: python-graphblas-docs | ||
channels: | ||
- conda-forge | ||
- nodefaults | ||
dependencies: | ||
- python=3.9 | ||
- sphinx>=4.2 | ||
- graphblas>=7.1.0 | ||
- python-suitesparse-graphblas | ||
- python=3.10 | ||
- pip | ||
# python-graphblas dependencies | ||
- donfig | ||
- numba | ||
- python-suitesparse-graphblas>=7.3.2.0 | ||
- pyyaml | ||
# extra dependencies | ||
- matplotlib | ||
- networkx | ||
- pandas | ||
- scipy | ||
- numba | ||
- cffi | ||
- donfig | ||
- pyyaml | ||
- pip | ||
- pip: | ||
- nbsphinx | ||
- numpydoc | ||
- sphinx_panels | ||
- pydata_sphinx_theme | ||
- scipy>=1.7.0 | ||
# docs dependencies | ||
- commonmark # For RTD | ||
- nbsphinx | ||
- numpydoc | ||
- pydata-sphinx-theme | ||
- sphinx-panels |