Skip to content

Commit

Permalink
Merge pull request #49 from wharton/feature/ai/dependency-range
Browse files Browse the repository at this point in the history
Pin low end of dependencies.
  • Loading branch information
FlipperPA committed Jan 31, 2024
2 parents 2ca526e + 1b1402c commit 61d659a
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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"]

Expand Down

0 comments on commit 61d659a

Please sign in to comment.