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.
Randomize version of dependencies (python-graphblas#368)
* Randomize version of dependencies * Update min versions for networkx and numpy * Don't randomize numpy version yet; issues with installing from source/upstream * min versions for pandas, scipy, donfig * Aha! We actually need scipy >=1.8 * Sometimes don't specify version of numpy, pandas, or scipy * awkward >=1.9 * numba>=0.55 pyyaml>=5.4
- Loading branch information
Showing
4 changed files
with
64 additions
and
7 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
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,12 @@ | ||
#!/usr/bin/env bash | ||
# Simple helper to check versions of dependencies. | ||
# Use, adjust, copy/paste, etc. as necessary to answer your questions. | ||
# This may be helpful when updating dependency versions in CI. | ||
# Tip: add `--json` for more information. | ||
conda search 'numpy[channel=conda-forge]>=1.24.1' | ||
conda search 'pandas[channel=conda-forge]>=1.5.2' | ||
conda search 'scipy[channel=conda-forge]>=1.10.0' | ||
conda search 'networkx[channel=conda-forge]>=3.0' | ||
conda search 'awkward[channel=conda-forge]>=2.0.5' | ||
conda search 'numba[channel=conda-forge]>=0.56.4' | ||
conda search 'pyyaml[channel=conda-forge]>=6.0' |
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