-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #132 from TRI-AMDD/development
v1.0.1
- Loading branch information
Showing
12 changed files
with
52 additions
and
100 deletions.
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
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
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 |
---|---|---|
|
@@ -46,6 +46,4 @@ docs/_build | |
docs/apidocs | ||
|
||
# ignore python biuld files | ||
build/ | ||
# ignore daetools | ||
daetools* | ||
build/ |
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,8 @@ | ||
FROM python:3.12-bookworm | ||
|
||
#Install necessary packages for daetools | ||
RUN apt-get update && \ | ||
apt-get install --yes libgl1-mesa-glx libgfortran5 | ||
|
||
#Download and install daetools | ||
RUN pip install https://sourceforge.net/projects/daetools/files/daetools/2.3.0/daetools-2.3.0-gnu_linux-x86_64.zip |
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 +1 @@ | ||
__version__ = '1.0.0' | ||
__version__ = '1.0.1' |
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,12 @@ | ||
numpy | ||
scipy | ||
matplotlib | ||
pyQt5 | ||
h5py | ||
configparser | ||
schema | ||
setuptools; python_version >= "3.12" | ||
daetools @ https://sourceforge.net/projects/daetools/files/daetools/2.3.0/daetools-2.3.0-gnu_linux-x86_64.zip ; python_version >= "3.10" and python_version <= "3.12" and sys_platform == "linux" | ||
daetools @ https://sourceforge.net/projects/daetools/files/daetools/2.3.0/daetools-2.3.0-win64.zip ; python_version >= "3.10" and python_version <= "3.12" and sys_platform == "win32" | ||
daetools @ https://sourceforge.net/projects/daetools/files/Old-releases/daetools-old/1.9.0/daetools-1.9.0-gnu_linux-x86_64.tar.gz ; python_version >= "3.5" and python_version <= "3.7" and sys_platform == "linux" | ||
daetools @ https://sourceforge.net/projects/daetools/files/Old-releases/daetools-old/1.9.0/daetools-1.9.0-win64.zip ; python_version >= "3.5" and python_version <= "3.7" and sys_platform == "win32" |
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