File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -143,14 +143,14 @@ prepare-python-release:
143143.PHONY : python-release
144144python-release : prepare-python-release
145145 rm -rf python/dist
146- python3.9 -m build --no-isolation --sdist python
147- # the below command should be identical to `python3.9 -m build --wheel`
146+ python3.10 -m build --no-isolation --sdist python
147+ # the below command should be identical to `python3.10 -m build --wheel`
148148 # however that returns mysterious `error: could not create 'build': File exists`.
149149 # setuptools copies source and data files to a temporary build directory,
150150 # but why there's a collision or why setuptools stopped respecting the `build_lib` flag is unclear.
151151 # As a workaround, we build a source distribution and then separately build a wheel from it.
152- python3.9 -m pip wheel --wheel-dir python/dist --no-deps python/dist/*
153- python3.9 -m twine upload --verbose --skip-existing --repository ${PYPI_REPO} --username " __token__" --password ${PGV_PYPI_TOKEN} python/dist/*
152+ python3.10 -m pip wheel --wheel-dir python/dist --no-deps python/dist/*
153+ python3.10 -m twine upload --verbose --skip-existing --repository ${PYPI_REPO} --username " __token__" --password ${PGV_PYPI_TOKEN} python/dist/*
154154
155155.PHONY : check-generated
156156check-generated : # # run during CI; this checks that the checked-in generated code matches the generated version.
You can’t perform that action at this time.
0 commit comments