Skip to content

Commit

Permalink
Block setuptools 58 and newer (#265)
Browse files Browse the repository at this point in the history
buildbot is not compatible with setuptools 58 which removes the
use_2to3 option:

* buildbot/buildbot#6229
* https://bugs.launchpad.net/sqlalchemy-migrate/+bug/1943127
  • Loading branch information
vstinner committed Sep 9, 2021
1 parent eeff117 commit 73a70b5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Expand Up @@ -17,12 +17,12 @@ clean:

$(VENV_CHECK): requirements.txt
$(SYSTEM_PYTHON) -m venv --clear venv
$(PIP) install -U pip setuptools wheel
$(PIP) install -U pip 'setuptools<58.0' wheel
$(PIP) install -r requirements.txt

regen-requirements:
$(SYSTEM_PYTHON) -m venv --clear venv
$(PIP) install -U pip setuptools wheel
$(PIP) install -U pip 'setuptools<58.0' wheel
$(PIP) install -U -r requirements.in
$(PIP) freeze > requirements.txt

Expand Down

0 comments on commit 73a70b5

Please sign in to comment.