-
Notifications
You must be signed in to change notification settings - Fork 397
TST: Test that packages can be build from sdists. #532
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 22 commits
Commits
Show all changes
28 commits
Select commit
Hold shift + click to select a range
d095c29
TST: Test that packages can be build from sdists.
DWesl 8970ab5
BLD: Include requirements files in sdist.
DWesl a24498e
BLD: List build dependencies in pyproject.toml
DWesl 6b1ee2b
Complete MANIFEST.in
molinav 6370cbb
Simplify pyproject.toml
molinav 16d062b
Merge branch 'develop' into build-from-sdist
molinav 9cec59e
Revert changes in basemap-for-manylinux workflow
molinav 9757a10
Revert changes in basemap-for-windows workflow
molinav 2b23126
CI: Use build to create the basemap wheels.
DWesl 48b9ca7
BLD: Add version specifiers for NumPy and Cython to pyproject.toml fo…
DWesl 8bee972
BLD: Simplify the cython requirements in pyproject.toml
DWesl 47b5ebb
CI: Use build to create basemap-data{,-hires} wheels.
DWesl 5eff00f
CI: Specify C99 standard for building wheel
DWesl 0940037
BLD: Specify sdist format as zip for all packages
DWesl 9dce170
BLD: Include setup.cfg in MANIFEST.in
DWesl 3225eb4
CI: Build sdist with setup.py; wheel from sdist with pip
DWesl b0723cf
Revert adding setup.cfg to MANIFEST files
molinav 76ad3cb
Remove redundant code in setup to force zip sdist
molinav 9b2795b
Remove trailing slash
molinav b3b4821
Update pyproject.toml
molinav cad118a
Fix wildcard expansion not taking place in PowerShell
molinav 03dfeb0
Update pip wheel call in basemap-for-manylinux workflow
molinav d27ad85
Fix wrong path to zip file in basemap-for-windows workflow
molinav 1a18b28
Test sdists for basemap-data and basemap-data-hires
molinav 863787e
BLD: Don't include python3.2 requirements in setup_requires if not on…
DWesl 30e1243
Merge remote-tracking branch 'origin/build-from-sdist' into build-fro…
DWesl fcb8289
Revert changes in basemap-data and basemap-data-hires workflows
molinav 403c521
Fix basemap-for-windows build step if compiling numpy
molinav 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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,8 @@ | ||
include requirements*.txt | ||
recursive-include doc * | ||
recursive-exclude doc/build * | ||
recursive-include test * | ||
recursive-include utils *.py | ||
recursive-exclude **/__pycache__ * | ||
exclude **/*.pyc | ||
exclude **/.gitkeep |
This file contains hidden or 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,11 @@ | ||
[build-system] | ||
requires = [ | ||
'setuptools', | ||
'wheel', | ||
'oldest-supported-numpy; python_version >= "3.5"', | ||
'numpy == 1.16.6; python_version == "3.4" or python_version == "2.7"', | ||
'numpy == 1.11.3; python_version == "3.3" or python_version == "3.2" or python_version == "2.6"', | ||
'cython >= 0.29, < 3.1; python_version >= "3.3" or python_version <= "3.0"', | ||
'cython >= 0.26, < 0.27; python_version == "3.2"' | ||
] | ||
build-backend = "setuptools.build_meta" |
This file contains hidden or 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 hidden or 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 hidden or 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 |
---|---|---|
|
@@ -5,5 +5,8 @@ license_files = | |
LICENSE.epsg | ||
LICENSE.mit | ||
|
||
[sdist] | ||
formats = zip | ||
|
||
[bdist_wheel] | ||
universal = 1 |
This file contains hidden or 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 hidden or 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 |
---|---|---|
|
@@ -3,5 +3,8 @@ license_files = | |
COPYING | ||
COPYING.LESSER | ||
|
||
[sdist] | ||
formats = zip | ||
|
||
[bdist_wheel] | ||
universal = 1 |
This file contains hidden or 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.
Wouldn't the
cd ${{ env.PKKGDIR }}
on line 166 make the${{ env.PKGDIR }}
in theGet-Item
on line 171 unnecessary?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.
Yes, you are totally right. I messed it up there.