forked from westpa/westpa
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' of ssh://github.com/westpa/westpa into cleanup
- Loading branch information
Showing
16 changed files
with
809 additions
and
310 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: Mirror develop to westpa2 | ||
|
||
on: | ||
schedule: | ||
# Once a month on the 28th day at 4 pm UTC, which is ~11 am EST. | ||
- cron: "00 16 28 * *" | ||
|
||
jobs: | ||
mirror-develop-to-westpa2: | ||
runs-on: ubuntu-latest | ||
name: Mirror develop branch to westpa2 branch | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- name: mirroring step | ||
run: | | ||
git checkout westpa2 | ||
git pull --ff-only origin develop | ||
git push origin westpa2 | ||
env: | ||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,18 +4,18 @@ in collaboration with Daniel Zuckerman ([email protected]) | |
The original version of WESTPA was written by Matthew Zwier ([email protected]) | ||
as part of his Ph.D. dissertation with Lillian Chong. | ||
|
||
Other contributors are the following (In alphabetical order) | ||
Other core contributors are the following (in alphabetical order) | ||
|
||
Joshua Adelman | ||
Alex DeGrave | ||
Page Harrison | ||
Joseph Kaus | ||
Patrick Pisciuneri | ||
A. J. Pratt | ||
Nicholas Rego | ||
Anthony Bogetti | ||
Jeremy Leung | ||
AJ Pratt | ||
John Russo | ||
Ali Saglam | ||
David Wang | ||
Jeff Thompson | ||
Kim Wong | ||
Darian Yang | ||
She Zhang | ||
|
||
The work manager interface is derived from the ``concurrent.futures`` module | ||
of Python 3.2 by Brian Quinlan, (C) 2011 the Python Software Foundation. | ||
|
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 |
---|---|---|
|
@@ -10,6 +10,8 @@ dependencies: | |
- h5py | ||
- pyyaml | ||
- pyzmq | ||
- pytables | ||
- mdtraj | ||
- matplotlib-base | ||
- blessings | ||
- ipykernel | ||
|
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.