Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Many HDF5-DIAG warnings when used with xarray and dask #1242

Open
nbud opened this issue Mar 31, 2023 · 2 comments
Open

Many HDF5-DIAG warnings when used with xarray and dask #1242

nbud opened this issue Mar 31, 2023 · 2 comments

Comments

@nbud
Copy link

nbud commented Mar 31, 2023

Steps to reproduce:

  • Environment: Python 3.10, Ubuntu 22.04, the packages were installed in a new clean virtual environment using pip install netcdf4 dask xarray
  • Create a new netcdf4 dataset, read it with xarray and dask; see example script below.
  • Expected behavior: the script runs without warning
  • Actual behavior: the script runs successfully but with many HDF5-DIAG warnings

pip list:

Package            Version
------------------ --------
cftime             1.6.2
click              8.1.3
cloudpickle        2.2.1
dask               2023.3.2
fsspec             2023.3.0
importlib-metadata 6.1.0
locket             1.0.0
netCDF4            1.6.3
numpy              1.24.2
packaging          23.0
pandas             1.5.3
partd              1.3.0
pip                23.0.1
python-dateutil    2.8.2
pytz               2023.3
PyYAML             6.0
setuptools         67.4.0
six                1.16.0
toolz              0.12.0
wheel              0.38.4
xarray             2023.3.0
zipp               3.15.0

Example script (taken from pydata/xarray#7549 (comment)):

import argparse
import pathlib
import tempfile
from typing import List

import netCDF4
import xarray

HERE = pathlib.Path(__file__).parent


def add_arguments(parser: argparse.ArgumentParser):
    parser.add_argument('count', type=int, default=200, nargs='?')
    parser.add_argument('--file-cache-maxsize', type=int, required=False)


def main():
    parser = argparse.ArgumentParser()
    add_arguments(parser)
    opts = parser.parse_args()

    if opts.file_cache_maxsize is not None:
        xarray.set_options(file_cache_maxsize=opts.file_cache_maxsize)

    temp_dir = tempfile.mkdtemp(dir=HERE, prefix='work-dir-')
    work_dir = pathlib.Path(temp_dir)
    print("Working in", work_dir.name)

    print("Making", opts.count, "datasets")
    dataset_paths = make_many_datasets(work_dir, count=opts.count)

    print("Combining", len(dataset_paths), "datasets")
    dataset = xarray.open_mfdataset(dataset_paths, lock=False)
    dataset.to_netcdf(work_dir / 'combined.nc')


def make_many_datasets(
    work_dir: pathlib.Path,
    count: int = 200
) -> List[pathlib.Path]:
    dataset_paths = []
    for i in range(count):
        variable = f'var_{i}'
        path = work_dir / f'{variable}.nc'
        dataset_paths.append(path)
        make_dataset(path, variable)

    return dataset_paths


def make_dataset(
    path: pathlib.Path,
    variable: str,
) -> None:
    ds = netCDF4.Dataset(path, "w", format="NETCDF4")
    ds.createDimension("x", 1)
    var = ds.createVariable(variable, "i8", ("x",))
    var[:] = 1
    ds.close()


if __name__ == '__main__':
    main()

Content of stdout:

Working in work-dir-kt4qcsng
Making 200 datasets
Combining 200 datasets

Content of stderr (partial):

HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:
  #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute
    major: Attribute
    minor: Can't open object
  #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed
    major: Virtual Object Layer
    minor: Can't open object
  #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed
    major: Virtual Object Layer
    minor: Can't open object
  #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute
    major: Attribute
    minor: Can't open object
  #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header
    major: Attribute
    minor: Unable to initialize object
  #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'
    major: Attribute
    minor: Object not found
HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:
  #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute
    major: Attribute
    minor: Can't open object
  #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed
    major: Virtual Object Layer
    minor: Can't open object
  #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed
    major: Virtual Object Layer
    minor: Can't open object
  #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute
    major: Attribute
    minor: Can't open object
  #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header
    major: Attribute
    minor: Unable to initialize object
  #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'
    major: Attribute
    minor: Object not found
HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:
  #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute
    major: Attribute
    minor: Can't open object
  #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed
    major: Virtual Object Layer
    minor: Can't open object
  #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed
    major: Virtual Object Layer
    minor: Can't open object
  #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute
    major: Attribute
    minor: Can't open object
  #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header
    major: Attribute
    minor: Unable to initialize object
  #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'
    major: Attribute
    minor: Object not found
HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:
  #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute
    major: Attribute
    minor: Can't open object
...

Downgrading to netcdf4=1.5.8 fixes the issue. I don't know if the root cause is netcdf4, xarray or dask, I just wanted to raise awareness here. Probably related: #1241

@ocefpaf
Copy link
Contributor

ocefpaf commented Mar 31, 2023

I was able to reproduce this with conda packages. Only when downgrading hdf5 to 1.12.1 the outputs went away :-/

tlvu added a commit to Ouranosinc/PAVICS-e2e-workflow-tests that referenced this issue May 11, 2023
tlvu added a commit to Ouranosinc/PAVICS-e2e-workflow-tests that referenced this issue May 23, 2023
This reverts commit 5355487ff58f81e0c3a008a45320846f432c4407.

DockerHub build failure:
```
2023-05-11T15:45:59Z #11 440.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY
2023-05-11T15:45:59Z #11 441.0 Could not solve for environment specs
2023-05-11T15:45:59Z #11 441.0 The following packages are incompatible
2023-05-11T15:45:59Z #11 441.0 ├─ cartopy >=0.21.0 is installable with the potential options
2023-05-11T15:45:59Z #11 441.0 │ ├─ cartopy [0.21.0|0.21.1] would require
2023-05-11T15:45:59Z #11 441.0 │ │ └─ geos >=3.11.1,<3.11.2.0a0 , which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ ├─ cartopy 0.21.0 would require
2023-05-11T15:45:59Z #11 441.0 │ │ └─ geos >=3.11.0,<3.11.1.0a0 , which conflicts with any installable versions previously reported;
2023-05-11T15:45:59Z #11 441.0 │ ├─ cartopy [0.21.0|0.21.1] would require
2023-05-11T15:45:59Z #11 441.0 │ │ └─ python >=3.11,<3.12.0a0 , which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ ├─ cartopy [0.21.0|0.21.1] would require
2023-05-11T15:45:59Z #11 441.0 │ │ └─ python >=3.8,<3.9.0a0 , which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ ├─ cartopy [0.21.0|0.21.1] would require
2023-05-11T15:45:59Z #11 441.0 │ │ └─ python >=3.9,<3.10.0a0 , which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ ├─ cartopy 0.21.1 would require
2023-05-11T15:45:59Z #11 441.0 │ │ └─ geos >=3.11.2,<3.11.3.0a0 , which conflicts with any installable versions previously reported;
2023-05-11T15:45:59Z #11 441.0 │ └─ cartopy 0.21.1 conflicts with any installable versions previously reported;
2023-05-11T15:45:59Z #11 441.0 ├─ cdms2 is installable with the potential options
2023-05-11T15:45:59Z #11 441.0 │ ├─ cdms2 3.1.5 would require
2023-05-11T15:45:59Z #11 441.0 │ │ └─ cdtime [ |3.* ] with the potential options
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ cdtime 3.1.4 would require
2023-05-11T15:45:59Z #11 441.0 │ │ │ └─ jasper >=2.0.33,<3.0a0 with the potential options
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ jasper 2.0.33 would require
2023-05-11T15:45:59Z #11 441.0 │ │ │ │ └─ jpeg >=9d,<10a , which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ │ │ └─ jasper 2.0.33 would require
2023-05-11T15:45:59Z #11 441.0 │ │ │ └─ jpeg >=9e,<10a , which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ cdtime [2.10|2.12|...|3.1.3] would require
2023-05-11T15:45:59Z #11 441.0 │ │ │ └─ python [2.7* |>=2.7,<2.8.0a0 ], which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ cdtime [2.12|3.0] would require
2023-05-11T15:45:59Z #11 441.0 │ │ │ └─ python [3.5* |>=3.5,<3.6.0a0 ], which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ cdtime [2.12|3.0] would require
2023-05-11T15:45:59Z #11 441.0 │ │ │ └─ python 3.6* , which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ cdtime [3.0|3.1.0|3.1.2|3.1.3|3.1.4] would require
2023-05-11T15:45:59Z #11 441.0 │ │ │ └─ python >=3.6,<3.7.0a0 , which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ cdtime [3.1.2|3.1.3|3.1.4] would require
2023-05-11T15:45:59Z #11 441.0 │ │ │ └─ python >=3.7,<3.8.0a0 , which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ cdtime [3.1.2|3.1.3|3.1.4] would require
2023-05-11T15:45:59Z #11 441.0 │ │ │ └─ python >=3.8,<3.9.0a0 , which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ cdtime 3.1.4 would require
2023-05-11T15:45:59Z #11 441.0 │ │ │ └─ python >=3.9,<3.10.0a0 , which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ │ └─ cdtime 3.1.4 would require
2023-05-11T15:45:59Z #11 441.0 │ │ └─ libnetcdf >=4.9.1,<4.9.2.0a0 with the potential options
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ libnetcdf 4.9.1 would require
2023-05-11T15:45:59Z #11 441.0 │ │ │ └─ hdf5 >=1.12.2,<1.12.3.0a0 mpi_mpich_*, which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ libnetcdf 4.9.1 would require
2023-05-11T15:45:59Z #11 441.0 │ │ │ └─ hdf5 >=1.14.0,<1.14.1.0a0 mpi_mpich_*, which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ libnetcdf 4.9.1 would require
2023-05-11T15:45:59Z #11 441.0 │ │ │ └─ hdf5 >=1.12.2,<1.12.3.0a0 mpi_openmpi_*, which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ libnetcdf 4.9.1 would require
2023-05-11T15:45:59Z #11 441.0 │ │ │ └─ hdf5 >=1.14.0,<1.14.1.0a0 mpi_openmpi_*, which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ libnetcdf 4.9.1 would require
2023-05-11T15:45:59Z #11 441.0 │ │ │ └─ hdf5 >=1.12.2,<1.12.3.0a0 , which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ │ └─ libnetcdf 4.9.1 would require
2023-05-11T15:45:59Z #11 441.0 │ │ └─ hdf5 >=1.14.0,<1.14.1.0a0 , which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ ├─ cdms2 [2.10|2.12|...|3.1.4] would require
2023-05-11T15:45:59Z #11 441.0 │ │ └─ python [2.7* |>=2.7,<2.8.0a0 ], which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ ├─ cdms2 [3.0|3.0.1] would require
2023-05-11T15:45:59Z #11 441.0 │ │ └─ python [3.5* |>=3.5,<3.6.0a0 ], which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ ├─ cdms2 3.0 would require
2023-05-11T15:45:59Z #11 441.0 │ │ └─ python 3.6* , which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ ├─ cdms2 [3.0.1|3.1.0|3.1.2|3.1.3|3.1.4] would require
2023-05-11T15:45:59Z #11 441.0 │ │ └─ python >=3.6,<3.7.0a0 , which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ ├─ cdms2 [3.1.2|3.1.3|3.1.4] would require
2023-05-11T15:45:59Z #11 441.0 │ │ └─ python >=3.7,<3.8.0a0 , which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ ├─ cdms2 [3.1.4|3.1.5] would require
2023-05-11T15:45:59Z #11 441.0 │ │ └─ python >=3.6,<3.7.0a0 *_cpython, which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ ├─ cdms2 [3.1.4|3.1.5] would require
2023-05-11T15:45:59Z #11 441.0 │ │ └─ python >=3.7,<3.8.0a0 *_cpython, which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ ├─ cdms2 3.1.4 would require
2023-05-11T15:45:59Z #11 441.0 │ │ └─ python >=3.8,<3.9.0a0 , which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ ├─ cdms2 [3.1.4|3.1.5] would require
2023-05-11T15:45:59Z #11 441.0 │ │ └─ python >=3.8,<3.9.0a0 *_cpython, which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ ├─ cdms2 3.1.5 would require
2023-05-11T15:45:59Z #11 441.0 │ │ └─ python >=3.9,<3.10.0a0 *_cpython, which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ └─ cdms2 3.1.5 would require
2023-05-11T15:45:59Z #11 441.0 │ └─ libnetcdf >=4.9.1,<4.9.2.0a0 , which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 ├─ jupyterhub is installable with the potential options
2023-05-11T15:45:59Z #11 441.0 │ ├─ jupyterhub [1.5.0|2.0.0|...|4.0.0] would require
2023-05-11T15:45:59Z #11 441.0 │ │ └─ configurable-http-proxy >=4 with the potential options
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ configurable-http-proxy [4.0.1|4.1.0] would require
2023-05-11T15:45:59Z #11 441.0 │ │ │ └─ nodejs 6.* , which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ configurable-http-proxy [4.1.0|4.2.0] would require
2023-05-11T15:45:59Z #11 441.0 │ │ │ └─ nodejs 11.* , which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ configurable-http-proxy [4.2.0|4.2.1] would require
2023-05-11T15:45:59Z #11 441.0 │ │ │ └─ nodejs 10.* with the potential options
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ nodejs [10.12.0|10.13.0|10.15.3|10.4.1|10.8.0], which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ │ │ └─ nodejs [10.16.3|10.22.0|...|13.9.0] would require
2023-05-11T15:45:59Z #11 441.0 │ │ │ └─ icu >=64.2,<65.0a0 , which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ configurable-http-proxy [4.2.0|4.2.1|4.2.3] would require
2023-05-11T15:45:59Z #11 441.0 │ │ │ └─ nodejs 12.* with the potential options
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ nodejs [10.16.3|10.22.0|...|13.9.0], which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ nodejs [12.1.0|12.3.0|12.3.1|12.4.0], which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ nodejs [12.18.3|12.19.0|...|15.2.1] would require
2023-05-11T15:45:59Z #11 441.0 │ │ │ │ └─ icu >=67.1,<68.0a0 , which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ nodejs 12.19.0, which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ │ │ └─ nodejs 12.22.6, which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ configurable-http-proxy [4.2.0|4.2.1] would require
2023-05-11T15:45:59Z #11 441.0 │ │ │ └─ nodejs 13.* , which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ configurable-http-proxy 4.2.3 would require
2023-05-11T15:45:59Z #11 441.0 │ │ │ └─ nodejs 14.* with the potential options
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ nodejs [12.18.3|12.19.0|...|15.2.1], which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ nodejs [14.14.0|14.15.1|14.8.0], which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ nodejs 14.15.4, which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ nodejs 14.17.1, which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ nodejs 14.17.4, which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ nodejs [14.18.3|16.12.0|...|17.8.0] would require
2023-05-11T15:45:59Z #11 441.0 │ │ │ │ └─ icu >=69.1,<70.0a0 , which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ nodejs 14.18.3, which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ nodejs [14.18.3|14.19.0|...|18.9.1] would require
2023-05-11T15:45:59Z #11 441.0 │ │ │ │ └─ icu >=70.1,<71.0a0 , which conflicts with any installable versions previously reported;
2023-05-11T15:45:59Z #11 441.0 │ │ │ └─ nodejs 14.20.1, which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ configurable-http-proxy 4.2.3 would require
2023-05-11T15:45:59Z #11 441.0 │ │ │ └─ nodejs 15.* with the potential options
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ nodejs [12.18.3|12.19.0|...|15.2.1], which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ nodejs [15.10.0|15.2.1|15.3.0|15.8.0], which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ nodejs [15.11.0|15.12.0|15.13.0], which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ │ │ └─ nodejs 15.14.0, which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ configurable-http-proxy [4.3.1|4.3.2|4.4.0|4.5.0] would require
2023-05-11T15:45:59Z #11 441.0 │ │ │ └─ nodejs >=12.19.0,<13.0a0 with the potential options
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ nodejs [12.18.3|12.19.0|...|15.2.1], which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ nodejs 12.19.0, which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ │ │ └─ nodejs 12.22.6, which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ configurable-http-proxy [4.3.1|4.3.2|4.4.0] would require
2023-05-11T15:45:59Z #11 441.0 │ │ │ └─ nodejs >=14.15.4,<15.0a0 with the potential options
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ nodejs 14.15.4, which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ nodejs 14.17.1, which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ nodejs 14.17.4, which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ nodejs [14.18.3|16.12.0|...|17.8.0], which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ nodejs 14.18.3, which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ nodejs [14.18.3|14.19.0|...|18.9.1], which cannot be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ │ └─ nodejs 14.20.1, which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ configurable-http-proxy 4.3.1 would require
2023-05-11T15:45:59Z #11 441.0 │ │ │ └─ nodejs >=15.11.0,<16.0a0 , which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ configurable-http-proxy [4.3.2|4.4.0|4.5.0|4.5.1] would require
2023-05-11T15:45:59Z #11 441.0 │ │ │ └─ nodejs >=15.14.0,<16.0a0 , which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ configurable-http-proxy [4.5.0|4.5.1] would require
2023-05-11T15:45:59Z #11 441.0 │ │ │ └─ nodejs >=12.22.6,<13.0a0 , which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ configurable-http-proxy 4.5.0 would require
2023-05-11T15:45:59Z #11 441.0 │ │ │ └─ nodejs >=14.17.4,<15.0a0 with the potential options
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ nodejs 14.17.4, which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ nodejs [14.18.3|16.12.0|...|17.8.0], which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ nodejs 14.18.3, which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ nodejs [14.18.3|14.19.0|...|18.9.1], which cannot be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ │ └─ nodejs 14.20.1, which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ configurable-http-proxy 4.5.0 would require
2023-05-11T15:45:59Z #11 441.0 │ │ │ └─ nodejs >=14.17.1,<15.0a0 with the potential options
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ nodejs 14.17.1, which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ nodejs 14.17.4, which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ nodejs [14.18.3|16.12.0|...|17.8.0], which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ nodejs 14.18.3, which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ nodejs [14.18.3|14.19.0|...|18.9.1], which cannot be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ │ └─ nodejs 14.20.1, which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ configurable-http-proxy 4.5.0 would require
2023-05-11T15:45:59Z #11 441.0 │ │ │ └─ nodejs >=16.13.0,<17.0a0 with the potential options
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ nodejs [14.18.3|16.12.0|...|17.8.0], which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ nodejs [14.18.3|14.19.0|...|18.9.1], which cannot be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ nodejs 16.19.0 would require
2023-05-11T15:45:59Z #11 441.0 │ │ │ │ └─ icu >=72.1,<73.0a0 , which conflicts with any installable versions previously reported;
2023-05-11T15:45:59Z #11 441.0 │ │ │ └─ nodejs 16.13.1 conflicts with any installable versions previously reported;
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ configurable-http-proxy [4.5.0|4.5.1] would require
2023-05-11T15:45:59Z #11 441.0 │ │ │ └─ nodejs [>=17.1.0,<18.0a0 |>=17.4.0,<18.0a0 ] with the potential options
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ nodejs [14.18.3|16.12.0|...|17.8.0], which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ │ └─ nodejs [14.18.3|14.19.0|...|18.9.1], which cannot be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ configurable-http-proxy [4.5.1|4.5.3] would require
2023-05-11T15:45:59Z #11 441.0 │ │ │ └─ nodejs >=14.18.3,<15.0a0 with the potential options
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ nodejs [14.18.3|16.12.0|...|17.8.0], which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ nodejs 14.18.3, which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ nodejs [14.18.3|14.19.0|...|18.9.1], which cannot be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ │ └─ nodejs 14.20.1, which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ configurable-http-proxy 4.5.1 would require
2023-05-11T15:45:59Z #11 441.0 │ │ │ └─ nodejs >=16.13.2,<17.0a0 with the potential options
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ nodejs [14.18.3|16.12.0|...|17.8.0], which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ nodejs [14.18.3|14.19.0|...|18.9.1], which cannot be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ │ └─ nodejs 16.19.0, which cannot be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ configurable-http-proxy [4.5.3|4.5.4] would require
2023-05-11T15:45:59Z #11 441.0 │ │ │ └─ nodejs [>=16.15.0,<17.0a0 |>=16.17.1,<17.0a0 ], which cannot be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ configurable-http-proxy [4.5.3|4.5.4] would require
2023-05-11T15:45:59Z #11 441.0 │ │ │ └─ nodejs >=14.20.1,<15.0a0 with the potential options
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ nodejs [14.18.3|14.19.0|...|18.9.1], which cannot be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ │ └─ nodejs 14.20.1, which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ configurable-http-proxy [4.5.3|4.5.4] would require
2023-05-11T15:45:59Z #11 441.0 │ │ │ └─ nodejs >=17.9.0,<18.0a0 , which cannot be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ configurable-http-proxy [4.5.3|4.5.4] would require
2023-05-11T15:45:59Z #11 441.0 │ │ │ └─ nodejs [>=18.11.0,<19.0a0 |>=18.12.1,<19.0a0 ] but there are no viable options
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ nodejs [14.18.3|14.19.0|...|18.9.1], which cannot be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ │ └─ nodejs 18.15.0 conflicts with any installable versions previously reported;
2023-05-11T15:45:59Z #11 441.0 │ │ └─ configurable-http-proxy 4.0.1 conflicts with any installable versions previously reported;
2023-05-11T15:45:59Z #11 441.0 │ ├─ jupyterhub [0.6.1|0.7.0|0.7.1|0.7.2] would require
2023-05-11T15:45:59Z #11 441.0 │ │ └─ python 3.4* , which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ ├─ jupyterhub [0.6.1|0.7.0|...|0.9.4] would require
2023-05-11T15:45:59Z #11 441.0 │ │ └─ python [3.5* |>=3.5,<3.6.0a0 ], which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ ├─ jupyterhub [0.7.2|0.8.0|0.8.1] would require
2023-05-11T15:45:59Z #11 441.0 │ │ └─ python 3.6* , which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ ├─ jupyterhub [0.9.0|0.9.1|...|1.4.2] would require
2023-05-11T15:45:59Z #11 441.0 │ │ └─ python >=3.6,<3.7.0a0 , which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ ├─ jupyterhub [0.9.4|0.9.5|...|1.5.0] would require
2023-05-11T15:45:59Z #11 441.0 │ │ └─ python >=3.7,<3.8.0a0 , which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ ├─ jupyterhub [1.0.0|1.1.0|...|1.5.0] would require
2023-05-11T15:45:59Z #11 441.0 │ │ └─ python >=3.8,<3.9.0a0 , which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ ├─ jupyterhub [1.1.0|1.2.1|...|1.5.0] would require
2023-05-11T15:45:59Z #11 441.0 │ │ └─ python >=3.9,<3.10.0a0 , which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ ├─ jupyterhub [3.0.0|3.1.0|3.1.1|4.0.0] would require
2023-05-11T15:45:59Z #11 441.0 │ │ └─ __win , which is missing on the system;
2023-05-11T15:45:59Z #11 441.0 │ └─ jupyterhub [0.9.4|0.9.5|...|3.1.1] conflicts with any installable versions previously reported;
2023-05-11T15:45:59Z #11 441.0 ├─ matplotlib is installable with the potential options
2023-05-11T15:45:59Z #11 441.0 │ ├─ matplotlib 3.4.3 would require
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ matplotlib-base >=3.4.3,<3.4.4.0a0 with the potential options
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ matplotlib-base [3.4.3|3.5.0|...|3.7.0] would require
2023-05-11T15:45:59Z #11 441.0 │ │ │ │ └─ python >=3.10,<3.11.0a0 with the potential options
2023-05-11T15:45:59Z #11 441.0 │ │ │ │ ├─ python 3.10.11 would require
2023-05-11T15:45:59Z #11 441.0 │ │ │ │ │ └─ openssl >=3.1.0,<4.0a0 , which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ │ │ │ └─ python [3.10.0|3.10.1|...|3.10.9], which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ matplotlib-base [2.2.5|3.2.0|...|3.5.1] would require
2023-05-11T15:45:59Z #11 441.0 │ │ │ │ └─ python >=3.7,<3.8.0a0 , which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ matplotlib-base [2.2.5|3.2.0|...|3.7.0] would require
2023-05-11T15:45:59Z #11 441.0 │ │ │ │ └─ python >=3.8,<3.9.0a0 , which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ matplotlib-base [2.2.5|3.3.2|...|3.7.0] would require
2023-05-11T15:45:59Z #11 441.0 │ │ │ │ └─ python >=3.9,<3.10.0a0 , which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ │ │ └─ matplotlib-base 3.4.3 conflicts with any installable versions previously reported;
2023-05-11T15:45:59Z #11 441.0 │ │ └─ pyqt with the potential options
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ pyqt [4.11.4|5.12.3|5.6.0|5.9.2] would require
2023-05-11T15:45:59Z #11 441.0 │ │ │ └─ python [2.7* |>=2.7,<2.8.0a0 ], which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ pyqt 4.11.4 would require
2023-05-11T15:45:59Z #11 441.0 │ │ │ └─ python 3.4* , which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ pyqt [4.11.4|5.6.0] would require
2023-05-11T15:45:59Z #11 441.0 │ │ │ └─ python [3.5* |>=3.5,<3.6.0a0 ], which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ pyqt [4.11.4|5.6.0] would require
2023-05-11T15:45:59Z #11 441.0 │ │ │ └─ python 3.6* , which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ pyqt [5.12.3|5.15.4|5.15.7|5.6.0|5.9.2] would require
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ pyqtwebengine 5.12.1 py37he336c9b_5, which requires
2023-05-11T15:45:59Z #11 441.0 │ │ │ │ └─ python >=3.7,<3.8.0a0 , which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ │ │ └─ python >=3.7,<3.8.0a0 , which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ pyqt 5.12.3 would require
2023-05-11T15:45:59Z #11 441.0 │ │ │ └─ pyqtwebengine 5.12.1 py310hfcd6d55_8, which requires
2023-05-11T15:45:59Z #11 441.0 │ │ │ └─ qt >=5.12.9,<5.13.0a0 with the potential options
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ qt 5.12.9 would require
2023-05-11T15:45:59Z #11 441.0 │ │ │ │ └─ icu >=69.1,<70.0a0 , which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ qt 5.12.9 would require
2023-05-11T15:45:59Z #11 441.0 │ │ │ │ └─ icu >=67.1,<68.0a0 , which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ │ │ └─ qt 5.12.9 would require
2023-05-11T15:45:59Z #11 441.0 │ │ │ └─ icu >=68.1,<69.0a0 with the potential options
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ icu 68.2 conflicts with any installable versions previously reported;
2023-05-11T15:45:59Z #11 441.0 │ │ │ └─ icu 68.1, which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ pyqt [5.12.3|5.6.0|5.9.2] would require
2023-05-11T15:45:59Z #11 441.0 │ │ │ └─ python >=3.6,<3.7.0a0 , which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ pyqt [5.12.3|5.15.4|5.15.7] would require
2023-05-11T15:45:59Z #11 441.0 │ │ │ └─ python >=3.8,<3.9.0a0 , which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ pyqt [5.12.3|5.15.4|5.15.7] would require
2023-05-11T15:45:59Z #11 441.0 │ │ │ └─ python >=3.9,<3.10.0a0 , which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ pyqt 5.15.4 would require
2023-05-11T15:45:59Z #11 441.0 │ │ │ └─ qt-main >=5.15.3,<5.16.0a0 with the potential options
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ qt-main 5.15.3 would require
2023-05-11T15:45:59Z #11 441.0 │ │ │ │ ├─ krb5 >=1.19.3,<1.20.0a0 , which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ │ │ │ └─ openssl >=1.1.1n,<1.1.2a , which conflicts with any installable versions previously reported;
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ qt-main [5.15.3|5.15.4] would require
2023-05-11T15:45:59Z #11 441.0 │ │ │ │ ├─ krb5 >=1.19.3,<1.20.0a0 , which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ │ │ │ └─ openssl >=1.1.1o,<1.1.2a , which conflicts with any installable versions previously reported;
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ qt-main 5.15.6 would require
2023-05-11T15:45:59Z #11 441.0 │ │ │ │ ├─ krb5 >=1.19.3,<1.20.0a0 , which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ │ │ │ └─ openssl >=1.1.1q,<1.1.2a , which conflicts with any installable versions previously reported;
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ qt-main [5.15.6|5.15.8] would require
2023-05-11T15:45:59Z #11 441.0 │ │ │ │ ├─ krb5 [>=1.19.3,<1.20.0a0 |>=1.20.1,<1.21.0a0 ] with the potential options
2023-05-11T15:45:59Z #11 441.0 │ │ │ │ │ ├─ krb5 [1.19.3|1.19.4], which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ │ │ │ │ └─ krb5 1.20.1 conflicts with any installable versions previously reported;
2023-05-11T15:45:59Z #11 441.0 │ │ │ │ └─ libpq >=15.1,<16.0a0 with the potential options
2023-05-11T15:45:59Z #11 441.0 │ │ │ │ ├─ libpq [15.1|15.2] would require
2023-05-11T15:45:59Z #11 441.0 │ │ │ │ │ └─ krb5 >=1.20.1,<1.21.0a0 , which conflicts with any installable versions previously reported;
2023-05-11T15:45:59Z #11 441.0 │ │ │ │ └─ libpq 15.1 would require
2023-05-11T15:45:59Z #11 441.0 │ │ │ │ └─ krb5 >=1.19.3,<1.20.0a0 , which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ qt-main 5.15.6 would require
2023-05-11T15:45:59Z #11 441.0 │ │ │ │ ├─ krb5 >=1.19.3,<1.20.0a0 , which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ │ │ │ └─ openssl >=1.1.1s,<1.1.2a , which conflicts with any installable versions previously reported;
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ qt-main 5.15.8 would require
2023-05-11T15:45:59Z #11 441.0 │ │ │ │ └─ icu >=72.1,<73.0a0 , which conflicts with any installable versions previously reported;
2023-05-11T15:45:59Z #11 441.0 │ │ │ └─ qt-main 5.15.8 would require
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ libjpeg-turbo >=2.1.5.1,<3.0a0 , which requires
2023-05-11T15:45:59Z #11 441.0 │ │ │ │ └─ jpeg <0.0.0a , which conflicts with any installable versions previously reported;
2023-05-11T15:45:59Z #11 441.0 │ │ │ └─ libpq >=15.2,<16.0a0 , which cannot be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ pyqt 5.15.4 would require
2023-05-11T15:45:59Z #11 441.0 │ │ │ └─ qt-main >=5.15.2,<5.16.0a0 with the potential options
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ qt-main 5.15.3, which cannot be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ qt-main [5.15.3|5.15.4], which cannot be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ qt-main 5.15.6, which cannot be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ qt-main [5.15.6|5.15.8], which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ qt-main 5.15.6, which cannot be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ qt-main 5.15.8, which cannot be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ qt-main 5.15.8, which cannot be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ qt-main 5.15.2 would require
2023-05-11T15:45:59Z #11 441.0 │ │ │ │ └─ icu >=69.1,<70.0a0 , which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ qt-main 5.15.2 would require
2023-05-11T15:45:59Z #11 441.0 │ │ │ │ └─ icu >=68.2,<69.0a0 , which conflicts with any installable versions previously reported;
2023-05-11T15:45:59Z #11 441.0 │ │ │ └─ qt-main 5.15.2 conflicts with any installable versions previously reported;
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ pyqt 5.15.7 would require
2023-05-11T15:45:59Z #11 441.0 │ │ │ └─ qt-main >=5.15.4,<5.16.0a0 with the potential options
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ qt-main [5.15.3|5.15.4], which cannot be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ qt-main 5.15.6, which cannot be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ qt-main [5.15.6|5.15.8], which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ qt-main 5.15.6, which cannot be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ qt-main 5.15.8, which cannot be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ │ └─ qt-main 5.15.8, which cannot be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ pyqt 5.15.7 would require
2023-05-11T15:45:59Z #11 441.0 │ │ │ └─ qt-main >=5.15.6,<5.16.0a0 with the potential options
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ qt-main 5.15.6, which cannot be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ qt-main [5.15.6|5.15.8], which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ qt-main 5.15.6, which cannot be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ qt-main 5.15.8, which cannot be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ │ └─ qt-main 5.15.8, which cannot be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ pyqt 5.15.7 would require
2023-05-11T15:45:59Z #11 441.0 │ │ │ └─ python >=3.11,<3.12.0a0 , which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ pyqt 5.15.7 conflicts with any installable versions previously reported;
2023-05-11T15:45:59Z #11 441.0 │ │ └─ pyqt [5.6.0|5.9.2] conflicts with any installable versions previously reported;
2023-05-11T15:45:59Z #11 441.0 │ ├─ matplotlib [1.5.3|2.1.2|2.2.3|2.2.4] would require
2023-05-11T15:45:59Z #11 441.0 │ │ └─ python [2.7* |>=2.7,<2.8.0a0 ], which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ ├─ matplotlib 1.5.3 would require
2023-05-11T15:45:59Z #11 441.0 │ │ └─ python 3.4* , which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ ├─ matplotlib 1.5.3 would require
2023-05-11T15:45:59Z #11 441.0 │ │ └─ python 3.5* , which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ ├─ matplotlib [2.1.2|2.2.3|...|3.3.4] would require
2023-05-11T15:45:59Z #11 441.0 │ │ └─ python >=3.6,<3.7.0a0 , which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ ├─ matplotlib [2.1.2|2.2.3|...|3.5.3] would require
2023-05-11T15:45:59Z #11 441.0 │ │ └─ python >=3.7,<3.8.0a0 , which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ ├─ matplotlib [2.2.4|3.1.1|...|3.7.1] would require
2023-05-11T15:45:59Z #11 441.0 │ │ └─ python >=3.8,<3.9.0a0 , which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ ├─ matplotlib 2.2.5 would require
2023-05-11T15:45:59Z #11 441.0 │ │ └─ matplotlib-base >=2.2.5,<2.2.6.0a0 with the potential options
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ matplotlib-base [2.2.5|3.2.0|...|3.5.1], which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ matplotlib-base [2.2.5|3.2.0|...|3.7.0], which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ matplotlib-base [2.2.5|3.3.2|...|3.7.0], which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ matplotlib-base 2.2.5 would require
2023-05-11T15:45:59Z #11 441.0 │ │ │ └─ python >=2.7,<2.8.0a0 , which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ │ └─ matplotlib-base [2.2.5|3.2.0|...|3.3.2] would require
2023-05-11T15:45:59Z #11 441.0 │ │ └─ python >=3.6,<3.7.0a0 , which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ ├─ matplotlib 3.0.1 would require
2023-05-11T15:45:59Z #11 441.0 │ │ └─ matplotlib-base 3.0.1 py37hc2fb212_1001, which does not exist (perhaps a missing channel);
2023-05-11T15:45:59Z #11 441.0 │ ├─ matplotlib 3.0.2 would require
2023-05-11T15:45:59Z #11 441.0 │ │ └─ matplotlib-base 3.0.2 py36h167e16e_1000, which does not exist (perhaps a missing channel);
2023-05-11T15:45:59Z #11 441.0 │ ├─ matplotlib 3.0.2 would require
2023-05-11T15:45:59Z #11 441.0 │ │ └─ matplotlib-base 3.0.2 py36h167e16e_1001, which does not exist (perhaps a missing channel);
2023-05-11T15:45:59Z #11 441.0 │ ├─ matplotlib 3.0.2 would require
2023-05-11T15:45:59Z #11 441.0 │ │ └─ matplotlib-base 3.0.2 py37h167e16e_1001, which does not exist (perhaps a missing channel);
2023-05-11T15:45:59Z #11 441.0 │ ├─ matplotlib [3.2.0|3.3.0] would require
2023-05-11T15:45:59Z #11 441.0 │ │ └─ matplotlib-base [>=3.2.0,<3.2.1.0a0 |>=3.3.0,<3.3.1.0a0 ], which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ ├─ matplotlib 3.2.1 would require
2023-05-11T15:45:59Z #11 441.0 │ │ └─ matplotlib-base >=3.2.1,<3.2.2.0a0 with the potential options
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ matplotlib-base [2.2.5|3.2.0|...|3.5.1], which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ matplotlib-base [2.2.5|3.2.0|...|3.7.0], which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ matplotlib-base [2.2.5|3.2.0|...|3.3.2], which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ └─ matplotlib-base 3.2.1 conflicts with any installable versions previously reported;
2023-05-11T15:45:59Z #11 441.0 │ ├─ matplotlib 3.2.2 would require
2023-05-11T15:45:59Z #11 441.0 │ │ └─ matplotlib-base >=3.2.2,<3.2.3.0a0 with the potential options
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ matplotlib-base [2.2.5|3.2.0|...|3.5.1], which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ matplotlib-base [2.2.5|3.2.0|...|3.7.0], which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ matplotlib-base [2.2.5|3.2.0|...|3.3.2], which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ └─ matplotlib-base 3.2.2 conflicts with any installable versions previously reported;
2023-05-11T15:45:59Z #11 441.0 │ ├─ matplotlib 3.3.1 would require
2023-05-11T15:45:59Z #11 441.0 │ │ └─ matplotlib-base >=3.3.1,<3.3.2.0a0 with the potential options
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ matplotlib-base [2.2.5|3.2.0|...|3.5.1], which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ matplotlib-base [2.2.5|3.2.0|...|3.7.0], which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ matplotlib-base [2.2.5|3.2.0|...|3.3.2], which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ └─ matplotlib-base 3.3.1 conflicts with any installable versions previously reported;
2023-05-11T15:45:59Z #11 441.0 │ ├─ matplotlib 3.3.2 would require
2023-05-11T15:45:59Z #11 441.0 │ │ └─ matplotlib-base >=3.3.2,<3.3.3.0a0 with the potential options
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ matplotlib-base [2.2.5|3.2.0|...|3.5.1], which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ matplotlib-base [2.2.5|3.2.0|...|3.7.0], which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ matplotlib-base [2.2.5|3.3.2|...|3.7.0], which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ matplotlib-base [2.2.5|3.2.0|...|3.3.2], which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ └─ matplotlib-base 3.3.2 conflicts with any installable versions previously reported;
2023-05-11T15:45:59Z #11 441.0 │ ├─ matplotlib [3.3.2|3.3.3|...|3.7.1] would require
2023-05-11T15:45:59Z #11 441.0 │ │ └─ python >=3.9,<3.10.0a0 , which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ ├─ matplotlib 3.5.0 would require
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ matplotlib-base >=3.5.0,<3.5.1.0a0 with the potential options
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ matplotlib-base [3.4.3|3.5.0|...|3.7.0], which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ matplotlib-base [2.2.5|3.2.0|...|3.5.1], which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ matplotlib-base [2.2.5|3.2.0|...|3.7.0], which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ matplotlib-base [2.2.5|3.3.2|...|3.7.0], which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ │ └─ matplotlib-base 3.5.0 conflicts with any installable versions previously reported;
2023-05-11T15:45:59Z #11 441.0 │ │ └─ pyqt with the potential options
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ pyqt [4.11.4|5.12.3|5.6.0|5.9.2], which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ pyqt 4.11.4, which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ pyqt [4.11.4|5.6.0], which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ pyqt [4.11.4|5.6.0], which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ pyqt [5.12.3|5.15.4|5.15.7|5.6.0|5.9.2], which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ pyqt 5.12.3, which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ pyqt [5.12.3|5.6.0|5.9.2], which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ pyqt [5.12.3|5.15.4|5.15.7], which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ pyqt [5.12.3|5.15.4|5.15.7], which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ pyqt 5.15.4, which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ pyqt 5.15.4, which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ pyqt 5.15.7, which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ pyqt 5.15.7, which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ pyqt 5.15.7, which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ pyqt 5.15.7 conflicts with any installable versions previously reported;
2023-05-11T15:45:59Z #11 441.0 │ │ └─ pyqt [5.6.0|5.9.2] conflicts with any installable versions previously reported;
2023-05-11T15:45:59Z #11 441.0 │ ├─ matplotlib 3.5.1 would require
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ matplotlib-base >=3.5.1,<3.5.2.0a0 with the potential options
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ matplotlib-base [3.4.3|3.5.0|...|3.7.0], which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ matplotlib-base [2.2.5|3.2.0|...|3.5.1], which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ matplotlib-base [2.2.5|3.2.0|...|3.7.0], which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ matplotlib-base [2.2.5|3.3.2|...|3.7.0], which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ │ └─ matplotlib-base 3.5.1 conflicts with any installable versions previously reported;
2023-05-11T15:45:59Z #11 441.0 │ │ └─ pyqt with the potential options
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ pyqt [4.11.4|5.12.3|5.6.0|5.9.2], which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ pyqt 4.11.4, which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ pyqt [4.11.4|5.6.0], which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ pyqt [4.11.4|5.6.0], which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ pyqt [5.12.3|5.15.4|5.15.7|5.6.0|5.9.2], which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ pyqt 5.12.3, which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ pyqt [5.12.3|5.6.0|5.9.2], which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ pyqt [5.12.3|5.15.4|5.15.7], which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ pyqt [5.12.3|5.15.4|5.15.7], which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ pyqt 5.15.4, which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ pyqt 5.15.4, which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ pyqt 5.15.7, which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ pyqt 5.15.7, which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ pyqt 5.15.7, which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ pyqt 5.15.7 conflicts with any installable versions previously reported;
2023-05-11T15:45:59Z #11 441.0 │ │ └─ pyqt [5.6.0|5.9.2] conflicts with any installable versions previously reported;
2023-05-11T15:45:59Z #11 441.0 │ ├─ matplotlib [3.5.2|3.5.3|3.6.0|3.6.1] would require
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ matplotlib-base >=3.6.0,<3.6.1.0a0 , which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ pyqt with the potential options
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ pyqt [4.11.4|5.12.3|5.6.0|5.9.2], which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ pyqt 4.11.4, which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ pyqt [4.11.4|5.6.0], which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ pyqt [4.11.4|5.6.0], which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ pyqt [5.12.3|5.15.4|5.15.7|5.6.0|5.9.2], which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ pyqt 5.12.3, which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ pyqt [5.12.3|5.6.0|5.9.2], which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ pyqt [5.12.3|5.15.4|5.15.7], which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ pyqt [5.12.3|5.15.4|5.15.7], which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ pyqt 5.15.4, which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ pyqt 5.15.4, which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ pyqt 5.15.7, which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ pyqt 5.15.7, which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ pyqt 5.15.7, which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ pyqt 5.15.7 conflicts with any installable versions previously reported;
2023-05-11T15:45:59Z #11 441.0 │ │ │ └─ pyqt [5.6.0|5.9.2] conflicts with any installable versions previously reported;
2023-05-11T15:45:59Z #11 441.0 │ │ └─ python >=3.10,<3.11.0a0 with the potential options
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ python 3.10.11, which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ └─ python [3.10.0|3.10.1|...|3.10.9], which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ ├─ matplotlib [3.6.1|3.6.2|3.6.3|3.7.0|3.7.1] would require
2023-05-11T15:45:59Z #11 441.0 │ │ └─ python >=3.11,<3.12.0a0 , which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ ├─ matplotlib 3.6.2 would require
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ matplotlib-base >=3.6.2,<3.6.3.0a0 with the potential options
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ matplotlib-base [3.4.3|3.5.0|...|3.7.0], which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ matplotlib-base [2.2.5|3.2.0|...|3.7.0], which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ matplotlib-base [2.2.5|3.3.2|...|3.7.0], which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ matplotlib-base [3.6.2|3.6.3|3.7.0] would require
2023-05-11T15:45:59Z #11 441.0 │ │ │ │ └─ python >=3.11,<3.12.0a0 , which can be installed;
2023-05-11T15:45:59Z #11 441.0 │ │ │ └─ matplotlib-base 3.6.2 conflicts with any installable versions previously reported;
2023-05-11T15:45:59Z #11 441.0 │ │ └─ pyqt >=5 with the potential options
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ pyqt [4.11.4|5.12.3|5.6.0|5.9.2], which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ pyqt [4.11.4|5.6.0], which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ pyqt [4.11.4|5.6.0], which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ pyqt [5.12.3|5.15.4|5.15.7|5.6.0|5.9.2], which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ pyqt 5.12.3, which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ pyqt [5.12.3|5.6.0|5.9.2], which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ pyqt [5.12.3|5.15.4|5.15.7], which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ pyqt [5.12.3|5.15.4|5.15.7], which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ pyqt 5.15.4, which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ pyqt 5.15.4, which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ pyqt 5.15.7, which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ pyqt 5.15.7, which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ pyqt 5.15.7, which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ pyqt 5.15.7 conflicts with any installable versions previously reported;
2023-05-11T15:45:59Z #11 441.0 │ │ └─ pyqt [5.6.0|5.9.2] conflicts with any installable versions previously reported;
2023-05-11T15:45:59Z #11 441.0 │ ├─ matplotlib 3.6.3 would require
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ matplotlib-base >=3.6.3,<3.6.4.0a0 , which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ └─ pyqt >=5 with the potential options
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ pyqt [4.11.4|5.12.3|5.6.0|5.9.2], which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ pyqt [4.11.4|5.6.0], which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ pyqt [4.11.4|5.6.0], which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ pyqt [5.12.3|5.15.4|5.15.7|5.6.0|5.9.2], which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ pyqt 5.12.3, which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ pyqt [5.12.3|5.6.0|5.9.2], which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ pyqt [5.12.3|5.15.4|5.15.7], which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ pyqt [5.12.3|5.15.4|5.15.7], which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ pyqt 5.15.4, which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ pyqt 5.15.4, which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ pyqt 5.15.7, which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ pyqt 5.15.7, which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ pyqt 5.15.7, which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ pyqt 5.15.7 conflicts with any installable versions previously reported;
2023-05-11T15:45:59Z #11 441.0 │ │ └─ pyqt [5.6.0|5.9.2] conflicts with any installable versions previously reported;
2023-05-11T15:45:59Z #11 441.0 │ ├─ matplotlib 3.7.0 would require
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ matplotlib-base >=3.7.0,<3.7.1.0a0 with the potential options
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ matplotlib-base [3.4.3|3.5.0|...|3.7.0], which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ matplotlib-base [2.2.5|3.2.0|...|3.7.0], which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ matplotlib-base [2.2.5|3.3.2|...|3.7.0], which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ │ ├─ matplotlib-base [3.6.2|3.6.3|3.7.0], which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ │ └─ matplotlib-base 3.7.0 conflicts with any installable versions previously reported;
2023-05-11T15:45:59Z #11 441.0 │ │ └─ pyqt >=5.10 with the potential options
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ pyqt [4.11.4|5.12.3|5.6.0|5.9.2], which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ pyqt [5.12.3|5.15.4|5.15.7|5.6.0|5.9.2], which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ pyqt 5.12.3, which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ pyqt [5.12.3|5.6.0|5.9.2], which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ pyqt [5.12.3|5.15.4|5.15.7], which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ pyqt [5.12.3|5.15.4|5.15.7], which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ pyqt 5.15.4, which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ pyqt 5.15.4, which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ pyqt 5.15.7, which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ pyqt 5.15.7, which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ pyqt 5.15.7, which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ └─ pyqt 5.15.7 conflicts with any installable versions previously reported;
2023-05-11T15:45:59Z #11 441.0 │ ├─ matplotlib 3.7.1 would require
2023-05-11T15:45:59Z #11 441.0 │ │ └─ pyqt >=5.10 with the potential options
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ pyqt [4.11.4|5.12.3|5.6.0|5.9.2], which can be installed (as previously explained);
2023-05-11T15:45:59Z #11 441.0 │ │ ├─ pyqt [5.12.3|5.15.4|5.15.7|5.6.0|5.9.2], which can be installed (as previously explained);
2023-05-11T15:46:00Z #11 441.0 │ │ ├─ pyqt 5.12.3, which can be installed (as previously explained);
2023-05-11T15:46:00Z #11 441.0 │ │ ├─ pyqt [5.12.3|5.6.0|5.9.2], which can be installed (as previously explained);
2023-05-11T15:46:00Z #11 441.0 │ │ ├─ pyqt [5.12.3|5.15.4|5.15.7], which can be installed (as previously explained);
2023-05-11T15:46:00Z #11 441.0 │ │ ├─ pyqt [5.12.3|5.15.4|5.15.7], which can be installed (as previously explained);
2023-05-11T15:46:00Z #11 441.0 │ │ ├─ pyqt 5.15.4, which can be installed (as previously explained);
2023-05-11T15:46:00Z #11 441.0 │ │ ├─ pyqt 5.15.4, which can be installed (as previously explained);
2023-05-11T15:46:00Z #11 441.0 │ │ ├─ pyqt 5.15.7, which can be installed (as previously explained);
2023-05-11T15:46:00Z #11 441.0 │ │ ├─ pyqt 5.15.7, which can be installed (as previously explained);
2023-05-11T15:46:00Z #11 441.0 │ │ ├─ pyqt 5.15.7, which can be installed (as previously explained);
2023-05-11T15:46:00Z #11 441.0 │ │ └─ pyqt 5.15.7 conflicts with any installable versions previously reported;
2023-05-11T15:46:00Z #11 441.0 │ └─ matplotlib [2.0.2|2.1.0|...|3.7.1] conflicts with any installable versions previously reported;
2023-05-11T15:46:00Z #11 441.0 ├─ netcdf4 1.5.8 is installable with the potential options
2023-05-11T15:46:00Z #11 441.0 │ ├─ netcdf4 1.5.8 would require
2023-05-11T15:46:00Z #11 441.0 │ │ └─ hdf5 >=1.12.1,<1.12.2.0a0 mpi_openmpi_*, which conflicts with any installable versions previously reported;
2023-05-11T15:46:00Z #11 441.0 │ ├─ netcdf4 1.5.8 would require
2023-05-11T15:46:00Z #11 441.0 │ │ └─ hdf5 >=1.12.1,<1.12.2.0a0 mpi_mpich_*, which conflicts with any installable versions previously reported;
2023-05-11T15:46:00Z #11 441.0 │ ├─ netcdf4 1.5.8 would require
2023-05-11T15:46:00Z #11 441.0 │ │ └─ python >=3.7,<3.8.0a0 , which can be installed;
2023-05-11T15:46:00Z #11 441.0 │ ├─ netcdf4 1.5.8 would require
2023-05-11T15:46:00Z #11 441.0 │ │ └─ python >=3.8,<3.9.0a0 , which can be installed;
2023-05-11T15:46:00Z #11 441.0 │ ├─ netcdf4 1.5.8 would require
2023-05-11T15:46:00Z #11 441.0 │ │ └─ python >=3.9,<3.10.0a0 , which can be installed;
2023-05-11T15:46:00Z #11 441.0 │ └─ netcdf4 1.5.8 would require
2023-05-11T15:46:00Z #11 441.0 │ └─ hdf5 >=1.12.1,<1.12.2.0a0 , which conflicts with any installable versions previously reported;
2023-05-11T15:46:00Z #11 441.0 ├─ nodejs >=16.0 is installable with the potential options
2023-05-11T15:46:00Z #11 441.0 │ ├─ nodejs [14.18.3|16.12.0|...|17.8.0], which can be installed (as previously explained);
2023-05-11T15:46:00Z #11 441.0 │ ├─ nodejs [14.18.3|14.19.0|...|18.9.1], which cannot be installed (as previously explained);
2023-05-11T15:46:00Z #11 441.0 │ ├─ nodejs [16.10.0|16.11.1|...|16.9.0] conflicts with any installable versions previously reported;
2023-05-11T15:46:00Z #11 441.0 │ ├─ nodejs 16.19.0, which cannot be installed (as previously explained);
2023-05-11T15:46:00Z #11 441.0 │ ├─ nodejs 16.13.1 conflicts with any installable versions previously reported;
2023-05-11T15:46:00Z #11 441.0 │ └─ nodejs 18.15.0 conflicts with any installable versions previously reported;
2023-05-11T15:46:00Z #11 441.0 └─ ravenpy >=0.7.8 is installable with the potential options
2023-05-11T15:46:00Z #11 441.0 ├─ ravenpy [0.10.0|0.7.8|0.8.0|0.8.1|0.9.0] would require
2023-05-11T15:46:00Z #11 441.0 │ ├─ fiona with the potential options
2023-05-11T15:46:00Z #11 441.0 │ │ ├─ fiona [1.9.0|1.9.1] would require
2023-05-11T15:46:00Z #11 441.0 │ │ │ └─ libgdal >=3.6.2,<3.7.0a0 but there are no viable options
2023-05-11T15:46:00Z #11 441.0 │ │ │ ├─ libgdal [3.6.2|3.6.3] would require
2023-05-11T15:46:00Z #11 441.0 │ │ │ │ ├─ geos >=3.11.1,<3.11.2.0a0 , which can be installed;
2023-05-11T15:46:00Z #11 441.0 │ │ │ │ ├─ hdf5 >=1.12.2,<1.12.3.0a0 , which can be installed;
2023-05-11T15:46:00Z #11 441.0 │ │ │ │ └─ icu >=70.1,<71.0a0 , which conflicts with any installable versions previously reported;
2023-05-11T15:46:00Z #11 441.0 │ │ │ ├─ libgdal [3.6.3|3.6.4] would require
2023-05-11T15:46:00Z #11 441.0 │ │ │ │ ├─ geos >=3.11.2,<3.11.3.0a0 , which conflicts with any installable versions previously reported;
2023-05-11T15:46:00Z #11 441.0 │ │ │ │ ├─ hdf5 >=1.14.0,<1.14.1.0a0 , which can be installed;
2023-05-11T15:46:00Z #11 441.0 │ │ │ │ └─ icu >=72.1,<73.0a0 , which conflicts with any installable versions previously reported;
2023-05-11T15:46:00Z #11 441.0 │ │ │ ├─ libgdal 3.6.3 would require
2023-05-11T15:46:00Z #11 441.0 │ │ │ │ ├─ geos >=3.11.2,<3.11.3.0a0 , which conflicts with any installable versions previously reported;
2023-05-11T15:46:00Z #11 441.0 │ │ │ │ ├─ hdf5 >=1.14.0,<1.14.1.0a0 , which can be installed;
2023-05-11T15:46:00Z #11 441.0 │ │ │ │ └─ icu >=70.1,<71.0a0 , which conflicts with any installable versions previously reported;
2023-05-11T15:46:00Z #11 441.0 │ │ │ ├─ libgdal 3.6.3 would require
2023-05-11T15:46:00Z #11 441.0 │ │ │ │ ├─ geos >=3.11.2,<3.11.3.0a0 , which conflicts with any installable versions previously reported;
2023-05-11T15:46:00Z #11 441.0 │ │ │ │ ├─ hdf5 >=1.12.2,<1.12.3.0a0 , which can be installed;
2023-05-11T15:46:00Z #11 441.0 │ │ │ │ └─ icu >=70.1,<71.0a0 , which conflicts with any installable versions previously reported;
2023-05-11T15:46:00Z #11 441.0 │ │ │ └─ libgdal 3.6.2 conflicts with any installable versions previously reported;
2023-05-11T15:46:00Z #11 441.0 │ │ ├─ fiona [1.8.22|1.9.0|1.9.1|1.9.2|1.9.3] would require
2023-05-11T15:46:00Z #11 441.0 │ │ │ └─ python >=3.11,<3.12.0a0 , which can be installed;
2023-05-11T15:46:00Z #11 441.0 │ │ ├─ fiona [1.8.11|1.8.12|...|1.9.3] would require
2023-05-11T15:46:00Z #11 441.0 │ │ │ └─ python >=3.8,<3.9.0a0 , which can be installed;
2023-05-11T15:46:00Z #11 441.0 │ │ ├─ fiona [1.8.17|1.8.18|...|1.9.3] would require
2023-05-11T15:46:00Z #11 441.0 │ │ │ └─ python >=3.9,<3.10.0a0 , which can be installed;
2023-05-11T15:46:00Z #11 441.0 │ │ ├─ fiona [1.9.2|1.9.3] would require
2023-05-11T15:46:00Z #11 441.0 │ │ │ └─ libgdal >=3.6.3,<3.7.0a0 , which cannot be installed (as previously explained);
2023-05-11T15:46:00Z #11 441.0 │ │ ├─ fiona 1.9.1 conflicts with any installable versions previously reported;
2023-05-11T15:46:00Z #11 441.0 │ │ ├─ fiona 1.8.20 would require
2023-05-11T15:46:00Z #11 441.0 │ │ │ └─ libgdal >=3.4.0,<3.5.0a0 but there are no viable options
2023-05-11T15:46:00Z #11 441.0 │ │ │ ├─ libgdal [3.4.3|3.5.3|3.6.0|3.6.1] would require
2023-05-11T15:46:00Z #11 441.0 │ │ │ │ ├─ geos >=3.11.1,<3.11.2.0a0 , which can be installed;
2023-05-11T15:46:00Z #11 441.0 │ │ │ │ └─ icu >=70.1,<71.0a0 , which conflicts with any installable versions previously reported;
2023-05-11T15:46:00Z #11 441.0 │ │ │ ├─ libgdal [3.3.3|3.4.0] would require
2023-05-11T15:46:00Z #11 441.0 │ │ │ │ ├─ geos >=3.10.1,<3.10.2.0a0 , which conflicts with any installable versions previously reported;
2023-05-11T15:46:00Z #11 441.0 │ │ │ │ └─ icu >=68.2,<69.0a0 , which conflicts with any installable versions previously reported;
2023-05-11T15:46:00Z #11 441.0 │ │ │ ├─ libgdal [3.3.3|3.4.0] would require
2023-05-11T15:46:00Z #11 441.0 │ │ │ │ ├─ geos >=3.10.1,<3.10.2.0a0 , which conflicts with any installable versions previously reported;
2023-05-11T15:46:00Z #11 441.0 │ │ │ │ └─ icu >=69.1,<70.0a0 , which can be installed;
2023-05-11T15:46:00Z #11 441.0 │ │ │ ├─ libgdal [3.3.3|3.4.0] would require
2023-05-11T15:46:00Z #11 441.0 │ │ │ │ ├─ geos >=3.10.0,<3.10.1.0a0 , which conflicts with any installable versions previously reported;
2023-05-11T15:46:00Z #11 441.0 │ │ │ │ └─ icu >=69.1,<70.0a0 , which can be installed;
2023-05-11T15:46:00Z #11 441.0 │ │ │ ├─ libgdal [3.4.0|3.4.1] would require
2023-05-11T15:46:00Z #11 441.0 │ │ │ │ ├─ geos >=3.10.1,<3.10.2.0a0 , which conflicts with any installable versions previously reported;
2023-05-11T15:46:00Z #11 441.0 │ │ │ │ ├─ icu >=69.1,<70.0a0 , which can be installed;
2023-05-11T15:46:00Z #11 441.0 │ │ │ │ └─ proj >=8.2.1,<8.2.2.0a0 with the potential options
2023-05-11T15:46:00Z #11 441.0 │ │ │ │ ├─ proj 8.2.1 would require
2023-05-11T15:46:00Z #11 441.0 │ │ │ │ │ └─ proj4 999999999999 , which can be installed;
2023-05-11T15:46:00Z #11 441.0 │ │ │ │ └─ proj 8.2.1 conflicts with any installable versions previously reported;
2023-05-11T15:46:00Z #11 441.0 │ │ │ ├─ libgdal [3.3.3|3.4.1|3.4.2|3.4.3|3.5.0] would require
2023-05-11T15:46:00Z #11 441.0 │ │ │ │ └─ geos >=3.10.2,<3.10.3.0a0 , which conflicts with any installable versions previously reported;
2023-05-11T15:46:00Z #11 441.0 │ │ │ └─ libgdal 3.4.1 conflicts with any installable versions previously reported;
2023-05-11T15:46:00Z #11 441.0 │ │ ├─ fiona 1.8.21 would require
2023-05-11T15:46:00Z #11 441.0 │ │ │ └─ libgdal >=3.4.1,<3.5.0a0 but there are no viable options
2023-05-11T15:46:00Z #11 441.0 │ │ │ ├─ libgdal [3.4.3|3.5.3|3.6.0|3.6.1], which cannot be installed (as previously explained);
2023-05-11T15:46:00Z #11 441.0 │ │ │ ├─ libgdal [3.4.0|3.4.1], which cannot be installed (as previously explained);
2023-05-11T15:46:00Z #11 441.0 │ │ │ ├─ libgdal [3.3.3|3.4.1|3.4.2|3.4.3|3.5.0], which cannot be installed (as previously explained);
2023-05-11T15:46:00Z #11 441.0 │ │ │ └─ libgdal 3.4.1 conflicts with any installable versions previously reported;
2023-05-11T15:46:00Z #11 441.0 │ │ ├─ fiona 1.8.22 would require
2023-05-11T15:46:00Z #11 441.0 │ │ │ └─ libgdal [>=3.5.2,<3.6.0a0 |>=3.5.3,<3.6.0a0 ] but there are no viable options
2023-05-11T15:46:00Z #11 441.0 │ │ │ ├─ libgdal [3.5.1|3.5.2|3.5.3|3.6.0] would require
2023-05-11T15:46:00Z #11 441.0 │ │ │ │ ├─ geos >=3.11.0,<3.11.1.0a0 , which conflicts with any installable versions previously reported;
2023-05-11T15:46:00Z #11 441.0 │ │ │ │ ├─ hdf5 >=1.12.2,<1.12.3.0a0 , which can be installed;
2023-05-11T15:46:00Z #11 441.0 │ │ │ │ └─ icu >=70.1,<71.0a0 , which conflicts with any installable versions previously reported;
2023-05-11T15:46:00Z #11 441.0 │ │ │ ├─ libgdal [3.4.3|3.5.3|3.6.0|3.6.1], which cannot be installed (as previously explained);
2023-05-11T15:46:00Z #11 441.0 │ │ │ ├─ libgdal 3.5.3 would require
2023-05-11T15:46:00Z #11 441.0 │ │ │ │ ├─ geos >=3.11.2,<3.11.3.0a0 , which conflicts with any installable versions previously reported;
2023-05-11T15:46:00Z #11 441.0 │ │ │ │ └─ icu >=72.1,<73.0a0 , which conflicts with any installable versions previously reported;
2023-05-11T15:46:00Z #11 441.0 │ │ │ └─ libgdal 3.5.3 would require
2023-05-11T15:46:00Z #11 441.0 │ │ │ ├─ geos >=3.11.2,<3.11.3.0a0 , which conflicts with any installable versions previously reported;
2023-05-11T15:46:00Z #11 441.0 │ │ │ └─ icu >=70.1,<71.0a0 , which conflicts with any installable versions previously reported;
2023-05-11T15:46:00Z #11 441.0 │ │ ├─ fiona 1.8.21 would require
2023-05-11T15:46:00Z #11 441.0 │ │ │ └─ libgdal >=3.5.0,<3.6.0a0 but there are no viable options
2023-05-11T15:46:00Z #11 441.0 │ │ │ ├─ libgdal [3.5.0|3.5.1] would require
2023-05-11T15:46:00Z #11 441.0 │ │ │ │ ├─ geos >=3.11.0,<3.11.1.0a0 , which conflicts with any installable versions previously reported;
2023-05-11T15:46:00Z #11 441.0 │ │ │ │ ├─ icu >=70.1,<71.0a0 , which conflicts with any installable versions previously reported;
2023-05-11T15:46:00Z #11 441.0 │ │ │ │ └─ libpq >=14.4,<15.0a0 but there are no viable options
2023-05-11T15:46:00Z #11 441.0 │ │ │ │ ├─ libpq [14.4|14.5] would require
2023-05-11T15:46:00Z #11 441.0 │ │ │ │ │ └─ krb5 >=1.19.3,<1.20.0a0 , which can be installed;
2023-05-11T15:46:00Z #11 441.0 │ │ │ │ └─ libpq 14.5 would require
2023-05-11T15:46:00Z #11 441.0 │ │ │ │ └─ krb5 >=1.20.1,<1.21.0a0 , which conflicts with any installable versions previously reported;
2023-05-11T15:46:00Z #11 441.0 │ │ │ ├─ libgdal 3.5.0 would require
2023-05-11T15:46:00Z #11 441.0 │ │ │ │ ├─ geos >=3.11.0,<3.11.1.0a0 , which conflicts with any installable versions previously reported;
2023-05-11T15:46:00Z #11 441.0 │ │ │ │ ├─ icu >=70.1,<71.0a0 , which conflicts with any installable versions previously reported;
2023-05-11T15:46:00Z #11 441.0 │ │ │ │ ├─ jpeg >=9e,<10a , which can be installed;
2023-05-11T15:46:00Z #11 441.0 │ │ │ │ ├─ libdap4 >=3.20.6,<3.20.7.0a0 , which requires
2023-05-11T15:46:00Z #11 441.0 │ │ │ │ │ └─ curl >=7.75.0,<9.0a0 with the potential options
2023-05-11T15:46:00Z #11 441.0 │ │ │ │ │ ├─ curl [7.75.0|7.76.0|7.76.1] would require
2023-05-11T15:46:00Z #11 441.0 │ │ │ │ │ │ └─ krb5 >=1.17.1,<1.18.0a0 , which can be installed;
2023-05-11T15:46:00Z #11 441.0 │ │ │ │ │ ├─ curl [7.76.1|7.77.0|7.78.0] would require
2023-05-11T15:46:00Z #11 441.0 │ │ │ │ │ │ └─ krb5 >=1.19.1,<1.20.0a0 , which can be installed;
2023-05-11T15:46:00Z #11 441.0 │ │ │ │ │ ├─ curl 7.79.0 would require
2023-05-11T15:46:00Z #11 441.0 │ │ │ │ │ │ └─ libcurl 7.79.0 h2574ce0_0, which does not exist (perhaps a missing channel);
2023-05-11T15:46:00Z #11 441.0 │ │ │ │ │ ├─ curl [7.79.1|7.80.0|7.81.0|7.82.0] would require
2023-05-11T15:46:00Z #11 441.0 │ │ │ │ │ │ └─ krb5 >=1.19.2,<1.20.0a0 , which can be installed;
2023-05-11T15:46:00Z #11 441.0 │ │ │ │ │ ├─ curl [7.83.0|7.83.1|7.85.0|7.86.0] would require
2023-05-11T15:46:00Z #11 441.0 │ │ │ │ │ │ ├─ krb5 >=1.19.3,<1.20.0a0 , which can be installed;
2023-05-11T15:46:00Z #11 441.0 │ │ │ │ │ │ └─ libcurl [7.86.0 h2283fc2_0|7.86.0 h2283fc2_1|7.86.0 h7bff187_1], which requires
2023-05-11T15:46:00Z #11 441.0 │ │ │ │ │ │ └─ krb5 >=1.19.3,<1.20.0a0 , which can be installed;
2023-05-11T15:46:00Z #11 441.0 │ │ │ │ │ ├─ curl [7.86.0|7.87.0|...|8.0.1] would require
2023-05-11T15:46:00Z #11 441.0 │ │ │ │ │ │ ├─ krb5 >=1.20.1,<1.21.0a0 , which conflicts with any installable versions previously reported;
2023-05-11T15:46:00Z #11 441.0 │ │ │ │ │ │ └─ libcurl [7.86.0 h6312ad2_2|7.86.0 hdc1c0ab_2|...|8.0.0 h588be90_0], which requires
2023-05-11T15:46:00Z #11 441.0 │ │ │ │ │ │ └─ krb5 >=1.20.1,<1.21.0a0 , which conflicts with any installable versions previously reported;
2023-05-11T15:46:00Z #11 441.0 │ │ │ │ │ ├─ curl [7.78.0|7.80.0|...|7.88.1] conflicts with any installable versions previously reported;
2023-05-11T15:46:00Z #11 441.0 │ │ │ │ │ └─ curl 7.83.0 would require
2023-05-11T15:46:00Z #11 441.0 │ │ │ │ │ └─ libcurl 7.83.0 h0b77cf5_0, which does not exist (perhaps a missing channel);
2023-05-11T15:46:00Z #11 441.0 │ │ │ │ └─ libpq >=14.4,<15.0a0 , which cannot be installed (as previously explained);
2023-05-11T15:46:00Z #11 441.0 │ │ │ ├─ libgdal [3.5.1|3.5.2|3.5.3|3.6.0], which cannot be installed (as previously explained);
2023-05-11T15:46:00Z #11 441.0 │ │ │ ├─ libgdal [3.4.3|3.5.3|3.6.0|3.6.1], which cannot be installed (as previously explained);
2023-05-11T15:46:00Z #11 441.0 │ │ │ ├─ libgdal 3.5.3, which cannot be installed (as previously explained);
2023-05-11T15:46:00Z #11 441.0 │ │ │ ├─ libgdal [3.3.3|3.4.1|3.4.2|3.4.3|3.5.0], which cannot be installed (as previously explained);
2023-05-11T15:46:00Z #11 441.0 │ │ │ ├─ libgdal 3.5.0 would require
2023-05-11T15:46:00Z #11 441.0 │ │ │ │ └─ geos >=3.10.3,<3.10.4.0a0 , which conflicts with any installable versions previously reported;
2023-05-11T15:46:00Z #11 441.0 │ │ │ └─ libgdal 3.5.3, which cannot be installed (as previously explained);
2023-05-11T15:46:00Z #11 441.0 │ │ ├─ fiona 1.8.22 would require
2023-05-11T15:46:00Z #11 441.0 │ │ │ └─ libgdal >=3.6.0,<3.7.0a0 but there are no viable options
2023-05-11T15:46:00Z #11 441.0 │ │ │ ├─ libgdal [3.5.1|3.5.2|3.5.3|3.6.0], which cannot be installed (as previously explained);
2023-05-11T15:46:00Z #11 441.0 │ │ │ ├─ libgdal [3.4.3|3.5.3|3.6.0|3.6.1], which cannot be installed (as previously explained);
2023-05-11T15:46:00Z #11 441.0 │ │ │ ├─ libgdal [3.6.2|3.6.3], which cannot be installed (as previously explained);
2023-05-11T15:46:00Z #11 441.0 │ │ │ ├─ libgdal [3.6.3|3.6.4], which cannot be installed (as previously explained);
2023-05-11T15:46:00Z #11 441.0 │ │ │ ├─ libgdal 3.6.3, which cannot be installed (as previously explained);
2023-05-11T15:46:00Z #11 441.0 │ │ │ ├─ libgdal 3.6.3, which…
@bluppfisk
Copy link
Contributor

Is there a solution to this yet? The massive diag output (40k lines at a time) makes it really difficult to debug applications built with netcdf4

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants