Add apple silicon support for cffi dependency
This commit is contained in:
963
poetry.lock
generated
963
poetry.lock
generated
File diff suppressed because it is too large
Load Diff
@@ -6,4 +6,4 @@ from .enums import LedOptions, Brightness, PlayerID, PulseOptions, TriggerModes
|
|||||||
from .event_system import Event # noqa : F401
|
from .event_system import Event # noqa : F401
|
||||||
from .pydualsense import pydualsense, DSLight, DSState, DSTouchpad, DSTrigger, DSAudio # noqa : F401
|
from .pydualsense import pydualsense, DSLight, DSState, DSTouchpad, DSTrigger, DSAudio # noqa : F401
|
||||||
|
|
||||||
__version__ = "0.7.2"
|
__version__ = "0.7.3"
|
@@ -1,7 +1,7 @@
|
|||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "pydualsense"
|
name = "pydualsense"
|
||||||
version = "0.7.2"
|
version = "0.7.3"
|
||||||
description = "use your DualSense (PS5) controller with python"
|
description = "use your DualSense (PS5) controller with python"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
requires-python = ">=3.8,<4.0"
|
requires-python = ">=3.8,<4.0"
|
||||||
@@ -21,7 +21,7 @@ classifiers = [
|
|||||||
|
|
||||||
[tool.poetry]
|
[tool.poetry]
|
||||||
name = "pydualsense"
|
name = "pydualsense"
|
||||||
version = "0.7.2"
|
version = "0.7.3"
|
||||||
description = "use your DualSense (PS5) controller with python"
|
description = "use your DualSense (PS5) controller with python"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
repository = "https://github.com/flok/pydualsense"
|
repository = "https://github.com/flok/pydualsense"
|
||||||
@@ -33,13 +33,13 @@ keywords = ['ps5', 'controller', 'dualsense', 'pydualsense']
|
|||||||
|
|
||||||
[tool.poetry.dependencies]
|
[tool.poetry.dependencies]
|
||||||
python = ">=3.8,<4.0"
|
python = ">=3.8,<4.0"
|
||||||
hidapi-usb = "^0.3.1"
|
hidapi-usb = "^0.3.2"
|
||||||
|
|
||||||
[tool.poetry.group.dev.dependencies]
|
[tool.poetry.group.dev.dependencies]
|
||||||
python = ">=3.9,<4.0"
|
python = ">=3.9,<4.0"
|
||||||
taskipy = "^1.12.2"
|
taskipy = "^1.12.2"
|
||||||
hidapi-usb = "^0.3.1"
|
hidapi-usb = "^0.3.2"
|
||||||
sphinx = "^7.3.7"
|
sphinx = { version= "^7.3.7", python=">=3.9" }
|
||||||
furo = "^2024.5.6"
|
furo = "^2024.5.6"
|
||||||
|
|
||||||
[tool.poetry.group.typing.dependencies]
|
[tool.poetry.group.typing.dependencies]
|
||||||
@@ -105,20 +105,4 @@ exclude = [
|
|||||||
|
|
||||||
[build-system]
|
[build-system]
|
||||||
requires = ["poetry-core"]
|
requires = ["poetry-core"]
|
||||||
build-backend = "poetry.core.masonry.api"
|
build-backend = "poetry.core.masonry.api"
|
||||||
|
|
||||||
[tool.mypy]
|
|
||||||
strict = true
|
|
||||||
files = "pydualsense"
|
|
||||||
show_error_codes = true
|
|
||||||
pretty = true
|
|
||||||
warn_unused_ignores = true
|
|
||||||
enable_incomplete_feature = ["Unpack"]
|
|
||||||
exclude = [
|
|
||||||
"^docs\\.py$",
|
|
||||||
"^build\\.py$",
|
|
||||||
]
|
|
||||||
|
|
||||||
[build-system]
|
|
||||||
requires = ["poetry-core"]
|
|
||||||
build-backend = "poetry.core.masonry.api"
|
|
Reference in New Issue
Block a user