This repository has been archived by the owner on Jan 4, 2022. It is now read-only.
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.
0.16.7 was supposed to be the last '16 release but in fixing up the Conda packaging I made enough changes to warrant a new release.
conda skeleton
and then edited downconda-build-config.yaml
since we build anoarch: python
packageenvironment.yaml
since it was comically out of dateIn the dependencies:
pip install dask
andconda install dask
are not the same thing!Conda's
dask
is all of Dask and all of its dependencies, even Pandas! What we want is actuallydask-core
, which is just all of Dask and equivalent topip install dask
.Meanwhile,
pip install dask
installs all of Dask, and we only need the array part, so we can just requiredask[array]
to lighten it up.Stole @cderwin's
makefile
from PyVeda to make OSX installs a little easier.make osx
sets the OpenSSL library options beforepip install
ingFixed up the tests so they all pass and got rid of the AssertEqual warnings.