From 1b1402c968bfecbe9c2ceda45242477771a46661 Mon Sep 17 00:00:00 2001 From: "Allen, Timothy" Date: Wed, 31 Jan 2024 13:06:09 -0500 Subject: [PATCH] Pin low end of dependencies. --- pyproject.toml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index cf32f54..3fad4b3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -15,7 +15,7 @@ authors = [ ] license = {text = "BSD-3-Clause"} readme = "README.rst" -requires-python = ">=3.7" +requires-python = ">=3.8" keywords = ["wrds", "finance", "research", "crsp", "compustat"] classifiers = [ "Programming Language :: Python", @@ -36,12 +36,12 @@ classifiers = [ "License :: OSI Approved :: BSD License", ] dependencies = [ - "numpy<1.27", + "numpy>=1.26,<1.27", "packaging<23.3", - "pandas<2.3", - "psycopg2-binary<2.10", - "scipy<1.13", - "sqlalchemy<2.1", + "pandas>=2.2,<2.3", + "psycopg2-binary>=2.9,<2.10", + "scipy>=1.12,<1.13", + "sqlalchemy>=2,<2.1", ] dynamic = ["version"]