-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #241 from ansys/maint/udpate-from-main
Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: Andy Grigg <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Doug Addy <[email protected]>
- Loading branch information
Showing
18 changed files
with
317 additions
and
116 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 |
---|---|---|
|
@@ -15,3 +15,4 @@ updates: | |
interval: "daily" | ||
labels: | ||
- "maintenance" | ||
- "dependencies" |
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,9 +1,19 @@ | ||
documentation: | ||
- changed-files: | ||
- any-glob-to-any-file: ['doc/source/**/*', 'examples/**/*'] | ||
- head-branch: ['^doc/', '^docs/'] | ||
|
||
maintenance: | ||
- changed-files: | ||
- any-glob-to-any-file: ['.github/**/*', '.flake8', 'pyproject.toml'] | ||
- head-branch: ['^maint/', '^ci/', '^no-ci/'] | ||
|
||
enhancement: | ||
- head-branch: ['^feat/'] | ||
|
||
bug: | ||
- head-branch: ['^fix/', '^patch/'] | ||
|
||
dependencies: | ||
- changed-files: | ||
- any-glob-to-any-file: ['poetry.lock'] |
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
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
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 |
---|---|---|
|
@@ -26,3 +26,5 @@ Vocab = ANSYS | |
|
||
# Apply the following styles | ||
BasedOnStyles = Vale, Google | ||
|
||
Vale.Terms = NO |
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,4 +1,4 @@ | ||
* | ||
!Vocab | ||
!Vocab/** | ||
!config | ||
!config/** | ||
!.gitignore |
File renamed without changes.
File renamed without changes.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -5,7 +5,7 @@ build-backend = "poetry.core.masonry.api" | |
[tool.poetry] | ||
# Check https://python-poetry.org/docs/pyproject/ for all available sections | ||
name = "ansys-grantami-recordlists" | ||
version = "1.2.0a0" | ||
version = "1.2.0b0" | ||
description = "A python wrapper for the Granta MI RecordLists API" | ||
license = "MIT" | ||
authors = ["ANSYS, Inc. <[email protected]>"] | ||
|
@@ -14,7 +14,7 @@ readme = "README.rst" | |
repository = "https://github.com/ansys/grantami-recordlists" | ||
documentation = "https://recordlists.grantami.docs.pyansys.com" | ||
classifiers = [ | ||
"Development Status :: 3 - Alpha", | ||
"Development Status :: 4 - Beta", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
|
@@ -30,7 +30,7 @@ packages = [ | |
[tool.poetry.dependencies] | ||
python = ">=3.9,<4.0" | ||
ansys-openapi-common = "^2.0.0" | ||
ansys-grantami-serverapi-openapi = "3.0.0a3" | ||
ansys-grantami-serverapi-openapi = "3.0.0b0" | ||
requests = "^2.26" | ||
|
||
# Optional documentation dependencies | ||
|
Oops, something went wrong.