-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix: Format toml * Changes from PyAnsys Tech Review - Format pyproject.toml with proper indents and spaces. - Add test and doc dependencies. - Lock doc and test dependencies, add dependency versions where missing. - Add CONTRIBUTING.md file. * fix tech review isssues * Move test_examples to test folder * fix comments * revert necessary unused parameters * Add smoke tests * Add code style and doc style check * rework testing in CICD * update pre-commit * Update minimum python version * fix: vale issues * test python version * test updating powershell * test update powershell * remove python setup * fix bug * Add license headers action * test pytests folder * remove examples execution, downgrade python setup * fix bug * test venv removal * use ansys action for building docs * revert changes * add release actions * Simplify doc building * rework cicd * Get version from toml * Add missing comments * Rename job * fix version in conf.py * fix bug in doc building * remove potentially problematic lines * test revert * add python setup * test invert install * use bat instead of ps1 * fix make pdf * remove pdf build and upload * Add PDF building again * force rerun * force rerun * fix comments * add favicon * format cicd * fix: Add landing page instead of using readme * fix: Add sphinx_design extension * fix: reorder CICD * fix: icon * fix: Documentation linking in examples * fix: Add missing underscore * Force workflows * force workflows * fix: Add proper name to pdf * fix: README title * ferat: add start year to license headers * fix;: change build system to flit * feat: Add badges * feat: Add year to licenses * fix: Add proper links in badges * feat: Add contributors file * feat: Implement and comment out codecov step * feat: Add autoapi config * fix: Add missing reference to API * fix: Add autoAPI extension * feat: Add card for API reference * feat: Add API to gitignore * feat: Add authors file, remove ansys-internal to ansys * feat: updating contributors (after PR is merged) * Update src/ansys/rocky/core/client.py Co-authored-by: Igor T. Ghisi <[email protected]> * fix: Issue with suggestion --------- Co-authored-by: Igor T. Ghisi <[email protected]> Co-authored-by: Roberto Pastor Muela <[email protected]>
- Loading branch information
1 parent
def9bd8
commit 287e97b
Showing
31 changed files
with
859 additions
and
151 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,34 @@ | ||
|
||
version: 2 | ||
updates: | ||
- package-ecosystem: "pip" # See documentation for possible values | ||
directory: "/" | ||
insecure-external-code-execution: allow | ||
schedule: | ||
interval: "weekly" | ||
labels: | ||
- "maintenance" | ||
- "dependencies" | ||
groups: | ||
general-dependencies: | ||
patterns: | ||
- "*" | ||
exclude-patterns: | ||
- "*sphinx*" | ||
- "numpydoc" | ||
- "pyvista*" | ||
- "pytest*" | ||
test-dependencies: | ||
patterns: | ||
- "pytest*" | ||
doc-dependencies: | ||
patterns: | ||
- "*sphinx*" | ||
- "numpydoc" | ||
pyvista: | ||
patterns: | ||
- "pyvista*" | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" |
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,11 @@ | ||
documentation: | ||
- changed-files: | ||
- any-glob-to-any-file: ['doc/source/**/*', 'README.md'] | ||
|
||
maintenance: | ||
- changed-files: | ||
- any-glob-to-any-file: ['.github/**/*', '.flake8', 'pyproject.toml', 'tox.ini', '.pre-commit-config.yaml'] | ||
|
||
testing: | ||
- changed-files: | ||
- any-glob-to-any-file: ['tests/*'] |
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: bug | ||
description: Something isn't working | ||
color: d42a34 | ||
|
||
- name: dependencies | ||
description: Related with project dependencies | ||
color: ffc0cb | ||
|
||
- name: documentation | ||
description: Improvements or additions to documentation | ||
color: 0677ba | ||
|
||
- name: enhancement | ||
description: New features or code improvements | ||
color: FFD827 | ||
|
||
- name: good first issue | ||
description: Easy to solve for newcomers | ||
color: 62ca50 | ||
|
||
- name: maintenance | ||
description: Package and maintenance related | ||
color: f78c37 | ||
|
||
- name: release | ||
description: Anything related to an incoming release | ||
color: ffffff | ||
|
||
- name: testing | ||
description: Anything related to tests | ||
color: BFE4D6 | ||
|
||
- name: security | ||
description: Anything related to security advisories | ||
color: FF0000 |
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
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,33 +1,40 @@ | ||
repos: | ||
|
||
- repo: https://github.com/psf/black | ||
rev: 23.1.0 | ||
rev: 23.12.1 | ||
hooks: | ||
- id: black | ||
|
||
- repo: https://github.com/pycqa/isort | ||
rev: 5.12.0 | ||
rev: 5.13.2 | ||
hooks: | ||
- id: isort | ||
|
||
- repo: https://github.com/PyCQA/flake8 | ||
rev: 6.0.0 | ||
rev: 7.0.0 | ||
hooks: | ||
- id: flake8 | ||
|
||
- repo: https://github.com/codespell-project/codespell | ||
rev: v2.2.4 | ||
rev: v2.2.6 | ||
hooks: | ||
- id: codespell | ||
|
||
- repo: https://github.com/pre-commit/pre-commit-hooks | ||
rev: v4.4.0 | ||
rev: v4.5.0 | ||
hooks: | ||
- id: check-merge-conflict | ||
- id: requirements-txt-fixer | ||
- id: trailing-whitespace | ||
|
||
- repo: https://github.com/python-jsonschema/check-jsonschema | ||
rev: 0.22.0 | ||
rev: 0.27.3 | ||
hooks: | ||
- id: check-github-workflows | ||
|
||
- repo: https://github.com/ansys/pre-commit-hooks | ||
rev: v0.2.8 | ||
hooks: | ||
- id: add-license-headers | ||
args: | ||
- --start_year=2023 |
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,12 @@ | ||
# This is the list of PyRocky's significant contributors. | ||
# | ||
# This file does not necessarily list everyone who has contributed code. | ||
# | ||
# For contributions made under a Corporate CLA, the organization is | ||
# added to this file. | ||
# | ||
# If you have contributed to the repository and wish to be added to this file | ||
# please submit a request. | ||
# | ||
# | ||
ANSYS, Inc. |
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,5 @@ | ||
# Contributing | ||
|
||
For contributing to this project, please refer to the [PyAnsys Developer's Guide]. | ||
|
||
[PyAnsys Developer's Guide]: https://dev.docs.pyansys.com/how-to/contributing.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# Contributors | ||
|
||
## Project Lead | ||
|
||
* [Igor Ghisi](https://github.com/igortg) | ||
|
||
## Individual Contributors | ||
|
||
* [Alejandro Fernández Luces](https://github.com/AlejandroFernandezLuces) | ||
* [Gustavo Corrêa Martins](https://github.com/gcmartins) | ||
* [Jorge Martínez Garrido](https://github.com/jorgepiloto) | ||
* [Roberto Pastor Muela](https://github.com/RobPasMue) |
Oops, something went wrong.