Add line to remove existing .egg-info directories
This commit is contained in:
parent
cd40c2fcd5
commit
945c4adca5
2 changed files with 2 additions and 1 deletions
1
.github/workflows/build.yml
vendored
1
.github/workflows/build.yml
vendored
|
|
@ -49,6 +49,7 @@ jobs:
|
|||
run: sphinx-build -E -W -b html . _build/html
|
||||
- name: Build Python package
|
||||
run: |
|
||||
setuptools clean --all
|
||||
pip install --upgrade build twine
|
||||
for file in $(find -not -path "./.*" -not -path "./docs*" \( -name "*.py" -o -name "*.toml" \) ); do
|
||||
sed -i -e "s/0.0.0+auto.0/1.2.3/" $file;
|
||||
|
|
|
|||
2
setup.py
2
setup.py
|
|
@ -112,4 +112,4 @@ setup(
|
|||
"Programming Language :: Python :: 3.7",
|
||||
"Programming Language :: Python :: Implementation :: MicroPython",
|
||||
],
|
||||
)
|
||||
)
|
||||
|
|
|
|||
Loading…
Reference in a new issue