pin pysimplegui version due to license changes

This commit is contained in:
onyx-and-iris 2024-06-07 23:16:14 +01:00
parent 79f739f250
commit 3a1143199a
2 changed files with 9 additions and 27 deletions

View File

@ -5,7 +5,7 @@
groups = ["default", "build", "lint", "test"] groups = ["default", "build", "lint", "test"]
strategy = ["cross_platform"] strategy = ["cross_platform"]
lock_version = "4.4.1" lock_version = "4.4.1"
content_hash = "sha256:6be74981983ee2ba3a99c9aa75b10f6c7433fec0854390f82029635cb34d3e0b" content_hash = "sha256:6bd288ca3e76b99966beba75e19bb50ff7f0787e1b1981269f7a850a22706b0f"
[[package]] [[package]]
name = "altgraph" name = "altgraph"

View File

@ -2,11 +2,9 @@
name = "nvda_voicemeeter" name = "nvda_voicemeeter"
version = "0.6.3" version = "0.6.3"
description = "A Voicemeeter app compatible with NVDA" description = "A Voicemeeter app compatible with NVDA"
authors = [ authors = [{ name = "onyx-and-iris", email = "code@onyxandiris.online" }]
{ name = "onyx-and-iris", email = "code@onyxandiris.online" },
]
dependencies = [ dependencies = [
"pysimplegui>=4.60.5", "pysimplegui==4.60.5",
"pyparsing>=3.1.1", "pyparsing>=3.1.1",
"voicemeeter-api>=2.5.3", "voicemeeter-api>=2.5.3",
] ]
@ -17,17 +15,9 @@ readme = "README.md"
text = "MIT" text = "MIT"
[tool.pdm.dev-dependencies] [tool.pdm.dev-dependencies]
lint = [ lint = ["black>=23.7.0", "ruff>=0.0.291", "mypy>=1.7.0"]
"black>=23.7.0", test = ["psgdemos>=1.12.1"]
"ruff>=0.0.291", build = ["pyinstaller>=6.3.0"]
"mypy>=1.7.0",
]
test = [
"psgdemos>=1.12.1",
]
build = [
"pyinstaller>=6.3.0",
]
[tool.pdm.scripts.build] [tool.pdm.scripts.build]
shell = "build.ps1" shell = "build.ps1"
@ -36,13 +26,8 @@ shell = "build.ps1"
line-length = 119 line-length = 119
[tool.ruff] [tool.ruff]
select = [ select = ["E", "F"]
"E", ignore = ["E501"]
"F",
]
ignore = [
"E501",
]
fixable = [ fixable = [
"A", "A",
"B", "B",
@ -121,7 +106,4 @@ target-version = "py310"
max-complexity = 10 max-complexity = 10
[tool.ruff.per-file-ignores] [tool.ruff.per-file-ignores]
"__init__.py" = [ "__init__.py" = ["E402", "F401"]
"E402",
"F401",
]