simonw / csvs-to-sqlite

Convert CSV files into a SQLite database
Apache License 2.0
879 stars 69 forks source link

pandas version is pinned at less than current release #52

Closed psychemedia closed 5 years ago

psychemedia commented 5 years ago

The setup.py pins the version of pandas to a version that is behind the current release.

Click is also installed at a version that breaks datasette, which presumably requires a later version.

simonw commented 5 years ago

Click 6 was the last version to support Python 2.x, and csvs-to-sqlite currently works with that version of Python.

I'm inclined to drop 2.x support completely now, and tell users that if they need 2.x they can install a previous version.

simonw commented 5 years ago

Looks like Pandas 0.25.0 doesn't support Python 3.x either.