@@ -4,7 +4,7 @@ build-backend = 'hatchling.build'
4
4
5
5
[project ]
6
6
name = ' midiscripter'
7
- version = ' 0.5 '
7
+ version = ' 0.6 '
8
8
description = ' Framework for scripting MIDI, keyboard and Open Sound Control input and output'
9
9
readme = ' README.md'
10
10
requires-python = ' >=3.11'
@@ -26,18 +26,13 @@ dependencies = [
26
26
' python-osc ~=1.7' , # Unlicense
27
27
' pynput ~=1.7' , # LGPL
28
28
' watchdog ~=4.0' , # Apache
29
- ' PySide6_Essentials >6.4, <6.7 ' , # LGPL Got broken Signal.connect on 6.7
29
+ ' PySide6_Essentials >6.4' , # LGPL
30
30
' pywin32; platform_system == "Windows"' , # BSD
31
31
]
32
32
33
33
[project .optional-dependencies ]
34
34
dev = [' ruff' ]
35
- doc = [
36
- ' mkdocs-material' ,
37
- ' mkdocstrings' ,
38
- ' griffe-inherited-docstrings' ,
39
- ' black'
40
- ]
35
+ doc = [' mkdocs-material' , ' mkdocstrings' , ' griffe-inherited-docstrings' , ' black' ]
41
36
42
37
[tool .hatch .build .targets .sdist ]
43
38
only-include = [' midiscripter' ]
@@ -54,8 +49,7 @@ Source = 'https://github.com/Maboroshy/midi-scripter'
54
49
line-length = 100
55
50
56
51
[tool .ruff .lint ]
57
- select = [' B' , ' C' , ' E' , ' F' , ' PERF' , ' TCH' , ' SIM' , ' UP' , ' ANN001' ,
58
- ' ANN201' , ' ANN202' , ]
52
+ select = [' B' , ' C' , ' E' , ' F' , ' PERF' , ' TCH' , ' SIM' , ' UP' , ' ANN001' , ' ANN201' , ' ANN202' ]
59
53
ignore = [' E501' , ' F401' , ' F405' , ' F403' , ' SIM105' ]
60
54
61
55
[tool .ruff .format ]
0 commit comments