Insure data/alaska.geojson.zip is included in package build #604
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.
This fixes the first^ build issue seen in conda-forge/raider-feedstock#11 and conda-forge/raider-feedstock#12.
In both of those PRs, the
tools/RAiDER/models/data/alaska.geojson.zip
file was not included in the built package because we're building from a src tarball, which does not have the.git
data inside it that is used bysetuptools_scm
to ensure all checked-in files are in the distribution (likewise, this is not an issue seen when building from a clone).You can reproduce the missing zip file like:
wget https://github.com/dbekaert/RAiDER/archive/v0.4.3.tar.gz tar -zxvf v0.4.3.tar.gz export SETUPTOOLS_SCM_PRETEND_VERSION=0.4.3 python -m pip install ./RAiDER-0.4.3 --no-cache-dir
And look at the installed package.
Then, if you make the changes here, you'll see the zip file show up in the installed package.
^ Takling the second build issue in a follow-on PR