-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
529d2ee
commit b1c6761
Showing
11 changed files
with
113 additions
and
67 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,44 @@ | ||
default: docs | ||
|
||
docs: | ||
cd rai-docs && sphinx-build doc ../html | ||
|
||
clean: | ||
rm -Rf build | ||
docs-clean: | ||
rm -Rf html | ||
|
||
install: | ||
ln -f -s _build_utils/CMakeLists-ubuntu.txt CMakeLists.txt | ||
cmake -B build . | ||
+cmake --install build | ||
|
||
install-clean: | ||
rm -R ${HOME}/.local/lib/python3.8/site-packages/robotic* | ||
rm ${HOME}/.local/lib/*rai* | ||
rm ${HOME}/.local/bin/*ry* | ||
|
||
wheels: | ||
$(eval id = $(shell _build_utils/run-docker.sh -d)) | ||
@echo "started docker " ${id} | ||
docker exec -it ${id} /bin/bash -C local/_build_utils/build-wheels.sh | ||
docker stop ${id} | ||
# _build_utils/run-docker.sh local/_build_utils/build-wheels.sh | ||
|
||
wheels-push: | ||
twine upload dist/*.whl --repository robotic | ||
|
||
wheels-local: | ||
python3.8 -m pip install --user dist/robotic-*cp38*.whl --force-reinstall | ||
|
||
test: | ||
cd ${HOME} && python3 -c 'from robotic import ry; print("ry version:", ry.__version__, ry.compiled());' | ||
|
||
pull: | ||
cd rai && git pull | ||
cd rai-robotModels && git pull | ||
cd rai-docs && git pull | ||
cd botop && git pull | ||
|
||
docker-clean: | ||
$(shell docker container kill "$(docker container ls -q)") | ||
docker system prune | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
__version__ = '0.0.24' | ||
__version__ = '0.0.25' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -39,9 +39,11 @@ def has_ext_modules(foo): | |
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
|
||
install_requires=[ 'numpy' ], | ||
|
||
distclass=BinaryDistribution, | ||
version=myversion['__version__'], | ||
url='https://github.com/MarcToussaint/rai-python/', | ||
url='https://github.com/MarcToussaint/robotic/', | ||
author='Marc Toussaint', | ||
author_email='[email protected]', | ||
) |