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
1 change: 0 additions & 1 deletion python/perspective/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
[build-system]
# Minimum requirements for the build system to execute.
requires = ["setuptools", "wheel", "numpy>=1.13.1"]
2 changes: 1 addition & 1 deletion python/perspective/setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ per-file-ignores =
[tool:pytest]
asyncio_mode=strict
testpaths =
perspective/tests
perspective/tests
10 changes: 5 additions & 5 deletions python/perspective/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,10 +70,10 @@ def get_version(file, name="__version__"):

requires_dev = (
[
"black==20.8b1",
"black==22.8",
"Faker>=1.0.0",
"flake8>=3.7.8",
"flake8-black>=0.2.0",
"flake8>=5",
"flake8-black>=0.3.3",
"psutil",
"pybind11>=2.4.0",
"pyarrow>=0.16.0",
Expand All @@ -83,7 +83,7 @@ def get_version(file, name="__version__"):
"pytest-cov>=2.6.1",
"pytest-check-links",
"pytest-tornado",
"pytz>=2018.9",
"pytz>=2022",
"Sphinx>=1.8.4",
"sphinx-markdown-builder>=0.5.2",
"wheel",
Expand Down Expand Up @@ -204,7 +204,7 @@ def build_extension_cmake(self, ext):
"-DCMAKE_TOOLCHAIN_FILE={}".format(vcpkg_toolchain_file)
)

if sys.maxsize > 2 ** 32:
if sys.maxsize > 2**32:
# build 64 bit to match python
cmake_args += ["-A", "x64"]

Expand Down