Skip to content

Commit 3fd0860

Browse files
Prepare 1.0.2 release (#140)
Co-authored-by: pyansys-ci-bot <[email protected]>
1 parent af2192e commit 3fd0860

File tree

14 files changed

+35
-7
lines changed

14 files changed

+35
-7
lines changed

.github/workflows/server_checks.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,12 +162,13 @@ jobs:
162162
name: Check if there are active workflow runs
163163
needs: doc-build
164164
uses: ansys/pygranta/.github/workflows/check-concurrent-workflows.yml@main
165+
if: ${{ !cancelled() }}
165166

166167
stop-vm:
167168
name: "Stop Azure VM"
168169
runs-on: ubuntu-latest
169170
needs: check-workflow-runs
170-
if: always() && !cancelled() && !(inputs.skip-vm-management) && needs.check-workflow-runs.outputs.active-runs != 'true'
171+
if: ${{ !cancelled() && !(inputs.skip-vm-management) && needs.check-workflow-runs.outputs.active-runs != 'true' }}
171172
steps:
172173
- uses: azure/CLI@v2
173174
with:

README.rst

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,12 +70,16 @@ To install a release compatible with a specific version of Granta MI, install th
7070
7171
pip install pygranta==2024.2.0
7272
73-
Alternatively, to install the latest release from the `PyGranta JobQueue repository <https://github.com/ansys/grantami-jobqueue>`_,
73+
To see which individual PyGranta package versions are installed with each version of the PyGranta metapackage, consult
74+
the `Package versions <https://grantami.docs.pyansys.com/version/dev/package_versions.html>`_ section of the PyGranta
75+
documentation.
76+
77+
Alternatively, to install the latest development version from the `PyGranta JobQueue repository <https://github.com/ansys/grantami-jobqueue>`_,
7478
run this command:
7579

7680
.. code::
7781
78-
pip install git:https://github.com/ansys/grantami-jobqueue.git
82+
pip install git+https://github.com/ansys/grantami-jobqueue.git
7983
8084
8185
To install a local *development* version with Git and Poetry, run these commands:
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Fix installation example for git dependency
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Add link to supported authentication schemes
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Add link to PyGranta version compatibility documentation

doc/changelog.d/137.maintenance.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Improve VM management in CI

doc/changelog.d/139.fixed.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Handle lack of job specific outputs

doc/changelog.d/140.fixed.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Prepare 1.0.2 release

doc/source/conf.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,12 @@
5252
"nbsphinx",
5353
"sphinx_design",
5454
"enum_tools.autoenum",
55+
"sphinx.ext.extlinks",
5556
]
5657

58+
extlinks = {
59+
"OpenAPI-Common": ("https://openapi.docs.pyansys.com/version/stable/%s", None),
60+
}
5761

5862
# numpydoc configuration
5963
numpydoc_show_class_members = False

doc/source/getting_started/index.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ To verify that you can start the PyGranta JobQueue client from Python, run this
3131
3232
<JobQueueApiClient url: http://my.server.name/mi_servicelayer>
3333
34+
This example uses Windows-based autologon authentication. For all supported authentication schemes, see the :OpenAPI-Common:`OpenAPI-Common documentation <index.html#authentication-schemes>`.
35+
3436
If you see a response from the server, you have successfully installed PyGranta JobQueue and
3537
can start using the JobQueue client. For more examples, see :ref:`ref_grantami_jobqueue_examples`.
3638
For comprehensive information on the API, see :ref:`ref_grantami_jobqueue_api_reference`.

0 commit comments

Comments
 (0)