diff --git a/pyproject.toml b/pyproject.toml index 7790b5c..de56741 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [project] name = "nfl_data_py" dynamic = ["version"] -requires-python = ">=3.6.1,<3.13" +requires-python = ">=3.6.1,<3.14" description = "python library for interacting with NFL data" urls = { homepage = "https://github.com/nflverse/nfl_data_py"} authors = [{name = "cooperdff"}] @@ -14,8 +14,8 @@ license = {text = "MIT"} dependencies = [ "appdirs==1.*", "fastparquet>0.5", - "numpy==1.*", - "pandas==1.*", + "numpy>=1.20,<3.0", + "pandas>=1.3,<3.0", ] classifiers = [ # Trove classifiers. Full list: https://pypi.python.org/pypi?%3Aaction=list_classifiers @@ -29,6 +29,7 @@ classifiers = [ 'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: 3.11', 'Programming Language :: Python :: 3.12', + 'Programming Language :: Python :: 3.13', 'Programming Language :: Python :: Implementation :: CPython', 'Programming Language :: Python :: Implementation :: PyPy', 'Intended Audience :: Developers',