Open ChristopherSzczyglowski opened 3 years ago
When we try and build the package using the build module we receive the following error:
build
source env/bin/activate python3 -m pip install build python3 -m build
It seems like versioneer is not included in the temp environment that build creates for the purposes of building the package.
versioneer
However, when we switch to using the sdist and bdist_wheel commands for setup.py we can build everything without error.
sdist
bdist_wheel
setup.py
source env/bin/activate python3 -m pip install wheel python setup.py sdist bdist_wheel
Runs without errror
What is going on here?
Could look into bump2version as an alternative?
When we try and build the package using the
build
module we receive the following error:It seems like
versioneer
is not included in the temp environment thatbuild
creates for the purposes of building the package.However, when we switch to using the
sdist
andbdist_wheel
commands forsetup.py
we can build everything without error.Runs without errror
What is going on here?