garrettj403/SciencePlots

Install names mismatch in v1.1.0

alexfikl opened this issue · 5 comments

In version 1.1.0 the import names were changed to scienceplots (lowercase) but the folder name / repo name / pypi name are still SciencePlots (camelcase). For a simple reproducer, clone the repo and run

python -m pip install -e .

which gives

error: package directory 'scienceplots' does not exist

due to

packages=["scienceplots"],

The Arch package is working around it too
https://aur.archlinux.org/cgit/aur.git/tree/PKGBUILD?h=python-scienceplots#n20

Thanks for letting us know. Will fix that ASAP.
Can be reproduced on linux-based OSs. Not on Windows.

Thanks for letting us know. Will fix that ASAP. Can be reproduced on linux-based OSs. Not on Windows.

Thanks for the quick response!
On Windows it probably has something to do with case insensitive file systems?

On Windows it probably has something to do with case insensitive file systems?

Was definitely that. Sorry for not testing on Linux.

Reopening because github doesn't show git rename change.

Didn't expect renaming to be this difficult. Solved.

Thanks for your help.