Skip to content

Commit

Permalink
[TEST] py 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
jgmelber committed Oct 21, 2024
1 parent f4b52e9 commit 30b131e
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/buildAndTestAieTools.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ jobs:
git submodule update --init --recursive
apt install python3.10-venv
apt install python3.12-venv
python -m venv aie-venv
source aie-venv/bin/activate
pip install -r python/requirements.txt
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/buildAndTestAieToolsHsaBuildOnly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ jobs:
cp -a third_party/aie-rt/driver/src/*.so* /install/aie-rt/lib
cp -a third_party/aie-rt/driver/include /install/aie-rt
apt install python3.10-venv
apt install python3.12-venv
python -m venv aie-venv
source aie-venv/bin/activate
pip install -r python/requirements.txt
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/buildRyzenWheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:

- uses: actions/setup-python@v5
with:
python-version: '3.10'
python-version: '3.12'

- name: Build mlir-aie distro
run: |
Expand Down Expand Up @@ -117,7 +117,7 @@ jobs:
fail-fast: false
matrix:
python_version: [
"3.10", "3.12",
"3.12",
]

steps:
Expand Down
6 changes: 3 additions & 3 deletions utils/quick_setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ if [[ $WSL_DISTRO_NAME == "" ]]; then
else
echo "Environment is WSL"
fi
if ! hash python3.10; then
echo "This script requires python3.10"
if ! hash python3.12; then
echo "This script requires python3.12"
return 1
fi
if ! hash unzip; then
Expand All @@ -44,7 +44,7 @@ fi
# if an install is already present, remove it to start from a clean slate
rm -rf ironenv
rm -rf my_install
python3.10 -m venv ironenv
python3.12 -m venv ironenv
source ironenv/bin/activate
python3 -m pip install --upgrade pip
VPP=`which xchesscc`
Expand Down

0 comments on commit 30b131e

Please sign in to comment.