diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 19722aec..3f853f84 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -51,7 +51,7 @@ jobs: - name: Build packages run: | python -m venv .venv - .venv/bin/pip install wheel -r requirements.txt + .venv/bin/pip install wheel setuptools -r requirements.txt sed -i "s/\(version='[0-9]*\.[0-9]*\.[0-9]*\)\('\)/\1.dev$(date +%Y%m%d%H%M%S)\2/g" setup.py sed -i "s/5 - Production\/Stable/4 - Beta/g" setup.py .venv/bin/python setup.py clean check sdist bdist_wheel @@ -74,7 +74,7 @@ jobs: - name: Build packages run: | python -m venv .venv - .venv/bin/pip install wheel -r requirements.txt + .venv/bin/pip install wheel setuptools -r requirements.txt .venv/bin/python setup.py clean check sdist bdist_wheel - name: Upload to PyPI uses: pypa/gh-action-pypi-publish@v1.10.2