Skip to content

Commit

Permalink
fix(deps): update dependency conda-forge/python to v3.13.0 (master) (#…
Browse files Browse the repository at this point in the history
…173)

* fix(deps): update dependency conda-forge/python to v3.13.0

* chore: work around mypy bug in python 3.13

python/mypy#18216

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Jakob van Santen <jvansanten@gmail.com>
  • Loading branch information
renovate[bot] and jvansanten authored Dec 5, 2024
1 parent e8037b2 commit 4d32b5c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@ jobs:
format: true
lint: true
# renovate: datasource=conda depName=conda-forge/python
python-version: "3.12.6"
python-version: "3.13.0"
# renovate: datasource=pypi depName=ruff versioning=pep440
ruff-version: "0.7.4"
2 changes: 1 addition & 1 deletion ampel/template/ZTFPeriodicSummaryT3.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from ampel.template.PeriodicSummaryT3 import LoaderDirective, PeriodicSummaryT3


class ZTFPeriodicSummaryT3(PeriodicSummaryT3):
class ZTFPeriodicSummaryT3(PeriodicSummaryT3): # type: ignore[override]
"""
Periodic summary process with sensible defaults for ZTF.
"""
Expand Down
2 changes: 1 addition & 1 deletion ampel/ztf/base/CatalogMatchFilter.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class BaseCatalogMatchRequest(AmpelBaseModel):
rs_arcsec: float


class ExtcatsMatchRequest(BaseCatalogMatchRequest):
class ExtcatsMatchRequest(BaseCatalogMatchRequest): # type: ignore[override]
use: Literal["extcats"]
pre_filter: None | dict[str, Any]
post_filter: None | dict[str, Any]
Expand Down

0 comments on commit 4d32b5c

Please sign in to comment.