Skip to content

Commit bc7920c

Browse files
committed
Drop 3.10 (no longer supported by o-a)
1 parent b58c799 commit bc7920c

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/Lint-and-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
strategy:
77
matrix:
88
os: [ "ubuntu-latest", "windows-latest" ]
9-
version: ['3.10', '3.11', '3.12']
9+
version: ['3.11', '3.12', '3.13']
1010
fail-fast: false
1111
steps:
1212
- uses: actions/checkout@v5

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ classifiers = [
3333
# that you indicate you support Python 3. These classifiers are *not*
3434
# checked by "pip install". See instead "requires-python" key in this file.
3535
"Programming Language :: Python :: 3",
36-
"Programming Language :: Python :: 3.10",
3736
"Programming Language :: Python :: 3.11",
3837
"Programming Language :: Python :: 3.12",
38+
"Programming Language :: Python :: 3.13",
3939
"Programming Language :: Python :: 3 :: Only",
4040
]
4141

tests/devices/test_block.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -362,11 +362,11 @@ async def test_block_mot_set_within_limits(mot_block):
362362
async def test_block_mot_set_outside_limits(mot_block):
363363
# Local import as API not available in older ophyd_async versions
364364
if ophyd_async._version.version_tuple >= (0, 13, 5):
365-
from ophyd_async.epics.motor import MotorLimitsError # noqa PLC0415
365+
from ophyd_async.epics.motor import MotorLimitsError # pyright: ignore # noqa PLC0415
366366

367367
err = MotorLimitsError
368368
else:
369-
from ophyd_async.epics.motor import MotorLimitsException # noqa PLC0415
369+
from ophyd_async.epics.motor import MotorLimitsException # pyright: ignore # noqa PLC0415
370370

371371
err = MotorLimitsException
372372

0 commit comments

Comments
 (0)