Skip to content

Commit 9a28147

Browse files
author
Lars Berscheid
committed
reset publishing to releases
1 parent 7bff647 commit 9a28147

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

.github/workflows/publish.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
name: Upload Python Package
22

3-
on: [push, pull_request]
3+
on:
4+
release:
5+
types: [created]
46

57
jobs:
68
deploy:

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ Griffig is a library (in particular) for 6D robotic grasping, learned from large
3131

3232
Griffig is a library for Python 3.7+, wrapping a core written in C++17. You can install Griffig via [PyPI](https://pypi.org/project/griffig/)
3333
```bash
34-
(sudo) apt install libeigen3-dev libgl1-mesa-dev libglu1-mesa-dev libegl1-mesa-dev libglew-dev # Install Eigen & OpenGL libraries
34+
# Install Eigen 3.3, OpenCV 4, Pybind11, and OpenGL (e.g. via apt)
35+
(sudo) apt install libeigen3-dev libopencv-dev pybind11-dev libgl1-mesa-dev libglu1-mesa-dev libegl1-mesa-dev libglew-dev
3536
pip install griffig
3637
```
3738
Of course, a NVIDIA GPU with corresponding CUDA version is highly recommended. When building from source, you can either call `pip install .` or use CMake to build Griffig. We also provide a Docker container to get started more easily.
@@ -181,11 +182,12 @@ The robot should have grasped something! If something went wrong, make sure to c
181182

182183
## Development
183184

184-
Griffig is written in C++17 and Python 3.7 (or higher). It is tested against following dependency versions:
185+
Griffig is written in C++17 and Python 3.7 (or higher). It is tested on Ubuntu 20.04 against following dependency versions:
185186

186187
- OpenCV 4.5
187-
- TensorFlow 2.4
188188
- PyBind11 2.6
189+
- Eigen 3.3.9
190+
- TensorFlow 2.4
189191

190192
To build the docker image, call `docker build .`.
191193

0 commit comments

Comments
 (0)