Skip to content

Commit 449dde8

Browse files
authored
Merge pull request #3 from rd2/geo
Adds geometry-related functions & tests.
2 parents f99db08 + 3a1e4f7 commit 449dde8

File tree

4 files changed

+9719
-614
lines changed

4 files changed

+9719
-614
lines changed

.github/workflows/pull_request.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
with:
2020
python-version: ${{ matrix.python-version }}
2121
- name: Install dependencies
22-
run: python -m pip install --upgrade pip setuptools wheel openstudio oslg
22+
run: python -m pip install --upgrade pip setuptools wheel openstudio oslg numpy
2323
- name: Run unit tests
2424
run: python -m unittest
2525

@@ -37,6 +37,6 @@ jobs:
3737
with:
3838
python-version: ${{ matrix.python-version }}
3939
- name: Install dependencies
40-
run: python -m pip install --upgrade pip setuptools wheel openstudio oslg
40+
run: python -m pip install --upgrade pip setuptools wheel openstudio oslg numpty
4141
- name: Run unit tests
4242
run: python -m unittest

pyproject.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,16 @@
11
[project]
22
name = "osut"
3-
version = "0.6.0a1"
3+
version = "0.6.0a2"
44
description = "OpenStudio SDK utilities for Python"
55
readme = "README.md"
66
requires-python = ">=3.2"
77
authors = [ {name = "Denis Bourgeois", email = "[email protected]"} ]
88
maintainers = [ {name = "Denis Bourgeois", email = "[email protected]"} ]
99
dependencies = [
10+
"numpy",
1011
"oslg",
1112
"openstudio>=3.6.1",
13+
"dataclasses",
1214
]
1315
license = "BSD-3-Clause"
1416
license-files = ["LICENSE"]

0 commit comments

Comments
 (0)