This is an automated email from the ASF dual-hosted git repository.

taragolis pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/main by this push:
     new c76d6e58f0 Use lax `atlassian-python-api` limitation (#36841)
c76d6e58f0 is described below

commit c76d6e58f00317b2e0bdcc43eb9c0a91d32b602d
Author: Andrey Anshin <andrey.ans...@taragol.is>
AuthorDate: Wed Jan 17 22:06:43 2024 +0400

    Use lax `atlassian-python-api` limitation (#36841)
---
 airflow/providers/atlassian/jira/provider.yaml | 5 +++--
 generated/provider_dependencies.json           | 2 +-
 pyproject.toml                                 | 2 +-
 3 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/airflow/providers/atlassian/jira/provider.yaml 
b/airflow/providers/atlassian/jira/provider.yaml
index 55879c982f..885a55e377 100644
--- a/airflow/providers/atlassian/jira/provider.yaml
+++ b/airflow/providers/atlassian/jira/provider.yaml
@@ -38,8 +38,9 @@ versions:
 dependencies:
   - apache-airflow>=2.6.0
   # Changes in `3.41.6` introduce incorrect import of `beautifulsoup4`
-  - atlassian-python-api>=1.14.2,<3.41.6
-  # `beautifulsoup4` not listed in `atlassian-python-api` install requirements 
however depend on it
+  - atlassian-python-api>=1.14.2,!=3.41.6
+  # `beautifulsoup4` not listed in `atlassian-python-api` install requirements
+  # in versions before 3.41.7 however depend on it
   - beautifulsoup4
 
 integrations:
diff --git a/generated/provider_dependencies.json 
b/generated/provider_dependencies.json
index 37fc4f54ea..cdff33de1a 100644
--- a/generated/provider_dependencies.json
+++ b/generated/provider_dependencies.json
@@ -276,7 +276,7 @@
   "atlassian.jira": {
     "deps": [
       "apache-airflow>=2.6.0",
-      "atlassian-python-api>=1.14.2,<3.41.6",
+      "atlassian-python-api>=1.14.2,!=3.41.6",
       "beautifulsoup4"
     ],
     "devel-deps": [],
diff --git a/pyproject.toml b/pyproject.toml
index 3fd7222feb..dd8b6ab1b5 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -615,7 +615,7 @@ asana = [
   "asana>=0.10,<4.0.0",
 ]
 atlassian-jira = [
-  "atlassian-python-api>=1.14.2,<3.41.6",
+  "atlassian-python-api>=1.14.2,!=3.41.6",
   "beautifulsoup4",
 ]
 celery = [

Reply via email to