-
Notifications
You must be signed in to change notification settings - Fork 0
Technical review #273
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
Technical review #273
Changes from all commits
Commits
Show all changes
66 commits
Select commit
Hold shift + click to select a range
8a48a0d
make ANSYS, Inc. the project maintainer
klmcadams 088d4db
add contact/support section to readme
klmcadams 051cdd8
update and add authors, code of conduct, contributing, contributors, …
klmcadams ea09e33
changelog updates
klmcadams 72ec7cc
make min python version 3.9
klmcadams 6316e11
Merge branch 'main' into technical-review
klmcadams d8f42d9
use pyproject.toml only, update workflow, and move ansys/ into src/ d…
klmcadams 38b8454
merge conflicts
klmcadams b670a28
remove requirements/ references in build.py
klmcadams 133f415
add wheelhouse build to workflow and comment out wheelhouse line in b…
klmcadams fed5cdf
change package name to ansys-pyhps
klmcadams c09906c
add allowlist_externals to tox.ini file
klmcadams c3bcf70
replace requirements txt files
klmcadams 235c15d
revert value to None
klmcadams 55143c1
merge license headers from main
klmcadams 42e5795
update workflow to use actions
klmcadams d5341ed
cd into pyhps dir for package lib
klmcadams a106a9b
change build.py to save_build.py
klmcadams ef7ad58
use pyproject.toml's version, delete build.py, and update workflow to…
klmcadams 55bdc0d
remove obsolete vars & install repo for lib version
klmcadams aadf06d
update license header hook to 0.2.8
klmcadams 1bb7c20
update artifact name for pre-release
klmcadams 87be642
add doc-style check, generate pdf for docs, and upload dev & stable docs
klmcadams a28ae4c
Merge branch 'main' into technical-review
klmcadams 5fdd5d7
update docs for doc check
klmcadams c389fc5
doc style updates
klmcadams 2924e25
add latexmk installs
klmcadams 57b8fa2
matrix tests
klmcadams 59674f1
dictionary for tests
klmcadams 284dd7b
remove windows from tests
klmcadams 92d53a7
update urls and comment out python3.12 for now
klmcadams c754d76
keycloak dep dependent on python version & url updates
klmcadams abf0979
add missing comma
klmcadams be5fc3e
add quotes around python version
klmcadams adb9915
upload coverage results
klmcadams 900d2eb
change python-keycloak to original dep
klmcadams 07079a6
add python3.12 to workflow
klmcadams 0ac8795
remove filterwarnings
klmcadams 73a7a6f
add setuptools for python 3.12
klmcadams ceedd07
add quotes around python version
klmcadams fa15119
test updates
klmcadams 6ae2e02
show missing coverage in pytest
klmcadams e92b736
change coverage-html upload
klmcadams 94bb563
change src/ansys/hps/client to src/ansys/hps/core
klmcadams edc102a
use ansys_favicon
klmcadams b71e914
make documentation run for main python version
klmcadams 437d60c
revert back to ansys-hps-client
klmcadams 0e5fe06
remove last core ref
klmcadams e5c3018
merge Kathy's doc changes into branch
klmcadams 824df08
add sphinx-autoapi
klmcadams e4e72dc
update dependabot
klmcadams b959543
change how pytest runs
klmcadams bc2802e
add cov-append arg to end of coverage run
klmcadams 0f98e0e
update conf.py for autoapi
klmcadams 1e7675d
add information for api references
klmcadams 9538114
updates to conf.py
klmcadams e39fda1
add more docstrings and update sphinx docs
klmcadams b17bf96
remove sphinx tabs
klmcadams d23fded
make navigation depth 5 to show all classes
klmcadams c867e42
remove added docstrings on autogen code files
klmcadams 5cef4b0
workflow & version updates
klmcadams d4ae342
main python version 3.10 to match workflow settings
klmcadams 7f0f0c9
fix: smoke tests should run all Python versions
RobPasMue 482f189
fix: dependent stages
RobPasMue ea03310
fix: dependent stage
RobPasMue 164b90e
fix: dependent stages
RobPasMue 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,10 +1,17 @@ | ||
| version: 2 | ||
| updates: | ||
| - package-ecosystem: "pip" # See documentation for possible values | ||
| directory: "/requirements" # Location of package manifests | ||
| insecure-external-code-execution: allow | ||
| directory: "/" # Location of package manifests | ||
| schedule: | ||
| interval: "daily" | ||
| interval: "weekly" | ||
| labels: | ||
| - "maintenance" | ||
| - "dependencies" | ||
|
|
||
| - package-ecosystem: "github-actions" | ||
| directory: "/" | ||
| schedule: | ||
| interval: "weekly" | ||
| labels: | ||
| - "maintenance" | ||
| - "dependencies" |
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,8 +1,9 @@ | ||
| documentation: | ||
| - doc/source/**/* | ||
| - changed-files: | ||
| - any-glob-to-any-file: ['doc/source/**/*'] | ||
| maintenance: | ||
| - .github/**/* | ||
| - .flake8 | ||
| - pyproject.toml | ||
| - changed-files: | ||
| - any-glob-to-any-file: ['.github/**/*', '.flake8', 'pyproject.toml'] | ||
| dependencies: | ||
| - requirements/* | ||
| - changed-files: | ||
| - any-glob-to-any-file: ['pyproject.toml'] |
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.