Skip to content

Commit

Permalink
0.3.0 release (#353)
Browse files Browse the repository at this point in the history
* Fix CLI (#290)

* Fix docker (#288)

* Squish (#289)

* Exclude python 3.12 from support (#293)

* exclude python 3.12 from support

* change pygit2 version

* move cd.yaml to poetry

* prevent werkzeug from breaching 3.0.0

* update checkout and setup-python. Add 3.11 to test matrix

* Refactor Table Connection (#291)

* unify getting objects by id and consolidate to delete language

* fix tests

* Documenting shape-to-template process and adding some QoL improvements (#278)

* documenting shape-to-template process and adding some QoL improvements

* fix test

* skip 223P tests until gabe can fix them after next standard prerelease is done

* remember to add shapes from the graph even when loading from directory

* add exception to catch lack of sh:path

* add test cases for recent code changes

* dedicated test suite for library shape test

* dedicated test suite for library shape test

* Add Application Explorer (#292)

* Add Application Explorer

* Address comment

* Fix test

* improve performance by not requiring OPTIONAL clause in SPARQL queries

---------

Co-authored-by: Gabe Fierro <[email protected]>

* Generate SPARQL Queries from SHACL shapes (#273)

* add method to generate sparql query from shacl shape

* add some tests

* fix typo in query generation

* add sh:node, sh:or

* fixup tests

* handle or inside qualifiedvalue shape, complex property paths

* add test file

* update docs with image and guide on query generation

* augment docstring with more features

* add test case

* add section on supported SHACL features

* add algorithm documentation

* support other target definitions

* add more tests

* Fixing template inlining (#298)

* address ambiguous template naming in inline_dependencies

* fill non-graphs, propagate the optional arg requirement

* update tests

* adjusting tests for inlining

* Allow Library to find template definitions from dependent libraries (#307)

* allow Library to find template definitions from dependent libraries

* fixing tests to catch warnings, test dependency tracking

* use non-deprecated warnings; make sure warnings are emitted when necessary

* clarify when dependencies are infered for SHACL shapes -> templates

* update dependencies

* adding documentation on templates

* placeholder for further template docs

* clarify load order

* update jsonschema, skip mypy checking on imports

* fix API response and test to handle Brick

* cleaning some code up

* Add ability to use TopQuadrant SHACL implementation as engine (#308)

* add shacl_validate/infer functions and use these as the entrypoint. Augment tests to check both shacl engines

* fix interactions with shacl inference

* tightening up the implementation and use of the shacl_* methods

* support specifying shacl engine in the API

* update tests; test both pyshacl and topquadrant

* add brick-tq-shacl dep

* add TODOs

* Formatting

* no more 3.8!

* ignoring some imported packages without type annotations

* more type annotations

* add types, ignore type errors for imports

* update mypy, fix some issues and ignore some others

* fix union type annotation

* update docker containers

* 3.8.1 python for higher

* add back python 3.8

* change 3.8 version

* add test for finding reasons with a given severity

* update brick-tq-shacl, fix type signature

* remove debug serializations

* bump shacl version

* fixing skolemization for validation

* move shacl engine config inside buildingmotif object

* install rtd deps

* jupyter-book needs to be installed pre-build

* cleanup and update to default config comments

* change from ubuntu:latest to python:3.9 for bacnet testing (#317)

* Fix tutorials (#310)

* updating validation tutorial

* fixing some tutorials

* updates

* more components

* fix imports and formatting and type annotations

* fix formatting

* fix merge

* fix bacnet docker

* fixing versions in docker bacnet setup

* alphabetize prefixes

* fixing model_correction file

* Add new transitive_parameters method to accelerate library loading (#314)

* Add new transitive_parameters method to accelerate library loading

The prior implementation of check_template_dependency_relationship used
inline_dependencies to check the parameters of template dependencies.
inline_dependencies can be slow-ish because it copies the bodies of
templates (these are graphs, so they inherit the performance
characteristics of the underlying store). We can compute the parameters
through the dependency tree automatically without copying the graphs,
which is much faster.

* use cached_property

* remove cached_property

* fix docker

* fix bacnet docker container

* bump workflow action versions

* BMS naming convention parsing (#286)

* adding label parsing initial implementation with tests

* fix bug in many parsing

* test first_true

* add ingress and example

* adding/testing maybe parser

* add errors

* propagate errors

* update notebook

* fix test import

* capture errors in the token stream

* fix notebook kernel

* some changes

* Make Parsers classes

* Add Application Explorer (#292)

* Add Application Explorer

* Address comment

* Fix test

* improve performance by not requiring OPTIONAL clause in SPARQL queries

---------

Co-authored-by: Gabe Fierro <[email protected]>

* Generate SPARQL Queries from SHACL shapes (#273)

* add method to generate sparql query from shacl shape

* add some tests

* fix typo in query generation

* add sh:node, sh:or

* fixup tests

* handle or inside qualifiedvalue shape, complex property paths

* add test file

* update docs with image and guide on query generation

* augment docstring with more features

* add test case

* add section on supported SHACL features

* add algorithm documentation

* support other target definitions

* add more tests

* Fixing template inlining (#298)

* address ambiguous template naming in inline_dependencies

* fill non-graphs, propagate the optional arg requirement

* update tests

* adjusting tests for inlining

* Allow Library to find template definitions from dependent libraries (#307)

* allow Library to find template definitions from dependent libraries

* fixing tests to catch warnings, test dependency tracking

* use non-deprecated warnings; make sure warnings are emitted when necessary

* clarify when dependencies are infered for SHACL shapes -> templates

* update dependencies

* adding documentation on templates

* placeholder for further template docs

* clarify load order

* update jsonschema, skip mypy checking on imports

* fix API response and test to handle Brick

* cleaning some code up

* remove unused import, fix type signature

* fix poetry lock

* moving tokens/parser to different files

* adding combinators module

* add some negative cases

* add missing combinators file

* fix notebook

---------

Co-authored-by: Hannah Eslinger <[email protected]>

* New model builder (#301)

* address ambiguous template naming in inline_dependencies

* fill non-graphs, propagate the optional arg requirement

* update tests

* adjusting tests for inlining

* update 223p templates

* update 223

* add model builder impl

* add QUDT

* update templates

* allow adding triples directly to the builder graph

* allow Library to find template definitions from dependent libraries

* fixing tests to catch warnings, test dependency tracking

* use non-deprecated warnings; make sure warnings are emitted when necessary

* clarify when dependencies are infered for SHACL shapes -> templates

* update dependencies

* adding documentation on templates

* placeholder for further template docs

* clarify load order

* update jsonschema, skip mypy checking on imports

* fix API response and test to handle Brick

* updating 223p and templates

* filtering validationcontext by severity

* add shacl_validate/infer functions and use these as the entrypoint. Augment tests to check both shacl engines

* fix interactions with shacl inference

* tightening up the implementation and use of the shacl_* methods

* support specifying shacl engine in the API

* update tests; test both pyshacl and topquadrant

* add brick-tq-shacl dep

* add TODOs

* Formatting

* no more 3.8!

* ignoring some imported packages without type annotations

* more type annotations

* add types, ignore type errors for imports

* update mypy, fix some issues and ignore some others

* fix union type annotation

* update docker containers

* 3.8.1 python for higher

* add back python 3.8

* change 3.8 version

* add test for finding reasons with a given severity

* update brick-tq-shacl, fix type signature

* remove debug serializations

* bump shacl version

* fixing skolemization for validation

* update 223p, fix merge error

* fix notebook

* fix the merge

* remove qudt from commit

* remove more bad merge

* fix more bad merge

* remove more bad merge

* add s223 namespace, parameter prop on template builder

* add model builder draft

* add call syntax to simplify evaluating templates

* do not waste cycles re-binding namespaces on copied graphs

* update model builder notebook

* add java for topquadrant support

* use topquadrant in 223 notebook

* updating dockerfile; this started failing, possibly because of updated ubuntu

* properly initialize graph superclass

* Add graph hashing method to utils (#296)

* Add graph hashing method to utils

* change to approximate hash and use existing model for test

* make test use a model graph to show positive functionality with DB stored graphs

* use new rdflib triple canonicalizer to calculate graph hashes

* update docstring

* rename from approximate_graph_hash to graph_hash

* Create generic serializer deserializer for parsers (#322)

* Strip param inlining (#325)

* add _strip_param function and tests to support inlining

* fix test

* Changes to ingresses to support external work (#312)

* Allow TemplateHandler to handle edge cases in template eval

Adds two flags:
- require_optional
- fill_unused

These allow adjustment of how the template ingress handler deal with
records that don't necessarily have all the parameters for the chosen
template (fill_unused), and how the handler deal with optional
parameters in the chosen template (require_optional)

* more configuration on template ingress

* put limit on xlsx

* cleaning up parameter,s adding docstrings

* Update template.py

* Update xlsx.py

* use pathlike

* Fix autogeneration of templates (#329)

* factor out the guarantee method and add unit tests

* add function to utils

* Update 223P to public advisory review version (#309)

* updating 223p again

* update 223p templates

* update 223

* add QUDT

* update templates

* allow Library to find template definitions from dependent libraries

* fixing tests to catch warnings, test dependency tracking

* use non-deprecated warnings; make sure warnings are emitted when necessary

* clarify when dependencies are infered for SHACL shapes -> templates

* update dependencies

* adding documentation on templates

* placeholder for further template docs

* clarify load order

* update jsonschema, skip mypy checking on imports

* fix API response and test to handle Brick

* updating 223p and templates

* filtering validationcontext by severity

* add shacl_validate/infer functions and use these as the entrypoint. Augment tests to check both shacl engines

* fix interactions with shacl inference

* tightening up the implementation and use of the shacl_* methods

* support specifying shacl engine in the API

* update tests; test both pyshacl and topquadrant

* add brick-tq-shacl dep

* add TODOs

* Formatting

* no more 3.8!

* ignoring some imported packages without type annotations

* more type annotations

* add types, ignore type errors for imports

* update mypy, fix some issues and ignore some others

* fix union type annotation

* update docker containers

* 3.8.1 python for higher

* add back python 3.8

* change 3.8 version

* add test for finding reasons with a given severity

* update brick-tq-shacl, fix type signature

* remove debug serializations

* bump shacl version

* fixing skolemization for validation

* update 223p, fix merge error

* fix notebook

* fix more templates; test 223p again

* move shacl engine config inside buildingmotif object

* parameterize testing of templates for 223p

* change some brick templates to make tests less noisy

* fixing up templates

* add brick integration tests

* upadte QUDT

* 223p fixup

* add shacl engine and qudt to tests

* use public review version of 223p

* add qudt 2.1.37 release

* better exception message

* fixing system, sensor templates

* fixing up 223 templates

* fix plugging connection points in 223p

* add the shape graph to the data graph for validation

* clean up a little; skip some templates for pyshacl + 223p

* fixing use of tmpdir -> tmp_path

* try persistence test without path

* use path again; try print statements

* Add new transitive_parameters method to accelerate library loading

The prior implementation of check_template_dependency_relationship used
inline_dependencies to check the parameters of template dependencies.
inline_dependencies can be slow-ish because it copies the bodies of
templates (these are graphs, so they inherit the performance
characteristics of the underlying store). We can compute the parameters
through the dependency tree automatically without copying the graphs,
which is much faster.

* use cached_property

* tryin-memory?

* skip the test -- is this the only one that iss broken?

* remove this file

* add back path, remove other conftest

* add back path, remove other conftest

* remove test from in-progress code

* remove cached_property

* add back conf tests with optimized loading

* fix docker

* more test hacking

* remove duplicate parameterization

* remove bad merge

* fix bacnet docker container

* bump workflow action versions

* use more recent Brick, try to write to local db file for persistence test

* fix brick references, fix persistence test

* support configuring the shacl engine when starting the buildingmotif API

* make sure SHACL engine is passed around

* handle dependencies for Brick validation in integration tests

* bump deps

* remove debug

* add imports for brick

* update brick 1.3 -> 1.4

* reduce tests temporarily

* fixing flags to customize how much work gets done when a library is loaded

* build templates off of imports closure

* more recent 223p build

* update again

* newer 223p

* temporarily pause bacnet integration

* add custom option; this needs to be done at the "top level" of the pytest config

* add bacnet back

* fix ci configuration

* fix dependencies on template

* fixing some libraries

* add _strip_param function and tests to support inlining

* fix last class

* fix test

* add _strip_param function and tests to support inlining

* fix test

* revert db persistence test

* change how we indicate buildingMOTIF's singleton metaclass

* update chiller pointlist library

* add new test subdirectory to fucus on library/template tests

* remove debugs

* monkeypatching to handle the singleton

* more adjustments on the monkeypatching

* more monkeypatching

* add comments for explaining the library conftest

* add library tests for github, add back notebook fixture

* add IDs to notebook tests

* factor out the guarantee method and add unit tests

* add function to utils

* update internal Brick

* update notebooks to match buildingmotif API

* fixing a couple notebooks

* fix kernel

* skip some 223p templates that cannot stand on their own

* more templates to skip for 223p

* increase notebook run time

* remove unneeded flag

* small changes to template compilation

* fix chiller templates

* add libraries to dockerfile so that pytest can enumerate the tests

* add docstring for shacl_engine

* cleaner bypass of the singleton for library tests

---------

Co-authored-by: Matt Steen <[email protected]>

* Create parser UI (#319)

* Add parsers endpoint

* Update node version

* Create Parser UIs

* Fix linting

* Fix linting?

* Add in  Blockly

* WIP

* Fix

* use inspect to help generate argument serialization

* Clean up

* Fix spilt

---------

Co-authored-by: TShapinsky <[email protected]>

* rename 5.16

* cleanup 5.16 prefixes

* add 5.16 missing fault conditions 1 and 9-15

* cleanup 5.16 fault conditions 2-8

* typos

* add 5.17 fault conditions

* add 5.18 fault conditions

* remove unused components prefix

* add 5.22 fault conditions

* update Operating State points

* changing the model of outside air fraction

* remove internal variables (constants)

* Updating setuptool to use the newest version, bumping other deps too (#340)

* Updating setuptool to use the newest version, bumping other deps too

* update pyshacl, other deps

* Update pyproject.toml

* update poetry.lock

* Update NREL 223P Templates (#343)

* add new pipe and belimo energy valve templates, update property definitions for water and air mediums, remove QUDT files not needed for model validation

* fix dependency

* skip pipe template due to connections

* add %OAmin

* remove %OA

* update test_model.py

* fix typo in FCU prefix

* Skip ipynb checkpoint directory (#330)

* skip .ipynb_checkpoints when scanning for files

* do the same filter in utils

* add ipynb checkpoint test

* force-add the ipynb checkpoitn file

* Service clean up (#335)

Co-authored-by: Gabe Fierro <[email protected]>

* Add test and fix for #326 (#327)

* add test and fix for #237

* add negative test

* fix tests for windows (#318)

* fix tests for windows

* flush buffer in tests

* Add explanation of point label parsing (#344)

* add explanation of point label parsing

* add example from notebook

* add note on error handling

* add links to a few classes

* Update docs/explanations/point-label-parsing.md

Co-authored-by: Matt Steen <[email protected]>

* Update docs/explanations/point-label-parsing.md

Co-authored-by: Matt Steen <[email protected]>

* Update docs/explanations/point-label-parsing.md

Co-authored-by: Matt Steen <[email protected]>

* Update docs/explanations/point-label-parsing.md

Co-authored-by: Matt Steen <[email protected]>

* Update docs/explanations/point-label-parsing.md

Co-authored-by: Matt Steen <[email protected]>

---------

Co-authored-by: Matt Steen <[email protected]>

* Fixing runtime issues in Jupyter notebook (#348)

* move the target query out of the hot loop; we probably do not need to compute the cbd because we are already passing in the ontology graph

* reduce the number of shapes we check in the notebook

* fix composition of shacl shapes

* break out integration tests to only run once

* remove commented line

* break out libraries into its own test

* remove libraries from integration

* try to run library tests on approval/merge

* use new model

* try more triggers

* make only library tests run when event type is not push

* remove style dependency for library tests

---------

Co-authored-by: TShapinsky <[email protected]>

* Update Brick to 1.4.1 (#346)

* update Brick to 1.4.1

* Update Brick 1.3 -> 1.4 references

* move the target query out of the hot loop; we probably do not need to compute the cbd because we are already passing in the ontology graph

* reduce the number of shapes we check in the notebook

* fix composition of shacl shapes

* break out integration tests to only run once

* remove commented line

* break out libraries into its own test

* remove libraries from integration

* updating unit tests for brick 1.4

* adjust test to use brick 1.4

* using Brick 1.4 for more tests

* fix brick uri

* fix 4.6 shape for library tests

* Add parser vis (#334)

* update pyproject.toml for release

---------

Co-authored-by: Hannah Eslinger <[email protected]>
Co-authored-by: Tobias Shapinsky <[email protected]>
Co-authored-by: Gabe Fierro <[email protected]>
Co-authored-by: daniel <[email protected]>
  • Loading branch information
5 people authored Sep 20, 2024
1 parent 87b3862 commit d163076
Show file tree
Hide file tree
Showing 224 changed files with 418,640 additions and 42,864 deletions.
21 changes: 14 additions & 7 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: continuous deployment

on:
on:
pull_request:
branches:
- develop
Expand All @@ -19,11 +19,13 @@ jobs:
steps:
# setup, checkout pull_request.head.ref for repo-vis
- name: checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{github.event.pull_request.head.ref}}
- name: setup-python
uses: actions/setup-python@v3
uses: actions/setup-python@v5
with:
python-version: '3.11'
# # update repo visualization for docs
# - name: repo-visualizer
# uses: githubocto/[email protected]
Expand All @@ -32,8 +34,13 @@ jobs:
# excluded_paths: ".github"
# commit_message: "repo-visualizer [skip actions]"
# install project, which is required for autodoc of code
- name: install-poetry
uses: snok/install-poetry@v1
with:
version: 1.4.0
virtualenvs-create: false
- name: install buildingmotif
run: pip install .
run: poetry install --all-extras
# install jupyter-book, which for some reason isn't available with poetry install
- name: install jupyter book
run: pip install jupyter-book
Expand All @@ -47,7 +54,7 @@ jobs:
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/_build/html
publish_dir: ./docs/_build/html

# deploy distribution if a new release and tag are created
deploy-dist:
Expand All @@ -57,9 +64,9 @@ jobs:
steps:
# setup
- name: checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: setup-python
uses: actions/setup-python@v3
uses: actions/setup-python@v5
# install poetry and build dist
- name: install-poetry
uses: snok/install-poetry@v1
Expand Down
96 changes: 87 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,26 @@
name: continuous integration

on:
push
push:
pull_request_review:
types: [submitted]

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:

styling:
if: github.event_name == 'push'
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: setup-python
uses: actions/setup-python@v3
uses: actions/setup-python@v5
with:
python-version: 3.11
- name: install-poetry
uses: snok/install-poetry@v1
with:
Expand All @@ -25,17 +34,24 @@ jobs:
poetry run isort . --check
poetry run black . --check
# The "testing" job verifies the base SDK functionality across
# all supported Python versions.
testing:
if: github.event_name == 'push'
needs: styling
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10']
python-version: ['3.8', '3.9', '3.10', '3.11']
steps:
- name: checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- uses: actions/setup-java@v4 # for topquadrant shacl support
with:
distribution: 'temurin'
java-version: '21'
- name: setup-python
uses: actions/setup-python@v3
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: install-poetry
Expand All @@ -49,9 +65,42 @@ jobs:
- name: lint
run: poetry run flake8 buildingmotif
- name: type check
run: poetry run mypy
run: poetry run mypy --ignore-missing-imports
- name: unit tests
run: poetry run pytest tests/unit --cov=./ --cov-report=xml
- name: build tests
run: poetry build

# We only run "integration" tests on the latest Python version.
# These tests detect if changes to ontologies, libraries, models and BuildingMOTIF
# affect correct operation of notebooks and BACnet scans. Library integration testing
# is a separate job
integration:
if: github.event_name == 'push'
needs: styling
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.11']
steps:
- name: checkout
uses: actions/checkout@v4
- uses: actions/setup-java@v4 # for topquadrant shacl support
with:
distribution: 'temurin'
java-version: '21'
- name: setup-python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: install-poetry
uses: snok/install-poetry@v1
with:
version: 1.4.0
virtualenvs-in-project: false
virtualenvs-path: ~/.virtualenvs
- name: poetry install
run: poetry install --all-extras
- name: integration tests
run: poetry run pytest tests/integration
- name: bacnet tests
Expand All @@ -61,8 +110,37 @@ jobs:
docker compose run -d device
docker compose run buildingmotif poetry run pytest -m bacnet
docker compose down
- name: build tests
run: poetry build
# We only run "library" tests on the latest Python version.
# These tests detect if changes to ontologies, libraries, models and BuildingMOTIF
# affect correct operation of templates, shapes, and validation
libraries:
if: github.event.review.state == 'approved' || github.ref == 'refs/heads/main' || github.ref == 'refs/heads/develop'
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.11']
steps:
- name: checkout
uses: actions/checkout@v4
- uses: actions/setup-java@v4 # for topquadrant shacl support
with:
distribution: 'temurin'
java-version: '21'
- name: setup-python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: install-poetry
uses: snok/install-poetry@v1
with:
version: 1.4.0
virtualenvs-in-project: false
virtualenvs-path: ~/.virtualenvs
- name: poetry install
run: poetry install --all-extras
- name: library tests
run: poetry run pytest tests/library

coverage:
needs: testing
Expand Down
8 changes: 4 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ repos:
entry: poetry run flake8 buildingmotif
# can't poetry run becuase not present in repository https://github.com/pre-commit/mirrors-mypy
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v0.931
rev: v1.10.0
hooks:
- id: mypy
args: ["--install-types", "--non-interactive", "--ignore-missing-imports"]
additional_dependencies: [sqlalchemy2-stubs <= 0.0.2a20, SQLAlchemy <= 1.4]
exclude: docs/conf.py
args: ["--install-types", "--non-interactive", "--ignore-missing-imports", "--follow-imports=skip", "--disable-error-code=import-untyped"]
additional_dependencies: [sqlalchemy2-stubs <= 0.0.2a38, SQLAlchemy < 1.5]
exclude: docs/conf.py
29 changes: 12 additions & 17 deletions .readthedocs.yaml
Original file line number Diff line number Diff line change
@@ -1,34 +1,29 @@
# .readthedocs.yaml
# Read the Docs configuration file
# Read the Docs configuration file for Sphinx projects
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details

# Required
version: 2

# Set the version of Python and other tools you might need
# Set the OS, Python version and other tools you might need
build:
os: ubuntu-22.04
tools:
python: "3.10"
# You can also specify other tool versions:
# nodejs: "19"
# rust: "1.64"
# golang: "1.19"
jobs:
pre_build:
# Generate the Sphinx configuration for this Jupyter Book so it builds.
- "pip install -U jupyter-book"
- "pip install jupyter-book"
- "jupyter-book config sphinx docs/"

# Build documentation in the docs/ directory with Sphinx
# Build documentation in the "docs/" directory with Sphinx
sphinx:
configuration: docs/conf.py
fail_on_warning: false

# If using Sphinx, optionally build your docs in additional formats such as PDF
# formats:
# - pdf

# Optionally declare the Python requirements required to build your docs
# python:
# install:
# - requirements: docs/requirements.txt
# Optional but recommended, declare the Python requirements required
# to build your documentation
# See https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html
python:
install:
- method: pip
path: .
2 changes: 1 addition & 1 deletion buildingmotif-app/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:18.10.0
FROM node:18.19.0

WORKDIR /buildingmotif-app
COPY . .
Expand Down
Loading

0 comments on commit d163076

Please sign in to comment.