Skip to content

chore(deps-dev): bump black from 25.1.0 to 26.5.1 - #113

Merged
thusser merged 1 commit into
developfrom
dependabot/uv/develop/black-26.5.1
Jul 28, 2026
Merged

chore(deps-dev): bump black from 25.1.0 to 26.5.1#113
thusser merged 1 commit into
developfrom
dependabot/uv/develop/black-26.5.1

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 28, 2026

Copy link
Copy Markdown
Contributor

Bumps black from 25.1.0 to 26.5.1.

Release notes

Sourced from black's releases.

26.5.1

Stable style

  • Fix unstable formatting of annotated assignments whose subscript annotation contains an inline comment (e.g. x: list[ # pyright: ignore[...]) (#5130)
  • Preserve inline comments (including # type: ignore) immediately before a # fmt: skip line, avoiding AST equivalence failures (#5139)

Packaging

  • Correct the version in the published executables (#5137)

Documentation

  • Add Neovim integration guide covering conform.nvim, ALE, and simple command approaches (#5124)

26.5.0

Highlights

  • Add support for unpacking in comprehensions (PEP 798) and for lazy imports (PEP 810), both new syntactic features in Python 3.15 (#5048)
  • Python 3.15 is now supported. Compiled wheels are not yet provided for Python 3.15, so performance may be slower than on existing Python versions. Wheels will be provided once Python 3.15 is later in its release cycle. (#5127)

Stable style

  • Fix # fmt: skip being ignored in nested if expressions with parenthesized in clauses (#4903)
  • Add syntactic support for Python 3.15 (#5048)
  • Fix crash when an f-string follows a # fmt: off comment inside brackets (#5097)
  • Preserve multiline compound statement headers when # fmt: skip is placed on the colon line (#5117)

Preview style

  • Improve heuristics around whether blank lines should appear before, within and after groups of same-name decorated functions (such as @overload groups) in .pyi stub files (#5021)
  • Fix blank lines being removed between a function and a decorated class in .pyi stub files (#5092)
  • Prevent string merger from creating unsplittable long lines when a pragma comment (e.g. # type: ignore) follows the closing bracket (#5096)

Packaging

Output

... (truncated)

Changelog

Sourced from black's changelog.

Version 26.5.1

Stable style

  • Fix unstable formatting of annotated assignments whose subscript annotation contains an inline comment (e.g. x: list[ # pyright: ignore[...]) (#5130)
  • Preserve inline comments (including # type: ignore) immediately before a # fmt: skip line, avoiding AST equivalence failures (#5139)

Packaging

  • Correct the version in the published executables (#5137)

Documentation

  • Add Neovim integration guide covering conform.nvim, ALE, and simple command approaches (#5124)

Version 26.5.0

Highlights

  • Add support for unpacking in comprehensions (PEP 798) and for lazy imports (PEP 810), both new syntactic features in Python 3.15 (#5048)
  • Python 3.15 is now supported. Compiled wheels are not yet provided for Python 3.15, so performance may be slower than on existing Python versions. Wheels will be provided once Python 3.15 is later in its release cycle. (#5127)

Stable style

  • Fix # fmt: skip being ignored in nested if expressions with parenthesized in clauses (#4903)
  • Add syntactic support for Python 3.15 (#5048)
  • Fix crash when an f-string follows a # fmt: off comment inside brackets (#5097)
  • Preserve multiline compound statement headers when # fmt: skip is placed on the colon line (#5117)

Preview style

  • Improve heuristics around whether blank lines should appear before, within and after groups of same-name decorated functions (such as @overload groups) in .pyi stub files (#5021)
  • Fix blank lines being removed between a function and a decorated class in .pyi stub files (#5092)
  • Prevent string merger from creating unsplittable long lines when a pragma comment (e.g. # type: ignore) follows the closing bracket (#5096)

Packaging

... (truncated)

Commits

Dependabot compatibility score

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 show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [black](https://github.com/psf/black) from 25.1.0 to 26.5.1.
- [Release notes](https://github.com/psf/black/releases)
- [Changelog](https://github.com/psf/black/blob/main/CHANGES.md)
- [Commits](psf/black@25.1.0...26.5.1)

---
updated-dependencies:
- dependency-name: black
  dependency-version: 26.5.1
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added the dependencies Pull requests that update a dependency file label Jul 28, 2026
@thusser
thusser merged commit 7db57f9 into develop Jul 28, 2026
2 checks passed
@dependabot
dependabot Bot deleted the dependabot/uv/develop/black-26.5.1 branch July 28, 2026 07:08
thusser added a commit that referenced this pull request Jul 28, 2026
* Fix ruff/pyrefly CI failures in weatherwidget and compassmovewidget

weatherwidget.py: Time was only used as a type annotation (TC002), and a
loop only needed SENSOR_LABELS' keys, leaving its label variable unused
(B007). compassmovewidget.py's u.degree access hits the same astropy
units false positive already suppressed elsewhere in telescopewidget.py
-- same ignore comment applied here for consistency.

* Read IRunning state instead of calling the removed is_running() RPC

pyobs-core removed IRunning.is_running() (RunningState already covers
it via comm.set_state), which would have broken these two RPC calls.
Switched both to read the pushed IRunning state via get_state() instead.

* Point to the new pyobs-gui standalone-binary docs

Adds the umbrella design doc and the two new plan docs (login window,
widget plugins + packaging) to the pointer list back to pyobs-core's
specs tree.

* chore(deps-dev): bump pyrefly from 1.1.0 to 1.1.1 (#111)

Bumps [pyrefly](https://github.com/facebook/pyrefly) from 1.1.0 to 1.1.1.
- [Release notes](https://github.com/facebook/pyrefly/releases)
- [Commits](facebook/pyrefly@1.1.0...1.1.1)

---
updated-dependencies:
- dependency-name: pyrefly
  dependency-version: 1.1.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

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

* chore(deps-dev): bump matplotlib-stubs from 0.1.0 to 0.3.11 (#112)

Bumps [matplotlib-stubs](https://github.com/hoel-bagard/matplotlib-stubs) from 0.1.0 to 0.3.11.
- [Release notes](https://github.com/hoel-bagard/matplotlib-stubs/releases)
- [Changelog](https://github.com/hoel-bagard/matplotlib-stubs/blob/master/CHANGELOG.md)
- [Commits](https://github.com/hoel-bagard/matplotlib-stubs/commits/v0.3.11)

---
updated-dependencies:
- dependency-name: matplotlib-stubs
  dependency-version: 0.3.11
  dependency-type: direct:development
  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>

* chore(deps): bump pyobs-core from 2.0.0.dev28 to 2.0.0.dev48 (#114)

Bumps pyobs-core from 2.0.0.dev28 to 2.0.0.dev48.

---
updated-dependencies:
- dependency-name: pyobs-core
  dependency-version: 2.0.0.dev48
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

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

* chore(deps): bump sphinx-rtd-theme from 3.0.2 to 3.1.0 (#115)

Bumps [sphinx-rtd-theme](https://github.com/readthedocs/sphinx_rtd_theme) from 3.0.2 to 3.1.0.
- [Changelog](https://github.com/readthedocs/sphinx_rtd_theme/blob/master/docs/changelog.rst)
- [Commits](readthedocs/sphinx_rtd_theme@3.0.2...3.1.0)

---
updated-dependencies:
- dependency-name: sphinx-rtd-theme
  dependency-version: 3.1.0
  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>

* Require pyobs-core>=2.0.0.dev48

* chore(deps-dev): bump black from 25.1.0 to 26.5.1 (#113)

Bumps [black](https://github.com/psf/black) from 25.1.0 to 26.5.1.
- [Release notes](https://github.com/psf/black/releases)
- [Changelog](https://github.com/psf/black/blob/main/CHANGES.md)
- [Commits](psf/black@25.1.0...26.5.1)

---
updated-dependencies:
- dependency-name: black
  dependency-version: 26.5.1
  dependency-type: direct:development
  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>

* Add dependabot config to target develop branch

Mirrors pyobs-core so version updates (and Dependabot security
updates, which reuse matching config) open PRs against develop
instead of the stale main branch.

* chore(deps): bump soupsieve from 2.7 to 2.8.4

Bumps [soupsieve](https://github.com/facelessuser/soupsieve) from 2.7 to 2.8.4.
- [Release notes](https://github.com/facelessuser/soupsieve/releases)
- [Commits](facelessuser/soupsieve@2.7...2.8.4)

---
updated-dependencies:
- dependency-name: soupsieve
  dependency-version: 2.8.4
  dependency-type: indirect
...

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

* chore(deps): bump pillow from 11.3.0 to 12.3.0

Bumps [pillow](https://github.com/python-pillow/Pillow) from 11.3.0 to 12.3.0.
- [Release notes](https://github.com/python-pillow/Pillow/releases)
- [Changelog](https://github.com/python-pillow/Pillow/blob/main/CHANGES.rst)
- [Commits](python-pillow/Pillow@11.3.0...12.3.0)

---
updated-dependencies:
- dependency-name: pillow
  dependency-version: 12.3.0
  dependency-type: indirect
...

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

* chore(deps): bump pyasn1 from 0.6.1 to 0.6.4

Bumps [pyasn1](https://github.com/pyasn1/pyasn1) from 0.6.1 to 0.6.4.
- [Release notes](https://github.com/pyasn1/pyasn1/releases)
- [Changelog](https://github.com/pyasn1/pyasn1/blob/main/CHANGES.rst)
- [Commits](pyasn1/pyasn1@v0.6.1...v0.6.4)

---
updated-dependencies:
- dependency-name: pyasn1
  dependency-version: 0.6.4
  dependency-type: indirect
...

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

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: Tim-Oliver Husser <thusser@uni-goettingen.de>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
thusser added a commit that referenced this pull request Jul 28, 2026
* Fix ruff/pyrefly CI failures in weatherwidget and compassmovewidget

weatherwidget.py: Time was only used as a type annotation (TC002), and a
loop only needed SENSOR_LABELS' keys, leaving its label variable unused
(B007). compassmovewidget.py's u.degree access hits the same astropy
units false positive already suppressed elsewhere in telescopewidget.py
-- same ignore comment applied here for consistency.

* Read IRunning state instead of calling the removed is_running() RPC

pyobs-core removed IRunning.is_running() (RunningState already covers
it via comm.set_state), which would have broken these two RPC calls.
Switched both to read the pushed IRunning state via get_state() instead.

* Point to the new pyobs-gui standalone-binary docs

Adds the umbrella design doc and the two new plan docs (login window,
widget plugins + packaging) to the pointer list back to pyobs-core's
specs tree.

* chore(deps-dev): bump pyrefly from 1.1.0 to 1.1.1 (#111)

Bumps [pyrefly](https://github.com/facebook/pyrefly) from 1.1.0 to 1.1.1.
- [Release notes](https://github.com/facebook/pyrefly/releases)
- [Commits](facebook/pyrefly@1.1.0...1.1.1)

---
updated-dependencies:
- dependency-name: pyrefly
  dependency-version: 1.1.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

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

* chore(deps-dev): bump matplotlib-stubs from 0.1.0 to 0.3.11 (#112)

Bumps [matplotlib-stubs](https://github.com/hoel-bagard/matplotlib-stubs) from 0.1.0 to 0.3.11.
- [Release notes](https://github.com/hoel-bagard/matplotlib-stubs/releases)
- [Changelog](https://github.com/hoel-bagard/matplotlib-stubs/blob/master/CHANGELOG.md)
- [Commits](https://github.com/hoel-bagard/matplotlib-stubs/commits/v0.3.11)

---
updated-dependencies:
- dependency-name: matplotlib-stubs
  dependency-version: 0.3.11
  dependency-type: direct:development
  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>

* chore(deps): bump pyobs-core from 2.0.0.dev28 to 2.0.0.dev48 (#114)

Bumps pyobs-core from 2.0.0.dev28 to 2.0.0.dev48.

---
updated-dependencies:
- dependency-name: pyobs-core
  dependency-version: 2.0.0.dev48
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

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

* chore(deps): bump sphinx-rtd-theme from 3.0.2 to 3.1.0 (#115)

Bumps [sphinx-rtd-theme](https://github.com/readthedocs/sphinx_rtd_theme) from 3.0.2 to 3.1.0.
- [Changelog](https://github.com/readthedocs/sphinx_rtd_theme/blob/master/docs/changelog.rst)
- [Commits](readthedocs/sphinx_rtd_theme@3.0.2...3.1.0)

---
updated-dependencies:
- dependency-name: sphinx-rtd-theme
  dependency-version: 3.1.0
  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>

* Require pyobs-core>=2.0.0.dev48

* chore(deps-dev): bump black from 25.1.0 to 26.5.1 (#113)

Bumps [black](https://github.com/psf/black) from 25.1.0 to 26.5.1.
- [Release notes](https://github.com/psf/black/releases)
- [Changelog](https://github.com/psf/black/blob/main/CHANGES.md)
- [Commits](psf/black@25.1.0...26.5.1)

---
updated-dependencies:
- dependency-name: black
  dependency-version: 26.5.1
  dependency-type: direct:development
  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>

* Add dependabot config to target develop branch

Mirrors pyobs-core so version updates (and Dependabot security
updates, which reuse matching config) open PRs against develop
instead of the stale main branch.

* chore(deps): bump soupsieve from 2.7 to 2.8.4

Bumps [soupsieve](https://github.com/facelessuser/soupsieve) from 2.7 to 2.8.4.
- [Release notes](https://github.com/facelessuser/soupsieve/releases)
- [Commits](facelessuser/soupsieve@2.7...2.8.4)

---
updated-dependencies:
- dependency-name: soupsieve
  dependency-version: 2.8.4
  dependency-type: indirect
...

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

* chore(deps): bump pillow from 11.3.0 to 12.3.0

Bumps [pillow](https://github.com/python-pillow/Pillow) from 11.3.0 to 12.3.0.
- [Release notes](https://github.com/python-pillow/Pillow/releases)
- [Changelog](https://github.com/python-pillow/Pillow/blob/main/CHANGES.rst)
- [Commits](python-pillow/Pillow@11.3.0...12.3.0)

---
updated-dependencies:
- dependency-name: pillow
  dependency-version: 12.3.0
  dependency-type: indirect
...

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

* chore(deps): bump idna from 3.10 to 3.15

Bumps [idna](https://github.com/kjd/idna) from 3.10 to 3.15.
- [Release notes](https://github.com/kjd/idna/releases)
- [Changelog](https://github.com/kjd/idna/blob/master/HISTORY.md)
- [Commits](kjd/idna@v3.10...v3.15)

---
updated-dependencies:
- dependency-name: idna
  dependency-version: '3.15'
  dependency-type: indirect
...

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

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: Tim-Oliver Husser <thusser@uni-goettingen.de>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
thusser added a commit that referenced this pull request Jul 28, 2026
* Fix ruff/pyrefly CI failures in weatherwidget and compassmovewidget

weatherwidget.py: Time was only used as a type annotation (TC002), and a
loop only needed SENSOR_LABELS' keys, leaving its label variable unused
(B007). compassmovewidget.py's u.degree access hits the same astropy
units false positive already suppressed elsewhere in telescopewidget.py
-- same ignore comment applied here for consistency.

* Read IRunning state instead of calling the removed is_running() RPC

pyobs-core removed IRunning.is_running() (RunningState already covers
it via comm.set_state), which would have broken these two RPC calls.
Switched both to read the pushed IRunning state via get_state() instead.

* Point to the new pyobs-gui standalone-binary docs

Adds the umbrella design doc and the two new plan docs (login window,
widget plugins + packaging) to the pointer list back to pyobs-core's
specs tree.

* chore(deps-dev): bump pyrefly from 1.1.0 to 1.1.1 (#111)

Bumps [pyrefly](https://github.com/facebook/pyrefly) from 1.1.0 to 1.1.1.
- [Release notes](https://github.com/facebook/pyrefly/releases)
- [Commits](facebook/pyrefly@1.1.0...1.1.1)

---
updated-dependencies:
- dependency-name: pyrefly
  dependency-version: 1.1.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

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

* chore(deps-dev): bump matplotlib-stubs from 0.1.0 to 0.3.11 (#112)

Bumps [matplotlib-stubs](https://github.com/hoel-bagard/matplotlib-stubs) from 0.1.0 to 0.3.11.
- [Release notes](https://github.com/hoel-bagard/matplotlib-stubs/releases)
- [Changelog](https://github.com/hoel-bagard/matplotlib-stubs/blob/master/CHANGELOG.md)
- [Commits](https://github.com/hoel-bagard/matplotlib-stubs/commits/v0.3.11)

---
updated-dependencies:
- dependency-name: matplotlib-stubs
  dependency-version: 0.3.11
  dependency-type: direct:development
  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>

* chore(deps): bump pyobs-core from 2.0.0.dev28 to 2.0.0.dev48 (#114)

Bumps pyobs-core from 2.0.0.dev28 to 2.0.0.dev48.

---
updated-dependencies:
- dependency-name: pyobs-core
  dependency-version: 2.0.0.dev48
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

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

* chore(deps): bump sphinx-rtd-theme from 3.0.2 to 3.1.0 (#115)

Bumps [sphinx-rtd-theme](https://github.com/readthedocs/sphinx_rtd_theme) from 3.0.2 to 3.1.0.
- [Changelog](https://github.com/readthedocs/sphinx_rtd_theme/blob/master/docs/changelog.rst)
- [Commits](readthedocs/sphinx_rtd_theme@3.0.2...3.1.0)

---
updated-dependencies:
- dependency-name: sphinx-rtd-theme
  dependency-version: 3.1.0
  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>

* Require pyobs-core>=2.0.0.dev48

* chore(deps-dev): bump black from 25.1.0 to 26.5.1 (#113)

Bumps [black](https://github.com/psf/black) from 25.1.0 to 26.5.1.
- [Release notes](https://github.com/psf/black/releases)
- [Changelog](https://github.com/psf/black/blob/main/CHANGES.md)
- [Commits](psf/black@25.1.0...26.5.1)

---
updated-dependencies:
- dependency-name: black
  dependency-version: 26.5.1
  dependency-type: direct:development
  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>

* Add dependabot config to target develop branch

Mirrors pyobs-core so version updates (and Dependabot security
updates, which reuse matching config) open PRs against develop
instead of the stale main branch.

* chore(deps): bump soupsieve from 2.7 to 2.8.4

Bumps [soupsieve](https://github.com/facelessuser/soupsieve) from 2.7 to 2.8.4.
- [Release notes](https://github.com/facelessuser/soupsieve/releases)
- [Commits](facelessuser/soupsieve@2.7...2.8.4)

---
updated-dependencies:
- dependency-name: soupsieve
  dependency-version: 2.8.4
  dependency-type: indirect
...

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

* chore(deps): bump pillow from 11.3.0 to 12.3.0

Bumps [pillow](https://github.com/python-pillow/Pillow) from 11.3.0 to 12.3.0.
- [Release notes](https://github.com/python-pillow/Pillow/releases)
- [Changelog](https://github.com/python-pillow/Pillow/blob/main/CHANGES.rst)
- [Commits](python-pillow/Pillow@11.3.0...12.3.0)

---
updated-dependencies:
- dependency-name: pillow
  dependency-version: 12.3.0
  dependency-type: indirect
...

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

* chore(deps): bump filelock from 3.18.0 to 3.20.3

Bumps [filelock](https://github.com/tox-dev/py-filelock) from 3.18.0 to 3.20.3.
- [Release notes](https://github.com/tox-dev/py-filelock/releases)
- [Changelog](https://github.com/tox-dev/filelock/blob/main/docs/changelog.rst)
- [Commits](tox-dev/filelock@3.18.0...3.20.3)

---
updated-dependencies:
- dependency-name: filelock
  dependency-version: 3.20.3
  dependency-type: indirect
...

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

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: Tim-Oliver Husser <thusser@uni-goettingen.de>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
thusser added a commit that referenced this pull request Jul 28, 2026
* Fix ruff/pyrefly CI failures in weatherwidget and compassmovewidget

weatherwidget.py: Time was only used as a type annotation (TC002), and a
loop only needed SENSOR_LABELS' keys, leaving its label variable unused
(B007). compassmovewidget.py's u.degree access hits the same astropy
units false positive already suppressed elsewhere in telescopewidget.py
-- same ignore comment applied here for consistency.

* Read IRunning state instead of calling the removed is_running() RPC

pyobs-core removed IRunning.is_running() (RunningState already covers
it via comm.set_state), which would have broken these two RPC calls.
Switched both to read the pushed IRunning state via get_state() instead.

* Point to the new pyobs-gui standalone-binary docs

Adds the umbrella design doc and the two new plan docs (login window,
widget plugins + packaging) to the pointer list back to pyobs-core's
specs tree.

* chore(deps-dev): bump pyrefly from 1.1.0 to 1.1.1 (#111)

Bumps [pyrefly](https://github.com/facebook/pyrefly) from 1.1.0 to 1.1.1.
- [Release notes](https://github.com/facebook/pyrefly/releases)
- [Commits](facebook/pyrefly@1.1.0...1.1.1)

---
updated-dependencies:
- dependency-name: pyrefly
  dependency-version: 1.1.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

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

* chore(deps-dev): bump matplotlib-stubs from 0.1.0 to 0.3.11 (#112)

Bumps [matplotlib-stubs](https://github.com/hoel-bagard/matplotlib-stubs) from 0.1.0 to 0.3.11.
- [Release notes](https://github.com/hoel-bagard/matplotlib-stubs/releases)
- [Changelog](https://github.com/hoel-bagard/matplotlib-stubs/blob/master/CHANGELOG.md)
- [Commits](https://github.com/hoel-bagard/matplotlib-stubs/commits/v0.3.11)

---
updated-dependencies:
- dependency-name: matplotlib-stubs
  dependency-version: 0.3.11
  dependency-type: direct:development
  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>

* chore(deps): bump pyobs-core from 2.0.0.dev28 to 2.0.0.dev48 (#114)

Bumps pyobs-core from 2.0.0.dev28 to 2.0.0.dev48.

---
updated-dependencies:
- dependency-name: pyobs-core
  dependency-version: 2.0.0.dev48
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

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

* chore(deps): bump sphinx-rtd-theme from 3.0.2 to 3.1.0 (#115)

Bumps [sphinx-rtd-theme](https://github.com/readthedocs/sphinx_rtd_theme) from 3.0.2 to 3.1.0.
- [Changelog](https://github.com/readthedocs/sphinx_rtd_theme/blob/master/docs/changelog.rst)
- [Commits](readthedocs/sphinx_rtd_theme@3.0.2...3.1.0)

---
updated-dependencies:
- dependency-name: sphinx-rtd-theme
  dependency-version: 3.1.0
  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>

* Require pyobs-core>=2.0.0.dev48

* chore(deps-dev): bump black from 25.1.0 to 26.5.1 (#113)

Bumps [black](https://github.com/psf/black) from 25.1.0 to 26.5.1.
- [Release notes](https://github.com/psf/black/releases)
- [Changelog](https://github.com/psf/black/blob/main/CHANGES.md)
- [Commits](psf/black@25.1.0...26.5.1)

---
updated-dependencies:
- dependency-name: black
  dependency-version: 26.5.1
  dependency-type: direct:development
  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>

* Add dependabot config to target develop branch

Mirrors pyobs-core so version updates (and Dependabot security
updates, which reuse matching config) open PRs against develop
instead of the stale main branch.

* chore(deps): bump soupsieve from 2.7 to 2.8.4

Bumps [soupsieve](https://github.com/facelessuser/soupsieve) from 2.7 to 2.8.4.
- [Release notes](https://github.com/facelessuser/soupsieve/releases)
- [Commits](facelessuser/soupsieve@2.7...2.8.4)

---
updated-dependencies:
- dependency-name: soupsieve
  dependency-version: 2.8.4
  dependency-type: indirect
...

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

* chore(deps): bump pillow from 11.3.0 to 12.3.0

Bumps [pillow](https://github.com/python-pillow/Pillow) from 11.3.0 to 12.3.0.
- [Release notes](https://github.com/python-pillow/Pillow/releases)
- [Changelog](https://github.com/python-pillow/Pillow/blob/main/CHANGES.rst)
- [Commits](python-pillow/Pillow@11.3.0...12.3.0)

---
updated-dependencies:
- dependency-name: pillow
  dependency-version: 12.3.0
  dependency-type: indirect
...

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

* chore(deps): bump pynacl from 1.5.0 to 1.6.2

Bumps [pynacl](https://github.com/pyca/pynacl) from 1.5.0 to 1.6.2.
- [Changelog](https://github.com/pyca/pynacl/blob/main/CHANGELOG.rst)
- [Commits](pyca/pynacl@1.5.0...1.6.2)

---
updated-dependencies:
- dependency-name: pynacl
  dependency-version: 1.6.2
  dependency-type: indirect
...

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

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: Tim-Oliver Husser <thusser@uni-goettingen.de>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
thusser added a commit that referenced this pull request Jul 28, 2026
* Fix ruff/pyrefly CI failures in weatherwidget and compassmovewidget

weatherwidget.py: Time was only used as a type annotation (TC002), and a
loop only needed SENSOR_LABELS' keys, leaving its label variable unused
(B007). compassmovewidget.py's u.degree access hits the same astropy
units false positive already suppressed elsewhere in telescopewidget.py
-- same ignore comment applied here for consistency.

* Read IRunning state instead of calling the removed is_running() RPC

pyobs-core removed IRunning.is_running() (RunningState already covers
it via comm.set_state), which would have broken these two RPC calls.
Switched both to read the pushed IRunning state via get_state() instead.

* Point to the new pyobs-gui standalone-binary docs

Adds the umbrella design doc and the two new plan docs (login window,
widget plugins + packaging) to the pointer list back to pyobs-core's
specs tree.

* chore(deps-dev): bump pyrefly from 1.1.0 to 1.1.1 (#111)

Bumps [pyrefly](https://github.com/facebook/pyrefly) from 1.1.0 to 1.1.1.
- [Release notes](https://github.com/facebook/pyrefly/releases)
- [Commits](facebook/pyrefly@1.1.0...1.1.1)

---
updated-dependencies:
- dependency-name: pyrefly
  dependency-version: 1.1.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

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

* chore(deps-dev): bump matplotlib-stubs from 0.1.0 to 0.3.11 (#112)

Bumps [matplotlib-stubs](https://github.com/hoel-bagard/matplotlib-stubs) from 0.1.0 to 0.3.11.
- [Release notes](https://github.com/hoel-bagard/matplotlib-stubs/releases)
- [Changelog](https://github.com/hoel-bagard/matplotlib-stubs/blob/master/CHANGELOG.md)
- [Commits](https://github.com/hoel-bagard/matplotlib-stubs/commits/v0.3.11)

---
updated-dependencies:
- dependency-name: matplotlib-stubs
  dependency-version: 0.3.11
  dependency-type: direct:development
  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>

* chore(deps): bump pyobs-core from 2.0.0.dev28 to 2.0.0.dev48 (#114)

Bumps pyobs-core from 2.0.0.dev28 to 2.0.0.dev48.

---
updated-dependencies:
- dependency-name: pyobs-core
  dependency-version: 2.0.0.dev48
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

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

* chore(deps): bump sphinx-rtd-theme from 3.0.2 to 3.1.0 (#115)

Bumps [sphinx-rtd-theme](https://github.com/readthedocs/sphinx_rtd_theme) from 3.0.2 to 3.1.0.
- [Changelog](https://github.com/readthedocs/sphinx_rtd_theme/blob/master/docs/changelog.rst)
- [Commits](readthedocs/sphinx_rtd_theme@3.0.2...3.1.0)

---
updated-dependencies:
- dependency-name: sphinx-rtd-theme
  dependency-version: 3.1.0
  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>

* Require pyobs-core>=2.0.0.dev48

* chore(deps-dev): bump black from 25.1.0 to 26.5.1 (#113)

Bumps [black](https://github.com/psf/black) from 25.1.0 to 26.5.1.
- [Release notes](https://github.com/psf/black/releases)
- [Changelog](https://github.com/psf/black/blob/main/CHANGES.md)
- [Commits](psf/black@25.1.0...26.5.1)

---
updated-dependencies:
- dependency-name: black
  dependency-version: 26.5.1
  dependency-type: direct:development
  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>

* Add dependabot config to target develop branch

Mirrors pyobs-core so version updates (and Dependabot security
updates, which reuse matching config) open PRs against develop
instead of the stale main branch.

* chore(deps): bump soupsieve from 2.7 to 2.8.4

Bumps [soupsieve](https://github.com/facelessuser/soupsieve) from 2.7 to 2.8.4.
- [Release notes](https://github.com/facelessuser/soupsieve/releases)
- [Commits](facelessuser/soupsieve@2.7...2.8.4)

---
updated-dependencies:
- dependency-name: soupsieve
  dependency-version: 2.8.4
  dependency-type: indirect
...

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

* chore(deps): bump pillow from 11.3.0 to 12.3.0

Bumps [pillow](https://github.com/python-pillow/Pillow) from 11.3.0 to 12.3.0.
- [Release notes](https://github.com/python-pillow/Pillow/releases)
- [Changelog](https://github.com/python-pillow/Pillow/blob/main/CHANGES.rst)
- [Commits](python-pillow/Pillow@11.3.0...12.3.0)

---
updated-dependencies:
- dependency-name: pillow
  dependency-version: 12.3.0
  dependency-type: indirect
...

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

* chore(deps): bump urllib3 from 2.5.0 to 2.7.0

Bumps [urllib3](https://github.com/urllib3/urllib3) from 2.5.0 to 2.7.0.
- [Release notes](https://github.com/urllib3/urllib3/releases)
- [Changelog](https://github.com/urllib3/urllib3/blob/main/CHANGES.rst)
- [Commits](urllib3/urllib3@2.5.0...2.7.0)

---
updated-dependencies:
- dependency-name: urllib3
  dependency-version: 2.7.0
  dependency-type: indirect
...

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

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: Tim-Oliver Husser <thusser@uni-goettingen.de>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
thusser added a commit that referenced this pull request Jul 28, 2026
* Fix ruff/pyrefly CI failures in weatherwidget and compassmovewidget

weatherwidget.py: Time was only used as a type annotation (TC002), and a
loop only needed SENSOR_LABELS' keys, leaving its label variable unused
(B007). compassmovewidget.py's u.degree access hits the same astropy
units false positive already suppressed elsewhere in telescopewidget.py
-- same ignore comment applied here for consistency.

* Read IRunning state instead of calling the removed is_running() RPC

pyobs-core removed IRunning.is_running() (RunningState already covers
it via comm.set_state), which would have broken these two RPC calls.
Switched both to read the pushed IRunning state via get_state() instead.

* Point to the new pyobs-gui standalone-binary docs

Adds the umbrella design doc and the two new plan docs (login window,
widget plugins + packaging) to the pointer list back to pyobs-core's
specs tree.

* chore(deps-dev): bump pyrefly from 1.1.0 to 1.1.1 (#111)

Bumps [pyrefly](https://github.com/facebook/pyrefly) from 1.1.0 to 1.1.1.
- [Release notes](https://github.com/facebook/pyrefly/releases)
- [Commits](facebook/pyrefly@1.1.0...1.1.1)

---
updated-dependencies:
- dependency-name: pyrefly
  dependency-version: 1.1.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

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

* chore(deps-dev): bump matplotlib-stubs from 0.1.0 to 0.3.11 (#112)

Bumps [matplotlib-stubs](https://github.com/hoel-bagard/matplotlib-stubs) from 0.1.0 to 0.3.11.
- [Release notes](https://github.com/hoel-bagard/matplotlib-stubs/releases)
- [Changelog](https://github.com/hoel-bagard/matplotlib-stubs/blob/master/CHANGELOG.md)
- [Commits](https://github.com/hoel-bagard/matplotlib-stubs/commits/v0.3.11)

---
updated-dependencies:
- dependency-name: matplotlib-stubs
  dependency-version: 0.3.11
  dependency-type: direct:development
  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>

* chore(deps): bump pyobs-core from 2.0.0.dev28 to 2.0.0.dev48 (#114)

Bumps pyobs-core from 2.0.0.dev28 to 2.0.0.dev48.

---
updated-dependencies:
- dependency-name: pyobs-core
  dependency-version: 2.0.0.dev48
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

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

* chore(deps): bump sphinx-rtd-theme from 3.0.2 to 3.1.0 (#115)

Bumps [sphinx-rtd-theme](https://github.com/readthedocs/sphinx_rtd_theme) from 3.0.2 to 3.1.0.
- [Changelog](https://github.com/readthedocs/sphinx_rtd_theme/blob/master/docs/changelog.rst)
- [Commits](readthedocs/sphinx_rtd_theme@3.0.2...3.1.0)

---
updated-dependencies:
- dependency-name: sphinx-rtd-theme
  dependency-version: 3.1.0
  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>

* Require pyobs-core>=2.0.0.dev48

* chore(deps-dev): bump black from 25.1.0 to 26.5.1 (#113)

Bumps [black](https://github.com/psf/black) from 25.1.0 to 26.5.1.
- [Release notes](https://github.com/psf/black/releases)
- [Changelog](https://github.com/psf/black/blob/main/CHANGES.md)
- [Commits](psf/black@25.1.0...26.5.1)

---
updated-dependencies:
- dependency-name: black
  dependency-version: 26.5.1
  dependency-type: direct:development
  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>

* Add dependabot config to target develop branch

Mirrors pyobs-core so version updates (and Dependabot security
updates, which reuse matching config) open PRs against develop
instead of the stale main branch.

* chore(deps): bump soupsieve from 2.7 to 2.8.4

Bumps [soupsieve](https://github.com/facelessuser/soupsieve) from 2.7 to 2.8.4.
- [Release notes](https://github.com/facelessuser/soupsieve/releases)
- [Commits](facelessuser/soupsieve@2.7...2.8.4)

---
updated-dependencies:
- dependency-name: soupsieve
  dependency-version: 2.8.4
  dependency-type: indirect
...

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

* chore(deps): bump pillow from 11.3.0 to 12.3.0

Bumps [pillow](https://github.com/python-pillow/Pillow) from 11.3.0 to 12.3.0.
- [Release notes](https://github.com/python-pillow/Pillow/releases)
- [Changelog](https://github.com/python-pillow/Pillow/blob/main/CHANGES.rst)
- [Commits](python-pillow/Pillow@11.3.0...12.3.0)

---
updated-dependencies:
- dependency-name: pillow
  dependency-version: 12.3.0
  dependency-type: indirect
...

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

* chore(deps): bump fonttools from 4.59.0 to 4.60.2

Bumps [fonttools](https://github.com/fonttools/fonttools) from 4.59.0 to 4.60.2.
- [Release notes](https://github.com/fonttools/fonttools/releases)
- [Changelog](https://github.com/fonttools/fonttools/blob/main/NEWS.rst)
- [Commits](fonttools/fonttools@4.59.0...4.60.2)

---
updated-dependencies:
- dependency-name: fonttools
  dependency-version: 4.60.2
  dependency-type: indirect
...

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

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: Tim-Oliver Husser <thusser@uni-goettingen.de>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
thusser added a commit that referenced this pull request Jul 28, 2026
* Fix ruff/pyrefly CI failures in weatherwidget and compassmovewidget

weatherwidget.py: Time was only used as a type annotation (TC002), and a
loop only needed SENSOR_LABELS' keys, leaving its label variable unused
(B007). compassmovewidget.py's u.degree access hits the same astropy
units false positive already suppressed elsewhere in telescopewidget.py
-- same ignore comment applied here for consistency.

* Read IRunning state instead of calling the removed is_running() RPC

pyobs-core removed IRunning.is_running() (RunningState already covers
it via comm.set_state), which would have broken these two RPC calls.
Switched both to read the pushed IRunning state via get_state() instead.

* Point to the new pyobs-gui standalone-binary docs

Adds the umbrella design doc and the two new plan docs (login window,
widget plugins + packaging) to the pointer list back to pyobs-core's
specs tree.

* chore(deps-dev): bump pyrefly from 1.1.0 to 1.1.1 (#111)

Bumps [pyrefly](https://github.com/facebook/pyrefly) from 1.1.0 to 1.1.1.
- [Release notes](https://github.com/facebook/pyrefly/releases)
- [Commits](facebook/pyrefly@1.1.0...1.1.1)

---
updated-dependencies:
- dependency-name: pyrefly
  dependency-version: 1.1.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

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

* chore(deps-dev): bump matplotlib-stubs from 0.1.0 to 0.3.11 (#112)

Bumps [matplotlib-stubs](https://github.com/hoel-bagard/matplotlib-stubs) from 0.1.0 to 0.3.11.
- [Release notes](https://github.com/hoel-bagard/matplotlib-stubs/releases)
- [Changelog](https://github.com/hoel-bagard/matplotlib-stubs/blob/master/CHANGELOG.md)
- [Commits](https://github.com/hoel-bagard/matplotlib-stubs/commits/v0.3.11)

---
updated-dependencies:
- dependency-name: matplotlib-stubs
  dependency-version: 0.3.11
  dependency-type: direct:development
  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>

* chore(deps): bump pyobs-core from 2.0.0.dev28 to 2.0.0.dev48 (#114)

Bumps pyobs-core from 2.0.0.dev28 to 2.0.0.dev48.

---
updated-dependencies:
- dependency-name: pyobs-core
  dependency-version: 2.0.0.dev48
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

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

* chore(deps): bump sphinx-rtd-theme from 3.0.2 to 3.1.0 (#115)

Bumps [sphinx-rtd-theme](https://github.com/readthedocs/sphinx_rtd_theme) from 3.0.2 to 3.1.0.
- [Changelog](https://github.com/readthedocs/sphinx_rtd_theme/blob/master/docs/changelog.rst)
- [Commits](readthedocs/sphinx_rtd_theme@3.0.2...3.1.0)

---
updated-dependencies:
- dependency-name: sphinx-rtd-theme
  dependency-version: 3.1.0
  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>

* Require pyobs-core>=2.0.0.dev48

* chore(deps-dev): bump black from 25.1.0 to 26.5.1 (#113)

Bumps [black](https://github.com/psf/black) from 25.1.0 to 26.5.1.
- [Release notes](https://github.com/psf/black/releases)
- [Changelog](https://github.com/psf/black/blob/main/CHANGES.md)
- [Commits](psf/black@25.1.0...26.5.1)

---
updated-dependencies:
- dependency-name: black
  dependency-version: 26.5.1
  dependency-type: direct:development
  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>

* Add dependabot config to target develop branch

Mirrors pyobs-core so version updates (and Dependabot security
updates, which reuse matching config) open PRs against develop
instead of the stale main branch.

* chore(deps): bump soupsieve from 2.7 to 2.8.4

Bumps [soupsieve](https://github.com/facelessuser/soupsieve) from 2.7 to 2.8.4.
- [Release notes](https://github.com/facelessuser/soupsieve/releases)
- [Commits](facelessuser/soupsieve@2.7...2.8.4)

---
updated-dependencies:
- dependency-name: soupsieve
  dependency-version: 2.8.4
  dependency-type: indirect
...

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

* chore(deps): bump pillow from 11.3.0 to 12.3.0

Bumps [pillow](https://github.com/python-pillow/Pillow) from 11.3.0 to 12.3.0.
- [Release notes](https://github.com/python-pillow/Pillow/releases)
- [Changelog](https://github.com/python-pillow/Pillow/blob/main/CHANGES.rst)
- [Commits](python-pillow/Pillow@11.3.0...12.3.0)

---
updated-dependencies:
- dependency-name: pillow
  dependency-version: 12.3.0
  dependency-type: indirect
...

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

* chore(deps): bump requests from 2.32.4 to 2.33.0

Bumps [requests](https://github.com/psf/requests) from 2.32.4 to 2.33.0.
- [Release notes](https://github.com/psf/requests/releases)
- [Changelog](https://github.com/psf/requests/blob/main/HISTORY.md)
- [Commits](psf/requests@v2.32.4...v2.33.0)

---
updated-dependencies:
- dependency-name: requests
  dependency-version: 2.33.0
  dependency-type: indirect
...

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

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: Tim-Oliver Husser <thusser@uni-goettingen.de>
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

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant