Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Re-add secondary dependency as primary dependency to fix python tests #2013

Merged
merged 2 commits into from
Nov 20, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
add tighter version bounds around python dependencies
  • Loading branch information
timkpaine committed Nov 20, 2022
commit 039234f64491cd59979200a74683948d26626c47
2 changes: 1 addition & 1 deletion python/perspective/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
[build-system]
requires = ["setuptools", "wheel", "numpy>=1.13.1"]
requires = ["setuptools", "wheel", "numpy>=1.13.1,<2"]
30 changes: 15 additions & 15 deletions python/perspective/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,18 +53,18 @@ def get_version(file, name="__version__"):

requires = [
"ipywidgets>=7.5.1,<8",
"future>=0.16.0",
"numpy>=1.13.1",
"pandas>=0.22.0",
"python-dateutil>=2.8.0",
"traitlets>=4.3.2",
"future>=0.16.0,<1",
"numpy>=1.13.1,<2",
"pandas>=0.22.0,<2",
"python-dateutil>=2.8.0,<3",
"traitlets>=4.3.2,<6",
]

requires_aiohttp = ["aiohttp"]
requires_aiohttp = ["aiohttp>=3,<4"]

requires_jupyter = ["jupyterlab>=3.2,<4"]

requires_starlette = ["fastapi", "starlette"]
requires_starlette = ["fastapi>=0.70,<1", "starlette>=0.20,<1"]

requires_tornado = ["tornado>=4.5.3,<6.2"]

Expand All @@ -74,17 +74,17 @@ def get_version(file, name="__version__"):
"Faker>=1.0.0",
"flake8>=5",
"flake8-black>=0.3.3",
"httpx",
"httpx>=0.23,<1",
"pip",
"psutil",
"pybind11>=2.4.0",
"psutil>=5,<6",
"pybind11>=2.4.0,<3",
"pyarrow>=0.16.0",
"pytest>=4.3.0",
"pytest-aiohttp",
"pytest-asyncio",
"pytest-cov>=2.6.1",
"pytest-check-links",
"pytest-tornado",
"pytest-aiohttp>=1",
"pytest-asyncio>=0.20",
"pytest-cov>=3",
"pytest-check-links>=0.7",
"pytest-tornado>=0.8",
"pytz>=2022",
"Sphinx>=1.8.4",
"sphinx-markdown-builder>=0.5.2",
Expand Down