Skip to content

Commit 6365b18

Browse files
authored
Merge branch 'main' into bump-version
2 parents 46c5b0a + b9b4fd2 commit 6365b18

18 files changed

Lines changed: 35 additions & 51 deletions

.github/workflows/python-pytest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010

1111
strategy:
1212
matrix:
13-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
13+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
1414
os: [ubuntu-latest, windows-latest]
1515
runs-on: ${{ matrix.os }}
1616

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,3 +52,4 @@ coverage.xml
5252
# vim
5353
*.sw?
5454

55+
/.vscode

.pre-commit-config.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@ ci:
22
autoupdate_schedule: 'monthly'
33
repos:
44
- repo: https://github.com/pre-commit/pre-commit-hooks
5-
rev: v4.5.0
5+
rev: v6.0.0
66
hooks:
77
- id: trailing-whitespace
88
- id: no-commit-to-branch
99
args: [-b, main]
1010

11-
- repo: https://github.com/psf/black
12-
rev: 23.10.1
11+
- repo: https://github.com/psf/black-pre-commit-mirror
12+
rev: 25.11.0
1313
hooks:
1414
- id: black
1515
name: black
@@ -18,7 +18,7 @@ repos:
1818
types: [python]
1919

2020
- repo: https://github.com/pre-commit/mirrors-mypy
21-
rev: v1.6.1
21+
rev: v1.19.0
2222
hooks:
2323
- id: mypy
2424
exclude: ^tests/.*

yaqc/yaqc/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
"""Generic yaq client."""
22

3-
43
from .__version__ import *
54
from ._client import *
65
from . import _avro_numpy

yaqc/yaqc/__version__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
"""Define version."""
22

3-
43
import pathlib
54
import subprocess
65

yaqc/yaqc/_properties.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
"""Class representing single property, see YEP-111."""
22

3-
43
Getter = object()
54

65

yaqd-core/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/).
88
## [2025.11.0]
99

1010
### Fixed
11+
- removed asyncio syntax that was removed in python 3.14
1112
- type hints for IsSensor attributes are appropriate for _n_-dimensional data
1213

1314
## [2023.11.0]

yaqd-core/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@
88

99
Core python package for implementing yaq daemons, and associated utilities.
1010

11-
Documentation at https://yaqd-core-python.yaq.fyi
11+
Homepage at https://yaq.fyi

yaqd-core/pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ classifiers = [
2828

2929
[project.urls]
3030
"Home Page" = "https://yaq.fyi"
31-
Documentation = "http://yaq-core-python.yaq.fyi/"
3231
Source = "https://github.com/yaq-project/yaq-python"
3332
Issues = "https://github.com/yaq-project/yaq-python/issues"
3433

yaqd-core/yaqd_core/__version__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
"""Define version."""
22

3-
43
import pathlib
54
import subprocess
65

0 commit comments

Comments
 (0)