-
Notifications
You must be signed in to change notification settings - Fork 9
Add soiling endpoints to SDK #50
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
36 commits
Select commit
Hold shift + click to select a range
40f90a5
Markdown file formatting
GF-D6 8448ffb
Remove changelog file
GF-D6 01a34d5
Make a response instance callable to fix self.response(...) calls lin…
GF-D6 f94fc6f
Fix self.data unbounded linting error
GF-D6 73698c7
Add soiling endpoint urls
GF-D6 cfaced8
Fix tuple return type hinting
GF-D6 71ff132
Get rid of bare return linting error
GF-D6 e385084
Bump base python required version to 3.8
GF-D6 712c928
uvfiy
GF-D6 b4cd7b4
Add build dist dir to gitignore
GF-D6 9c5075a
isort and black
GF-D6 154d84b
uvfiy github build action
GF-D6 c6060d4
Update rooftop pv power tmy test
GF-D6 c692de8
Uvfity test action
GF-D6 5855deb
Add soiling methods to live historic and forecast
GF-D6 fb8bdc8
Add tests for kimber and hsu
GF-D6 260c1b9
fix rooftop pv power test
GF-D6 8ca69a4
Update os matrix
GF-D6 81a3e63
Remove typing.Self as it is not in python3.8
GF-D6 b4e22be
Add pytest settings for vscode
GF-D6 d54e211
Uvfiy docs workflow
GF-D6 6f0074c
Fix uv sync command
GF-D6 8a3466e
Remove uv.lock and .python-version and prevent git tracking them
GF-D6 61a9673
Revert 204 guard logic
GF-D6 7eb796b
Split out dev only dependency groups from project optional dependency…
GF-D6 d0b5352
Support macos-14 as oldest version in tests
GF-D6 7692675
Added back and updated changelog
GF-D6 040bb94
Remove manual_washdates as a named parameter
GF-D6 e57b12f
Revert typing experiments
GF-D6 31d8e03
Update contributing instructions
GF-D6 adf90dc
Clean up request parameters and doc strings
GF-D6 7f09ddf
Add to_pandas tests
GF-D6 48c9170
Update test workflow command
GF-D6 2be41be
Update docs workflow command
GF-D6 28c0fd5
Add missing required format request parameter
GF-D6 dd20e4d
Update mkdocstrings version to fix docs worksflow
GF-D6 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,25 +1,33 @@ | ||
| name: Docs | ||
|
|
||
| on: | ||
| push: | ||
| branches: | ||
| - master | ||
| - master | ||
| - main | ||
|
|
||
| permissions: | ||
| contents: write | ||
|
|
||
| jobs: | ||
| deploy: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: actions/checkout@v3 | ||
| - uses: actions/setup-python@v4 | ||
| - uses: actions/checkout@v4 | ||
|
|
||
| - uses: astral-sh/setup-uv@v4 | ||
| with: | ||
| python-version: 3.x | ||
| - run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV | ||
| - uses: actions/cache@v3 | ||
| python-version: "3.11" | ||
|
|
||
| - run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV | ||
|
|
||
| - uses: actions/cache@v4 | ||
| with: | ||
| key: mkdocs-material-${{ env.cache_id }} | ||
| path: .cache | ||
| key: uv-mkdocs-material-${{ env.cache_id }} | ||
| path: ~/.cache/uv | ||
| restore-keys: | | ||
| mkdocs-material- | ||
| - run: pip install .[docs] | ||
| - run: mkdocs gh-deploy --force | ||
| uv-mkdocs-material- | ||
|
|
||
| - run: uv sync --group docs | ||
|
|
||
| - run: uv run mkdocs gh-deploy --force |
This file contains hidden or 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 hidden or 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 hidden or 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,4 +1,7 @@ | ||
| public | ||
| dist | ||
| uv.lock | ||
| .python-version | ||
| .idea | ||
| *.ipynb_checkpoints | ||
| .pytest_cache | ||
|
|
||
This file contains hidden or 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,5 @@ | ||
| { | ||
| "python.testing.pytestArgs": ["tests"], | ||
| "python.testing.unittestEnabled": false, | ||
| "python.testing.pytestEnabled": true | ||
| } |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.