-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Pin
prefect
version for integrations packages (#13408)
Co-authored-by: nate nowack <[email protected]>
- Loading branch information
1 parent
eea75eb
commit 504d269
Showing
18 changed files
with
81 additions
and
109 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 |
---|---|---|
|
@@ -7,11 +7,9 @@ name = "prefect-aws" | |
description = "Prefect integrations for interacting with Amazon Web Services." | ||
readme = "README.md" | ||
requires-python = ">=3.8" | ||
license = {text = "Apache License 2.0"} | ||
license = { text = "Apache License 2.0" } | ||
keywords = ["prefect"] | ||
authors = [ | ||
{name = "Prefect Technologies, Inc.", email = "[email protected]"} | ||
] | ||
authors = [{ name = "Prefect Technologies, Inc.", email = "[email protected]" }] | ||
classifiers = [ | ||
"Natural Language :: English", | ||
"Intended Audience :: Developers", | ||
|
@@ -26,38 +24,38 @@ classifiers = [ | |
"Topic :: Software Development :: Libraries", | ||
] | ||
dependencies = [ | ||
"boto3>=1.24.53", | ||
"botocore>=1.27.53", | ||
"mypy_boto3_s3>=1.24.94", | ||
"mypy_boto3_secretsmanager>=1.26.49", | ||
"prefect>=2.16.4", | ||
"pyparsing>=3.1.1", | ||
"tenacity>=8.0.0", | ||
"boto3>=1.24.53", | ||
"botocore>=1.27.53", | ||
"mypy_boto3_s3>=1.24.94", | ||
"mypy_boto3_secretsmanager>=1.26.49", | ||
"prefect >=2.16.4, <3.0.0", | ||
"pyparsing>=3.1.1", | ||
"tenacity>=8.0.0", | ||
] | ||
dynamic = ["version"] | ||
|
||
[project.optional-dependencies] | ||
dev = [ | ||
"black", | ||
"boto3-stubs >= 1.24.39", | ||
"coverage", | ||
"flake8", | ||
"interrogate", | ||
"isort", | ||
"mkdocs", | ||
"mkdocs-gen-files", | ||
"mkdocs-material", | ||
"mkdocstrings-python-legacy", | ||
"mock; python_version < '3.8'", # moto 4.2.5 broke something fairly deep in our test suite https://github.com/PrefectHQ/prefect-aws/issues/318 | ||
"moto >= 3.1.16, < 4.2.5", | ||
"mypy", | ||
"pillow", | ||
"pre-commit", | ||
"pytest", | ||
"pytest-asyncio >= 0.18.2, != 0.22.0, < 0.23.0", # Cannot override event loop in 0.23.0. See https://github.com/pytest-dev/pytest-asyncio/issues/706 for more details. | ||
"pytest-cov", | ||
"pytest-xdist", | ||
"types-boto3 >= 1.0.2", | ||
"black", | ||
"boto3-stubs >= 1.24.39", | ||
"coverage", | ||
"flake8", | ||
"interrogate", | ||
"isort", | ||
"mkdocs", | ||
"mkdocs-gen-files", | ||
"mkdocs-material", | ||
"mkdocstrings-python-legacy", | ||
"mock; python_version < '3.8'", # moto 4.2.5 broke something fairly deep in our test suite https://github.com/PrefectHQ/prefect-aws/issues/318 | ||
"moto >= 3.1.16, < 4.2.5", | ||
"mypy", | ||
"pillow", | ||
"pre-commit", | ||
"pytest", | ||
"pytest-asyncio >= 0.18.2, != 0.22.0, < 0.23.0", # Cannot override event loop in 0.23.0. See https://github.com/pytest-dev/pytest-asyncio/issues/706 for more details. | ||
"pytest-cov", | ||
"pytest-xdist", | ||
"types-boto3 >= 1.0.2", | ||
] | ||
|
||
[project.urls] | ||
|
@@ -88,4 +86,4 @@ fail_under = 80 | |
show_missing = true | ||
|
||
[tool.pytest.ini_options] | ||
asyncio_mode = "auto" | ||
asyncio_mode = "auto" |
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 |
---|---|---|
|
@@ -7,11 +7,9 @@ name = "prefect-azure" | |
description = "Prefect integrations with Microsoft Azure services" | ||
readme = "README.md" | ||
requires-python = ">=3.8" | ||
license = {text = "Apache License 2.0"} | ||
license = { text = "Apache License 2.0" } | ||
keywords = ["prefect"] | ||
authors = [ | ||
{name = "Prefect Technologies, Inc.", email = "[email protected]"} | ||
] | ||
authors = [{ name = "Prefect Technologies, Inc.", email = "[email protected]" }] | ||
classifiers = [ | ||
"Natural Language :: English", | ||
"Intended Audience :: Developers", | ||
|
@@ -30,19 +28,15 @@ dependencies = [ | |
"azure_identity>=1.10", | ||
"azure_mgmt_containerinstance>=10.0", | ||
"azure-mgmt-resource>=21.2", | ||
"prefect>=2.14.10", | ||
"prefect>=2.14.10, < 3.0.0", | ||
] | ||
dynamic = ["version"] | ||
|
||
[project.optional-dependencies] | ||
blob_storage = ["azure-storage-blob"] | ||
cosmos_db = ["azure-cosmos"] | ||
ml_datastore = ["azureml-core"] | ||
all_extras = [ | ||
"azure-cosmos", | ||
"azure-storage-blob", | ||
"azureml-core", | ||
] | ||
all_extras = ["azure-cosmos", "azure-storage-blob", "azureml-core"] | ||
dev = [ | ||
"aiohttp", | ||
"azure-cosmos", | ||
|
@@ -91,4 +85,4 @@ fail_under = 80 | |
show_missing = true | ||
|
||
[tool.pytest.ini_options] | ||
asyncio_mode = "auto" | ||
asyncio_mode = "auto" |
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 |
---|---|---|
|
@@ -7,11 +7,9 @@ name = "prefect-bitbucket" | |
description = "Prefect integrations for working with Bitbucket repositories." | ||
readme = "README.md" | ||
requires-python = ">=3.8" | ||
license = {text = "Apache License 2.0"} | ||
license = { text = "Apache License 2.0" } | ||
keywords = ["prefect"] | ||
authors = [ | ||
{name = "Prefect Technologies, Inc.", email = "[email protected]"} | ||
] | ||
authors = [{ name = "Prefect Technologies, Inc.", email = "[email protected]" }] | ||
classifiers = [ | ||
"Natural Language :: English", | ||
"Intended Audience :: Developers", | ||
|
@@ -26,7 +24,7 @@ classifiers = [ | |
"Topic :: Software Development :: Libraries", | ||
] | ||
dependencies = [ | ||
"prefect>=2.14.10", | ||
"prefect>=2.14.10, < 3.0.0", | ||
"atlassian-python-api>=3.32.1,!=3.41.5,!=3.41.6,!=3.41.7,!=3.41.8", | ||
] | ||
dynamic = ["version"] | ||
|
@@ -77,4 +75,4 @@ fail_under = 80 | |
show_missing = true | ||
|
||
[tool.pytest.ini_options] | ||
asyncio_mode = "auto" | ||
asyncio_mode = "auto" |
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 |
---|---|---|
|
@@ -7,11 +7,9 @@ name = "prefect-databricks" | |
description = "Prefect integrations with Databricks" | ||
readme = "README.md" | ||
requires-python = ">=3.8" | ||
license = {text = "Apache License 2.0"} | ||
license = { text = "Apache License 2.0" } | ||
keywords = ["prefect"] | ||
authors = [ | ||
{name = "Prefect Technologies, Inc.", email = "[email protected]"} | ||
] | ||
authors = [{ name = "Prefect Technologies, Inc.", email = "[email protected]" }] | ||
classifiers = [ | ||
"Natural Language :: English", | ||
"Intended Audience :: Developers", | ||
|
@@ -25,9 +23,7 @@ classifiers = [ | |
"Programming Language :: Python :: 3.12", | ||
"Topic :: Software Development :: Libraries", | ||
] | ||
dependencies = [ | ||
"prefect>=2.14.10", | ||
] | ||
dependencies = ["prefect>=2.14.10, < 3.0.0"] | ||
dynamic = ["version"] | ||
|
||
[project.optional-dependencies] | ||
|
@@ -76,4 +72,4 @@ fail_under = 80 | |
show_missing = true | ||
|
||
[tool.pytest.ini_options] | ||
asyncio_mode = "auto" | ||
asyncio_mode = "auto" |
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 |
---|---|---|
|
@@ -7,11 +7,9 @@ name = "prefect-email" | |
description = "Prefect integrations for interacting with email." | ||
readme = "README.md" | ||
requires-python = ">=3.8" | ||
license = {text = "Apache License 2.0"} | ||
license = { text = "Apache License 2.0" } | ||
keywords = ["prefect"] | ||
authors = [ | ||
{name = "Prefect Technologies, Inc.", email = "[email protected]"} | ||
] | ||
authors = [{ name = "Prefect Technologies, Inc.", email = "[email protected]" }] | ||
classifiers = [ | ||
"Natural Language :: English", | ||
"Intended Audience :: Developers", | ||
|
@@ -25,9 +23,7 @@ classifiers = [ | |
"Programming Language :: Python :: 3.12", | ||
"Topic :: Software Development :: Libraries", | ||
] | ||
dependencies = [ | ||
"prefect>=2.14.10", | ||
] | ||
dependencies = ["prefect>=2.14.10, < 3.0.0"] | ||
dynamic = ["version"] | ||
|
||
[project.optional-dependencies] | ||
|
@@ -76,4 +72,4 @@ fail_under = 80 | |
show_missing = true | ||
|
||
[tool.pytest.ini_options] | ||
asyncio_mode = "auto" | ||
asyncio_mode = "auto" |
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 |
---|---|---|
|
@@ -7,11 +7,9 @@ name = "prefect-gitlab" | |
description = "A Prefect collection for working with GitLab repositories." | ||
readme = "README.md" | ||
requires-python = ">=3.8" | ||
license = {text = "Apache License 2.0"} | ||
license = { text = "Apache License 2.0" } | ||
keywords = ["prefect"] | ||
authors = [ | ||
{name = "Prefect Technologies, Inc.", email = "[email protected]"} | ||
] | ||
authors = [{ name = "Prefect Technologies, Inc.", email = "[email protected]" }] | ||
classifiers = [ | ||
"Natural Language :: English", | ||
"Intended Audience :: Developers", | ||
|
@@ -26,9 +24,9 @@ classifiers = [ | |
"Topic :: Software Development :: Libraries", | ||
] | ||
dependencies = [ | ||
"prefect>=2.13.5", | ||
"python-gitlab>=3.12.0", | ||
"tenacity>=8.2.3", | ||
"prefect>=2.13.5, < 3.0.0", | ||
"python-gitlab>=3.12.0", | ||
"tenacity>=8.2.3", | ||
] | ||
dynamic = ["version"] | ||
|
||
|
@@ -78,4 +76,4 @@ fail_under = 80 | |
show_missing = true | ||
|
||
[tool.pytest.ini_options] | ||
asyncio_mode = "auto" | ||
asyncio_mode = "auto" |
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 |
---|---|---|
|
@@ -7,11 +7,9 @@ name = "prefect-ray" | |
description = "Prefect integrations with the Ray execution framework." | ||
readme = "README.md" | ||
requires-python = ">=3.8" | ||
license = {text = "Apache License 2.0"} | ||
license = { text = "Apache License 2.0" } | ||
keywords = ["prefect"] | ||
authors = [ | ||
{name = "Prefect Technologies, Inc.", email = "[email protected]"} | ||
] | ||
authors = [{ name = "Prefect Technologies, Inc.", email = "[email protected]" }] | ||
classifiers = [ | ||
"Natural Language :: English", | ||
"Intended Audience :: Developers", | ||
|
@@ -25,10 +23,7 @@ classifiers = [ | |
"Programming Language :: Python :: 3.12", | ||
"Topic :: Software Development :: Libraries", | ||
] | ||
dependencies = [ | ||
"prefect>=2.14.10", | ||
"ray[default]>=2.0.0" | ||
] | ||
dependencies = ["prefect>=2.14.10, < 3.0.0", "ray[default]>=2.0.0"] | ||
dynamic = ["version"] | ||
|
||
[project.optional-dependencies] | ||
|
@@ -78,4 +73,4 @@ fail_under = 80 | |
show_missing = true | ||
|
||
[tool.pytest.ini_options] | ||
asyncio_mode = "auto" | ||
asyncio_mode = "auto" |
Oops, something went wrong.