-
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.
* add get method for a component * Update README.rst * add extends argument manipulation * do not save temp file * build(deps): bump pygments from 2.12.0 to 2.15.0 Bumps [pygments](https://github.com/pygments/pygments) from 2.12.0 to 2.15.0. - [Release notes](https://github.com/pygments/pygments/releases) - [Changelog](https://github.com/pygments/pygments/blob/master/CHANGES) - [Commits](pygments/pygments@2.12.0...2.15.0) --- updated-dependencies: - dependency-name: pygments dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> * Update test_model.py * add method for getting and setting parameters * cleanup * add dictionary * fix end of dict fileg * Bump version and update test dependencies (#62) * bump version and update test depends * prepare the last of the release items * update _source on save_as (#64) * update deprecated call to pkg_resources (#65) * update deprecated call to pkg_resources * argh, pre-commit * import from `typing` instead of `typing.io` * Add poetry and remove tox (#67) * remove tox and add poetry * run pre-commit * add benchmark package * add building of doc in test * update dependendencies * precommit * Move Modelica methods over from GMT (#68) * remove tox and add poetry * run pre-commit * add benchmark package * add building of doc in test * update dependendencies * precommit * move modelica methods from gmt --------- Co-authored-by: Nathan Moore <nathan.moore@nrel.gov> * Update antlr4 and use a non-deprecated docker base image (#66) * update antlr4 to 4.13.0 * bump to antlrv4.13.1 * `poetry update` to bump dependency versions * remove redundant CI run * use os & python version matrix in github ci * eek, found an obvious miss of another antlr version mention * another `poetry update` to pick up the new antlr runtime version * use new base image in dockerfile * rebuild docker container * remove Windows from CI, it's too soon for that * update changelog (#70) --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Nathan Moore <nathan.moore@nrel.gov>
- Loading branch information
1 parent
ae48c3b
commit 05b1efb
Showing
64 changed files
with
67,501 additions
and
1,163 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
{ | ||
"version": "0.2", | ||
"language": "en", | ||
"words": [ | ||
"autoload", | ||
"buildingspy", | ||
"cmdclass", | ||
"Combi", | ||
"cvrmsd", | ||
"dassl", | ||
"dymola", | ||
"GDHC", | ||
"IBPSA", | ||
"Jing", | ||
"jinga", | ||
"klass", | ||
"levelname", | ||
"libfortran", | ||
"linecount", | ||
"maxdepth", | ||
"mfrt", | ||
"microgrid", | ||
"Modelica", | ||
"MODELICAPATH", | ||
"mofile", | ||
"nllong", | ||
"openstudio", | ||
"Optimica", | ||
"oversizing", | ||
"pygments", | ||
"redeclarations", | ||
"Reparse", | ||
"searchpath", | ||
"setpoint", | ||
"tanushree", | ||
"Templatized", | ||
"timeseries", | ||
"timestep", | ||
"urbanopt", | ||
"vtnate" | ||
], | ||
"flagWords": [ | ||
"hte" | ||
] | ||
} |
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
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
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,8 +1,8 @@ | ||
FROM openjdk:7-alpine | ||
FROM eclipse-temurin:17 | ||
|
||
WORKDIR /usr/local/lib | ||
RUN wget https://www.antlr.org/download/antlr-4.8-complete.jar | ||
ENV CLASSPATH=".:/usr/local/lib/antlr-4.8-complete.jar:$CLASSPATH" | ||
RUN wget https://www.antlr.org/download/antlr-4.13.1-complete.jar | ||
ENV CLASSPATH=".:/usr/local/lib/antlr-4.13.1-complete.jar:$CLASSPATH" | ||
|
||
ENTRYPOINT ["java", "-jar", "/usr/local/lib/antlr-4.8-complete.jar"] | ||
ENTRYPOINT ["java", "-jar", "/usr/local/lib/antlr-4.13.1-complete.jar"] | ||
CMD [] |
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 |
---|---|---|
@@ -0,0 +1,45 @@ | ||
modelica\_builder.modelica\_parser package | ||
========================================== | ||
|
||
Submodules | ||
---------- | ||
|
||
modelica\_builder.modelica\_parser.modelicaLexer module | ||
------------------------------------------------------- | ||
|
||
.. automodule:: modelica_builder.modelica_parser.modelicaLexer | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
modelica\_builder.modelica\_parser.modelicaListener module | ||
---------------------------------------------------------- | ||
|
||
.. automodule:: modelica_builder.modelica_parser.modelicaListener | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
modelica\_builder.modelica\_parser.modelicaParser module | ||
-------------------------------------------------------- | ||
|
||
.. automodule:: modelica_builder.modelica_parser.modelicaParser | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
modelica\_builder.modelica\_parser.utils module | ||
----------------------------------------------- | ||
|
||
.. automodule:: modelica_builder.modelica_parser.utils | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
Module contents | ||
--------------- | ||
|
||
.. automodule:: modelica_builder.modelica_parser | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: |
Oops, something went wrong.