Skip to content

Commit

Permalink
drop old wheel requirement
Browse files Browse the repository at this point in the history
  • Loading branch information
alexsavulescu committed May 5, 2023
1 parent 766dae2 commit d79d72d
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions packaging/build_wheels.bash
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,11 @@ setup_venv() {
"$py_bin" -m venv "$venv_dir"
. "$venv_dir/bin/activate"

# pep425tags are not available anymore from 0.35
# temporary workaround until we get smtg stable
if ! pip install --upgrade pip setuptools "wheel<0.35"; then
if ! pip install --upgrade pip setuptools wheel; then
curl https://bootstrap.pypa.io/get-pip.py | python
pip install --upgrade setuptools "wheel<0.35"
pip install --upgrade setuptools wheel
fi

}


Expand Down

0 comments on commit d79d72d

Please sign in to comment.