Skip to content

Commit

Permalink
Bump the dependencies group across 1 directory with 6 updates (#766)
Browse files Browse the repository at this point in the history
* Bump the dependencies group across 1 directory with 6 updates

Bumps the dependencies group with 6 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [numpy](https://github.com/numpy/numpy) | `2.2.1` | `2.2.2` |
| [ansys-mechanical-core](https://github.com/ansys/pymechanical) | `0.11.10` | `0.11.12` |
| [scipy](https://github.com/scipy/scipy) | `1.15.0` | `1.15.1` |
| [ansys-sphinx-theme](https://github.com/ansys/ansys-sphinx-theme) | `1.2.4` | `1.2.6` |
| [pypandoc](https://github.com/JessicaTegner/pypandoc) | `1.14` | `1.15` |
| [hypothesis](https://github.com/HypothesisWorks/hypothesis) | `6.123.7` | `6.124.1` |



Updates `numpy` from 2.2.1 to 2.2.2
- [Release notes](https://github.com/numpy/numpy/releases)
- [Changelog](https://github.com/numpy/numpy/blob/main/doc/RELEASE_WALKTHROUGH.rst)
- [Commits](numpy/numpy@v2.2.1...v2.2.2)

Updates `ansys-mechanical-core` from 0.11.10 to 0.11.12
- [Release notes](https://github.com/ansys/pymechanical/releases)
- [Changelog](https://github.com/ansys/pymechanical/blob/main/CHANGELOG.md)
- [Commits](ansys/pymechanical@v0.11.10...v0.11.12)

Updates `scipy` from 1.15.0 to 1.15.1
- [Release notes](https://github.com/scipy/scipy/releases)
- [Commits](scipy/scipy@v1.15.0...v1.15.1)

Updates `ansys-sphinx-theme` from 1.2.4 to 1.2.6
- [Release notes](https://github.com/ansys/ansys-sphinx-theme/releases)
- [Commits](ansys/ansys-sphinx-theme@v1.2.4...v1.2.6)

Updates `pypandoc` from 1.14 to 1.15
- [Release notes](https://github.com/JessicaTegner/pypandoc/releases)
- [Changelog](https://github.com/JessicaTegner/pypandoc/blob/master/release.md)
- [Commits](JessicaTegner/pypandoc@v1.14...v1.15)

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

---
updated-dependencies:
- dependency-name: numpy
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: ansys-mechanical-core
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: scipy
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: ansys-sphinx-theme
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: pypandoc
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: hypothesis
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>

* Remove now-unused type ignore statements

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Dominik Gresch <[email protected]>
  • Loading branch information
dependabot[bot] and greschd authored Jan 20, 2025
1 parent d47183c commit b944c2c
Show file tree
Hide file tree
Showing 2 changed files with 149 additions and 149 deletions.
4 changes: 2 additions & 2 deletions examples/modeling_features/005-ply-direction-lookup-table.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@
# Compute a correction angle to define circular fiber paths.
correction_angle = np.arctan2(xx.ravel(), zz.ravel()) * 180 / np.pi
angle_column_1 = lookup_table.create_column(
data=correction_angle, # type: ignore
data=correction_angle,
physical_dimension=PhysicalDimension.DIMENSIONLESS,
value_type=LookUpTableColumnValueType.SCALAR,
)
Expand All @@ -186,7 +186,7 @@
shear_angle = -30
transverse_correction_angle = correction_angle + shear_angle
angle_column_2 = lookup_table.create_column(
data=transverse_correction_angle, # type: ignore
data=transverse_correction_angle,
physical_dimension=PhysicalDimension.DIMENSIONLESS,
value_type=LookUpTableColumnValueType.SCALAR,
)
Expand Down
Loading

0 comments on commit b944c2c

Please sign in to comment.