File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change @@ -362,11 +362,11 @@ async def test_block_mot_set_within_limits(mot_block):
362362async 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
You can’t perform that action at this time.
0 commit comments