File tree Expand file tree Collapse file tree 4 files changed +6
-5
lines changed
Expand file tree Collapse file tree 4 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 2929 fail-fast : false
3030 matrix :
3131 os : [macos-latest, ubuntu-latest, windows-latest]
32- python-version : ['3.9 ', '3.11 ', '3.13 ']
32+ python-version : ['3.10 ', '3.12 ', '3.14 ']
3333 max-parallel : 9
3434 runs-on : ${{ matrix.os }}
3535 steps :
5353 - uses : actions/setup-python@v6
5454 with :
5555 python-version : ${{ matrix.python-version }}
56+ allow-prereleases : true
5657
5758 - name : Install dependencies
5859 run : |
Original file line number Diff line number Diff line change 4949 - tomli
5050
5151 - repo : https://github.com/astral-sh/ruff-pre-commit
52- rev : v0.12.10
52+ rev : v0.13.2
5353 hooks : # Format before linting
5454 - id : ruff-check
5555 - id : ruff-format
Original file line number Diff line number Diff line change @@ -34,11 +34,11 @@ classifiers = [
3434 " Operating System :: Microsoft :: Windows" ,
3535 " Operating System :: POSIX" ,
3636 " Programming Language :: Python :: 3 :: Only" ,
37- " Programming Language :: Python :: 3.9" ,
3837 " Programming Language :: Python :: 3.10" ,
3938 " Programming Language :: Python :: 3.11" ,
4039 " Programming Language :: Python :: 3.12" ,
4140 " Programming Language :: Python :: 3.13" ,
41+ " Programming Language :: Python :: 3.14" ,
4242]
4343dependencies = [
4444 " comtypes; platform_system=='Windows'" ,
@@ -55,7 +55,7 @@ include-package-data = false
5555
5656[tool .ruff ]
5757line-length = 100
58- target-version = " py39 "
58+ target-version = " py310 "
5959
6060[tool .ruff .lint ]
6161select = [
Original file line number Diff line number Diff line change @@ -134,7 +134,7 @@ def stop(self) -> None:
134134 # clear queue up to first end loop command
135135 while True :
136136 try :
137- mtd , args , name = self ._queue [0 ]
137+ mtd , _args , _name = self ._queue [0 ]
138138 except IndexError :
139139 break
140140 if mtd == self ._engine .endLoop :
You can’t perform that action at this time.
0 commit comments