Skip to content

Commit 758974b

Browse files
committed
pin roslibpy to 1.8.1
1 parent dcfcafa commit 758974b

4 files changed

Lines changed: 7 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## Unreleased
99

10+
### Changed
11+
12+
* Pinned `roslibpy` to `1.8.1` across package requirements and Rhino install paths to keep `wip_process` on the last `1.x` release and avoid incompatible `2.x` updates.
13+
1014
### Added
1115

1216
* New `Target` and `Waypoints` classes to represent inputs of planning functions.

docs/installation/setup_frontend_rhino_8.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Create a Python 3 script componen and paste the following code into it:
4141

4242
.. code-block:: python
4343
44-
# r: compas, compas_robots, roslibpy, scipy
44+
# r: compas, compas_robots, roslibpy==1.8.1, scipy
4545
# venv: compas_fab_dev
4646
4747
import compas

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
compas >= 2.3, < 3
22
compas_robots >= 0.6, < 1
3-
roslibpy >= 1.1.0
3+
roslibpy == 1.8.1

src/compas_fab/rhino/install.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44

55
@compas.plugins.plugin(category="install")
66
def installable_rhino_packages():
7-
return ["compas_fab", "roslibpy"]
7+
return ["compas_fab", "roslibpy==1.8.1"]

0 commit comments

Comments
 (0)