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

Co-authored-by: Pepe Fagoaga <pepe@prowler.com>
Co-authored-by: Sergio Garcia <hello@mistercloudsec.com>
This commit is contained in:
Prowler Bot
2025-04-15 19:21:56 +02:00
committed by GitHub
parent 09be60948d
commit 36df42cf64
2 changed files with 6 additions and 1 deletions
+5
View File
@@ -9,6 +9,11 @@ All notable changes to the **Prowler SDK** are documented in this file.
- Add SOC2 compliance framework to Azure [(#7489)](https://github.com/prowler-cloud/prowler/pull/7489).
- Add check for unused Service Accounts in GCP [(#7419)](https://github.com/prowler-cloud/prowler/pull/7419).
### 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).
---
## [v5.5.1] (Prowler v5.5.1)
+1 -1
View File
@@ -2,7 +2,7 @@ import toml
data = toml.load("pyproject.toml")
# 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
f = open("pyproject.toml", "w")