urbanopt-cli 1.0.0 → 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/ISSUE_TEMPLATE/bug_report.md +9 -3
- data/.github/ISSUE_TEMPLATE/feature_request.md +8 -8
- data/.github/pull_request_template.md +1 -1
- data/.github/workflows/nightly_ci_build.yml +3 -4
- data/CHANGELOG.md +18 -1
- data/Gemfile +2 -2
- data/LICENSE.md +1 -1
- data/example_files/reopt/base_assumptions.json +1 -0
- data/example_files/reopt/multiPV_assumptions.json +1 -1
- data/lib/uo_cli/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bfceca7798cf44a5750ef074227accbb934efb248d038880087d08e018ad6271
|
4
|
+
data.tar.gz: 17caf82796173fdf6b22d785f56008bc678ffd3d89d6c2c22f2713086f23d45c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 158e5b73a437c4388acde9eeb65ccd57c229eab6295c094c019684394c11c1ded75f061f0b3bf15f4e3950ab4967dfc62ae999654a8fff04238a81bb5558bb58
|
7
|
+
data.tar.gz: 9f05370517a7188b69766d5c03836c4902f459d21c70e9a19bce437b81f7d63626b758fe1b27752e07a23d63e4834ca327e39306ecc4e3196eef5bcf24be64f3
|
@@ -9,11 +9,11 @@ assignees: ''
|
|
9
9
|
|
10
10
|
### Expected behavior
|
11
11
|
|
12
|
-
|
12
|
+
<!--A clear and concise description of what you expected to happen.-->
|
13
13
|
|
14
14
|
### Actual behavior
|
15
15
|
|
16
|
-
|
16
|
+
<!--A clear and concise description of what actually happens.-->
|
17
17
|
|
18
18
|
### To Reproduce
|
19
19
|
|
@@ -23,6 +23,12 @@ Steps to reproduce the behavior:
|
|
23
23
|
1. Enter '...'
|
24
24
|
1. Enter '...'
|
25
25
|
|
26
|
+
### Version
|
27
|
+
<!--Please fill in your version of URBANopt to help us diagnose the issue.-->
|
28
|
+
<!--If you are not on the [newest version](https://docs.urbanopt.net/developer_resources/compatibility_matrix.html), please update.-->
|
29
|
+
<!--Review the [release notes](https://docs.urbanopt.net/developer_resources/known_issues.html) for help with known issues.-->
|
30
|
+
URBANopt: `X.Y.Z`
|
31
|
+
|
26
32
|
### Additional context
|
27
33
|
|
28
|
-
|
34
|
+
<!--Are you behind a firewall? Do you have additional security constraints?-->
|
@@ -7,14 +7,14 @@ assignees: ''
|
|
7
7
|
|
8
8
|
---
|
9
9
|
|
10
|
-
|
11
|
-
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
|
10
|
+
### Is your feature request related to a problem? Please describe
|
11
|
+
<!--A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]-->
|
12
12
|
|
13
|
-
|
14
|
-
A clear and concise description of what you want to happen
|
13
|
+
### The solution you'd like
|
14
|
+
<!--A clear and concise description of what you want to happen.-->
|
15
15
|
|
16
|
-
|
17
|
-
A clear and concise description of any alternative solutions or features you've considered
|
16
|
+
### Alternatives you've considered
|
17
|
+
<!--A clear and concise description of any alternative solutions or features you've considered.-->
|
18
18
|
|
19
|
-
|
20
|
-
Add any other context or screenshots about the feature request here
|
19
|
+
### Additional context
|
20
|
+
<!--Add any other context or screenshots about the feature request here.-->
|
@@ -8,5 +8,5 @@
|
|
8
8
|
|
9
9
|
- [ ] Unit tests have been added or updated
|
10
10
|
- [ ] All ci tests pass (green)
|
11
|
-
- [ ]
|
11
|
+
- [ ] This PR has been labeled appropriately (which will be used for the changelog)
|
12
12
|
- [ ] This branch is up-to-date with develop
|
@@ -13,7 +13,7 @@ env:
|
|
13
13
|
# Favor_Local_Gems enforces develop branch of all Ruby dependencies
|
14
14
|
# This is our canary in the coal mine! If any simulation tests fail, comment this and retry.
|
15
15
|
# If CI is then successful, we have a breaking change in a dependency somewhere.
|
16
|
-
|
16
|
+
FAVOR_LOCAL_GEMS: true
|
17
17
|
GEM_DEVELOPER_KEY: ${{ secrets.GEM_DEVELOPER_KEY }}
|
18
18
|
UO_NUM_PARALLEL: 4
|
19
19
|
# GHA machines have 4 cores. Trying to run more concurrently will slow everything down.
|
@@ -56,11 +56,10 @@ jobs:
|
|
56
56
|
run: bundle exec rspec -e 'Run and work with a small ${{ matrix.simulation-type }} simulation'
|
57
57
|
- name: Upload artifacts
|
58
58
|
# Save results for examination - useful for debugging
|
59
|
-
uses: actions/upload-artifact@
|
60
|
-
# Using v4 would mean we have to change our path design, and/or the test dir names
|
59
|
+
uses: actions/upload-artifact@v4
|
61
60
|
# Only upload if a previous step fails
|
62
61
|
if: failure()
|
63
62
|
with:
|
64
|
-
name:
|
63
|
+
name: rspec_results_${{ matrix.simulation-type }}
|
65
64
|
path: artifact.zip
|
66
65
|
retention-days: 7 # save for 1 week then delete
|
data/CHANGELOG.md
CHANGED
@@ -1,19 +1,36 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## Version 1.0.1
|
4
|
+
|
5
|
+
## What's Changed
|
6
|
+
|
7
|
+
* Update reopt assumptions file to work with REopt-api v3.11 by @vtnate in https://github.com/urbanopt/urbanopt-cli/pull/504
|
8
|
+
|
9
|
+
**Full Changelog**: https://github.com/urbanopt/urbanopt-cli/compare/v1.0.0...v1.0.1
|
10
|
+
|
11
|
+
## Version 1.0.0
|
12
|
+
|
13
|
+
* Update to support ruby 3.2.2 and OpenStudio 3.9.0
|
14
|
+
|
15
|
+
**Full Changelog**: https://github.com/urbanopt/urbanopt-cli/compare/v0.14.0...v1.0.0
|
16
|
+
|
3
17
|
## Version 0.14.0
|
4
18
|
Date Range: 06/27/2024 - 11/15/2024
|
5
19
|
|
6
20
|
## What's Changed
|
21
|
+
|
7
22
|
### Exciting New Features 🎉
|
23
|
+
|
8
24
|
* Upgrade version of ThermalNetwork Python dependency by @vtnate in https://github.com/urbanopt/urbanopt-cli/pull/493
|
9
25
|
* Upgrade miniconda by @vtnate in https://github.com/urbanopt/urbanopt-cli/pull/492
|
10
26
|
* Use new version of GMT by @vtnate in https://github.com/urbanopt/urbanopt-cli/pull/489
|
27
|
+
|
11
28
|
### Other Changes
|
29
|
+
|
12
30
|
* Update installer patch by @tijcolem in https://github.com/urbanopt/urbanopt-cli/pull/476
|
13
31
|
* Fix installer path bug by @vtnate in https://github.com/urbanopt/urbanopt-cli/pull/485
|
14
32
|
* Remove unnecessary default user-entry for DES commands by @vtnate in https://github.com/urbanopt/urbanopt-cli/pull/486
|
15
33
|
|
16
|
-
|
17
34
|
**Full Changelog**: https://github.com/urbanopt/urbanopt-cli/compare/v0.13.0...v0.14.0
|
18
35
|
|
19
36
|
## Version 0.13.0
|
data/Gemfile
CHANGED
@@ -24,7 +24,7 @@ allow_local = ENV['FAVOR_LOCAL_GEMS']
|
|
24
24
|
# gem 'urbanopt-core', github: 'URBANopt/urbanopt-core-gem', branch: 'master'
|
25
25
|
|
26
26
|
if allow_local && File.exist?('../urbanopt-scenario-gem')
|
27
|
-
|
27
|
+
gem 'urbanopt-scenario', path: '../urbanopt-scenario-gem'
|
28
28
|
elsif allow_local
|
29
29
|
gem 'urbanopt-scenario', github: 'URBANopt/urbanopt-scenario-gem', branch: 'develop'
|
30
30
|
end
|
@@ -36,7 +36,7 @@ elsif allow_local
|
|
36
36
|
end
|
37
37
|
|
38
38
|
if allow_local && File.exist?('../urbanopt-reopt-gem')
|
39
|
-
|
39
|
+
gem 'urbanopt-reopt', path: '../urbanopt-reopt-gem'
|
40
40
|
elsif allow_local
|
41
41
|
gem 'urbanopt-reopt', github: 'URBANopt/urbanopt-reopt-gem', branch: 'develop'
|
42
42
|
end
|
data/LICENSE.md
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
URBANopt (tm), Copyright (c) 2019-
|
1
|
+
URBANopt (tm), Copyright (c) 2019-2025, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved.
|
2
2
|
|
3
3
|
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
|
4
4
|
|
data/lib/uo_cli/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: urbanopt-cli
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- NREL URBANopt team
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-02-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: optimist
|