hgrecco / pint-pandas

Pandas support for pint
Other
166 stars 41 forks source link

Dependency specification in current master is wrong (probably failed automatic merge) #188

Closed burnpanck closed 1 year ago

burnpanck commented 1 year ago

Installing pint_pandas from the current master will not install neither pint nor pandas. The relevant subsection of pyproject.toml is as follows:

[project]
name = "Pint-Pandas"
requires-python = ">=3.9"
# ...

[tool.setuptools.package-data]
pint_pandas = [
      "py.typed"
      ]
dependencies = [
  "pint>=0.21",
  "pandas>=1.5"
]

# ...

I'm pretty sure the dependencies key was never meant to be found under [tool.setuptools.package-data] but instead under [project].