Skip to content

Commit d2ccdf7

Browse files
committed
Merge branch 'main' into task152
2 parents 48c7453 + 28457a9 commit d2ccdf7

File tree

226 files changed

+3647
-3317
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

226 files changed

+3647
-3317
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.9.4-dev
2+
current_version = 0.9.7-dev
33
commit = False
44
tag = False
55
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+))?

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ body:
2121
attributes:
2222
label: Aviary Version
2323
description: What version of Aviary is being used.
24-
placeholder: "0.9.4-dev"
24+
placeholder: "0.9.7-dev"
2525
validations:
2626
required: true
2727
- type: textarea

.github/workflows/test_benchmarks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ on:
1818
jobs:
1919

2020
latest_benchmarks:
21-
runs-on: ubuntu-latest
21+
runs-on: ubuntu-22.04
2222
timeout-minutes: 90
2323

2424
steps:

.github/workflows/test_docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ on:
1818
jobs:
1919

2020
latest_docs:
21-
runs-on: ubuntu-latest
21+
runs-on: ubuntu-22.04
2222
timeout-minutes: 90
2323

2424
steps:

.github/workflows/test_workflow.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818

1919
pre_commit:
2020
# run pre-commit checks
21-
runs-on: ubuntu-latest
21+
runs-on: ubuntu-22.04
2222

2323
steps:
2424
- uses: actions/checkout@v4
@@ -28,7 +28,7 @@ jobs:
2828
- uses: pre-commit/[email protected]
2929

3030
test_ubuntu:
31-
runs-on: ubuntu-latest
31+
runs-on: ubuntu-22.04
3232
strategy:
3333
fail-fast: false
3434
matrix:

.github/workflows/test_workflow_dev_deps.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ on:
1414
jobs:
1515

1616
test_ubuntu:
17-
runs-on: ubuntu-latest
17+
runs-on: ubuntu-22.04
1818
strategy:
1919
fail-fast: false
2020
matrix:

.github/workflows/test_workflow_no_dev_install.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ on:
1717
jobs:
1818

1919
test_ubuntu_no_dev_install:
20-
runs-on: ubuntu-latest
20+
runs-on: ubuntu-22.04
2121

2222
timeout-minutes: 90
2323

CITATION.cff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,4 @@ identifiers:
2727
repository-code: 'https://github.com/OpenMDAO/Aviary'
2828
repository: 'https://github.com/OpenMDAO/Aviary_Community'
2929
license: Apache-2.0
30-
version: 0.9.3
30+
version: 0.9.7

aviary/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.9.4-dev"
1+
__version__ = "0.9.7-dev"

aviary/api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
from aviary.variable_info.options import get_option_defaults, is_option
2424
from aviary.utils.develop_metadata import add_meta_data, update_meta_data
2525
from aviary.variable_info.variable_meta_data import CoreMetaData
26-
from aviary.variable_info.functions import add_aviary_input, add_aviary_output, get_units, override_aviary_vars, setup_trajectory_params
26+
from aviary.variable_info.functions import add_aviary_input, add_aviary_output, get_units, override_aviary_vars, setup_trajectory_params, setup_model_options
2727
from aviary.utils.merge_hierarchies import merge_hierarchies
2828
from aviary.utils.merge_variable_metadata import merge_meta_data
2929
from aviary.utils.named_values import NamedValues, get_keys, get_items, get_values

0 commit comments

Comments
 (0)