Skip to content

Commit

Permalink
Merge pull request #1628 from atlassian/DCA-2390-python-313-support
Browse files Browse the repository at this point in the history
DCA-2390 Add python 3.13 support
  • Loading branch information
ometelytsia authored Dec 5, 2024
2 parents 4b2a47d + ded3c7c commit 93bfe82
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# bzt run: docker run --shm-size=4g -v "$PWD:/dc-app-performance-toolkit" atlassian/dcapt jira.yml
# interactive run: docker run -it --entrypoint="/bin/bash" -v "$PWD:/dc-app-performance-toolkit" atlassian/dcapt

FROM python:3.12-slim-bookworm
FROM python:3.13-slim-bookworm

ENV APT_INSTALL="apt-get -y install --no-install-recommends"

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ In case of technical questions, issues or problems with DC Apps Performance Tool
## Installation and set up

#### Dependencies
* Python 3.9 - 3.12 and pip
* Python 3.9 - 3.13 and pip
* JDK 17 or JDK 21
* Google Chrome web browser
* Git client (only for Bitbucket DC)
Expand Down
2 changes: 1 addition & 1 deletion app/util/jmeter/start_jmeter_ui.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

import yaml

SUPPORTED_PYTHON_VERSIONS = ["3.9", "3.10", "3.11", "3.12"]
SUPPORTED_PYTHON_VERSIONS = ["3.9", "3.10", "3.11", "3.12", "3.13"]

python_full_version = '.'.join(map(str, version_info[0:3]))
python_short_version = '.'.join(map(str, version_info[0:2]))
Expand Down
2 changes: 1 addition & 1 deletion app/util/pre_run/environment_checker.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from sys import version_info

SUPPORTED_PYTHON_VERSIONS = ["3.9", "3.10", "3.11", "3.12"]
SUPPORTED_PYTHON_VERSIONS = ["3.9", "3.10", "3.11", "3.12", "3.13"]

python_full_version = '.'.join(map(str, version_info[0:3]))
python_short_version = '.'.join(map(str, version_info[0:2]))
Expand Down

0 comments on commit 93bfe82

Please sign in to comment.