File tree Expand file tree Collapse file tree 4 files changed +15
-12
lines changed Expand file tree Collapse file tree 4 files changed +15
-12
lines changed Original file line number Diff line number Diff line change 6
6
# Auto-publish when version is increased
7
7
publish-job :
8
8
# Only publish on `main` branch
9
- if : github.ref == 'refs/heads/other '
9
+ if : github.ref == 'refs/heads/main '
10
10
runs-on : ubuntu-latest
11
- permissions : # Don't forget permissions
11
+ permissions : # Don't forget permissions
12
12
contents : write
13
13
14
14
steps :
15
- - uses : etils-actions/pypi-auto-publish@v1
16
- with :
17
- pypi-token : ${{ secrets.PYPI_API_TOKEN }}
18
- gh-token : ${{ secrets.GITHUB_TOKEN }}
19
- parse-changelog : true
15
+ - uses : etils-actions/pypi-auto-publish@v1
16
+ with :
17
+ pypi-token : ${{ secrets.PYPI_API_TOKEN }}
18
+ gh-token : ${{ secrets.GITHUB_TOKEN }}
19
+ parse-changelog : true
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ pybullet>=3.2.4 # physics engine used for simulation
4
4
open3d >= 0.10.0 # point cloud processing tools
5
5
opencv-python >= 4.9.0.80 # computer vision tools
6
6
matplotlib >= 3.3.4 # plotting tools
7
- pybullet_planning@git+https://github.com/eaa3/pybullet_planning.git@dev # pure python motion planning
7
+ pybullet-planning-eaa # pure python motion planning
8
8
trimesh == 3.9.20 # mesh processing tools
9
9
xatlas == 0.0.7 # mesh parametrisation
10
10
transforms3d == 0.4.1
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ pybullet>=3.2.4 # physics engine used for simulation
4
4
open3d>=0.10.0 # point cloud processing tools
5
5
# opencv-python>=4.9.0.80 # computer vision tools
6
6
matplotlib>=3.3.4 # plotting tools
7
- pybullet_planning@git+https://github.com/eaa3/pybullet_planning.git@dev # pure python motion planning
7
+ pybullet-planning-eaa # pure python motion planning
8
8
trimesh==3.9.20 # mesh processing tools
9
9
xatlas==0.0.7 # mesh parametrisation
10
10
transforms3d==0.4.1
Original file line number Diff line number Diff line change 34
34
need_files .append (fn [1 + len (hh ) :])
35
35
36
36
core_requirements = [
37
- "setuptools> =65.5.1 " ,
37
+ "setuptools< =65" ,
38
38
"numpy>=1.25.2" ,
39
39
"scipy>=1.11.1" ,
40
40
"pybullet>=3.2.4" ,
41
41
"open3d>=0.10.0" ,
42
42
"opencv-python>=4.9.0.80" ,
43
43
"matplotlib>=3.3.4" ,
44
44
# "ghalton==0.6.1",
45
- "pybullet_planning@git+https://github.com/eaa3/pybullet_planning.git@dev " ,
45
+ "pybullet-planning-eaa " ,
46
46
"trimesh>=3.9.20" ,
47
47
"xatlas>=0.0.7" ,
48
48
"transforms3d==0.4.1" ,
54
54
version = __version__ ,
55
55
description = "Grip is a prototyping toolbox for manipulation research." ,
56
56
long_description = open ("README.md" ).read (),
57
- long_description_content_type = "text/markdown" ,
58
57
url = "https://github.com/dyson-ai/grip" ,
59
58
author = "Ermano Arruda" ,
60
59
maintainer = "Ermano Arruda" ,
96
95
share_dir + "/grip_assets/config" ,
97
96
glob .glob (os .path .join ("grip_assets/config" , "*.yaml" )),
98
97
),
98
+ (
99
+ share_dir ,
100
+ glob .glob ("*.md" ),
101
+ ),
99
102
],
100
103
zip_safe = False ,
101
104
entry_points = {
You can’t perform that action at this time.
0 commit comments