-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix the probme when alpha is too low the result is incorrect. * ignore slice type limit (int) * Fix ruff syntax * add pyright config and type ignore * Fix type in rcimodel and remove responsibility of scale from Indexsnapshot * Remove floating point error in intensity. * Fix tox (mypy) * IndexedSnapshop accept nan value inside with corrsponding tests. * Tests for input data with NAN values. * Quick_start and some features in blrprx model. * Delete useless file. * Fix some typing and linting for mypy and ruff. * Fix tox and use poetry correctly. Minor text change in quick_start.py. * Testing Github workflow doc generation. * Fixing python 3.10 treated as 3.1. Now using 3.11. * Publish the 1.0.0 pyblrp. Change theme of doc. * Fix doc theme package name. * Fix the READMD url and image trasparency. * Fix s some requirements.txt files and tox.ini settings for mypy and ruff using poetry export command. * Remove hash from requirements.txt requirements-dev.txt and docs/requirements-doc.txt * Only run mypy and ruff on ubuntu-latest. * Fix github action envs. * Fix github action envs. * Fix github action.: * Fix github action. * Remove doc building from tox.ini.
- Loading branch information
Showing
23 changed files
with
1,632 additions
and
149,504 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,35 @@ | ||
name: Deploy docs | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
- dev1 | ||
|
||
jobs: | ||
build-and-deploy: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v2 | ||
|
||
- name: Setup up Python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: 3.11 | ||
|
||
- name: Install dependencies | ||
run: | | ||
pip install -r docs/requirements-doc.txt | ||
- name: Build docs | ||
run: | | ||
sphinx-build -M html docs/source docs/build | ||
- name: Deploy to GitHub Pages | ||
if: github.ref == 'refs/heads/dev1' | ||
uses: peaceiris/actions-gh-pages@v3 | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
publish_dir: docs/build/html |
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,2 +1,30 @@ | ||
# Requirements for building documentation | ||
furo | ||
accessible-pygments==0.0.5 ; python_version >= "3.9" and python_version < "4.0" | ||
alabaster==0.7.16 ; python_version >= "3.9" and python_version < "4.0" | ||
babel==2.15.0 ; python_version >= "3.9" and python_version < "4.0" | ||
beautifulsoup4==4.12.3 ; python_version >= "3.9" and python_version < "4.0" | ||
certifi==2024.6.2 ; python_version >= "3.9" and python_version < "4.0" | ||
charset-normalizer==3.3.2 ; python_version >= "3.9" and python_version < "4.0" | ||
colorama==0.4.6 ; python_version >= "3.9" and python_version < "4.0" and sys_platform == "win32" | ||
docutils==0.21.2 ; python_version >= "3.9" and python_version < "4.0" | ||
idna==3.7 ; python_version >= "3.9" and python_version < "4.0" | ||
imagesize==1.4.1 ; python_version >= "3.9" and python_version < "4.0" | ||
importlib-metadata==8.0.0 ; python_version >= "3.9" and python_version < "3.10" | ||
jinja2==3.1.4 ; python_version >= "3.9" and python_version < "4.0" | ||
markupsafe==2.1.5 ; python_version >= "3.9" and python_version < "4.0" | ||
packaging==23.2 ; python_version >= "3.9" and python_version < "4.0" | ||
pydata-sphinx-theme==0.15.4 ; python_version >= "3.9" and python_version < "4.0" | ||
pygments==2.18.0 ; python_version >= "3.9" and python_version < "4.0" | ||
requests==2.32.3 ; python_version >= "3.9" and python_version < "4.0" | ||
snowballstemmer==2.2.0 ; python_version >= "3.9" and python_version < "4.0" | ||
soupsieve==2.5 ; python_version >= "3.9" and python_version < "4.0" | ||
sphinx==7.3.7 ; python_version >= "3.9" and python_version < "4.0" | ||
sphinxcontrib-applehelp==1.0.8 ; python_version >= "3.9" and python_version < "4.0" | ||
sphinxcontrib-devhelp==1.0.6 ; python_version >= "3.9" and python_version < "4.0" | ||
sphinxcontrib-htmlhelp==2.0.5 ; python_version >= "3.9" and python_version < "4.0" | ||
sphinxcontrib-jsmath==1.0.1 ; python_version >= "3.9" and python_version < "4.0" | ||
sphinxcontrib-qthelp==1.0.7 ; python_version >= "3.9" and python_version < "4.0" | ||
sphinxcontrib-serializinghtml==1.1.10 ; python_version >= "3.9" and python_version < "4.0" | ||
tomli==2.0.1 ; python_version >= "3.9" and python_version < "3.11" | ||
typing-extensions==4.8.0 ; python_version >= "3.9" and python_version < "4.0" | ||
urllib3==2.2.2 ; python_version >= "3.9" and python_version < "4.0" | ||
zipp==3.19.2 ; python_version >= "3.9" and python_version < "3.10" |
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 was deleted.
Oops, something went wrong.
Binary file not shown.
Oops, something went wrong.