fix(pypi): package name location in pyproject.toml while replicating for prowler-cloud (#7531)

This commit is contained in:
Pepe Fagoaga
2025-04-15 20:01:27 +05:45
committed by GitHub
parent fbae338689
commit 24dfd47329
2 changed files with 2 additions and 1 deletions

View File

@@ -11,6 +11,7 @@ All notable changes to the **Prowler SDK** are documented in this file.
### Fixed ### Fixed
- Fix package name location in pyproject.toml while replicating for prowler-cloud [(#7531)](https://github.com/prowler-cloud/prowler/pull/7531).
- Remove cache in PyPI release action [(#7532)](https://github.com/prowler-cloud/prowler/pull/7532). - Remove cache in PyPI release action [(#7532)](https://github.com/prowler-cloud/prowler/pull/7532).
--- ---

View File

@@ -2,7 +2,7 @@ import toml
data = toml.load("pyproject.toml") data = toml.load("pyproject.toml")
# Modify field # Modify field
data["tool"]["poetry"]["name"] = "prowler-cloud" data["project"]["name"] = "prowler-cloud"
# To use the dump function, you need to open the file in 'write' mode # To use the dump function, you need to open the file in 'write' mode
f = open("pyproject.toml", "w") f = open("pyproject.toml", "w")