-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: verify before uploading, unpin setuptools
- Verify the build before it goes out. Previously, we missed that the README.md wouldn't be picked up on case-sensitive OS such as the one we use to deploy. - Unpin setuptools to not stick with the deprecated source distribution name.
- Loading branch information
1 parent
7c20802
commit 9823373
Showing
2 changed files
with
3 additions
and
2 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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
[build-system] | ||
requires = ["setuptools<69.3", "wheel"] | ||
requires = ["setuptools", "wheel"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
|
@@ -10,7 +10,7 @@ authors = [ | |
{name = "Lumicks B.V."}, | ||
{email = "[email protected]"}, | ||
] | ||
readme = {file="README.md", content-type = "text/markdown"} | ||
readme = {file="readme.md", content-type = "text/markdown"} | ||
license = {file = "license.md"} | ||
keywords = ["optical tweezers", "kymographs", "data analysis", "lumicks"] | ||
classifiers=[ | ||
|