Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .python-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.12.11
3.13.11
Comment thread
lheureuxe13 marked this conversation as resolved.
4 changes: 2 additions & 2 deletions jf_agent/jf_jira/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

from jf_ingest import diagnostics, logging_helper
from jira import JIRA
from jira.resources import GreenHopperResource
from jira.resources import AgileResource

from jf_agent.jf_jira.jira_download import download_fields, download_missing_repos_found_by_jira

Expand All @@ -17,7 +17,7 @@ def _get_raw_jira_connection(config, creds, max_retries=3):
'server': config.jira_url,
'max_retries': max_retries,
'options': {
'agile_rest_path': GreenHopperResource.AGILE_BASE_REST_PATH,
'agile_rest_path': AgileResource.AGILE_BASE_REST_PATH,
'verify': not config.skip_ssl_verification,
"headers": {
"Accept": "application/json;q=1.0, */*;q=0.9",
Expand Down
7 changes: 4 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ authors = [
dependencies = [
"urllib3>=2.6.3",
"pyyaml>=4.21b",
"jira<4,>=3.1.1",
"jira==3.10.5",
"tqdm>=4.66.2",
"stashy",
"dateparser",
Expand All @@ -20,9 +20,9 @@ dependencies = [
"python-dotenv>=1.0.0",
"structlog>=24.4.0",
"colorama>=0.4.6",
"jf-ingest==0.0.279",
"jf-ingest==0.0.280",
]
requires-python = ">=3.12,<3.13"
requires-python = ">=3.13,<3.14"
Comment thread
lheureuxe13 marked this conversation as resolved.
readme = "README.md"
license = "MIT"

Expand Down Expand Up @@ -89,6 +89,7 @@ name = "pypi"
url = "https://pypi.org/simple"
default = true


[dependency-groups]
dev = [
"requests-mock",
Expand Down
Loading
Loading