-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Roll out Python wheel build and publishing (#926)
Fixes #897 As part of pulumi/home#2883 we are enabling: - generating pyproject.toml instead of setup.py - building wheels alongside source distributions - making sure both wheels and source distributions are published on pypi If all goes well this feature-* PR should result in a PyPI version that can be checked to have both sdist and wheel distros published.
- Loading branch information
Showing
9 changed files
with
50 additions
and
48 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
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 |
---|---|---|
|
@@ -27,3 +27,5 @@ sdk/java/.gradle | |
sdk/java/gradle | ||
sdk/java/gradlew | ||
sdk/java/gradlew.bat | ||
|
||
sdk/python/venv |
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
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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
[project] | ||
name = "pulumi_google_native" | ||
description = "A native Pulumi package for creating and managing Google Cloud resources." | ||
dependencies = ["parver>=0.2.1", "pulumi>=3.0.0,<4.0.0", "semver>=2.8.1"] | ||
keywords = ["pulumi", "google cloud", "category/cloud", "kind/native"] | ||
readme = "README.md" | ||
requires-python = ">=3.7" | ||
version = "0.0.0" | ||
[project.license] | ||
text = "Apache-2.0" | ||
[project.urls] | ||
Homepage = "https://pulumi.com" | ||
Repository = "https://github.com/pulumi/pulumi-google-native" | ||
|
||
[build-system] | ||
requires = ["setuptools>=61.0"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[tool] | ||
[tool.setuptools] | ||
[tool.setuptools.package-data] | ||
pulumi_google_native = ["py.typed", "pulumi-plugin.json"] |
This file was deleted.
Oops, something went wrong.