Skip to content

Commit

Permalink
Remove rc suffixes from all internal dependencies (#16018)
Browse files Browse the repository at this point in the history
  • Loading branch information
cicdw authored Nov 14, 2024
1 parent f03b4ff commit 86b80dc
Show file tree
Hide file tree
Showing 18 changed files with 41 additions and 41 deletions.
34 changes: 17 additions & 17 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,28 +52,28 @@ def read_requirements(file):
"dev": dev_requires,
"otel": otel_requires,
# Infrastructure extras
"aws": "prefect-aws>=0.5.0rc1",
"azure": "prefect-azure>=0.4.0rc1",
"gcp": "prefect-gcp>=0.6.0rc1",
"docker": "prefect-docker>=0.6.0rc1",
"kubernetes": "prefect-kubernetes>=0.4.0rc1",
"shell": "prefect-shell>=0.3.0rc1",
"aws": "prefect-aws>=0.5.0",
"azure": "prefect-azure>=0.4.0",
"gcp": "prefect-gcp>=0.6.0",
"docker": "prefect-docker>=0.6.0",
"kubernetes": "prefect-kubernetes>=0.4.0",
"shell": "prefect-shell>=0.3.0",
# Distributed task execution extras
"dask": "prefect-dask>=0.3.0rc1",
"ray": "prefect-ray>=0.4.0rc1",
"dask": "prefect-dask>=0.3.0",
"ray": "prefect-ray>=0.4.0",
# Version control extras
"bitbucket": "prefect-bitbucket>=0.3.0rc1",
"github": "prefect-github>=0.3.0rc1",
"gitlab": "prefect-gitlab>=0.3.0rc1",
"bitbucket": "prefect-bitbucket>=0.3.0",
"github": "prefect-github>=0.3.0",
"gitlab": "prefect-gitlab>=0.3.0",
# Database extras
"databricks": "prefect-databricks>=0.3.0rc1",
"dbt": "prefect-dbt>=0.6.0rc1",
"snowflake": "prefect-snowflake>=0.28.0rc1",
"sqlalchemy": "prefect-sqlalchemy>=0.5.0rc1",
"databricks": "prefect-databricks>=0.3.0",
"dbt": "prefect-dbt>=0.6.0",
"snowflake": "prefect-snowflake>=0.28.0",
"sqlalchemy": "prefect-sqlalchemy>=0.5.0",
"redis": "prefect-redis>=0.2.0",
# Monitoring extras
"email": "prefect-email>=0.4.0rc1",
"slack": "prefect-slack>=0.3.0rc1",
"email": "prefect-email>=0.4.0",
"slack": "prefect-slack>=0.3.0",
},
classifiers=[
"Natural Language :: English",
Expand Down
2 changes: 1 addition & 1 deletion src/integrations/prefect-aws/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ dependencies = [
"botocore>=1.27.53",
"mypy_boto3_s3>=1.24.94",
"mypy_boto3_secretsmanager>=1.26.49",
"prefect>=3.0.0rc1",
"prefect>=3.0.0",
"pyparsing>=3.1.1",
"tenacity>=8.0.0",
]
Expand Down
2 changes: 1 addition & 1 deletion src/integrations/prefect-azure/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ dependencies = [
"azure_identity>=1.10",
"azure_mgmt_containerinstance>=10.0",
"azure-mgmt-resource>=21.2",
"prefect>=3.0.0rc1",
"prefect>=3.0.0",
"setuptools", #required in 3.12 to get pkg_resources (used by azureml.core)
]
dynamic = ["version"]
Expand Down
2 changes: 1 addition & 1 deletion src/integrations/prefect-bitbucket/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ classifiers = [
"Topic :: Software Development :: Libraries",
]
dependencies = [
"prefect>=3.0.0rc1",
"prefect>=3.0.0",
"pydantic>=2.4",
"atlassian-python-api>=3.32.1,!=3.41.5,!=3.41.6,!=3.41.7,!=3.41.8",
]
Expand Down
2 changes: 1 addition & 1 deletion src/integrations/prefect-dask/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
[project]
name = "prefect-dask"
dependencies = [
"prefect>=3.0.0rc1",
"prefect>=3.0.0",
# don't allow versions from 2023.3.2 to 2023.5 (inclusive) due to issue with
# get_client starting in 2023.3.2 (fixed in 2023.6.0)
# https://github.com/dask/distributed/issues/7763
Expand Down
2 changes: 1 addition & 1 deletion src/integrations/prefect-databricks/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ classifiers = [
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries",
]
dependencies = ["prefect>=3.0.0rc1"]
dependencies = ["prefect>=3.0.0"]
dynamic = ["version"]

[project.optional-dependencies]
Expand Down
16 changes: 8 additions & 8 deletions src/integrations/prefect-dbt/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,23 +23,23 @@ classifiers = [
"Topic :: Software Development :: Libraries",
]
dependencies = [
"prefect>=3.0.0rc1",
"prefect>=3.0.0",
"dbt-core>=1.7.0",
"prefect_shell>=0.3.0rc1",
"prefect_shell>=0.3.0",
"sgqlc>=16.0.0",
]
dynamic = ["version"]

[project.optional-dependencies]
snowflake = ["prefect-snowflake>=0.28.0rc1", "dbt-snowflake"]
bigquery = ["prefect-gcp[bigquery]>=0.6.0rc1", "dbt-bigquery"]
snowflake = ["prefect-snowflake>=0.28.0", "dbt-snowflake"]
bigquery = ["prefect-gcp[bigquery]>=0.6.0", "dbt-bigquery"]
postgres = ["prefect-sqlalchemy>=0.5.1", "dbt-postgres"]
all_extras = [
"dbt-bigquery",
"dbt-postgres",
"dbt-snowflake",
"prefect-gcp[bigquery]>=0.6.0rc1",
"prefect-snowflake>=0.28.0rc1",
"prefect-gcp[bigquery]>=0.6.0",
"prefect-snowflake>=0.28.0",
"prefect-sqlalchemy>=0.5.1",
]
dev = [
Expand All @@ -55,8 +55,8 @@ dev = [
"mypy",
"pillow",
"pre-commit",
"prefect-gcp[bigquery]>=0.6.0rc1",
"prefect-snowflake>=0.28.0rc1",
"prefect-gcp[bigquery]>=0.6.0",
"prefect-snowflake>=0.28.0",
"prefect-sqlalchemy>=0.5.1",
"pytest >= 8.3",
"pytest-asyncio",
Expand Down
2 changes: 1 addition & 1 deletion src/integrations/prefect-docker/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ classifiers = [
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries",
]
dependencies = ["prefect>=3.0.0rc1", "docker>=6.1.1", "exceptiongroup"]
dependencies = ["prefect>=3.0.0", "docker>=6.1.1", "exceptiongroup"]
dynamic = ["version"]

[project.optional-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion src/integrations/prefect-email/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ classifiers = [
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries",
]
dependencies = ["prefect>=3.0.0rc1"]
dependencies = ["prefect>=3.0.0"]
dynamic = ["version"]

[project.optional-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion src/integrations/prefect-gcp/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ classifiers = [
"Topic :: Software Development :: Libraries",
]
dependencies = [
"prefect>=3.0.0rc1",
"prefect>=3.0.0",
"google-api-python-client>=2.20.0",
"google-cloud-storage>=2.0.0",
"tenacity>=8.0.0",
Expand Down
2 changes: 1 addition & 1 deletion src/integrations/prefect-github/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "prefect-github"
dependencies = ["sgqlc>=15.0", "prefect>=3.0.0rc1"]
dependencies = ["sgqlc>=15.0", "prefect>=3.0.0"]
dynamic = ["version"]
description = "Prefect integrations interacting with GitHub"
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion src/integrations/prefect-gitlab/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ classifiers = [
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries",
]
dependencies = ["prefect>=3.0.0rc1", "python-gitlab>=3.12.0", "tenacity>=8.2.3"]
dependencies = ["prefect>=3.0.0", "python-gitlab>=3.12.0", "tenacity>=8.2.3"]
dynamic = ["version"]

[project.optional-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion src/integrations/prefect-ray/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ classifiers = [
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries",
]
dependencies = ["prefect>=3.0.0rc1", "ray[default]>=2.0.0"]
dependencies = ["prefect>=3.0.0", "ray[default]>=2.0.0"]
dynamic = ["version"]

[project.optional-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion src/integrations/prefect-redis/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ classifiers = [
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries",
]
dependencies = ["prefect>=3.0.0rc1", "redis>=5.0.1"]
dependencies = ["prefect>=3.0.0", "redis>=5.0.1"]
dynamic = ["version"]

[project.optional-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion src/integrations/prefect-shell/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ classifiers = [
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries",
]
dependencies = ["prefect>=3.0.0rc1"]
dependencies = ["prefect>=3.0.0"]
dynamic = ["version"]

[project.optional-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion src/integrations/prefect-slack/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ classifiers = [
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries",
]
dependencies = ["aiohttp", "slack_sdk>=3.15.1", "prefect>=3.0.0rc1"]
dependencies = ["aiohttp", "slack_sdk>=3.15.1", "prefect>=3.0.0"]
dynamic = ["version"]

[project.optional-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion src/integrations/prefect-snowflake/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "prefect-snowflake"
dependencies = ["snowflake-connector-python>=2.7.6", "prefect>=3.0.0rc1"]
dependencies = ["snowflake-connector-python>=2.7.6", "prefect>=3.0.0"]
dynamic = ["version"]
description = "Prefect integrations for interacting with Snowflake"
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion src/integrations/prefect-sqlalchemy/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "prefect-sqlalchemy"
dependencies = ["sqlalchemy>=1.4.31,<3", "prefect>=3.0.0rc1"]
dependencies = ["sqlalchemy>=1.4.31,<3", "prefect>=3.0.0"]
dynamic = ["version"]
description = "Prefect integrations for working with databases"
readme = "README.md"
Expand Down

0 comments on commit 86b80dc

Please sign in to comment.