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
Could the pandas.tests package be an optional package? It consumes a huge portion of the package size, which may not be required for many production purposes.
The feature-request is that a default pandas install would exclude pandas.tests and a pandas[tests] install would include that package. The general pattern is that production dependencies (requirements.txt) would use pandas and any dev/test/CI dependencies (requirements_dev.txt) would add the optional extra for pandas[tests].
The text was updated successfully, but these errors were encountered:
Could the
pandas.tests
package be an optional package? It consumes a huge portion of the package size, which may not be required for many production purposes.The feature-request is that a default
pandas
install would excludepandas.tests
and apandas[tests]
install would include that package. The general pattern is that production dependencies (requirements.txt) would usepandas
and any dev/test/CI dependencies (requirements_dev.txt) would add the optional extra forpandas[tests]
.The text was updated successfully, but these errors were encountered: