Skip to content

Commit

Permalink
Update dependencies and fix indentation in pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
horta committed May 16, 2024
1 parent 26518b9 commit 37ceb6b
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions h3result-py/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,30 +7,30 @@ license = "MIT"
readme = "README.md"
packages = [{ include = "h3result" }]
include = [
{ path = "h3result/*.so", format = "wheel" },
{ path = "h3result/*.pyd", format = "wheel" },
{ path = "h3result/lib/lib*", format = "wheel" },
{ path = "build_ext.py", format = "sdist" },
{ path = "h3result/*.so", format = "wheel" },
{ path = "h3result/*.pyd", format = "wheel" },
{ path = "h3result/lib/lib*", format = "wheel" },
{ path = "build_ext.py", format = "sdist" },
]

[tool.poetry.dependencies]
cffi = ">=1.15.1"
cffi = "^1.16"
python = "^3.9"

[tool.poetry.build]
script = "build_ext.py"
generate-setup-file = false

[tool.poetry.group.dev.dependencies]
pytest = ">=7.3.2"
pytest = "^8.2"

[build-system]
requires = [
"poetry-core",
"cffi",
"cmake",
"patchelf;sys_platform=='linux'",
"setuptools;python_version>='3.12'",
"poetry-core",
"cffi",
"cmake",
"patchelf;sys_platform=='linux'",
"setuptools;python_version>='3.12'",
]
build-backend = "poetry.core.masonry.api"

Expand Down

0 comments on commit 37ceb6b

Please sign in to comment.