Skip to content

[pre-commit.ci] pre-commit autoupdate#463

Open
pre-commit-ci[bot] wants to merge 2 commits into
developmentfrom
pre-commit-ci-update-config
Open

[pre-commit.ci] pre-commit autoupdate#463
pre-commit-ci[bot] wants to merge 2 commits into
developmentfrom
pre-commit-ci-update-config

Conversation

@pre-commit-ci

@pre-commit-ci pre-commit-ci Bot commented Oct 6, 2025

Copy link
Copy Markdown
Contributor

@pre-commit-ci pre-commit-ci Bot force-pushed the pre-commit-ci-update-config branch 2 times, most recently from d8081d6 to 3bba968 Compare October 13, 2025 20:27
@pre-commit-ci pre-commit-ci Bot force-pushed the pre-commit-ci-update-config branch 2 times, most recently from 672a2d2 to b48fb07 Compare October 27, 2025 20:09
@pre-commit-ci pre-commit-ci Bot force-pushed the pre-commit-ci-update-config branch from b48fb07 to abe4db3 Compare November 3, 2025 20:33
@pre-commit-ci pre-commit-ci Bot force-pushed the pre-commit-ci-update-config branch 2 times, most recently from 374b9e8 to 085936a Compare November 17, 2025 20:20
@pre-commit-ci pre-commit-ci Bot force-pushed the pre-commit-ci-update-config branch from 085936a to 9f4630d Compare November 24, 2025 20:42
@pre-commit-ci pre-commit-ci Bot force-pushed the pre-commit-ci-update-config branch 2 times, most recently from c1ecafb to fd30207 Compare December 8, 2025 20:46
@pre-commit-ci pre-commit-ci Bot force-pushed the pre-commit-ci-update-config branch 2 times, most recently from 6aa694e to 8360405 Compare December 22, 2025 20:16
@pre-commit-ci pre-commit-ci Bot force-pushed the pre-commit-ci-update-config branch from 8360405 to b0b5568 Compare January 12, 2026 20:25
@pre-commit-ci pre-commit-ci Bot force-pushed the pre-commit-ci-update-config branch 2 times, most recently from 08b2ef5 to 26953d3 Compare January 26, 2026 20:35
@pre-commit-ci pre-commit-ci Bot force-pushed the pre-commit-ci-update-config branch 2 times, most recently from dc23715 to 84bd28b Compare February 16, 2026 20:18
@pre-commit-ci pre-commit-ci Bot force-pushed the pre-commit-ci-update-config branch from 2e162c8 to 67460ef Compare February 23, 2026 20:43
@pre-commit-ci pre-commit-ci Bot force-pushed the pre-commit-ci-update-config branch 2 times, most recently from 23ff8a3 to 24a8f67 Compare March 9, 2026 20:56
@pre-commit-ci pre-commit-ci Bot force-pushed the pre-commit-ci-update-config branch 2 times, most recently from 05fa0c1 to 1699cbf Compare March 23, 2026 20:25
@pre-commit-ci pre-commit-ci Bot force-pushed the pre-commit-ci-update-config branch from a128353 to c01d5ca Compare March 30, 2026 20:25
@pre-commit-ci pre-commit-ci Bot force-pushed the pre-commit-ci-update-config branch 2 times, most recently from 111f336 to f83b994 Compare April 13, 2026 20:30
@pre-commit-ci pre-commit-ci Bot force-pushed the pre-commit-ci-update-config branch from 8ce18d6 to 55bdd32 Compare April 20, 2026 20:16
@MaxThevenet

Copy link
Copy Markdown
Contributor

@CriMariani this PR makes a small change to ChromaticLens, namely in the documentation at https://lasydoc--462.org.readthedocs.build/en/462/api/optical_elements/chromatic_lens.html

it replaces

R1 = 114.5e-3  # 1st ROC
t1 = 3.4e-3  # lens thickness
R2 = -114.5e-3  # 2nd ROC
nFS = (
    lambda x: (
        1
        + 0.6961663 / (1 - (0.0684043 / x) ** 2)
        + 0.4079426 / (1 - (0.1162414 / x) ** 2)
        + 0.8974794 / (1 - (9.896161 / x) ** 2)
    )
    ** 0.5
)
laser.apply_optics(Lens2(R1=R1, R2=R2, d=t1, n_func=nFS))

with

R1 = 114.5e-3  # 1st ROC
t1 = 3.4e-3  # lens thickness
R2 = -114.5e-3  # 2nd ROC
nFS = lambda x: (
    (
        1
        + 0.6961663 / (1 - (0.0684043 / x) ** 2)
        + 0.4079426 / (1 - (0.1162414 / x) ** 2)
        + 0.8974794 / (1 - (9.896161 / x) ** 2)
    )
    ** 0.5
)
laser.apply_optics(Lens2(R1=R1, R2=R2, d=t1, n_func=nFS))

Could you confirm that it still works? I guess it should, but this is not in CI.

@pre-commit-ci pre-commit-ci Bot force-pushed the pre-commit-ci-update-config branch from eaee3fe to 44f5942 Compare April 27, 2026 20:55
@pre-commit-ci pre-commit-ci Bot force-pushed the pre-commit-ci-update-config branch from bae3044 to ff7db03 Compare May 18, 2026 21:00
@pre-commit-ci pre-commit-ci Bot force-pushed the pre-commit-ci-update-config branch from 9f5feaf to 3f3094a Compare May 25, 2026 20:42
@pre-commit-ci pre-commit-ci Bot force-pushed the pre-commit-ci-update-config branch 2 times, most recently from 9e9c1e7 to 402160b Compare June 8, 2026 20:26
@pre-commit-ci pre-commit-ci Bot force-pushed the pre-commit-ci-update-config branch from e349e07 to ed5284a Compare June 15, 2026 20:35
@pre-commit-ci pre-commit-ci Bot force-pushed the pre-commit-ci-update-config branch from e71522d to ad35a59 Compare June 22, 2026 20:35
updates:
- [github.com/Lucas-C/pre-commit-hooks: v1.5.5 → v1.5.6](Lucas-C/pre-commit-hooks@v1.5.5...v1.5.6)
- [github.com/astral-sh/ruff-pre-commit: v0.13.2 → v0.15.20](astral-sh/ruff-pre-commit@v0.13.2...v0.15.20)
- [github.com/mgedmin/check-manifest: 0.50 → 0.51](mgedmin/check-manifest@0.50...0.51)
@pre-commit-ci pre-commit-ci Bot force-pushed the pre-commit-ci-update-config branch from 89cbc3b to c0a8b6c Compare June 29, 2026 20:27
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant