Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
darshan
darshan
Commits
a279d721
Commit
a279d721
authored
Nov 23, 2020
by
Jakob Luettgau
Browse files
Add finds to gather wheels into dist before release.
parent
623dd590
Changes
1
Hide whitespace changes
Inline
Side-by-side
darshan-util/pydarshan/Makefile
View file @
a279d721
...
...
@@ -67,6 +67,16 @@ release: #dist # package and upload a release
dist
:
clean
#
builds source and wheel package
python setup.py sdist
python setup.py bdist_wheel
# might want to remove none-any wheel, but more specific wheels seem to take precedence
# rm -r dist/*non-any.whl
# gather binary wheels
# pip >= 19.0
find
./wheelhouse/manylinux2010*
-name
*manylinux*.whl
-exec
cp
{}
./dist
\;
# pip >= 8.1.0, may overwrite previously copied, but these have greater compatability
find
./wheelhouse/manylinux1*
-name
*manylinux*.whl
-exec
cp
{}
./dist
\;
ls
-l
dist
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment