ArtesiaWater / hydropandas

Module for loading observation data into custom DataFrames
https://hydropandas.readthedocs.io
MIT License
52 stars 11 forks source link

update requirements? #196

Closed HMEUW closed 6 months ago

HMEUW commented 6 months ago

I used hydropandas 0.11 in a new environment. I only installed the packages listed in the hydropandas requirements.

Then, the Solinst import module was not working. It requires:

Should we include these packages in the hydropandas requirements file? Or skip it, because the solinst package is a very specific one?

OnnoEbbens commented 6 months ago

Hi Hendrik, for certain submodules, such as Solinst, hydropandas has optional dependencies that are not installed by default (to avoid installing a lot of unwanted modules). If you want to install all the optional dependencies as well you can install hydropandas using pip install hydropandas[full]

I don't see 'etree' listed as an optional dependency. I assumed it was a built-in python module but I will check this.

HMEUW commented 6 months ago

Thanks for the swift reply and full explanation. I did not know that option was available.