Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 0 additions & 17 deletions setup.cfg → .flake8
Original file line number Diff line number Diff line change
@@ -1,11 +1,3 @@
[versioneer]
VCS = git
style = pep440-pre
versionfile_source = bottleneck/_version.py
versionfile_build = bottleneck/_version.py
tag_prefix = v
parentdir_prefix = bottleneck-

[flake8]
max-line-length = 88
ignore = \
Expand All @@ -22,12 +14,3 @@ exclude = \
.eggs
.tox
build

[tool:pytest]
norecursedirs =
.*
build
dist
*.egg
venv
env
11 changes: 10 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
[build-system]
requires = [
"setuptools>=77.0.1",
"versioneer",
"versioneer>=0.29",
"versioneer[toml] ; python_version < '3.11'",
# Comments on numpy build requirement range:
#
# 1. >=2.0.x is the numpy requirement for wheel builds for distribution
Expand Down Expand Up @@ -73,6 +74,14 @@ zip-safe = false
[tool.setuptools.packages.find]
namespaces = false

[tool.versioneer]
VCS = "git"
style = "pep440-pre"
versionfile_source = "bottleneck/_version.py"
versionfile_build = "bottleneck/_version.py"
tag_prefix = "v"
parentdir_prefix = "bottleneck-"

[tool.pytest.ini_options]
addopts = "-l"
filterwarnings = ["error"]
Loading