Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix pyc files in dist #5611

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -117,13 +117,13 @@ sdist: clean docs assets
python setup.py sdist --formats=$(format) --static
python setup.py sdist --formats=$(format)

dist: clean docs assets
dist: clean docs assets
# Building assets currently creates pyc files in the source dirs,
# so we should delete those...
make clean-pyc
python setup.py sdist --formats=$(format)
python setup.py bdist_wheel
pip install -t kalite/packages/dist -r "requirements.txt"
pip install -t kalite/packages/dist -r "requirements.txt" --no-compile
rm -rf kalite/packages/dist/*.dist-info # pip installs from PyPI will complain if we have more than one dist-info directory.
rm -r kalite/packages/dist/man kolibri/dist/bin || true # remove the two folders introduced by pip 10
python setup.py sdist --formats=$(format) --static
Expand Down
2 changes: 2 additions & 0 deletions docs/installguide/release_notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,10 @@ to read the release notes.
Bug fixes
^^^^^^^^^

* Remove *pyc files in ka-lite-static (affected 0.17.5 release)
* Fix rare ``GEOSException`` on systems with libgeos :url-issue:`5592`


0.17.5
------

Expand Down