Skip to content

Commit 0585811

Browse files
authored
Merge pull request #22 from JeremieGince/dev
Dev
2 parents 4105500 + 871fdec commit 0585811

2 files changed

Lines changed: 5 additions & 15 deletions

File tree

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ body:
5151
id: system
5252
attributes:
5353
label: System information
54-
description: Please provide informations about you python version and os. The command `python -c "import sys; print(sys.version, sys.platform)"` can be used to get this information. Provide also the output of `pip list` command.
54+
description: Please provide informations about your python version and os by running the command `uv run python -c "import sys; print(sys.version, sys.platform)"; uv pip list` in your terminal.
5555
render: shell
5656
validations:
5757
required: true

pyproject.toml

Lines changed: 4 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -53,11 +53,10 @@ docs = [
5353

5454
[build-system]
5555
requires = [
56-
"setuptools",
57-
"wheel",
58-
"pythonbasictools",
59-
"numpy",
60-
"psutil",
56+
"setuptools>=57.0.0",
57+
"wheel>=0.45.1,<0.46",
58+
"build>=1.2.2.post1,<2",
59+
"twine>=6.1.0,<7",
6160
]
6261
build-backend = "setuptools.build_meta"
6362

@@ -71,15 +70,6 @@ default-groups = [
7170
[tool.setuptools.dynamic]
7271
readme = {file = "README.md", content-type = "text/markdown"}
7372

74-
[tool.hatch.build.targets.sdist]
75-
include = ["src/python_template"]
76-
77-
[tool.hatch.build.targets.wheel]
78-
include = ["src/python_template"]
79-
80-
[tool.hatch.build.targets.wheel.sources]
81-
"src/python_template" = "python_template"
82-
8373
[tool.setuptools]
8474
package-dir = {"" = "src"}
8575

0 commit comments

Comments
 (0)