-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fixed .csv header with correct information. Updated version number. Added docker container for linux.
- Loading branch information
Showing
4 changed files
with
64 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
FROM ubuntu:jammy-20240911.1 | ||
|
||
# Install dependencies for pycairo, pyobject and pydbus | ||
RUN apt update | ||
RUN apt install -y python3.10 | ||
RUN apt install -y python3-pip | ||
RUN apt install -y wget | ||
RUN apt install -y libcairo2-dev libxt-dev libgirepository1.0-dev | ||
RUN apt install -y build-essential libdbus-glib-1-dev libgirepository1.0-dev | ||
RUN apt install -y ninja-build patchelf bluez dbus bluetooth | ||
|
||
# Start bluetooth services | ||
RUN service dbus start | ||
RUN service bluetooth start | ||
|
||
# Copy requirements file and install python requirements | ||
COPY requirements.txt ./ | ||
RUN pip3 install meson | ||
RUN pip3 install --no-cache-dir -r requirements.txt | ||
|
||
# Copy all files to container | ||
COPY . . |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
from scientisst.scientisst import * | ||
|
||
__version__ = "1.1.0" | ||
__version__ = "1.2.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters