Skip to content

Commit

Permalink
Make docs (#30)
Browse files Browse the repository at this point in the history
* 🎨  Add `build docs` in github action
  • Loading branch information
arafune authored Jul 23, 2024
1 parent a6c61a2 commit 1629f22
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 5 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- name: Install libhdf5-dev by apt
run: |
sudo apt -y update
sudo apt -y install libhdf5-dev libnetcdf-dev
sudo apt -y install libhdf5-dev libnetcdf-dev make pandoc
- name: Rye activation
run: |
Expand All @@ -41,6 +41,12 @@ jobs:
- name: test with rye
run: rye run pytest -vv --color=yes --cov=./ --cov-report=xml

- name: Build docs
run: |
source .venv/bin/activate
cd docs
make html
- uses: codecov/codecov-action@v4
with:
fail_ci_if_error: true # optional (default = false)
Expand Down
4 changes: 2 additions & 2 deletions docs/source/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ incompatibilities between versions, while minor (-.X.-) numbers
primarily indicate new features and documentation.

4.0.1 (2024-07-21)

^^^^^^^^^^^^^^^^^^

Changed
~~~~~~~
Expand All @@ -30,7 +30,7 @@ The name change


4.0.0 (2024-07-12)
^^^^^^^^^^^^^^^^^^^
^^^^^^^^^^^^^^^^^^

New
~~~
Expand Down
4 changes: 2 additions & 2 deletions docs/source/notebooks/custom-dot-t-functionality.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -1943,9 +1943,9 @@
],
"metadata": {
"kernelspec": {
"display_name": "py311",
"display_name": "Python 3 (ipykernel)",
"language": "python",
"name": "py311"
"name": "python3"
},
"language_info": {
"codemirror_mode": {
Expand Down
1 change: 1 addition & 0 deletions src/arpes/analysis/filters.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
"boxcar_filter_arr",
"gaussian_filter",
"gaussian_filter_arr",
"savitzky_golay_filter",
)


Expand Down

0 comments on commit 1629f22

Please sign in to comment.