Skip to content

Commit

Permalink
Merge branch 'fix/python-gr-vcversioner' into 'master'
Browse files Browse the repository at this point in the history
Do not use the deprecated `setup.py` cli interface any more

See merge request Scientific-IT-Systems/gr-documentation!23
  • Loading branch information
danielkaiser committed Mar 11, 2024
2 parents fcbebe8 + 03c41d2 commit 8db27cb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ SPHINXBUILD := $(PYTHON) -m sphinx

html: .FORCE
python3 -m venv $(VENVDIR)
$(PIP) install --upgrade pip wheel
$(PIP) install --upgrade pip wheel build
rm -rf python-gr/dist/
cd python-gr && $(PYTHON) setup.py sdist
cd python-gr && $(PYTHON) -m build --sdist
$(PIP) install python-gr/dist/gr-*.tar.gz
$(PIP) install -r requirements.txt
mkdir -p $(BUILDDIR)
Expand Down

0 comments on commit 8db27cb

Please sign in to comment.