You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now __version__ is set in the ncpi_fhir_client package init and then imported in the setup.py file. Because of this, when someone tries to install the package via pip install ., a bunch of module not found errors result. This is happening because Python is trying to import ncpi_fhir_client and all of its dependencies before any of the requirements are installed.
Solution
Move __version__=foo into the setup.py file
The text was updated successfully, but these errors were encountered:
Issue
Right now
__version__
is set in thencpi_fhir_client
package init and then imported in the setup.py file. Because of this, when someone tries to install the package viapip install .
, a bunch of module not found errors result. This is happening because Python is trying to importncpi_fhir_client
and all of its dependencies before any of the requirements are installed.Solution
Move
__version__=foo
into the setup.py fileThe text was updated successfully, but these errors were encountered: