it'd be nice if I only had to specify my library's dependencies in [edgetest.envs.core] instead of needing to remember to add every new test dependency. there's already a considerable amount of env declaration duplication required throughout the various package managing tools, so it'd be nice if there wasn't another layer of duplication here
I'd like to only need to specify the libraries I want to try updating in [edgetest.envs.core]. I'd like to inherit the rest of the dependencies from an environment file. for example:
[edgetest.envs.core]
python_version = 3.9
conda_install =
./environment.yml
extras =
all
upgrade =
click
dask[dataframe]
fsspec
intake[dataframe]
pandas
pyarrow
PyYAML
s3fs
prefect
dash
dash-bootstrap-components
it'd be nice if I only had to specify my library's dependencies in
[edgetest.envs.core]instead of needing to remember to add every new test dependency. there's already a considerable amount of env declaration duplication required throughout the various package managing tools, so it'd be nice if there wasn't another layer of duplication hereI'd like to only need to specify the libraries I want to try updating in
[edgetest.envs.core]. I'd like to inherit the rest of the dependencies from an environment file. for example: