eladkal commented on code in PR #45786: URL: https://github.com/apache/airflow/pull/45786#discussion_r1922300158
########## providers/celery/pyproject.toml: ########## @@ -0,0 +1,91 @@ + +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. + +# NOTE! THIS FILE IS AUTOMATICALLY GENERATED AND WILL BE OVERWRITTEN! + +# IF YOU WANT TO MODIFY THIS FILE EXCEPT DEPENDENCIES, YOU SHOULD MODIFY THE TEMPLATE +# `pyproject_TEMPLATE.toml.jinja2` IN the `dev/breeze/src/airflow_breeze/templates` DIRECTORY +[build-system] +requires = ["flit_core==3.10.1"] +build-backend = "flit_core.buildapi" + +[project] +name = "apache-airflow-providers-celery" +version = "3.9.0" +description = "Provider package apache-airflow-providers-celery for Apache Airflow" +readme = "README.rst" +authors = [ + {name="Apache Software Foundation", email="d...@airflow.apache.org"}, +] +maintainers = [ + {name="Apache Software Foundation", email="d...@airflow.apache.org"}, +] +keywords = [ "airflow-provider", "celery", "airflow", "integration" ] +classifiers = [ + "Development Status :: 5 - Production/Stable", + "Environment :: Console", + "Environment :: Web Environment", + "Intended Audience :: Developers", + "Intended Audience :: System Administrators", + "Framework :: Apache Airflow", + "Framework :: Apache Airflow :: Provider", + "License :: OSI Approved :: Apache Software License", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", + "Topic :: System :: Monitoring", +] +requires-python = "~=3.9" +# The dependencies should be modified in place in the generated file +# Any change in the dependencies is preserved when the file is regenerated +dependencies = [ + "apache-airflow>=2.9.0", + # The Celery is known to introduce problems when upgraded to a MAJOR version. Airflow Core + # Uses Celery for CeleryExecutor, and we also know that Kubernetes Python client follows SemVer + # (https://docs.celeryq.dev/en/stable/contributing.html?highlight=semver#versions). + # Make sure that the limit here is synchronized with [celery] extra in the airflow core + # The 5.3.3/5.3.2 limit comes from https://github.com/celery/celery/issues/8470 + "celery[redis]>=5.3.0,<6,!=5.3.3,!=5.3.2", + "flower>=1.0.0", + "google-re2>=1.0", +] +# The optional dependencies should be modified in place in the generated file +# Any change in the dependencies is preserved when the file is regenerated +[project.optional-dependencies] +"cncf.kubernetes" = [ + "apache-airflow-providers-cncf-kubernetes>=7.4.0", Review Comment: Not really related to this PR but... sometimes we bump version in optional dependencies with another provider before it was released. The mechanism for that is still kept? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@airflow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org