Skip to content

Commit 8103141

Browse files
authored
Merge pull request #99 from LemurPwned/feat/adaptive-steps
Feat/adaptive steps
2 parents 58e88ab + 7a3dc24 commit 8103141

27 files changed

+3367
-95
lines changed

.github/workflows/python-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
strategy:
3131
fail-fast: true
3232
matrix:
33-
python-version: ["3.9", "3.10", "3.11"]
33+
python-version: ["3.9", "3.10", "3.11", "3.12"]
3434

3535
steps:
3636
- uses: actions/checkout@v3
@@ -55,7 +55,7 @@ jobs:
5555
strategy:
5656
fail-fast: true
5757
matrix:
58-
python-version: ["3.9", "3.10", "3.11"]
58+
python-version: ["3.9", "3.10", "3.11", "3.12"]
5959

6060
steps:
6161
- uses: actions/checkout@v3

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ repos:
3636

3737
- repo: https://github.com/astral-sh/ruff-pre-commit
3838
# Ruff version.
39-
rev: v0.6.4
39+
rev: v0.12.3
4040
hooks:
4141
# Run the linter.
4242
- id: ruff

cmtj/__init__.pyi

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -346,6 +346,13 @@ class Junction:
346346
"""
347347
...
348348

349+
def setLayerSecondOrderAnisotropyDriver(self, layerId: str, driver: ScalarDriver) -> None:
350+
"""Set second order anisotropy driver for a layer.
351+
:param layerId: the id of the layer.
352+
:param driver: the second order anisotropy driver to be set.
353+
"""
354+
...
355+
349356
def setLayerCurrentDriver(self, layerId: str, driver: ScalarDriver) -> None:
350357
"""Set a current driver for a layer.
351358
:param layerId: the layer id

0 commit comments

Comments
 (0)