-
-
Notifications
You must be signed in to change notification settings - Fork 273
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into hard_to_debug_msg
- Loading branch information
Showing
10 changed files
with
338 additions
and
137 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
# This workflow will install Python dependencies and run tests with multiple versions of Python | ||
|
||
name: cadCAD CI | ||
|
||
on: | ||
push: | ||
branches: [ "master" ] | ||
pull_request: | ||
branches: [ "master" ] | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
build: | ||
continue-on-error: true | ||
|
||
strategy: | ||
matrix: | ||
python-version: ["3.9", "3.10", "3.11", "3.12"] | ||
os: [ubuntu-latest, macos-latest] | ||
|
||
runs-on: ${{ matrix.os }} | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
cache: 'pip' | ||
|
||
- name: Display Python version | ||
run: python -c "import sys; print(sys.version)" | ||
|
||
- name: Install test and build dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
python -m pip install jupyter | ||
pip install -r requirements.txt | ||
- name: Build cadCAD | ||
run: | | ||
python setup.py bdist_wheel | ||
python -m pip install dist/*.whl --force-reinstall | ||
- name: Run tests | ||
run: | | ||
python testing/tests/multi_model_row_count.py | ||
python testing/tests/param_sweep.py | ||
python testing/tests/policy_aggregation.py | ||
python testing/tests/timestep1psub0.py | ||
python testing/tests/runs_not_zero.py | ||
python testing/tests/run1psub0.py | ||
python testing/tests/append_mod_test.py | ||
python testing/tests/cadCAD_exp.py | ||
- name: Run Jupyter test | ||
run: | | ||
python testing/tests/import_cadCAD_test.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,41 @@ | ||
Authors | ||
======= | ||
|
||
cadCAD was implemented by Joshua E. Jodesty and designed by Michael Zargham, Markus B. Koch, and | ||
Matthew V. Barlin from 2018 to 2020. | ||
cadCAD was originally implemented by Joshua E. Jodesty and designed by Michael Zargham, Markus B. Koch, and | ||
Matthew V. Barlin in 2018. Since then, upgrades and improvements were further committed by Danilo L. Bernardineli, Tyler D. Mace | ||
and Emanuel Lima. | ||
|
||
|
||
|
||
Project Maintainers: | ||
- Joshua E. Jodesty <[email protected]> | ||
- Markus B. Koch <[email protected]> | ||
- Michael Zargham <[email protected]> | ||
Current Project Maintainers: | ||
- Emanuel Lima <[email protected]> @emanuellima1 | ||
- Michael Zargham <[email protected]> @mzargham | ||
|
||
|
||
Original Contributors: | ||
- Joshua E. Jodesty | ||
- Markus B. Koch | ||
- Matthew V. Barlin | ||
- Michael Zargham | ||
- Zixuan Zhang | ||
- Charles Rice | ||
Active and Past Contributors: | ||
- Joshua E. Jodesty @JEJodesty | ||
- Markus B. Koch @markusbkoch | ||
- Matthew V. Barlin @matttyb80 | ||
- Michael Zargham @mzargham | ||
- Danilo L. Bernardineli @danlessa | ||
- Tyler D. Mace @tylerdmace | ||
- Emanuel Lima @emanuellima1 | ||
- Zixuan Zhang @zixuanzh | ||
- Charles Rice @charles-rice | ||
- Benjamin Scholz @BenSchZA | ||
|
||
|
||
We’d also like to thank: | ||
- Andrew Clark | ||
- Nick Hirannet | ||
- Jonathan Gabler | ||
- Harry Goodnight | ||
- Andrew Clark @aclarkData | ||
- Nick Hirannet @nick-phl-7 | ||
- Jonathan Gabler | ||
- Harry Goodnight @ | ||
- Charlie Hoppes | ||
- Nikhil Jamdade | ||
- Chris Frazier | ||
- Griff Green @GriffGreen | ||
- Isaac @eenti | ||
- Jonny Dubowsky @jonnydubowsky | ||
- Sem Brestels @sembrestels | ||
- @fjribi | ||
- Andrea Maria Piana @cammellos |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.