Skip to content

Commit 469aea5

Browse files
committed
added dash maximum version
1 parent 4ed3f77 commit 469aea5

File tree

6 files changed

+8
-7
lines changed

6 files changed

+8
-7
lines changed

Docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ RUN cd /opt && wget https://download.jetbrains.com/python/pycharm-community-$PYC
4141
mv pycharm-community-$PYCHARM_VER pycharm && ln -s /opt/pycharm/bin/pycharm.sh /usr/bin/pycharm && chmod +x /usr/bin/pycharm
4242

4343
RUN apt remove python3-psutil -y
44-
RUN python$PYTHON_VER -m pip install --upgrade pip && python$PYTHON_VER -m pip install "numpy<2" cython "open3d>0.16.0" scipy opencv-python transforms3d pybullet roboticstoolbox-python psutil --ignore-installed --no-cache-dir
44+
RUN python$PYTHON_VER -m pip install --upgrade pip && python$PYTHON_VER -m pip install "dash<3.0.0" "numpy<2" cython "open3d>0.16.0" scipy opencv-python transforms3d pybullet roboticstoolbox-python psutil --ignore-installed --no-cache-dir
4545

4646
#Default args, that can be changed during build
4747
ARG UID=1000

Docker/Dockerfile.gitpod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ RUN cd /opt && wget https://download.jetbrains.com/python/pycharm-community-$PYC
4141
mv pycharm-community-$PYCHARM_VER pycharm && ln -s /opt/pycharm/bin/pycharm.sh /usr/bin/pycharm && chmod +x /usr/bin/pycharm
4242

4343
RUN apt remove python3-psutil -y
44-
RUN python$PYTHON_VER -m pip install --upgrade pip && python$PYTHON_VER -m pip install "numpy<2" cython "open3d>0.16.0" scipy opencv-python transforms3d pybullet roboticstoolbox-python psutil --ignore-installed --no-cache-dir
44+
RUN python$PYTHON_VER -m pip install --upgrade pip && python$PYTHON_VER -m pip install "dash<3.0.0" "numpy<2" cython "open3d>0.16.0" scipy opencv-python transforms3d pybullet roboticstoolbox-python psutil --ignore-installed --no-cache-dir
4545

4646
# Install graphics
4747
RUN apt install -y xfce4 xfce4-goodies xserver-xorg-video-dummy xserver-xorg-legacy x11vnc firefox && \

Docker/Dockerfile.vnc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ RUN cd /opt && wget https://download.jetbrains.com/python/pycharm-community-$PYC
4141
mv pycharm-community-$PYCHARM_VER pycharm && ln -s /opt/pycharm/bin/pycharm.sh /usr/bin/pycharm && chmod +x /usr/bin/pycharm
4242

4343
RUN apt remove python3-psutil -y
44-
RUN python$PYTHON_VER -m pip install --upgrade pip && python$PYTHON_VER -m pip install "numpy<2" cython "open3d>0.16.0" scipy opencv-python transforms3d pybullet roboticstoolbox-python psutil --ignore-installed --no-cache-dir
44+
RUN python$PYTHON_VER -m pip install --upgrade pip && python$PYTHON_VER -m pip install "dash<3.0.0" "numpy<2" cython "open3d>0.16.0" scipy opencv-python transforms3d pybullet roboticstoolbox-python psutil --ignore-installed --no-cache-dir
4545

4646

4747
# Install graphics

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
pyCub is iCub humanoid robot simulator written in Python. It uses PyBullet for simulation and Open3D for visualization.
33

44
## Installation
5-
- Requires python3.11 to 3.12
5+
- Requires python3.10 to 3.13
66
- newer python versions are now not supported due to incompatible with some dependencies
77
- We recommend using virtual environment when installing from PyPi or from source
88
- ```

icub_pybullet/requirements.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,5 @@ pybullet
55
roboticstoolbox-python
66
opencv-python
77
psutil
8-
transforms3d
8+
transforms3d
9+
dash<3.0.0

icub_pybullet/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
setup(
2020
name=app_name,
21-
version="1.1.7",
21+
version="1.1.8",
2222
description="pyCub - iCub in PyBullet",
2323
package_dir={"icub_pybullet": "."},
2424
package_data={app_name: ["iCub/**/**", "other_meshes/**/**", "configs/**/**", "logs/**/**"]},
@@ -31,5 +31,5 @@
3131
long_description=long_description,
3232
long_description_content_type="text/markdown",
3333
platforms=["any"],
34-
python_requires=">=3.10, <3.12"
34+
python_requires=">=3.10, <3.14"
3535
)

0 commit comments

Comments
 (0)