Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jun 2, 2025

Bumps the dependencies group with 4 updates: ansys-mechanical-core, mypy, ansys-sphinx-theme and hypothesis.

Updates ansys-mechanical-core from 0.11.16 to 0.11.18

Release notes

Sourced from ansys-mechanical-core's releases.

v0.11.18

0.11.18 - June 01, 2025

Maintenance

v0.11.17

0.11.17 - May 28, 2025

Fixed

Maintenance

... (truncated)

Commits
  • cecea7c chore: updating CHANGELOG for v0.11.18
  • f45ac9e bump version 0.11.18
  • e09278d Merge branch 'main' into release/0.11
  • 19db37c chore: Update the branch name to main (#1178)
  • 19db4e2 chore: update CHANGELOG for v0.11.17 (#1177)
  • 06557e2 chore: updating CHANGELOG for v0.11.17
  • ee476f0 bump version to 0.11.17
  • a88e0bd fix: Add self._messages to BUILDING_GALLERY section in app initialization (...
  • 0e72d05 FIX: Embedding message get test (#1174)
  • f14a38d CHORE: Bump usd-core from 25.5 to 25.5.1 (#1176)
  • Additional commits viewable in compare view

Updates mypy from 1.15.0 to 1.16.0

Changelog

Sourced from mypy's changelog.

Mypy Release Notes

Next Release

Mypy 1.16

We’ve just uploaded mypy 1.16 to the Python Package Index (PyPI). Mypy is a static type checker for Python. This release includes new features and bug fixes. You can install it as follows:

python3 -m pip install -U mypy

You can read the full documentation for this release on Read the Docs.

Different Property Getter and Setter Types

Mypy now supports using different types for a property getter and setter:

class A:
    _value: int
@property
def foo(self) -> int:
    return self._value
@foo.setter
def foo(self, x: str | int) -> None:
try:
self._value = int(x)
except ValueError:
raise Exception(f"'{x}' is not a valid value for 'foo'")

This was contributed by Ivan Levkivskyi (PR 18510).

Flexible Variable Redefinitions (Experimental)

Mypy now allows unannotated variables to be freely redefined with different types when using the experimental --allow-redefinition-new flag. You will also need to enable --local-partial-types. Mypy will now infer a union type when different types are assigned to a variable:

# mypy: allow-redefinition-new, local-partial-types
def f(n: int, b: bool) -> int | str:
if b:
x = n
else:
</tr></table>

... (truncated)

Commits
  • 9e72e96 Update version to 1.16.0
  • 8fe719f Add changelog for 1.16 (#19138)
  • 2a036e7 Revert "Infer correct types with overloads of Type[Guard | Is] (#19161)
  • b6da4fc Allow enum members to have type objects as values (#19160)
  • 334469f [mypyc] Improve documentation of native and non-native classes (#19154)
  • a499d9f Document --allow-redefinition-new (#19153)
  • 96525a2 Merge commit '9e45dadcf6d8dbab36f83d9df94a706c0b4f9207' into release-1.16
  • 9e45dad Clear more data in TypeChecker.reset() instead of asserting (#19087)
  • 772cd0c Add --strict-bytes to --strict (#19049)
  • 0b65f21 Admit that Final variables are never redefined (#19083)
  • Additional commits viewable in compare view

Updates ansys-sphinx-theme from 1.4.4 to 1.5.0

Release notes

Sourced from ansys-sphinx-theme's releases.

v1.5.0

1.5.0 (May 28, 2025)

Added

Fixed

... (truncated)

Commits
  • 9bd1c4e chore: updating CHANGELOG for v1.5.0
  • d631af8 release: bump version 1.5.0
  • 9ec925c fix: smaller screen view and search for mobile views (#689)
  • dd816ff build: bump plotly from 6.1.1 to 6.1.2 (#709)
  • 81e13f8 docs: update the multi-index docs (#708)
  • 5d3507b fix: url for fetch extra source file (#707)
  • 24c568d feat: add multi index searching and filtering (#674)
  • e832a5b chore: update CHANGELOG for v1.4.5 (#706)
  • 3ca5479 feat: add 'serve' command to Makefile and make.bat for serving documentation ...
  • d34e0e7 build: bump notebook from 7.4.2 to 7.4.3 (#705)
  • Additional commits viewable in compare view

Updates hypothesis from 6.131.28 to 6.132.0

Release notes

Sourced from hypothesis's releases.

Hypothesis for Python - version 6.132.0

Add "on_observation()" to the internal alternative backends interface.

The canonical version of these notes (with links) is on readthedocs.

Hypothesis for Python - version 6.131.33

This patch restores compatibility when using the legacy Python 3.9 LL(1) parser, which was accidentally broken since version 6.130.13.

Thanks to Marco Ricci for this fix!

The canonical version of these notes (with links) is on readthedocs.

Hypothesis for Python - version 6.131.32

fuzz_one_input now writes observability reports if observability is enabled, bringing it in line with the behavior of other standard ways to invoke a Hypothesis test.

The canonical version of these notes (with links) is on readthedocs.

Hypothesis for Python - version 6.131.31

Improve documentation of "@​example".

The canonical version of these notes (with links) is on readthedocs.

Hypothesis for Python - version 6.131.30

This patch resolves a Pandas FutureWarning (issue #4400) caused by indexing with an integer key.

The canonical version of these notes (with links) is on readthedocs.

Hypothesis for Python - version 6.131.29

The observations passed to "TESTCASE_CALLBACKS" are now dataclasses, rather than dictionaries. The content written to ".hypothesis/observed" under "HYPOTHESIS_EXPERIMENTAL_OBSERVABILITY" remains the same.

The canonical version of these notes (with links) is on readthedocs.

Commits
  • 8c1180f Bump hypothesis-python version to 6.132.0 and update changelog
  • ab90309 Merge pull request #4416 from tybug/provider-on-observability
  • fa0d09e address review
  • 4d86adf Bump hypothesis-python version to 6.131.33 and update changelog
  • 788e429 Merge pull request #4423 from the-13th-letter/restore-py39-compatibility-LL1-...
  • 422425f Restore compatibility with Python 3.9's legacy LL(1) parser
  • e118dde rename to add_observability_callback
  • 0b98d07 check PrimitiveProvider.add_observation_callback instead
  • a92991f Merge branch 'master' into provider-on-observability
  • fc32d66 Bump hypothesis-python version to 6.131.32 and update changelog
  • Additional commits viewable in compare view

Most Recent Ignore Conditions Applied to This Pull Request
Dependency Name Ignore Conditions
hypothesis [>= 6.84.a, < 6.85]

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the dependencies group with 4 updates: [ansys-mechanical-core](https://github.com/ansys/pymechanical), [mypy](https://github.com/python/mypy), [ansys-sphinx-theme](https://github.com/ansys/ansys-sphinx-theme) and [hypothesis](https://github.com/HypothesisWorks/hypothesis).


Updates `ansys-mechanical-core` from 0.11.16 to 0.11.18
- [Release notes](https://github.com/ansys/pymechanical/releases)
- [Changelog](https://github.com/ansys/pymechanical/blob/main/CHANGELOG.md)
- [Commits](ansys/pymechanical@v0.11.16...v0.11.18)

Updates `mypy` from 1.15.0 to 1.16.0
- [Changelog](https://github.com/python/mypy/blob/master/CHANGELOG.md)
- [Commits](python/mypy@v1.15.0...v1.16.0)

Updates `ansys-sphinx-theme` from 1.4.4 to 1.5.0
- [Release notes](https://github.com/ansys/ansys-sphinx-theme/releases)
- [Commits](ansys/ansys-sphinx-theme@v1.4.4...v1.5.0)

Updates `hypothesis` from 6.131.28 to 6.132.0
- [Release notes](https://github.com/HypothesisWorks/hypothesis/releases)
- [Commits](HypothesisWorks/hypothesis@hypothesis-python-6.131.28...hypothesis-python-6.132.0)

---
updated-dependencies:
- dependency-name: ansys-mechanical-core
  dependency-version: 0.11.18
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: mypy
  dependency-version: 1.16.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: ansys-sphinx-theme
  dependency-version: 1.5.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: hypothesis
  dependency-version: 6.132.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Jun 2, 2025
@dependabot dependabot bot requested a review from greschd as a code owner June 2, 2025 01:37
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Jun 2, 2025
@dependabot dependabot bot requested review from SRaimondi and roosre as code owners June 2, 2025 01:37
@dependabot dependabot bot added the python Pull requests that update Python code label Jun 2, 2025
@codecov
Copy link

codecov bot commented Jun 2, 2025

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 94.96%. Comparing base (1bb43e7) to head (9e973ce).
Report is 1 commits behind head on main.

Additional details and impacted files
@@           Coverage Diff           @@
##             main     #859   +/-   ##
=======================================
  Coverage   94.96%   94.96%           
=======================================
  Files         110      110           
  Lines        5821     5821           
  Branches      339      339           
=======================================
  Hits         5528     5528           
  Misses        292      292           
  Partials        1        1           
Flag Coverage Δ
direct-launch 91.44% <ø> (ø)
minimum-deps 93.08% <ø> (ø)
python-3.10 94.15% <ø> (ø)
python-3.11 94.09% <ø> (ø)
python-3.12 94.09% <ø> (ø)
python-3.13 94.33% <ø> (ø)
server-2024R2 90.53% <ø> (ø)
server-2025R1 94.12% <ø> (ø)
server-2025R2 94.09% <ø> (ø)
server-2026R1 94.09% <ø> (ø)
server-latest 94.72% <ø> (ø)

Flags with carried forward coverage won't be shown. Click here to find out more.

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

@greschd greschd enabled auto-merge (squash) June 2, 2025 06:45
@greschd greschd merged commit cec764c into main Jun 2, 2025
34 checks passed
@greschd greschd deleted the dependabot/pip/dependencies-be7d3fde49 branch June 2, 2025 06:59
greschd added a commit that referenced this pull request Aug 11, 2025
* Bump hypothesis from 6.131.21 to 6.131.28 in the dependencies group (#857)

Bumps the dependencies group with 1 update: [hypothesis](https://github.com/HypothesisWorks/hypothesis).


Updates `hypothesis` from 6.131.21 to 6.131.28
- [Release notes](https://github.com/HypothesisWorks/hypothesis/releases)
- [Commits](HypothesisWorks/hypothesis@hypothesis-python-6.131.21...hypothesis-python-6.131.28)

---
updated-dependencies:
- dependency-name: hypothesis
  dependency-version: 6.131.28
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump the dependencies group with 4 updates (#859)

* Bump the dependencies group with 4 updates

Bumps the dependencies group with 4 updates: [ansys-mechanical-core](https://github.com/ansys/pymechanical), [mypy](https://github.com/python/mypy), [ansys-sphinx-theme](https://github.com/ansys/ansys-sphinx-theme) and [hypothesis](https://github.com/HypothesisWorks/hypothesis).


Updates `ansys-mechanical-core` from 0.11.16 to 0.11.18
- [Release notes](https://github.com/ansys/pymechanical/releases)
- [Changelog](https://github.com/ansys/pymechanical/blob/main/CHANGELOG.md)
- [Commits](ansys/pymechanical@v0.11.16...v0.11.18)

Updates `mypy` from 1.15.0 to 1.16.0
- [Changelog](https://github.com/python/mypy/blob/master/CHANGELOG.md)
- [Commits](python/mypy@v1.15.0...v1.16.0)

Updates `ansys-sphinx-theme` from 1.4.4 to 1.5.0
- [Release notes](https://github.com/ansys/ansys-sphinx-theme/releases)
- [Commits](ansys/ansys-sphinx-theme@v1.4.4...v1.5.0)

Updates `hypothesis` from 6.131.28 to 6.132.0
- [Release notes](https://github.com/HypothesisWorks/hypothesis/releases)
- [Commits](HypothesisWorks/hypothesis@hypothesis-python-6.131.28...hypothesis-python-6.132.0)

---
updated-dependencies:
- dependency-name: ansys-mechanical-core
  dependency-version: 0.11.18
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: mypy
  dependency-version: 1.16.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: ansys-sphinx-theme
  dependency-version: 1.5.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: hypothesis
  dependency-version: 6.132.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>

* Ignore override error in analysis ply test method

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Dominik Gresch <dominik.gresch@ansys.com>

* Add a `connect_local` launch mode (#860)

- Adds a new launch mode `connect_local`, which connects to an
  existing ACP server, but without using the file transfer
  service.
- Fixes `ACPInstance.models`: The `Model._from_object_info` was
  incorrectly called with a bare gRPC channel, instead of a
  `ServerWrapper` instance.
  This bug wasn't caught because it only affects the case
  when connecting to an existing server which already has models
  loaded. Otherwise, the instance caching mechanism means that
  all models are instantiated when initially loaded via
  `import_model`, which works correctly.

* Bump the version to 0.3.0.dev0 (#856)

Bump the development version to `0.3.0.dev0`, since the `main` 
branch now works towards the next minor release.

* Bump ansys/actions from 9 to 10 (#861)

Bumps [ansys/actions](https://github.com/ansys/actions) from 9 to 10.
- [Release notes](https://github.com/ansys/actions/releases)
- [Changelog](https://github.com/ansys/actions/blob/main/CHANGELOG.md)
- [Commits](ansys/actions@v9...v10)

---
updated-dependencies:
- dependency-name: ansys/actions
  dependency-version: '10'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump pyvista/setup-headless-display-action from 4.1 to 4.2 (#862)

Bumps [pyvista/setup-headless-display-action](https://github.com/pyvista/setup-headless-display-action) from 4.1 to 4.2.
- [Release notes](https://github.com/pyvista/setup-headless-display-action/releases)
- [Commits](pyvista/setup-headless-display-action@f744438...7d84ae8)

---
updated-dependencies:
- dependency-name: pyvista/setup-headless-display-action
  dependency-version: '4.2'
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump the dependencies group with 3 updates (#863)

Bumps the dependencies group with 3 updates: [ansys-sphinx-theme](https://github.com/ansys/ansys-sphinx-theme), [pytest](https://github.com/pytest-dev/pytest) and [hypothesis](https://github.com/HypothesisWorks/hypothesis).


Updates `ansys-sphinx-theme` from 1.5.0 to 1.5.2
- [Release notes](https://github.com/ansys/ansys-sphinx-theme/releases)
- [Commits](ansys/ansys-sphinx-theme@v1.5.0...v1.5.2)

Updates `pytest` from 8.3.5 to 8.4.0
- [Release notes](https://github.com/pytest-dev/pytest/releases)
- [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst)
- [Commits](pytest-dev/pytest@8.3.5...8.4.0)

Updates `hypothesis` from 6.132.0 to 6.135.3
- [Release notes](https://github.com/HypothesisWorks/hypothesis/releases)
- [Commits](HypothesisWorks/hypothesis@hypothesis-python-6.132.0...hypothesis-python-6.135.3)

---
updated-dependencies:
- dependency-name: ansys-sphinx-theme
  dependency-version: 1.5.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: pytest
  dependency-version: 8.4.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: hypothesis
  dependency-version: 6.135.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump the dependencies group with 5 updates (#864)

Bumps the dependencies group with 5 updates:

| Package | From | To |
| --- | --- | --- |
| [typing-extensions](https://github.com/python/typing_extensions) | `4.13.2` | `4.14.0` |
| [ansys-tools-path](https://github.com/ansys/ansys-tools-path) | `0.7.1` | `0.7.2` |
| [pytest-cov](https://github.com/pytest-dev/pytest-cov) | `6.1.1` | `6.2.1` |
| [pytest-cases](https://github.com/smarie/python-pytest-cases) | `3.8.6` | `3.9.1` |
| [hypothesis](https://github.com/HypothesisWorks/hypothesis) | `6.135.3` | `6.135.10` |


Updates `typing-extensions` from 4.13.2 to 4.14.0
- [Release notes](https://github.com/python/typing_extensions/releases)
- [Changelog](https://github.com/python/typing_extensions/blob/main/CHANGELOG.md)
- [Commits](python/typing_extensions@4.13.2...4.14.0)

Updates `ansys-tools-path` from 0.7.1 to 0.7.2
- [Release notes](https://github.com/ansys/ansys-tools-path/releases)
- [Changelog](https://github.com/ansys/ansys-tools-path/blob/v0.7.2/CHANGELOG.md)
- [Commits](ansys/ansys-tools-path@v0.7.1...v0.7.2)

Updates `pytest-cov` from 6.1.1 to 6.2.1
- [Changelog](https://github.com/pytest-dev/pytest-cov/blob/master/CHANGELOG.rst)
- [Commits](pytest-dev/pytest-cov@v6.1.1...v6.2.1)

Updates `pytest-cases` from 3.8.6 to 3.9.1
- [Release notes](https://github.com/smarie/python-pytest-cases/releases)
- [Changelog](https://github.com/smarie/python-pytest-cases/blob/main/docs/changelog.md)
- [Commits](smarie/python-pytest-cases@3.8.6...3.9.1)

Updates `hypothesis` from 6.135.3 to 6.135.10
- [Release notes](https://github.com/HypothesisWorks/hypothesis/releases)
- [Commits](HypothesisWorks/hypothesis@hypothesis-python-6.135.3...hypothesis-python-6.135.10)

---
updated-dependencies:
- dependency-name: typing-extensions
  dependency-version: 4.14.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: ansys-tools-path
  dependency-version: 0.7.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: pytest-cov
  dependency-version: 6.2.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: pytest-cases
  dependency-version: 3.9.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: hypothesis
  dependency-version: 6.135.10
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump the dependencies group with 5 updates (#866)

---
updated-dependencies:
- dependency-name: ansys-tools-path
  dependency-version: 0.7.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: ansys-mechanical-core
  dependency-version: 0.11.19
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: mypy
  dependency-version: 1.16.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: pytest
  dependency-version: 8.4.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: hypothesis
  dependency-version: 6.135.14
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Update poetry lockfile (#868)

* Update poetry lockfile
* Exclude numpydoc 1.9.0

* Explicitly listen only on localhost / 127.0.0.1 when launching the server (#880)

- In `direct` launch mode, listen only on `localhost`
- In `docker_compose` launch mode, limit connections to coming from `127.0.0.1` by limiting the source IP in the `ports` mapping

* Allow stackup thickness and area weight to be None (#873)

When the fabrics in a stackup do have a material, or the stackup
has no fabrics, the 'thickness' and 'area_weight' properties
cannot be computed. This change allows these properties to be
'None' in these cases.
This case is only supported in the 26.1 server version or later.
Earlier versions would raise an error when getting the properties
under these conditions.

* Bump version to 0.2.1

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file python Pull requests that update Python code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants