Skip to content

Commit

Permalink
Pull and merge from main.
Browse files Browse the repository at this point in the history
  • Loading branch information
ansmedson-ext committed Dec 10, 2024
2 parents b39f5d6 + 972b169 commit 0985151
Show file tree
Hide file tree
Showing 5 changed files with 62 additions and 4 deletions.
1 change: 0 additions & 1 deletion doc/changelog.d/467.fixed.md

This file was deleted.

1 change: 1 addition & 0 deletions doc/changelog.d/471.documentation.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
chore: update CHANGELOG for v0.8.1
58 changes: 58 additions & 0 deletions doc/source/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,63 @@ This document contains the release notes for the project.
.. towncrier release notes start
`0.8.1 <https://github.com/ansys/pysherlock/releases/tag/v0.8.1>`_ - 2024-12-10
===============================================================================

Fixed
^^^^^

- fix: conf.py issue `#467 <https://github.com/ansys/pysherlock/pull/467>`_
- fix: import statements `#470 <https://github.com/ansys/pysherlock/pull/470>`_


Documentation
^^^^^^^^^^^^^

- MAINT: Bump pytest from 8.3.3 to 8.3.4 `#459 <https://github.com/ansys/pysherlock/pull/459>`_
- MAINT: Bump ansys-sphinx-theme from 1.2.1 to 1.2.3 `#463 <https://github.com/ansys/pysherlock/pull/463>`_

`0.8.0 <https://github.com/ansys/pysherlock/releases/tag/v0.8.0>`_ - 2024-12-10
===============================================================================

Fixed
^^^^^

- fix: conf.py issue `#467 <https://github.com/ansys/pysherlock/pull/467>`_

`0.8.0 <https://github.com/ansys/pysherlock/releases/tag/v0.8.0>`_ - 2024-12-09
===============================================================================

Added
^^^^^

- feat: launching a specific version of Sherlock `#431 <https://github.com/ansys/pysherlock/pull/431>`_


Fixed
^^^^^

- fix: proper AUTHORS file `#438 <https://github.com/ansys/pysherlock/pull/438>`_


Documentation
^^^^^^^^^^^^^

- MAINT: add action changelog and changelog.rst for release notes `#426 <https://github.com/ansys/pysherlock/pull/426>`_
- Update unit test for HV strain map analysis. `#428 <https://github.com/ansys/pysherlock/pull/428>`_
- MAINT: Bump ansys-sphinx-theme from 1.1.6 to 1.1.7 `#429 <https://github.com/ansys/pysherlock/pull/429>`_
- MAINT: Bump grpcio from 1.67.0 to 1.67.1 `#433 <https://github.com/ansys/pysherlock/pull/433>`_
- MAINT: Bump pytest-cov from 5.0.0 to 6.0.0 `#434 <https://github.com/ansys/pysherlock/pull/434>`_
- MAINT: Bump ansys-sphinx-theme from 1.1.7 to 1.2.0 `#436 <https://github.com/ansys/pysherlock/pull/436>`_
- feat: Adding version check to all API methods `#440 <https://github.com/ansys/pysherlock/pull/440>`_
- feat: Keith/potting region update `#441 <https://github.com/ansys/pysherlock/pull/441>`_
- fix: Analysis.update_harmonic_vibe_props(): add support for setting model source and strain map natural frequency `#442 <https://github.com/ansys/pysherlock/pull/442>`_
- docs: update the pull request template `#446 <https://github.com/ansys/pysherlock/pull/446>`_
- feat:Keith/copy delete potting region `#448 <https://github.com/ansys/pysherlock/pull/448>`_
- MAINT: Bump ansys-sphinx-theme from 1.2.0 to 1.2.1 `#449 <https://github.com/ansys/pysherlock/pull/449>`_
- doc: project logo `#450 <https://github.com/ansys/pysherlock/pull/450>`_
- MAINT: Bump codecov/codecov-action from 4 to 5 `#451 <https://github.com/ansys/pysherlock/pull/451>`_
- feat: add type hints `#454 <https://github.com/ansys/pysherlock/pull/454>`_
- feat: increment version of ansys-api-sherlock to 0.1.35 `#461 <https://github.com/ansys/pysherlock/pull/461>`_

.. vale on
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ dependencies = [
tests = [
"grpcio==1.67.1",
"protobuf==5.28.0",
"pytest==8.3.3",
"pytest==8.3.4",
"pytest-cov==6.0.0",
]
doc = [
"ansys-sphinx-theme==1.2.1",
"ansys-sphinx-theme==1.2.3",
"numpydoc==1.8.0",
"Sphinx==8.1.3", # BLOCKED BY sphinx-design - Cannot upgrade to Sphinx 7 for now
"sphinx-copybutton==0.5.2",
Expand Down
2 changes: 1 addition & 1 deletion src/ansys/sherlock/core/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
import SherlockModelService_pb2_grpc
except ModuleNotFoundError:
from ansys.api.sherlock.v0 import SherlockModelService_pb2
from ansys.api.sherlock.v0.SherlockModelService_pb2 import MeshType, TraceOutputType
from ansys.api.sherlock.v0 import SherlockModelService_pb2_grpc
from SherlockModelService_pb2 import MeshType, TraceOutputType

from ansys.sherlock.core import LOG
from ansys.sherlock.core.errors import (
Expand Down

0 comments on commit 0985151

Please sign in to comment.