Skip to content

Commit a99c382

Browse files
Add pyside2-uic (executable) and pyside2uic (module) (#142)
* Add pyside2-uic (executable) and pyside2uic (module) * Fix whitespace
1 parent d4fe5fb commit a99c382

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

Dockerfile-py2.7

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
FROM ubuntu:16.04
22

3+
# Needed to install pyside2-tools without issues
4+
ENV DEBIAN_FRONTEND noninteractive
5+
36
RUN apt-get update && \
47
apt-get install -y \
58
software-properties-common && \
@@ -12,8 +15,12 @@ RUN apt-get update && \
1215
python-pyqt5 \
1316
python-pyside \
1417
python-pyside2 \
18+
pyside2-tools \
1519
xvfb
1620

21+
# Make pyside2uic availble for Python 2.x
22+
RUN cp -avr /usr/lib/python3/dist-packages/pyside2uic /usr/local/lib/python2.7/dist-packages
23+
1724
# Nose is the Python test-runner
1825
RUN pip install nose nosepipe
1926

Dockerfile-py3.5

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
FROM ubuntu:16.04
22

3+
# Needed to install pyside2-tools without issues
4+
ENV DEBIAN_FRONTEND noninteractive
5+
36
RUN apt-get update && \
47
apt-get install -y \
58
software-properties-common && \
@@ -12,6 +15,7 @@ RUN apt-get update && \
1215
python3-pyqt5 \
1316
python3-pyside \
1417
python3-pyside2 \
18+
pyside2-tools \
1519
xvfb
1620

1721
# Nose is the Python test-runner

0 commit comments

Comments
 (0)