Skip to content

Commit

Permalink
build(deps): ensure recent version of setuptools
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikBjare committed Oct 5, 2020
1 parent 9bcf7e7 commit e80a29b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,10 @@ build:
else \
git submodule update --init --recursive; \
fi
#
# needed due to https://github.com/pypa/setuptools/issues/1963
# would ordinarily be specified in pyproject.toml, but is not respected due to https://github.com/pypa/setuptools/issues/1963
pip install 'setuptools>49.1.1'
#
make --directory=aw-core build
make --directory=aw-client build
Expand Down
4 changes: 3 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@ pyinstaller = "3.5"
psutil = "^5.7.0"
pywin32-ctypes = {version = "^0.2.0", platform = "win32"}
pefile = {version = "^2019.4.18", platform = "win32"}
setuptools = ">49.1.1" # needed due to https://github.com/pypa/setuptools/issues/1963

# Won't be respected due to https://github.com/python-poetry/poetry/issues/1584
#setuptools = ">49.1.1" # needed due to https://github.com/pypa/setuptools/issues/1963

[build-system]
requires = ["poetry>=0.12"]
Expand Down

0 comments on commit e80a29b

Please sign in to comment.