Skip to content

Commit

Permalink
Fortran version (#20)
Browse files Browse the repository at this point in the history
* don't build wheel

* add setuptools_scm to docs requirements
  • Loading branch information
jmyrberg authored Jul 23, 2022
1 parent 2bb122b commit 80bc3e9
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
pip install -e . -vv
pip install -e .
pip install -r requirements-dev.txt
- name: Test with pytest
run: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Test, draft release and upload distribution to Test PyPi
name: CICD

on:
push:
Expand Down Expand Up @@ -37,7 +37,7 @@ jobs:
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
pip install -e . -vv
pip install -e .
pip install -r requirements-dev.txt
- name: Test with pytest
run: |
Expand All @@ -64,5 +64,5 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install build twine
python -m build --sdist --wheel --outdir dist/ .
python -m build --sdist --outdir dist/ .
twine upload -r testpypi dist/*
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install build twine
python -m build --sdist --wheel --outdir dist/ .
python -m build --sdist --outdir dist/ .
twine upload dist/*
6 changes: 4 additions & 2 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
recursive-include *.f
exclude .github
recursive-include mknapsack *.f
prune .github
prune scripts
exclude .gitignore .readthedocs.yml
Binary file added docs/cover.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
myst-parser==0.18.0
piccolo-theme==0.11.1
setuptools_scm==7.0.5
sphinx==5.0.2

0 comments on commit 80bc3e9

Please sign in to comment.