Skip to content

Commit

Permalink
Test ubuntu python3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
gaetanserre committed Jul 19, 2024
1 parent 616e4ab commit e1f4e23
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ jobs:

- name: Install dependencies
run: |
sudo apt-get install python3
sudo add-apt-repository ppa:deadsnakes/ppa
sudo apt update
sudo apt-get install python3.12
sudo apt-get install -y python3-dev
python -m pip install --upgrade pip
Expand Down
4 changes: 4 additions & 0 deletions build_and_install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ Red="\033[0;31m"
Green="\033[0;92m"
NC="\033[0m"

echo -e "${Purple}Python version${NC}"
python --version
python3 --version

platform=$(python -c "import platform; print(platform.processor())")
echo -e "${Purple}Running on ${platform} platform${NC}"

Expand Down

0 comments on commit e1f4e23

Please sign in to comment.