Skip to content

Commit a4e5e22

Browse files
committed
Bump deps
1 parent 36de7f3 commit a4e5e22

File tree

5 files changed

+85
-86
lines changed

5 files changed

+85
-86
lines changed

.github/workflows/lint_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- uses: actions/checkout@v4
1717

1818
- name: Install uv
19-
uses: astral-sh/setup-uv@v3
19+
uses: astral-sh/setup-uv@v5
2020
with:
2121
version: "0.6.x"
2222
enable-cache: true

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
ci:
2-
autoupdate_schedule: monthly
2+
autoupdate_schedule: quarterly
33

44
repos:
55
- repo: https://github.com/psf/black

pyproject.toml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,16 @@
22
name = "skyportal"
33
version = "2.0.0"
44
description = "A CircuitPython based flight tracker."
5+
license = "MIT"
6+
license-files = ["LICENSE"]
57
authors = [
68
{name = "sco1", email = "sco1.git@gmail.com"}
79
]
8-
maintainers = [
9-
{name = "sco1", email = "sco1.git@gmail.com"}
10-
]
1110

1211
readme = "README.md"
1312
classifiers = [
1413
"Development Status :: 5 - Production/Stable",
1514
"Intended Audience :: Developers",
16-
"License :: OSI Approved :: MIT License",
1715
"Operating System :: Other OS",
1816
"Programming Language :: Python :: Implementation :: MicroPython",
1917
"Programming Language :: Python :: 3 :: Only",
@@ -29,7 +27,7 @@ dependencies = []
2927
[project.urls]
3028
Homepage = "https://github.com/sco1/"
3129
Documentation = "https://github.com/sco1/skyportal/blob/main/README.md"
32-
Repository = "https://github.com/sco1/skyportal"
30+
Repository = "https://github.com/sco1/skyportal.git"
3331
Issues = "https://github.com/sco1/skyportal/issues"
3432
Changelog = "https://github.com/sco1/skyportal/blob/main/CHANGELOG.md"
3533

skyportal/displaylib.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -494,4 +494,4 @@ def dist(p: tuple[int, int], q: tuple[int, int]) -> float:
494494
Taken from https://docs.python.org/3/library/math.html#math.dist since CircuitPython's `math`
495495
library doesn't have this yet.
496496
"""
497-
return math.sqrt(sum((px - qx) ** 2.0 for px, qx in zip(p, q)))
497+
return math.sqrt(sum((px - qx) ** 2.0 for px, qx in zip(p, q, strict=False)))

0 commit comments

Comments
 (0)