Skip to content
This repository has been archived by the owner on Sep 2, 2024. It is now read-only.

Commit

Permalink
Make sure to use latest kuksa-client pre-release (#120)
Browse files Browse the repository at this point in the history
  • Loading branch information
erikbosch authored Jul 6, 2023
1 parent c49fbb7 commit 85ec754
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 8 deletions.
2 changes: 1 addition & 1 deletion csv_provider/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ RUN python3 -m venv /opt/venv
ENV PATH="/opt/venv/bin:$PATH"

RUN /opt/venv/bin/python3 -m pip install --upgrade pip \
&& pip3 install --no-cache-dir -r requirements.txt
&& pip3 install --no-cache-dir --pre -r requirements.txt


RUN pip3 install wheel scons && pip3 install pyinstaller
Expand Down
3 changes: 2 additions & 1 deletion csv_provider/requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
kuksa-client>0.3
# If pre-releases (e.g. X.YaN) are specified you must use --pre when installing
kuksa-client >= 0.4a4
6 changes: 4 additions & 2 deletions dbc2val/requirements.in
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,16 @@
#
# pip-compile requirements.in
#
# If you depend on pre-releases (of e.g. kuksa-client) use
#
# pip-compile --pre requirements.in

python-can ~= 4.1
pyserial ~= 3.5
cantools ~= 38.0
pyyaml ~= 6.0
can-j1939 ~= 2.0
py_expression_eval ~= 0.3
# Larger than 0.3, includes pre-released if pip installed with --pre
kuksa-client > 0.3
kuksa-client >= 0.4a4
types-PyYAML ~= 6.0
types-protobuf ~= 4.21
2 changes: 1 addition & 1 deletion dbc2val/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ iniconfig==2.0.0
# via pytest
jsonpath-ng==1.5.3
# via kuksa-client
kuksa-client==0.4.0a3
kuksa-client==0.4.0a4
# via -r requirements.in
msgpack==1.0.5
# via python-can
Expand Down
3 changes: 2 additions & 1 deletion dds2val/requirements/requirements-test.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# If pre-releases (e.g. X.YaN) are specified you must use --pre when installing
pytest
pytest-html
pytest-cov
pytest-asyncio
py
kuksa-client > 0.3
kuksa-client >= 0.4a4
3 changes: 2 additions & 1 deletion dds2val/requirements/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# If pre-releases (e.g. X.YaN) are specified you must use --pre when installing
# feeder
cyclonedds
kuksa-client > 0.3
kuksa-client >= 0.4a4
# mapper
pyyaml
py-expression-eval
3 changes: 2 additions & 1 deletion gps2val/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
kuksa-client > 0.3
# If pre-releases (e.g. X.YaN) are specified you must use --pre when installing
kuksa-client >= 0.4a4
gpsdclient

0 comments on commit 85ec754

Please sign in to comment.