Skip to content

Commit

Permalink
fix: setup template typo
Browse files Browse the repository at this point in the history
  • Loading branch information
FlickerSoul committed Dec 12, 2023
1 parent 0625981 commit bbad77d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/gapper/gradescope/resources/setup.j2
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ apt-get update -y
apt-get install -y software-properties-common
add-apt-repository -y ppa:deadsnakes/ppa
apt-get install -y python{{ py_major }}.{{ py_minor }} python{{ py_major }}.{{ py_minor }}-distutils
ln -s -f $(which python3.12) $(which python3)
ln -s $(which python{{ py_major }}.{{ py_minor }}) $(which python3)

# install gapper
curl -sS https://bootstrap.pypa.io/get-pip.py | python{{ py_major }}.{{ py_minor }}
Expand Down
2 changes: 1 addition & 1 deletion tests/test_zip_file_handle.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def test_zipping(tmp_path: Path) -> None:
apt-get install -y software-properties-common
add-apt-repository -y ppa:deadsnakes/ppa
apt-get install -y python{major}.{minor} python{major}.{minor}-distutils
ln -s -f $(which python3.12) $(which python3)
ln -s $(which python3.12) $(which python3)
# install gapper
curl -sS https://bootstrap.pypa.io/get-pip.py | python{major}.{minor}
Expand Down

0 comments on commit bbad77d

Please sign in to comment.