Skip to content

Commit

Permalink
Merge pull request #114 from learningequality/tar_very_much_like
Browse files Browse the repository at this point in the history
Remove unnecessary dependencies. Install c extensions explicitly.
  • Loading branch information
rtibbles committed Sep 28, 2023
2 parents b33e185 + 2c63c4c commit 2169688
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,10 @@ install-whl:
# Delete sqlalchemy from the dist folder
rm -rf kolibrisrc/kolibri/dist/sqlalchemy
rm -rf kolibrisrc/kolibri/dist/SQLAlchemy*
# Cleanup the py2only folder
rm -rf kolibrisrc/kolibri/dist/py2only
# Delete cextensions folder
rm -rf kolibrisrc/kolibri/dist/cext
# This doesn't exist in 0.15, so don't error if it doesn't exist.
echo "3.3.1" > kolibrisrc/kolibri/dist/importlib_resources/version.txt || true
$(MAKE) loading-pages
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,6 @@ def get_version(rel_path):
include_package_data=True,
zip_safe=True,
license="MIT",
install_requires=["wxPython==4.2.0"],
install_requires=["wxPython==4.2.0", "cryptography==2.3", "cffi==1.14.4"],
extras_require={"dev": ["pre-commit"]},
)

0 comments on commit 2169688

Please sign in to comment.