Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,15 +109,14 @@ how to use your new functionality.

For further questions or information:

&nbsp;&nbsp;&nbsp;&nbsp;Luigi Gentile Polese<br/>
&nbsp;&nbsp;&nbsp;&nbsp;Katherine Fleming<br/>
&nbsp;&nbsp;&nbsp;&nbsp;BuildingSync Project Management<br/>
&nbsp;&nbsp;&nbsp;&nbsp;luigi.gentile.polese@nrel.gov<br/>
&nbsp;&nbsp;&nbsp;&nbsp;303.275.4362<br/>
&nbsp;&nbsp;&nbsp;&nbsp;katherine.fleming@nlr.gov<br/>

BuildingSync is funded by the U.S. Department of Energy’s (DOE) Building Technologies Office (BTO), and
managed by the National Renewable Energy Laboratory (NREL).
managed by the National Laboratory of the Rockies (NLR).

BuildingSync is developed in collaboration with NREL, LBNL, and private firms.
BuildingSync is developed in collaboration with NLR, LBNL, and private firms.

**Documents**

Expand Down
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
rev: v6.0.0
hooks:
- id: check-added-large-files
args: ["--maxkb=50000"]
Expand All @@ -25,7 +25,7 @@ repos:
- id: prettier
types_or: [css, yaml, markdown, html, scss, javascript, json]
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.11.2
rev: v0.15.10
hooks:
# Run the linter
- id: ruff
Expand Down
2 changes: 1 addition & 1 deletion examples/Golden Test File.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<Facility ID="Facility-be7020ff-fbdb-4901-86a8-0f868bbca12f">
<Sites>
<Site ID="SiteA">
<PremisesName>NREL Campus</PremisesName>
<PremisesName>NLR Campus</PremisesName>
<Address>
<StreetAddressDetail>
<Simplified>
Expand Down
2 changes: 1 addition & 1 deletion examples/LL87.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<Facility ID="Facility-32bf1bba-967a-4a98-8843-5761d0ebd971">
<Sites>
<Site ID="SiteA">
<PremisesName>NREL Campus</PremisesName>
<PremisesName>NLR Campus</PremisesName>
<Address>
<StreetAddressDetail>
<Simplified>
Expand Down
2 changes: 1 addition & 1 deletion migration_scripts/upgrade_from_2.4_to_2.5.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def main():
from_file, to_file = get_args().from_file, get_args().to_file

try:
tree = etree.parse(from_file) # noqa: S320
tree = etree.parse(from_file)
except (FileNotFoundError, etree.ParseError) as e:
Comment thread
nllong marked this conversation as resolved.
sys.exit(f"File could not be read \n{e} \naborting...")

Expand Down
2,707 changes: 1,816 additions & 891 deletions poetry.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "buildingsync-schema"
version = "0.2.0"
description = "Schema and examples for generating BuildingSync files from Python. This currently uses BuildingSync Version 2.7."
authors = ["corymosiman12 <cory.mosiman12@gmail.com>", "nllong <nicholas.long@nrel.gov>"]
authors = ["corymosiman12 <cory.mosiman12@gmail.com>", "nllong <nicholas.long@nlr.gov>"]

[tool.poetry.dependencies]
python = "^3.9"
Expand Down
Loading