-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updating `release.sh` in the process. Now doing the tox tests in serial because they kept clobbering each other's work on the wheel files.
- Loading branch information
Showing
4 changed files
with
10 additions
and
6 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ include-package-data=true | |
|
||
[project] | ||
name = "ELiDE" | ||
version = "0.15.4" | ||
version = "0.15.5" | ||
authors = [ | ||
{ name="Zachary Spector", email="[email protected]" }, | ||
] | ||
|
@@ -22,7 +22,7 @@ classifiers = [ | |
"Development Status :: 2 - Pre-Alpha" | ||
] | ||
dependencies = [ | ||
"LiSE>=0.15.0,<0.16.0", | ||
"LiSE>=0.15.5,<0.16.0", | ||
"kivy>=2.0.0,<3", | ||
"kivy-deps.glew ; sys_platform == 'win32'", | ||
"kivy-deps.sdl2 ; sys_platform == 'win32'", | ||
|
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 |
---|---|---|
|
@@ -7,7 +7,7 @@ include-package-data=true | |
|
||
[project] | ||
name = "LiSE" | ||
version = "0.15.4" | ||
version = "0.15.5" | ||
authors = [ | ||
{ name="Zachary Spector", email="[email protected]" }, | ||
] | ||
|
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 |
---|---|---|
@@ -1,11 +1,11 @@ | ||
#!/bin/bash | ||
set -euxo | ||
python -m tox -p auto | ||
python -m tox | ||
rm -rf LiSE/build LiSE/dist | ||
python -m build LiSE/ | ||
rm -rf ELiDE/build ELiDE/dist | ||
python -m build ELiDE/ | ||
python -m twine check LiSE/dist/* ELiDE/dist/* | ||
python -m twine upload --repository LiSE LiSE/dist/* | ||
python -m twine upload --repository ELiDE ELiDE/dist/* | ||
python -m twine upload LiSE/dist/* | ||
python -m twine upload ELiDE/dist/* | ||
rm -rf LiSE/build LiSE/dist ELiDE/build ELiDE/dist |