forked from ksubramz/gradunwarp
-
Notifications
You must be signed in to change notification settings - Fork 29
/
pyproject.toml
41 lines (37 loc) · 970 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
[build-system]
requires = [
"setuptools",
# Numpy 1.25 allows back-compiling and supports 3.9
"numpy>=1.25; python_version >= '3.9'",
# Last version to support 3.6-3.8
"numpy==1.19; python_version > '3.0' and python_version < '3.9'",
# Last version to support 2.7
"numpy==1.16; python_version < '3.0'",
]
build-backend = "setuptools.build_meta"
[tool.bumpver]
current_version = "1.2.2"
version_pattern = "MAJOR.MINOR.PATCH[.TAG]"
commit_message = "bump version {old_version} -> {new_version}"
tag_message = "{new_version}"
tag_scope = "default"
pre_commit_hook = ""
post_commit_hook = ""
commit = true
tag = true
push = false
[tool.bumpver.file_patterns]
"pyproject.toml" = [
'^current_version = "{version}"',
]
"version.txt" = [
"^v{version}",
]
"gradunwarp/core/globals.py" = [
"^VERSION = '{version}'"
]
[tool.cibuildwheel]
# Do not bother building pypy wheels
skip = "pp*"
[tool.ruff.extend-per-file-ignores]
"*/__init__.py" = ["F401"]