Closed greyltc closed 4 years ago
This library should not be called by the end user. Therefore, it was named like this on purpose to discourage users to import it.
I'd like to second the name change because this is causing issues interfacing with other packages: https://github.com/pyvisa/pyvisa-py/issues/216
I changed the name some time ago (for the package in site_packaged not for the project). See PR #238 and related discussion in https://github.com/pyvisa/pyvisa/pull/525 and https://github.com/pyvisa/pyvisa-py/issues/239#issue-641390139. I may have missed something in setup.cfg . Feel free to open a PR.
@hgrecco
This library should not be called by the end user. Therefore, it was named like this on purpose to discourage users to import it.
Yeah, I get that. Maybe the best way to discourage people from randomly importing it is by adding a line in the docs telling the user this is not something they should be importing? (if there's not one already) EDIT: I put a note into the docs in my PR https://github.com/pyvisa/pyvisa-py/pull/255/commits/7654e506050a3e0a9fc881716fddb57cfac81bcc
I had not noticed #239. This seems like the best reason I've seen for switching the installed module name to a legal one. I'll make a PR and see how it goes.
The current situation (master) is as follows:
I personally do not see the need for changing anything at this point on master. #255 will lead to pip listing the project as pyvisa_py which from my point of view is not desirable.
I will close this issue since I consider it fixed on master.
I think https://github.com/pyvisa/pyvisa-py/blob/master/setup.cfg#L2 means this gets installed into my site-packages folder as
pyvisa-py
and PEP8 tells me that having a hyphen in a module name is a no-no.The module's folder name in this repo is
pyvisa_py
, as it should be.Looks like pyvisa's ResourceManager looks first for a module named
pyvisa_py
and then falls back topyvisa-py
: https://github.com/pyvisa/pyvisa/blob/master/pyvisa/highlevel.py#L2823-L2828Should line 2 of setup.cfg be changed to
pyvisa_py
?I'm mentioning this because I maintain pyvisa-py's conda-forge feedstock, and this module naming issue has come up there https://github.com/conda-forge/pyvisa-py-feedstock/pull/14