Skip to content

Commit

Permalink
Limit atlassian-python-api to <3.41.6 (#36815)
Browse files Browse the repository at this point in the history
  • Loading branch information
Taragolis committed Jan 16, 2024
1 parent a22ad47 commit 4d59fbc
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
5 changes: 4 additions & 1 deletion airflow/providers/atlassian/jira/provider.yaml
Expand Up @@ -37,7 +37,10 @@ versions:

dependencies:
- apache-airflow>=2.6.0
- atlassian-python-api>=1.14.2
# 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
- beautifulsoup4

integrations:
- integration-name: Atlassian Jira
Expand Down
3 changes: 2 additions & 1 deletion generated/provider_dependencies.json
Expand Up @@ -275,7 +275,8 @@
"atlassian.jira": {
"deps": [
"apache-airflow>=2.6.0",
"atlassian-python-api>=1.14.2"
"atlassian-python-api>=1.14.2,<3.41.6",
"beautifulsoup4"
],
"devel-deps": [],
"cross-providers-deps": [],
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Expand Up @@ -614,7 +614,8 @@ asana = [
"asana>=0.10,<4.0.0",
]
atlassian-jira = [
"atlassian-python-api>=1.14.2",
"atlassian-python-api>=1.14.2,<3.41.6",
"beautifulsoup4",
]
celery = [
"celery>=5.3.0,<6,!=5.3.3,!=5.3.2",
Expand Down

0 comments on commit 4d59fbc

Please sign in to comment.