Skip to content

Commit

Permalink
Add pyside2-uic (executable) and pyside2uic (module) (#142)
Browse files Browse the repository at this point in the history
* Add pyside2-uic (executable) and pyside2uic (module)

* Fix whitespace
  • Loading branch information
fredrikaverpil authored Sep 18, 2016
1 parent d4fe5fb commit a99c382
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
7 changes: 7 additions & 0 deletions Dockerfile-py2.7
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
FROM ubuntu:16.04

# Needed to install pyside2-tools without issues
ENV DEBIAN_FRONTEND noninteractive

RUN apt-get update && \
apt-get install -y \
software-properties-common && \
Expand All @@ -12,8 +15,12 @@ RUN apt-get update && \
python-pyqt5 \
python-pyside \
python-pyside2 \
pyside2-tools \
xvfb

# Make pyside2uic availble for Python 2.x
RUN cp -avr /usr/lib/python3/dist-packages/pyside2uic /usr/local/lib/python2.7/dist-packages

# Nose is the Python test-runner
RUN pip install nose nosepipe

Expand Down
4 changes: 4 additions & 0 deletions Dockerfile-py3.5
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
FROM ubuntu:16.04

# Needed to install pyside2-tools without issues
ENV DEBIAN_FRONTEND noninteractive

RUN apt-get update && \
apt-get install -y \
software-properties-common && \
Expand All @@ -12,6 +15,7 @@ RUN apt-get update && \
python3-pyqt5 \
python3-pyside \
python3-pyside2 \
pyside2-tools \
xvfb

# Nose is the Python test-runner
Expand Down

0 comments on commit a99c382

Please sign in to comment.