From 710e8abb4ef83c939b0f33e672c08fcaf5180b05 Mon Sep 17 00:00:00 2001 From: r-leyshon Date: Thu, 27 Jun 2024 10:19:11 +0100 Subject: [PATCH] chore: Relax numpy version constraint --- pyproject.toml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index ef70e4c..c569613 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -48,8 +48,8 @@ dependencies = [ 'gtfs_kit==5.2.7', 'haversine', 'kaleido', - 'numpy==1.26.4', - 'pandas<2.1.0', + 'numpy', + 'pandas', 'plotly', 'pretty_html_table', 'pyprojroot', @@ -60,8 +60,7 @@ dependencies = [ test = [ 'coverage', 'pre-commit', - 'pytest < 8.0.0', - 'pytest-lazy-fixture', + 'pytest', 'pytest-mock', 'r5py', # specifically for test_gtfs_utils.py::TestBboxFilterGtfs::test_bbox_filter_gtfs_to_date_builds_network ]