mirror of
https://github.com/prowler-cloud/prowler.git
synced 2025-12-19 05:17:47 +00:00
fix(pypi): package name location in pyproject.toml while replicating for prowler-cloud (#7531)
This commit is contained in:
@@ -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).
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|||||||
@@ -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")
|
||||||
|
|||||||
Reference in New Issue
Block a user