-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
python/cli: update syntax to poetry 2 python/pytest_plugins: remove upper constraint on Python version (cannot switch to poetry 2 since poetry-core 2 does not support python 3.8)
- Loading branch information
1 parent
3c9003a
commit 8189a62
Showing
6 changed files
with
16 additions
and
21 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,19 @@ | ||
[tool.poetry] | ||
[project] | ||
name = "data-platform-workflows-cli" | ||
# Version unused; repository has its own versioning system. (See .github/workflows/__release.yaml) | ||
version = "0.1.0" | ||
description = "" | ||
license = "Apache-2.0" | ||
authors = ["Carl Csaposs <[email protected]>"] | ||
authors = [ | ||
{name = "Carl Csaposs", email = "[email protected]"} | ||
] | ||
readme = "README.md" | ||
requires-python = ">=3.10" | ||
dependencies = [ | ||
"pyyaml>=6.0.2", | ||
"requests>=2.32.3", | ||
] | ||
|
||
[tool.poetry.scripts] | ||
[project.scripts] | ||
redact-secrets = "data_platform_workflows_cli.redact_secrets:main" | ||
collect-snap-platforms = "data_platform_workflows_cli.craft_tools.collect_platforms:snap" | ||
collect-rock-platforms = "data_platform_workflows_cli.craft_tools.collect_platforms:rock" | ||
|
@@ -23,12 +29,6 @@ tee-log-for-all-models = "data_platform_workflows_cli.tee_log_for_all_models:mai | |
sync-docs = "data_platform_workflows_cli.sync_docs:main" | ||
compute-path-in-artifact = "data_platform_workflows_cli.compute_path_in_artifact:main" | ||
|
||
[tool.poetry.dependencies] | ||
python = "^3.10" | ||
pyyaml = "^6.0.1" | ||
requests = "^2.31.0" | ||
|
||
|
||
[build-system] | ||
requires = ["poetry-core"] | ||
requires = ["poetry-core>=2.0.0,<3.0.0"] | ||
build-backend = "poetry.core.masonry.api" |
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
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