-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* move driver to cmip6 module * break out utils into cmip6 utils * complete cmip6 module transfer * migrate to tox and update ci workflow * run black * move to src dir * black on tests * run ci on dev also * update setuptools * try to fix run on branches * use importlib to get version * try to fix ci again * master to main in ci-cd-workflows * simplify publication ci * remove old workflows * add convenience env * try to fix lint issues * try to fix test imports * run ruff on tests * run ruff on doc * try to update tox test env * add ipopt marker * add nbconvert * remove tutorial tests which are now included in doc builds
- Loading branch information
Showing
31 changed files
with
1,255 additions
and
1,193 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,31 @@ | ||
name: Publish Python 🐍 distributions 📦 to (Test)PyPI | ||
|
||
on: | ||
push: | ||
tags: | ||
- 'v*' | ||
|
||
jobs: | ||
build-n-publish: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: '3.x' | ||
|
||
- name: Install tox | ||
run: | | ||
python -m pip install tox | ||
- name: Build package distribution | ||
run: | | ||
tox -e build | ||
- name: Publish distribution 📦 to PyPI | ||
uses: pypa/gh-action-pypi-publish@release/v1 | ||
with: | ||
password: ${{ secrets.PYPI_TOKEN }} |
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.