Skip to content

Commit

Permalink
Upgrade Python version to 3.9 (#25)
Browse files Browse the repository at this point in the history
* **What is the current behavior?**  
Current versions:
Python 3.8

* **What is the new behavior?**
New versions:
Python 3.9

* **Have tests been run against this PR?**  
In progress

* **Have appropriate comments and documentation been made on this PR?**


* **Related changes in other repos** (link commit/PR here)


* **Other information**:
  • Loading branch information
vicilliar authored Oct 9, 2024
1 parent 6ebea1b commit 1435198
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ RUN dnf install -y epel-release dnf-utils ca-certificates curl gnupg && \
RUN dnf install -y \
lsof \
java-17-openjdk \
python38 \
python38-devel \
python39 \
python39-devel \
gcc \
jq \
unzip \
tmux

# Set up Python 3.8 and pip
RUN alternatives --set python3 /usr/bin/python3.8 && \
# Set up Python 3.9 and pip
RUN alternatives --set python3 /usr/bin/python3.9 && \
curl https://bootstrap.pypa.io/get-pip.py | python3

# Install pip dependencies
Expand Down

0 comments on commit 1435198

Please sign in to comment.