-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #232 from OSeMOSYS/master
Updating Development Branch
- Loading branch information
Showing
107 changed files
with
3,645 additions
and
1,002 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# This workflow will upload a Python Package using Twine when a release is created | ||
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python#publishing-to-package-registries | ||
|
||
# This workflow uses actions that are not certified by GitHub. | ||
# They are provided by a third-party and are governed by | ||
# separate terms of service, privacy policy, and support | ||
# documentation. | ||
|
||
name: Upload Python Package | ||
|
||
on: | ||
release: | ||
types: [published] | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
deploy: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Set up Python | ||
uses: actions/setup-python@v3 | ||
with: | ||
python-version: '3.x' | ||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install tox | ||
- name: Build package | ||
run: tox -e build | ||
- name: Publish package | ||
run: tox -e publish | ||
env: | ||
TWINE_USERNAME: ${{ vars.TWINE_USERNAME }} | ||
TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }} | ||
TWINE_REPOSITORY: ${{ vars.TWINE_REPOSITORY }} |
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
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 |
---|---|---|
@@ -1,19 +1,36 @@ | ||
cff-version: 1.2.0 | ||
message: "If you use this software, please cite it as below." | ||
cff-version: "1.2.0" | ||
authors: | ||
- family-names: Usher | ||
given-names: Will | ||
orcid: https://orcid.org/0000-0001-9367-1791 | ||
- family-names: Barnes | ||
given-names: Trevor | ||
orcid: "https://orcid.org/0000-0003-2458-2968" | ||
- family-names: Usher | ||
given-names: Will | ||
orcid: "https://orcid.org/0000-0001-9367-1791" | ||
contact: | ||
- family-names: Barnes | ||
given-names: Trevor | ||
orcid: "https://orcid.org/0000-0003-2458-2968" | ||
doi: 10.5281/zenodo.10360538 | ||
message: If you use this software, please cite our article in the | ||
Journal of Open Source Software. | ||
preferred-citation: | ||
authors: | ||
- family-names: Barnes | ||
given-names: Trevor | ||
orcid: https://orcid.org/0000-0003-2458-2968 | ||
- family-names: Henke | ||
given-names: Hauke | ||
orcid: https://orcid.org/0000-0003-0098-8701 | ||
- family-names: Muschner | ||
given-names: Christoph | ||
orcid: https://orcid.org/0000-0001-8144-5260 | ||
title: "otoole: OSeMOSYS tools for energy work" | ||
version: 1.0.0 | ||
doi: 10.5281/zenodo.7677990 | ||
date-released: 2023-02-26 | ||
orcid: "https://orcid.org/0000-0003-2458-2968" | ||
- family-names: Usher | ||
given-names: Will | ||
orcid: "https://orcid.org/0000-0001-9367-1791" | ||
date-published: 2023-12-20 | ||
doi: 10.21105/joss.05511 | ||
issn: 2475-9066 | ||
issue: 92 | ||
journal: Journal of Open Source Software | ||
publisher: | ||
name: Open Journals | ||
start: 5511 | ||
title: "otoole: OSeMOSYS Tools for Energy Work" | ||
type: article | ||
url: "https://joss.theoj.org/papers/10.21105/joss.05511" | ||
volume: 8 | ||
title: "otoole: OSeMOSYS Tools for Energy Work" |
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.