From 1cf5c2e67e9b0d6d6326d843ba4a060084bfa5f8 Mon Sep 17 00:00:00 2001 From: Tobias Diez Date: Mon, 22 Jan 2024 13:25:44 +0000 Subject: [PATCH 1/5] Make sage-conf optional As noted in #37024 and in #36489, `sage-conf` is actually not needed on a few systems now. For this reason, we make the installation of it optional (as there are no optional install requires as far as I know, this means we remove it from `pyproject.toml` and `setup.cfg`). We also remove it from "install all dependencies via conda" as its not needed there. --- .devcontainer/onCreate-conda.sh | 3 +-- .github/workflows/ci-conda.yml | 8 ++------ .gitpod.yml | 3 +-- pkgs/sage-conf/README.rst | 2 +- src/doc/en/installation/conda.rst | 8 +++++++- src/pyproject.toml.m4 | 1 - src/setup.cfg.m4 | 1 - 7 files changed, 12 insertions(+), 14 deletions(-) diff --git a/.devcontainer/onCreate-conda.sh b/.devcontainer/onCreate-conda.sh index 94b3abe9ff8..f0251185c62 100755 --- a/.devcontainer/onCreate-conda.sh +++ b/.devcontainer/onCreate-conda.sh @@ -8,6 +8,5 @@ conda init bash # Build sage conda run -n sage-dev ./bootstrap -conda run -n sage-dev ./configure --with-python=/opt/conda/envs/sage-dev/bin/python --prefix=/opt/conda/envs/sage-dev -conda run -n sage-dev pip install --no-build-isolation -v -v -e ./pkgs/sage-conf ./pkgs/sage-setup +conda run -n sage-dev pip install --no-build-isolation -v -v -e ./pkgs/sage-setup conda run -n sage-dev pip install --no-build-isolation -v -v -e ./src diff --git a/.github/workflows/ci-conda.yml b/.github/workflows/ci-conda.yml index 7fac038718c..04e7308d8b6 100644 --- a/.github/workflows/ci-conda.yml +++ b/.github/workflows/ci-conda.yml @@ -62,21 +62,17 @@ jobs: conda info conda list - - name: Configure + - name: Bootstrap shell: bash -l {0} continue-on-error: true run: | ./bootstrap - echo "::add-matcher::.github/workflows/configure-systempackage-problem-matcher.json" - ./configure --enable-build-as-root --with-python=$CONDA_PREFIX/bin/python --prefix=$CONDA_PREFIX --enable-system-site-packages $(for pkg in $(./sage -package list :standard: --has-file spkg-configure.m4 --has-file distros/conda.txt --exclude rpy2); do echo --with-system-$pkg=force; done) - echo "::remove-matcher owner=configure-system-package-warning::" - echo "::remove-matcher owner=configure-system-package-error::" - name: Build shell: bash -l {0} run: | # Use --no-deps and pip check below to verify that all necessary dependencies are installed via conda. - pip install --no-build-isolation --no-deps -v -v -e ./pkgs/sage-conf ./pkgs/sage-setup + pip install --no-build-isolation --no-deps -v -v -e ./pkgs/sage-setup pip install --no-build-isolation --no-deps --config-settings editable_mode=compat -v -v -e ./src env: SAGE_NUM_THREADS: 2 diff --git a/.gitpod.yml b/.gitpod.yml index 223e750bd63..a91131f4e7a 100644 --- a/.gitpod.yml +++ b/.gitpod.yml @@ -11,8 +11,7 @@ tasks: && conda config --append envs_dirs $(pwd) && conda activate $(pwd)/venv && ./bootstrap - && ./configure --enable-build-as-root --with-python=$CONDA_PREFIX/bin/python --prefix=$CONDA_PREFIX - && pip install --no-build-isolation -v -v -e ./pkgs/sage-conf ./pkgs/sage-setup + && pip install --no-build-isolation -v -v -e ./pkgs/sage-setup && pip install --no-build-isolation -v -v -e ./src # Activate conda environment, set up Trac remote # RestructuredText extension recommends python extension, although we have already installed it diff --git a/pkgs/sage-conf/README.rst b/pkgs/sage-conf/README.rst index 590e5ba1356..e86c483c089 100644 --- a/pkgs/sage-conf/README.rst +++ b/pkgs/sage-conf/README.rst @@ -87,7 +87,7 @@ sage_conf for conda The version of the distribution package in the directory `pkgs/sage-conf_conda `_ -is used in an experimental installation method of SageMath, where all packages +may be used in an installation method of SageMath, where all packages are provided by conda. This method is described in https://doc.sagemath.org/html/en/installation/conda.html#using-conda-to-provide-all-dependencies-for-the-sage-library-experimental diff --git a/src/doc/en/installation/conda.rst b/src/doc/en/installation/conda.rst index 58c29b1e424..5c05e1131ce 100644 --- a/src/doc/en/installation/conda.rst +++ b/src/doc/en/installation/conda.rst @@ -131,9 +131,15 @@ Here we assume that you are using a git checkout. - Bootstrap the source tree and install the build prerequisites and the Sage library:: $ ./bootstrap - $ pip install --no-build-isolation -v -v --editable ./pkgs/sage-conf_conda ./pkgs/sage-setup + $ pip install --no-build-isolation -v -v --editable ./pkgs/sage-setup $ pip install --no-build-isolation --config-settings editable_mode=compat -v -v --editable ./src + If you encounter any errors, try to install the ``sage-conf`` package first:: + + $ pip install --no-build-isolation -v -v --editable ./pkgs/sage-conf_conda + + and then run the last command again. + - Verify that Sage has been installed:: $ sage -c 'print(version())' diff --git a/src/pyproject.toml.m4 b/src/pyproject.toml.m4 index 7065ba1468c..084c5a45ead 100644 --- a/src/pyproject.toml.m4 +++ b/src/pyproject.toml.m4 @@ -6,7 +6,6 @@ requires = [ # Note that PEP517/518 have no notion of optional sage_spkg dependencies: # https://github.com/pypa/pip/issues/6144 esyscmd(`sage-get-system-packages install-requires-toml \ - sage_conf \ setuptools \ wheel \ sage_setup \ diff --git a/src/setup.cfg.m4 b/src/setup.cfg.m4 index 23f3d6cb166..97be0344950 100644 --- a/src/setup.cfg.m4 +++ b/src/setup.cfg.m4 @@ -11,7 +11,6 @@ include(`setup_cfg_metadata.m4')dnl' [options] python_requires = >=3.9, <3.12 install_requires = - SPKG_INSTALL_REQUIRES_sage_conf SPKG_INSTALL_REQUIRES_six dnl From build/pkgs/sagelib/dependencies SPKG_INSTALL_REQUIRES_conway_polynomials From 17748c5984ebee93e95d59f93ad364c03bb9f221 Mon Sep 17 00:00:00 2001 From: Tobias Diez Date: Sat, 24 Feb 2024 05:08:49 +0000 Subject: [PATCH 2/5] Update conda lock files --- src/environment-3.10-linux-aarch64.yml | 347 +++++------------- src/environment-3.10-linux.yml | 359 ++++-------------- src/environment-3.10-macos-arm64.yml | 344 +++++------------ src/environment-3.10-macos.yml | 318 ++++------------ src/environment-3.11-linux-aarch64.yml | 347 +++++------------- src/environment-3.11-linux.yml | 359 ++++-------------- src/environment-3.11-macos-arm64.yml | 344 +++++------------ src/environment-3.11-macos.yml | 318 ++++------------ src/environment-3.9-linux-aarch64.yml | 344 ++++------------- src/environment-3.9-linux.yml | 356 ++++-------------- src/environment-3.9-macos-arm64.yml | 341 +++++------------ src/environment-3.9-macos.yml | 315 ++++------------ src/environment-dev-3.10-linux-aarch64.yml | 398 +++++--------------- src/environment-dev-3.10-linux.yml | 407 ++++----------------- src/environment-dev-3.10-macos-arm64.yml | 388 ++++++-------------- src/environment-dev-3.10-macos.yml | 362 +++++------------- src/environment-dev-3.11-linux-aarch64.yml | 398 +++++--------------- src/environment-dev-3.11-linux.yml | 407 ++++----------------- src/environment-dev-3.11-macos-arm64.yml | 388 ++++++-------------- src/environment-dev-3.11-macos.yml | 362 +++++------------- src/environment-dev-3.9-linux-aarch64.yml | 395 +++++--------------- src/environment-dev-3.9-linux.yml | 404 ++++---------------- src/environment-dev-3.9-macos-arm64.yml | 385 ++++++------------- src/environment-dev-3.9-macos.yml | 359 +++++------------- 24 files changed, 2020 insertions(+), 6725 deletions(-) diff --git a/src/environment-3.10-linux-aarch64.yml b/src/environment-3.10-linux-aarch64.yml index 16debf6c05b..5a19b5a8dcf 100644 --- a/src/environment-3.10-linux-aarch64.yml +++ b/src/environment-3.10-linux-aarch64.yml @@ -1,422 +1,239 @@ # Generated by conda-lock. # platform: linux-aarch64 -# input_hash: 8f25fe2693d1d27aa5fa5c6d97b0a627bb1a435fcf25aa1b3ccba79e2b621314 +# input_hash: 9d1968aee9592374b5f7e334fe253b6024c7e8d42652a4a15104328d08b83d58 channels: - conda-forge dependencies: - - _r-mutex=1.0.1=anacondar_1 - - _sysroot_linux-aarch64_curr_repodata_hack=4=h57d6b7b_13 - - ca-certificates=2023.11.17=hcefe29a_0 + - _sysroot_linux-aarch64_curr_repodata_hack=4=h57d6b7b_14 + - ca-certificates=2024.2.2=hcefe29a_0 - font-ttf-dejavu-sans-mono=2.37=hab24e00_0 - font-ttf-inconsolata=3.000=h77eed37_0 - font-ttf-source-code-pro=2.038=h77eed37_0 - font-ttf-ubuntu=0.83=h77eed37_1 - - kernel-headers_linux-aarch64=4.18.0=h5b4a56d_13 - ld_impl_linux-aarch64=2.40=h2d8c526_0 - - libgcc-devel_linux-aarch64=12.3.0=h8b5ab12_103 - - libgomp=13.2.0=hf8544c7_3 - - libstdcxx-devel_linux-aarch64=12.3.0=h8b5ab12_103 - - libstdcxx-ng=13.2.0=h9a76618_3 - - mathjax=3.2.2=h8af1aa0_0 - - pandoc=3.1.3=h8af1aa0_0 + - libboost-headers=1.84.0=h8af1aa0_1 + - libgcc-devel_linux-aarch64=12.3.0=h8b5ab12_105 + - libgomp=13.2.0=hf8544c7_5 + - libstdcxx-devel_linux-aarch64=12.3.0=h8b5ab12_105 + - libstdcxx-ng=13.2.0=h9a76618_5 - pari-elldata=0.0.20161017=0 - pari-galdata=0.0.20180411=0 - - pari-galpol=0.0.20180625=0 - pari-seadata-small=0.0.20090618=0 - python_abi=3.10=4_cp310 - - sagemath-db-combinatorial-designs=20140630=1 - - sagemath-db-graphs=20210214=hd8ed1ab_0 - - sagemath-db-polytopes=20170220=1 - - three.js=122=hd8ed1ab_2 - - tzdata=2023c=h71feb2d_0 + - tzdata=2024a=h0c530f3_0 - fonts-conda-forge=1=0 + - kernel-headers_linux-aarch64=4.18.0=h5b4a56d_14 - pari-seadata=0.0.20090618=0 - - sysroot_linux-aarch64=2.17=h5b4a56d_13 - - threejs-sage=122=hd8ed1ab_2 - - binutils_impl_linux-aarch64=2.40=h870a726_0 - fonts-conda-ecosystem=1=0 + - sysroot_linux-aarch64=2.17=h5b4a56d_14 + - binutils_impl_linux-aarch64=2.40=h870a726_0 - binutils=2.40=h64c2a2e_0 - binutils_linux-aarch64=2.40=h94bbfa1_2 - _openmp_mutex=4.5=2_kmp_llvm - - libgcc-ng=13.2.0=hf8544c7_3 - - alsa-lib=1.2.8=h4e544f5_0 - - bc=1.07.1=hf897c2e_0 + - libgcc-ng=13.2.0=hf8544c7_5 - bdw-gc=8.0.6=hd62202e_0 - bzip2=1.0.8=h31becfc_5 - - c-ares=1.24.0=h31becfc_0 + - c-ares=1.27.0=h31becfc_0 - cliquer=1.22=hb9de7d4_0 - - fribidi=1.0.10=hb9de7d4_0 - - gengetopt=2.23=h01db608_0 - - gettext=0.21.1=ha18d298_0 - gf2x=1.3.0=h1b3b3a3_2 - giflib=5.2.1=hb4cce97_3 - gmp=6.3.0=h2f0025b_0 - - graphite2=1.3.13=h7fd3ca4_1001 - - icu=70.1=ha18d298_0 - - jpeg=9e=h2a766a3_3 + - icu=73.2=h787c7f5_0 - keyutils=1.6.1=h4e544f5_0 - lerc=4.0.0=h4de3ea5_0 - - libatomic_ops=7.6.14=h4e544f5_0 - libbraiding=1.2=hd600fc2_0 - libbrotlicommon=1.1.0=h31becfc_1 - - libdeflate=1.17=hb4cce97_0 + - libdeflate=1.19=h31becfc_0 - libev=4.33=h31becfc_2 - libexpat=2.5.0=hd600fc2_1 - libffi=3.4.2=h3557bc0_5 - - libgfortran5=13.2.0=h582850c_3 + - libgfortran5=13.2.0=h582850c_5 - libiconv=1.17=h31becfc_2 + - libjpeg-turbo=3.0.0=h31becfc_1 - libnsl=2.0.1=h31becfc_0 - - libsanitizer=12.3.0=h8ebda82_3 + - libsanitizer=12.3.0=h8ebda82_5 - libsodium=1.0.18=hb9de7d4_1 - - libtool=2.4.7=h4de3ea5_0 - libuuid=2.38.1=hb4cce97_0 - - libuv=1.46.0=h31becfc_0 - - libwebp-base=1.2.4=h4e544f5_0 + - libwebp-base=1.3.2=h31becfc_0 + - libxcrypt=4.4.36=h31becfc_1 - libzlib=1.2.13=h31becfc_5 - - lrcalc=2.1=h4de3ea5_5 - - m4=1.4.18=h516909a_1001 - - make=4.3=h309ac5b_1 - - metis=5.1.0=h2f0025b_1007 - - nauty=2.8.8=h31becfc_0 + - lrcalc=2.1=h2f0025b_6 + - nauty=2.8.8=h31becfc_1 - ncurses=6.4=h0425590_2 - ninja=1.11.1=hdd96247_0 - - openssl=3.2.0=h31becfc_1 + - openssl=3.2.1=h31becfc_0 - palp=2.20=hb9de7d4_0 - - patch=2.7.6=hf897c2e_1002 - - pixman=0.42.2=h2f0025b_0 - pkg-config=0.29.2=hb9de7d4_1008 - planarity=3.0.0.5=hb9de7d4_1002 - primesieve=11.1=h2f0025b_0 - pthread-stubs=0.4=hb9de7d4_1001 - qhull=2020.2=hd62202e_2 - - rhash=1.4.3=h31becfc_2 - - sed=4.8=ha0d5d3d_0 - symmetrica=3.0.1=hd600fc2_0 - - xorg-inputproto=2.3.2=h3557bc0_1002 - - xorg-kbproto=1.0.7=h3557bc0_1002 - - xorg-libice=1.0.10=h3557bc0_0 - xorg-libxau=1.0.11=h31becfc_0 - xorg-libxdmcp=1.1.3=h3557bc0_0 - - xorg-recordproto=1.14.2=hf897c2e_1002 - - xorg-renderproto=0.11.1=h3557bc0_1002 - - xorg-xextproto=7.3.0=h2a766a3_1003 - - xorg-xproto=7.0.31=h3557bc0_1007 - xz=5.2.6=h9cdd2b7_0 - - yaml=0.2.5=hf897c2e_2 - cddlib=1!0.94m=h719063d_0 - ecm=7.0.4=h719063d_1002 - expat=2.5.0=hd600fc2_1 - - gcc_impl_linux-aarch64=12.3.0=hcde2664_3 + - gcc_impl_linux-aarch64=12.3.0=hcde2664_5 - givaro=4.1.1=h192cbe9_1 - glpk=5.0=h66325d0_0 - libbrotlidec=1.1.0=h31becfc_1 - libbrotlienc=1.1.0=h31becfc_1 - libedit=3.1.20191231=he28a2e2_2 - - libgfortran-ng=13.2.0=he9431aa_3 + - libgfortran-ng=13.2.0=he9431aa_5 - libhomfly=1.02r6=hb9de7d4_0 - libnghttp2=1.58.0=hb0e430d_1 - - libpng=1.6.39=hf9034f9_0 - - libsqlite=3.44.2=h194ca79_0 + - libpng=1.6.42=h194ca79_0 + - libsqlite=3.45.1=h194ca79_0 - libssh2=1.11.0=h492db2e_0 - - libxcb=1.13=h3557bc0_1004 - - libxml2=2.10.3=habe54e3_4 + - libxcb=1.15=h2a766a3_0 + - libxml2=2.12.5=h3091e33_0 - mpfr=4.2.1=ha2d0fc4_0 - ntl=11.4.3=h0d7519b_1 - - pcre2=10.40=he7b27c6_0 - - perl=5.32.1=4_h31becfc_perl5 + - perl=5.32.1=7_h31becfc_perl5 - primecount=7.9=hd600fc2_0 - readline=8.2=h8fc344f_1 - - tar=1.34=h048efde_0 - tk=8.6.13=h194ca79_0 - - xorg-fixesproto=5.0=h3557bc0_1002 - - xorg-libsm=1.2.3=h965e137_1000 - zeromq=4.3.5=h2f0025b_0 - zlib=1.2.13=h31becfc_5 - zstd=1.5.5=h4c53e97_0 - - autoconf=2.71=pl5321h2148fe1_1 - - boost-cpp=1.81.0=h07c2bc3_0 - brotli-bin=1.1.0=h31becfc_1 - - bwidget=1.9.14=h8af1aa0_1 - ecl=21.2.1=haa44c19_2 - - fftw=3.3.10=nompi_h2dcef8e_108 - freetype=2.12.1=hf0a5ef3_2 - gap-core=4.12.2=h597289e_3 - gcc=12.3.0=hc1b51f9_2 - gcc_linux-aarch64=12.3.0=h464a8f7_2 - gfan=0.6.2=h5f589ec_1003 - - gfortran_impl_linux-aarch64=12.3.0=hb7244be_3 - - gxx_impl_linux-aarch64=12.3.0=hcde2664_3 - - krb5=1.20.1=h113d92e_0 + - gxx_impl_linux-aarch64=12.3.0=hcde2664_5 + - krb5=1.21.2=hc419048_0 + - libboost=1.84.0=h1fed05a_1 - libflint=3.0.1=hc392af7_ntl_100 - - libglib=2.78.1=h0464669_0 - - libhwloc=2.9.1=h21e8147_0 - libopenblas=0.3.25=pthreads_h5a5ec62_0 - - libtiff=4.5.0=h4c1066a_2 + - libtiff=4.6.0=h1708d11_2 - llvm-openmp=17.0.6=h8b0cb96_0 - m4ri=20140914=h75e8696_1005 - mpc=1.3.1=hf4c8f4c_0 - mpfi=1.5.4=h846f343_1001 - pari=2.15.4=h169c2a7_2_pthread - ppl=1.2=h984aac9_1006 - - python=3.10.13=hbbe8eec_0_cpython + - python=3.10.13=hbbe8eec_1_cpython - qd=2.3.22=h05efe27_1004 - - sqlite=3.44.2=h3b3482f_0 - - tachyon=0.99b6=h63ab1d9_1001 - - texinfo=7.0=pl5321h17f021e_0 - - tktable=2.10=h4f9ca69_5 - - xorg-libx11=1.8.4=h2a766a3_0 - - alabaster=0.7.13=pyhd8ed1ab_0 - - appdirs=1.4.4=pyh9f0ad1d_0 - - appnope=0.1.3=pyhd8ed1ab_0 - - attrs=23.1.0=pyh71513ae_1 - - automake=1.16.5=pl5321h8af1aa0_0 - brotli=1.1.0=h31becfc_1 - brotli-python=1.1.0=py310hbb3657e_1 - c-compiler=1.6.0=h31becfc_0 - - cached_property=1.5.2=pyha770c72_1 - - cachetools=5.3.2=pyhd8ed1ab_0 - - certifi=2023.11.17=pyhd8ed1ab_0 - - chardet=5.2.0=py310hbbe02a8_1 + - certifi=2024.2.2=pyhd8ed1ab_0 - charset-normalizer=3.3.2=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_0 - - conway-polynomials=0.8=pyhd8ed1ab_0 + - conway-polynomials=0.9=pyhd8ed1ab_0 - cycler=0.12.1=pyhd8ed1ab_0 - cysignals=1.11.2=py310h485802a_3 - - cython=3.0.7=py310hbb3657e_0 - - debugpy=1.8.0=py310hbb3657e_1 + - cython=3.0.8=py310hbb3657e_0 + - debugpy=1.8.1=py310hbb3657e_0 - decorator=5.1.1=pyhd8ed1ab_0 - - defusedxml=0.7.1=pyhd8ed1ab_0 - - distlib=0.3.8=pyhd8ed1ab_0 - - docutils=0.20.1=py310hbbe02a8_3 - - eclib=20231211=he26bab5_0 - - editables=0.3=pyhd8ed1ab_0 - - entrypoints=0.4=pyhd8ed1ab_0 - - exceptiongroup=1.2.0=pyhd8ed1ab_0 + - eclib=20231212=he26bab5_0 + - exceptiongroup=1.2.0=pyhd8ed1ab_2 - executing=2.0.1=pyhd8ed1ab_0 - - filelock=3.13.1=pyhd8ed1ab_0 - - flit-core=3.9.0=pyhd8ed1ab_0 - fontconfig=2.14.2=ha9a116f_0 - fplll=5.4.5=hb3a790e_0 - gap-defaults=4.12.2=h8af1aa0_3 - - gast=0.5.4=pyhd8ed1ab_0 - - gfortran=12.3.0=h8d4031d_2 - - gfortran_linux-aarch64=12.3.0=h1993883_2 - gmpy2=2.1.2=py310h9f74ea4_1 - gxx=12.3.0=hc1b51f9_2 - gxx_linux-aarch64=12.3.0=h21accf6_2 - idna=3.6=pyhd8ed1ab_0 - - imagesize=1.4.1=pyhd8ed1ab_0 - - ipython_genutils=0.2.0=py_1 - - json5=0.9.14=pyhd8ed1ab_0 - - jsonpointer=2.4=py310h4c7bcd0_3 - - jupyterlab_widgets=3.0.9=pyhd8ed1ab_0 + - jupyterlab_widgets=3.0.10=pyhd8ed1ab_0 - kiwisolver=1.4.5=py310he290b8a_1 - lcalc=2.0.5=h3264cc0_1 - - lcms2=2.15=h7576be9_0 + - lcms2=2.16=h922389a_0 - libblas=3.9.0=20_linuxaarch64_openblas + - libboost-devel=1.84.0=h37bb5a9_1 - libbrial=1.2.12=h17533bf_1 - - libcups=2.3.3=h4303303_3 - - libcurl=8.1.2=hc34909b_0 - - libwebp=1.2.4=h7bdf6e5_1 + - libcurl=8.5.0=h4e8248e_0 + - libwebp=1.3.2=heb2ea1b_1 - m4rie=20150908=h75e8696_1001 - - markupsafe=2.1.3=py310h7c1f4a2_1 + - markupsafe=2.1.5=py310h7c1f4a2_0 - maxima=5.47.0=h6475f26_1 - - mistune=3.0.2=pyhd8ed1ab_0 - mpmath=1.3.0=pyhd8ed1ab_0 - munkres=1.1.4=pyh9f0ad1d_0 - - nest-asyncio=1.5.8=pyhd8ed1ab_0 + - nest-asyncio=1.6.0=pyhd8ed1ab_0 - networkx=3.2.1=pyhd8ed1ab_0 - openblas=0.3.25=pthreads_h339cbfa_0 - - openjpeg=2.5.0=h9508984_2 + - openjpeg=2.5.0=h0d9d63b_3 - packaging=23.2=pyhd8ed1ab_0 - - pandocfilters=1.5.0=pyhd8ed1ab_0 - parso=0.8.3=pyhd8ed1ab_0 - - pathspec=0.12.1=pyhd8ed1ab_0 - pickleshare=0.7.5=py_1003 - pkgconfig=1.5.5=pyhd8ed1ab_4 - - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 - - platformdirs=4.1.0=pyhd8ed1ab_0 - - pluggy=1.3.0=pyhd8ed1ab_0 - - ply=3.11=py_1 - - prometheus_client=0.19.0=pyhd8ed1ab_0 - - psutil=5.9.7=py310hb299538_0 + - platformdirs=4.2.0=pyhd8ed1ab_0 + - psutil=5.9.8=py310hb299538_0 - ptyprocess=0.7.0=pyhd3deb0d_0 - pure_eval=0.2.2=pyhd8ed1ab_0 - - py=1.11.0=pyh6c4a22f_0 - - pybind11-global=2.11.1=py310h586407a_2 - - pycparser=2.21=pyhd8ed1ab_0 - pygments=2.17.2=pyhd8ed1ab_0 - pyparsing=3.1.1=pyhd8ed1ab_0 - - pyrsistent=0.20.0=py310h7c1f4a2_0 - pysocks=1.7.1=pyha2e5f31_6 - - python-fastjsonschema=2.19.0=pyhd8ed1ab_0 - - python-json-logger=2.0.7=pyhd8ed1ab_0 - - python-lrcalc=2.1=py310h130cc07_5 - - python-tzdata=2023.3=pyhd8ed1ab_0 - - pytz=2023.3.post1=pyhd8ed1ab_0 - - pyyaml=6.0.1=py310hb299538_1 - pyzmq=25.1.2=py310h014ca53_0 - - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.15.2=py310h057607a_0 - - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 - - sagetex=3.6.1=pyhd8ed1ab_0 - - send2trash=1.8.2=pyh41d4057_0 - - setuptools=68.2.2=pyhd8ed1ab_0 - - simplegeneric=0.8.1=py_1 + - setuptools=69.1.0=pyhd8ed1ab_1 - singular=4.3.2.p8=hbe76a8a_1 - six=1.16.0=pyh6c4a22f_0 - - sniffio=1.3.0=pyhd8ed1ab_0 - - snowballstemmer=2.2.0=pyhd8ed1ab_0 - - soupsieve=2.5=pyhd8ed1ab_1 - - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_0 - sympow=2.023.6=h157afb5_3 - - tbb=2021.9.0=h4c384f3_0 - tomli=2.0.1=pyhd8ed1ab_0 - - tornado=6.3.3=py310h7c1f4a2_1 - - traitlets=5.14.0=pyhd8ed1ab_0 - - trove-classifiers=2023.11.29=pyhd8ed1ab_0 - - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 + - tornado=6.4=py310h7c1f4a2_0 + - traitlets=5.14.1=pyhd8ed1ab_0 - typing_extensions=4.9.0=pyha770c72_0 - - typing_utils=0.1.0=pyhd8ed1ab_0 - - tzlocal=5.2=py310h4c7bcd0_0 - unicodedata2=15.1.0=py310hb299538_0 - - uri-template=1.3.0=pyhd8ed1ab_0 - - wcwidth=0.2.12=pyhd8ed1ab_0 - - webcolors=1.13=pyhd8ed1ab_0 - - webencodings=0.5.1=pyhd8ed1ab_2 - - websocket-client=1.7.0=pyhd8ed1ab_0 + - wcwidth=0.2.13=pyhd8ed1ab_0 - wheel=0.42.0=pyhd8ed1ab_0 - - widgetsnbextension=4.0.9=pyhd8ed1ab_0 - - xorg-libxext=1.3.4=h2a766a3_2 - - xorg-libxfixes=5.0.3=h3557bc0_1004 - - xorg-libxrender=0.9.10=h3557bc0_1003 - - xorg-libxt=1.3.0=h7935292_0 + - widgetsnbextension=4.0.10=pyhd8ed1ab_0 - zipp=3.17.0=pyhd8ed1ab_0 - - anyio=4.2.0=pyhd8ed1ab_0 - asttokens=2.4.1=pyhd8ed1ab_0 - - async-lru=2.0.4=pyhd8ed1ab_0 - - babel=2.14.0=pyhd8ed1ab_0 - - beautifulsoup4=4.12.2=pyha770c72_0 - - beniget=0.4.1=pyhd8ed1ab_0 - - bleach=6.1.0=pyhd8ed1ab_0 + - boost-cpp=1.84.0=ha990451_1 - brial=1.2.12=pyh694c41f_1 - - cached-property=1.5.2=hd8ed1ab_1 - - cairo=1.16.0=hd19fb6e_1014 - - cffi=1.16.0=py310hce94938_0 - - cmake=3.26.4=hef020d8_0 - - comm=0.1.4=pyhd8ed1ab_0 - - cppy=1.2.1=pyhd8ed1ab_0 - - curl=8.1.2=hc34909b_0 + - comm=0.2.1=pyhd8ed1ab_0 - cxx-compiler=1.6.0=h2a328a1_0 - - cypari2=2.1.3=py310h4cbba44_2 - - deprecation=2.1.0=pyh9f0ad1d_0 - - fonttools=4.47.0=py310hb299538_0 - - fortran-compiler=1.6.0=h7048d53_0 - - importlib-metadata=7.0.0=pyha770c72_0 + - cypari2=2.1.4=py310h4cbba44_2 + - fonttools=4.49.0=py310hb299538_0 + - importlib-metadata=7.0.1=pyha770c72_0 - importlib_resources=6.1.1=pyhd8ed1ab_0 - jedi=0.19.1=pyhd8ed1ab_0 - - jinja2=3.1.2=pyhd8ed1ab_1 - - jupyter_core=5.5.1=py310h4c7bcd0_0 - - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 + - jinja2=3.1.3=pyhd8ed1ab_0 + - jupyter_core=5.7.1=py310h4c7bcd0_0 - libcblas=3.9.0=20_linuxaarch64_openblas - - libgd=2.3.3=h99c6b3b_4 + - libgd=2.3.3=hcd22fd5_9 - liblapack=3.9.0=20_linuxaarch64_openblas - matplotlib-inline=0.1.6=pyhd8ed1ab_0 - memory-allocator=0.1.3=py310hb299538_0 - - overrides=7.4.0=pyhd8ed1ab_0 - - pexpect=4.8.0=pyh1a96a4e_2 - - pillow=9.4.0=py310h2843b5e_1 - - pip=23.3.2=pyhd8ed1ab_0 + - meson=1.3.2=pyhd8ed1ab_0 + - pexpect=4.9.0=pyhd8ed1ab_0 + - pillow=10.2.0=py310h0ae3e2b_0 + - pip=24.0=pyhd8ed1ab_0 - pplpy=0.8.9=py310hd5c817c_0 - primecountpy=0.1.0=py310h586407a_4 - prompt-toolkit=3.0.42=pyha770c72_0 - - pybind11=2.11.1=py310h586407a_2 - - pyproject-api=1.6.1=pyhd8ed1ab_0 + - pyproject-metadata=0.7.1=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - - pytz-deprecation-shim=0.1.0.post0=py310h4c7bcd0_4 - - referencing=0.32.0=pyhd8ed1ab_0 - - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - sympy=1.12=pypyh9d50eac_103 - - terminado=0.18.0=pyh0d859eb_0 - - tinycss2=1.2.1=pyhd8ed1ab_0 - - typing-extensions=4.9.0=hd8ed1ab_0 - - urllib3=2.1.0=pyhd8ed1ab_0 - - virtualenv=20.25.0=pyhd8ed1ab_0 - - xorg-libxi=1.7.10=h3557bc0_0 - - argon2-cffi-bindings=21.2.0=py310hb299538_4 - - arpack=3.7.0=hf862f49_2 - - arrow=1.3.0=pyhd8ed1ab_0 - - compilers=1.6.0=h8af1aa0_0 - - dsdp=5.8=hb12102e_1203 + - urllib3=2.2.1=pyhd8ed1ab_0 + - arpack=3.8.0=nompi_h32ff4ca_101 - fflas-ffpack=2.4.3=hf104d39_2 - - fqdn=1.5.1=pyhd8ed1ab_0 - gsl=2.7=h294027d_0 - - harfbuzz=6.0.0=hbcb8a4f_0 - - hatchling=1.21.0=pyhd8ed1ab_0 - iml=1.0.5=h9076c59_1003 - - importlib-resources=6.1.1=pyhd8ed1ab_0 - - importlib_metadata=7.0.0=hd8ed1ab_0 - - jsonschema-specifications=2023.11.2=pyhd8ed1ab_0 - - jupyter_server_terminals=0.5.0=pyhd8ed1ab_0 + - importlib_metadata=7.0.1=hd8ed1ab_0 - liblapacke=3.9.0=20_linuxaarch64_openblas - - numpy=1.26.2=py310hcbab775_0 - - prompt_toolkit=3.0.42=hd8ed1ab_0 + - meson-python=0.15.0=pyh0c530f3_0 + - numpy=1.26.4=py310hcbab775_0 - requests=2.31.0=pyhd8ed1ab_0 - - setuptools-scm=8.0.4=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 - - suitesparse=5.10.1=h1404dd6_1 - - xorg-libxtst=1.2.3=hf897c2e_1002 - - argon2-cffi=23.1.0=pyhd8ed1ab_0 - blas-devel=3.9.0=20_linuxaarch64_openblas - contourpy=1.2.0=py310h586407a_0 - - cvxopt=1.3.2=py310h536486b_1 - - fpylll=0.6.0=py310hfdbf2a6_1 + - fpylll=0.6.1=py310hfdbf2a6_0 - giac=1.9.0.21=h04922a4_1 - - igraph=0.9.10=hefb87a8_1 - - ipython=8.18.1=pyh707e725_3 - - isoduration=20.11.0=pyhd8ed1ab_0 - - jsonschema=4.20.0=pyhd8ed1ab_0 + - igraph=0.10.10=hcfae7ab_0 + - ipython=8.22.0=pyh707e725_0 - jupyter_client=8.6.0=pyhd8ed1ab_0 - linbox=1.6.3=h681a5ee_8 - - openjdk=17.0.3=h1a274e0_5 - - pango=1.50.14=h1f1e9b3_0 - - pythran=0.14.0=py310h5e48e15_1 - scipy=1.11.3=py310hcbab775_1 - - setuptools_scm=8.0.4=hd8ed1ab_0 - - tox=4.11.4=pyhd8ed1ab_0 - blas=2.120=openblas - - ipykernel=6.26.0=pyhf8b6a83_0 - - ipywidgets=8.1.1=pyhd8ed1ab_0 - - jmol=14.32.10=h8af1aa0_0 - - jsonschema-with-format-nongpl=4.20.0=pyhd8ed1ab_0 - - matplotlib-base=3.8.2=py310h0a7f329_0 - - nbformat=5.9.2=pyhd8ed1ab_0 - - r-base=4.2.3=h620ca72_0 - - rw=0.9=hf897c2e_0 - - ipympl=0.9.3=pyhd8ed1ab_0 - - jupyter-jsmol=2022.1.0=pyhd8ed1ab_0 - - jupyter_events=0.9.0=pyhd8ed1ab_0 - - matplotlib=3.8.2=py310hbbe02a8_0 - - nbclient=0.8.0=pyhd8ed1ab_0 - - rpy2=3.5.11=py310r42h8b6b5fc_3 - - nbconvert-core=7.13.0=pyhd8ed1ab_0 - - jupyter_server=2.12.1=pyhd8ed1ab_0 - - nbconvert-pandoc=7.13.0=pyhd8ed1ab_0 - - jupyter-lsp=2.2.1=pyhd8ed1ab_0 - - jupyterlab_server=2.25.2=pyhd8ed1ab_0 - - nbconvert=7.13.0=pyhd8ed1ab_0 - - notebook-shim=0.2.3=pyhd8ed1ab_0 - - jupyterlab=4.0.9=pyhd8ed1ab_0 - - notebook=7.0.6=pyhd8ed1ab_0 - - jupyter_sphinx=0.1.4=py_0 - - sphinx-basic-ng=1.0.0b2=pyhd8ed1ab_1 - - furo=2023.9.10=pyhd8ed1ab_0 - - sphinx-copybutton=0.5.2=pyhd8ed1ab_0 - - sphinxcontrib-applehelp=1.0.7=pyhd8ed1ab_0 - - sphinxcontrib-devhelp=1.0.5=pyhd8ed1ab_0 - - sphinxcontrib-htmlhelp=2.0.4=pyhd8ed1ab_0 - - sphinxcontrib-qthelp=1.0.6=pyhd8ed1ab_0 - - sphinx=7.2.6=pyhd8ed1ab_0 - - sphinxcontrib-serializinghtml=1.1.9=pyhd8ed1ab_0 - - sphinxcontrib-websupport=1.2.6=pyhd8ed1ab_0 + - ipykernel=6.29.2=pyhd33586a_0 + - ipywidgets=8.1.2=pyhd8ed1ab_0 + - matplotlib-base=3.8.3=py310h0a7f329_0 + - rw=0.9=h31becfc_1 diff --git a/src/environment-3.10-linux.yml b/src/environment-3.10-linux.yml index 201bf1c8492..40d0b881b9b 100644 --- a/src/environment-3.10-linux.yml +++ b/src/environment-3.10-linux.yml @@ -1,466 +1,239 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: e502ab74c729987e3321c8627f9878529b139e4bdfe7ccc0b5ea7b22177b7ea4 +# input_hash: 1bed96a5e1bf90765a7ae203b6c4edbeaa6f5671cda9b89097343978572846a1 channels: - conda-forge dependencies: - _libgcc_mutex=0.1=conda_forge - - _r-mutex=1.0.1=anacondar_1 - - ca-certificates=2023.11.17=hbcca054_0 + - ca-certificates=2024.2.2=hbcca054_0 - font-ttf-dejavu-sans-mono=2.37=hab24e00_0 - font-ttf-inconsolata=3.000=h77eed37_0 - font-ttf-source-code-pro=2.038=h77eed37_0 - font-ttf-ubuntu=0.83=h77eed37_1 - - kernel-headers_linux-64=2.6.32=he073ed8_16 + - kernel-headers_linux-64=2.6.32=he073ed8_17 - ld_impl_linux-64=2.40=h41732ed_0 - - libboost-headers=1.84.0=ha770c72_0 - - libgcc-devel_linux-64=12.3.0=h8bca6fd_103 - - libstdcxx-devel_linux-64=12.3.0=h8bca6fd_103 - - libstdcxx-ng=13.2.0=h7e041cc_3 - - mathjax=3.2.2=ha770c72_0 + - libboost-headers=1.84.0=ha770c72_1 + - libgcc-devel_linux-64=12.3.0=h8bca6fd_105 + - libstdcxx-devel_linux-64=12.3.0=h8bca6fd_105 + - libstdcxx-ng=13.2.0=h7e041cc_5 - pari-elldata=0.0.20161017=0 - pari-galdata=0.0.20180411=0 - - pari-galpol=0.0.20180625=0 - pari-seadata-small=0.0.20090618=0 - python_abi=3.10=4_cp310 - - sagemath-db-combinatorial-designs=20140630=1 - - sagemath-db-graphs=20210214=hd8ed1ab_0 - - sagemath-db-polytopes=20170220=1 - - three.js=122=hd8ed1ab_2 - - tzdata=2023c=h71feb2d_0 + - tzdata=2024a=h0c530f3_0 - fonts-conda-forge=1=0 - - libgomp=13.2.0=h807b86a_3 + - libgomp=13.2.0=h807b86a_5 - pari-seadata=0.0.20090618=0 - - sysroot_linux-64=2.12=he073ed8_16 - - threejs-sage=122=hd8ed1ab_2 + - sysroot_linux-64=2.12=he073ed8_17 - binutils_impl_linux-64=2.40=hf600244_0 - fonts-conda-ecosystem=1=0 - binutils=2.40=hdd6e379_0 - binutils_linux-64=2.40=hbdbef99_2 - _openmp_mutex=4.5=2_kmp_llvm - - libgcc-ng=13.2.0=h807b86a_3 - - alsa-lib=1.2.10=hd590300_0 - - attr=2.5.1=h166bdaf_1 - - bc=1.07.1=h7f98852_0 + - libgcc-ng=13.2.0=h807b86a_5 - bdw-gc=8.0.6=h4bd325d_0 - bzip2=1.0.8=hd590300_5 - - c-ares=1.24.0=hd590300_0 + - c-ares=1.27.0=hd590300_0 - cliquer=1.22=h36c2ea0_0 - - fribidi=1.0.10=h36c2ea0_0 - - gengetopt=2.23=h9c3ff4c_0 - - gettext=0.21.1=h27087fc_0 - gf2x=1.3.0=ha476b99_2 - giflib=5.2.1=h0b41bf4_3 - gmp=6.3.0=h59595ed_0 - - graphite2=1.3.13=h58526e2_1001 - icu=73.2=h59595ed_0 - keyutils=1.6.1=h166bdaf_0 - - lame=3.100=h166bdaf_1003 - lerc=4.0.0=h27087fc_0 - - libatomic_ops=7.6.14=h166bdaf_0 - libbraiding=1.2=hcb278e6_0 - libbrotlicommon=1.1.0=hd590300_1 - libdeflate=1.19=hd590300_0 - libev=4.33=hd590300_2 - libexpat=2.5.0=hcb278e6_1 - libffi=3.4.2=h7f98852_5 - - libgfortran5=13.2.0=ha4646dd_3 + - libgfortran5=13.2.0=ha4646dd_5 - libiconv=1.17=hd590300_2 - libjpeg-turbo=3.0.0=hd590300_1 - libnsl=2.0.1=hd590300_0 - - libogg=1.3.4=h7f98852_1 - - libopus=1.3.1=h7f98852_1 - - libsanitizer=12.3.0=h0f45ef3_3 + - libsanitizer=12.3.0=h0f45ef3_5 - libsodium=1.0.18=h36c2ea0_1 - - libtool=2.4.7=h27087fc_0 - libuuid=2.38.1=h0b41bf4_0 - - libuv=1.46.0=hd590300_0 - libwebp-base=1.3.2=hd590300_0 + - libxcrypt=4.4.36=hd590300_1 - libzlib=1.2.13=hd590300_5 - - lrcalc=2.1=h27087fc_5 - - lz4-c=1.9.4=hcb278e6_0 - - m4=1.4.18=h516909a_1001 - - make=4.3=hd18ef5c_1 - - metis=5.1.1=h59595ed_2 - - mpg123=1.32.3=h59595ed_0 - - nauty=2.8.8=hd590300_0 + - lrcalc=2.1=h59595ed_6 + - nauty=2.8.8=hd590300_1 - ncurses=6.4=h59595ed_2 - ninja=1.11.1=h924138e_0 - - nspr=4.35=h27087fc_0 - - openssl=3.2.0=hd590300_1 + - openssl=3.2.1=hd590300_0 - palp=2.20=h36c2ea0_0 - - patch=2.7.6=h7f98852_1002 - - pixman=0.42.2=h59595ed_0 - pkg-config=0.29.2=h36c2ea0_1008 - planarity=3.0.0.5=h36c2ea0_1002 - primesieve=11.1=h59595ed_0 - pthread-stubs=0.4=h36c2ea0_1001 - qhull=2020.2=h4bd325d_2 - - rhash=1.4.4=hd590300_0 - - sed=4.8=he412f7d_0 - symmetrica=3.0.1=hcb278e6_0 - - xorg-inputproto=2.3.2=h7f98852_1002 - - xorg-kbproto=1.0.7=h7f98852_1002 - - xorg-libice=1.1.1=hd590300_0 - xorg-libxau=1.0.11=hd590300_0 - xorg-libxdmcp=1.1.3=h7f98852_0 - - xorg-recordproto=1.14.2=h7f98852_1002 - - xorg-renderproto=0.11.1=h7f98852_1002 - - xorg-xextproto=7.3.0=h0b41bf4_1003 - - xorg-xf86vidmodeproto=2.3.1=h7f98852_1002 - - xorg-xproto=7.0.31=h7f98852_1007 - xz=5.2.6=h166bdaf_0 - - yaml=0.2.5=h7f98852_2 - cddlib=1!0.94m=h9202a9a_0 - ecm=7.0.4=h9202a9a_1002 - expat=2.5.0=hcb278e6_1 - - gcc_impl_linux-64=12.3.0=he2b93b0_3 + - gcc_impl_linux-64=12.3.0=he2b93b0_5 - givaro=4.1.1=h192cbe9_1 - glpk=5.0=h445213a_0 - libbrotlidec=1.1.0=hd590300_1 - libbrotlienc=1.1.0=hd590300_1 - - libcap=2.69=h0f662aa_0 - libedit=3.1.20191231=he28a2e2_2 - - libevent=2.1.12=hf998b51_1 - - libflac=1.4.3=h59595ed_0 - - libgfortran-ng=13.2.0=h69a702a_3 - - libgpg-error=1.47=h71f35ed_0 + - libgfortran-ng=13.2.0=h69a702a_5 - libhomfly=1.02r6=h36c2ea0_0 - libnghttp2=1.58.0=h47da74e_1 - - libpng=1.6.39=h753d276_0 - - libsqlite=3.44.2=h2797004_0 + - libpng=1.6.42=h2797004_0 + - libsqlite=3.45.1=h2797004_0 - libssh2=1.11.0=h0841786_0 - - libvorbis=1.3.7=h9c3ff4c_0 - libxcb=1.15=h0b41bf4_0 - - libxml2=2.11.6=h232c23b_0 + - libxml2=2.12.5=h232c23b_0 - mpfr=4.2.1=h9458935_0 - - mysql-common=8.0.33=hf1915f5_6 - ntl=11.4.3=hef3c4d3_1 - - pcre2=10.42=hcad00b1_0 - - perl=5.32.1=4_hd590300_perl5 + - perl=5.32.1=7_hd590300_perl5 - primecount=7.9=hcb278e6_0 - readline=8.2=h8228510_1 - - tar=1.34=hb2e2bae_1 - tk=8.6.13=noxft_h4845f30_101 - - xorg-fixesproto=5.0=h7f98852_1002 - - xorg-libsm=1.2.4=h7391055_0 - zeromq=4.3.5=h59595ed_0 - zlib=1.2.13=hd590300_5 - zstd=1.5.5=hfc55251_0 - - autoconf=2.71=pl5321h2b4cb7a_1 - brotli-bin=1.1.0=hd590300_1 - - bwidget=1.9.14=ha770c72_1 - ecl=21.2.1=h9d73b02_2 - - fftw=3.3.10=nompi_hc118613_108 - freetype=2.12.1=h267a509_2 - gap-core=4.12.2=he9a28a4_3 - gcc=12.3.0=h8d2909c_2 - gcc_linux-64=12.3.0=h76fc315_2 - gfan=0.6.2=hb86e20a_1003 - - gfortran_impl_linux-64=12.3.0=hfcedea8_3 - - gxx_impl_linux-64=12.3.0=he2b93b0_3 + - gxx_impl_linux-64=12.3.0=he2b93b0_5 - krb5=1.21.2=h659d440_0 - - libboost=1.84.0=h6fcfa73_0 + - libboost=1.84.0=h8013b2b_1 - libflint=3.0.1=h5f2e117_ntl_100 - - libgcrypt=1.10.3=hd590300_0 - - libglib=2.78.3=h783c2da_0 - - libhwloc=2.9.3=default_h554bfaf_1009 - - libllvm15=15.0.7=h5cf9203_3 - libopenblas=0.3.25=pthreads_h413a1c8_0 - - libsndfile=1.2.2=hc60ed4a_1 - libtiff=4.6.0=ha9c0a0a_2 - llvm-openmp=17.0.6=h4dfa4b3_0 - m4ri=20140914=h7ca028e_1005 - mpc=1.3.1=hfe3b2da_0 - mpfi=1.5.4=h9f54685_1001 - - mysql-libs=8.0.33=hca2cd23_6 - - nss=3.96=h1d7d5a4_0 - - pandoc=3.1.3=h32600fe_0 - pari=2.15.4=h4d4ae9b_2_pthread - ppl=1.2=h6ec01c2_1006 - - python=3.10.13=hd12c33a_0_cpython + - python=3.10.13=hd12c33a_1_cpython - qd=2.3.22=h2cc385e_1004 - - sqlite=3.44.2=h2c6b66d_0 - - tachyon=0.99b6=0 - - texinfo=7.0=pl5321h0f457ee_0 - - tktable=2.10=h0c5db8f_5 - - xcb-util=0.4.0=hd590300_1 - - xcb-util-keysyms=0.4.0=h8ee46fc_1 - - xcb-util-renderutil=0.3.9=hd590300_1 - - xcb-util-wm=0.4.1=h8ee46fc_1 - - xorg-libx11=1.8.7=h8ee46fc_0 - - alabaster=0.7.13=pyhd8ed1ab_0 - - appdirs=1.4.4=pyh9f0ad1d_0 - - appnope=0.1.3=pyhd8ed1ab_0 - - attrs=23.1.0=pyh71513ae_1 - - automake=1.16.5=pl5321ha770c72_0 - brotli=1.1.0=hd590300_1 - brotli-python=1.1.0=py310hc6cd4ac_1 - c-compiler=1.6.0=hd590300_0 - - cached_property=1.5.2=pyha770c72_1 - - cachetools=5.3.2=pyhd8ed1ab_0 - - certifi=2023.11.17=pyhd8ed1ab_0 - - chardet=5.2.0=py310hff52083_1 + - certifi=2024.2.2=pyhd8ed1ab_0 - charset-normalizer=3.3.2=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_0 - - conway-polynomials=0.8=pyhd8ed1ab_0 + - conway-polynomials=0.9=pyhd8ed1ab_0 - cycler=0.12.1=pyhd8ed1ab_0 - cysignals=1.11.2=py310h945e7c7_3 - - cython=3.0.7=py310hc6cd4ac_0 - - dbus=1.13.6=h5008d03_3 - - debugpy=1.8.0=py310hc6cd4ac_1 + - cython=3.0.8=py310hc6cd4ac_0 + - debugpy=1.8.1=py310hc6cd4ac_0 - decorator=5.1.1=pyhd8ed1ab_0 - - defusedxml=0.7.1=pyhd8ed1ab_0 - - distlib=0.3.8=pyhd8ed1ab_0 - - docutils=0.20.1=py310hff52083_3 - - eclib=20231211=h96f522a_0 - - editables=0.3=pyhd8ed1ab_0 - - entrypoints=0.4=pyhd8ed1ab_0 - - exceptiongroup=1.2.0=pyhd8ed1ab_0 + - eclib=20231212=h96f522a_0 + - exceptiongroup=1.2.0=pyhd8ed1ab_2 - executing=2.0.1=pyhd8ed1ab_0 - - filelock=3.13.1=pyhd8ed1ab_0 - - flit-core=3.9.0=pyhd8ed1ab_0 - fontconfig=2.14.2=h14ed4e7_0 - fplll=5.4.5=h384768b_0 - gap-defaults=4.12.2=ha770c72_3 - - gast=0.5.4=pyhd8ed1ab_0 - - gfortran=12.3.0=h499e0f7_2 - - gfortran_linux-64=12.3.0=h7fe76b4_2 - - glib-tools=2.78.3=hfc55251_0 - gmpy2=2.1.2=py310h3ec546c_1 - gxx=12.3.0=h8d2909c_2 - gxx_linux-64=12.3.0=h8a814eb_2 - idna=3.6=pyhd8ed1ab_0 - - imagesize=1.4.1=pyhd8ed1ab_0 - - ipython_genutils=0.2.0=py_1 - - json5=0.9.14=pyhd8ed1ab_0 - - jsonpointer=2.4=py310hff52083_3 - - jupyterlab_widgets=3.0.9=pyhd8ed1ab_0 + - jupyterlab_widgets=3.0.10=pyhd8ed1ab_0 - kiwisolver=1.4.5=py310hd41b1e2_1 - lcalc=2.0.5=h6a8a7c6_1 - lcms2=2.16=hb7c19ff_0 - libblas=3.9.0=20_linux64_openblas - - libboost-devel=1.84.0=h00ab1b0_0 + - libboost-devel=1.84.0=h00ab1b0_1 - libbrial=1.2.12=h3155cbd_1 - - libclang13=15.0.7=default_ha2b6cf4_4 - - libcups=2.3.3=h4637d8d_4 - libcurl=8.5.0=hca28451_0 - - libpq=16.1=h33b98f1_7 - - libsystemd0=255=h3516f8a_0 - libwebp=1.3.2=h658648e_1 - m4rie=20150908=h7ca028e_1001 - - markupsafe=2.1.3=py310h2372a71_1 + - markupsafe=2.1.5=py310h2372a71_0 - maxima=5.47.0=hed6455c_1 - - mistune=3.0.2=pyhd8ed1ab_0 - mpmath=1.3.0=pyhd8ed1ab_0 - munkres=1.1.4=pyh9f0ad1d_0 - - nest-asyncio=1.5.8=pyhd8ed1ab_0 + - nest-asyncio=1.6.0=pyhd8ed1ab_0 - networkx=3.2.1=pyhd8ed1ab_0 - openblas=0.3.25=pthreads_h7a3da1a_0 - openjpeg=2.5.0=h488ebb8_3 - packaging=23.2=pyhd8ed1ab_0 - - pandocfilters=1.5.0=pyhd8ed1ab_0 - parso=0.8.3=pyhd8ed1ab_0 - - pathspec=0.12.1=pyhd8ed1ab_0 - pickleshare=0.7.5=py_1003 - pkgconfig=1.5.5=pyhd8ed1ab_4 - - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 - - platformdirs=4.1.0=pyhd8ed1ab_0 - - pluggy=1.3.0=pyhd8ed1ab_0 - - ply=3.11=py_1 - - prometheus_client=0.19.0=pyhd8ed1ab_0 - - psutil=5.9.7=py310h2372a71_0 + - platformdirs=4.2.0=pyhd8ed1ab_0 + - psutil=5.9.8=py310h2372a71_0 - ptyprocess=0.7.0=pyhd3deb0d_0 - pure_eval=0.2.2=pyhd8ed1ab_0 - - py=1.11.0=pyh6c4a22f_0 - - pybind11-global=2.11.1=py310hd41b1e2_2 - - pycparser=2.21=pyhd8ed1ab_0 - pygments=2.17.2=pyhd8ed1ab_0 - pyparsing=3.1.1=pyhd8ed1ab_0 - - pyrsistent=0.20.0=py310h2372a71_0 - pysocks=1.7.1=pyha2e5f31_6 - - python-fastjsonschema=2.19.0=pyhd8ed1ab_0 - - python-json-logger=2.0.7=pyhd8ed1ab_0 - - python-lrcalc=2.1=py310hd8f1fbe_5 - - python-tzdata=2023.3=pyhd8ed1ab_0 - - pytz=2023.3.post1=pyhd8ed1ab_0 - - pyyaml=6.0.1=py310h2372a71_1 - pyzmq=25.1.2=py310h795f18f_0 - - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.15.2=py310hcb5633a_0 - - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 - - sagetex=3.6.1=pyhd8ed1ab_0 - - send2trash=1.8.2=pyh41d4057_0 - - setuptools=68.2.2=pyhd8ed1ab_0 - - simplegeneric=0.8.1=py_1 + - setuptools=69.1.0=pyhd8ed1ab_1 - singular=4.3.2.p8=h33f5c3f_1 - six=1.16.0=pyh6c4a22f_0 - - sniffio=1.3.0=pyhd8ed1ab_0 - - snowballstemmer=2.2.0=pyhd8ed1ab_0 - - soupsieve=2.5=pyhd8ed1ab_1 - - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_0 - sympow=2.023.6=hc6ab17c_3 - - tbb=2021.11.0=h00ab1b0_0 - - toml=0.10.2=pyhd8ed1ab_0 - tomli=2.0.1=pyhd8ed1ab_0 - - tornado=6.3.3=py310h2372a71_1 - - traitlets=5.14.0=pyhd8ed1ab_0 - - trove-classifiers=2023.11.29=pyhd8ed1ab_0 - - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 + - tornado=6.4=py310h2372a71_0 + - traitlets=5.14.1=pyhd8ed1ab_0 - typing_extensions=4.9.0=pyha770c72_0 - - typing_utils=0.1.0=pyhd8ed1ab_0 - - tzlocal=5.2=py310hff52083_0 - unicodedata2=15.1.0=py310h2372a71_0 - - uri-template=1.3.0=pyhd8ed1ab_0 - - wcwidth=0.2.12=pyhd8ed1ab_0 - - webcolors=1.13=pyhd8ed1ab_0 - - webencodings=0.5.1=pyhd8ed1ab_2 - - websocket-client=1.7.0=pyhd8ed1ab_0 + - wcwidth=0.2.13=pyhd8ed1ab_0 - wheel=0.42.0=pyhd8ed1ab_0 - - widgetsnbextension=4.0.9=pyhd8ed1ab_0 - - xcb-util-image=0.4.0=h8ee46fc_1 - - xkeyboard-config=2.40=hd590300_0 - - xorg-libxext=1.3.4=h0b41bf4_2 - - xorg-libxfixes=5.0.3=h7f98852_1004 - - xorg-libxrender=0.9.11=hd590300_0 - - xorg-libxt=1.3.0=hd590300_1 + - widgetsnbextension=4.0.10=pyhd8ed1ab_0 - zipp=3.17.0=pyhd8ed1ab_0 - - anyio=4.2.0=pyhd8ed1ab_0 - asttokens=2.4.1=pyhd8ed1ab_0 - - async-lru=2.0.4=pyhd8ed1ab_0 - - babel=2.14.0=pyhd8ed1ab_0 - - beautifulsoup4=4.12.2=pyha770c72_0 - - beniget=0.4.1=pyhd8ed1ab_0 - - bleach=6.1.0=pyhd8ed1ab_0 - - boost-cpp=1.84.0=h44aadfe_0 + - boost-cpp=1.84.0=h44aadfe_1 - brial=1.2.12=pyh694c41f_1 - - cached-property=1.5.2=hd8ed1ab_1 - - cairo=1.18.0=h3faef2a_0 - - cffi=1.16.0=py310h2fee648_0 - - cmake=3.28.1=hcfe8598_0 - - comm=0.1.4=pyhd8ed1ab_0 - - cppy=1.2.1=pyhd8ed1ab_0 - - curl=8.5.0=hca28451_0 + - comm=0.2.1=pyhd8ed1ab_0 - cxx-compiler=1.6.0=h00ab1b0_0 - - cypari2=2.1.3=py310h14ed79e_2 - - deprecation=2.1.0=pyh9f0ad1d_0 - - fonttools=4.47.0=py310h2372a71_0 - - fortran-compiler=1.6.0=heb67821_0 - - glib=2.78.3=hfc55251_0 - - importlib-metadata=7.0.0=pyha770c72_0 + - cypari2=2.1.4=py310h14ed79e_2 + - fonttools=4.49.0=py310h2372a71_0 + - importlib-metadata=7.0.1=pyha770c72_0 - importlib_resources=6.1.1=pyhd8ed1ab_0 - jedi=0.19.1=pyhd8ed1ab_0 - - jinja2=3.1.2=pyhd8ed1ab_1 - - jupyter_core=5.5.1=py310hff52083_0 - - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 + - jinja2=3.1.3=pyhd8ed1ab_0 + - jupyter_core=5.7.1=py310hff52083_0 - libcblas=3.9.0=20_linux64_openblas - - libclang=15.0.7=default_hb11cfb5_4 - libgd=2.3.3=h119a65a_9 - liblapack=3.9.0=20_linux64_openblas - - libxkbcommon=1.6.0=h5d7e998_0 - matplotlib-inline=0.1.6=pyhd8ed1ab_0 - memory-allocator=0.1.3=py310h2372a71_0 - - overrides=7.4.0=pyhd8ed1ab_0 - - pexpect=4.8.0=pyh1a96a4e_2 - - pillow=10.1.0=py310h01dd4db_0 - - pip=23.3.2=pyhd8ed1ab_0 + - meson=1.3.2=pyhd8ed1ab_0 + - pexpect=4.9.0=pyhd8ed1ab_0 + - pillow=10.2.0=py310h01dd4db_0 + - pip=24.0=pyhd8ed1ab_0 - pplpy=0.8.9=py310h28f6eb6_0 - primecountpy=0.1.0=py310hd41b1e2_4 - prompt-toolkit=3.0.42=pyha770c72_0 - - pulseaudio-client=16.1=hb77b528_5 - - pybind11=2.11.1=py310hd41b1e2_2 - - pyproject-api=1.6.1=pyhd8ed1ab_0 + - pyproject-metadata=0.7.1=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - - pytz-deprecation-shim=0.1.0.post0=py310hff52083_4 - - referencing=0.32.0=pyhd8ed1ab_0 - - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - - sip=6.7.12=py310hc6cd4ac_0 - sympy=1.12=pypyh9d50eac_103 - - terminado=0.18.0=pyh0d859eb_0 - - tinycss2=1.2.1=pyhd8ed1ab_0 - - typing-extensions=4.9.0=hd8ed1ab_0 - - urllib3=2.1.0=pyhd8ed1ab_0 - - virtualenv=20.25.0=pyhd8ed1ab_0 - - xorg-libxi=1.7.10=h7f98852_0 - - argon2-cffi-bindings=21.2.0=py310h2372a71_4 + - urllib3=2.2.1=pyhd8ed1ab_0 - arpack=3.8.0=nompi_h0baa96a_101 - - arrow=1.3.0=pyhd8ed1ab_0 - - compilers=1.6.0=ha770c72_0 - - dsdp=5.8=hd9d9efa_1203 - fflas-ffpack=2.4.3=h912ac81_2 - - fqdn=1.5.1=pyhd8ed1ab_0 - gsl=2.7=he838d99_0 - - gstreamer=1.22.8=h98fc4e7_0 - - harfbuzz=8.3.0=h3d44ed6_0 - - hatchling=1.21.0=pyhd8ed1ab_0 - iml=1.0.5=hd75c201_1003 - - importlib-resources=6.1.1=pyhd8ed1ab_0 - - importlib_metadata=7.0.0=hd8ed1ab_0 - - jsonschema-specifications=2023.11.2=pyhd8ed1ab_0 - - jupyter_server_terminals=0.5.0=pyhd8ed1ab_0 + - importlib_metadata=7.0.1=hd8ed1ab_0 - liblapacke=3.9.0=20_linux64_openblas - - numpy=1.26.2=py310hb13e2d6_0 - - prompt_toolkit=3.0.42=hd8ed1ab_0 - - pyqt5-sip=12.12.2=py310hc6cd4ac_5 + - meson-python=0.15.0=pyh0c530f3_0 + - numpy=1.26.4=py310hb13e2d6_0 - requests=2.31.0=pyhd8ed1ab_0 - - setuptools-scm=8.0.4=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 - - suitesparse=5.10.1=h3ec001c_2 - - xorg-libxtst=1.2.3=h7f98852_1002 - - argon2-cffi=23.1.0=pyhd8ed1ab_0 - blas-devel=3.9.0=20_linux64_openblas - contourpy=1.2.0=py310hd41b1e2_0 - - cvxopt=1.3.2=py310h14a12bf_1 - - fpylll=0.6.0=py310h7e26f94_1 + - fpylll=0.6.1=py310h7e26f94_0 - giac=1.9.0.21=h673759e_1 - - gst-plugins-base=1.22.8=h8e1006c_0 - - igraph=0.10.8=h66a01bf_0 - - ipython=8.18.1=pyh707e725_3 - - isoduration=20.11.0=pyhd8ed1ab_0 - - jsonschema=4.20.0=pyhd8ed1ab_0 + - igraph=0.10.10=h153f77b_0 + - ipython=8.22.0=pyh707e725_0 - jupyter_client=8.6.0=pyhd8ed1ab_0 - linbox=1.6.3=ha329b40_8 - - openjdk=21.0.1=haa376d0_0 - - pango=1.50.14=ha41ecd1_2 - - pythran=0.14.0=py310hcb52e73_1 - scipy=1.11.4=py310hb13e2d6_0 - - setuptools_scm=8.0.4=hd8ed1ab_0 - - tox=4.11.4=pyhd8ed1ab_0 - blas=2.120=openblas - - ipykernel=6.26.0=pyhf8b6a83_0 - - ipywidgets=8.1.1=pyhd8ed1ab_0 - - jmol=14.32.10=ha770c72_0 - - jsonschema-with-format-nongpl=4.20.0=pyhd8ed1ab_0 - - matplotlib-base=3.8.2=py310h62c0568_0 - - nbformat=5.9.2=pyhd8ed1ab_0 - - qt-main=5.15.8=h82b777d_17 - - r-base=4.3.2=hb8ee39d_1 + - ipykernel=6.29.2=pyhd33586a_0 + - ipywidgets=8.1.2=pyhd8ed1ab_0 + - matplotlib-base=3.8.3=py310h62c0568_0 - rw=0.9=hd590300_1 - - ipympl=0.9.3=pyhd8ed1ab_0 - - jupyter-jsmol=2022.1.0=pyhd8ed1ab_0 - - jupyter_events=0.9.0=pyhd8ed1ab_0 - - nbclient=0.8.0=pyhd8ed1ab_0 - - pyqt=5.15.9=py310h04931ad_5 - - rpy2=3.5.11=py310r43h1f7b6fc_3 - - matplotlib=3.8.2=py310hff52083_0 - - nbconvert-core=7.13.0=pyhd8ed1ab_0 - - jupyter_server=2.12.1=pyhd8ed1ab_0 - - nbconvert-pandoc=7.13.0=pyhd8ed1ab_0 - - jupyter-lsp=2.2.1=pyhd8ed1ab_0 - - jupyterlab_server=2.25.2=pyhd8ed1ab_0 - - nbconvert=7.13.0=pyhd8ed1ab_0 - - notebook-shim=0.2.3=pyhd8ed1ab_0 - - jupyterlab=4.0.9=pyhd8ed1ab_0 - - notebook=7.0.6=pyhd8ed1ab_0 - - jupyter_sphinx=0.4.0=py310hff52083_1 - - sphinx-basic-ng=1.0.0b2=pyhd8ed1ab_1 - - furo=2023.9.10=pyhd8ed1ab_0 - - sphinx-copybutton=0.5.2=pyhd8ed1ab_0 - - sphinxcontrib-applehelp=1.0.7=pyhd8ed1ab_0 - - sphinxcontrib-devhelp=1.0.5=pyhd8ed1ab_0 - - sphinxcontrib-htmlhelp=2.0.4=pyhd8ed1ab_0 - - sphinxcontrib-qthelp=1.0.6=pyhd8ed1ab_0 - - sphinx=7.2.6=pyhd8ed1ab_0 - - sphinxcontrib-serializinghtml=1.1.9=pyhd8ed1ab_0 - - sphinxcontrib-websupport=1.2.6=pyhd8ed1ab_0 diff --git a/src/environment-3.10-macos-arm64.yml b/src/environment-3.10-macos-arm64.yml index 1c71e3f2e43..721916ef016 100644 --- a/src/environment-3.10-macos-arm64.yml +++ b/src/environment-3.10-macos-arm64.yml @@ -1,402 +1,238 @@ # Generated by conda-lock. # platform: osx-arm64 -# input_hash: f3a7ade7d121b058758a996f2cb987d66d13e67ba29536d5816c74b35fa3fba8 +# input_hash: 973780e52fbcde632116239dfe66edd82c0b3c444ef84a872cdd1d01c2b7a804 channels: - conda-forge dependencies: - - _r-mutex=1.0.1=anacondar_1 - - bc=1.07.1=h3422bc3_0 - bzip2=1.0.8=h93a5062_5 - - c-ares=1.24.0=h93a5062_0 - - ca-certificates=2023.11.17=hf0a4a13_0 + - c-ares=1.27.0=h93a5062_0 + - ca-certificates=2024.2.2=hf0a4a13_0 - cliquer=1.22=h27ca646_0 - font-ttf-dejavu-sans-mono=2.37=hab24e00_0 - font-ttf-inconsolata=3.000=h77eed37_0 - font-ttf-source-code-pro=2.038=h77eed37_0 - font-ttf-ubuntu=0.83=h77eed37_1 - - fribidi=1.0.10=h27ca646_0 - giflib=5.2.1=h1a8c8d9_3 - - jpeg=9e=h1a8c8d9_3 - - libatomic_ops=7.6.14=h1a8c8d9_0 + - icu=73.2=hc8870d7_0 + - libboost-headers=1.84.0=hce30654_1 - libbrotlicommon=1.1.0=hb547adb_1 - libcxx=16.0.6=h4653b0c_0 - - libdeflate=1.17=h1a8c8d9_0 + - libdeflate=1.19=hb547adb_0 - libev=4.33=h93a5062_2 - libexpat=2.5.0=hb7217d7_1 - libffi=3.4.2=h3422bc3_5 - - libgfortran-devel_osx-arm64=12.3.0=hc62be1c_1 - libiconv=1.17=h0d3ecfb_2 + - libjpeg-turbo=3.0.0=hb547adb_1 - libsodium=1.0.18=h27ca646_1 - - libtool=2.4.7=hb7217d7_0 - - libuv=1.46.0=hb547adb_0 - - libwebp-base=1.2.4=h1a8c8d9_0 + - libwebp-base=1.3.2=hb547adb_0 - libzlib=1.2.13=h53f4e23_5 - llvm-openmp=17.0.6=hcd81f8e_0 - - m4=1.4.18=h642e427_1001 - - make=4.3=he57ea6c_1 - - mathjax=3.2.2=hce30654_0 - - nauty=2.8.8=h93a5062_0 + - nauty=2.8.8=h93a5062_1 - palp=2.20=h27ca646_0 - - pandoc=3.1.3=hce30654_0 - pari-elldata=0.0.20161017=0 - pari-galdata=0.0.20180411=0 - - pari-galpol=0.0.20180625=0 - pari-seadata-small=0.0.20090618=0 - - patch=2.7.6=h27ca646_1002 - - perl=5.32.1=4_hf2054a2_perl5 + - perl=5.32.1=7_h4614cfb_perl5 - planarity=3.0.0.5=h27ca646_1002 - pthread-stubs=0.4=h27ca646_1001 - python_abi=3.10=4_cp310 - - rhash=1.4.3=hb547adb_2 - - sagemath-db-combinatorial-designs=20140630=1 - - sagemath-db-graphs=20210214=hd8ed1ab_0 - - sagemath-db-polytopes=20170220=1 - - tbb=2021.10.0=h1995070_2 - - three.js=122=hd8ed1ab_2 - - tzdata=2023c=h71feb2d_0 + - tzdata=2024a=h0c530f3_0 - xorg-libxau=1.0.11=hb547adb_0 - xorg-libxdmcp=1.1.3=h27ca646_0 - xz=5.2.6=h57fd34a_0 - - yaml=0.2.5=h3422bc3_2 - - autoconf=2.71=pl5321hcd07c0c_1 - bdw-gc=8.0.6=hc021e02_0 - expat=2.5.0=hb7217d7_1 - fonts-conda-forge=1=0 - - gengetopt=2.23=hbdafb3b_0 - gettext=0.21.1=h0186832_0 - gf2x=1.3.0=hdaa854c_2 - gmp=6.3.0=h965bd2d_0 - - graphite2=1.3.13=h9f76cd9_1001 - - icu=70.1=h6b3803e_0 - - isl=0.25=h9a09cb3_0 - lerc=4.0.0=h9a09cb3_0 - libbraiding=1.2=hb7217d7_0 - libbrotlidec=1.1.0=hb547adb_1 - libbrotlienc=1.1.0=hb547adb_1 - - libgfortran5=13.2.0=hf226fd6_1 - - libpng=1.6.39=h76d750c_0 - - libsqlite=3.44.2=h091b4b1_0 - - libxcb=1.13=h9b22ae9_1004 - - lrcalc=2.1=hb7217d7_5 - - metis=5.1.1=h965bd2d_2 + - libgfortran5=13.2.0=hf226fd6_3 + - libpng=1.6.42=h091b4b1_0 + - libsqlite=3.45.1=h091b4b1_0 + - libxcb=1.15=hf346824_0 + - libxml2=2.12.5=h0d0cfa8_0 + - lrcalc=2.1=hebf3989_6 - ncurses=6.4=h463b476_2 - ninja=1.11.1=hffc8910_0 - - openjdk=21.0.1=hed44d8b_0 - - openssl=3.2.0=h0d3ecfb_1 + - openssl=3.2.1=h0d3ecfb_0 - pari-seadata=0.0.20090618=0 - - pcre2=10.40=hb34f9b4_0 - - pixman=0.42.2=h13dd4ca_0 + - pcre2=10.42=h26f9a81_0 - primesieve=11.0=hb7217d7_0 - qhull=2020.2=hc021e02_2 - symmetrica=3.0.1=hb7217d7_0 - tapi=1100.0.11=he4954df_0 - - tar=1.34=h7cb298e_1 - - threejs-sage=122=hd8ed1ab_2 - tk=8.6.13=h5083fa2_1 - zeromq=4.3.5=h965bd2d_0 - zlib=1.2.13=h53f4e23_5 - zstd=1.5.5=h4f39d0f_0 - - automake=1.16.5=pl5321hce30654_0 - - boost-cpp=1.81.0=hf96b251_0 - brotli-bin=1.1.0=hb547adb_1 - - bwidget=1.9.14=hce30654_1 - cddlib=1!0.94m=h6d7a090_0 - ecm=7.0.4=h47c7c1a_1002 - fonts-conda-ecosystem=1=0 - freetype=2.12.1=hadb7bae_2 - givaro=4.1.1=h0cdca34_3 - glpk=5.0=h6d7a090_0 - - jmol=14.32.10=hce30654_0 + - libboost=1.84.0=h8e0f962_1 - libedit=3.1.20191231=hc8eb9b7_2 - - libgfortran=5.0.0=13_2_0_hd922786_1 - - libglib=2.78.1=hd9b11f9_0 + - libgfortran=5.0.0=13_2_0_hd922786_3 + - libglib=2.78.4=h1635a5e_0 - libhomfly=1.02r6=h27ca646_0 + - libllvm16=16.0.6=haab561b_3 - libnghttp2=1.58.0=ha4dd798_1 - libssh2=1.11.0=h7a5bd25_0 - - libtiff=4.5.0=h5dffbdd_2 - - libxml2=2.10.3=h67585b2_4 + - libtiff=4.6.0=ha8a6c65_2 - m4ri=20140914=h17b34a0_1005 - mpfr=4.2.1=h9546428_0 - ntl=11.4.3=hbb3f309_1 - primecount=7.6=hb6e4faa_0 - readline=8.2=h92ec313_1 - sigtool=0.1.3=h44b9a77_0 - - tachyon=0.99b6=hfb72b2a_1001 - - texinfo=7.0=pl5321h9ea1dce_0 - - tktable=2.10=hd996620_5 - brotli=1.1.0=hb547adb_1 - ecl=21.2.1=h8492d4d_2 - - fftw=3.3.10=nompi_h3046061_108 - fontconfig=2.14.2=h82840c6_0 - gap-core=4.12.2=he8f4e70_3 - gfan=0.6.2=hec08f5c_1003 - - krb5=1.20.1=h69eda48_0 - - lcms2=2.15=h481adae_0 + - krb5=1.21.2=h92f50d5_0 + - lcms2=2.16=ha0e7c42_0 + - ld64_osx-arm64=609=ha4bd21c_16 + - libboost-devel=1.84.0=hf450f58_1 - libbrial=1.2.12=ha7f5006_1 + - libclang-cpp16=16.0.6=default_he012953_5 - libflint=3.0.1=h28749a5_ntl_100 - - libllvm15=15.0.7=h62b9111_1 - libopenblas=0.3.25=openmp_h6c19121_0 - - libwebp=1.2.4=h999c80f_1 + - libwebp=1.3.2=hf30222e_1 + - llvm-tools=16.0.6=haab561b_3 - m4rie=20150908=h17b34a0_1001 - mpc=1.3.1=h91ba8db_0 - mpfi=1.5.4=hbde5f5b_1001 - - openjpeg=2.5.0=hbc2ba62_2 + - openjpeg=2.5.0=h4c1507b_3 - pari=2.15.4=haeeeed7_2_pthread - pkg-config=0.29.2=hab62308_1008 - ppl=1.2=h8b147cf_1006 - - python=3.10.13=h2469fbe_0_cpython + - python=3.10.13=h2469fbe_1_cpython - qd=2.3.22=hbec66e7_1004 - - sqlite=3.44.2=hf2abe2d_0 - - alabaster=0.7.13=pyhd8ed1ab_0 - - appdirs=1.4.4=pyh9f0ad1d_0 - - appnope=0.1.3=pyhd8ed1ab_0 - - attrs=23.1.0=pyh71513ae_1 + - appnope=0.1.4=pyhd8ed1ab_0 + - boost-cpp=1.84.0=hca5e981_1 - brial=1.2.12=pyh694c41f_1 - brotli-python=1.1.0=py310h1253130_1 - - cached_property=1.5.2=pyha770c72_1 - - cachetools=5.3.2=pyhd8ed1ab_0 - - cairo=1.16.0=h73a0509_1014 - - certifi=2023.11.17=pyhd8ed1ab_0 - - chardet=5.2.0=py310hbe9552e_1 + - cctools_osx-arm64=973.0.1=h62378fb_16 + - certifi=2024.2.2=pyhd8ed1ab_0 - charset-normalizer=3.3.2=pyhd8ed1ab_0 + - clang-16=16.0.6=default_he012953_5 - colorama=0.4.6=pyhd8ed1ab_0 - - conway-polynomials=0.8=pyhd8ed1ab_0 + - conway-polynomials=0.9=pyhd8ed1ab_0 - cycler=0.12.1=pyhd8ed1ab_0 - cysignals=1.11.2=py310hfd3b3fe_3 - - cython=3.0.7=py310h692a8b6_0 - - debugpy=1.8.0=py310h1253130_1 + - cython=3.0.8=py310h692a8b6_0 + - debugpy=1.8.1=py310h692a8b6_0 - decorator=5.1.1=pyhd8ed1ab_0 - - defusedxml=0.7.1=pyhd8ed1ab_0 - - distlib=0.3.8=pyhd8ed1ab_0 - - docutils=0.20.1=py310hbe9552e_3 - - eclib=20231211=h7f07de4_0 - - editables=0.3=pyhd8ed1ab_0 - - entrypoints=0.4=pyhd8ed1ab_0 - - exceptiongroup=1.2.0=pyhd8ed1ab_0 + - eclib=20231212=h7f07de4_0 + - exceptiongroup=1.2.0=pyhd8ed1ab_2 - executing=2.0.1=pyhd8ed1ab_0 - - filelock=3.13.1=pyhd8ed1ab_0 - - flit-core=3.9.0=pyhd8ed1ab_0 - fplll=5.4.5=hb7d509d_0 - gap-defaults=4.12.2=hce30654_3 - - gast=0.5.4=pyhd8ed1ab_0 - - gfortran_impl_osx-arm64=12.3.0=hbbb9e1e_1 - gmpy2=2.1.2=py310h2e6cad2_1 - idna=3.6=pyhd8ed1ab_0 - - imagesize=1.4.1=pyhd8ed1ab_0 - - ipython_genutils=0.2.0=py_1 - - json5=0.9.14=pyhd8ed1ab_0 - - jsonpointer=2.4=py310hbe9552e_3 - - jupyterlab_widgets=3.0.9=pyhd8ed1ab_0 + - jupyterlab_widgets=3.0.10=pyhd8ed1ab_0 - kiwisolver=1.4.5=py310h38f39d4_1 - lcalc=2.0.5=hc94e8e6_1 - - ld64_osx-arm64=609=hc4dc95b_15 + - ld64=609=h634c8be_16 - libblas=3.9.0=20_osxarm64_openblas - - libclang-cpp15=15.0.7=default_hd209bcb_4 - - libcurl=8.1.2=h912dcd9_0 - - libgd=2.3.3=h90fb8ed_4 - - llvm-tools=15.0.7=h62b9111_1 - - markupsafe=2.1.3=py310h2aa6e3c_1 + - libcurl=8.5.0=h2d989ff_0 + - libgd=2.3.3=hfdf3952_9 + - markupsafe=2.1.5=py310hd125d64_0 - maxima=5.45.0=h6032a66_2 - - mistune=3.0.2=pyhd8ed1ab_0 - mpmath=1.3.0=pyhd8ed1ab_0 - munkres=1.1.4=pyh9f0ad1d_0 - - nest-asyncio=1.5.8=pyhd8ed1ab_0 + - nest-asyncio=1.6.0=pyhd8ed1ab_0 - networkx=3.2.1=pyhd8ed1ab_0 - openblas=0.3.25=openmp_h55c453e_0 - packaging=23.2=pyhd8ed1ab_0 - - pandocfilters=1.5.0=pyhd8ed1ab_0 - parso=0.8.3=pyhd8ed1ab_0 - - pathspec=0.12.1=pyhd8ed1ab_0 - pickleshare=0.7.5=py_1003 - - pillow=9.4.0=py310h5a7539a_1 + - pillow=10.2.0=py310hfae7ebd_0 - pkgconfig=1.5.5=pyhd8ed1ab_4 - - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 - - platformdirs=4.1.0=pyhd8ed1ab_0 - - pluggy=1.3.0=pyhd8ed1ab_0 - - ply=3.11=py_1 - - prometheus_client=0.19.0=pyhd8ed1ab_0 - - psutil=5.9.7=py310hd125d64_0 + - platformdirs=4.2.0=pyhd8ed1ab_0 + - psutil=5.9.8=py310hd125d64_0 - ptyprocess=0.7.0=pyhd3deb0d_0 - pure_eval=0.2.2=pyhd8ed1ab_0 - - py=1.11.0=pyh6c4a22f_0 - - pybind11-global=2.11.1=py310h38f39d4_2 - - pycparser=2.21=pyhd8ed1ab_0 - pygments=2.17.2=pyhd8ed1ab_0 - pyparsing=3.1.1=pyhd8ed1ab_0 - - pyrsistent=0.20.0=py310hd125d64_0 - pysocks=1.7.1=pyha2e5f31_6 - - python-fastjsonschema=2.19.0=pyhd8ed1ab_0 - - python-json-logger=2.0.7=pyhd8ed1ab_0 - - python-lrcalc=2.1=py310h0f1eb42_5 - - python-tzdata=2023.3=pyhd8ed1ab_0 - - pytz=2023.3.post1=pyhd8ed1ab_0 - - pyyaml=6.0.1=py310h2aa6e3c_1 - pyzmq=25.1.2=py310hbb13138_0 - - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.15.2=py310hd442715_0 - - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 - - sagetex=3.6.1=pyhd8ed1ab_0 - - setuptools=68.2.2=pyhd8ed1ab_0 - - simplegeneric=0.8.1=py_1 + - setuptools=69.1.0=pyhd8ed1ab_1 - singular=4.3.2.p8=hb460b52_1 - six=1.16.0=pyh6c4a22f_0 - - sniffio=1.3.0=pyhd8ed1ab_0 - - snowballstemmer=2.2.0=pyhd8ed1ab_0 - - soupsieve=2.5=pyhd8ed1ab_1 - - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_0 - sympow=2.023.6=hb0babe8_3 - tomli=2.0.1=pyhd8ed1ab_0 - - tornado=6.3.3=py310h2aa6e3c_1 - - traitlets=5.14.0=pyhd8ed1ab_0 - - trove-classifiers=2023.11.29=pyhd8ed1ab_0 - - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 + - tornado=6.4=py310hd125d64_0 + - traitlets=5.14.1=pyhd8ed1ab_0 - typing_extensions=4.9.0=pyha770c72_0 - - typing_utils=0.1.0=pyhd8ed1ab_0 - - tzlocal=5.2=py310hbe9552e_0 - unicodedata2=15.1.0=py310h2aa6e3c_0 - - uri-template=1.3.0=pyhd8ed1ab_0 - - wcwidth=0.2.12=pyhd8ed1ab_0 - - webcolors=1.13=pyhd8ed1ab_0 - - webencodings=0.5.1=pyhd8ed1ab_2 - - websocket-client=1.7.0=pyhd8ed1ab_0 + - wcwidth=0.2.13=pyhd8ed1ab_0 - wheel=0.42.0=pyhd8ed1ab_0 - - widgetsnbextension=4.0.9=pyhd8ed1ab_0 + - widgetsnbextension=4.0.10=pyhd8ed1ab_0 - zipp=3.17.0=pyhd8ed1ab_0 - - anyio=4.2.0=pyhd8ed1ab_0 - asttokens=2.4.1=pyhd8ed1ab_0 - - async-lru=2.0.4=pyhd8ed1ab_0 - - babel=2.14.0=pyhd8ed1ab_0 - - beautifulsoup4=4.12.2=pyha770c72_0 - - beniget=0.4.1=pyhd8ed1ab_0 - - bleach=6.1.0=pyhd8ed1ab_0 - - cached-property=1.5.2=hd8ed1ab_1 - - cctools_osx-arm64=973.0.1=h2a25c60_15 - - cffi=1.16.0=py310hdcd7c05_0 - - clang-15=15.0.7=default_hd209bcb_4 - - cmake=3.26.4=hc0af03a_0 - - comm=0.1.4=pyhd8ed1ab_0 - - cppy=1.2.1=pyhd8ed1ab_0 - - curl=8.1.2=h912dcd9_0 - - cypari2=2.1.3=py310h13936bf_2 - - deprecation=2.1.0=pyh9f0ad1d_0 - - fonttools=4.47.0=py310hd125d64_0 - - harfbuzz=6.0.0=hddbc195_0 - - importlib-metadata=7.0.0=pyha770c72_0 + - cctools=973.0.1=h4faf515_16 + - clang=16.0.6=h30cc82d_5 + - comm=0.2.1=pyhd8ed1ab_0 + - cypari2=2.1.4=py310h5e3d6bc_2 + - fonttools=4.49.0=py310hd125d64_0 + - importlib-metadata=7.0.1=pyha770c72_0 - importlib_resources=6.1.1=pyhd8ed1ab_0 - jedi=0.19.1=pyhd8ed1ab_0 - - jinja2=3.1.2=pyhd8ed1ab_1 - - jupyter_core=5.5.1=py310hbe9552e_0 - - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 - - ld64=609=h89fa09d_15 + - jinja2=3.1.3=pyhd8ed1ab_0 + - jupyter_core=5.7.1=py310hbe9552e_0 - libcblas=3.9.0=20_osxarm64_openblas - liblapack=3.9.0=20_osxarm64_openblas - matplotlib-inline=0.1.6=pyhd8ed1ab_0 - memory-allocator=0.1.3=py310h2aa6e3c_0 - - overrides=7.4.0=pyhd8ed1ab_0 - - pexpect=4.8.0=pyh1a96a4e_2 - - pip=23.3.2=pyhd8ed1ab_0 + - meson=1.3.2=pyhd8ed1ab_0 + - pexpect=4.9.0=pyhd8ed1ab_0 + - pip=24.0=pyhd8ed1ab_0 - pplpy=0.8.9=py310hab1f656_0 - primecountpy=0.1.0=py310h38f39d4_4 - prompt-toolkit=3.0.42=pyha770c72_0 - - pybind11=2.11.1=py310h38f39d4_2 - - pyobjc-core=10.1=py310hb3aa912_0 - - pyproject-api=1.6.1=pyhd8ed1ab_0 + - pyproject-metadata=0.7.1=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - - pytz-deprecation-shim=0.1.0.post0=py310hbe9552e_4 - - referencing=0.32.0=pyhd8ed1ab_0 - - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - sympy=1.12=pypyh9d50eac_103 - - terminado=0.18.0=pyh31c8845_0 - - tinycss2=1.2.1=pyhd8ed1ab_0 - - typing-extensions=4.9.0=hd8ed1ab_0 - - urllib3=2.1.0=pyhd8ed1ab_0 - - virtualenv=20.25.0=pyhd8ed1ab_0 - - argon2-cffi-bindings=21.2.0=py310h2aa6e3c_4 - - arpack=3.7.0=h58ebc17_2 - - arrow=1.3.0=pyhd8ed1ab_0 - - cctools=973.0.1=hd1ac623_15 - - clang=15.0.7=haab561b_4 - - dsdp=5.8=h9397a75_1203 + - urllib3=2.2.1=pyhd8ed1ab_0 + - arpack=3.8.0=nompi_ha3438d0_101 + - clangxx=16.0.6=default_h4cf2255_5 - fflas-ffpack=2.4.3=h11f2abc_2 - - fqdn=1.5.1=pyhd8ed1ab_0 - gsl=2.7=h6e638da_0 - - hatchling=1.21.0=pyhd8ed1ab_0 - iml=1.0.5=hd52f0d1_1003 - - importlib-resources=6.1.1=pyhd8ed1ab_0 - - importlib_metadata=7.0.0=hd8ed1ab_0 - - jsonschema-specifications=2023.11.2=pyhd8ed1ab_0 - - jupyter_server_terminals=0.5.0=pyhd8ed1ab_0 + - importlib_metadata=7.0.1=hd8ed1ab_0 - liblapacke=3.9.0=20_osxarm64_openblas - - numpy=1.26.2=py310h30ee222_0 - - pango=1.50.14=h6c112b8_0 - - prompt_toolkit=3.0.42=hd8ed1ab_0 - - pyobjc-framework-cocoa=10.1=py310hb3aa912_0 + - meson-python=0.15.0=pyh0c530f3_0 + - numpy=1.26.4=py310hd45542a_0 - requests=2.31.0=pyhd8ed1ab_0 - - setuptools-scm=8.0.4=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 - - suitesparse=5.10.1=h88be0ae_2 - - argon2-cffi=23.1.0=pyhd8ed1ab_0 - blas-devel=3.9.0=20_osxarm64_openblas - - clangxx=15.0.7=default_h5c94ee4_4 + - compiler-rt_osx-arm64=16.0.6=h3808999_2 - contourpy=1.2.0=py310hd137fd4_0 - - cvxopt=1.3.2=py310hadc6ad6_1 - - fpylll=0.6.0=py310hc79cb59_1 + - fpylll=0.6.1=py310hd9be144_0 - giac=1.9.0.21=h1c96721_1 - - igraph=0.9.10=hcec9b84_1 - - ipython=8.18.1=pyh707e725_3 - - isoduration=20.11.0=pyhd8ed1ab_0 - - jsonschema=4.20.0=pyhd8ed1ab_0 + - igraph=0.10.10=h48be1ad_0 + - ipython=8.22.0=pyh707e725_0 - jupyter_client=8.6.0=pyhd8ed1ab_0 - linbox=1.6.3=h380be0f_8 - scipy=1.11.4=py310h2b794db_0 - - send2trash=1.8.2=pyhd1c38e8_0 - - setuptools_scm=8.0.4=hd8ed1ab_0 - - tox=4.11.4=pyhd8ed1ab_0 - blas=2.120=openblas - - compiler-rt_osx-arm64=15.0.7=h3808999_2 - - ipykernel=6.26.0=pyh3cd1d5f_0 - - ipywidgets=8.1.1=pyhd8ed1ab_0 - - jsonschema-with-format-nongpl=4.20.0=pyhd8ed1ab_0 - - matplotlib-base=3.8.2=py310h9d2df84_0 - - nbformat=5.9.2=pyhd8ed1ab_0 - - rw=0.9=h3422bc3_0 - - compiler-rt=15.0.7=h3808999_2 - - ipympl=0.9.3=pyhd8ed1ab_0 - - jupyter-jsmol=2022.1.0=pyhd8ed1ab_0 - - jupyter_events=0.9.0=pyhd8ed1ab_0 - - matplotlib=3.8.2=py310hb6292c7_0 - - nbclient=0.8.0=pyhd8ed1ab_0 - - clang_impl_osx-arm64=15.0.7=h77e971b_7 - - nbconvert-core=7.13.0=pyhd8ed1ab_0 - - clang_osx-arm64=15.0.7=h54d7cd3_7 - - jupyter_server=2.12.1=pyhd8ed1ab_0 - - nbconvert-pandoc=7.13.0=pyhd8ed1ab_0 - - c-compiler=1.6.0=hd291e01_0 - - clangxx_impl_osx-arm64=15.0.7=h768a7fd_7 - - gfortran_osx-arm64=12.3.0=h57527a5_1 - - jupyter-lsp=2.2.1=pyhd8ed1ab_0 - - jupyterlab_server=2.25.2=pyhd8ed1ab_0 - - nbconvert=7.13.0=pyhd8ed1ab_0 - - notebook-shim=0.2.3=pyhd8ed1ab_0 - - clangxx_osx-arm64=15.0.7=h54d7cd3_7 - - gfortran=12.3.0=h1ca8e4b_1 - - jupyterlab=4.0.9=pyhd8ed1ab_0 - - cxx-compiler=1.6.0=h1995070_0 - - fortran-compiler=1.6.0=h5a50232_0 - - notebook=7.0.6=pyhd8ed1ab_0 - - pythran=0.14.0=py310he53c7d2_1 - - r-base=4.1.3=h9c4d319_6 - - compilers=1.6.0=hce30654_0 - - rpy2=3.5.11=py310r41hf1a086a_0 - - jupyter_sphinx=0.1.4=py_0 - - sphinx-basic-ng=1.0.0b2=pyhd8ed1ab_1 - - furo=2023.9.10=pyhd8ed1ab_0 - - sphinx-copybutton=0.5.2=pyhd8ed1ab_0 - - sphinxcontrib-applehelp=1.0.7=pyhd8ed1ab_0 - - sphinxcontrib-devhelp=1.0.5=pyhd8ed1ab_0 - - sphinxcontrib-htmlhelp=2.0.4=pyhd8ed1ab_0 - - sphinxcontrib-qthelp=1.0.6=pyhd8ed1ab_0 - - sphinx=7.2.6=pyhd8ed1ab_0 - - sphinxcontrib-serializinghtml=1.1.9=pyhd8ed1ab_0 - - sphinxcontrib-websupport=1.2.6=pyhd8ed1ab_0 + - compiler-rt=16.0.6=h3808999_2 + - ipykernel=6.29.2=pyh3cd1d5f_0 + - ipywidgets=8.1.2=pyhd8ed1ab_0 + - matplotlib-base=3.8.3=py310h2439c42_0 + - rw=0.9=h93a5062_1 + - clang_impl_osx-arm64=16.0.6=hc421ffc_9 + - clang_osx-arm64=16.0.6=h54d7cd3_9 + - c-compiler=1.6.0=h6aa9301_0 + - clangxx_impl_osx-arm64=16.0.6=hcd7bac0_9 + - clangxx_osx-arm64=16.0.6=h54d7cd3_9 + - cxx-compiler=1.6.0=h2ffa867_0 diff --git a/src/environment-3.10-macos.yml b/src/environment-3.10-macos.yml index ba31dab449e..99cbc1e53ad 100644 --- a/src/environment-3.10-macos.yml +++ b/src/environment-3.10-macos.yml @@ -1,121 +1,87 @@ # Generated by conda-lock. # platform: osx-64 -# input_hash: e6e5d1bfe3ab9c165fc03815724be4801c145386f5a72ab882384f30f7533b97 +# input_hash: c8efcf85fc5d9787933feb262de13d9315c8a1cba3dcd543e175083ed1fda983 channels: - conda-forge dependencies: - - _r-mutex=1.0.1=anacondar_1 - - bc=1.07.1=h0d85af4_0 - bzip2=1.0.8=h10d778d_5 - - c-ares=1.24.0=h10d778d_0 - - ca-certificates=2023.11.17=h8857fd0_0 + - c-ares=1.27.0=h10d778d_0 + - ca-certificates=2024.2.2=h8857fd0_0 - cliquer=1.22=hbcb3906_0 - font-ttf-dejavu-sans-mono=2.37=hab24e00_0 - font-ttf-inconsolata=3.000=h77eed37_0 - font-ttf-source-code-pro=2.038=h77eed37_0 - font-ttf-ubuntu=0.83=h77eed37_1 - - fribidi=1.0.10=hbcb3906_0 - giflib=5.2.1=hb7f2c08_3 - icu=73.2=hf5e326d_0 - - libatomic_ops=7.6.14=hb7f2c08_0 - - libboost-headers=1.84.0=h694c41f_0 + - libboost-headers=1.84.0=h694c41f_1 - libbrotlicommon=1.1.0=h0dc2134_1 - libcxx=16.0.6=hd57cbcb_0 - libdeflate=1.19=ha4e1b8e_0 - libev=4.33=h10d778d_2 - libexpat=2.5.0=hf0c8a7f_1 - libffi=3.4.2=h0d85af4_5 - - libgfortran-devel_osx-64=12.3.0=h0b6f5ec_1 - libiconv=1.17=hd75f5a5_2 - libjpeg-turbo=3.0.0=h0dc2134_1 - libsodium=1.0.18=hbcb3906_1 - - libtool=2.4.7=hf0c8a7f_0 - - libuv=1.46.0=h0c2f820_0 - libwebp-base=1.3.2=h0dc2134_0 - libzlib=1.2.13=h8a1eda9_5 - llvm-openmp=17.0.6=hb6ac08f_0 - - m4=1.4.18=haf1e3a3_1001 - - make=4.3=h22f3db7_1 - - mathjax=3.2.2=h694c41f_0 - - nauty=2.8.8=h10d778d_0 + - nauty=2.8.8=h10d778d_1 - palp=2.20=hbcb3906_0 - pari-elldata=0.0.20161017=0 - pari-galdata=0.0.20180411=0 - - pari-galpol=0.0.20180625=0 - pari-seadata-small=0.0.20090618=0 - - patch=2.7.6=hbcf498f_1002 - - perl=5.32.1=4_h0dc2134_perl5 + - perl=5.32.1=7_h10d778d_perl5 - planarity=3.0.0.5=hbcb3906_1002 - pthread-stubs=0.4=hc929b4f_1001 - python_abi=3.10=4_cp310 - - rhash=1.4.4=h0dc2134_0 - - sagemath-db-combinatorial-designs=20140630=1 - - sagemath-db-graphs=20210214=hd8ed1ab_0 - - sagemath-db-polytopes=20170220=1 - - three.js=122=hd8ed1ab_2 - - tzdata=2023c=h71feb2d_0 + - tzdata=2024a=h0c530f3_0 - xorg-libxau=1.0.11=h0dc2134_0 - xorg-libxdmcp=1.1.3=h35c211d_0 - xz=5.2.6=h775f41a_0 - - yaml=0.2.5=h0d85af4_2 - - autoconf=2.71=pl5321hed12c24_1 - bdw-gc=8.0.6=h940c156_0 - expat=2.5.0=hf0c8a7f_1 - fonts-conda-forge=1=0 - - gengetopt=2.23=he49afe7_0 - gettext=0.21.1=h8a4c099_0 - gf2x=1.3.0=hb2a7efb_2 - gmp=6.3.0=h93d8f39_0 - - graphite2=1.3.13=h2e338ed_1001 - - isl=0.25=hb486fe8_0 - lerc=4.0.0=hb486fe8_0 - libbraiding=1.2=hf0c8a7f_0 - libbrotlidec=1.1.0=h0dc2134_1 - libbrotlienc=1.1.0=h0dc2134_1 - - libgfortran5=13.2.0=h2873a65_1 - - libpng=1.6.39=ha978bb4_0 - - libsqlite=3.44.2=h92b6c6a_0 + - libgfortran5=13.2.0=h2873a65_3 + - libpng=1.6.42=h92b6c6a_0 + - libsqlite=3.45.1=h92b6c6a_0 - libxcb=1.15=hb7f2c08_0 - - libxml2=2.11.6=hc0ae0f7_0 - - lrcalc=2.1=hf0c8a7f_5 - - metis=5.1.1=h93d8f39_2 + - libxml2=2.12.5=hc0ae0f7_0 + - lrcalc=2.1=h73e2aa4_6 - ncurses=6.4=h93d8f39_2 - ninja=1.11.1=hb8565cd_0 - - openjdk=21.0.1=hf4d7fad_0 - - openssl=3.2.0=hd75f5a5_1 - - pandoc=3.1.3=h9d075a6_0 + - openssl=3.2.1=hd75f5a5_0 - pari-seadata=0.0.20090618=0 - - pcre2=10.40=h1c4e4bc_0 - - pixman=0.42.2=he965462_0 - pkg-config=0.29.2=ha3d46e9_1008 - primesieve=11.0=hf0c8a7f_0 - qhull=2020.2=h940c156_2 - symmetrica=3.0.1=hf0c8a7f_0 - tapi=1100.0.11=h9ce4665_0 - - tar=1.34=hcb2f6ea_1 - - threejs-sage=122=hd8ed1ab_2 - tk=8.6.13=h1abcd95_1 - zeromq=4.3.5=h93d8f39_0 - zlib=1.2.13=h8a1eda9_5 - zstd=1.5.5=h829000d_0 - - automake=1.16.5=pl5321h694c41f_0 - brotli-bin=1.1.0=h0dc2134_1 - - bwidget=1.9.14=h694c41f_1 - cddlib=1!0.94m=h0f52abe_0 - ecm=7.0.4=h343d7f2_1002 - fonts-conda-ecosystem=1=0 - freetype=2.12.1=h60636b9_2 - givaro=4.1.1=h0a799c6_3 - glpk=5.0=h3cb5acd_0 - - jmol=14.32.9=h694c41f_0 - - libboost=1.84.0=h5b2dd29_0 + - libboost=1.84.0=h4bb364b_1 - libedit=3.1.20191231=h0678c8f_2 - - libgfortran=5.0.0=13_2_0_h97931a8_1 - - libglib=2.78.1=h6d9ecee_0 + - libgfortran=5.0.0=13_2_0_h97931a8_3 - libhomfly=1.02r6=hc929b4f_0 - - libhwloc=2.9.3=default_h24e0189_1009 - - libllvm15=15.0.7=he4b1e75_3 + - libllvm16=16.0.6=hbedff68_3 - libnghttp2=1.58.0=h64cf6d3_1 - libssh2=1.11.0=hd019ec5_0 - libtiff=4.6.0=h684deea_2 @@ -125,282 +91,146 @@ dependencies: - primecount=7.6=ha894c9a_0 - readline=8.2=h9e318b2_1 - sigtool=0.1.3=h88f4db0_0 - - tachyon=0.99b6=0 - - texinfo=7.0=pl5321hc47821c_0 - - tktable=2.10=ha166976_5 - brotli=1.1.0=h0dc2134_1 - ecl=21.2.1=hd029580_2 - - fftw=3.3.10=nompi_h4fa670e_108 - fontconfig=2.14.2=h5bb23bf_0 - gap-core=4.12.2=hc16eb5f_3 - gfan=0.6.2=hd793b56_1003 - krb5=1.21.2=hb884880_0 - lcms2=2.16=ha2f27b4_0 - - ld64_osx-64=609=h0fd476b_15 - - libboost-devel=1.84.0=h7728843_0 + - ld64_osx-64=609=ha20a434_16 + - libboost-devel=1.84.0=h7728843_1 - libbrial=1.2.12=h8d08345_1 - - libclang-cpp15=15.0.7=default_h6b1ee41_4 + - libclang-cpp16=16.0.6=default_h7151d67_5 - libflint=3.0.1=h5d15de0_ntl_100 - libopenblas=0.3.25=openmp_hfef2a42_0 - libwebp=1.3.2=h44782d1_1 - - llvm-tools=15.0.7=he4b1e75_3 + - llvm-tools=16.0.6=hbedff68_3 - m4rie=20150908=h3f75d11_1001 - mpc=1.3.1=h81bd1dd_0 - mpfi=1.5.4=h52b28e3_1001 - openjpeg=2.5.0=ha4da562_3 - pari=2.15.4=h93f793c_2_pthread - ppl=1.2=ha60d53e_1006 - - python=3.10.13=h00d2728_0_cpython + - python=3.10.13=h00d2728_1_cpython - qd=2.3.22=h2beb688_1004 - - sqlite=3.44.2=h7461747_0 - - tbb=2021.11.0=he51d815_0 - - alabaster=0.7.13=pyhd8ed1ab_0 - - appdirs=1.4.4=pyh9f0ad1d_0 - - appnope=0.1.3=pyhd8ed1ab_0 - - attrs=23.1.0=pyh71513ae_1 - - boost-cpp=1.84.0=h07eb623_0 + - appnope=0.1.4=pyhd8ed1ab_0 + - boost-cpp=1.84.0=h07eb623_1 - brial=1.2.12=pyh694c41f_1 - brotli-python=1.1.0=py310h9e9d8ca_1 - - cached_property=1.5.2=pyha770c72_1 - - cachetools=5.3.2=pyhd8ed1ab_0 - - cairo=1.18.0=h99e66fa_0 - - cctools_osx-64=973.0.1=habff3f6_15 - - certifi=2023.11.17=pyhd8ed1ab_0 - - chardet=5.2.0=py310h2ec42d9_1 + - cctools_osx-64=973.0.1=ha1c5b94_16 + - certifi=2024.2.2=pyhd8ed1ab_0 - charset-normalizer=3.3.2=pyhd8ed1ab_0 - - clang-15=15.0.7=default_h6b1ee41_4 + - clang-16=16.0.6=default_h7151d67_5 - colorama=0.4.6=pyhd8ed1ab_0 - - conway-polynomials=0.8=pyhd8ed1ab_0 + - conway-polynomials=0.9=pyhd8ed1ab_0 - cycler=0.12.1=pyhd8ed1ab_0 - cysignals=1.11.2=py310h8c82e65_3 - - cython=3.0.7=py310h5daac23_0 - - debugpy=1.8.0=py310h9e9d8ca_1 + - cython=3.0.8=py310h5daac23_0 + - debugpy=1.8.1=py310h5daac23_0 - decorator=5.1.1=pyhd8ed1ab_0 - - defusedxml=0.7.1=pyhd8ed1ab_0 - - distlib=0.3.8=pyhd8ed1ab_0 - - docutils=0.20.1=py310h2ec42d9_3 - - eclib=20231211=h02435c3_0 - - editables=0.3=pyhd8ed1ab_0 - - entrypoints=0.4=pyhd8ed1ab_0 - - exceptiongroup=1.2.0=pyhd8ed1ab_0 + - eclib=20231212=h02435c3_0 + - exceptiongroup=1.2.0=pyhd8ed1ab_2 - executing=2.0.1=pyhd8ed1ab_0 - - filelock=3.13.1=pyhd8ed1ab_0 - - flit-core=3.9.0=pyhd8ed1ab_0 - fplll=5.4.5=hb7981ad_0 - gap-defaults=4.12.2=h694c41f_3 - - gast=0.5.4=pyhd8ed1ab_0 - - gfortran_impl_osx-64=12.3.0=h54fd467_1 - gmpy2=2.1.2=py310hb691cb2_1 - idna=3.6=pyhd8ed1ab_0 - - imagesize=1.4.1=pyhd8ed1ab_0 - - ipython_genutils=0.2.0=py_1 - - json5=0.9.14=pyhd8ed1ab_0 - - jsonpointer=2.4=py310h2ec42d9_3 - - jupyterlab_widgets=3.0.9=pyhd8ed1ab_0 + - jupyterlab_widgets=3.0.10=pyhd8ed1ab_0 - kiwisolver=1.4.5=py310h88cfcbd_1 - lcalc=2.0.5=h3a941db_1 - - ld64=609=ha91a046_15 + - ld64=609=ha02d983_16 - libblas=3.9.0=20_osx64_openblas - libcurl=8.5.0=h726d00d_0 - libgd=2.3.3=h0dceb68_9 - - markupsafe=2.1.3=py310h6729b98_1 + - markupsafe=2.1.5=py310hb372a2b_0 - maxima=5.47.0=h2b27fa8_1 - - mistune=3.0.2=pyhd8ed1ab_0 - mpmath=1.3.0=pyhd8ed1ab_0 - munkres=1.1.4=pyh9f0ad1d_0 - - nest-asyncio=1.5.8=pyhd8ed1ab_0 + - nest-asyncio=1.6.0=pyhd8ed1ab_0 - networkx=3.2.1=pyhd8ed1ab_0 - openblas=0.3.25=openmp_h6794695_0 - packaging=23.2=pyhd8ed1ab_0 - - pandocfilters=1.5.0=pyhd8ed1ab_0 - parso=0.8.3=pyhd8ed1ab_0 - - pathspec=0.12.1=pyhd8ed1ab_0 - pickleshare=0.7.5=py_1003 - - pillow=10.1.0=py310he65384d_0 + - pillow=10.2.0=py310he65384d_0 - pkgconfig=1.5.5=pyhd8ed1ab_4 - - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 - - platformdirs=4.1.0=pyhd8ed1ab_0 - - pluggy=1.3.0=pyhd8ed1ab_0 - - ply=3.11=py_1 - - prometheus_client=0.19.0=pyhd8ed1ab_0 - - psutil=5.9.7=py310hb372a2b_0 + - platformdirs=4.2.0=pyhd8ed1ab_0 + - psutil=5.9.8=py310hb372a2b_0 - ptyprocess=0.7.0=pyhd3deb0d_0 - pure_eval=0.2.2=pyhd8ed1ab_0 - - py=1.11.0=pyh6c4a22f_0 - - pybind11-global=2.11.1=py310h88cfcbd_2 - - pycparser=2.21=pyhd8ed1ab_0 - pygments=2.17.2=pyhd8ed1ab_0 - pyparsing=3.1.1=pyhd8ed1ab_0 - - pyrsistent=0.20.0=py310hb372a2b_0 - pysocks=1.7.1=pyha2e5f31_6 - - python-fastjsonschema=2.19.0=pyhd8ed1ab_0 - - python-json-logger=2.0.7=pyhd8ed1ab_0 - - python-lrcalc=2.1=py310h7a76584_5 - - python-tzdata=2023.3=pyhd8ed1ab_0 - - pytz=2023.3.post1=pyhd8ed1ab_0 - - pyyaml=6.0.1=py310h6729b98_1 - pyzmq=25.1.2=py310h6b67f7f_0 - - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.15.2=py310h0e083fb_0 - - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 - - sagetex=3.6.1=pyhd8ed1ab_0 - - setuptools=68.2.2=pyhd8ed1ab_0 - - simplegeneric=0.8.1=py_1 + - setuptools=69.1.0=pyhd8ed1ab_1 - singular=4.3.2.p8=h0d51a9f_1 - six=1.16.0=pyh6c4a22f_0 - - sniffio=1.3.0=pyhd8ed1ab_0 - - snowballstemmer=2.2.0=pyhd8ed1ab_0 - - soupsieve=2.5=pyhd8ed1ab_1 - - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_0 - sympow=2.023.6=h115ba6a_3 - tomli=2.0.1=pyhd8ed1ab_0 - - tornado=6.3.3=py310h6729b98_1 - - traitlets=5.14.0=pyhd8ed1ab_0 - - trove-classifiers=2023.11.29=pyhd8ed1ab_0 - - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 + - tornado=6.4=py310hb372a2b_0 + - traitlets=5.14.1=pyhd8ed1ab_0 - typing_extensions=4.9.0=pyha770c72_0 - - typing_utils=0.1.0=pyhd8ed1ab_0 - - tzlocal=5.2=py310h2ec42d9_0 - unicodedata2=15.1.0=py310h6729b98_0 - - uri-template=1.3.0=pyhd8ed1ab_0 - - wcwidth=0.2.12=pyhd8ed1ab_0 - - webcolors=1.13=pyhd8ed1ab_0 - - webencodings=0.5.1=pyhd8ed1ab_2 - - websocket-client=1.7.0=pyhd8ed1ab_0 + - wcwidth=0.2.13=pyhd8ed1ab_0 - wheel=0.42.0=pyhd8ed1ab_0 - - widgetsnbextension=4.0.9=pyhd8ed1ab_0 + - widgetsnbextension=4.0.10=pyhd8ed1ab_0 - zipp=3.17.0=pyhd8ed1ab_0 - - anyio=4.2.0=pyhd8ed1ab_0 - asttokens=2.4.1=pyhd8ed1ab_0 - - async-lru=2.0.4=pyhd8ed1ab_0 - - babel=2.14.0=pyhd8ed1ab_0 - - beautifulsoup4=4.12.2=pyha770c72_0 - - beniget=0.4.1=pyhd8ed1ab_0 - - bleach=6.1.0=pyhd8ed1ab_0 - - cached-property=1.5.2=hd8ed1ab_1 - - cctools=973.0.1=hd9ad811_15 - - cffi=1.16.0=py310hdca579f_0 - - clang=15.0.7=hac416ee_4 - - cmake=3.28.1=h7c85d92_0 - - comm=0.1.4=pyhd8ed1ab_0 - - cppy=1.2.1=pyhd8ed1ab_0 - - curl=8.5.0=h726d00d_0 - - cypari2=2.1.3=py310hb5d31c9_2 - - deprecation=2.1.0=pyh9f0ad1d_0 - - fonttools=4.47.0=py310hb372a2b_0 - - harfbuzz=8.3.0=hf45c392_0 - - importlib-metadata=7.0.0=pyha770c72_0 + - cctools=973.0.1=h40f6528_16 + - clang=16.0.6=hdae98eb_5 + - comm=0.2.1=pyhd8ed1ab_0 + - cypari2=2.1.4=py310hc7df965_2 + - fonttools=4.49.0=py310hb372a2b_0 + - importlib-metadata=7.0.1=pyha770c72_0 - importlib_resources=6.1.1=pyhd8ed1ab_0 - jedi=0.19.1=pyhd8ed1ab_0 - - jinja2=3.1.2=pyhd8ed1ab_1 - - jupyter_core=5.5.1=py310h2ec42d9_0 - - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 + - jinja2=3.1.3=pyhd8ed1ab_0 + - jupyter_core=5.7.1=py310h2ec42d9_0 - libcblas=3.9.0=20_osx64_openblas - liblapack=3.9.0=20_osx64_openblas - matplotlib-inline=0.1.6=pyhd8ed1ab_0 - memory-allocator=0.1.3=py310h6729b98_0 - - overrides=7.4.0=pyhd8ed1ab_0 - - pexpect=4.8.0=pyh1a96a4e_2 - - pip=23.3.2=pyhd8ed1ab_0 + - meson=1.3.2=pyhd8ed1ab_0 + - pexpect=4.9.0=pyhd8ed1ab_0 + - pip=24.0=pyhd8ed1ab_0 - pplpy=0.8.9=py310hd89f7aa_0 - primecountpy=0.1.0=py310h88cfcbd_4 - prompt-toolkit=3.0.42=pyha770c72_0 - - pybind11=2.11.1=py310h88cfcbd_2 - - pyobjc-core=10.1=py310h3674b6a_0 - - pyproject-api=1.6.1=pyhd8ed1ab_0 + - pyproject-metadata=0.7.1=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - - pytz-deprecation-shim=0.1.0.post0=py310h2ec42d9_4 - - referencing=0.32.0=pyhd8ed1ab_0 - - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - sympy=1.12=pypyh9d50eac_103 - - terminado=0.18.0=pyh31c8845_0 - - tinycss2=1.2.1=pyhd8ed1ab_0 - - typing-extensions=4.9.0=hd8ed1ab_0 - - urllib3=2.1.0=pyhd8ed1ab_0 - - virtualenv=20.25.0=pyhd8ed1ab_0 - - argon2-cffi-bindings=21.2.0=py310h6729b98_4 + - urllib3=2.2.1=pyhd8ed1ab_0 - arpack=3.8.0=nompi_hb44a6d1_101 - - arrow=1.3.0=pyhd8ed1ab_0 - - clangxx=15.0.7=default_h6b1ee41_4 - - dsdp=5.8=h6e329d1_1203 + - clangxx=16.0.6=default_h7151d67_5 - fflas-ffpack=2.4.3=h026fd7e_2 - - fqdn=1.5.1=pyhd8ed1ab_0 - gsl=2.7=h93259b0_0 - - hatchling=1.21.0=pyhd8ed1ab_0 - iml=1.0.5=h64b42ca_1003 - - importlib-resources=6.1.1=pyhd8ed1ab_0 - - importlib_metadata=7.0.0=hd8ed1ab_0 - - jsonschema-specifications=2023.11.2=pyhd8ed1ab_0 - - jupyter_server_terminals=0.5.0=pyhd8ed1ab_0 + - importlib_metadata=7.0.1=hd8ed1ab_0 - liblapacke=3.9.0=20_osx64_openblas - - numpy=1.26.2=py310h2a7ecf2_0 - - pango=1.50.14=h19c1c8a_2 - - prompt_toolkit=3.0.42=hd8ed1ab_0 - - pyobjc-framework-cocoa=10.1=py310h3674b6a_0 + - meson-python=0.15.0=pyh0c530f3_0 + - numpy=1.26.4=py310h4bfa8fc_0 - requests=2.31.0=pyhd8ed1ab_0 - - setuptools-scm=8.0.4=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 - - suitesparse=5.10.1=h0a40b7c_2 - - argon2-cffi=23.1.0=pyhd8ed1ab_0 - blas-devel=3.9.0=20_osx64_openblas - - compiler-rt_osx-64=15.0.7=ha38d28d_2 + - compiler-rt_osx-64=16.0.6=ha38d28d_2 - contourpy=1.2.0=py310ha697434_0 - - cvxopt=1.3.2=py310ha550498_1 - - fpylll=0.6.0=py310h2acdeac_1 + - fpylll=0.6.1=py310h65a3d7e_0 - giac=1.9.0.21=h92f3f65_1 - - igraph=0.10.8=h29df365_0 - - ipython=8.18.1=pyh707e725_3 - - isoduration=20.11.0=pyhd8ed1ab_0 - - jsonschema=4.20.0=pyhd8ed1ab_0 + - igraph=0.10.10=h6b221b4_0 + - ipython=8.22.0=pyh707e725_0 - jupyter_client=8.6.0=pyhd8ed1ab_0 - linbox=1.6.3=hfb9b24e_8 - scipy=1.11.4=py310h3f1db6d_0 - - send2trash=1.8.2=pyhd1c38e8_0 - - setuptools_scm=8.0.4=hd8ed1ab_0 - - tox=4.11.4=pyhd8ed1ab_0 - blas=2.120=openblas - - compiler-rt=15.0.7=ha38d28d_2 - - ipykernel=6.26.0=pyh3cd1d5f_0 - - ipywidgets=8.1.1=pyhd8ed1ab_0 - - jsonschema-with-format-nongpl=4.20.0=pyhd8ed1ab_0 - - matplotlib-base=3.8.2=py310hec49e92_0 - - nbformat=5.9.2=pyhd8ed1ab_0 + - compiler-rt=16.0.6=ha38d28d_2 + - ipykernel=6.29.2=pyh3cd1d5f_0 + - ipywidgets=8.1.2=pyhd8ed1ab_0 + - matplotlib-base=3.8.3=py310hec49e92_0 - rw=0.9=h10d778d_1 - - clang_impl_osx-64=15.0.7=h03d6864_7 - - ipympl=0.9.3=pyhd8ed1ab_0 - - jupyter-jsmol=2022.1.0=pyhd8ed1ab_0 - - jupyter_events=0.9.0=pyhd8ed1ab_0 - - matplotlib=3.8.2=py310h2ec42d9_0 - - nbclient=0.8.0=pyhd8ed1ab_0 - - clang_osx-64=15.0.7=hb91bd55_7 - - nbconvert-core=7.13.0=pyhd8ed1ab_0 - - c-compiler=1.6.0=h63c33a9_0 - - clangxx_impl_osx-64=15.0.7=h2133e9c_7 - - gfortran_osx-64=12.3.0=h18f7dce_1 - - jupyter_server=2.12.1=pyhd8ed1ab_0 - - nbconvert-pandoc=7.13.0=pyhd8ed1ab_0 - - clangxx_osx-64=15.0.7=hb91bd55_7 - - gfortran=12.3.0=h2c809b3_1 - - jupyter-lsp=2.2.1=pyhd8ed1ab_0 - - jupyterlab_server=2.25.2=pyhd8ed1ab_0 - - nbconvert=7.13.0=pyhd8ed1ab_0 - - notebook-shim=0.2.3=pyhd8ed1ab_0 - - cxx-compiler=1.6.0=h1c7c39f_0 - - fortran-compiler=1.6.0=h932d759_0 - - jupyterlab=4.0.9=pyhd8ed1ab_0 - - pythran=0.14.0=py310h92ebccd_1 - - r-base=4.3.1=h0ff45fa_6 - - compilers=1.6.0=h694c41f_0 - - notebook=7.0.6=pyhd8ed1ab_0 - - rpy2=3.5.11=py310r43hf0b6da5_3 - - jupyter_sphinx=0.4.0=py310h2ec42d9_1 - - sphinx-basic-ng=1.0.0b2=pyhd8ed1ab_1 - - furo=2023.9.10=pyhd8ed1ab_0 - - sphinx-copybutton=0.5.2=pyhd8ed1ab_0 - - sphinxcontrib-applehelp=1.0.7=pyhd8ed1ab_0 - - sphinxcontrib-devhelp=1.0.5=pyhd8ed1ab_0 - - sphinxcontrib-htmlhelp=2.0.4=pyhd8ed1ab_0 - - sphinxcontrib-qthelp=1.0.6=pyhd8ed1ab_0 - - sphinx=7.2.6=pyhd8ed1ab_0 - - sphinxcontrib-serializinghtml=1.1.9=pyhd8ed1ab_0 - - sphinxcontrib-websupport=1.2.6=pyhd8ed1ab_0 + - clang_impl_osx-64=16.0.6=h8787910_9 + - clang_osx-64=16.0.6=hb91bd55_9 + - c-compiler=1.6.0=h282daa2_0 + - clangxx_impl_osx-64=16.0.6=h6d92fbe_9 + - clangxx_osx-64=16.0.6=hb91bd55_9 + - cxx-compiler=1.6.0=h7728843_0 diff --git a/src/environment-3.11-linux-aarch64.yml b/src/environment-3.11-linux-aarch64.yml index 101a7edffe6..121c368bd7b 100644 --- a/src/environment-3.11-linux-aarch64.yml +++ b/src/environment-3.11-linux-aarch64.yml @@ -1,421 +1,238 @@ # Generated by conda-lock. # platform: linux-aarch64 -# input_hash: 604427f3523e85bc5343bdac8f3896ee77249f97d2a74dc7b3c903c17e8a87a7 +# input_hash: dc72554373dccddaa645f4d49d5a1077bf4d6e5653024d3e26a8a77aec537139 channels: - conda-forge dependencies: - - _r-mutex=1.0.1=anacondar_1 - - _sysroot_linux-aarch64_curr_repodata_hack=4=h57d6b7b_13 - - ca-certificates=2023.11.17=hcefe29a_0 + - _sysroot_linux-aarch64_curr_repodata_hack=4=h57d6b7b_14 + - ca-certificates=2024.2.2=hcefe29a_0 - font-ttf-dejavu-sans-mono=2.37=hab24e00_0 - font-ttf-inconsolata=3.000=h77eed37_0 - font-ttf-source-code-pro=2.038=h77eed37_0 - font-ttf-ubuntu=0.83=h77eed37_1 - - kernel-headers_linux-aarch64=4.18.0=h5b4a56d_13 - ld_impl_linux-aarch64=2.40=h2d8c526_0 - - libgcc-devel_linux-aarch64=12.3.0=h8b5ab12_103 - - libgomp=13.2.0=hf8544c7_3 - - libstdcxx-devel_linux-aarch64=12.3.0=h8b5ab12_103 - - libstdcxx-ng=13.2.0=h9a76618_3 - - mathjax=3.2.2=h8af1aa0_0 - - pandoc=3.1.3=h8af1aa0_0 + - libboost-headers=1.84.0=h8af1aa0_1 + - libgcc-devel_linux-aarch64=12.3.0=h8b5ab12_105 + - libgomp=13.2.0=hf8544c7_5 + - libstdcxx-devel_linux-aarch64=12.3.0=h8b5ab12_105 + - libstdcxx-ng=13.2.0=h9a76618_5 - pari-elldata=0.0.20161017=0 - pari-galdata=0.0.20180411=0 - - pari-galpol=0.0.20180625=0 - pari-seadata-small=0.0.20090618=0 - python_abi=3.11=4_cp311 - - sagemath-db-combinatorial-designs=20140630=1 - - sagemath-db-graphs=20210214=hd8ed1ab_0 - - sagemath-db-polytopes=20170220=1 - - three.js=122=hd8ed1ab_2 - - tzdata=2023c=h71feb2d_0 + - tzdata=2024a=h0c530f3_0 - fonts-conda-forge=1=0 + - kernel-headers_linux-aarch64=4.18.0=h5b4a56d_14 - pari-seadata=0.0.20090618=0 - - sysroot_linux-aarch64=2.17=h5b4a56d_13 - - threejs-sage=122=hd8ed1ab_2 - - binutils_impl_linux-aarch64=2.40=h870a726_0 - fonts-conda-ecosystem=1=0 + - sysroot_linux-aarch64=2.17=h5b4a56d_14 + - binutils_impl_linux-aarch64=2.40=h870a726_0 - binutils=2.40=h64c2a2e_0 - binutils_linux-aarch64=2.40=h94bbfa1_2 - _openmp_mutex=4.5=2_kmp_llvm - - libgcc-ng=13.2.0=hf8544c7_3 - - alsa-lib=1.2.8=h4e544f5_0 - - bc=1.07.1=hf897c2e_0 + - libgcc-ng=13.2.0=hf8544c7_5 - bdw-gc=8.0.6=hd62202e_0 - bzip2=1.0.8=h31becfc_5 - - c-ares=1.24.0=h31becfc_0 + - c-ares=1.27.0=h31becfc_0 - cliquer=1.22=hb9de7d4_0 - - fribidi=1.0.10=hb9de7d4_0 - - gengetopt=2.23=h01db608_0 - - gettext=0.21.1=ha18d298_0 - gf2x=1.3.0=h1b3b3a3_2 - giflib=5.2.1=hb4cce97_3 - gmp=6.3.0=h2f0025b_0 - - graphite2=1.3.13=h7fd3ca4_1001 - - icu=70.1=ha18d298_0 - - jpeg=9e=h2a766a3_3 + - icu=73.2=h787c7f5_0 - keyutils=1.6.1=h4e544f5_0 - lerc=4.0.0=h4de3ea5_0 - - libatomic_ops=7.6.14=h4e544f5_0 - libbraiding=1.2=hd600fc2_0 - libbrotlicommon=1.1.0=h31becfc_1 - - libdeflate=1.17=hb4cce97_0 + - libdeflate=1.19=h31becfc_0 - libev=4.33=h31becfc_2 - libexpat=2.5.0=hd600fc2_1 - libffi=3.4.2=h3557bc0_5 - - libgfortran5=13.2.0=h582850c_3 + - libgfortran5=13.2.0=h582850c_5 - libiconv=1.17=h31becfc_2 + - libjpeg-turbo=3.0.0=h31becfc_1 - libnsl=2.0.1=h31becfc_0 - - libsanitizer=12.3.0=h8ebda82_3 + - libsanitizer=12.3.0=h8ebda82_5 - libsodium=1.0.18=hb9de7d4_1 - - libtool=2.4.7=h4de3ea5_0 - libuuid=2.38.1=hb4cce97_0 - - libuv=1.46.0=h31becfc_0 - - libwebp-base=1.2.4=h4e544f5_0 + - libwebp-base=1.3.2=h31becfc_0 + - libxcrypt=4.4.36=h31becfc_1 - libzlib=1.2.13=h31becfc_5 - - lrcalc=2.1=h4de3ea5_5 - - m4=1.4.18=h516909a_1001 - - make=4.3=h309ac5b_1 - - metis=5.1.0=h2f0025b_1007 - - nauty=2.8.8=h31becfc_0 + - lrcalc=2.1=h2f0025b_6 + - nauty=2.8.8=h31becfc_1 - ncurses=6.4=h0425590_2 - ninja=1.11.1=hdd96247_0 - - openssl=3.2.0=h31becfc_1 + - openssl=3.2.1=h31becfc_0 - palp=2.20=hb9de7d4_0 - - patch=2.7.6=hf897c2e_1002 - - pixman=0.42.2=h2f0025b_0 - pkg-config=0.29.2=hb9de7d4_1008 - planarity=3.0.0.5=hb9de7d4_1002 - primesieve=11.1=h2f0025b_0 - pthread-stubs=0.4=hb9de7d4_1001 - qhull=2020.2=hd62202e_2 - - rhash=1.4.3=h31becfc_2 - - sed=4.8=ha0d5d3d_0 - symmetrica=3.0.1=hd600fc2_0 - - xorg-inputproto=2.3.2=h3557bc0_1002 - - xorg-kbproto=1.0.7=h3557bc0_1002 - - xorg-libice=1.0.10=h3557bc0_0 - xorg-libxau=1.0.11=h31becfc_0 - xorg-libxdmcp=1.1.3=h3557bc0_0 - - xorg-recordproto=1.14.2=hf897c2e_1002 - - xorg-renderproto=0.11.1=h3557bc0_1002 - - xorg-xextproto=7.3.0=h2a766a3_1003 - - xorg-xproto=7.0.31=h3557bc0_1007 - xz=5.2.6=h9cdd2b7_0 - - yaml=0.2.5=hf897c2e_2 - cddlib=1!0.94m=h719063d_0 - ecm=7.0.4=h719063d_1002 - expat=2.5.0=hd600fc2_1 - - gcc_impl_linux-aarch64=12.3.0=hcde2664_3 + - gcc_impl_linux-aarch64=12.3.0=hcde2664_5 - givaro=4.1.1=h192cbe9_1 - glpk=5.0=h66325d0_0 - libbrotlidec=1.1.0=h31becfc_1 - libbrotlienc=1.1.0=h31becfc_1 - libedit=3.1.20191231=he28a2e2_2 - - libgfortran-ng=13.2.0=he9431aa_3 + - libgfortran-ng=13.2.0=he9431aa_5 - libhomfly=1.02r6=hb9de7d4_0 - libnghttp2=1.58.0=hb0e430d_1 - - libpng=1.6.39=hf9034f9_0 - - libsqlite=3.44.2=h194ca79_0 + - libpng=1.6.42=h194ca79_0 + - libsqlite=3.45.1=h194ca79_0 - libssh2=1.11.0=h492db2e_0 - - libxcb=1.13=h3557bc0_1004 - - libxml2=2.10.3=habe54e3_4 + - libxcb=1.15=h2a766a3_0 + - libxml2=2.12.5=h3091e33_0 - mpfr=4.2.1=ha2d0fc4_0 - ntl=11.4.3=h0d7519b_1 - - pcre2=10.40=he7b27c6_0 - - perl=5.32.1=4_h31becfc_perl5 + - perl=5.32.1=7_h31becfc_perl5 - primecount=7.9=hd600fc2_0 - readline=8.2=h8fc344f_1 - - tar=1.34=h048efde_0 - tk=8.6.13=h194ca79_0 - - xorg-fixesproto=5.0=h3557bc0_1002 - - xorg-libsm=1.2.3=h965e137_1000 - zeromq=4.3.5=h2f0025b_0 - zlib=1.2.13=h31becfc_5 - zstd=1.5.5=h4c53e97_0 - - autoconf=2.71=pl5321h2148fe1_1 - - boost-cpp=1.81.0=h07c2bc3_0 - brotli-bin=1.1.0=h31becfc_1 - - bwidget=1.9.14=h8af1aa0_1 - ecl=21.2.1=haa44c19_2 - - fftw=3.3.10=nompi_h2dcef8e_108 - freetype=2.12.1=hf0a5ef3_2 - gap-core=4.12.2=h597289e_3 - gcc=12.3.0=hc1b51f9_2 - gcc_linux-aarch64=12.3.0=h464a8f7_2 - gfan=0.6.2=h5f589ec_1003 - - gfortran_impl_linux-aarch64=12.3.0=hb7244be_3 - - gxx_impl_linux-aarch64=12.3.0=hcde2664_3 - - krb5=1.20.1=h113d92e_0 + - gxx_impl_linux-aarch64=12.3.0=hcde2664_5 + - krb5=1.21.2=hc419048_0 + - libboost=1.84.0=h1fed05a_1 - libflint=3.0.1=hc392af7_ntl_100 - - libglib=2.78.1=h0464669_0 - - libhwloc=2.9.1=h21e8147_0 - libopenblas=0.3.25=pthreads_h5a5ec62_0 - - libtiff=4.5.0=h4c1066a_2 + - libtiff=4.6.0=h1708d11_2 - llvm-openmp=17.0.6=h8b0cb96_0 - m4ri=20140914=h75e8696_1005 - mpc=1.3.1=hf4c8f4c_0 - mpfi=1.5.4=h846f343_1001 - pari=2.15.4=h169c2a7_2_pthread - ppl=1.2=h984aac9_1006 - - python=3.11.7=h43d1f9e_0_cpython + - python=3.11.8=h43d1f9e_0_cpython - qd=2.3.22=h05efe27_1004 - - sqlite=3.44.2=h3b3482f_0 - - tachyon=0.99b6=h63ab1d9_1001 - - texinfo=7.0=pl5321h17f021e_0 - - tktable=2.10=h4f9ca69_5 - - xorg-libx11=1.8.4=h2a766a3_0 - - alabaster=0.7.13=pyhd8ed1ab_0 - - appdirs=1.4.4=pyh9f0ad1d_0 - - appnope=0.1.3=pyhd8ed1ab_0 - - attrs=23.1.0=pyh71513ae_1 - - automake=1.16.5=pl5321h8af1aa0_0 - brotli=1.1.0=h31becfc_1 - brotli-python=1.1.0=py311h8715677_1 - c-compiler=1.6.0=h31becfc_0 - - cached_property=1.5.2=pyha770c72_1 - - cachetools=5.3.2=pyhd8ed1ab_0 - - certifi=2023.11.17=pyhd8ed1ab_0 - - chardet=5.2.0=py311hfecb2dc_1 + - certifi=2024.2.2=pyhd8ed1ab_0 - charset-normalizer=3.3.2=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_0 - - conway-polynomials=0.8=pyhd8ed1ab_0 + - conway-polynomials=0.9=pyhd8ed1ab_0 - cycler=0.12.1=pyhd8ed1ab_0 - cysignals=1.11.2=py311h644d908_3 - - cython=3.0.7=py311h8715677_0 - - debugpy=1.8.0=py311h8715677_1 + - cython=3.0.8=py311h8715677_0 + - debugpy=1.8.1=py311h8715677_0 - decorator=5.1.1=pyhd8ed1ab_0 - - defusedxml=0.7.1=pyhd8ed1ab_0 - - distlib=0.3.8=pyhd8ed1ab_0 - - docutils=0.20.1=py311hfecb2dc_3 - - eclib=20231211=he26bab5_0 - - editables=0.3=pyhd8ed1ab_0 - - entrypoints=0.4=pyhd8ed1ab_0 - - exceptiongroup=1.2.0=pyhd8ed1ab_0 + - eclib=20231212=he26bab5_0 + - exceptiongroup=1.2.0=pyhd8ed1ab_2 - executing=2.0.1=pyhd8ed1ab_0 - - filelock=3.13.1=pyhd8ed1ab_0 - - flit-core=3.9.0=pyhd8ed1ab_0 - fontconfig=2.14.2=ha9a116f_0 - fplll=5.4.5=hb3a790e_0 - gap-defaults=4.12.2=h8af1aa0_3 - - gast=0.5.4=pyhd8ed1ab_0 - - gfortran=12.3.0=h8d4031d_2 - - gfortran_linux-aarch64=12.3.0=h1993883_2 - gmpy2=2.1.2=py311h00bc151_1 - gxx=12.3.0=hc1b51f9_2 - gxx_linux-aarch64=12.3.0=h21accf6_2 - idna=3.6=pyhd8ed1ab_0 - - imagesize=1.4.1=pyhd8ed1ab_0 - - ipython_genutils=0.2.0=py_1 - - json5=0.9.14=pyhd8ed1ab_0 - - jsonpointer=2.4=py311hec3470c_3 - - jupyterlab_widgets=3.0.9=pyhd8ed1ab_0 + - jupyterlab_widgets=3.0.10=pyhd8ed1ab_0 - kiwisolver=1.4.5=py311h0d5d7b0_1 - lcalc=2.0.5=h3264cc0_1 - - lcms2=2.15=h7576be9_0 + - lcms2=2.16=h922389a_0 - libblas=3.9.0=20_linuxaarch64_openblas + - libboost-devel=1.84.0=h37bb5a9_1 - libbrial=1.2.12=h17533bf_1 - - libcups=2.3.3=h4303303_3 - - libcurl=8.1.2=hc34909b_0 - - libwebp=1.2.4=h7bdf6e5_1 + - libcurl=8.5.0=h4e8248e_0 + - libwebp=1.3.2=heb2ea1b_1 - m4rie=20150908=h75e8696_1001 - - markupsafe=2.1.3=py311hc8f2f60_1 + - markupsafe=2.1.5=py311hc8f2f60_0 - maxima=5.47.0=h6475f26_1 - - mistune=3.0.2=pyhd8ed1ab_0 - mpmath=1.3.0=pyhd8ed1ab_0 - munkres=1.1.4=pyh9f0ad1d_0 - - nest-asyncio=1.5.8=pyhd8ed1ab_0 + - nest-asyncio=1.6.0=pyhd8ed1ab_0 - networkx=3.2.1=pyhd8ed1ab_0 - openblas=0.3.25=pthreads_h339cbfa_0 - - openjpeg=2.5.0=h9508984_2 + - openjpeg=2.5.0=h0d9d63b_3 - packaging=23.2=pyhd8ed1ab_0 - - pandocfilters=1.5.0=pyhd8ed1ab_0 - parso=0.8.3=pyhd8ed1ab_0 - - pathspec=0.12.1=pyhd8ed1ab_0 - pickleshare=0.7.5=py_1003 - pkgconfig=1.5.5=pyhd8ed1ab_4 - - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 - - platformdirs=4.1.0=pyhd8ed1ab_0 - - pluggy=1.3.0=pyhd8ed1ab_0 - - ply=3.11=py_1 - - prometheus_client=0.19.0=pyhd8ed1ab_0 - - psutil=5.9.7=py311hcd402e7_0 + - platformdirs=4.2.0=pyhd8ed1ab_0 + - psutil=5.9.8=py311hcd402e7_0 - ptyprocess=0.7.0=pyhd3deb0d_0 - pure_eval=0.2.2=pyhd8ed1ab_0 - - py=1.11.0=pyh6c4a22f_0 - - pybind11-global=2.11.1=py311h098ece5_2 - - pycparser=2.21=pyhd8ed1ab_0 - pygments=2.17.2=pyhd8ed1ab_0 - pyparsing=3.1.1=pyhd8ed1ab_0 - - pyrsistent=0.20.0=py311hc8f2f60_0 - pysocks=1.7.1=pyha2e5f31_6 - - python-fastjsonschema=2.19.0=pyhd8ed1ab_0 - - python-json-logger=2.0.7=pyhd8ed1ab_0 - - python-lrcalc=2.1=py311h5a24a75_5 - - python-tzdata=2023.3=pyhd8ed1ab_0 - - pytz=2023.3.post1=pyhd8ed1ab_0 - - pyyaml=6.0.1=py311hcd402e7_1 - pyzmq=25.1.2=py311h0fdcd05_0 - - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.15.2=py311h32437ce_0 - - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 - - sagetex=3.6.1=pyhd8ed1ab_0 - - send2trash=1.8.2=pyh41d4057_0 - - setuptools=68.2.2=pyhd8ed1ab_0 - - simplegeneric=0.8.1=py_1 + - setuptools=69.1.0=pyhd8ed1ab_1 - singular=4.3.2.p8=hbe76a8a_1 - six=1.16.0=pyh6c4a22f_0 - - sniffio=1.3.0=pyhd8ed1ab_0 - - snowballstemmer=2.2.0=pyhd8ed1ab_0 - - soupsieve=2.5=pyhd8ed1ab_1 - - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_0 - sympow=2.023.6=h157afb5_3 - - tbb=2021.9.0=h4c384f3_0 - tomli=2.0.1=pyhd8ed1ab_0 - - tornado=6.3.3=py311hc8f2f60_1 - - traitlets=5.14.0=pyhd8ed1ab_0 - - trove-classifiers=2023.11.29=pyhd8ed1ab_0 - - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 + - tornado=6.4=py311hc8f2f60_0 + - traitlets=5.14.1=pyhd8ed1ab_0 - typing_extensions=4.9.0=pyha770c72_0 - - typing_utils=0.1.0=pyhd8ed1ab_0 - - tzlocal=5.2=py311hec3470c_0 - - uri-template=1.3.0=pyhd8ed1ab_0 - - wcwidth=0.2.12=pyhd8ed1ab_0 - - webcolors=1.13=pyhd8ed1ab_0 - - webencodings=0.5.1=pyhd8ed1ab_2 - - websocket-client=1.7.0=pyhd8ed1ab_0 + - wcwidth=0.2.13=pyhd8ed1ab_0 - wheel=0.42.0=pyhd8ed1ab_0 - - widgetsnbextension=4.0.9=pyhd8ed1ab_0 - - xorg-libxext=1.3.4=h2a766a3_2 - - xorg-libxfixes=5.0.3=h3557bc0_1004 - - xorg-libxrender=0.9.10=h3557bc0_1003 - - xorg-libxt=1.3.0=h7935292_0 + - widgetsnbextension=4.0.10=pyhd8ed1ab_0 - zipp=3.17.0=pyhd8ed1ab_0 - - anyio=4.2.0=pyhd8ed1ab_0 - asttokens=2.4.1=pyhd8ed1ab_0 - - async-lru=2.0.4=pyhd8ed1ab_0 - - babel=2.14.0=pyhd8ed1ab_0 - - beautifulsoup4=4.12.2=pyha770c72_0 - - beniget=0.4.1=pyhd8ed1ab_0 - - bleach=6.1.0=pyhd8ed1ab_0 + - boost-cpp=1.84.0=ha990451_1 - brial=1.2.12=pyh694c41f_1 - - cached-property=1.5.2=hd8ed1ab_1 - - cairo=1.16.0=hd19fb6e_1014 - - cffi=1.16.0=py311h7963103_0 - - cmake=3.26.4=hef020d8_0 - - comm=0.1.4=pyhd8ed1ab_0 - - cppy=1.2.1=pyhd8ed1ab_0 - - curl=8.1.2=hc34909b_0 + - comm=0.2.1=pyhd8ed1ab_0 - cxx-compiler=1.6.0=h2a328a1_0 - - cypari2=2.1.3=py311h5ab95f0_2 - - deprecation=2.1.0=pyh9f0ad1d_0 - - fonttools=4.47.0=py311hcd402e7_0 - - fortran-compiler=1.6.0=h7048d53_0 - - importlib-metadata=7.0.0=pyha770c72_0 + - cypari2=2.1.4=py311h5ab95f0_2 + - fonttools=4.49.0=py311hcd402e7_0 + - importlib-metadata=7.0.1=pyha770c72_0 - importlib_resources=6.1.1=pyhd8ed1ab_0 - jedi=0.19.1=pyhd8ed1ab_0 - - jinja2=3.1.2=pyhd8ed1ab_1 - - jupyter_core=5.5.1=py311hec3470c_0 - - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 + - jinja2=3.1.3=pyhd8ed1ab_0 + - jupyter_core=5.7.1=py311hec3470c_0 - libcblas=3.9.0=20_linuxaarch64_openblas - - libgd=2.3.3=h99c6b3b_4 + - libgd=2.3.3=hcd22fd5_9 - liblapack=3.9.0=20_linuxaarch64_openblas - matplotlib-inline=0.1.6=pyhd8ed1ab_0 - memory-allocator=0.1.3=py311hcd402e7_0 - - overrides=7.4.0=pyhd8ed1ab_0 - - pexpect=4.8.0=pyh1a96a4e_2 - - pillow=9.4.0=py311hf18358d_1 - - pip=23.3.2=pyhd8ed1ab_0 + - meson=1.3.2=pyhd8ed1ab_0 + - pexpect=4.9.0=pyhd8ed1ab_0 + - pillow=10.2.0=py311hbcc2232_0 + - pip=24.0=pyhd8ed1ab_0 - pplpy=0.8.9=py311haefeb0b_0 - primecountpy=0.1.0=py311h098ece5_4 - prompt-toolkit=3.0.42=pyha770c72_0 - - pybind11=2.11.1=py311h098ece5_2 - - pyproject-api=1.6.1=pyhd8ed1ab_0 + - pyproject-metadata=0.7.1=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - - pytz-deprecation-shim=0.1.0.post0=py311hec3470c_4 - - referencing=0.32.0=pyhd8ed1ab_0 - - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - sympy=1.12=pypyh9d50eac_103 - - terminado=0.18.0=pyh0d859eb_0 - - tinycss2=1.2.1=pyhd8ed1ab_0 - - typing-extensions=4.9.0=hd8ed1ab_0 - - urllib3=2.1.0=pyhd8ed1ab_0 - - virtualenv=20.25.0=pyhd8ed1ab_0 - - xorg-libxi=1.7.10=h3557bc0_0 - - argon2-cffi-bindings=21.2.0=py311hcd402e7_4 - - arpack=3.7.0=hf862f49_2 - - arrow=1.3.0=pyhd8ed1ab_0 - - compilers=1.6.0=h8af1aa0_0 - - dsdp=5.8=hb12102e_1203 + - urllib3=2.2.1=pyhd8ed1ab_0 + - arpack=3.8.0=nompi_h32ff4ca_101 - fflas-ffpack=2.4.3=hf104d39_2 - - fqdn=1.5.1=pyhd8ed1ab_0 - gsl=2.7=h294027d_0 - - harfbuzz=6.0.0=hbcb8a4f_0 - - hatchling=1.21.0=pyhd8ed1ab_0 - iml=1.0.5=h9076c59_1003 - - importlib-resources=6.1.1=pyhd8ed1ab_0 - - importlib_metadata=7.0.0=hd8ed1ab_0 - - jsonschema-specifications=2023.11.2=pyhd8ed1ab_0 - - jupyter_server_terminals=0.5.0=pyhd8ed1ab_0 + - importlib_metadata=7.0.1=hd8ed1ab_0 - liblapacke=3.9.0=20_linuxaarch64_openblas - - numpy=1.26.2=py311h69ead2a_0 - - prompt_toolkit=3.0.42=hd8ed1ab_0 + - meson-python=0.15.0=pyh0c530f3_0 + - numpy=1.26.4=py311h69ead2a_0 - requests=2.31.0=pyhd8ed1ab_0 - - setuptools-scm=8.0.4=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 - - suitesparse=5.10.1=h1404dd6_1 - - xorg-libxtst=1.2.3=hf897c2e_1002 - - argon2-cffi=23.1.0=pyhd8ed1ab_0 - blas-devel=3.9.0=20_linuxaarch64_openblas - contourpy=1.2.0=py311h098ece5_0 - - cvxopt=1.3.2=py311hd9cfd3c_1 - - fpylll=0.6.0=py311h5d3d69a_1 + - fpylll=0.6.1=py311h5d3d69a_0 - giac=1.9.0.21=h04922a4_1 - - igraph=0.9.10=hefb87a8_1 - - ipython=8.18.1=pyh707e725_3 - - isoduration=20.11.0=pyhd8ed1ab_0 - - jsonschema=4.20.0=pyhd8ed1ab_0 + - igraph=0.10.10=hcfae7ab_0 + - ipython=8.22.0=pyh707e725_0 - jupyter_client=8.6.0=pyhd8ed1ab_0 - linbox=1.6.3=h681a5ee_8 - - openjdk=17.0.3=h1a274e0_5 - - pango=1.50.14=h1f1e9b3_0 - - pythran=0.14.0=py311hec5c23b_1 - scipy=1.11.3=py311h69ead2a_1 - - setuptools_scm=8.0.4=hd8ed1ab_0 - - tox=4.11.4=pyhd8ed1ab_0 - blas=2.120=openblas - - ipykernel=6.26.0=pyhf8b6a83_0 - - ipywidgets=8.1.1=pyhd8ed1ab_0 - - jmol=14.32.10=h8af1aa0_0 - - jsonschema-with-format-nongpl=4.20.0=pyhd8ed1ab_0 - - matplotlib-base=3.8.2=py311h1f11223_0 - - nbformat=5.9.2=pyhd8ed1ab_0 - - r-base=4.2.3=h620ca72_0 - - rw=0.9=hf897c2e_0 - - ipympl=0.9.3=pyhd8ed1ab_0 - - jupyter-jsmol=2022.1.0=pyhd8ed1ab_0 - - jupyter_events=0.9.0=pyhd8ed1ab_0 - - matplotlib=3.8.2=py311hfecb2dc_0 - - nbclient=0.8.0=pyhd8ed1ab_0 - - rpy2=3.5.11=py311r42hf13da56_3 - - nbconvert-core=7.13.0=pyhd8ed1ab_0 - - jupyter_server=2.12.1=pyhd8ed1ab_0 - - nbconvert-pandoc=7.13.0=pyhd8ed1ab_0 - - jupyter-lsp=2.2.1=pyhd8ed1ab_0 - - jupyterlab_server=2.25.2=pyhd8ed1ab_0 - - nbconvert=7.13.0=pyhd8ed1ab_0 - - notebook-shim=0.2.3=pyhd8ed1ab_0 - - jupyterlab=4.0.9=pyhd8ed1ab_0 - - notebook=7.0.6=pyhd8ed1ab_0 - - jupyter_sphinx=0.1.4=py_0 - - sphinx-basic-ng=1.0.0b2=pyhd8ed1ab_1 - - furo=2023.9.10=pyhd8ed1ab_0 - - sphinx-copybutton=0.5.2=pyhd8ed1ab_0 - - sphinxcontrib-applehelp=1.0.7=pyhd8ed1ab_0 - - sphinxcontrib-devhelp=1.0.5=pyhd8ed1ab_0 - - sphinxcontrib-htmlhelp=2.0.4=pyhd8ed1ab_0 - - sphinxcontrib-qthelp=1.0.6=pyhd8ed1ab_0 - - sphinx=7.2.6=pyhd8ed1ab_0 - - sphinxcontrib-serializinghtml=1.1.9=pyhd8ed1ab_0 - - sphinxcontrib-websupport=1.2.6=pyhd8ed1ab_0 + - ipykernel=6.29.2=pyhd33586a_0 + - ipywidgets=8.1.2=pyhd8ed1ab_0 + - matplotlib-base=3.8.3=py311h1f11223_0 + - rw=0.9=h31becfc_1 diff --git a/src/environment-3.11-linux.yml b/src/environment-3.11-linux.yml index 8439b8e51db..8d97f46b234 100644 --- a/src/environment-3.11-linux.yml +++ b/src/environment-3.11-linux.yml @@ -1,465 +1,238 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: 2da5e7dc39e4644a879a6fd9cae901f97edb089ebc2180eb33f7e9294fc0f0d5 +# input_hash: 9ea772c20ce9a7b5b7898d2becce32170009c86d676e205de842b4db32b6845a channels: - conda-forge dependencies: - _libgcc_mutex=0.1=conda_forge - - _r-mutex=1.0.1=anacondar_1 - - ca-certificates=2023.11.17=hbcca054_0 + - ca-certificates=2024.2.2=hbcca054_0 - font-ttf-dejavu-sans-mono=2.37=hab24e00_0 - font-ttf-inconsolata=3.000=h77eed37_0 - font-ttf-source-code-pro=2.038=h77eed37_0 - font-ttf-ubuntu=0.83=h77eed37_1 - - kernel-headers_linux-64=2.6.32=he073ed8_16 + - kernel-headers_linux-64=2.6.32=he073ed8_17 - ld_impl_linux-64=2.40=h41732ed_0 - - libboost-headers=1.84.0=ha770c72_0 - - libgcc-devel_linux-64=12.3.0=h8bca6fd_103 - - libstdcxx-devel_linux-64=12.3.0=h8bca6fd_103 - - libstdcxx-ng=13.2.0=h7e041cc_3 - - mathjax=3.2.2=ha770c72_0 + - libboost-headers=1.84.0=ha770c72_1 + - libgcc-devel_linux-64=12.3.0=h8bca6fd_105 + - libstdcxx-devel_linux-64=12.3.0=h8bca6fd_105 + - libstdcxx-ng=13.2.0=h7e041cc_5 - pari-elldata=0.0.20161017=0 - pari-galdata=0.0.20180411=0 - - pari-galpol=0.0.20180625=0 - pari-seadata-small=0.0.20090618=0 - python_abi=3.11=4_cp311 - - sagemath-db-combinatorial-designs=20140630=1 - - sagemath-db-graphs=20210214=hd8ed1ab_0 - - sagemath-db-polytopes=20170220=1 - - three.js=122=hd8ed1ab_2 - - tzdata=2023c=h71feb2d_0 + - tzdata=2024a=h0c530f3_0 - fonts-conda-forge=1=0 - - libgomp=13.2.0=h807b86a_3 + - libgomp=13.2.0=h807b86a_5 - pari-seadata=0.0.20090618=0 - - sysroot_linux-64=2.12=he073ed8_16 - - threejs-sage=122=hd8ed1ab_2 + - sysroot_linux-64=2.12=he073ed8_17 - binutils_impl_linux-64=2.40=hf600244_0 - fonts-conda-ecosystem=1=0 - binutils=2.40=hdd6e379_0 - binutils_linux-64=2.40=hbdbef99_2 - _openmp_mutex=4.5=2_kmp_llvm - - libgcc-ng=13.2.0=h807b86a_3 - - alsa-lib=1.2.10=hd590300_0 - - attr=2.5.1=h166bdaf_1 - - bc=1.07.1=h7f98852_0 + - libgcc-ng=13.2.0=h807b86a_5 - bdw-gc=8.0.6=h4bd325d_0 - bzip2=1.0.8=hd590300_5 - - c-ares=1.24.0=hd590300_0 + - c-ares=1.27.0=hd590300_0 - cliquer=1.22=h36c2ea0_0 - - fribidi=1.0.10=h36c2ea0_0 - - gengetopt=2.23=h9c3ff4c_0 - - gettext=0.21.1=h27087fc_0 - gf2x=1.3.0=ha476b99_2 - giflib=5.2.1=h0b41bf4_3 - gmp=6.3.0=h59595ed_0 - - graphite2=1.3.13=h58526e2_1001 - icu=73.2=h59595ed_0 - keyutils=1.6.1=h166bdaf_0 - - lame=3.100=h166bdaf_1003 - lerc=4.0.0=h27087fc_0 - - libatomic_ops=7.6.14=h166bdaf_0 - libbraiding=1.2=hcb278e6_0 - libbrotlicommon=1.1.0=hd590300_1 - libdeflate=1.19=hd590300_0 - libev=4.33=hd590300_2 - libexpat=2.5.0=hcb278e6_1 - libffi=3.4.2=h7f98852_5 - - libgfortran5=13.2.0=ha4646dd_3 + - libgfortran5=13.2.0=ha4646dd_5 - libiconv=1.17=hd590300_2 - libjpeg-turbo=3.0.0=hd590300_1 - libnsl=2.0.1=hd590300_0 - - libogg=1.3.4=h7f98852_1 - - libopus=1.3.1=h7f98852_1 - - libsanitizer=12.3.0=h0f45ef3_3 + - libsanitizer=12.3.0=h0f45ef3_5 - libsodium=1.0.18=h36c2ea0_1 - - libtool=2.4.7=h27087fc_0 - libuuid=2.38.1=h0b41bf4_0 - - libuv=1.46.0=hd590300_0 - libwebp-base=1.3.2=hd590300_0 + - libxcrypt=4.4.36=hd590300_1 - libzlib=1.2.13=hd590300_5 - - lrcalc=2.1=h27087fc_5 - - lz4-c=1.9.4=hcb278e6_0 - - m4=1.4.18=h516909a_1001 - - make=4.3=hd18ef5c_1 - - metis=5.1.1=h59595ed_2 - - mpg123=1.32.3=h59595ed_0 - - nauty=2.8.8=hd590300_0 + - lrcalc=2.1=h59595ed_6 + - nauty=2.8.8=hd590300_1 - ncurses=6.4=h59595ed_2 - ninja=1.11.1=h924138e_0 - - nspr=4.35=h27087fc_0 - - openssl=3.2.0=hd590300_1 + - openssl=3.2.1=hd590300_0 - palp=2.20=h36c2ea0_0 - - patch=2.7.6=h7f98852_1002 - - pixman=0.42.2=h59595ed_0 - pkg-config=0.29.2=h36c2ea0_1008 - planarity=3.0.0.5=h36c2ea0_1002 - primesieve=11.1=h59595ed_0 - pthread-stubs=0.4=h36c2ea0_1001 - qhull=2020.2=h4bd325d_2 - - rhash=1.4.4=hd590300_0 - - sed=4.8=he412f7d_0 - symmetrica=3.0.1=hcb278e6_0 - - xorg-inputproto=2.3.2=h7f98852_1002 - - xorg-kbproto=1.0.7=h7f98852_1002 - - xorg-libice=1.1.1=hd590300_0 - xorg-libxau=1.0.11=hd590300_0 - xorg-libxdmcp=1.1.3=h7f98852_0 - - xorg-recordproto=1.14.2=h7f98852_1002 - - xorg-renderproto=0.11.1=h7f98852_1002 - - xorg-xextproto=7.3.0=h0b41bf4_1003 - - xorg-xf86vidmodeproto=2.3.1=h7f98852_1002 - - xorg-xproto=7.0.31=h7f98852_1007 - xz=5.2.6=h166bdaf_0 - - yaml=0.2.5=h7f98852_2 - cddlib=1!0.94m=h9202a9a_0 - ecm=7.0.4=h9202a9a_1002 - expat=2.5.0=hcb278e6_1 - - gcc_impl_linux-64=12.3.0=he2b93b0_3 + - gcc_impl_linux-64=12.3.0=he2b93b0_5 - givaro=4.1.1=h192cbe9_1 - glpk=5.0=h445213a_0 - libbrotlidec=1.1.0=hd590300_1 - libbrotlienc=1.1.0=hd590300_1 - - libcap=2.69=h0f662aa_0 - libedit=3.1.20191231=he28a2e2_2 - - libevent=2.1.12=hf998b51_1 - - libflac=1.4.3=h59595ed_0 - - libgfortran-ng=13.2.0=h69a702a_3 - - libgpg-error=1.47=h71f35ed_0 + - libgfortran-ng=13.2.0=h69a702a_5 - libhomfly=1.02r6=h36c2ea0_0 - libnghttp2=1.58.0=h47da74e_1 - - libpng=1.6.39=h753d276_0 - - libsqlite=3.44.2=h2797004_0 + - libpng=1.6.42=h2797004_0 + - libsqlite=3.45.1=h2797004_0 - libssh2=1.11.0=h0841786_0 - - libvorbis=1.3.7=h9c3ff4c_0 - libxcb=1.15=h0b41bf4_0 - - libxml2=2.11.6=h232c23b_0 + - libxml2=2.12.5=h232c23b_0 - mpfr=4.2.1=h9458935_0 - - mysql-common=8.0.33=hf1915f5_6 - ntl=11.4.3=hef3c4d3_1 - - pcre2=10.42=hcad00b1_0 - - perl=5.32.1=4_hd590300_perl5 + - perl=5.32.1=7_hd590300_perl5 - primecount=7.9=hcb278e6_0 - readline=8.2=h8228510_1 - - tar=1.34=hb2e2bae_1 - tk=8.6.13=noxft_h4845f30_101 - - xorg-fixesproto=5.0=h7f98852_1002 - - xorg-libsm=1.2.4=h7391055_0 - zeromq=4.3.5=h59595ed_0 - zlib=1.2.13=hd590300_5 - zstd=1.5.5=hfc55251_0 - - autoconf=2.71=pl5321h2b4cb7a_1 - brotli-bin=1.1.0=hd590300_1 - - bwidget=1.9.14=ha770c72_1 - ecl=21.2.1=h9d73b02_2 - - fftw=3.3.10=nompi_hc118613_108 - freetype=2.12.1=h267a509_2 - gap-core=4.12.2=he9a28a4_3 - gcc=12.3.0=h8d2909c_2 - gcc_linux-64=12.3.0=h76fc315_2 - gfan=0.6.2=hb86e20a_1003 - - gfortran_impl_linux-64=12.3.0=hfcedea8_3 - - gxx_impl_linux-64=12.3.0=he2b93b0_3 + - gxx_impl_linux-64=12.3.0=he2b93b0_5 - krb5=1.21.2=h659d440_0 - - libboost=1.84.0=h6fcfa73_0 + - libboost=1.84.0=h8013b2b_1 - libflint=3.0.1=h5f2e117_ntl_100 - - libgcrypt=1.10.3=hd590300_0 - - libglib=2.78.3=h783c2da_0 - - libhwloc=2.9.3=default_h554bfaf_1009 - - libllvm15=15.0.7=h5cf9203_3 - libopenblas=0.3.25=pthreads_h413a1c8_0 - - libsndfile=1.2.2=hc60ed4a_1 - libtiff=4.6.0=ha9c0a0a_2 - llvm-openmp=17.0.6=h4dfa4b3_0 - m4ri=20140914=h7ca028e_1005 - mpc=1.3.1=hfe3b2da_0 - mpfi=1.5.4=h9f54685_1001 - - mysql-libs=8.0.33=hca2cd23_6 - - nss=3.96=h1d7d5a4_0 - - pandoc=3.1.3=h32600fe_0 - pari=2.15.4=h4d4ae9b_2_pthread - ppl=1.2=h6ec01c2_1006 - - python=3.11.7=hab00c5b_0_cpython + - python=3.11.8=hab00c5b_0_cpython - qd=2.3.22=h2cc385e_1004 - - sqlite=3.44.2=h2c6b66d_0 - - tachyon=0.99b6=0 - - texinfo=7.0=pl5321h0f457ee_0 - - tktable=2.10=h0c5db8f_5 - - xcb-util=0.4.0=hd590300_1 - - xcb-util-keysyms=0.4.0=h8ee46fc_1 - - xcb-util-renderutil=0.3.9=hd590300_1 - - xcb-util-wm=0.4.1=h8ee46fc_1 - - xorg-libx11=1.8.7=h8ee46fc_0 - - alabaster=0.7.13=pyhd8ed1ab_0 - - appdirs=1.4.4=pyh9f0ad1d_0 - - appnope=0.1.3=pyhd8ed1ab_0 - - attrs=23.1.0=pyh71513ae_1 - - automake=1.16.5=pl5321ha770c72_0 - brotli=1.1.0=hd590300_1 - brotli-python=1.1.0=py311hb755f60_1 - c-compiler=1.6.0=hd590300_0 - - cached_property=1.5.2=pyha770c72_1 - - cachetools=5.3.2=pyhd8ed1ab_0 - - certifi=2023.11.17=pyhd8ed1ab_0 - - chardet=5.2.0=py311h38be061_1 + - certifi=2024.2.2=pyhd8ed1ab_0 - charset-normalizer=3.3.2=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_0 - - conway-polynomials=0.8=pyhd8ed1ab_0 + - conway-polynomials=0.9=pyhd8ed1ab_0 - cycler=0.12.1=pyhd8ed1ab_0 - cysignals=1.11.2=py311h82528dc_3 - - cython=3.0.7=py311hb755f60_0 - - dbus=1.13.6=h5008d03_3 - - debugpy=1.8.0=py311hb755f60_1 + - cython=3.0.8=py311hb755f60_0 + - debugpy=1.8.1=py311hb755f60_0 - decorator=5.1.1=pyhd8ed1ab_0 - - defusedxml=0.7.1=pyhd8ed1ab_0 - - distlib=0.3.8=pyhd8ed1ab_0 - - docutils=0.20.1=py311h38be061_3 - - eclib=20231211=h96f522a_0 - - editables=0.3=pyhd8ed1ab_0 - - entrypoints=0.4=pyhd8ed1ab_0 - - exceptiongroup=1.2.0=pyhd8ed1ab_0 + - eclib=20231212=h96f522a_0 + - exceptiongroup=1.2.0=pyhd8ed1ab_2 - executing=2.0.1=pyhd8ed1ab_0 - - filelock=3.13.1=pyhd8ed1ab_0 - - flit-core=3.9.0=pyhd8ed1ab_0 - fontconfig=2.14.2=h14ed4e7_0 - fplll=5.4.5=h384768b_0 - gap-defaults=4.12.2=ha770c72_3 - - gast=0.5.4=pyhd8ed1ab_0 - - gfortran=12.3.0=h499e0f7_2 - - gfortran_linux-64=12.3.0=h7fe76b4_2 - - glib-tools=2.78.3=hfc55251_0 - gmpy2=2.1.2=py311h6a5fa03_1 - gxx=12.3.0=h8d2909c_2 - gxx_linux-64=12.3.0=h8a814eb_2 - idna=3.6=pyhd8ed1ab_0 - - imagesize=1.4.1=pyhd8ed1ab_0 - - ipython_genutils=0.2.0=py_1 - - json5=0.9.14=pyhd8ed1ab_0 - - jsonpointer=2.4=py311h38be061_3 - - jupyterlab_widgets=3.0.9=pyhd8ed1ab_0 + - jupyterlab_widgets=3.0.10=pyhd8ed1ab_0 - kiwisolver=1.4.5=py311h9547e67_1 - lcalc=2.0.5=h6a8a7c6_1 - lcms2=2.16=hb7c19ff_0 - libblas=3.9.0=20_linux64_openblas - - libboost-devel=1.84.0=h00ab1b0_0 + - libboost-devel=1.84.0=h00ab1b0_1 - libbrial=1.2.12=h3155cbd_1 - - libclang13=15.0.7=default_ha2b6cf4_4 - - libcups=2.3.3=h4637d8d_4 - libcurl=8.5.0=hca28451_0 - - libpq=16.1=h33b98f1_7 - - libsystemd0=255=h3516f8a_0 - libwebp=1.3.2=h658648e_1 - m4rie=20150908=h7ca028e_1001 - - markupsafe=2.1.3=py311h459d7ec_1 + - markupsafe=2.1.5=py311h459d7ec_0 - maxima=5.47.0=hed6455c_1 - - mistune=3.0.2=pyhd8ed1ab_0 - mpmath=1.3.0=pyhd8ed1ab_0 - munkres=1.1.4=pyh9f0ad1d_0 - - nest-asyncio=1.5.8=pyhd8ed1ab_0 + - nest-asyncio=1.6.0=pyhd8ed1ab_0 - networkx=3.2.1=pyhd8ed1ab_0 - openblas=0.3.25=pthreads_h7a3da1a_0 - openjpeg=2.5.0=h488ebb8_3 - packaging=23.2=pyhd8ed1ab_0 - - pandocfilters=1.5.0=pyhd8ed1ab_0 - parso=0.8.3=pyhd8ed1ab_0 - - pathspec=0.12.1=pyhd8ed1ab_0 - pickleshare=0.7.5=py_1003 - pkgconfig=1.5.5=pyhd8ed1ab_4 - - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 - - platformdirs=4.1.0=pyhd8ed1ab_0 - - pluggy=1.3.0=pyhd8ed1ab_0 - - ply=3.11=py_1 - - prometheus_client=0.19.0=pyhd8ed1ab_0 - - psutil=5.9.7=py311h459d7ec_0 + - platformdirs=4.2.0=pyhd8ed1ab_0 + - psutil=5.9.8=py311h459d7ec_0 - ptyprocess=0.7.0=pyhd3deb0d_0 - pure_eval=0.2.2=pyhd8ed1ab_0 - - py=1.11.0=pyh6c4a22f_0 - - pybind11-global=2.11.1=py311h9547e67_2 - - pycparser=2.21=pyhd8ed1ab_0 - pygments=2.17.2=pyhd8ed1ab_0 - pyparsing=3.1.1=pyhd8ed1ab_0 - - pyrsistent=0.20.0=py311h459d7ec_0 - pysocks=1.7.1=pyha2e5f31_6 - - python-fastjsonschema=2.19.0=pyhd8ed1ab_0 - - python-json-logger=2.0.7=pyhd8ed1ab_0 - - python-lrcalc=2.1=py311ha362b79_5 - - python-tzdata=2023.3=pyhd8ed1ab_0 - - pytz=2023.3.post1=pyhd8ed1ab_0 - - pyyaml=6.0.1=py311h459d7ec_1 - pyzmq=25.1.2=py311h34ded2d_0 - - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.15.2=py311h46250e7_0 - - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 - - sagetex=3.6.1=pyhd8ed1ab_0 - - send2trash=1.8.2=pyh41d4057_0 - - setuptools=68.2.2=pyhd8ed1ab_0 - - simplegeneric=0.8.1=py_1 + - setuptools=69.1.0=pyhd8ed1ab_1 - singular=4.3.2.p8=h33f5c3f_1 - six=1.16.0=pyh6c4a22f_0 - - sniffio=1.3.0=pyhd8ed1ab_0 - - snowballstemmer=2.2.0=pyhd8ed1ab_0 - - soupsieve=2.5=pyhd8ed1ab_1 - - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_0 - sympow=2.023.6=hc6ab17c_3 - - tbb=2021.11.0=h00ab1b0_0 - - toml=0.10.2=pyhd8ed1ab_0 - tomli=2.0.1=pyhd8ed1ab_0 - - tornado=6.3.3=py311h459d7ec_1 - - traitlets=5.14.0=pyhd8ed1ab_0 - - trove-classifiers=2023.11.29=pyhd8ed1ab_0 - - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 + - tornado=6.4=py311h459d7ec_0 + - traitlets=5.14.1=pyhd8ed1ab_0 - typing_extensions=4.9.0=pyha770c72_0 - - typing_utils=0.1.0=pyhd8ed1ab_0 - - tzlocal=5.2=py311h38be061_0 - - uri-template=1.3.0=pyhd8ed1ab_0 - - wcwidth=0.2.12=pyhd8ed1ab_0 - - webcolors=1.13=pyhd8ed1ab_0 - - webencodings=0.5.1=pyhd8ed1ab_2 - - websocket-client=1.7.0=pyhd8ed1ab_0 + - wcwidth=0.2.13=pyhd8ed1ab_0 - wheel=0.42.0=pyhd8ed1ab_0 - - widgetsnbextension=4.0.9=pyhd8ed1ab_0 - - xcb-util-image=0.4.0=h8ee46fc_1 - - xkeyboard-config=2.40=hd590300_0 - - xorg-libxext=1.3.4=h0b41bf4_2 - - xorg-libxfixes=5.0.3=h7f98852_1004 - - xorg-libxrender=0.9.11=hd590300_0 - - xorg-libxt=1.3.0=hd590300_1 + - widgetsnbextension=4.0.10=pyhd8ed1ab_0 - zipp=3.17.0=pyhd8ed1ab_0 - - anyio=4.2.0=pyhd8ed1ab_0 - asttokens=2.4.1=pyhd8ed1ab_0 - - async-lru=2.0.4=pyhd8ed1ab_0 - - babel=2.14.0=pyhd8ed1ab_0 - - beautifulsoup4=4.12.2=pyha770c72_0 - - beniget=0.4.1=pyhd8ed1ab_0 - - bleach=6.1.0=pyhd8ed1ab_0 - - boost-cpp=1.84.0=h44aadfe_0 + - boost-cpp=1.84.0=h44aadfe_1 - brial=1.2.12=pyh694c41f_1 - - cached-property=1.5.2=hd8ed1ab_1 - - cairo=1.18.0=h3faef2a_0 - - cffi=1.16.0=py311hb3a22ac_0 - - cmake=3.28.1=hcfe8598_0 - - comm=0.1.4=pyhd8ed1ab_0 - - cppy=1.2.1=pyhd8ed1ab_0 - - curl=8.5.0=hca28451_0 + - comm=0.2.1=pyhd8ed1ab_0 - cxx-compiler=1.6.0=h00ab1b0_0 - - cypari2=2.1.3=py311hd2352ae_2 - - deprecation=2.1.0=pyh9f0ad1d_0 - - fonttools=4.47.0=py311h459d7ec_0 - - fortran-compiler=1.6.0=heb67821_0 - - glib=2.78.3=hfc55251_0 - - importlib-metadata=7.0.0=pyha770c72_0 + - cypari2=2.1.4=py311hd2352ae_2 + - fonttools=4.49.0=py311h459d7ec_0 + - importlib-metadata=7.0.1=pyha770c72_0 - importlib_resources=6.1.1=pyhd8ed1ab_0 - jedi=0.19.1=pyhd8ed1ab_0 - - jinja2=3.1.2=pyhd8ed1ab_1 - - jupyter_core=5.5.1=py311h38be061_0 - - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 + - jinja2=3.1.3=pyhd8ed1ab_0 + - jupyter_core=5.7.1=py311h38be061_0 - libcblas=3.9.0=20_linux64_openblas - - libclang=15.0.7=default_hb11cfb5_4 - libgd=2.3.3=h119a65a_9 - liblapack=3.9.0=20_linux64_openblas - - libxkbcommon=1.6.0=h5d7e998_0 - matplotlib-inline=0.1.6=pyhd8ed1ab_0 - memory-allocator=0.1.3=py311h459d7ec_0 - - overrides=7.4.0=pyhd8ed1ab_0 - - pexpect=4.8.0=pyh1a96a4e_2 - - pillow=10.1.0=py311ha6c5da5_0 - - pip=23.3.2=pyhd8ed1ab_0 + - meson=1.3.2=pyhd8ed1ab_0 + - pexpect=4.9.0=pyhd8ed1ab_0 + - pillow=10.2.0=py311ha6c5da5_0 + - pip=24.0=pyhd8ed1ab_0 - pplpy=0.8.9=py311h85abca9_0 - primecountpy=0.1.0=py311h9547e67_4 - prompt-toolkit=3.0.42=pyha770c72_0 - - pulseaudio-client=16.1=hb77b528_5 - - pybind11=2.11.1=py311h9547e67_2 - - pyproject-api=1.6.1=pyhd8ed1ab_0 + - pyproject-metadata=0.7.1=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - - pytz-deprecation-shim=0.1.0.post0=py311h38be061_4 - - referencing=0.32.0=pyhd8ed1ab_0 - - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - - sip=6.7.12=py311hb755f60_0 - sympy=1.12=pypyh9d50eac_103 - - terminado=0.18.0=pyh0d859eb_0 - - tinycss2=1.2.1=pyhd8ed1ab_0 - - typing-extensions=4.9.0=hd8ed1ab_0 - - urllib3=2.1.0=pyhd8ed1ab_0 - - virtualenv=20.25.0=pyhd8ed1ab_0 - - xorg-libxi=1.7.10=h7f98852_0 - - argon2-cffi-bindings=21.2.0=py311h459d7ec_4 + - urllib3=2.2.1=pyhd8ed1ab_0 - arpack=3.8.0=nompi_h0baa96a_101 - - arrow=1.3.0=pyhd8ed1ab_0 - - compilers=1.6.0=ha770c72_0 - - dsdp=5.8=hd9d9efa_1203 - fflas-ffpack=2.4.3=h912ac81_2 - - fqdn=1.5.1=pyhd8ed1ab_0 - gsl=2.7=he838d99_0 - - gstreamer=1.22.8=h98fc4e7_0 - - harfbuzz=8.3.0=h3d44ed6_0 - - hatchling=1.21.0=pyhd8ed1ab_0 - iml=1.0.5=hd75c201_1003 - - importlib-resources=6.1.1=pyhd8ed1ab_0 - - importlib_metadata=7.0.0=hd8ed1ab_0 - - jsonschema-specifications=2023.11.2=pyhd8ed1ab_0 - - jupyter_server_terminals=0.5.0=pyhd8ed1ab_0 + - importlib_metadata=7.0.1=hd8ed1ab_0 - liblapacke=3.9.0=20_linux64_openblas - - numpy=1.26.2=py311h64a7726_0 - - prompt_toolkit=3.0.42=hd8ed1ab_0 - - pyqt5-sip=12.12.2=py311hb755f60_5 + - meson-python=0.15.0=pyh0c530f3_0 + - numpy=1.26.4=py311h64a7726_0 - requests=2.31.0=pyhd8ed1ab_0 - - setuptools-scm=8.0.4=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 - - suitesparse=5.10.1=h3ec001c_2 - - xorg-libxtst=1.2.3=h7f98852_1002 - - argon2-cffi=23.1.0=pyhd8ed1ab_0 - blas-devel=3.9.0=20_linux64_openblas - contourpy=1.2.0=py311h9547e67_0 - - cvxopt=1.3.2=py311h2b3fd1d_1 - - fpylll=0.6.0=py311hcfae7cf_1 + - fpylll=0.6.1=py311hcfae7cf_0 - giac=1.9.0.21=h673759e_1 - - gst-plugins-base=1.22.8=h8e1006c_0 - - igraph=0.10.8=h66a01bf_0 - - ipython=8.18.1=pyh707e725_3 - - isoduration=20.11.0=pyhd8ed1ab_0 - - jsonschema=4.20.0=pyhd8ed1ab_0 + - igraph=0.10.10=h153f77b_0 + - ipython=8.22.0=pyh707e725_0 - jupyter_client=8.6.0=pyhd8ed1ab_0 - linbox=1.6.3=ha329b40_8 - - openjdk=21.0.1=haa376d0_0 - - pango=1.50.14=ha41ecd1_2 - - pythran=0.14.0=py311h92ebd52_1 - scipy=1.11.4=py311h64a7726_0 - - setuptools_scm=8.0.4=hd8ed1ab_0 - - tox=4.11.4=pyhd8ed1ab_0 - blas=2.120=openblas - - ipykernel=6.26.0=pyhf8b6a83_0 - - ipywidgets=8.1.1=pyhd8ed1ab_0 - - jmol=14.32.10=ha770c72_0 - - jsonschema-with-format-nongpl=4.20.0=pyhd8ed1ab_0 - - matplotlib-base=3.8.2=py311h54ef318_0 - - nbformat=5.9.2=pyhd8ed1ab_0 - - qt-main=5.15.8=h82b777d_17 - - r-base=4.3.2=hb8ee39d_1 + - ipykernel=6.29.2=pyhd33586a_0 + - ipywidgets=8.1.2=pyhd8ed1ab_0 + - matplotlib-base=3.8.3=py311h54ef318_0 - rw=0.9=hd590300_1 - - ipympl=0.9.3=pyhd8ed1ab_0 - - jupyter-jsmol=2022.1.0=pyhd8ed1ab_0 - - jupyter_events=0.9.0=pyhd8ed1ab_0 - - nbclient=0.8.0=pyhd8ed1ab_0 - - pyqt=5.15.9=py311hf0fb5b6_5 - - rpy2=3.5.11=py311r43h1f0f07a_3 - - matplotlib=3.8.2=py311h38be061_0 - - nbconvert-core=7.13.0=pyhd8ed1ab_0 - - jupyter_server=2.12.1=pyhd8ed1ab_0 - - nbconvert-pandoc=7.13.0=pyhd8ed1ab_0 - - jupyter-lsp=2.2.1=pyhd8ed1ab_0 - - jupyterlab_server=2.25.2=pyhd8ed1ab_0 - - nbconvert=7.13.0=pyhd8ed1ab_0 - - notebook-shim=0.2.3=pyhd8ed1ab_0 - - jupyterlab=4.0.9=pyhd8ed1ab_0 - - notebook=7.0.6=pyhd8ed1ab_0 - - jupyter_sphinx=0.4.0=py311h38be061_1 - - sphinx-basic-ng=1.0.0b2=pyhd8ed1ab_1 - - furo=2023.9.10=pyhd8ed1ab_0 - - sphinx-copybutton=0.5.2=pyhd8ed1ab_0 - - sphinxcontrib-applehelp=1.0.7=pyhd8ed1ab_0 - - sphinxcontrib-devhelp=1.0.5=pyhd8ed1ab_0 - - sphinxcontrib-htmlhelp=2.0.4=pyhd8ed1ab_0 - - sphinxcontrib-qthelp=1.0.6=pyhd8ed1ab_0 - - sphinx=7.2.6=pyhd8ed1ab_0 - - sphinxcontrib-serializinghtml=1.1.9=pyhd8ed1ab_0 - - sphinxcontrib-websupport=1.2.6=pyhd8ed1ab_0 diff --git a/src/environment-3.11-macos-arm64.yml b/src/environment-3.11-macos-arm64.yml index d2e67f82500..0150a4b8f89 100644 --- a/src/environment-3.11-macos-arm64.yml +++ b/src/environment-3.11-macos-arm64.yml @@ -1,401 +1,237 @@ # Generated by conda-lock. # platform: osx-arm64 -# input_hash: 2ff977dcd9a99005d724932d2866d43333af4ef4cd463467acc105dff636efae +# input_hash: 5c95308be6e999e2bc1be12179de613d528ee6077093b633cf30e2b296ce7bb4 channels: - conda-forge dependencies: - - _r-mutex=1.0.1=anacondar_1 - - bc=1.07.1=h3422bc3_0 - bzip2=1.0.8=h93a5062_5 - - c-ares=1.24.0=h93a5062_0 - - ca-certificates=2023.11.17=hf0a4a13_0 + - c-ares=1.27.0=h93a5062_0 + - ca-certificates=2024.2.2=hf0a4a13_0 - cliquer=1.22=h27ca646_0 - font-ttf-dejavu-sans-mono=2.37=hab24e00_0 - font-ttf-inconsolata=3.000=h77eed37_0 - font-ttf-source-code-pro=2.038=h77eed37_0 - font-ttf-ubuntu=0.83=h77eed37_1 - - fribidi=1.0.10=h27ca646_0 - giflib=5.2.1=h1a8c8d9_3 - - jpeg=9e=h1a8c8d9_3 - - libatomic_ops=7.6.14=h1a8c8d9_0 + - icu=73.2=hc8870d7_0 + - libboost-headers=1.84.0=hce30654_1 - libbrotlicommon=1.1.0=hb547adb_1 - libcxx=16.0.6=h4653b0c_0 - - libdeflate=1.17=h1a8c8d9_0 + - libdeflate=1.19=hb547adb_0 - libev=4.33=h93a5062_2 - libexpat=2.5.0=hb7217d7_1 - libffi=3.4.2=h3422bc3_5 - - libgfortran-devel_osx-arm64=12.3.0=hc62be1c_1 - libiconv=1.17=h0d3ecfb_2 + - libjpeg-turbo=3.0.0=hb547adb_1 - libsodium=1.0.18=h27ca646_1 - - libtool=2.4.7=hb7217d7_0 - - libuv=1.46.0=hb547adb_0 - - libwebp-base=1.2.4=h1a8c8d9_0 + - libwebp-base=1.3.2=hb547adb_0 - libzlib=1.2.13=h53f4e23_5 - llvm-openmp=17.0.6=hcd81f8e_0 - - m4=1.4.18=h642e427_1001 - - make=4.3=he57ea6c_1 - - mathjax=3.2.2=hce30654_0 - - nauty=2.8.8=h93a5062_0 + - nauty=2.8.8=h93a5062_1 - palp=2.20=h27ca646_0 - - pandoc=3.1.3=hce30654_0 - pari-elldata=0.0.20161017=0 - pari-galdata=0.0.20180411=0 - - pari-galpol=0.0.20180625=0 - pari-seadata-small=0.0.20090618=0 - - patch=2.7.6=h27ca646_1002 - - perl=5.32.1=4_hf2054a2_perl5 + - perl=5.32.1=7_h4614cfb_perl5 - planarity=3.0.0.5=h27ca646_1002 - pthread-stubs=0.4=h27ca646_1001 - python_abi=3.11=4_cp311 - - rhash=1.4.3=hb547adb_2 - - sagemath-db-combinatorial-designs=20140630=1 - - sagemath-db-graphs=20210214=hd8ed1ab_0 - - sagemath-db-polytopes=20170220=1 - - tbb=2021.10.0=h1995070_2 - - three.js=122=hd8ed1ab_2 - - tzdata=2023c=h71feb2d_0 + - tzdata=2024a=h0c530f3_0 - xorg-libxau=1.0.11=hb547adb_0 - xorg-libxdmcp=1.1.3=h27ca646_0 - xz=5.2.6=h57fd34a_0 - - yaml=0.2.5=h3422bc3_2 - - autoconf=2.71=pl5321hcd07c0c_1 - bdw-gc=8.0.6=hc021e02_0 - expat=2.5.0=hb7217d7_1 - fonts-conda-forge=1=0 - - gengetopt=2.23=hbdafb3b_0 - gettext=0.21.1=h0186832_0 - gf2x=1.3.0=hdaa854c_2 - gmp=6.3.0=h965bd2d_0 - - graphite2=1.3.13=h9f76cd9_1001 - - icu=70.1=h6b3803e_0 - - isl=0.25=h9a09cb3_0 - lerc=4.0.0=h9a09cb3_0 - libbraiding=1.2=hb7217d7_0 - libbrotlidec=1.1.0=hb547adb_1 - libbrotlienc=1.1.0=hb547adb_1 - - libgfortran5=13.2.0=hf226fd6_1 - - libpng=1.6.39=h76d750c_0 - - libsqlite=3.44.2=h091b4b1_0 - - libxcb=1.13=h9b22ae9_1004 - - lrcalc=2.1=hb7217d7_5 - - metis=5.1.1=h965bd2d_2 + - libgfortran5=13.2.0=hf226fd6_3 + - libpng=1.6.42=h091b4b1_0 + - libsqlite=3.45.1=h091b4b1_0 + - libxcb=1.15=hf346824_0 + - libxml2=2.12.5=h0d0cfa8_0 + - lrcalc=2.1=hebf3989_6 - ncurses=6.4=h463b476_2 - ninja=1.11.1=hffc8910_0 - - openjdk=21.0.1=hed44d8b_0 - - openssl=3.2.0=h0d3ecfb_1 + - openssl=3.2.1=h0d3ecfb_0 - pari-seadata=0.0.20090618=0 - - pcre2=10.40=hb34f9b4_0 - - pixman=0.42.2=h13dd4ca_0 + - pcre2=10.42=h26f9a81_0 - primesieve=11.0=hb7217d7_0 - qhull=2020.2=hc021e02_2 - symmetrica=3.0.1=hb7217d7_0 - tapi=1100.0.11=he4954df_0 - - tar=1.34=h7cb298e_1 - - threejs-sage=122=hd8ed1ab_2 - tk=8.6.13=h5083fa2_1 - zeromq=4.3.5=h965bd2d_0 - zlib=1.2.13=h53f4e23_5 - zstd=1.5.5=h4f39d0f_0 - - automake=1.16.5=pl5321hce30654_0 - - boost-cpp=1.81.0=hf96b251_0 - brotli-bin=1.1.0=hb547adb_1 - - bwidget=1.9.14=hce30654_1 - cddlib=1!0.94m=h6d7a090_0 - ecm=7.0.4=h47c7c1a_1002 - fonts-conda-ecosystem=1=0 - freetype=2.12.1=hadb7bae_2 - givaro=4.1.1=h0cdca34_3 - glpk=5.0=h6d7a090_0 - - jmol=14.32.10=hce30654_0 + - libboost=1.84.0=h8e0f962_1 - libedit=3.1.20191231=hc8eb9b7_2 - - libgfortran=5.0.0=13_2_0_hd922786_1 - - libglib=2.78.1=hd9b11f9_0 + - libgfortran=5.0.0=13_2_0_hd922786_3 + - libglib=2.78.4=h1635a5e_0 - libhomfly=1.02r6=h27ca646_0 + - libllvm16=16.0.6=haab561b_3 - libnghttp2=1.58.0=ha4dd798_1 - libssh2=1.11.0=h7a5bd25_0 - - libtiff=4.5.0=h5dffbdd_2 - - libxml2=2.10.3=h67585b2_4 + - libtiff=4.6.0=ha8a6c65_2 - m4ri=20140914=h17b34a0_1005 - mpfr=4.2.1=h9546428_0 - ntl=11.4.3=hbb3f309_1 - primecount=7.6=hb6e4faa_0 - readline=8.2=h92ec313_1 - sigtool=0.1.3=h44b9a77_0 - - tachyon=0.99b6=hfb72b2a_1001 - - texinfo=7.0=pl5321h9ea1dce_0 - - tktable=2.10=hd996620_5 - brotli=1.1.0=hb547adb_1 - ecl=21.2.1=h8492d4d_2 - - fftw=3.3.10=nompi_h3046061_108 - fontconfig=2.14.2=h82840c6_0 - gap-core=4.12.2=he8f4e70_3 - gfan=0.6.2=hec08f5c_1003 - - krb5=1.20.1=h69eda48_0 - - lcms2=2.15=h481adae_0 + - krb5=1.21.2=h92f50d5_0 + - lcms2=2.16=ha0e7c42_0 + - ld64_osx-arm64=609=ha4bd21c_16 + - libboost-devel=1.84.0=hf450f58_1 - libbrial=1.2.12=ha7f5006_1 + - libclang-cpp16=16.0.6=default_he012953_5 - libflint=3.0.1=h28749a5_ntl_100 - - libllvm15=15.0.7=h62b9111_1 - libopenblas=0.3.25=openmp_h6c19121_0 - - libwebp=1.2.4=h999c80f_1 + - libwebp=1.3.2=hf30222e_1 + - llvm-tools=16.0.6=haab561b_3 - m4rie=20150908=h17b34a0_1001 - mpc=1.3.1=h91ba8db_0 - mpfi=1.5.4=hbde5f5b_1001 - - openjpeg=2.5.0=hbc2ba62_2 + - openjpeg=2.5.0=h4c1507b_3 - pari=2.15.4=haeeeed7_2_pthread - pkg-config=0.29.2=hab62308_1008 - ppl=1.2=h8b147cf_1006 - - python=3.11.7=hdf0ec26_0_cpython + - python=3.11.8=hdf0ec26_0_cpython - qd=2.3.22=hbec66e7_1004 - - sqlite=3.44.2=hf2abe2d_0 - - alabaster=0.7.13=pyhd8ed1ab_0 - - appdirs=1.4.4=pyh9f0ad1d_0 - - appnope=0.1.3=pyhd8ed1ab_0 - - attrs=23.1.0=pyh71513ae_1 + - appnope=0.1.4=pyhd8ed1ab_0 + - boost-cpp=1.84.0=hca5e981_1 - brial=1.2.12=pyh694c41f_1 - brotli-python=1.1.0=py311ha891d26_1 - - cached_property=1.5.2=pyha770c72_1 - - cachetools=5.3.2=pyhd8ed1ab_0 - - cairo=1.16.0=h73a0509_1014 - - certifi=2023.11.17=pyhd8ed1ab_0 - - chardet=5.2.0=py311h267d04e_1 + - cctools_osx-arm64=973.0.1=h62378fb_16 + - certifi=2024.2.2=pyhd8ed1ab_0 - charset-normalizer=3.3.2=pyhd8ed1ab_0 + - clang-16=16.0.6=default_he012953_5 - colorama=0.4.6=pyhd8ed1ab_0 - - conway-polynomials=0.8=pyhd8ed1ab_0 + - conway-polynomials=0.9=pyhd8ed1ab_0 - cycler=0.12.1=pyhd8ed1ab_0 - cysignals=1.11.2=py311he42fc87_3 - - cython=3.0.7=py311h92babd0_0 - - debugpy=1.8.0=py311ha891d26_1 + - cython=3.0.8=py311h92babd0_0 + - debugpy=1.8.1=py311h92babd0_0 - decorator=5.1.1=pyhd8ed1ab_0 - - defusedxml=0.7.1=pyhd8ed1ab_0 - - distlib=0.3.8=pyhd8ed1ab_0 - - docutils=0.20.1=py311h267d04e_3 - - eclib=20231211=h7f07de4_0 - - editables=0.3=pyhd8ed1ab_0 - - entrypoints=0.4=pyhd8ed1ab_0 - - exceptiongroup=1.2.0=pyhd8ed1ab_0 + - eclib=20231212=h7f07de4_0 + - exceptiongroup=1.2.0=pyhd8ed1ab_2 - executing=2.0.1=pyhd8ed1ab_0 - - filelock=3.13.1=pyhd8ed1ab_0 - - flit-core=3.9.0=pyhd8ed1ab_0 - fplll=5.4.5=hb7d509d_0 - gap-defaults=4.12.2=hce30654_3 - - gast=0.5.4=pyhd8ed1ab_0 - - gfortran_impl_osx-arm64=12.3.0=hbbb9e1e_1 - gmpy2=2.1.2=py311h2ba9262_1 - idna=3.6=pyhd8ed1ab_0 - - imagesize=1.4.1=pyhd8ed1ab_0 - - ipython_genutils=0.2.0=py_1 - - json5=0.9.14=pyhd8ed1ab_0 - - jsonpointer=2.4=py311h267d04e_3 - - jupyterlab_widgets=3.0.9=pyhd8ed1ab_0 + - jupyterlab_widgets=3.0.10=pyhd8ed1ab_0 - kiwisolver=1.4.5=py311he4fd1f5_1 - lcalc=2.0.5=hc94e8e6_1 - - ld64_osx-arm64=609=hc4dc95b_15 + - ld64=609=h634c8be_16 - libblas=3.9.0=20_osxarm64_openblas - - libclang-cpp15=15.0.7=default_hd209bcb_4 - - libcurl=8.1.2=h912dcd9_0 - - libgd=2.3.3=h90fb8ed_4 - - llvm-tools=15.0.7=h62b9111_1 - - markupsafe=2.1.3=py311heffc1b2_1 + - libcurl=8.5.0=h2d989ff_0 + - libgd=2.3.3=hfdf3952_9 + - markupsafe=2.1.5=py311h05b510d_0 - maxima=5.45.0=h6032a66_2 - - mistune=3.0.2=pyhd8ed1ab_0 - mpmath=1.3.0=pyhd8ed1ab_0 - munkres=1.1.4=pyh9f0ad1d_0 - - nest-asyncio=1.5.8=pyhd8ed1ab_0 + - nest-asyncio=1.6.0=pyhd8ed1ab_0 - networkx=3.2.1=pyhd8ed1ab_0 - openblas=0.3.25=openmp_h55c453e_0 - packaging=23.2=pyhd8ed1ab_0 - - pandocfilters=1.5.0=pyhd8ed1ab_0 - parso=0.8.3=pyhd8ed1ab_0 - - pathspec=0.12.1=pyhd8ed1ab_0 - pickleshare=0.7.5=py_1003 - - pillow=9.4.0=py311h627eb56_1 + - pillow=10.2.0=py311hb9c5795_0 - pkgconfig=1.5.5=pyhd8ed1ab_4 - - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 - - platformdirs=4.1.0=pyhd8ed1ab_0 - - pluggy=1.3.0=pyhd8ed1ab_0 - - ply=3.11=py_1 - - prometheus_client=0.19.0=pyhd8ed1ab_0 - - psutil=5.9.7=py311h05b510d_0 + - platformdirs=4.2.0=pyhd8ed1ab_0 + - psutil=5.9.8=py311h05b510d_0 - ptyprocess=0.7.0=pyhd3deb0d_0 - pure_eval=0.2.2=pyhd8ed1ab_0 - - py=1.11.0=pyh6c4a22f_0 - - pybind11-global=2.11.1=py311he4fd1f5_2 - - pycparser=2.21=pyhd8ed1ab_0 - pygments=2.17.2=pyhd8ed1ab_0 - pyparsing=3.1.1=pyhd8ed1ab_0 - - pyrsistent=0.20.0=py311h05b510d_0 - pysocks=1.7.1=pyha2e5f31_6 - - python-fastjsonschema=2.19.0=pyhd8ed1ab_0 - - python-json-logger=2.0.7=pyhd8ed1ab_0 - - python-lrcalc=2.1=py311ha397e9f_5 - - python-tzdata=2023.3=pyhd8ed1ab_0 - - pytz=2023.3.post1=pyhd8ed1ab_0 - - pyyaml=6.0.1=py311heffc1b2_1 - pyzmq=25.1.2=py311h6727e71_0 - - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.15.2=py311h94f323b_0 - - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 - - sagetex=3.6.1=pyhd8ed1ab_0 - - setuptools=68.2.2=pyhd8ed1ab_0 - - simplegeneric=0.8.1=py_1 + - setuptools=69.1.0=pyhd8ed1ab_1 - singular=4.3.2.p8=hb460b52_1 - six=1.16.0=pyh6c4a22f_0 - - sniffio=1.3.0=pyhd8ed1ab_0 - - snowballstemmer=2.2.0=pyhd8ed1ab_0 - - soupsieve=2.5=pyhd8ed1ab_1 - - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_0 - sympow=2.023.6=hb0babe8_3 - tomli=2.0.1=pyhd8ed1ab_0 - - tornado=6.3.3=py311heffc1b2_1 - - traitlets=5.14.0=pyhd8ed1ab_0 - - trove-classifiers=2023.11.29=pyhd8ed1ab_0 - - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 + - tornado=6.4=py311h05b510d_0 + - traitlets=5.14.1=pyhd8ed1ab_0 - typing_extensions=4.9.0=pyha770c72_0 - - typing_utils=0.1.0=pyhd8ed1ab_0 - - tzlocal=5.2=py311h267d04e_0 - - uri-template=1.3.0=pyhd8ed1ab_0 - - wcwidth=0.2.12=pyhd8ed1ab_0 - - webcolors=1.13=pyhd8ed1ab_0 - - webencodings=0.5.1=pyhd8ed1ab_2 - - websocket-client=1.7.0=pyhd8ed1ab_0 + - wcwidth=0.2.13=pyhd8ed1ab_0 - wheel=0.42.0=pyhd8ed1ab_0 - - widgetsnbextension=4.0.9=pyhd8ed1ab_0 + - widgetsnbextension=4.0.10=pyhd8ed1ab_0 - zipp=3.17.0=pyhd8ed1ab_0 - - anyio=4.2.0=pyhd8ed1ab_0 - asttokens=2.4.1=pyhd8ed1ab_0 - - async-lru=2.0.4=pyhd8ed1ab_0 - - babel=2.14.0=pyhd8ed1ab_0 - - beautifulsoup4=4.12.2=pyha770c72_0 - - beniget=0.4.1=pyhd8ed1ab_0 - - bleach=6.1.0=pyhd8ed1ab_0 - - cached-property=1.5.2=hd8ed1ab_1 - - cctools_osx-arm64=973.0.1=h2a25c60_15 - - cffi=1.16.0=py311h4a08483_0 - - clang-15=15.0.7=default_hd209bcb_4 - - cmake=3.26.4=hc0af03a_0 - - comm=0.1.4=pyhd8ed1ab_0 - - cppy=1.2.1=pyhd8ed1ab_0 - - curl=8.1.2=h912dcd9_0 - - cypari2=2.1.3=py311h149620a_2 - - deprecation=2.1.0=pyh9f0ad1d_0 - - fonttools=4.47.0=py311h05b510d_0 - - harfbuzz=6.0.0=hddbc195_0 - - importlib-metadata=7.0.0=pyha770c72_0 + - cctools=973.0.1=h4faf515_16 + - clang=16.0.6=h30cc82d_5 + - comm=0.2.1=pyhd8ed1ab_0 + - cypari2=2.1.4=py311h2c49a9d_2 + - fonttools=4.48.1=py311h05b510d_0 + - importlib-metadata=7.0.1=pyha770c72_0 - importlib_resources=6.1.1=pyhd8ed1ab_0 - jedi=0.19.1=pyhd8ed1ab_0 - - jinja2=3.1.2=pyhd8ed1ab_1 - - jupyter_core=5.5.1=py311h267d04e_0 - - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 - - ld64=609=h89fa09d_15 + - jinja2=3.1.3=pyhd8ed1ab_0 + - jupyter_core=5.7.1=py311h267d04e_0 - libcblas=3.9.0=20_osxarm64_openblas - liblapack=3.9.0=20_osxarm64_openblas - matplotlib-inline=0.1.6=pyhd8ed1ab_0 - memory-allocator=0.1.3=py311heffc1b2_0 - - overrides=7.4.0=pyhd8ed1ab_0 - - pexpect=4.8.0=pyh1a96a4e_2 - - pip=23.3.2=pyhd8ed1ab_0 + - meson=1.3.2=pyhd8ed1ab_0 + - pexpect=4.9.0=pyhd8ed1ab_0 + - pip=24.0=pyhd8ed1ab_0 - pplpy=0.8.9=py311h5ba3760_0 - primecountpy=0.1.0=py311he4fd1f5_4 - prompt-toolkit=3.0.42=pyha770c72_0 - - pybind11=2.11.1=py311he4fd1f5_2 - - pyobjc-core=10.1=py311h665608e_0 - - pyproject-api=1.6.1=pyhd8ed1ab_0 + - pyproject-metadata=0.7.1=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - - pytz-deprecation-shim=0.1.0.post0=py311h267d04e_4 - - referencing=0.32.0=pyhd8ed1ab_0 - - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - sympy=1.12=pypyh9d50eac_103 - - terminado=0.18.0=pyh31c8845_0 - - tinycss2=1.2.1=pyhd8ed1ab_0 - - typing-extensions=4.9.0=hd8ed1ab_0 - - urllib3=2.1.0=pyhd8ed1ab_0 - - virtualenv=20.25.0=pyhd8ed1ab_0 - - argon2-cffi-bindings=21.2.0=py311heffc1b2_4 - - arpack=3.7.0=h58ebc17_2 - - arrow=1.3.0=pyhd8ed1ab_0 - - cctools=973.0.1=hd1ac623_15 - - clang=15.0.7=haab561b_4 - - dsdp=5.8=h9397a75_1203 + - urllib3=2.2.1=pyhd8ed1ab_0 + - arpack=3.8.0=nompi_ha3438d0_101 + - clangxx=16.0.6=default_h4cf2255_5 - fflas-ffpack=2.4.3=h11f2abc_2 - - fqdn=1.5.1=pyhd8ed1ab_0 - gsl=2.7=h6e638da_0 - - hatchling=1.21.0=pyhd8ed1ab_0 - iml=1.0.5=hd52f0d1_1003 - - importlib-resources=6.1.1=pyhd8ed1ab_0 - - importlib_metadata=7.0.0=hd8ed1ab_0 - - jsonschema-specifications=2023.11.2=pyhd8ed1ab_0 - - jupyter_server_terminals=0.5.0=pyhd8ed1ab_0 + - importlib_metadata=7.0.1=hd8ed1ab_0 - liblapacke=3.9.0=20_osxarm64_openblas - - numpy=1.26.2=py311h6d074dd_0 - - pango=1.50.14=h6c112b8_0 - - prompt_toolkit=3.0.42=hd8ed1ab_0 - - pyobjc-framework-cocoa=10.1=py311h665608e_0 + - meson-python=0.15.0=pyh0c530f3_0 + - numpy=1.26.4=py311h7125741_0 - requests=2.31.0=pyhd8ed1ab_0 - - setuptools-scm=8.0.4=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 - - suitesparse=5.10.1=h88be0ae_2 - - argon2-cffi=23.1.0=pyhd8ed1ab_0 - blas-devel=3.9.0=20_osxarm64_openblas - - clangxx=15.0.7=default_h5c94ee4_4 + - compiler-rt_osx-arm64=16.0.6=h3808999_2 - contourpy=1.2.0=py311hd03642b_0 - - cvxopt=1.3.2=py311hd76776f_1 - - fpylll=0.6.0=py311he33df0e_1 + - fpylll=0.6.1=py311h341b96b_0 - giac=1.9.0.21=h1c96721_1 - - igraph=0.9.10=hcec9b84_1 - - ipython=8.18.1=pyh707e725_3 - - isoduration=20.11.0=pyhd8ed1ab_0 - - jsonschema=4.20.0=pyhd8ed1ab_0 + - igraph=0.10.10=h48be1ad_0 + - ipython=8.22.0=pyh707e725_0 - jupyter_client=8.6.0=pyhd8ed1ab_0 - linbox=1.6.3=h380be0f_8 - scipy=1.11.4=py311h2b215a9_0 - - send2trash=1.8.2=pyhd1c38e8_0 - - setuptools_scm=8.0.4=hd8ed1ab_0 - - tox=4.11.4=pyhd8ed1ab_0 - blas=2.120=openblas - - compiler-rt_osx-arm64=15.0.7=h3808999_2 - - ipykernel=6.26.0=pyh3cd1d5f_0 - - ipywidgets=8.1.1=pyhd8ed1ab_0 - - jsonschema-with-format-nongpl=4.20.0=pyhd8ed1ab_0 - - matplotlib-base=3.8.2=py311hfdba5f6_0 - - nbformat=5.9.2=pyhd8ed1ab_0 - - rw=0.9=h3422bc3_0 - - compiler-rt=15.0.7=h3808999_2 - - ipympl=0.9.3=pyhd8ed1ab_0 - - jupyter-jsmol=2022.1.0=pyhd8ed1ab_0 - - jupyter_events=0.9.0=pyhd8ed1ab_0 - - matplotlib=3.8.2=py311ha1ab1f8_0 - - nbclient=0.8.0=pyhd8ed1ab_0 - - clang_impl_osx-arm64=15.0.7=h77e971b_7 - - nbconvert-core=7.13.0=pyhd8ed1ab_0 - - clang_osx-arm64=15.0.7=h54d7cd3_7 - - jupyter_server=2.12.1=pyhd8ed1ab_0 - - nbconvert-pandoc=7.13.0=pyhd8ed1ab_0 - - c-compiler=1.6.0=hd291e01_0 - - clangxx_impl_osx-arm64=15.0.7=h768a7fd_7 - - gfortran_osx-arm64=12.3.0=h57527a5_1 - - jupyter-lsp=2.2.1=pyhd8ed1ab_0 - - jupyterlab_server=2.25.2=pyhd8ed1ab_0 - - nbconvert=7.13.0=pyhd8ed1ab_0 - - notebook-shim=0.2.3=pyhd8ed1ab_0 - - clangxx_osx-arm64=15.0.7=h54d7cd3_7 - - gfortran=12.3.0=h1ca8e4b_1 - - jupyterlab=4.0.9=pyhd8ed1ab_0 - - cxx-compiler=1.6.0=h1995070_0 - - fortran-compiler=1.6.0=h5a50232_0 - - notebook=7.0.6=pyhd8ed1ab_0 - - pythran=0.14.0=py311hddbb800_1 - - r-base=4.1.3=h9c4d319_6 - - compilers=1.6.0=hce30654_0 - - rpy2=3.5.11=py311r41h4add359_0 - - jupyter_sphinx=0.1.4=py_0 - - sphinx-basic-ng=1.0.0b2=pyhd8ed1ab_1 - - furo=2023.9.10=pyhd8ed1ab_0 - - sphinx-copybutton=0.5.2=pyhd8ed1ab_0 - - sphinxcontrib-applehelp=1.0.7=pyhd8ed1ab_0 - - sphinxcontrib-devhelp=1.0.5=pyhd8ed1ab_0 - - sphinxcontrib-htmlhelp=2.0.4=pyhd8ed1ab_0 - - sphinxcontrib-qthelp=1.0.6=pyhd8ed1ab_0 - - sphinx=7.2.6=pyhd8ed1ab_0 - - sphinxcontrib-serializinghtml=1.1.9=pyhd8ed1ab_0 - - sphinxcontrib-websupport=1.2.6=pyhd8ed1ab_0 + - compiler-rt=16.0.6=h3808999_2 + - ipykernel=6.29.2=pyh3cd1d5f_0 + - ipywidgets=8.1.2=pyhd8ed1ab_0 + - matplotlib-base=3.8.3=py311hb58f1d1_0 + - rw=0.9=h93a5062_1 + - clang_impl_osx-arm64=16.0.6=hc421ffc_9 + - clang_osx-arm64=16.0.6=h54d7cd3_9 + - c-compiler=1.6.0=h6aa9301_0 + - clangxx_impl_osx-arm64=16.0.6=hcd7bac0_9 + - clangxx_osx-arm64=16.0.6=h54d7cd3_9 + - cxx-compiler=1.6.0=h2ffa867_0 diff --git a/src/environment-3.11-macos.yml b/src/environment-3.11-macos.yml index 86acb5faf05..c66cb2b11df 100644 --- a/src/environment-3.11-macos.yml +++ b/src/environment-3.11-macos.yml @@ -1,121 +1,87 @@ # Generated by conda-lock. # platform: osx-64 -# input_hash: d465e8ad8b1b6a4b6a60c1dba1b34740129e500ba0e3cb7d2e34582f29eea756 +# input_hash: df9ff2d930b5a595158333831cb6a7c9dfec0085b794f9f8e86c5954e4bfea27 channels: - conda-forge dependencies: - - _r-mutex=1.0.1=anacondar_1 - - bc=1.07.1=h0d85af4_0 - bzip2=1.0.8=h10d778d_5 - - c-ares=1.24.0=h10d778d_0 - - ca-certificates=2023.11.17=h8857fd0_0 + - c-ares=1.27.0=h10d778d_0 + - ca-certificates=2024.2.2=h8857fd0_0 - cliquer=1.22=hbcb3906_0 - font-ttf-dejavu-sans-mono=2.37=hab24e00_0 - font-ttf-inconsolata=3.000=h77eed37_0 - font-ttf-source-code-pro=2.038=h77eed37_0 - font-ttf-ubuntu=0.83=h77eed37_1 - - fribidi=1.0.10=hbcb3906_0 - giflib=5.2.1=hb7f2c08_3 - icu=73.2=hf5e326d_0 - - libatomic_ops=7.6.14=hb7f2c08_0 - - libboost-headers=1.84.0=h694c41f_0 + - libboost-headers=1.84.0=h694c41f_1 - libbrotlicommon=1.1.0=h0dc2134_1 - libcxx=16.0.6=hd57cbcb_0 - libdeflate=1.19=ha4e1b8e_0 - libev=4.33=h10d778d_2 - libexpat=2.5.0=hf0c8a7f_1 - libffi=3.4.2=h0d85af4_5 - - libgfortran-devel_osx-64=12.3.0=h0b6f5ec_1 - libiconv=1.17=hd75f5a5_2 - libjpeg-turbo=3.0.0=h0dc2134_1 - libsodium=1.0.18=hbcb3906_1 - - libtool=2.4.7=hf0c8a7f_0 - - libuv=1.46.0=h0c2f820_0 - libwebp-base=1.3.2=h0dc2134_0 - libzlib=1.2.13=h8a1eda9_5 - llvm-openmp=17.0.6=hb6ac08f_0 - - m4=1.4.18=haf1e3a3_1001 - - make=4.3=h22f3db7_1 - - mathjax=3.2.2=h694c41f_0 - - nauty=2.8.8=h10d778d_0 + - nauty=2.8.8=h10d778d_1 - palp=2.20=hbcb3906_0 - pari-elldata=0.0.20161017=0 - pari-galdata=0.0.20180411=0 - - pari-galpol=0.0.20180625=0 - pari-seadata-small=0.0.20090618=0 - - patch=2.7.6=hbcf498f_1002 - - perl=5.32.1=4_h0dc2134_perl5 + - perl=5.32.1=7_h10d778d_perl5 - planarity=3.0.0.5=hbcb3906_1002 - pthread-stubs=0.4=hc929b4f_1001 - python_abi=3.11=4_cp311 - - rhash=1.4.4=h0dc2134_0 - - sagemath-db-combinatorial-designs=20140630=1 - - sagemath-db-graphs=20210214=hd8ed1ab_0 - - sagemath-db-polytopes=20170220=1 - - three.js=122=hd8ed1ab_2 - - tzdata=2023c=h71feb2d_0 + - tzdata=2024a=h0c530f3_0 - xorg-libxau=1.0.11=h0dc2134_0 - xorg-libxdmcp=1.1.3=h35c211d_0 - xz=5.2.6=h775f41a_0 - - yaml=0.2.5=h0d85af4_2 - - autoconf=2.71=pl5321hed12c24_1 - bdw-gc=8.0.6=h940c156_0 - expat=2.5.0=hf0c8a7f_1 - fonts-conda-forge=1=0 - - gengetopt=2.23=he49afe7_0 - gettext=0.21.1=h8a4c099_0 - gf2x=1.3.0=hb2a7efb_2 - gmp=6.3.0=h93d8f39_0 - - graphite2=1.3.13=h2e338ed_1001 - - isl=0.25=hb486fe8_0 - lerc=4.0.0=hb486fe8_0 - libbraiding=1.2=hf0c8a7f_0 - libbrotlidec=1.1.0=h0dc2134_1 - libbrotlienc=1.1.0=h0dc2134_1 - - libgfortran5=13.2.0=h2873a65_1 - - libpng=1.6.39=ha978bb4_0 - - libsqlite=3.44.2=h92b6c6a_0 + - libgfortran5=13.2.0=h2873a65_3 + - libpng=1.6.42=h92b6c6a_0 + - libsqlite=3.45.1=h92b6c6a_0 - libxcb=1.15=hb7f2c08_0 - - libxml2=2.11.6=hc0ae0f7_0 - - lrcalc=2.1=hf0c8a7f_5 - - metis=5.1.1=h93d8f39_2 + - libxml2=2.12.5=hc0ae0f7_0 + - lrcalc=2.1=h73e2aa4_6 - ncurses=6.4=h93d8f39_2 - ninja=1.11.1=hb8565cd_0 - - openjdk=21.0.1=hf4d7fad_0 - - openssl=3.2.0=hd75f5a5_1 - - pandoc=3.1.3=h9d075a6_0 + - openssl=3.2.1=hd75f5a5_0 - pari-seadata=0.0.20090618=0 - - pcre2=10.40=h1c4e4bc_0 - - pixman=0.42.2=he965462_0 - pkg-config=0.29.2=ha3d46e9_1008 - primesieve=11.0=hf0c8a7f_0 - qhull=2020.2=h940c156_2 - symmetrica=3.0.1=hf0c8a7f_0 - tapi=1100.0.11=h9ce4665_0 - - tar=1.34=hcb2f6ea_1 - - threejs-sage=122=hd8ed1ab_2 - tk=8.6.13=h1abcd95_1 - zeromq=4.3.5=h93d8f39_0 - zlib=1.2.13=h8a1eda9_5 - zstd=1.5.5=h829000d_0 - - automake=1.16.5=pl5321h694c41f_0 - brotli-bin=1.1.0=h0dc2134_1 - - bwidget=1.9.14=h694c41f_1 - cddlib=1!0.94m=h0f52abe_0 - ecm=7.0.4=h343d7f2_1002 - fonts-conda-ecosystem=1=0 - freetype=2.12.1=h60636b9_2 - givaro=4.1.1=h0a799c6_3 - glpk=5.0=h3cb5acd_0 - - jmol=14.32.9=h694c41f_0 - - libboost=1.84.0=h5b2dd29_0 + - libboost=1.84.0=h4bb364b_1 - libedit=3.1.20191231=h0678c8f_2 - - libgfortran=5.0.0=13_2_0_h97931a8_1 - - libglib=2.78.1=h6d9ecee_0 + - libgfortran=5.0.0=13_2_0_h97931a8_3 - libhomfly=1.02r6=hc929b4f_0 - - libhwloc=2.9.3=default_h24e0189_1009 - - libllvm15=15.0.7=he4b1e75_3 + - libllvm16=16.0.6=hbedff68_3 - libnghttp2=1.58.0=h64cf6d3_1 - libssh2=1.11.0=hd019ec5_0 - libtiff=4.6.0=h684deea_2 @@ -125,281 +91,145 @@ dependencies: - primecount=7.6=ha894c9a_0 - readline=8.2=h9e318b2_1 - sigtool=0.1.3=h88f4db0_0 - - tachyon=0.99b6=0 - - texinfo=7.0=pl5321hc47821c_0 - - tktable=2.10=ha166976_5 - brotli=1.1.0=h0dc2134_1 - ecl=21.2.1=hd029580_2 - - fftw=3.3.10=nompi_h4fa670e_108 - fontconfig=2.14.2=h5bb23bf_0 - gap-core=4.12.2=hc16eb5f_3 - gfan=0.6.2=hd793b56_1003 - krb5=1.21.2=hb884880_0 - lcms2=2.16=ha2f27b4_0 - - ld64_osx-64=609=h0fd476b_15 - - libboost-devel=1.84.0=h7728843_0 + - ld64_osx-64=609=ha20a434_16 + - libboost-devel=1.84.0=h7728843_1 - libbrial=1.2.12=h8d08345_1 - - libclang-cpp15=15.0.7=default_h6b1ee41_4 + - libclang-cpp16=16.0.6=default_h7151d67_5 - libflint=3.0.1=h5d15de0_ntl_100 - libopenblas=0.3.25=openmp_hfef2a42_0 - libwebp=1.3.2=h44782d1_1 - - llvm-tools=15.0.7=he4b1e75_3 + - llvm-tools=16.0.6=hbedff68_3 - m4rie=20150908=h3f75d11_1001 - mpc=1.3.1=h81bd1dd_0 - mpfi=1.5.4=h52b28e3_1001 - openjpeg=2.5.0=ha4da562_3 - pari=2.15.4=h93f793c_2_pthread - ppl=1.2=ha60d53e_1006 - - python=3.11.7=h9f0c242_0_cpython + - python=3.11.8=h9f0c242_0_cpython - qd=2.3.22=h2beb688_1004 - - sqlite=3.44.2=h7461747_0 - - tbb=2021.11.0=he51d815_0 - - alabaster=0.7.13=pyhd8ed1ab_0 - - appdirs=1.4.4=pyh9f0ad1d_0 - - appnope=0.1.3=pyhd8ed1ab_0 - - attrs=23.1.0=pyh71513ae_1 - - boost-cpp=1.84.0=h07eb623_0 + - appnope=0.1.4=pyhd8ed1ab_0 + - boost-cpp=1.84.0=h07eb623_1 - brial=1.2.12=pyh694c41f_1 - brotli-python=1.1.0=py311hdf8f085_1 - - cached_property=1.5.2=pyha770c72_1 - - cachetools=5.3.2=pyhd8ed1ab_0 - - cairo=1.18.0=h99e66fa_0 - - cctools_osx-64=973.0.1=habff3f6_15 - - certifi=2023.11.17=pyhd8ed1ab_0 - - chardet=5.2.0=py311h6eed73b_1 + - cctools_osx-64=973.0.1=ha1c5b94_16 + - certifi=2024.2.2=pyhd8ed1ab_0 - charset-normalizer=3.3.2=pyhd8ed1ab_0 - - clang-15=15.0.7=default_h6b1ee41_4 + - clang-16=16.0.6=default_h7151d67_5 - colorama=0.4.6=pyhd8ed1ab_0 - - conway-polynomials=0.8=pyhd8ed1ab_0 + - conway-polynomials=0.9=pyhd8ed1ab_0 - cycler=0.12.1=pyhd8ed1ab_0 - cysignals=1.11.2=py311h8a58447_3 - - cython=3.0.7=py311hdd0406b_0 - - debugpy=1.8.0=py311hdf8f085_1 + - cython=3.0.8=py311hdd0406b_0 + - debugpy=1.8.1=py311hdd0406b_0 - decorator=5.1.1=pyhd8ed1ab_0 - - defusedxml=0.7.1=pyhd8ed1ab_0 - - distlib=0.3.8=pyhd8ed1ab_0 - - docutils=0.20.1=py311h6eed73b_3 - - eclib=20231211=h02435c3_0 - - editables=0.3=pyhd8ed1ab_0 - - entrypoints=0.4=pyhd8ed1ab_0 - - exceptiongroup=1.2.0=pyhd8ed1ab_0 + - eclib=20231212=h02435c3_0 + - exceptiongroup=1.2.0=pyhd8ed1ab_2 - executing=2.0.1=pyhd8ed1ab_0 - - filelock=3.13.1=pyhd8ed1ab_0 - - flit-core=3.9.0=pyhd8ed1ab_0 - fplll=5.4.5=hb7981ad_0 - gap-defaults=4.12.2=h694c41f_3 - - gast=0.5.4=pyhd8ed1ab_0 - - gfortran_impl_osx-64=12.3.0=h54fd467_1 - gmpy2=2.1.2=py311hc5b4402_1 - idna=3.6=pyhd8ed1ab_0 - - imagesize=1.4.1=pyhd8ed1ab_0 - - ipython_genutils=0.2.0=py_1 - - json5=0.9.14=pyhd8ed1ab_0 - - jsonpointer=2.4=py311h6eed73b_3 - - jupyterlab_widgets=3.0.9=pyhd8ed1ab_0 + - jupyterlab_widgets=3.0.10=pyhd8ed1ab_0 - kiwisolver=1.4.5=py311h5fe6e05_1 - lcalc=2.0.5=h3a941db_1 - - ld64=609=ha91a046_15 + - ld64=609=ha02d983_16 - libblas=3.9.0=20_osx64_openblas - libcurl=8.5.0=h726d00d_0 - libgd=2.3.3=h0dceb68_9 - - markupsafe=2.1.3=py311h2725bcf_1 + - markupsafe=2.1.5=py311he705e18_0 - maxima=5.47.0=h2b27fa8_1 - - mistune=3.0.2=pyhd8ed1ab_0 - mpmath=1.3.0=pyhd8ed1ab_0 - munkres=1.1.4=pyh9f0ad1d_0 - - nest-asyncio=1.5.8=pyhd8ed1ab_0 + - nest-asyncio=1.6.0=pyhd8ed1ab_0 - networkx=3.2.1=pyhd8ed1ab_0 - openblas=0.3.25=openmp_h6794695_0 - packaging=23.2=pyhd8ed1ab_0 - - pandocfilters=1.5.0=pyhd8ed1ab_0 - parso=0.8.3=pyhd8ed1ab_0 - - pathspec=0.12.1=pyhd8ed1ab_0 - pickleshare=0.7.5=py_1003 - - pillow=10.1.0=py311hea5c87a_0 + - pillow=10.2.0=py311hea5c87a_0 - pkgconfig=1.5.5=pyhd8ed1ab_4 - - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 - - platformdirs=4.1.0=pyhd8ed1ab_0 - - pluggy=1.3.0=pyhd8ed1ab_0 - - ply=3.11=py_1 - - prometheus_client=0.19.0=pyhd8ed1ab_0 - - psutil=5.9.7=py311he705e18_0 + - platformdirs=4.2.0=pyhd8ed1ab_0 + - psutil=5.9.8=py311he705e18_0 - ptyprocess=0.7.0=pyhd3deb0d_0 - pure_eval=0.2.2=pyhd8ed1ab_0 - - py=1.11.0=pyh6c4a22f_0 - - pybind11-global=2.11.1=py311h5fe6e05_2 - - pycparser=2.21=pyhd8ed1ab_0 - pygments=2.17.2=pyhd8ed1ab_0 - pyparsing=3.1.1=pyhd8ed1ab_0 - - pyrsistent=0.20.0=py311he705e18_0 - pysocks=1.7.1=pyha2e5f31_6 - - python-fastjsonschema=2.19.0=pyhd8ed1ab_0 - - python-json-logger=2.0.7=pyhd8ed1ab_0 - - python-lrcalc=2.1=py311h814d153_5 - - python-tzdata=2023.3=pyhd8ed1ab_0 - - pytz=2023.3.post1=pyhd8ed1ab_0 - - pyyaml=6.0.1=py311h2725bcf_1 - pyzmq=25.1.2=py311h889d6d6_0 - - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.15.2=py311h5e0f0e4_0 - - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 - - sagetex=3.6.1=pyhd8ed1ab_0 - - setuptools=68.2.2=pyhd8ed1ab_0 - - simplegeneric=0.8.1=py_1 + - setuptools=69.1.0=pyhd8ed1ab_1 - singular=4.3.2.p8=h0d51a9f_1 - six=1.16.0=pyh6c4a22f_0 - - sniffio=1.3.0=pyhd8ed1ab_0 - - snowballstemmer=2.2.0=pyhd8ed1ab_0 - - soupsieve=2.5=pyhd8ed1ab_1 - - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_0 - sympow=2.023.6=h115ba6a_3 - tomli=2.0.1=pyhd8ed1ab_0 - - tornado=6.3.3=py311h2725bcf_1 - - traitlets=5.14.0=pyhd8ed1ab_0 - - trove-classifiers=2023.11.29=pyhd8ed1ab_0 - - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 + - tornado=6.4=py311he705e18_0 + - traitlets=5.14.1=pyhd8ed1ab_0 - typing_extensions=4.9.0=pyha770c72_0 - - typing_utils=0.1.0=pyhd8ed1ab_0 - - tzlocal=5.2=py311h6eed73b_0 - - uri-template=1.3.0=pyhd8ed1ab_0 - - wcwidth=0.2.12=pyhd8ed1ab_0 - - webcolors=1.13=pyhd8ed1ab_0 - - webencodings=0.5.1=pyhd8ed1ab_2 - - websocket-client=1.7.0=pyhd8ed1ab_0 + - wcwidth=0.2.13=pyhd8ed1ab_0 - wheel=0.42.0=pyhd8ed1ab_0 - - widgetsnbextension=4.0.9=pyhd8ed1ab_0 + - widgetsnbextension=4.0.10=pyhd8ed1ab_0 - zipp=3.17.0=pyhd8ed1ab_0 - - anyio=4.2.0=pyhd8ed1ab_0 - asttokens=2.4.1=pyhd8ed1ab_0 - - async-lru=2.0.4=pyhd8ed1ab_0 - - babel=2.14.0=pyhd8ed1ab_0 - - beautifulsoup4=4.12.2=pyha770c72_0 - - beniget=0.4.1=pyhd8ed1ab_0 - - bleach=6.1.0=pyhd8ed1ab_0 - - cached-property=1.5.2=hd8ed1ab_1 - - cctools=973.0.1=hd9ad811_15 - - cffi=1.16.0=py311hc0b63fd_0 - - clang=15.0.7=hac416ee_4 - - cmake=3.28.1=h7c85d92_0 - - comm=0.1.4=pyhd8ed1ab_0 - - cppy=1.2.1=pyhd8ed1ab_0 - - curl=8.5.0=h726d00d_0 - - cypari2=2.1.3=py311h7d823c7_2 - - deprecation=2.1.0=pyh9f0ad1d_0 - - fonttools=4.47.0=py311he705e18_0 - - harfbuzz=8.3.0=hf45c392_0 - - importlib-metadata=7.0.0=pyha770c72_0 + - cctools=973.0.1=h40f6528_16 + - clang=16.0.6=hdae98eb_5 + - comm=0.2.1=pyhd8ed1ab_0 + - cypari2=2.1.4=py311h4fde0ae_2 + - fonttools=4.49.0=py311he705e18_0 + - importlib-metadata=7.0.1=pyha770c72_0 - importlib_resources=6.1.1=pyhd8ed1ab_0 - jedi=0.19.1=pyhd8ed1ab_0 - - jinja2=3.1.2=pyhd8ed1ab_1 - - jupyter_core=5.5.1=py311h6eed73b_0 - - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 + - jinja2=3.1.3=pyhd8ed1ab_0 + - jupyter_core=5.7.1=py311h6eed73b_0 - libcblas=3.9.0=20_osx64_openblas - liblapack=3.9.0=20_osx64_openblas - matplotlib-inline=0.1.6=pyhd8ed1ab_0 - memory-allocator=0.1.3=py311h2725bcf_0 - - overrides=7.4.0=pyhd8ed1ab_0 - - pexpect=4.8.0=pyh1a96a4e_2 - - pip=23.3.2=pyhd8ed1ab_0 + - meson=1.3.2=pyhd8ed1ab_0 + - pexpect=4.9.0=pyhd8ed1ab_0 + - pip=24.0=pyhd8ed1ab_0 - pplpy=0.8.9=py311h7355a2a_0 - primecountpy=0.1.0=py311h5fe6e05_4 - prompt-toolkit=3.0.42=pyha770c72_0 - - pybind11=2.11.1=py311h5fe6e05_2 - - pyobjc-core=10.1=py311h9b70068_0 - - pyproject-api=1.6.1=pyhd8ed1ab_0 + - pyproject-metadata=0.7.1=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - - pytz-deprecation-shim=0.1.0.post0=py311h6eed73b_4 - - referencing=0.32.0=pyhd8ed1ab_0 - - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - sympy=1.12=pypyh9d50eac_103 - - terminado=0.18.0=pyh31c8845_0 - - tinycss2=1.2.1=pyhd8ed1ab_0 - - typing-extensions=4.9.0=hd8ed1ab_0 - - urllib3=2.1.0=pyhd8ed1ab_0 - - virtualenv=20.25.0=pyhd8ed1ab_0 - - argon2-cffi-bindings=21.2.0=py311h2725bcf_4 + - urllib3=2.2.1=pyhd8ed1ab_0 - arpack=3.8.0=nompi_hb44a6d1_101 - - arrow=1.3.0=pyhd8ed1ab_0 - - clangxx=15.0.7=default_h6b1ee41_4 - - dsdp=5.8=h6e329d1_1203 + - clangxx=16.0.6=default_h7151d67_5 - fflas-ffpack=2.4.3=h026fd7e_2 - - fqdn=1.5.1=pyhd8ed1ab_0 - gsl=2.7=h93259b0_0 - - hatchling=1.21.0=pyhd8ed1ab_0 - iml=1.0.5=h64b42ca_1003 - - importlib-resources=6.1.1=pyhd8ed1ab_0 - - importlib_metadata=7.0.0=hd8ed1ab_0 - - jsonschema-specifications=2023.11.2=pyhd8ed1ab_0 - - jupyter_server_terminals=0.5.0=pyhd8ed1ab_0 + - importlib_metadata=7.0.1=hd8ed1ab_0 - liblapacke=3.9.0=20_osx64_openblas - - numpy=1.26.2=py311h93c810c_0 - - pango=1.50.14=h19c1c8a_2 - - prompt_toolkit=3.0.42=hd8ed1ab_0 - - pyobjc-framework-cocoa=10.1=py311h9b70068_0 + - meson-python=0.15.0=pyh0c530f3_0 + - numpy=1.26.4=py311hc43a94b_0 - requests=2.31.0=pyhd8ed1ab_0 - - setuptools-scm=8.0.4=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 - - suitesparse=5.10.1=h0a40b7c_2 - - argon2-cffi=23.1.0=pyhd8ed1ab_0 - blas-devel=3.9.0=20_osx64_openblas - - compiler-rt_osx-64=15.0.7=ha38d28d_2 + - compiler-rt_osx-64=16.0.6=ha38d28d_2 - contourpy=1.2.0=py311h7bea37d_0 - - cvxopt=1.3.2=py311ha4c19de_1 - - fpylll=0.6.0=py311hc863427_1 + - fpylll=0.6.1=py311h85fbf69_0 - giac=1.9.0.21=h92f3f65_1 - - igraph=0.10.8=h29df365_0 - - ipython=8.18.1=pyh707e725_3 - - isoduration=20.11.0=pyhd8ed1ab_0 - - jsonschema=4.20.0=pyhd8ed1ab_0 + - igraph=0.10.10=h6b221b4_0 + - ipython=8.22.0=pyh707e725_0 - jupyter_client=8.6.0=pyhd8ed1ab_0 - linbox=1.6.3=hfb9b24e_8 - scipy=1.11.4=py311he0bea55_0 - - send2trash=1.8.2=pyhd1c38e8_0 - - setuptools_scm=8.0.4=hd8ed1ab_0 - - tox=4.11.4=pyhd8ed1ab_0 - blas=2.120=openblas - - compiler-rt=15.0.7=ha38d28d_2 - - ipykernel=6.26.0=pyh3cd1d5f_0 - - ipywidgets=8.1.1=pyhd8ed1ab_0 - - jsonschema-with-format-nongpl=4.20.0=pyhd8ed1ab_0 - - matplotlib-base=3.8.2=py311hd316c10_0 - - nbformat=5.9.2=pyhd8ed1ab_0 + - compiler-rt=16.0.6=ha38d28d_2 + - ipykernel=6.29.2=pyh3cd1d5f_0 + - ipywidgets=8.1.2=pyhd8ed1ab_0 + - matplotlib-base=3.8.3=py311h6ff1f5f_0 - rw=0.9=h10d778d_1 - - clang_impl_osx-64=15.0.7=h03d6864_7 - - ipympl=0.9.3=pyhd8ed1ab_0 - - jupyter-jsmol=2022.1.0=pyhd8ed1ab_0 - - jupyter_events=0.9.0=pyhd8ed1ab_0 - - matplotlib=3.8.2=py311h6eed73b_0 - - nbclient=0.8.0=pyhd8ed1ab_0 - - clang_osx-64=15.0.7=hb91bd55_7 - - nbconvert-core=7.13.0=pyhd8ed1ab_0 - - c-compiler=1.6.0=h63c33a9_0 - - clangxx_impl_osx-64=15.0.7=h2133e9c_7 - - gfortran_osx-64=12.3.0=h18f7dce_1 - - jupyter_server=2.12.1=pyhd8ed1ab_0 - - nbconvert-pandoc=7.13.0=pyhd8ed1ab_0 - - clangxx_osx-64=15.0.7=hb91bd55_7 - - gfortran=12.3.0=h2c809b3_1 - - jupyter-lsp=2.2.1=pyhd8ed1ab_0 - - jupyterlab_server=2.25.2=pyhd8ed1ab_0 - - nbconvert=7.13.0=pyhd8ed1ab_0 - - notebook-shim=0.2.3=pyhd8ed1ab_0 - - cxx-compiler=1.6.0=h1c7c39f_0 - - fortran-compiler=1.6.0=h932d759_0 - - jupyterlab=4.0.9=pyhd8ed1ab_0 - - pythran=0.14.0=py311hd5c4f45_1 - - r-base=4.3.1=h0ff45fa_6 - - compilers=1.6.0=h694c41f_0 - - notebook=7.0.6=pyhd8ed1ab_0 - - rpy2=3.5.11=py311r43h4a70a88_3 - - jupyter_sphinx=0.4.0=py311h6eed73b_1 - - sphinx-basic-ng=1.0.0b2=pyhd8ed1ab_1 - - furo=2023.9.10=pyhd8ed1ab_0 - - sphinx-copybutton=0.5.2=pyhd8ed1ab_0 - - sphinxcontrib-applehelp=1.0.7=pyhd8ed1ab_0 - - sphinxcontrib-devhelp=1.0.5=pyhd8ed1ab_0 - - sphinxcontrib-htmlhelp=2.0.4=pyhd8ed1ab_0 - - sphinxcontrib-qthelp=1.0.6=pyhd8ed1ab_0 - - sphinx=7.2.6=pyhd8ed1ab_0 - - sphinxcontrib-serializinghtml=1.1.9=pyhd8ed1ab_0 - - sphinxcontrib-websupport=1.2.6=pyhd8ed1ab_0 + - clang_impl_osx-64=16.0.6=h8787910_9 + - clang_osx-64=16.0.6=hb91bd55_9 + - c-compiler=1.6.0=h282daa2_0 + - clangxx_impl_osx-64=16.0.6=h6d92fbe_9 + - clangxx_osx-64=16.0.6=hb91bd55_9 + - cxx-compiler=1.6.0=h7728843_0 diff --git a/src/environment-3.9-linux-aarch64.yml b/src/environment-3.9-linux-aarch64.yml index a6def73b317..0e724e430af 100644 --- a/src/environment-3.9-linux-aarch64.yml +++ b/src/environment-3.9-linux-aarch64.yml @@ -1,422 +1,240 @@ # Generated by conda-lock. # platform: linux-aarch64 -# input_hash: c38919ee81734178b79845569c6031fa434acc1fe30099876cee095117077374 +# input_hash: ef81471404120f756a0382a36f52b9bc2a1c5831d23b88d16f023278c6f40842 channels: - conda-forge dependencies: - - _r-mutex=1.0.1=anacondar_1 - - _sysroot_linux-aarch64_curr_repodata_hack=4=h57d6b7b_13 - - ca-certificates=2023.11.17=hcefe29a_0 + - _sysroot_linux-aarch64_curr_repodata_hack=4=h57d6b7b_14 + - ca-certificates=2024.2.2=hcefe29a_0 - font-ttf-dejavu-sans-mono=2.37=hab24e00_0 - font-ttf-inconsolata=3.000=h77eed37_0 - font-ttf-source-code-pro=2.038=h77eed37_0 - font-ttf-ubuntu=0.83=h77eed37_1 - - kernel-headers_linux-aarch64=4.18.0=h5b4a56d_13 - ld_impl_linux-aarch64=2.40=h2d8c526_0 - - libgcc-devel_linux-aarch64=12.3.0=h8b5ab12_103 - - libgomp=13.2.0=hf8544c7_3 - - libstdcxx-devel_linux-aarch64=12.3.0=h8b5ab12_103 - - libstdcxx-ng=13.2.0=h9a76618_3 - - mathjax=3.2.2=h8af1aa0_0 - - pandoc=3.1.3=h8af1aa0_0 + - libboost-headers=1.84.0=h8af1aa0_1 + - libgcc-devel_linux-aarch64=12.3.0=h8b5ab12_105 + - libgomp=13.2.0=hf8544c7_5 + - libstdcxx-devel_linux-aarch64=12.3.0=h8b5ab12_105 + - libstdcxx-ng=13.2.0=h9a76618_5 - pari-elldata=0.0.20161017=0 - pari-galdata=0.0.20180411=0 - - pari-galpol=0.0.20180625=0 - pari-seadata-small=0.0.20090618=0 - python_abi=3.9=4_cp39 - - sagemath-db-combinatorial-designs=20140630=1 - - sagemath-db-graphs=20210214=hd8ed1ab_0 - - sagemath-db-polytopes=20170220=1 - - three.js=122=hd8ed1ab_2 - - tzdata=2023c=h71feb2d_0 + - tzdata=2024a=h0c530f3_0 - fonts-conda-forge=1=0 + - kernel-headers_linux-aarch64=4.18.0=h5b4a56d_14 - pari-seadata=0.0.20090618=0 - - sysroot_linux-aarch64=2.17=h5b4a56d_13 - - threejs-sage=122=hd8ed1ab_2 - - binutils_impl_linux-aarch64=2.40=h870a726_0 - fonts-conda-ecosystem=1=0 + - sysroot_linux-aarch64=2.17=h5b4a56d_14 + - binutils_impl_linux-aarch64=2.40=h870a726_0 - binutils=2.40=h64c2a2e_0 - binutils_linux-aarch64=2.40=h94bbfa1_2 - _openmp_mutex=4.5=2_kmp_llvm - - libgcc-ng=13.2.0=hf8544c7_3 - - alsa-lib=1.2.8=h4e544f5_0 - - bc=1.07.1=hf897c2e_0 + - libgcc-ng=13.2.0=hf8544c7_5 - bdw-gc=8.0.6=hd62202e_0 - bzip2=1.0.8=h31becfc_5 - - c-ares=1.24.0=h31becfc_0 + - c-ares=1.27.0=h31becfc_0 - cliquer=1.22=hb9de7d4_0 - - fribidi=1.0.10=hb9de7d4_0 - - gengetopt=2.23=h01db608_0 - - gettext=0.21.1=ha18d298_0 - gf2x=1.3.0=h1b3b3a3_2 - giflib=5.2.1=hb4cce97_3 - gmp=6.3.0=h2f0025b_0 - - graphite2=1.3.13=h7fd3ca4_1001 - - icu=70.1=ha18d298_0 - - jpeg=9e=h2a766a3_3 + - icu=73.2=h787c7f5_0 - keyutils=1.6.1=h4e544f5_0 - lerc=4.0.0=h4de3ea5_0 - - libatomic_ops=7.6.14=h4e544f5_0 - libbraiding=1.2=hd600fc2_0 - libbrotlicommon=1.1.0=h31becfc_1 - - libdeflate=1.17=hb4cce97_0 + - libdeflate=1.19=h31becfc_0 - libev=4.33=h31becfc_2 - libexpat=2.5.0=hd600fc2_1 - libffi=3.4.2=h3557bc0_5 - - libgfortran5=13.2.0=h582850c_3 + - libgfortran5=13.2.0=h582850c_5 - libiconv=1.17=h31becfc_2 + - libjpeg-turbo=3.0.0=h31becfc_1 - libnsl=2.0.1=h31becfc_0 - - libsanitizer=12.3.0=h8ebda82_3 + - libsanitizer=12.3.0=h8ebda82_5 - libsodium=1.0.18=hb9de7d4_1 - - libtool=2.4.7=h4de3ea5_0 - libuuid=2.38.1=hb4cce97_0 - - libuv=1.46.0=h31becfc_0 - - libwebp-base=1.2.4=h4e544f5_0 + - libwebp-base=1.3.2=h31becfc_0 + - libxcrypt=4.4.36=h31becfc_1 - libzlib=1.2.13=h31becfc_5 - - lrcalc=2.1=h4de3ea5_5 - - m4=1.4.18=h516909a_1001 - - make=4.3=h309ac5b_1 - - metis=5.1.0=h2f0025b_1007 - - nauty=2.8.8=h31becfc_0 + - lrcalc=2.1=h2f0025b_6 + - nauty=2.8.8=h31becfc_1 - ncurses=6.4=h0425590_2 - ninja=1.11.1=hdd96247_0 - - openssl=3.2.0=h31becfc_1 + - openssl=3.2.1=h31becfc_0 - palp=2.20=hb9de7d4_0 - - patch=2.7.6=hf897c2e_1002 - - pixman=0.42.2=h2f0025b_0 - pkg-config=0.29.2=hb9de7d4_1008 - planarity=3.0.0.5=hb9de7d4_1002 - primesieve=11.0=hd600fc2_0 - pthread-stubs=0.4=hb9de7d4_1001 - qhull=2020.2=hd62202e_2 - - rhash=1.4.3=h31becfc_2 - - sed=4.8=ha0d5d3d_0 - symmetrica=3.0.1=hd600fc2_0 - - xorg-inputproto=2.3.2=h3557bc0_1002 - - xorg-kbproto=1.0.7=h3557bc0_1002 - - xorg-libice=1.0.10=h3557bc0_0 - xorg-libxau=1.0.11=h31becfc_0 - xorg-libxdmcp=1.1.3=h3557bc0_0 - - xorg-recordproto=1.14.2=hf897c2e_1002 - - xorg-renderproto=0.11.1=h3557bc0_1002 - - xorg-xextproto=7.3.0=h2a766a3_1003 - - xorg-xproto=7.0.31=h3557bc0_1007 - xz=5.2.6=h9cdd2b7_0 - - yaml=0.2.5=hf897c2e_2 - cddlib=1!0.94m=h719063d_0 - ecm=7.0.4=h719063d_1002 - expat=2.5.0=hd600fc2_1 - - gcc_impl_linux-aarch64=12.3.0=hcde2664_3 + - gcc_impl_linux-aarch64=12.3.0=hcde2664_5 - givaro=4.1.1=h192cbe9_1 - glpk=5.0=h66325d0_0 - libbrotlidec=1.1.0=h31becfc_1 - libbrotlienc=1.1.0=h31becfc_1 - libedit=3.1.20191231=he28a2e2_2 - - libgfortran-ng=13.2.0=he9431aa_3 + - libgfortran-ng=13.2.0=he9431aa_5 - libhomfly=1.02r6=hb9de7d4_0 - libnghttp2=1.58.0=hb0e430d_1 - - libpng=1.6.39=hf9034f9_0 - - libsqlite=3.44.2=h194ca79_0 + - libpng=1.6.42=h194ca79_0 + - libsqlite=3.45.1=h194ca79_0 - libssh2=1.11.0=h492db2e_0 - - libxcb=1.13=h3557bc0_1004 - - libxml2=2.10.3=habe54e3_4 + - libxcb=1.15=h2a766a3_0 + - libxml2=2.12.5=h3091e33_0 - mpfr=4.2.1=ha2d0fc4_0 - ntl=11.4.3=h0d7519b_1 - - pcre2=10.40=he7b27c6_0 - - perl=5.32.1=4_h31becfc_perl5 + - perl=5.32.1=7_h31becfc_perl5 - primecount=7.6=hd600fc2_0 - readline=8.2=h8fc344f_1 - - tar=1.34=h048efde_0 - tk=8.6.13=h194ca79_0 - - xorg-fixesproto=5.0=h3557bc0_1002 - - xorg-libsm=1.2.3=h965e137_1000 - zeromq=4.3.5=h2f0025b_0 - zlib=1.2.13=h31becfc_5 - zstd=1.5.5=h4c53e97_0 - - autoconf=2.71=pl5321h2148fe1_1 - - boost-cpp=1.81.0=h07c2bc3_0 - brotli-bin=1.1.0=h31becfc_1 - - bwidget=1.9.14=h8af1aa0_1 - ecl=21.2.1=haa44c19_2 - - fftw=3.3.10=nompi_h2dcef8e_108 - freetype=2.12.1=hf0a5ef3_2 - gap-core=4.12.2=h597289e_3 - gcc=12.3.0=hc1b51f9_2 - gcc_linux-aarch64=12.3.0=h464a8f7_2 - gfan=0.6.2=h5f589ec_1003 - - gfortran_impl_linux-aarch64=12.3.0=hb7244be_3 - - gxx_impl_linux-aarch64=12.3.0=hcde2664_3 - - krb5=1.20.1=h113d92e_0 + - gxx_impl_linux-aarch64=12.3.0=hcde2664_5 + - krb5=1.21.2=hc419048_0 + - libboost=1.84.0=h1fed05a_1 - libflint=3.0.1=hc392af7_ntl_100 - - libglib=2.78.1=h0464669_0 - - libhwloc=2.9.1=h21e8147_0 - libopenblas=0.3.25=pthreads_h5a5ec62_0 - - libtiff=4.5.0=h4c1066a_2 + - libtiff=4.6.0=h1708d11_2 - llvm-openmp=17.0.6=h8b0cb96_0 - m4ri=20140914=h75e8696_1005 - mpc=1.3.1=hf4c8f4c_0 - mpfi=1.5.4=h846f343_1001 - pari=2.15.4=h169c2a7_2_pthread - ppl=1.2=h984aac9_1006 - - python=3.9.18=h4ac3b42_0_cpython + - python=3.9.18=h4ac3b42_1_cpython - qd=2.3.22=h05efe27_1004 - - sqlite=3.44.2=h3b3482f_0 - - tachyon=0.99b6=h63ab1d9_1001 - - texinfo=7.0=pl5321h17f021e_0 - - tktable=2.10=h4f9ca69_5 - - xorg-libx11=1.8.4=h2a766a3_0 - - alabaster=0.7.13=pyhd8ed1ab_0 - - appdirs=1.4.4=pyh9f0ad1d_0 - - appnope=0.1.3=pyhd8ed1ab_0 - - attrs=23.1.0=pyh71513ae_1 - - automake=1.16.5=pl5321h8af1aa0_0 - brotli=1.1.0=h31becfc_1 - brotli-python=1.1.0=py39h387a81e_1 - c-compiler=1.6.0=h31becfc_0 - - cached_property=1.5.2=pyha770c72_1 - - cachetools=5.3.2=pyhd8ed1ab_0 - - certifi=2023.11.17=pyhd8ed1ab_0 - - chardet=5.2.0=py39ha65689a_1 + - certifi=2024.2.2=pyhd8ed1ab_0 - charset-normalizer=3.3.2=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_0 - - conway-polynomials=0.8=pyhd8ed1ab_0 + - conway-polynomials=0.9=pyhd8ed1ab_0 - cycler=0.12.1=pyhd8ed1ab_0 - cysignals=1.11.2=py39hfa81392_3 - - cython=3.0.7=py39h387a81e_0 - - debugpy=1.8.0=py39h387a81e_1 + - cython=3.0.8=py39h387a81e_0 + - debugpy=1.8.1=py39h387a81e_0 - decorator=5.1.1=pyhd8ed1ab_0 - - defusedxml=0.7.1=pyhd8ed1ab_0 - - distlib=0.3.8=pyhd8ed1ab_0 - - docutils=0.20.1=py39ha65689a_3 - - eclib=20231211=he26bab5_0 - - editables=0.3=pyhd8ed1ab_0 - - entrypoints=0.4=pyhd8ed1ab_0 - - exceptiongroup=1.2.0=pyhd8ed1ab_0 + - eclib=20231212=he26bab5_0 + - exceptiongroup=1.2.0=pyhd8ed1ab_2 - executing=2.0.1=pyhd8ed1ab_0 - - filelock=3.13.1=pyhd8ed1ab_0 - - flit-core=3.9.0=pyhd8ed1ab_0 - fontconfig=2.14.2=ha9a116f_0 - fplll=5.4.5=hb3a790e_0 - gap-defaults=4.12.2=h8af1aa0_3 - - gast=0.5.4=pyhd8ed1ab_0 - - gfortran=12.3.0=h8d4031d_2 - - gfortran_linux-aarch64=12.3.0=h1993883_2 - gmpy2=2.1.2=py39h3ba43c8_1 - gxx=12.3.0=hc1b51f9_2 - gxx_linux-aarch64=12.3.0=h21accf6_2 - idna=3.6=pyhd8ed1ab_0 - - imagesize=1.4.1=pyhd8ed1ab_0 - - ipython_genutils=0.2.0=py_1 - - json5=0.9.14=pyhd8ed1ab_0 - - jsonpointer=2.4=py39h4420490_3 - - jupyterlab_widgets=3.0.9=pyhd8ed1ab_0 + - jupyterlab_widgets=3.0.10=pyhd8ed1ab_0 - kiwisolver=1.4.5=py39had2cf8c_1 - lcalc=2.0.5=h3264cc0_1 - - lcms2=2.15=h7576be9_0 + - lcms2=2.16=h922389a_0 - libblas=3.9.0=20_linuxaarch64_openblas + - libboost-devel=1.84.0=h37bb5a9_1 - libbrial=1.2.12=h17533bf_1 - - libcups=2.3.3=h4303303_3 - - libcurl=8.1.2=hc34909b_0 - - libwebp=1.2.4=h7bdf6e5_1 + - libcurl=8.5.0=h4e8248e_0 + - libwebp=1.3.2=heb2ea1b_1 - m4rie=20150908=h75e8696_1001 - - markupsafe=2.1.3=py39h7cc1d5f_1 + - markupsafe=2.1.5=py39h7cc1d5f_0 - maxima=5.47.0=h6475f26_1 - - mistune=3.0.2=pyhd8ed1ab_0 - mpmath=1.3.0=pyhd8ed1ab_0 - munkres=1.1.4=pyh9f0ad1d_0 - - nest-asyncio=1.5.8=pyhd8ed1ab_0 + - nest-asyncio=1.6.0=pyhd8ed1ab_0 - networkx=3.2.1=pyhd8ed1ab_0 - openblas=0.3.25=pthreads_h339cbfa_0 - - openjpeg=2.5.0=h9508984_2 + - openjpeg=2.5.0=h0d9d63b_3 - packaging=23.2=pyhd8ed1ab_0 - - pandocfilters=1.5.0=pyhd8ed1ab_0 - parso=0.8.3=pyhd8ed1ab_0 - - pathspec=0.12.1=pyhd8ed1ab_0 - pickleshare=0.7.5=py_1003 - pkgconfig=1.5.5=pyhd8ed1ab_4 - - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 - - platformdirs=4.1.0=pyhd8ed1ab_0 - - pluggy=1.3.0=pyhd8ed1ab_0 - - ply=3.11=py_1 - - prometheus_client=0.19.0=pyhd8ed1ab_0 - - psutil=5.9.7=py39h898b7ef_0 + - platformdirs=4.2.0=pyhd8ed1ab_0 + - psutil=5.9.8=py39h898b7ef_0 - ptyprocess=0.7.0=pyhd3deb0d_0 - pure_eval=0.2.2=pyhd8ed1ab_0 - - py=1.11.0=pyh6c4a22f_0 - - pybind11-global=2.11.1=py39hd16970a_2 - - pycparser=2.21=pyhd8ed1ab_0 - pygments=2.17.2=pyhd8ed1ab_0 - pyparsing=3.1.1=pyhd8ed1ab_0 - - pyrsistent=0.20.0=py39h7cc1d5f_0 - pysocks=1.7.1=pyha2e5f31_6 - - python-fastjsonschema=2.19.0=pyhd8ed1ab_0 - - python-json-logger=2.0.7=pyhd8ed1ab_0 - - python-lrcalc=2.1=py39h3d8bfb9_5 - - python-tzdata=2023.3=pyhd8ed1ab_0 - - pytz=2023.3.post1=pyhd8ed1ab_0 - - pyyaml=6.0.1=py39h898b7ef_1 - pyzmq=25.1.2=py39hbab03a2_0 - - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.15.2=py39hfe8b3a4_0 - - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 - - sagetex=3.6.1=pyhd8ed1ab_0 - - send2trash=1.8.2=pyh41d4057_0 - - setuptools=68.2.2=pyhd8ed1ab_0 - - simplegeneric=0.8.1=py_1 + - setuptools=69.1.0=pyhd8ed1ab_1 - singular=4.3.2.p8=hbe76a8a_1 - six=1.16.0=pyh6c4a22f_0 - - sniffio=1.3.0=pyhd8ed1ab_0 - - snowballstemmer=2.2.0=pyhd8ed1ab_0 - - soupsieve=2.5=pyhd8ed1ab_1 - - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_0 - sympow=2.023.6=h157afb5_3 - - tbb=2021.9.0=h4c384f3_0 - tomli=2.0.1=pyhd8ed1ab_0 - - tornado=6.3.3=py39h7cc1d5f_1 - - traitlets=5.14.0=pyhd8ed1ab_0 - - trove-classifiers=2023.11.29=pyhd8ed1ab_0 - - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 + - tornado=6.4=py39h7cc1d5f_0 + - traitlets=5.14.1=pyhd8ed1ab_0 - typing_extensions=4.9.0=pyha770c72_0 - - typing_utils=0.1.0=pyhd8ed1ab_0 - - tzlocal=5.2=py39h4420490_0 - unicodedata2=15.1.0=py39h898b7ef_0 - - uri-template=1.3.0=pyhd8ed1ab_0 - - wcwidth=0.2.12=pyhd8ed1ab_0 - - webcolors=1.13=pyhd8ed1ab_0 - - webencodings=0.5.1=pyhd8ed1ab_2 - - websocket-client=1.7.0=pyhd8ed1ab_0 + - wcwidth=0.2.13=pyhd8ed1ab_0 - wheel=0.42.0=pyhd8ed1ab_0 - - widgetsnbextension=4.0.9=pyhd8ed1ab_0 - - xorg-libxext=1.3.4=h2a766a3_2 - - xorg-libxfixes=5.0.3=h3557bc0_1004 - - xorg-libxrender=0.9.10=h3557bc0_1003 - - xorg-libxt=1.3.0=h7935292_0 + - widgetsnbextension=4.0.10=pyhd8ed1ab_0 - zipp=3.17.0=pyhd8ed1ab_0 - - anyio=4.2.0=pyhd8ed1ab_0 - asttokens=2.4.1=pyhd8ed1ab_0 - - async-lru=2.0.4=pyhd8ed1ab_0 - - babel=2.14.0=pyhd8ed1ab_0 - - beautifulsoup4=4.12.2=pyha770c72_0 - - beniget=0.4.1=pyhd8ed1ab_0 - - bleach=6.1.0=pyhd8ed1ab_0 + - boost-cpp=1.84.0=ha990451_1 - brial=1.2.12=pyh694c41f_1 - - cached-property=1.5.2=hd8ed1ab_1 - - cairo=1.16.0=hd19fb6e_1014 - - cffi=1.16.0=py39hdf53b9e_0 - - cmake=3.26.4=hef020d8_0 - - comm=0.1.4=pyhd8ed1ab_0 - - cppy=1.2.1=pyhd8ed1ab_0 - - curl=8.1.2=hc34909b_0 + - comm=0.2.1=pyhd8ed1ab_0 - cxx-compiler=1.6.0=h2a328a1_0 - - cypari2=2.1.3=py39h532d932_2 - - deprecation=2.1.0=pyh9f0ad1d_0 - - fonttools=4.47.0=py39h898b7ef_0 - - fortran-compiler=1.6.0=h7048d53_0 - - importlib-metadata=7.0.0=pyha770c72_0 + - cypari2=2.1.4=py39h532d932_2 + - fonttools=4.49.0=py39h898b7ef_0 + - importlib-metadata=7.0.1=pyha770c72_0 - importlib_resources=6.1.1=pyhd8ed1ab_0 - jedi=0.19.1=pyhd8ed1ab_0 - - jinja2=3.1.2=pyhd8ed1ab_1 - - jupyter_core=5.5.1=py39h4420490_0 - - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 + - jinja2=3.1.3=pyhd8ed1ab_0 + - jupyter_core=5.7.1=py39h4420490_0 - libcblas=3.9.0=20_linuxaarch64_openblas - - libgd=2.3.3=h99c6b3b_4 + - libgd=2.3.3=hcd22fd5_9 - liblapack=3.9.0=20_linuxaarch64_openblas - matplotlib-inline=0.1.6=pyhd8ed1ab_0 - memory-allocator=0.1.3=py39h898b7ef_0 - - overrides=7.4.0=pyhd8ed1ab_0 - - pexpect=4.8.0=pyh1a96a4e_2 - - pillow=9.4.0=py39h72365ce_1 - - pip=23.3.2=pyhd8ed1ab_0 + - meson=1.3.2=pyhd8ed1ab_0 + - pexpect=4.9.0=pyhd8ed1ab_0 + - pillow=10.2.0=py39h8ce38d7_0 + - pip=24.0=pyhd8ed1ab_0 - pplpy=0.8.9=py39h087fc0e_0 - primecountpy=0.1.0=py39hd16970a_3 - prompt-toolkit=3.0.42=pyha770c72_0 - - pybind11=2.11.1=py39hd16970a_2 - - pyproject-api=1.6.1=pyhd8ed1ab_0 + - pyproject-metadata=0.7.1=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - - pytz-deprecation-shim=0.1.0.post0=py39h4420490_4 - - referencing=0.32.0=pyhd8ed1ab_0 - - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - sympy=1.12=pypyh9d50eac_103 - - terminado=0.18.0=pyh0d859eb_0 - - tinycss2=1.2.1=pyhd8ed1ab_0 - - typing-extensions=4.9.0=hd8ed1ab_0 - - urllib3=2.1.0=pyhd8ed1ab_0 - - virtualenv=20.25.0=pyhd8ed1ab_0 - - xorg-libxi=1.7.10=h3557bc0_0 - - argon2-cffi-bindings=21.2.0=py39h898b7ef_4 - - arpack=3.7.0=hf862f49_2 - - arrow=1.3.0=pyhd8ed1ab_0 - - compilers=1.6.0=h8af1aa0_0 - - dsdp=5.8=hb12102e_1203 + - urllib3=2.2.1=pyhd8ed1ab_0 + - arpack=3.8.0=nompi_h32ff4ca_101 - fflas-ffpack=2.4.3=hf104d39_2 - - fqdn=1.5.1=pyhd8ed1ab_0 - gsl=2.7=h294027d_0 - - harfbuzz=6.0.0=hbcb8a4f_0 - - hatchling=1.21.0=pyhd8ed1ab_0 - iml=1.0.5=h9076c59_1003 - importlib-resources=6.1.1=pyhd8ed1ab_0 - - importlib_metadata=7.0.0=hd8ed1ab_0 - - jsonschema-specifications=2023.11.2=pyhd8ed1ab_0 - - jupyter_server_terminals=0.5.0=pyhd8ed1ab_0 + - importlib_metadata=7.0.1=hd8ed1ab_0 - liblapacke=3.9.0=20_linuxaarch64_openblas - - numpy=1.26.2=py39h91c28bb_0 - - prompt_toolkit=3.0.42=hd8ed1ab_0 + - meson-python=0.15.0=pyh0c530f3_0 + - numpy=1.26.4=py39h91c28bb_0 - requests=2.31.0=pyhd8ed1ab_0 - - setuptools-scm=8.0.4=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 - - suitesparse=5.10.1=h1404dd6_1 - - xorg-libxtst=1.2.3=hf897c2e_1002 - - argon2-cffi=23.1.0=pyhd8ed1ab_0 - blas-devel=3.9.0=20_linuxaarch64_openblas - contourpy=1.2.0=py39hd16970a_0 - - cvxopt=1.3.2=py39h9d7d0b6_1 - - fpylll=0.6.0=py39h97065f7_1 + - fpylll=0.6.1=py39h97065f7_0 - giac=1.9.0.21=h04922a4_1 - - igraph=0.9.10=hefb87a8_1 + - igraph=0.10.10=hcfae7ab_0 - ipython=8.18.1=pyh707e725_3 - - isoduration=20.11.0=pyhd8ed1ab_0 - - jsonschema=4.20.0=pyhd8ed1ab_0 - jupyter_client=8.6.0=pyhd8ed1ab_0 - linbox=1.6.3=h681a5ee_8 - - openjdk=17.0.3=h1a274e0_5 - - pango=1.50.14=h1f1e9b3_0 - - pythran=0.14.0=py39hc2250db_1 - scipy=1.11.3=py39h91c28bb_1 - - setuptools_scm=8.0.4=hd8ed1ab_0 - - tox=4.11.4=pyhd8ed1ab_0 - blas=2.120=openblas - - ipykernel=6.26.0=pyhf8b6a83_0 - - ipywidgets=8.1.1=pyhd8ed1ab_0 - - jmol=14.32.10=h8af1aa0_0 - - jsonschema-with-format-nongpl=4.20.0=pyhd8ed1ab_0 - - matplotlib-base=3.8.2=py39h8e43113_0 - - nbformat=5.9.2=pyhd8ed1ab_0 - - r-base=4.2.3=h620ca72_0 - - rw=0.9=hf897c2e_0 - - ipympl=0.9.3=pyhd8ed1ab_0 - - jupyter-jsmol=2022.1.0=pyhd8ed1ab_0 - - jupyter_events=0.9.0=pyhd8ed1ab_0 - - matplotlib=3.8.2=py39ha65689a_0 - - nbclient=0.8.0=pyhd8ed1ab_0 - - rpy2=3.5.11=py39r42h1ae4408_3 - - nbconvert-core=7.13.0=pyhd8ed1ab_0 - - jupyter_server=2.12.1=pyhd8ed1ab_0 - - nbconvert-pandoc=7.13.0=pyhd8ed1ab_0 - - jupyter-lsp=2.2.1=pyhd8ed1ab_0 - - jupyterlab_server=2.25.2=pyhd8ed1ab_0 - - nbconvert=7.13.0=pyhd8ed1ab_0 - - notebook-shim=0.2.3=pyhd8ed1ab_0 - - jupyterlab=4.0.9=pyhd8ed1ab_0 - - notebook=7.0.6=pyhd8ed1ab_0 - - jupyter_sphinx=0.1.4=py_0 - - sphinx-basic-ng=1.0.0b2=pyhd8ed1ab_1 - - furo=2023.9.10=pyhd8ed1ab_0 - - sphinx-copybutton=0.5.2=pyhd8ed1ab_0 - - sphinxcontrib-applehelp=1.0.7=pyhd8ed1ab_0 - - sphinxcontrib-devhelp=1.0.5=pyhd8ed1ab_0 - - sphinxcontrib-htmlhelp=2.0.4=pyhd8ed1ab_0 - - sphinxcontrib-qthelp=1.0.6=pyhd8ed1ab_0 - - sphinx=7.2.6=pyhd8ed1ab_0 - - sphinxcontrib-serializinghtml=1.1.9=pyhd8ed1ab_0 - - sphinxcontrib-websupport=1.2.6=pyhd8ed1ab_0 + - ipykernel=6.29.2=pyhd33586a_0 + - ipywidgets=8.1.2=pyhd8ed1ab_0 + - matplotlib-base=3.8.3=py39h8e43113_0 + - rw=0.9=h31becfc_1 diff --git a/src/environment-3.9-linux.yml b/src/environment-3.9-linux.yml index 70d7997cd8a..b4e1adfc584 100644 --- a/src/environment-3.9-linux.yml +++ b/src/environment-3.9-linux.yml @@ -1,466 +1,240 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: cf46d2d682195a8c349346d85d02cb8a0a60e706951ffa7cfc2487f915d1f0e4 +# input_hash: 69d576d155ebf4e28f6193b3715f32af2523656f91914fc6f838338b64b3bf27 channels: - conda-forge dependencies: - _libgcc_mutex=0.1=conda_forge - - _r-mutex=1.0.1=anacondar_1 - - ca-certificates=2023.11.17=hbcca054_0 + - ca-certificates=2024.2.2=hbcca054_0 - font-ttf-dejavu-sans-mono=2.37=hab24e00_0 - font-ttf-inconsolata=3.000=h77eed37_0 - font-ttf-source-code-pro=2.038=h77eed37_0 - font-ttf-ubuntu=0.83=h77eed37_1 - - kernel-headers_linux-64=2.6.32=he073ed8_16 + - kernel-headers_linux-64=2.6.32=he073ed8_17 - ld_impl_linux-64=2.40=h41732ed_0 - - libboost-headers=1.84.0=ha770c72_0 - - libgcc-devel_linux-64=12.3.0=h8bca6fd_103 - - libstdcxx-devel_linux-64=12.3.0=h8bca6fd_103 - - libstdcxx-ng=13.2.0=h7e041cc_3 - - mathjax=3.2.2=ha770c72_0 + - libboost-headers=1.84.0=ha770c72_1 + - libgcc-devel_linux-64=12.3.0=h8bca6fd_105 + - libstdcxx-devel_linux-64=12.3.0=h8bca6fd_105 + - libstdcxx-ng=13.2.0=h7e041cc_5 - pari-elldata=0.0.20161017=0 - pari-galdata=0.0.20180411=0 - - pari-galpol=0.0.20180625=0 - pari-seadata-small=0.0.20090618=0 - python_abi=3.9=4_cp39 - - sagemath-db-combinatorial-designs=20140630=1 - - sagemath-db-graphs=20210214=hd8ed1ab_0 - - sagemath-db-polytopes=20170220=1 - - three.js=122=hd8ed1ab_2 - - tzdata=2023c=h71feb2d_0 + - tzdata=2024a=h0c530f3_0 - fonts-conda-forge=1=0 - - libgomp=13.2.0=h807b86a_3 + - libgomp=13.2.0=h807b86a_5 - pari-seadata=0.0.20090618=0 - - sysroot_linux-64=2.12=he073ed8_16 - - threejs-sage=122=hd8ed1ab_2 + - sysroot_linux-64=2.12=he073ed8_17 - binutils_impl_linux-64=2.40=hf600244_0 - fonts-conda-ecosystem=1=0 - binutils=2.40=hdd6e379_0 - binutils_linux-64=2.40=hbdbef99_2 - _openmp_mutex=4.5=2_kmp_llvm - - libgcc-ng=13.2.0=h807b86a_3 - - alsa-lib=1.2.10=hd590300_0 - - attr=2.5.1=h166bdaf_1 - - bc=1.07.1=h7f98852_0 + - libgcc-ng=13.2.0=h807b86a_5 - bdw-gc=8.0.6=h4bd325d_0 - bzip2=1.0.8=hd590300_5 - - c-ares=1.24.0=hd590300_0 + - c-ares=1.27.0=hd590300_0 - cliquer=1.22=h36c2ea0_0 - - fribidi=1.0.10=h36c2ea0_0 - - gengetopt=2.23=h9c3ff4c_0 - - gettext=0.21.1=h27087fc_0 - gf2x=1.3.0=ha476b99_2 - giflib=5.2.1=h0b41bf4_3 - gmp=6.3.0=h59595ed_0 - - graphite2=1.3.13=h58526e2_1001 - icu=73.2=h59595ed_0 - keyutils=1.6.1=h166bdaf_0 - - lame=3.100=h166bdaf_1003 - lerc=4.0.0=h27087fc_0 - - libatomic_ops=7.6.14=h166bdaf_0 - libbraiding=1.2=hcb278e6_0 - libbrotlicommon=1.1.0=hd590300_1 - libdeflate=1.19=hd590300_0 - libev=4.33=hd590300_2 - libexpat=2.5.0=hcb278e6_1 - libffi=3.4.2=h7f98852_5 - - libgfortran5=13.2.0=ha4646dd_3 + - libgfortran5=13.2.0=ha4646dd_5 - libiconv=1.17=hd590300_2 - libjpeg-turbo=3.0.0=hd590300_1 - libnsl=2.0.1=hd590300_0 - - libogg=1.3.4=h7f98852_1 - - libopus=1.3.1=h7f98852_1 - - libsanitizer=12.3.0=h0f45ef3_3 + - libsanitizer=12.3.0=h0f45ef3_5 - libsodium=1.0.18=h36c2ea0_1 - - libtool=2.4.7=h27087fc_0 - libuuid=2.38.1=h0b41bf4_0 - - libuv=1.46.0=hd590300_0 - libwebp-base=1.3.2=hd590300_0 + - libxcrypt=4.4.36=hd590300_1 - libzlib=1.2.13=hd590300_5 - - lrcalc=2.1=h27087fc_5 - - lz4-c=1.9.4=hcb278e6_0 - - m4=1.4.18=h516909a_1001 - - make=4.3=hd18ef5c_1 - - metis=5.1.1=h59595ed_2 - - mpg123=1.32.3=h59595ed_0 - - nauty=2.8.8=hd590300_0 + - lrcalc=2.1=h59595ed_6 + - nauty=2.8.8=hd590300_1 - ncurses=6.4=h59595ed_2 - ninja=1.11.1=h924138e_0 - - nspr=4.35=h27087fc_0 - - openssl=3.2.0=hd590300_1 + - openssl=3.2.1=hd590300_0 - palp=2.20=h36c2ea0_0 - - patch=2.7.6=h7f98852_1002 - - pixman=0.42.2=h59595ed_0 - pkg-config=0.29.2=h36c2ea0_1008 - planarity=3.0.0.5=h36c2ea0_1002 - primesieve=11.1=h59595ed_0 - pthread-stubs=0.4=h36c2ea0_1001 - qhull=2020.2=h4bd325d_2 - - rhash=1.4.4=hd590300_0 - - sed=4.8=he412f7d_0 - symmetrica=3.0.1=hcb278e6_0 - - xorg-inputproto=2.3.2=h7f98852_1002 - - xorg-kbproto=1.0.7=h7f98852_1002 - - xorg-libice=1.1.1=hd590300_0 - xorg-libxau=1.0.11=hd590300_0 - xorg-libxdmcp=1.1.3=h7f98852_0 - - xorg-recordproto=1.14.2=h7f98852_1002 - - xorg-renderproto=0.11.1=h7f98852_1002 - - xorg-xextproto=7.3.0=h0b41bf4_1003 - - xorg-xf86vidmodeproto=2.3.1=h7f98852_1002 - - xorg-xproto=7.0.31=h7f98852_1007 - xz=5.2.6=h166bdaf_0 - - yaml=0.2.5=h7f98852_2 - cddlib=1!0.94m=h9202a9a_0 - ecm=7.0.4=h9202a9a_1002 - expat=2.5.0=hcb278e6_1 - - gcc_impl_linux-64=12.3.0=he2b93b0_3 + - gcc_impl_linux-64=12.3.0=he2b93b0_5 - givaro=4.1.1=h192cbe9_1 - glpk=5.0=h445213a_0 - libbrotlidec=1.1.0=hd590300_1 - libbrotlienc=1.1.0=hd590300_1 - - libcap=2.69=h0f662aa_0 - libedit=3.1.20191231=he28a2e2_2 - - libevent=2.1.12=hf998b51_1 - - libflac=1.4.3=h59595ed_0 - - libgfortran-ng=13.2.0=h69a702a_3 - - libgpg-error=1.47=h71f35ed_0 + - libgfortran-ng=13.2.0=h69a702a_5 - libhomfly=1.02r6=h36c2ea0_0 - libnghttp2=1.58.0=h47da74e_1 - - libpng=1.6.39=h753d276_0 - - libsqlite=3.44.2=h2797004_0 + - libpng=1.6.42=h2797004_0 + - libsqlite=3.45.1=h2797004_0 - libssh2=1.11.0=h0841786_0 - - libvorbis=1.3.7=h9c3ff4c_0 - libxcb=1.15=h0b41bf4_0 - - libxml2=2.11.6=h232c23b_0 + - libxml2=2.12.5=h232c23b_0 - mpfr=4.2.1=h9458935_0 - - mysql-common=8.0.33=hf1915f5_6 - ntl=11.4.3=hef3c4d3_1 - - pcre2=10.42=hcad00b1_0 - - perl=5.32.1=4_hd590300_perl5 + - perl=5.32.1=7_hd590300_perl5 - primecount=7.9=hcb278e6_0 - readline=8.2=h8228510_1 - - tar=1.34=hb2e2bae_1 - tk=8.6.13=noxft_h4845f30_101 - - xorg-fixesproto=5.0=h7f98852_1002 - - xorg-libsm=1.2.4=h7391055_0 - zeromq=4.3.5=h59595ed_0 - zlib=1.2.13=hd590300_5 - zstd=1.5.5=hfc55251_0 - - autoconf=2.71=pl5321h2b4cb7a_1 - brotli-bin=1.1.0=hd590300_1 - - bwidget=1.9.14=ha770c72_1 - ecl=21.2.1=h9d73b02_2 - - fftw=3.3.10=nompi_hc118613_108 - freetype=2.12.1=h267a509_2 - gap-core=4.12.2=he9a28a4_3 - gcc=12.3.0=h8d2909c_2 - gcc_linux-64=12.3.0=h76fc315_2 - gfan=0.6.2=hb86e20a_1003 - - gfortran_impl_linux-64=12.3.0=hfcedea8_3 - - gxx_impl_linux-64=12.3.0=he2b93b0_3 + - gxx_impl_linux-64=12.3.0=he2b93b0_5 - krb5=1.21.2=h659d440_0 - - libboost=1.84.0=h6fcfa73_0 + - libboost=1.84.0=h8013b2b_1 - libflint=3.0.1=h5f2e117_ntl_100 - - libgcrypt=1.10.3=hd590300_0 - - libglib=2.78.3=h783c2da_0 - - libhwloc=2.9.3=default_h554bfaf_1009 - - libllvm15=15.0.7=h5cf9203_3 - libopenblas=0.3.25=pthreads_h413a1c8_0 - - libsndfile=1.2.2=hc60ed4a_1 - libtiff=4.6.0=ha9c0a0a_2 - llvm-openmp=17.0.6=h4dfa4b3_0 - m4ri=20140914=h7ca028e_1005 - mpc=1.3.1=hfe3b2da_0 - mpfi=1.5.4=h9f54685_1001 - - mysql-libs=8.0.33=hca2cd23_6 - - nss=3.96=h1d7d5a4_0 - - pandoc=3.1.3=h32600fe_0 - pari=2.15.4=h4d4ae9b_2_pthread - ppl=1.2=h6ec01c2_1006 - - python=3.9.18=h0755675_0_cpython + - python=3.9.18=h0755675_1_cpython - qd=2.3.22=h2cc385e_1004 - - sqlite=3.44.2=h2c6b66d_0 - - tachyon=0.99b6=0 - - texinfo=7.0=pl5321h0f457ee_0 - - tktable=2.10=h0c5db8f_5 - - xcb-util=0.4.0=hd590300_1 - - xcb-util-keysyms=0.4.0=h8ee46fc_1 - - xcb-util-renderutil=0.3.9=hd590300_1 - - xcb-util-wm=0.4.1=h8ee46fc_1 - - xorg-libx11=1.8.7=h8ee46fc_0 - - alabaster=0.7.13=pyhd8ed1ab_0 - - appdirs=1.4.4=pyh9f0ad1d_0 - - appnope=0.1.3=pyhd8ed1ab_0 - - attrs=23.1.0=pyh71513ae_1 - - automake=1.16.5=pl5321ha770c72_0 - brotli=1.1.0=hd590300_1 - brotli-python=1.1.0=py39h3d6467e_1 - c-compiler=1.6.0=hd590300_0 - - cached_property=1.5.2=pyha770c72_1 - - cachetools=5.3.2=pyhd8ed1ab_0 - - certifi=2023.11.17=pyhd8ed1ab_0 - - chardet=5.2.0=py39hf3d152e_1 + - certifi=2024.2.2=pyhd8ed1ab_0 - charset-normalizer=3.3.2=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_0 - - conway-polynomials=0.8=pyhd8ed1ab_0 + - conway-polynomials=0.9=pyhd8ed1ab_0 - cycler=0.12.1=pyhd8ed1ab_0 - cysignals=1.11.2=py39h1ce0973_3 - - cython=3.0.7=py39h3d6467e_0 - - dbus=1.13.6=h5008d03_3 - - debugpy=1.8.0=py39h3d6467e_1 + - cython=3.0.8=py39h3d6467e_0 + - debugpy=1.8.1=py39h3d6467e_0 - decorator=5.1.1=pyhd8ed1ab_0 - - defusedxml=0.7.1=pyhd8ed1ab_0 - - distlib=0.3.8=pyhd8ed1ab_0 - - docutils=0.20.1=py39hf3d152e_3 - - eclib=20231211=h96f522a_0 - - editables=0.3=pyhd8ed1ab_0 - - entrypoints=0.4=pyhd8ed1ab_0 - - exceptiongroup=1.2.0=pyhd8ed1ab_0 + - eclib=20231212=h96f522a_0 + - exceptiongroup=1.2.0=pyhd8ed1ab_2 - executing=2.0.1=pyhd8ed1ab_0 - - filelock=3.13.1=pyhd8ed1ab_0 - - flit-core=3.9.0=pyhd8ed1ab_0 - fontconfig=2.14.2=h14ed4e7_0 - fplll=5.4.5=h384768b_0 - gap-defaults=4.12.2=ha770c72_3 - - gast=0.5.4=pyhd8ed1ab_0 - - gfortran=12.3.0=h499e0f7_2 - - gfortran_linux-64=12.3.0=h7fe76b4_2 - - glib-tools=2.78.3=hfc55251_0 - gmpy2=2.1.2=py39h376b7d2_1 - gxx=12.3.0=h8d2909c_2 - gxx_linux-64=12.3.0=h8a814eb_2 - idna=3.6=pyhd8ed1ab_0 - - imagesize=1.4.1=pyhd8ed1ab_0 - - ipython_genutils=0.2.0=py_1 - - json5=0.9.14=pyhd8ed1ab_0 - - jsonpointer=2.4=py39hf3d152e_3 - - jupyterlab_widgets=3.0.9=pyhd8ed1ab_0 + - jupyterlab_widgets=3.0.10=pyhd8ed1ab_0 - kiwisolver=1.4.5=py39h7633fee_1 - lcalc=2.0.5=h6a8a7c6_1 - lcms2=2.16=hb7c19ff_0 - libblas=3.9.0=20_linux64_openblas - - libboost-devel=1.84.0=h00ab1b0_0 + - libboost-devel=1.84.0=h00ab1b0_1 - libbrial=1.2.12=h3155cbd_1 - - libclang13=15.0.7=default_ha2b6cf4_4 - - libcups=2.3.3=h4637d8d_4 - libcurl=8.5.0=hca28451_0 - - libpq=16.1=h33b98f1_7 - - libsystemd0=255=h3516f8a_0 - libwebp=1.3.2=h658648e_1 - m4rie=20150908=h7ca028e_1001 - - markupsafe=2.1.3=py39hd1e30aa_1 + - markupsafe=2.1.5=py39hd1e30aa_0 - maxima=5.47.0=hed6455c_1 - - mistune=3.0.2=pyhd8ed1ab_0 - mpmath=1.3.0=pyhd8ed1ab_0 - munkres=1.1.4=pyh9f0ad1d_0 - - nest-asyncio=1.5.8=pyhd8ed1ab_0 + - nest-asyncio=1.6.0=pyhd8ed1ab_0 - networkx=3.2.1=pyhd8ed1ab_0 - openblas=0.3.25=pthreads_h7a3da1a_0 - openjpeg=2.5.0=h488ebb8_3 - packaging=23.2=pyhd8ed1ab_0 - - pandocfilters=1.5.0=pyhd8ed1ab_0 - parso=0.8.3=pyhd8ed1ab_0 - - pathspec=0.12.1=pyhd8ed1ab_0 - pickleshare=0.7.5=py_1003 - pkgconfig=1.5.5=pyhd8ed1ab_4 - - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 - - platformdirs=4.1.0=pyhd8ed1ab_0 - - pluggy=1.3.0=pyhd8ed1ab_0 - - ply=3.11=py_1 - - prometheus_client=0.19.0=pyhd8ed1ab_0 - - psutil=5.9.7=py39hd1e30aa_0 + - platformdirs=4.2.0=pyhd8ed1ab_0 + - psutil=5.9.8=py39hd1e30aa_0 - ptyprocess=0.7.0=pyhd3deb0d_0 - pure_eval=0.2.2=pyhd8ed1ab_0 - - py=1.11.0=pyh6c4a22f_0 - - pybind11-global=2.11.1=py39h7633fee_2 - - pycparser=2.21=pyhd8ed1ab_0 - pygments=2.17.2=pyhd8ed1ab_0 - pyparsing=3.1.1=pyhd8ed1ab_0 - - pyrsistent=0.20.0=py39hd1e30aa_0 - pysocks=1.7.1=pyha2e5f31_6 - - python-fastjsonschema=2.19.0=pyhd8ed1ab_0 - - python-json-logger=2.0.7=pyhd8ed1ab_0 - - python-lrcalc=2.1=py39h5a03fae_5 - - python-tzdata=2023.3=pyhd8ed1ab_0 - - pytz=2023.3.post1=pyhd8ed1ab_0 - - pyyaml=6.0.1=py39hd1e30aa_1 - pyzmq=25.1.2=py39h8c080ef_0 - - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.15.2=py39h9fdd4d6_0 - - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 - - sagetex=3.6.1=pyhd8ed1ab_0 - - send2trash=1.8.2=pyh41d4057_0 - - setuptools=68.2.2=pyhd8ed1ab_0 - - simplegeneric=0.8.1=py_1 + - setuptools=69.1.0=pyhd8ed1ab_1 - singular=4.3.2.p8=h33f5c3f_1 - six=1.16.0=pyh6c4a22f_0 - - sniffio=1.3.0=pyhd8ed1ab_0 - - snowballstemmer=2.2.0=pyhd8ed1ab_0 - - soupsieve=2.5=pyhd8ed1ab_1 - - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_0 - sympow=2.023.6=hc6ab17c_3 - - tbb=2021.11.0=h00ab1b0_0 - - toml=0.10.2=pyhd8ed1ab_0 - tomli=2.0.1=pyhd8ed1ab_0 - - tornado=6.3.3=py39hd1e30aa_1 - - traitlets=5.14.0=pyhd8ed1ab_0 - - trove-classifiers=2023.11.29=pyhd8ed1ab_0 - - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 + - tornado=6.4=py39hd1e30aa_0 + - traitlets=5.14.1=pyhd8ed1ab_0 - typing_extensions=4.9.0=pyha770c72_0 - - typing_utils=0.1.0=pyhd8ed1ab_0 - - tzlocal=5.2=py39hf3d152e_0 - unicodedata2=15.1.0=py39hd1e30aa_0 - - uri-template=1.3.0=pyhd8ed1ab_0 - - wcwidth=0.2.12=pyhd8ed1ab_0 - - webcolors=1.13=pyhd8ed1ab_0 - - webencodings=0.5.1=pyhd8ed1ab_2 - - websocket-client=1.7.0=pyhd8ed1ab_0 + - wcwidth=0.2.13=pyhd8ed1ab_0 - wheel=0.42.0=pyhd8ed1ab_0 - - widgetsnbextension=4.0.9=pyhd8ed1ab_0 - - xcb-util-image=0.4.0=h8ee46fc_1 - - xkeyboard-config=2.40=hd590300_0 - - xorg-libxext=1.3.4=h0b41bf4_2 - - xorg-libxfixes=5.0.3=h7f98852_1004 - - xorg-libxrender=0.9.11=hd590300_0 - - xorg-libxt=1.3.0=hd590300_1 + - widgetsnbextension=4.0.10=pyhd8ed1ab_0 - zipp=3.17.0=pyhd8ed1ab_0 - - anyio=4.2.0=pyhd8ed1ab_0 - asttokens=2.4.1=pyhd8ed1ab_0 - - async-lru=2.0.4=pyhd8ed1ab_0 - - babel=2.14.0=pyhd8ed1ab_0 - - beautifulsoup4=4.12.2=pyha770c72_0 - - beniget=0.4.1=pyhd8ed1ab_0 - - bleach=6.1.0=pyhd8ed1ab_0 - - boost-cpp=1.84.0=h44aadfe_0 + - boost-cpp=1.84.0=h44aadfe_1 - brial=1.2.12=pyh694c41f_1 - - cached-property=1.5.2=hd8ed1ab_1 - - cairo=1.18.0=h3faef2a_0 - - cffi=1.16.0=py39h7a31438_0 - - cmake=3.28.1=hcfe8598_0 - - comm=0.1.4=pyhd8ed1ab_0 - - cppy=1.2.1=pyhd8ed1ab_0 - - curl=8.5.0=hca28451_0 + - comm=0.2.1=pyhd8ed1ab_0 - cxx-compiler=1.6.0=h00ab1b0_0 - - cypari2=2.1.3=py39h1698a45_2 - - deprecation=2.1.0=pyh9f0ad1d_0 - - fonttools=4.47.0=py39hd1e30aa_0 - - fortran-compiler=1.6.0=heb67821_0 - - glib=2.78.3=hfc55251_0 - - importlib-metadata=7.0.0=pyha770c72_0 + - cypari2=2.1.4=py39h1698a45_2 + - fonttools=4.49.0=py39hd1e30aa_0 + - importlib-metadata=7.0.1=pyha770c72_0 - importlib_resources=6.1.1=pyhd8ed1ab_0 - jedi=0.19.1=pyhd8ed1ab_0 - - jinja2=3.1.2=pyhd8ed1ab_1 - - jupyter_core=5.5.1=py39hf3d152e_0 - - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 + - jinja2=3.1.3=pyhd8ed1ab_0 + - jupyter_core=5.7.1=py39hf3d152e_0 - libcblas=3.9.0=20_linux64_openblas - - libclang=15.0.7=default_hb11cfb5_4 - libgd=2.3.3=h119a65a_9 - liblapack=3.9.0=20_linux64_openblas - - libxkbcommon=1.6.0=h5d7e998_0 - matplotlib-inline=0.1.6=pyhd8ed1ab_0 - memory-allocator=0.1.3=py39hd1e30aa_0 - - overrides=7.4.0=pyhd8ed1ab_0 - - pexpect=4.8.0=pyh1a96a4e_2 - - pillow=10.1.0=py39had0adad_0 - - pip=23.3.2=pyhd8ed1ab_0 + - meson=1.3.2=pyhd8ed1ab_0 + - pexpect=4.9.0=pyhd8ed1ab_0 + - pillow=10.2.0=py39had0adad_0 + - pip=24.0=pyhd8ed1ab_0 - pplpy=0.8.9=py39hba3e9e5_0 - primecountpy=0.1.0=py39h7633fee_4 - prompt-toolkit=3.0.42=pyha770c72_0 - - pulseaudio-client=16.1=hb77b528_5 - - pybind11=2.11.1=py39h7633fee_2 - - pyproject-api=1.6.1=pyhd8ed1ab_0 + - pyproject-metadata=0.7.1=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - - pytz-deprecation-shim=0.1.0.post0=py39hf3d152e_4 - - referencing=0.32.0=pyhd8ed1ab_0 - - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - - sip=6.7.12=py39h3d6467e_0 - sympy=1.12=pypyh9d50eac_103 - - terminado=0.18.0=pyh0d859eb_0 - - tinycss2=1.2.1=pyhd8ed1ab_0 - - typing-extensions=4.9.0=hd8ed1ab_0 - - urllib3=2.1.0=pyhd8ed1ab_0 - - virtualenv=20.25.0=pyhd8ed1ab_0 - - xorg-libxi=1.7.10=h7f98852_0 - - argon2-cffi-bindings=21.2.0=py39hd1e30aa_4 + - urllib3=2.2.1=pyhd8ed1ab_0 - arpack=3.8.0=nompi_h0baa96a_101 - - arrow=1.3.0=pyhd8ed1ab_0 - - compilers=1.6.0=ha770c72_0 - - dsdp=5.8=hd9d9efa_1203 - fflas-ffpack=2.4.3=h912ac81_2 - - fqdn=1.5.1=pyhd8ed1ab_0 - gsl=2.7=he838d99_0 - - gstreamer=1.22.8=h98fc4e7_0 - - harfbuzz=8.3.0=h3d44ed6_0 - - hatchling=1.21.0=pyhd8ed1ab_0 - iml=1.0.5=hd75c201_1003 - importlib-resources=6.1.1=pyhd8ed1ab_0 - - importlib_metadata=7.0.0=hd8ed1ab_0 - - jsonschema-specifications=2023.11.2=pyhd8ed1ab_0 - - jupyter_server_terminals=0.5.0=pyhd8ed1ab_0 + - importlib_metadata=7.0.1=hd8ed1ab_0 - liblapacke=3.9.0=20_linux64_openblas - - numpy=1.26.2=py39h474f0d3_0 - - prompt_toolkit=3.0.42=hd8ed1ab_0 - - pyqt5-sip=12.12.2=py39h3d6467e_5 + - meson-python=0.15.0=pyh0c530f3_0 + - numpy=1.26.4=py39h474f0d3_0 - requests=2.31.0=pyhd8ed1ab_0 - - setuptools-scm=8.0.4=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 - - suitesparse=5.10.1=h3ec001c_2 - - xorg-libxtst=1.2.3=h7f98852_1002 - - argon2-cffi=23.1.0=pyhd8ed1ab_0 - blas-devel=3.9.0=20_linux64_openblas - contourpy=1.2.0=py39h7633fee_0 - - cvxopt=1.3.2=py39hef4d4b4_1 - - fpylll=0.6.0=py39h2525e16_1 + - fpylll=0.6.1=py39h2525e16_0 - giac=1.9.0.21=h673759e_1 - - gst-plugins-base=1.22.8=h8e1006c_0 - - igraph=0.10.8=h66a01bf_0 + - igraph=0.10.10=h153f77b_0 - ipython=8.18.1=pyh707e725_3 - - isoduration=20.11.0=pyhd8ed1ab_0 - - jsonschema=4.20.0=pyhd8ed1ab_0 - jupyter_client=8.6.0=pyhd8ed1ab_0 - linbox=1.6.3=ha329b40_8 - - openjdk=21.0.1=haa376d0_0 - - pango=1.50.14=ha41ecd1_2 - - pythran=0.14.0=py39hda80f44_1 - scipy=1.11.4=py39h474f0d3_0 - - setuptools_scm=8.0.4=hd8ed1ab_0 - - tox=4.11.4=pyhd8ed1ab_0 - blas=2.120=openblas - - ipykernel=6.26.0=pyhf8b6a83_0 - - ipywidgets=8.1.1=pyhd8ed1ab_0 - - jmol=14.32.10=ha770c72_0 - - jsonschema-with-format-nongpl=4.20.0=pyhd8ed1ab_0 - - matplotlib-base=3.8.2=py39he9076e7_0 - - nbformat=5.9.2=pyhd8ed1ab_0 - - qt-main=5.15.8=h82b777d_17 - - r-base=4.3.2=hb8ee39d_1 + - ipykernel=6.29.2=pyhd33586a_0 + - ipywidgets=8.1.2=pyhd8ed1ab_0 + - matplotlib-base=3.8.3=py39he9076e7_0 - rw=0.9=hd590300_1 - - ipympl=0.9.3=pyhd8ed1ab_0 - - jupyter-jsmol=2022.1.0=pyhd8ed1ab_0 - - jupyter_events=0.9.0=pyhd8ed1ab_0 - - nbclient=0.8.0=pyhd8ed1ab_0 - - pyqt=5.15.9=py39h52134e7_5 - - rpy2=3.5.11=py39r43h44dd56e_3 - - matplotlib=3.8.2=py39hf3d152e_0 - - nbconvert-core=7.13.0=pyhd8ed1ab_0 - - jupyter_server=2.12.1=pyhd8ed1ab_0 - - nbconvert-pandoc=7.13.0=pyhd8ed1ab_0 - - jupyter-lsp=2.2.1=pyhd8ed1ab_0 - - jupyterlab_server=2.25.2=pyhd8ed1ab_0 - - nbconvert=7.13.0=pyhd8ed1ab_0 - - notebook-shim=0.2.3=pyhd8ed1ab_0 - - jupyterlab=4.0.9=pyhd8ed1ab_0 - - notebook=7.0.6=pyhd8ed1ab_0 - - jupyter_sphinx=0.4.0=py39hf3d152e_1 - - sphinx-basic-ng=1.0.0b2=pyhd8ed1ab_1 - - furo=2023.9.10=pyhd8ed1ab_0 - - sphinx-copybutton=0.5.2=pyhd8ed1ab_0 - - sphinxcontrib-applehelp=1.0.7=pyhd8ed1ab_0 - - sphinxcontrib-devhelp=1.0.5=pyhd8ed1ab_0 - - sphinxcontrib-htmlhelp=2.0.4=pyhd8ed1ab_0 - - sphinxcontrib-qthelp=1.0.6=pyhd8ed1ab_0 - - sphinx=7.2.6=pyhd8ed1ab_0 - - sphinxcontrib-serializinghtml=1.1.9=pyhd8ed1ab_0 - - sphinxcontrib-websupport=1.2.6=pyhd8ed1ab_0 diff --git a/src/environment-3.9-macos-arm64.yml b/src/environment-3.9-macos-arm64.yml index 6af744a1e51..ea08ad7cf87 100644 --- a/src/environment-3.9-macos-arm64.yml +++ b/src/environment-3.9-macos-arm64.yml @@ -1,402 +1,239 @@ # Generated by conda-lock. # platform: osx-arm64 -# input_hash: 3217982931fe463e0fc64378cd433a690e3db009dc5b1eb97f9e18a0bee0e75a +# input_hash: ebc1f0d23b29fad3374d5318c90643b4ee6b1dc741cb34f1d6d51f1be0019137 channels: - conda-forge dependencies: - - _r-mutex=1.0.1=anacondar_1 - - bc=1.07.1=h3422bc3_0 - bzip2=1.0.8=h93a5062_5 - - c-ares=1.24.0=h93a5062_0 - - ca-certificates=2023.11.17=hf0a4a13_0 + - c-ares=1.27.0=h93a5062_0 + - ca-certificates=2024.2.2=hf0a4a13_0 - cliquer=1.22=h27ca646_0 - font-ttf-dejavu-sans-mono=2.37=hab24e00_0 - font-ttf-inconsolata=3.000=h77eed37_0 - font-ttf-source-code-pro=2.038=h77eed37_0 - font-ttf-ubuntu=0.83=h77eed37_1 - - fribidi=1.0.10=h27ca646_0 - giflib=5.2.1=h1a8c8d9_3 - - jpeg=9e=h1a8c8d9_3 - - libatomic_ops=7.6.14=h1a8c8d9_0 + - icu=73.2=hc8870d7_0 + - libboost-headers=1.84.0=hce30654_1 - libbrotlicommon=1.1.0=hb547adb_1 - libcxx=16.0.6=h4653b0c_0 - - libdeflate=1.17=h1a8c8d9_0 + - libdeflate=1.19=hb547adb_0 - libev=4.33=h93a5062_2 - libexpat=2.5.0=hb7217d7_1 - libffi=3.4.2=h3422bc3_5 - - libgfortran-devel_osx-arm64=12.3.0=hc62be1c_1 - libiconv=1.17=h0d3ecfb_2 + - libjpeg-turbo=3.0.0=hb547adb_1 - libsodium=1.0.18=h27ca646_1 - - libtool=2.4.7=hb7217d7_0 - - libuv=1.46.0=hb547adb_0 - - libwebp-base=1.2.4=h1a8c8d9_0 + - libwebp-base=1.3.2=hb547adb_0 - libzlib=1.2.13=h53f4e23_5 - llvm-openmp=17.0.6=hcd81f8e_0 - - m4=1.4.18=h642e427_1001 - - make=4.3=he57ea6c_1 - - mathjax=3.2.2=hce30654_0 - - nauty=2.8.8=h93a5062_0 + - nauty=2.8.8=h93a5062_1 - palp=2.20=h27ca646_0 - - pandoc=3.1.3=hce30654_0 - pari-elldata=0.0.20161017=0 - pari-galdata=0.0.20180411=0 - - pari-galpol=0.0.20180625=0 - pari-seadata-small=0.0.20090618=0 - - patch=2.7.6=h27ca646_1002 - - perl=5.32.1=4_hf2054a2_perl5 + - perl=5.32.1=7_h4614cfb_perl5 - planarity=3.0.0.5=h27ca646_1002 - pthread-stubs=0.4=h27ca646_1001 - python_abi=3.9=4_cp39 - - rhash=1.4.3=hb547adb_2 - - sagemath-db-combinatorial-designs=20140630=1 - - sagemath-db-graphs=20210214=hd8ed1ab_0 - - sagemath-db-polytopes=20170220=1 - - tbb=2021.10.0=h1995070_2 - - three.js=122=hd8ed1ab_2 - - tzdata=2023c=h71feb2d_0 + - tzdata=2024a=h0c530f3_0 - xorg-libxau=1.0.11=hb547adb_0 - xorg-libxdmcp=1.1.3=h27ca646_0 - xz=5.2.6=h57fd34a_0 - - yaml=0.2.5=h3422bc3_2 - - autoconf=2.71=pl5321hcd07c0c_1 - bdw-gc=8.0.6=hc021e02_0 - expat=2.5.0=hb7217d7_1 - fonts-conda-forge=1=0 - - gengetopt=2.23=hbdafb3b_0 - gettext=0.21.1=h0186832_0 - gf2x=1.3.0=hdaa854c_2 - gmp=6.3.0=h965bd2d_0 - - graphite2=1.3.13=h9f76cd9_1001 - - icu=70.1=h6b3803e_0 - - isl=0.25=h9a09cb3_0 - lerc=4.0.0=h9a09cb3_0 - libbraiding=1.2=hb7217d7_0 - libbrotlidec=1.1.0=hb547adb_1 - libbrotlienc=1.1.0=hb547adb_1 - - libgfortran5=13.2.0=hf226fd6_1 - - libpng=1.6.39=h76d750c_0 - - libsqlite=3.44.2=h091b4b1_0 - - libxcb=1.13=h9b22ae9_1004 - - lrcalc=2.1=hb7217d7_5 - - metis=5.1.1=h965bd2d_2 + - libgfortran5=13.2.0=hf226fd6_3 + - libpng=1.6.42=h091b4b1_0 + - libsqlite=3.45.1=h091b4b1_0 + - libxcb=1.15=hf346824_0 + - libxml2=2.12.5=h0d0cfa8_0 + - lrcalc=2.1=hebf3989_6 - ncurses=6.4=h463b476_2 - ninja=1.11.1=hffc8910_0 - - openjdk=21.0.1=hed44d8b_0 - - openssl=3.2.0=h0d3ecfb_1 + - openssl=3.2.1=h0d3ecfb_0 - pari-seadata=0.0.20090618=0 - - pcre2=10.40=hb34f9b4_0 - - pixman=0.42.2=h13dd4ca_0 + - pcre2=10.42=h26f9a81_0 - primesieve=11.0=hb7217d7_0 - qhull=2020.2=hc021e02_2 - symmetrica=3.0.1=hb7217d7_0 - tapi=1100.0.11=he4954df_0 - - tar=1.34=h7cb298e_1 - - threejs-sage=122=hd8ed1ab_2 - tk=8.6.13=h5083fa2_1 - zeromq=4.3.5=h965bd2d_0 - zlib=1.2.13=h53f4e23_5 - zstd=1.5.5=h4f39d0f_0 - - automake=1.16.5=pl5321hce30654_0 - - boost-cpp=1.81.0=hf96b251_0 - brotli-bin=1.1.0=hb547adb_1 - - bwidget=1.9.14=hce30654_1 - cddlib=1!0.94m=h6d7a090_0 - ecm=7.0.4=h47c7c1a_1002 - fonts-conda-ecosystem=1=0 - freetype=2.12.1=hadb7bae_2 - givaro=4.1.1=h0cdca34_3 - glpk=5.0=h6d7a090_0 - - jmol=14.32.10=hce30654_0 + - libboost=1.84.0=h8e0f962_1 - libedit=3.1.20191231=hc8eb9b7_2 - - libgfortran=5.0.0=13_2_0_hd922786_1 - - libglib=2.78.1=hd9b11f9_0 + - libgfortran=5.0.0=13_2_0_hd922786_3 + - libglib=2.78.4=h1635a5e_0 - libhomfly=1.02r6=h27ca646_0 + - libllvm16=16.0.6=haab561b_3 - libnghttp2=1.58.0=ha4dd798_1 - libssh2=1.11.0=h7a5bd25_0 - - libtiff=4.5.0=h5dffbdd_2 - - libxml2=2.10.3=h67585b2_4 + - libtiff=4.6.0=ha8a6c65_2 - m4ri=20140914=h17b34a0_1005 - mpfr=4.2.1=h9546428_0 - ntl=11.4.3=hbb3f309_1 - primecount=7.6=hb6e4faa_0 - readline=8.2=h92ec313_1 - sigtool=0.1.3=h44b9a77_0 - - tachyon=0.99b6=hfb72b2a_1001 - - texinfo=7.0=pl5321h9ea1dce_0 - - tktable=2.10=hd996620_5 - brotli=1.1.0=hb547adb_1 - ecl=21.2.1=h8492d4d_2 - - fftw=3.3.10=nompi_h3046061_108 - fontconfig=2.14.2=h82840c6_0 - gap-core=4.12.2=he8f4e70_3 - gfan=0.6.2=hec08f5c_1003 - - krb5=1.20.1=h69eda48_0 - - lcms2=2.15=h481adae_0 + - krb5=1.21.2=h92f50d5_0 + - lcms2=2.16=ha0e7c42_0 + - ld64_osx-arm64=609=ha4bd21c_16 + - libboost-devel=1.84.0=hf450f58_1 - libbrial=1.2.12=ha7f5006_1 + - libclang-cpp16=16.0.6=default_he012953_5 - libflint=3.0.1=h28749a5_ntl_100 - - libllvm15=15.0.7=h62b9111_1 - libopenblas=0.3.25=openmp_h6c19121_0 - - libwebp=1.2.4=h999c80f_1 + - libwebp=1.3.2=hf30222e_1 + - llvm-tools=16.0.6=haab561b_3 - m4rie=20150908=h17b34a0_1001 - mpc=1.3.1=h91ba8db_0 - mpfi=1.5.4=hbde5f5b_1001 - - openjpeg=2.5.0=hbc2ba62_2 + - openjpeg=2.5.0=h4c1507b_3 - pari=2.15.4=haeeeed7_2_pthread - pkg-config=0.29.2=hab62308_1008 - ppl=1.2=h8b147cf_1006 - - python=3.9.18=hfa1ae8a_0_cpython + - python=3.9.18=hd7ebdb9_1_cpython - qd=2.3.22=hbec66e7_1004 - - sqlite=3.44.2=hf2abe2d_0 - - alabaster=0.7.13=pyhd8ed1ab_0 - - appdirs=1.4.4=pyh9f0ad1d_0 - - appnope=0.1.3=pyhd8ed1ab_0 - - attrs=23.1.0=pyh71513ae_1 + - appnope=0.1.4=pyhd8ed1ab_0 + - boost-cpp=1.84.0=hca5e981_1 - brial=1.2.12=pyh694c41f_1 - brotli-python=1.1.0=py39hb198ff7_1 - - cached_property=1.5.2=pyha770c72_1 - - cachetools=5.3.2=pyhd8ed1ab_0 - - cairo=1.16.0=h73a0509_1014 - - certifi=2023.11.17=pyhd8ed1ab_0 - - chardet=5.2.0=py39h2804cbe_1 + - cctools_osx-arm64=973.0.1=h62378fb_16 + - certifi=2024.2.2=pyhd8ed1ab_0 - charset-normalizer=3.3.2=pyhd8ed1ab_0 + - clang-16=16.0.6=default_he012953_5 - colorama=0.4.6=pyhd8ed1ab_0 - - conway-polynomials=0.8=pyhd8ed1ab_0 + - conway-polynomials=0.9=pyhd8ed1ab_0 - cycler=0.12.1=pyhd8ed1ab_0 - cysignals=1.11.2=py39h65fc70a_3 - - cython=3.0.7=py39hf3050f2_0 - - debugpy=1.8.0=py39hb198ff7_1 + - cython=3.0.8=py39hf3050f2_0 + - debugpy=1.8.1=py39hf3050f2_0 - decorator=5.1.1=pyhd8ed1ab_0 - - defusedxml=0.7.1=pyhd8ed1ab_0 - - distlib=0.3.8=pyhd8ed1ab_0 - - docutils=0.20.1=py39h2804cbe_3 - - eclib=20231211=h7f07de4_0 - - editables=0.3=pyhd8ed1ab_0 - - entrypoints=0.4=pyhd8ed1ab_0 - - exceptiongroup=1.2.0=pyhd8ed1ab_0 + - eclib=20231212=h7f07de4_0 + - exceptiongroup=1.2.0=pyhd8ed1ab_2 - executing=2.0.1=pyhd8ed1ab_0 - - filelock=3.13.1=pyhd8ed1ab_0 - - flit-core=3.9.0=pyhd8ed1ab_0 - fplll=5.4.5=hb7d509d_0 - gap-defaults=4.12.2=hce30654_3 - - gast=0.5.4=pyhd8ed1ab_0 - - gfortran_impl_osx-arm64=12.3.0=hbbb9e1e_1 - gmpy2=2.1.2=py39h0b4f9c6_1 - idna=3.6=pyhd8ed1ab_0 - - imagesize=1.4.1=pyhd8ed1ab_0 - - ipython_genutils=0.2.0=py_1 - - json5=0.9.14=pyhd8ed1ab_0 - - jsonpointer=2.4=py39h2804cbe_3 - - jupyterlab_widgets=3.0.9=pyhd8ed1ab_0 + - jupyterlab_widgets=3.0.10=pyhd8ed1ab_0 - kiwisolver=1.4.5=py39hbd775c9_1 - lcalc=2.0.5=hc94e8e6_1 - - ld64_osx-arm64=609=hc4dc95b_15 + - ld64=609=h634c8be_16 - libblas=3.9.0=20_osxarm64_openblas - - libclang-cpp15=15.0.7=default_hd209bcb_4 - - libcurl=8.1.2=h912dcd9_0 - - libgd=2.3.3=h90fb8ed_4 - - llvm-tools=15.0.7=h62b9111_1 - - markupsafe=2.1.3=py39h0f82c59_1 + - libcurl=8.5.0=h2d989ff_0 + - libgd=2.3.3=hfdf3952_9 + - markupsafe=2.1.5=py39h17cfd9d_0 - maxima=5.45.0=h6032a66_2 - - mistune=3.0.2=pyhd8ed1ab_0 - mpmath=1.3.0=pyhd8ed1ab_0 - munkres=1.1.4=pyh9f0ad1d_0 - - nest-asyncio=1.5.8=pyhd8ed1ab_0 + - nest-asyncio=1.6.0=pyhd8ed1ab_0 - networkx=3.2.1=pyhd8ed1ab_0 - openblas=0.3.25=openmp_h55c453e_0 - packaging=23.2=pyhd8ed1ab_0 - - pandocfilters=1.5.0=pyhd8ed1ab_0 - parso=0.8.3=pyhd8ed1ab_0 - - pathspec=0.12.1=pyhd8ed1ab_0 - pickleshare=0.7.5=py_1003 - - pillow=9.4.0=py39h8bd98a6_1 + - pillow=10.2.0=py39h755f0b7_0 - pkgconfig=1.5.5=pyhd8ed1ab_4 - - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 - - platformdirs=4.1.0=pyhd8ed1ab_0 - - pluggy=1.3.0=pyhd8ed1ab_0 - - ply=3.11=py_1 - - prometheus_client=0.19.0=pyhd8ed1ab_0 - - psutil=5.9.7=py39h17cfd9d_0 + - platformdirs=4.2.0=pyhd8ed1ab_0 + - psutil=5.9.8=py39h17cfd9d_0 - ptyprocess=0.7.0=pyhd3deb0d_0 - pure_eval=0.2.2=pyhd8ed1ab_0 - - py=1.11.0=pyh6c4a22f_0 - - pybind11-global=2.11.1=py39hbd775c9_2 - - pycparser=2.21=pyhd8ed1ab_0 - pygments=2.17.2=pyhd8ed1ab_0 - pyparsing=3.1.1=pyhd8ed1ab_0 - - pyrsistent=0.20.0=py39h17cfd9d_0 - pysocks=1.7.1=pyha2e5f31_6 - - python-fastjsonschema=2.19.0=pyhd8ed1ab_0 - - python-json-logger=2.0.7=pyhd8ed1ab_0 - - python-lrcalc=2.1=py39h23fbdae_5 - - python-tzdata=2023.3=pyhd8ed1ab_0 - - pytz=2023.3.post1=pyhd8ed1ab_0 - - pyyaml=6.0.1=py39h0f82c59_1 - pyzmq=25.1.2=py39he1e2164_0 - - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.15.2=py39h8fec3ad_0 - - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 - - sagetex=3.6.1=pyhd8ed1ab_0 - - setuptools=68.2.2=pyhd8ed1ab_0 - - simplegeneric=0.8.1=py_1 + - setuptools=69.1.0=pyhd8ed1ab_1 - singular=4.3.2.p8=hb460b52_1 - six=1.16.0=pyh6c4a22f_0 - - sniffio=1.3.0=pyhd8ed1ab_0 - - snowballstemmer=2.2.0=pyhd8ed1ab_0 - - soupsieve=2.5=pyhd8ed1ab_1 - - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_0 - sympow=2.023.6=hb0babe8_3 - tomli=2.0.1=pyhd8ed1ab_0 - - tornado=6.3.3=py39h0f82c59_1 - - traitlets=5.14.0=pyhd8ed1ab_0 - - trove-classifiers=2023.11.29=pyhd8ed1ab_0 - - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 + - tornado=6.4=py39h17cfd9d_0 + - traitlets=5.14.1=pyhd8ed1ab_0 - typing_extensions=4.9.0=pyha770c72_0 - - typing_utils=0.1.0=pyhd8ed1ab_0 - - tzlocal=5.2=py39h2804cbe_0 - unicodedata2=15.1.0=py39h0f82c59_0 - - uri-template=1.3.0=pyhd8ed1ab_0 - - wcwidth=0.2.12=pyhd8ed1ab_0 - - webcolors=1.13=pyhd8ed1ab_0 - - webencodings=0.5.1=pyhd8ed1ab_2 - - websocket-client=1.7.0=pyhd8ed1ab_0 + - wcwidth=0.2.13=pyhd8ed1ab_0 - wheel=0.42.0=pyhd8ed1ab_0 - - widgetsnbextension=4.0.9=pyhd8ed1ab_0 + - widgetsnbextension=4.0.10=pyhd8ed1ab_0 - zipp=3.17.0=pyhd8ed1ab_0 - - anyio=4.2.0=pyhd8ed1ab_0 - asttokens=2.4.1=pyhd8ed1ab_0 - - async-lru=2.0.4=pyhd8ed1ab_0 - - babel=2.14.0=pyhd8ed1ab_0 - - beautifulsoup4=4.12.2=pyha770c72_0 - - beniget=0.4.1=pyhd8ed1ab_0 - - bleach=6.1.0=pyhd8ed1ab_0 - - cached-property=1.5.2=hd8ed1ab_1 - - cctools_osx-arm64=973.0.1=h2a25c60_15 - - cffi=1.16.0=py39he153c15_0 - - clang-15=15.0.7=default_hd209bcb_4 - - cmake=3.26.4=hc0af03a_0 - - comm=0.1.4=pyhd8ed1ab_0 - - cppy=1.2.1=pyhd8ed1ab_0 - - curl=8.1.2=h912dcd9_0 - - cypari2=2.1.3=py39h7462d2a_2 - - deprecation=2.1.0=pyh9f0ad1d_0 - - fonttools=4.47.0=py39h17cfd9d_0 - - harfbuzz=6.0.0=hddbc195_0 - - importlib-metadata=7.0.0=pyha770c72_0 + - cctools=973.0.1=h4faf515_16 + - clang=16.0.6=h30cc82d_5 + - comm=0.2.1=pyhd8ed1ab_0 + - cypari2=2.1.4=py39h070b2a8_2 + - fonttools=4.49.0=py39h17cfd9d_0 + - importlib-metadata=7.0.1=pyha770c72_0 - importlib_resources=6.1.1=pyhd8ed1ab_0 - jedi=0.19.1=pyhd8ed1ab_0 - - jinja2=3.1.2=pyhd8ed1ab_1 - - jupyter_core=5.5.1=py39h2804cbe_0 - - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 - - ld64=609=h89fa09d_15 + - jinja2=3.1.3=pyhd8ed1ab_0 + - jupyter_core=5.7.1=py39h2804cbe_0 - libcblas=3.9.0=20_osxarm64_openblas - liblapack=3.9.0=20_osxarm64_openblas - matplotlib-inline=0.1.6=pyhd8ed1ab_0 - memory-allocator=0.1.3=py39h0f82c59_0 - - overrides=7.4.0=pyhd8ed1ab_0 - - pexpect=4.8.0=pyh1a96a4e_2 - - pip=23.3.2=pyhd8ed1ab_0 + - meson=1.3.2=pyhd8ed1ab_0 + - pexpect=4.9.0=pyhd8ed1ab_0 + - pip=24.0=pyhd8ed1ab_0 - pplpy=0.8.9=py39haf103f8_0 - primecountpy=0.1.0=py39hbd775c9_4 - prompt-toolkit=3.0.42=pyha770c72_0 - - pybind11=2.11.1=py39hbd775c9_2 - - pyobjc-core=10.1=py39hb167abd_0 - - pyproject-api=1.6.1=pyhd8ed1ab_0 + - pyproject-metadata=0.7.1=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - - pytz-deprecation-shim=0.1.0.post0=py39h2804cbe_4 - - referencing=0.32.0=pyhd8ed1ab_0 - - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - sympy=1.12=pypyh9d50eac_103 - - terminado=0.18.0=pyh31c8845_0 - - tinycss2=1.2.1=pyhd8ed1ab_0 - - typing-extensions=4.9.0=hd8ed1ab_0 - - urllib3=2.1.0=pyhd8ed1ab_0 - - virtualenv=20.25.0=pyhd8ed1ab_0 - - argon2-cffi-bindings=21.2.0=py39h0f82c59_4 - - arpack=3.7.0=h58ebc17_2 - - arrow=1.3.0=pyhd8ed1ab_0 - - cctools=973.0.1=hd1ac623_15 - - clang=15.0.7=haab561b_4 - - dsdp=5.8=h9397a75_1203 + - urllib3=2.2.1=pyhd8ed1ab_0 + - arpack=3.8.0=nompi_ha3438d0_101 + - clangxx=16.0.6=default_h4cf2255_5 - fflas-ffpack=2.4.3=h11f2abc_2 - - fqdn=1.5.1=pyhd8ed1ab_0 - gsl=2.7=h6e638da_0 - - hatchling=1.21.0=pyhd8ed1ab_0 - iml=1.0.5=hd52f0d1_1003 - importlib-resources=6.1.1=pyhd8ed1ab_0 - - importlib_metadata=7.0.0=hd8ed1ab_0 - - jsonschema-specifications=2023.11.2=pyhd8ed1ab_0 - - jupyter_server_terminals=0.5.0=pyhd8ed1ab_0 + - importlib_metadata=7.0.1=hd8ed1ab_0 - liblapacke=3.9.0=20_osxarm64_openblas - - numpy=1.26.2=py39heee92a0_0 - - pango=1.50.14=h6c112b8_0 - - prompt_toolkit=3.0.42=hd8ed1ab_0 - - pyobjc-framework-cocoa=10.1=py39hb167abd_0 + - meson-python=0.15.0=pyh0c530f3_0 + - numpy=1.26.4=py39h7aa2656_0 - requests=2.31.0=pyhd8ed1ab_0 - - setuptools-scm=8.0.4=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 - - suitesparse=5.10.1=h88be0ae_2 - - argon2-cffi=23.1.0=pyhd8ed1ab_0 - blas-devel=3.9.0=20_osxarm64_openblas - - clangxx=15.0.7=default_h5c94ee4_4 + - compiler-rt_osx-arm64=16.0.6=h3808999_2 - contourpy=1.2.0=py39he9de807_0 - - cvxopt=1.3.2=py39h76eeb2c_1 - - fpylll=0.6.0=py39h947550b_1 + - fpylll=0.6.1=py39h2eadeda_0 - giac=1.9.0.21=h1c96721_1 - - igraph=0.9.10=hcec9b84_1 + - igraph=0.10.10=h48be1ad_0 - ipython=8.18.1=pyh707e725_3 - - isoduration=20.11.0=pyhd8ed1ab_0 - - jsonschema=4.20.0=pyhd8ed1ab_0 - jupyter_client=8.6.0=pyhd8ed1ab_0 - linbox=1.6.3=h380be0f_8 - scipy=1.11.4=py39h36c428d_0 - - send2trash=1.8.2=pyhd1c38e8_0 - - setuptools_scm=8.0.4=hd8ed1ab_0 - - tox=4.11.4=pyhd8ed1ab_0 - blas=2.120=openblas - - compiler-rt_osx-arm64=15.0.7=h3808999_2 - - ipykernel=6.26.0=pyh3cd1d5f_0 - - ipywidgets=8.1.1=pyhd8ed1ab_0 - - jsonschema-with-format-nongpl=4.20.0=pyhd8ed1ab_0 - - matplotlib-base=3.8.2=py39h1a09f3e_0 - - nbformat=5.9.2=pyhd8ed1ab_0 - - rw=0.9=h3422bc3_0 - - compiler-rt=15.0.7=h3808999_2 - - ipympl=0.9.3=pyhd8ed1ab_0 - - jupyter-jsmol=2022.1.0=pyhd8ed1ab_0 - - jupyter_events=0.9.0=pyhd8ed1ab_0 - - matplotlib=3.8.2=py39hdf13c20_0 - - nbclient=0.8.0=pyhd8ed1ab_0 - - clang_impl_osx-arm64=15.0.7=h77e971b_7 - - nbconvert-core=7.13.0=pyhd8ed1ab_0 - - clang_osx-arm64=15.0.7=h54d7cd3_7 - - jupyter_server=2.12.1=pyhd8ed1ab_0 - - nbconvert-pandoc=7.13.0=pyhd8ed1ab_0 - - c-compiler=1.6.0=hd291e01_0 - - clangxx_impl_osx-arm64=15.0.7=h768a7fd_7 - - gfortran_osx-arm64=12.3.0=h57527a5_1 - - jupyter-lsp=2.2.1=pyhd8ed1ab_0 - - jupyterlab_server=2.25.2=pyhd8ed1ab_0 - - nbconvert=7.13.0=pyhd8ed1ab_0 - - notebook-shim=0.2.3=pyhd8ed1ab_0 - - clangxx_osx-arm64=15.0.7=h54d7cd3_7 - - gfortran=12.3.0=h1ca8e4b_1 - - jupyterlab=4.0.9=pyhd8ed1ab_0 - - cxx-compiler=1.6.0=h1995070_0 - - fortran-compiler=1.6.0=h5a50232_0 - - notebook=7.0.6=pyhd8ed1ab_0 - - pythran=0.14.0=py39h819cc4c_1 - - r-base=4.1.3=h9c4d319_6 - - compilers=1.6.0=hce30654_0 - - rpy2=3.5.11=py39r41hf9b1952_0 - - jupyter_sphinx=0.1.4=py_0 - - sphinx-basic-ng=1.0.0b2=pyhd8ed1ab_1 - - furo=2023.9.10=pyhd8ed1ab_0 - - sphinx-copybutton=0.5.2=pyhd8ed1ab_0 - - sphinxcontrib-applehelp=1.0.7=pyhd8ed1ab_0 - - sphinxcontrib-devhelp=1.0.5=pyhd8ed1ab_0 - - sphinxcontrib-htmlhelp=2.0.4=pyhd8ed1ab_0 - - sphinxcontrib-qthelp=1.0.6=pyhd8ed1ab_0 - - sphinx=7.2.6=pyhd8ed1ab_0 - - sphinxcontrib-serializinghtml=1.1.9=pyhd8ed1ab_0 - - sphinxcontrib-websupport=1.2.6=pyhd8ed1ab_0 + - compiler-rt=16.0.6=h3808999_2 + - ipykernel=6.29.2=pyh3cd1d5f_0 + - ipywidgets=8.1.2=pyhd8ed1ab_0 + - matplotlib-base=3.8.3=py39hbab7938_0 + - rw=0.9=h93a5062_1 + - clang_impl_osx-arm64=16.0.6=hc421ffc_9 + - clang_osx-arm64=16.0.6=h54d7cd3_9 + - c-compiler=1.6.0=h6aa9301_0 + - clangxx_impl_osx-arm64=16.0.6=hcd7bac0_9 + - clangxx_osx-arm64=16.0.6=h54d7cd3_9 + - cxx-compiler=1.6.0=h2ffa867_0 diff --git a/src/environment-3.9-macos.yml b/src/environment-3.9-macos.yml index c924d013cbc..f5f54f08024 100644 --- a/src/environment-3.9-macos.yml +++ b/src/environment-3.9-macos.yml @@ -1,121 +1,87 @@ # Generated by conda-lock. # platform: osx-64 -# input_hash: 64f68d5d5e73112c508b9c6440bab326ddf8fd688cc150a835fbb91f0a1dec36 +# input_hash: f9b1fc3757a3651ee8e5d4a2ca9e85debaec778a18e156fad4e075c4940402a5 channels: - conda-forge dependencies: - - _r-mutex=1.0.1=anacondar_1 - - bc=1.07.1=h0d85af4_0 - bzip2=1.0.8=h10d778d_5 - - c-ares=1.24.0=h10d778d_0 - - ca-certificates=2023.11.17=h8857fd0_0 + - c-ares=1.27.0=h10d778d_0 + - ca-certificates=2024.2.2=h8857fd0_0 - cliquer=1.22=hbcb3906_0 - font-ttf-dejavu-sans-mono=2.37=hab24e00_0 - font-ttf-inconsolata=3.000=h77eed37_0 - font-ttf-source-code-pro=2.038=h77eed37_0 - font-ttf-ubuntu=0.83=h77eed37_1 - - fribidi=1.0.10=hbcb3906_0 - giflib=5.2.1=hb7f2c08_3 - icu=73.2=hf5e326d_0 - - libatomic_ops=7.6.14=hb7f2c08_0 - - libboost-headers=1.84.0=h694c41f_0 + - libboost-headers=1.84.0=h694c41f_1 - libbrotlicommon=1.1.0=h0dc2134_1 - libcxx=16.0.6=hd57cbcb_0 - libdeflate=1.19=ha4e1b8e_0 - libev=4.33=h10d778d_2 - libexpat=2.5.0=hf0c8a7f_1 - libffi=3.4.2=h0d85af4_5 - - libgfortran-devel_osx-64=12.3.0=h0b6f5ec_1 - libiconv=1.17=hd75f5a5_2 - libjpeg-turbo=3.0.0=h0dc2134_1 - libsodium=1.0.18=hbcb3906_1 - - libtool=2.4.7=hf0c8a7f_0 - - libuv=1.46.0=h0c2f820_0 - libwebp-base=1.3.2=h0dc2134_0 - libzlib=1.2.13=h8a1eda9_5 - llvm-openmp=17.0.6=hb6ac08f_0 - - m4=1.4.18=haf1e3a3_1001 - - make=4.3=h22f3db7_1 - - mathjax=3.2.2=h694c41f_0 - - nauty=2.8.8=h10d778d_0 + - nauty=2.8.8=h10d778d_1 - palp=2.20=hbcb3906_0 - pari-elldata=0.0.20161017=0 - pari-galdata=0.0.20180411=0 - - pari-galpol=0.0.20180625=0 - pari-seadata-small=0.0.20090618=0 - - patch=2.7.6=hbcf498f_1002 - - perl=5.32.1=4_h0dc2134_perl5 + - perl=5.32.1=7_h10d778d_perl5 - planarity=3.0.0.5=hbcb3906_1002 - pthread-stubs=0.4=hc929b4f_1001 - python_abi=3.9=4_cp39 - - rhash=1.4.4=h0dc2134_0 - - sagemath-db-combinatorial-designs=20140630=1 - - sagemath-db-graphs=20210214=hd8ed1ab_0 - - sagemath-db-polytopes=20170220=1 - - three.js=122=hd8ed1ab_2 - - tzdata=2023c=h71feb2d_0 + - tzdata=2024a=h0c530f3_0 - xorg-libxau=1.0.11=h0dc2134_0 - xorg-libxdmcp=1.1.3=h35c211d_0 - xz=5.2.6=h775f41a_0 - - yaml=0.2.5=h0d85af4_2 - - autoconf=2.71=pl5321hed12c24_1 - bdw-gc=8.0.6=h940c156_0 - expat=2.5.0=hf0c8a7f_1 - fonts-conda-forge=1=0 - - gengetopt=2.23=he49afe7_0 - gettext=0.21.1=h8a4c099_0 - gf2x=1.3.0=hb2a7efb_2 - gmp=6.3.0=h93d8f39_0 - - graphite2=1.3.13=h2e338ed_1001 - - isl=0.25=hb486fe8_0 - lerc=4.0.0=hb486fe8_0 - libbraiding=1.2=hf0c8a7f_0 - libbrotlidec=1.1.0=h0dc2134_1 - libbrotlienc=1.1.0=h0dc2134_1 - - libgfortran5=13.2.0=h2873a65_1 - - libpng=1.6.39=ha978bb4_0 - - libsqlite=3.44.2=h92b6c6a_0 + - libgfortran5=13.2.0=h2873a65_3 + - libpng=1.6.42=h92b6c6a_0 + - libsqlite=3.45.1=h92b6c6a_0 - libxcb=1.15=hb7f2c08_0 - - libxml2=2.11.6=hc0ae0f7_0 - - lrcalc=2.1=hf0c8a7f_5 - - metis=5.1.1=h93d8f39_2 + - libxml2=2.12.5=hc0ae0f7_0 + - lrcalc=2.1=h73e2aa4_6 - ncurses=6.4=h93d8f39_2 - ninja=1.11.1=hb8565cd_0 - - openjdk=21.0.1=hf4d7fad_0 - - openssl=3.2.0=hd75f5a5_1 - - pandoc=3.1.3=h9d075a6_0 + - openssl=3.2.1=hd75f5a5_0 - pari-seadata=0.0.20090618=0 - - pcre2=10.40=h1c4e4bc_0 - - pixman=0.42.2=he965462_0 - pkg-config=0.29.2=ha3d46e9_1008 - primesieve=11.0=hf0c8a7f_0 - qhull=2020.2=h940c156_2 - symmetrica=3.0.1=hf0c8a7f_0 - tapi=1100.0.11=h9ce4665_0 - - tar=1.34=hcb2f6ea_1 - - threejs-sage=122=hd8ed1ab_2 - tk=8.6.13=h1abcd95_1 - zeromq=4.3.5=h93d8f39_0 - zlib=1.2.13=h8a1eda9_5 - zstd=1.5.5=h829000d_0 - - automake=1.16.5=pl5321h694c41f_0 - brotli-bin=1.1.0=h0dc2134_1 - - bwidget=1.9.14=h694c41f_1 - cddlib=1!0.94m=h0f52abe_0 - ecm=7.0.4=h343d7f2_1002 - fonts-conda-ecosystem=1=0 - freetype=2.12.1=h60636b9_2 - givaro=4.1.1=h0a799c6_3 - glpk=5.0=h3cb5acd_0 - - jmol=14.32.9=h694c41f_0 - - libboost=1.84.0=h5b2dd29_0 + - libboost=1.84.0=h4bb364b_1 - libedit=3.1.20191231=h0678c8f_2 - - libgfortran=5.0.0=13_2_0_h97931a8_1 - - libglib=2.78.1=h6d9ecee_0 + - libgfortran=5.0.0=13_2_0_h97931a8_3 - libhomfly=1.02r6=hc929b4f_0 - - libhwloc=2.9.3=default_h24e0189_1009 - - libllvm15=15.0.7=he4b1e75_3 + - libllvm16=16.0.6=hbedff68_3 - libnghttp2=1.58.0=h64cf6d3_1 - libssh2=1.11.0=hd019ec5_0 - libtiff=4.6.0=h684deea_2 @@ -125,282 +91,147 @@ dependencies: - primecount=7.6=ha894c9a_0 - readline=8.2=h9e318b2_1 - sigtool=0.1.3=h88f4db0_0 - - tachyon=0.99b6=0 - - texinfo=7.0=pl5321hc47821c_0 - - tktable=2.10=ha166976_5 - brotli=1.1.0=h0dc2134_1 - ecl=21.2.1=hd029580_2 - - fftw=3.3.10=nompi_h4fa670e_108 - fontconfig=2.14.2=h5bb23bf_0 - gap-core=4.12.2=hc16eb5f_3 - gfan=0.6.2=hd793b56_1003 - krb5=1.21.2=hb884880_0 - lcms2=2.16=ha2f27b4_0 - - ld64_osx-64=609=h0fd476b_15 - - libboost-devel=1.84.0=h7728843_0 + - ld64_osx-64=609=ha20a434_16 + - libboost-devel=1.84.0=h7728843_1 - libbrial=1.2.12=h8d08345_1 - - libclang-cpp15=15.0.7=default_h6b1ee41_4 + - libclang-cpp16=16.0.6=default_h7151d67_5 - libflint=3.0.1=h5d15de0_ntl_100 - libopenblas=0.3.25=openmp_hfef2a42_0 - libwebp=1.3.2=h44782d1_1 - - llvm-tools=15.0.7=he4b1e75_3 + - llvm-tools=16.0.6=hbedff68_3 - m4rie=20150908=h3f75d11_1001 - mpc=1.3.1=h81bd1dd_0 - mpfi=1.5.4=h52b28e3_1001 - openjpeg=2.5.0=ha4da562_3 - pari=2.15.4=h93f793c_2_pthread - ppl=1.2=ha60d53e_1006 - - python=3.9.18=h07e1443_0_cpython + - python=3.9.18=h7a9c478_1_cpython - qd=2.3.22=h2beb688_1004 - - sqlite=3.44.2=h7461747_0 - - tbb=2021.11.0=he51d815_0 - - alabaster=0.7.13=pyhd8ed1ab_0 - - appdirs=1.4.4=pyh9f0ad1d_0 - - appnope=0.1.3=pyhd8ed1ab_0 - - attrs=23.1.0=pyh71513ae_1 - - boost-cpp=1.84.0=h07eb623_0 + - appnope=0.1.4=pyhd8ed1ab_0 + - boost-cpp=1.84.0=h07eb623_1 - brial=1.2.12=pyh694c41f_1 - brotli-python=1.1.0=py39h840bb9f_1 - - cached_property=1.5.2=pyha770c72_1 - - cachetools=5.3.2=pyhd8ed1ab_0 - - cairo=1.18.0=h99e66fa_0 - - cctools_osx-64=973.0.1=habff3f6_15 - - certifi=2023.11.17=pyhd8ed1ab_0 - - chardet=5.2.0=py39h6e9494a_1 + - cctools_osx-64=973.0.1=ha1c5b94_16 + - certifi=2024.2.2=pyhd8ed1ab_0 - charset-normalizer=3.3.2=pyhd8ed1ab_0 - - clang-15=15.0.7=default_h6b1ee41_4 + - clang-16=16.0.6=default_h7151d67_5 - colorama=0.4.6=pyhd8ed1ab_0 - - conway-polynomials=0.8=pyhd8ed1ab_0 + - conway-polynomials=0.9=pyhd8ed1ab_0 - cycler=0.12.1=pyhd8ed1ab_0 - cysignals=1.11.2=py39hf6ae30e_3 - - cython=3.0.7=py39hd253f6c_0 - - debugpy=1.8.0=py39h840bb9f_1 + - cython=3.0.8=py39hd253f6c_0 + - debugpy=1.8.1=py39hd253f6c_0 - decorator=5.1.1=pyhd8ed1ab_0 - - defusedxml=0.7.1=pyhd8ed1ab_0 - - distlib=0.3.8=pyhd8ed1ab_0 - - docutils=0.20.1=py39h6e9494a_3 - - eclib=20231211=h02435c3_0 - - editables=0.3=pyhd8ed1ab_0 - - entrypoints=0.4=pyhd8ed1ab_0 - - exceptiongroup=1.2.0=pyhd8ed1ab_0 + - eclib=20231212=h02435c3_0 + - exceptiongroup=1.2.0=pyhd8ed1ab_2 - executing=2.0.1=pyhd8ed1ab_0 - - filelock=3.13.1=pyhd8ed1ab_0 - - flit-core=3.9.0=pyhd8ed1ab_0 - fplll=5.4.5=hb7981ad_0 - gap-defaults=4.12.2=h694c41f_3 - - gast=0.5.4=pyhd8ed1ab_0 - - gfortran_impl_osx-64=12.3.0=h54fd467_1 - gmpy2=2.1.2=py39h2da61ea_1 - idna=3.6=pyhd8ed1ab_0 - - imagesize=1.4.1=pyhd8ed1ab_0 - - ipython_genutils=0.2.0=py_1 - - json5=0.9.14=pyhd8ed1ab_0 - - jsonpointer=2.4=py39h6e9494a_3 - - jupyterlab_widgets=3.0.9=pyhd8ed1ab_0 + - jupyterlab_widgets=3.0.10=pyhd8ed1ab_0 - kiwisolver=1.4.5=py39h8ee36c8_1 - lcalc=2.0.5=h3a941db_1 - - ld64=609=ha91a046_15 + - ld64=609=ha02d983_16 - libblas=3.9.0=20_osx64_openblas - libcurl=8.5.0=h726d00d_0 - libgd=2.3.3=h0dceb68_9 - - markupsafe=2.1.3=py39hdc70f33_1 + - markupsafe=2.1.5=py39ha09f3b3_0 - maxima=5.47.0=h2b27fa8_1 - - mistune=3.0.2=pyhd8ed1ab_0 - mpmath=1.3.0=pyhd8ed1ab_0 - munkres=1.1.4=pyh9f0ad1d_0 - - nest-asyncio=1.5.8=pyhd8ed1ab_0 + - nest-asyncio=1.6.0=pyhd8ed1ab_0 - networkx=3.2.1=pyhd8ed1ab_0 - openblas=0.3.25=openmp_h6794695_0 - packaging=23.2=pyhd8ed1ab_0 - - pandocfilters=1.5.0=pyhd8ed1ab_0 - parso=0.8.3=pyhd8ed1ab_0 - - pathspec=0.12.1=pyhd8ed1ab_0 - pickleshare=0.7.5=py_1003 - - pillow=10.1.0=py39hdd30358_0 + - pillow=10.2.0=py39hdd30358_0 - pkgconfig=1.5.5=pyhd8ed1ab_4 - - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 - - platformdirs=4.1.0=pyhd8ed1ab_0 - - pluggy=1.3.0=pyhd8ed1ab_0 - - ply=3.11=py_1 - - prometheus_client=0.19.0=pyhd8ed1ab_0 - - psutil=5.9.7=py39ha09f3b3_0 + - platformdirs=4.2.0=pyhd8ed1ab_0 + - psutil=5.9.8=py39ha09f3b3_0 - ptyprocess=0.7.0=pyhd3deb0d_0 - pure_eval=0.2.2=pyhd8ed1ab_0 - - py=1.11.0=pyh6c4a22f_0 - - pybind11-global=2.11.1=py39h8ee36c8_2 - - pycparser=2.21=pyhd8ed1ab_0 - pygments=2.17.2=pyhd8ed1ab_0 - pyparsing=3.1.1=pyhd8ed1ab_0 - - pyrsistent=0.20.0=py39ha09f3b3_0 - pysocks=1.7.1=pyha2e5f31_6 - - python-fastjsonschema=2.19.0=pyhd8ed1ab_0 - - python-json-logger=2.0.7=pyhd8ed1ab_0 - - python-lrcalc=2.1=py39h7a8716b_5 - - python-tzdata=2023.3=pyhd8ed1ab_0 - - pytz=2023.3.post1=pyhd8ed1ab_0 - - pyyaml=6.0.1=py39hdc70f33_1 - pyzmq=25.1.2=py39hcb7a90d_0 - - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.15.2=py39h3f9c672_0 - - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 - - sagetex=3.6.1=pyhd8ed1ab_0 - - setuptools=68.2.2=pyhd8ed1ab_0 - - simplegeneric=0.8.1=py_1 + - setuptools=69.1.0=pyhd8ed1ab_1 - singular=4.3.2.p8=h0d51a9f_1 - six=1.16.0=pyh6c4a22f_0 - - sniffio=1.3.0=pyhd8ed1ab_0 - - snowballstemmer=2.2.0=pyhd8ed1ab_0 - - soupsieve=2.5=pyhd8ed1ab_1 - - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_0 - sympow=2.023.6=h115ba6a_3 - tomli=2.0.1=pyhd8ed1ab_0 - - tornado=6.3.3=py39hdc70f33_1 - - traitlets=5.14.0=pyhd8ed1ab_0 - - trove-classifiers=2023.11.29=pyhd8ed1ab_0 - - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 + - tornado=6.4=py39ha09f3b3_0 + - traitlets=5.14.1=pyhd8ed1ab_0 - typing_extensions=4.9.0=pyha770c72_0 - - typing_utils=0.1.0=pyhd8ed1ab_0 - - tzlocal=5.2=py39h6e9494a_0 - unicodedata2=15.1.0=py39hdc70f33_0 - - uri-template=1.3.0=pyhd8ed1ab_0 - - wcwidth=0.2.12=pyhd8ed1ab_0 - - webcolors=1.13=pyhd8ed1ab_0 - - webencodings=0.5.1=pyhd8ed1ab_2 - - websocket-client=1.7.0=pyhd8ed1ab_0 + - wcwidth=0.2.13=pyhd8ed1ab_0 - wheel=0.42.0=pyhd8ed1ab_0 - - widgetsnbextension=4.0.9=pyhd8ed1ab_0 + - widgetsnbextension=4.0.10=pyhd8ed1ab_0 - zipp=3.17.0=pyhd8ed1ab_0 - - anyio=4.2.0=pyhd8ed1ab_0 - asttokens=2.4.1=pyhd8ed1ab_0 - - async-lru=2.0.4=pyhd8ed1ab_0 - - babel=2.14.0=pyhd8ed1ab_0 - - beautifulsoup4=4.12.2=pyha770c72_0 - - beniget=0.4.1=pyhd8ed1ab_0 - - bleach=6.1.0=pyhd8ed1ab_0 - - cached-property=1.5.2=hd8ed1ab_1 - - cctools=973.0.1=hd9ad811_15 - - cffi=1.16.0=py39h18ef598_0 - - clang=15.0.7=hac416ee_4 - - cmake=3.28.1=h7c85d92_0 - - comm=0.1.4=pyhd8ed1ab_0 - - cppy=1.2.1=pyhd8ed1ab_0 - - curl=8.5.0=h726d00d_0 - - cypari2=2.1.3=py39he2cb11e_2 - - deprecation=2.1.0=pyh9f0ad1d_0 - - fonttools=4.47.0=py39ha09f3b3_0 - - harfbuzz=8.3.0=hf45c392_0 - - importlib-metadata=7.0.0=pyha770c72_0 + - cctools=973.0.1=h40f6528_16 + - clang=16.0.6=hdae98eb_5 + - comm=0.2.1=pyhd8ed1ab_0 + - cypari2=2.1.4=py39hc0d7317_2 + - fonttools=4.49.0=py39ha09f3b3_0 + - importlib-metadata=7.0.1=pyha770c72_0 - importlib_resources=6.1.1=pyhd8ed1ab_0 - jedi=0.19.1=pyhd8ed1ab_0 - - jinja2=3.1.2=pyhd8ed1ab_1 - - jupyter_core=5.5.1=py39h6e9494a_0 - - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 + - jinja2=3.1.3=pyhd8ed1ab_0 + - jupyter_core=5.7.1=py39h6e9494a_0 - libcblas=3.9.0=20_osx64_openblas - liblapack=3.9.0=20_osx64_openblas - matplotlib-inline=0.1.6=pyhd8ed1ab_0 - memory-allocator=0.1.3=py39hdc70f33_0 - - overrides=7.4.0=pyhd8ed1ab_0 - - pexpect=4.8.0=pyh1a96a4e_2 - - pip=23.3.2=pyhd8ed1ab_0 + - meson=1.3.2=pyhd8ed1ab_0 + - pexpect=4.9.0=pyhd8ed1ab_0 + - pip=24.0=pyhd8ed1ab_0 - pplpy=0.8.9=py39h248ee18_0 - primecountpy=0.1.0=py39h8ee36c8_4 - prompt-toolkit=3.0.42=pyha770c72_0 - - pybind11=2.11.1=py39h8ee36c8_2 - - pyobjc-core=10.1=py39h8602b6b_0 - - pyproject-api=1.6.1=pyhd8ed1ab_0 + - pyproject-metadata=0.7.1=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - - pytz-deprecation-shim=0.1.0.post0=py39h6e9494a_4 - - referencing=0.32.0=pyhd8ed1ab_0 - - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - sympy=1.12=pypyh9d50eac_103 - - terminado=0.18.0=pyh31c8845_0 - - tinycss2=1.2.1=pyhd8ed1ab_0 - - typing-extensions=4.9.0=hd8ed1ab_0 - - urllib3=2.1.0=pyhd8ed1ab_0 - - virtualenv=20.25.0=pyhd8ed1ab_0 - - argon2-cffi-bindings=21.2.0=py39hdc70f33_4 + - urllib3=2.2.1=pyhd8ed1ab_0 - arpack=3.8.0=nompi_hb44a6d1_101 - - arrow=1.3.0=pyhd8ed1ab_0 - - clangxx=15.0.7=default_h6b1ee41_4 - - dsdp=5.8=h6e329d1_1203 + - clangxx=16.0.6=default_h7151d67_5 - fflas-ffpack=2.4.3=h026fd7e_2 - - fqdn=1.5.1=pyhd8ed1ab_0 - gsl=2.7=h93259b0_0 - - hatchling=1.21.0=pyhd8ed1ab_0 - iml=1.0.5=h64b42ca_1003 - importlib-resources=6.1.1=pyhd8ed1ab_0 - - importlib_metadata=7.0.0=hd8ed1ab_0 - - jsonschema-specifications=2023.11.2=pyhd8ed1ab_0 - - jupyter_server_terminals=0.5.0=pyhd8ed1ab_0 + - importlib_metadata=7.0.1=hd8ed1ab_0 - liblapacke=3.9.0=20_osx64_openblas - - numpy=1.26.2=py39h14c6d2e_0 - - pango=1.50.14=h19c1c8a_2 - - prompt_toolkit=3.0.42=hd8ed1ab_0 - - pyobjc-framework-cocoa=10.1=py39h8602b6b_0 + - meson-python=0.15.0=pyh0c530f3_0 + - numpy=1.26.4=py39h28c39a1_0 - requests=2.31.0=pyhd8ed1ab_0 - - setuptools-scm=8.0.4=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 - - suitesparse=5.10.1=h0a40b7c_2 - - argon2-cffi=23.1.0=pyhd8ed1ab_0 - blas-devel=3.9.0=20_osx64_openblas - - compiler-rt_osx-64=15.0.7=ha38d28d_2 + - compiler-rt_osx-64=16.0.6=ha38d28d_2 - contourpy=1.2.0=py39h6be1789_0 - - cvxopt=1.3.2=py39h2a3e123_1 - - fpylll=0.6.0=py39hec15948_1 + - fpylll=0.6.1=py39h3b3ffec_0 - giac=1.9.0.21=h92f3f65_1 - - igraph=0.10.8=h29df365_0 + - igraph=0.10.10=h6b221b4_0 - ipython=8.18.1=pyh707e725_3 - - isoduration=20.11.0=pyhd8ed1ab_0 - - jsonschema=4.20.0=pyhd8ed1ab_0 - jupyter_client=8.6.0=pyhd8ed1ab_0 - linbox=1.6.3=hfb9b24e_8 - scipy=1.11.4=py39ha321857_0 - - send2trash=1.8.2=pyhd1c38e8_0 - - setuptools_scm=8.0.4=hd8ed1ab_0 - - tox=4.11.4=pyhd8ed1ab_0 - blas=2.120=openblas - - compiler-rt=15.0.7=ha38d28d_2 - - ipykernel=6.26.0=pyh3cd1d5f_0 - - ipywidgets=8.1.1=pyhd8ed1ab_0 - - jsonschema-with-format-nongpl=4.20.0=pyhd8ed1ab_0 - - matplotlib-base=3.8.2=py39h7070ae8_0 - - nbformat=5.9.2=pyhd8ed1ab_0 + - compiler-rt=16.0.6=ha38d28d_2 + - ipykernel=6.29.2=pyh3cd1d5f_0 + - ipywidgets=8.1.2=pyhd8ed1ab_0 + - matplotlib-base=3.8.3=py39h7070ae8_0 - rw=0.9=h10d778d_1 - - clang_impl_osx-64=15.0.7=h03d6864_7 - - ipympl=0.9.3=pyhd8ed1ab_0 - - jupyter-jsmol=2022.1.0=pyhd8ed1ab_0 - - jupyter_events=0.9.0=pyhd8ed1ab_0 - - matplotlib=3.8.2=py39h6e9494a_0 - - nbclient=0.8.0=pyhd8ed1ab_0 - - clang_osx-64=15.0.7=hb91bd55_7 - - nbconvert-core=7.13.0=pyhd8ed1ab_0 - - c-compiler=1.6.0=h63c33a9_0 - - clangxx_impl_osx-64=15.0.7=h2133e9c_7 - - gfortran_osx-64=12.3.0=h18f7dce_1 - - jupyter_server=2.12.1=pyhd8ed1ab_0 - - nbconvert-pandoc=7.13.0=pyhd8ed1ab_0 - - clangxx_osx-64=15.0.7=hb91bd55_7 - - gfortran=12.3.0=h2c809b3_1 - - jupyter-lsp=2.2.1=pyhd8ed1ab_0 - - jupyterlab_server=2.25.2=pyhd8ed1ab_0 - - nbconvert=7.13.0=pyhd8ed1ab_0 - - notebook-shim=0.2.3=pyhd8ed1ab_0 - - cxx-compiler=1.6.0=h1c7c39f_0 - - fortran-compiler=1.6.0=h932d759_0 - - jupyterlab=4.0.9=pyhd8ed1ab_0 - - pythran=0.14.0=py39h4aa56a1_1 - - r-base=4.3.1=h0ff45fa_6 - - compilers=1.6.0=h694c41f_0 - - notebook=7.0.6=pyhd8ed1ab_0 - - rpy2=3.5.11=py39r43hd01001f_3 - - jupyter_sphinx=0.4.0=py39h6e9494a_1 - - sphinx-basic-ng=1.0.0b2=pyhd8ed1ab_1 - - furo=2023.9.10=pyhd8ed1ab_0 - - sphinx-copybutton=0.5.2=pyhd8ed1ab_0 - - sphinxcontrib-applehelp=1.0.7=pyhd8ed1ab_0 - - sphinxcontrib-devhelp=1.0.5=pyhd8ed1ab_0 - - sphinxcontrib-htmlhelp=2.0.4=pyhd8ed1ab_0 - - sphinxcontrib-qthelp=1.0.6=pyhd8ed1ab_0 - - sphinx=7.2.6=pyhd8ed1ab_0 - - sphinxcontrib-serializinghtml=1.1.9=pyhd8ed1ab_0 - - sphinxcontrib-websupport=1.2.6=pyhd8ed1ab_0 + - clang_impl_osx-64=16.0.6=h8787910_9 + - clang_osx-64=16.0.6=hb91bd55_9 + - c-compiler=1.6.0=h282daa2_0 + - clangxx_impl_osx-64=16.0.6=h6d92fbe_9 + - clangxx_osx-64=16.0.6=hb91bd55_9 + - cxx-compiler=1.6.0=h7728843_0 diff --git a/src/environment-dev-3.10-linux-aarch64.yml b/src/environment-dev-3.10-linux-aarch64.yml index 3e5074485de..e263c5dd407 100644 --- a/src/environment-dev-3.10-linux-aarch64.yml +++ b/src/environment-dev-3.10-linux-aarch64.yml @@ -1,471 +1,263 @@ # Generated by conda-lock. # platform: linux-aarch64 -# input_hash: 205d24daed98b1bae4fcde7e7d49ad93af55d71901e5f44a5013ef1392e377a7 +# input_hash: eed9292ae08285da3f635921b3ea2c9a7485fb35b3273d63f890ad3a42b44538 channels: - conda-forge dependencies: - - _r-mutex=1.0.1=anacondar_1 - - _sysroot_linux-aarch64_curr_repodata_hack=4=h57d6b7b_13 - - ca-certificates=2023.11.17=hcefe29a_0 + - _sysroot_linux-aarch64_curr_repodata_hack=4=h57d6b7b_14 + - ca-certificates=2024.2.2=hcefe29a_0 - font-ttf-dejavu-sans-mono=2.37=hab24e00_0 - font-ttf-inconsolata=3.000=h77eed37_0 - font-ttf-source-code-pro=2.038=h77eed37_0 - font-ttf-ubuntu=0.83=h77eed37_1 - - gh=2.40.1=h652cbe9_0 - - kernel-headers_linux-aarch64=4.18.0=h5b4a56d_13 - ld_impl_linux-aarch64=2.40=h2d8c526_0 - - libgcc-devel_linux-aarch64=12.3.0=h8b5ab12_103 - - libgomp=13.2.0=hf8544c7_3 - - libstdcxx-devel_linux-aarch64=12.3.0=h8b5ab12_103 - - libstdcxx-ng=13.2.0=h9a76618_3 - - mathjax=3.2.2=h8af1aa0_0 - - pandoc=3.1.3=h8af1aa0_0 + - libboost-headers=1.84.0=h8af1aa0_1 + - libgcc-devel_linux-aarch64=12.3.0=h8b5ab12_105 + - libgomp=13.2.0=hf8544c7_5 + - libstdcxx-devel_linux-aarch64=12.3.0=h8b5ab12_105 + - libstdcxx-ng=13.2.0=h9a76618_5 - pari-elldata=0.0.20161017=0 - pari-galdata=0.0.20180411=0 - - pari-galpol=0.0.20180625=0 - pari-seadata-small=0.0.20090618=0 - python_abi=3.10=4_cp310 - - sagemath-db-combinatorial-designs=20140630=1 - - sagemath-db-graphs=20210214=hd8ed1ab_0 - - sagemath-db-polytopes=20170220=1 - - three.js=122=hd8ed1ab_2 - - tzdata=2023c=h71feb2d_0 + - tzdata=2024a=h0c530f3_0 - fonts-conda-forge=1=0 + - kernel-headers_linux-aarch64=4.18.0=h5b4a56d_14 - pari-seadata=0.0.20090618=0 - - sysroot_linux-aarch64=2.17=h5b4a56d_13 - - threejs-sage=122=hd8ed1ab_2 - - binutils_impl_linux-aarch64=2.40=h870a726_0 - fonts-conda-ecosystem=1=0 + - sysroot_linux-aarch64=2.17=h5b4a56d_14 + - binutils_impl_linux-aarch64=2.40=h870a726_0 - binutils=2.40=h64c2a2e_0 - binutils_linux-aarch64=2.40=h94bbfa1_2 - _openmp_mutex=4.5=2_kmp_llvm - - libgcc-ng=13.2.0=hf8544c7_3 - - alsa-lib=1.2.8=h4e544f5_0 - - attr=2.5.1=h4e544f5_1 - - bc=1.07.1=hf897c2e_0 + - libgcc-ng=13.2.0=hf8544c7_5 - bdw-gc=8.0.6=hd62202e_0 - bzip2=1.0.8=h31becfc_5 - - c-ares=1.24.0=h31becfc_0 + - c-ares=1.27.0=h31becfc_0 - cliquer=1.22=hb9de7d4_0 - - fribidi=1.0.10=hb9de7d4_0 - - gengetopt=2.23=h01db608_0 - - gettext=0.21.1=ha18d298_0 - gf2x=1.3.0=h1b3b3a3_2 - giflib=5.2.1=hb4cce97_3 - gmp=6.3.0=h2f0025b_0 - - graphite2=1.3.13=h7fd3ca4_1001 - - icu=70.1=ha18d298_0 - - jpeg=9e=h2a766a3_3 + - icu=73.2=h787c7f5_0 - keyutils=1.6.1=h4e544f5_0 - lerc=4.0.0=h4de3ea5_0 - - libatomic_ops=7.6.14=h4e544f5_0 - libbraiding=1.2=hd600fc2_0 - libbrotlicommon=1.1.0=h31becfc_1 - - libcbor=0.9.0=h01db608_0 - - libdeflate=1.17=hb4cce97_0 + - libdeflate=1.19=h31becfc_0 - libev=4.33=h31becfc_2 - libexpat=2.5.0=hd600fc2_1 - libffi=3.4.2=h3557bc0_5 - - libgfortran5=13.2.0=h582850c_3 + - libgfortran5=13.2.0=h582850c_5 - libiconv=1.17=h31becfc_2 + - libjpeg-turbo=3.0.0=h31becfc_1 - libnsl=2.0.1=h31becfc_0 - - libsanitizer=12.3.0=h8ebda82_3 + - libsanitizer=12.3.0=h8ebda82_5 - libsodium=1.0.18=hb9de7d4_1 - - libtool=2.4.7=h4de3ea5_0 - libuuid=2.38.1=hb4cce97_0 - - libuv=1.46.0=h31becfc_0 - - libwebp-base=1.2.4=h4e544f5_0 + - libwebp-base=1.3.2=h31becfc_0 + - libxcrypt=4.4.36=h31becfc_1 - libzlib=1.2.13=h31becfc_5 - - lrcalc=2.1=h4de3ea5_5 - - m4=1.4.18=h516909a_1001 - - make=4.3=h309ac5b_1 - - metis=5.1.0=h2f0025b_1007 - - nauty=2.8.8=h31becfc_0 + - lrcalc=2.1=h2f0025b_6 + - nauty=2.8.8=h31becfc_1 - ncurses=6.4=h0425590_2 - ninja=1.11.1=hdd96247_0 - - openssl=3.2.0=h31becfc_1 + - openssl=3.2.1=h31becfc_0 - palp=2.20=hb9de7d4_0 - - patch=2.7.6=hf897c2e_1002 - - pixman=0.42.2=h2f0025b_0 - pkg-config=0.29.2=hb9de7d4_1008 - planarity=3.0.0.5=hb9de7d4_1002 - primesieve=11.1=h2f0025b_0 - pthread-stubs=0.4=hb9de7d4_1001 - qhull=2020.2=hd62202e_2 - - rhash=1.4.3=h31becfc_2 - - sed=4.8=ha0d5d3d_0 - symmetrica=3.0.1=hd600fc2_0 - - xorg-inputproto=2.3.2=h3557bc0_1002 - - xorg-kbproto=1.0.7=h3557bc0_1002 - - xorg-libice=1.0.10=h3557bc0_0 - xorg-libxau=1.0.11=h31becfc_0 - xorg-libxdmcp=1.1.3=h3557bc0_0 - - xorg-recordproto=1.14.2=hf897c2e_1002 - - xorg-renderproto=0.11.1=h3557bc0_1002 - - xorg-xextproto=7.3.0=h2a766a3_1003 - - xorg-xproto=7.0.31=h3557bc0_1007 - xz=5.2.6=h9cdd2b7_0 - - yaml=0.2.5=hf897c2e_2 - cddlib=1!0.94m=h719063d_0 - ecm=7.0.4=h719063d_1002 - expat=2.5.0=hd600fc2_1 - - gcc_impl_linux-aarch64=12.3.0=hcde2664_3 + - gcc_impl_linux-aarch64=12.3.0=hcde2664_5 - givaro=4.1.1=h192cbe9_1 - glpk=5.0=h66325d0_0 - libbrotlidec=1.1.0=h31becfc_1 - libbrotlienc=1.1.0=h31becfc_1 - - libcap=2.69=h883460d_0 - libedit=3.1.20191231=he28a2e2_2 - - libgfortran-ng=13.2.0=he9431aa_3 + - libgfortran-ng=13.2.0=he9431aa_5 - libhomfly=1.02r6=hb9de7d4_0 - libnghttp2=1.58.0=hb0e430d_1 - - libpng=1.6.39=hf9034f9_0 - - libsqlite=3.44.2=h194ca79_0 + - libpng=1.6.42=h194ca79_0 + - libsqlite=3.45.1=h194ca79_0 - libssh2=1.11.0=h492db2e_0 - - libxcb=1.13=h3557bc0_1004 - - libxml2=2.10.3=habe54e3_4 + - libxcb=1.15=h2a766a3_0 + - libxml2=2.12.5=h3091e33_0 - mpfr=4.2.1=ha2d0fc4_0 - ntl=11.4.3=h0d7519b_1 - - pcre2=10.40=he7b27c6_0 - - perl=5.32.1=4_h31becfc_perl5 + - perl=5.32.1=7_h31becfc_perl5 - primecount=7.9=hd600fc2_0 - readline=8.2=h8fc344f_1 - - tar=1.34=h048efde_0 - tk=8.6.13=h194ca79_0 - - xorg-fixesproto=5.0=h3557bc0_1002 - - xorg-libsm=1.2.3=h965e137_1000 - zeromq=4.3.5=h2f0025b_0 - zlib=1.2.13=h31becfc_5 - zstd=1.5.5=h4c53e97_0 - - autoconf=2.71=pl5321h2148fe1_1 - - boost-cpp=1.81.0=h07c2bc3_0 - brotli-bin=1.1.0=h31becfc_1 - - bwidget=1.9.14=h8af1aa0_1 - ecl=21.2.1=haa44c19_2 - - fftw=3.3.10=nompi_h2dcef8e_108 - freetype=2.12.1=hf0a5ef3_2 - gap-core=4.12.2=h597289e_3 - gcc=12.3.0=hc1b51f9_2 - gcc_linux-aarch64=12.3.0=h464a8f7_2 - gfan=0.6.2=h5f589ec_1003 - - gfortran_impl_linux-aarch64=12.3.0=hb7244be_3 - - gxx_impl_linux-aarch64=12.3.0=hcde2664_3 - - krb5=1.20.1=h113d92e_0 + - gxx_impl_linux-aarch64=12.3.0=hcde2664_5 + - krb5=1.21.2=hc419048_0 + - libboost=1.84.0=h1fed05a_1 - libflint=3.0.1=hc392af7_ntl_100 - - libglib=2.78.1=h0464669_0 - - libhwloc=2.9.1=h21e8147_0 - libopenblas=0.3.25=pthreads_h5a5ec62_0 - - libtiff=4.5.0=h4c1066a_2 - - libudev1=255=h31becfc_0 + - libtiff=4.6.0=h1708d11_2 - llvm-openmp=17.0.6=h8b0cb96_0 - m4ri=20140914=h75e8696_1005 - mpc=1.3.1=hf4c8f4c_0 - mpfi=1.5.4=h846f343_1001 - pari=2.15.4=h169c2a7_2_pthread - ppl=1.2=h984aac9_1006 - - python=3.10.13=hbbe8eec_0_cpython + - python=3.10.13=hbbe8eec_1_cpython - qd=2.3.22=h05efe27_1004 - - sqlite=3.44.2=h3b3482f_0 - - tachyon=0.99b6=h63ab1d9_1001 - - texinfo=7.0=pl5321h17f021e_0 - - tktable=2.10=h4f9ca69_5 - - xorg-libx11=1.8.4=h2a766a3_0 - - alabaster=0.7.13=pyhd8ed1ab_0 - - appdirs=1.4.4=pyh9f0ad1d_0 - - appnope=0.1.3=pyhd8ed1ab_0 - - attrs=23.1.0=pyh71513ae_1 - - automake=1.16.5=pl5321h8af1aa0_0 + - alabaster=0.7.16=pyhd8ed1ab_0 - brotli=1.1.0=h31becfc_1 - brotli-python=1.1.0=py310hbb3657e_1 - c-compiler=1.6.0=h31becfc_0 - - cached_property=1.5.2=pyha770c72_1 - - cachetools=5.3.2=pyhd8ed1ab_0 - - cachy=0.3.0=pyhd8ed1ab_1 - - certifi=2023.11.17=pyhd8ed1ab_0 - - chardet=5.2.0=py310hbbe02a8_1 + - certifi=2024.2.2=pyhd8ed1ab_0 - charset-normalizer=3.3.2=pyhd8ed1ab_0 - - click=8.1.7=unix_pyh707e725_0 - colorama=0.4.6=pyhd8ed1ab_0 - - conway-polynomials=0.8=pyhd8ed1ab_0 - - crashtest=0.4.1=pyhd8ed1ab_0 + - conway-polynomials=0.9=pyhd8ed1ab_0 - cycler=0.12.1=pyhd8ed1ab_0 - cysignals=1.11.2=py310h485802a_3 - - cython=3.0.7=py310hbb3657e_0 - - dbus=1.13.6=h12b9eeb_3 - - debugpy=1.8.0=py310hbb3657e_1 + - cython=3.0.8=py310hbb3657e_0 + - debugpy=1.8.1=py310hbb3657e_0 - decorator=5.1.1=pyhd8ed1ab_0 - - defusedxml=0.7.1=pyhd8ed1ab_0 - - distlib=0.3.8=pyhd8ed1ab_0 - docutils=0.20.1=py310hbbe02a8_3 - - eclib=20231211=he26bab5_0 - - editables=0.3=pyhd8ed1ab_0 - - entrypoints=0.4=pyhd8ed1ab_0 - - exceptiongroup=1.2.0=pyhd8ed1ab_0 + - eclib=20231212=he26bab5_0 + - exceptiongroup=1.2.0=pyhd8ed1ab_2 - execnet=2.0.2=pyhd8ed1ab_0 - executing=2.0.1=pyhd8ed1ab_0 - - filelock=3.13.1=pyhd8ed1ab_0 - - flit-core=3.9.0=pyhd8ed1ab_0 - fontconfig=2.14.2=ha9a116f_0 - fplll=5.4.5=hb3a790e_0 - gap-defaults=4.12.2=h8af1aa0_3 - - gast=0.5.4=pyhd8ed1ab_0 - - gfortran=12.3.0=h8d4031d_2 - - gfortran_linux-aarch64=12.3.0=h1993883_2 - gmpy2=2.1.2=py310h9f74ea4_1 - gxx=12.3.0=hc1b51f9_2 - gxx_linux-aarch64=12.3.0=h21accf6_2 - idna=3.6=pyhd8ed1ab_0 - imagesize=1.4.1=pyhd8ed1ab_0 - iniconfig=2.0.0=pyhd8ed1ab_0 - - ipython_genutils=0.2.0=py_1 - - jeepney=0.8.0=pyhd8ed1ab_0 - - json5=0.9.14=pyhd8ed1ab_0 - - jsonpointer=2.4=py310h4c7bcd0_3 - - jupyterlab_widgets=3.0.9=pyhd8ed1ab_0 + - jupyterlab_widgets=3.0.10=pyhd8ed1ab_0 - kiwisolver=1.4.5=py310he290b8a_1 - lcalc=2.0.5=h3264cc0_1 - - lcms2=2.15=h7576be9_0 + - lcms2=2.16=h922389a_0 - libblas=3.9.0=20_linuxaarch64_openblas + - libboost-devel=1.84.0=h37bb5a9_1 - libbrial=1.2.12=h17533bf_1 - - libcups=2.3.3=h4303303_3 - - libcurl=8.1.2=hc34909b_0 - - libfido2=1.14.0=heb3f89f_0 - - libwebp=1.2.4=h7bdf6e5_1 + - libcurl=8.5.0=h4e8248e_0 + - libwebp=1.3.2=heb2ea1b_1 - m4rie=20150908=h75e8696_1001 - - markupsafe=2.1.3=py310h7c1f4a2_1 + - markupsafe=2.1.5=py310h7c1f4a2_0 - maxima=5.47.0=h6475f26_1 - - mistune=3.0.2=pyhd8ed1ab_0 - - more-itertools=10.1.0=pyhd8ed1ab_0 - mpmath=1.3.0=pyhd8ed1ab_0 - - msgpack-python=1.0.7=py310he290b8a_0 - munkres=1.1.4=pyh9f0ad1d_0 - - nest-asyncio=1.5.8=pyhd8ed1ab_0 + - nest-asyncio=1.6.0=pyhd8ed1ab_0 - networkx=3.2.1=pyhd8ed1ab_0 - openblas=0.3.25=pthreads_h339cbfa_0 - - openjpeg=2.5.0=h9508984_2 + - openjpeg=2.5.0=h0d9d63b_3 - packaging=23.2=pyhd8ed1ab_0 - - pandocfilters=1.5.0=pyhd8ed1ab_0 - parso=0.8.3=pyhd8ed1ab_0 - - pastel=0.2.1=pyhd8ed1ab_0 - - pathspec=0.12.1=pyhd8ed1ab_0 - pickleshare=0.7.5=py_1003 - pkgconfig=1.5.5=pyhd8ed1ab_4 - - pkginfo=1.9.6=pyhd8ed1ab_0 - - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 - - platformdirs=4.1.0=pyhd8ed1ab_0 - - pluggy=1.3.0=pyhd8ed1ab_0 - - ply=3.11=py_1 - - prometheus_client=0.19.0=pyhd8ed1ab_0 - - psutil=5.9.7=py310hb299538_0 + - platformdirs=4.2.0=pyhd8ed1ab_0 + - pluggy=1.4.0=pyhd8ed1ab_0 + - psutil=5.9.8=py310hb299538_0 - ptyprocess=0.7.0=pyhd3deb0d_0 - pure_eval=0.2.2=pyhd8ed1ab_0 - - py=1.11.0=pyh6c4a22f_0 - - pybind11-global=2.11.1=py310h586407a_2 - - pycodestyle=2.11.1=pyhd8ed1ab_0 - - pycparser=2.21=pyhd8ed1ab_0 - pygments=2.17.2=pyhd8ed1ab_0 - - pylev=1.4.0=pyhd8ed1ab_0 - pyparsing=3.1.1=pyhd8ed1ab_0 - - pyrsistent=0.20.0=py310h7c1f4a2_0 - pysocks=1.7.1=pyha2e5f31_6 - - pyspellchecker=0.7.2=pyhd8ed1ab_0 - - python-fastjsonschema=2.19.0=pyhd8ed1ab_0 - - python-json-logger=2.0.7=pyhd8ed1ab_0 - - python-lrcalc=2.1=py310h130cc07_5 - - python-tzdata=2023.3=pyhd8ed1ab_0 - - pytz=2023.3.post1=pyhd8ed1ab_0 - - pyyaml=6.0.1=py310hb299538_1 + - pytz=2024.1=pyhd8ed1ab_0 - pyzmq=25.1.2=py310h014ca53_0 - - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.15.2=py310h057607a_0 - - ruamel.yaml.clib=0.2.7=py310hb299538_2 - - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 - - sagetex=3.6.1=pyhd8ed1ab_0 - - send2trash=1.8.2=pyh41d4057_0 - - setuptools=68.2.2=pyhd8ed1ab_0 - - simplegeneric=0.8.1=py_1 + - setuptools=69.1.0=pyhd8ed1ab_1 - singular=4.3.2.p8=hbe76a8a_1 - six=1.16.0=pyh6c4a22f_0 - - smmap=5.0.0=pyhd8ed1ab_0 - - sniffio=1.3.0=pyhd8ed1ab_0 - snowballstemmer=2.2.0=pyhd8ed1ab_0 - soupsieve=2.5=pyhd8ed1ab_1 - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_0 - sympow=2.023.6=h157afb5_3 - - tbb=2021.9.0=h4c384f3_0 - tomli=2.0.1=pyhd8ed1ab_0 - - tomlkit=0.12.3=pyha770c72_0 - - toolz=0.12.0=pyhd8ed1ab_0 - - tornado=6.3.3=py310h7c1f4a2_1 - - traitlets=5.14.0=pyhd8ed1ab_0 - - trove-classifiers=2023.11.29=pyhd8ed1ab_0 - - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 + - tornado=6.4=py310h7c1f4a2_0 + - traitlets=5.14.1=pyhd8ed1ab_0 - typing_extensions=4.9.0=pyha770c72_0 - - typing_utils=0.1.0=pyhd8ed1ab_0 - - tzlocal=5.2=py310h4c7bcd0_0 - unicodedata2=15.1.0=py310hb299538_0 - - uri-template=1.3.0=pyhd8ed1ab_0 - - wcwidth=0.2.12=pyhd8ed1ab_0 - - webcolors=1.13=pyhd8ed1ab_0 - - webencodings=0.5.1=pyhd8ed1ab_2 - - websocket-client=1.7.0=pyhd8ed1ab_0 + - wcwidth=0.2.13=pyhd8ed1ab_0 - wheel=0.42.0=pyhd8ed1ab_0 - - widgetsnbextension=4.0.9=pyhd8ed1ab_0 - - xorg-libxext=1.3.4=h2a766a3_2 - - xorg-libxfixes=5.0.3=h3557bc0_1004 - - xorg-libxrender=0.9.10=h3557bc0_1003 - - xorg-libxt=1.3.0=h7935292_0 + - widgetsnbextension=4.0.10=pyhd8ed1ab_0 - zipp=3.17.0=pyhd8ed1ab_0 - - anyio=4.2.0=pyhd8ed1ab_0 - asttokens=2.4.1=pyhd8ed1ab_0 - - async-lru=2.0.4=pyhd8ed1ab_0 - babel=2.14.0=pyhd8ed1ab_0 - - beautifulsoup4=4.12.2=pyha770c72_0 - - beniget=0.4.1=pyhd8ed1ab_0 - - bleach=6.1.0=pyhd8ed1ab_0 + - beautifulsoup4=4.12.3=pyha770c72_0 + - boost-cpp=1.84.0=ha990451_1 - brial=1.2.12=pyh694c41f_1 - - cached-property=1.5.2=hd8ed1ab_1 - - cairo=1.16.0=hd19fb6e_1014 - - cffi=1.16.0=py310hce94938_0 - - click-default-group=1.2.4=pyhd8ed1ab_0 - - clikit=0.6.2=pyhd8ed1ab_2 - - cmake=3.26.4=hef020d8_0 - - comm=0.1.4=pyhd8ed1ab_0 - - cppy=1.2.1=pyhd8ed1ab_0 - - curl=8.1.2=hc34909b_0 + - comm=0.2.1=pyhd8ed1ab_0 + - coverage=7.4.2=py310h7c1f4a2_0 - cxx-compiler=1.6.0=h2a328a1_0 - - cypari2=2.1.3=py310h4cbba44_2 - - deprecation=2.1.0=pyh9f0ad1d_0 - - fonttools=4.47.0=py310hb299538_0 - - fortran-compiler=1.6.0=h7048d53_0 - - gitdb=4.0.11=pyhd8ed1ab_0 - - html5lib=1.1=pyh9f0ad1d_0 - - importlib-metadata=7.0.0=pyha770c72_0 + - cypari2=2.1.4=py310h4cbba44_2 + - fonttools=4.49.0=py310hb299538_0 + - importlib-metadata=7.0.1=pyha770c72_0 - importlib_resources=6.1.1=pyhd8ed1ab_0 - - jaraco.classes=3.3.0=pyhd8ed1ab_0 - jedi=0.19.1=pyhd8ed1ab_0 - - jinja2=3.1.2=pyhd8ed1ab_1 - - jupyter_core=5.5.1=py310h4c7bcd0_0 - - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 + - jinja2=3.1.3=pyhd8ed1ab_0 + - jupyter_core=5.7.1=py310h4c7bcd0_0 - libcblas=3.9.0=20_linuxaarch64_openblas - - libgd=2.3.3=h99c6b3b_4 + - libgd=2.3.3=hcd22fd5_9 - liblapack=3.9.0=20_linuxaarch64_openblas - matplotlib-inline=0.1.6=pyhd8ed1ab_0 - memory-allocator=0.1.3=py310hb299538_0 - - openssh=9.3p1=hf616e62_1 - - overrides=7.4.0=pyhd8ed1ab_0 - - pexpect=4.8.0=pyh1a96a4e_2 - - pillow=9.4.0=py310h2843b5e_1 - - pip=23.3.2=pyhd8ed1ab_0 + - meson=1.3.2=pyhd8ed1ab_0 + - pexpect=4.9.0=pyhd8ed1ab_0 + - pillow=10.2.0=py310h0ae3e2b_0 + - pip=24.0=pyhd8ed1ab_0 - pplpy=0.8.9=py310hd5c817c_0 - primecountpy=0.1.0=py310h586407a_4 - prompt-toolkit=3.0.42=pyha770c72_0 - - pybind11=2.11.1=py310h586407a_2 - - pyproject-api=1.6.1=pyhd8ed1ab_0 - - pytest=7.4.3=pyhd8ed1ab_0 + - pyproject-metadata=0.7.1=pyhd8ed1ab_0 + - pytest=8.0.1=pyhd8ed1ab_1 - python-dateutil=2.8.2=pyhd8ed1ab_0 - - pytz-deprecation-shim=0.1.0.post0=py310h4c7bcd0_4 - - referencing=0.32.0=pyhd8ed1ab_0 - - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - - ruamel.yaml=0.18.5=py310hb299538_0 - sympy=1.12=pypyh9d50eac_103 - - terminado=0.18.0=pyh0d859eb_0 - - tinycss2=1.2.1=pyhd8ed1ab_0 - - typing-extensions=4.9.0=hd8ed1ab_0 - - urllib3=1.26.18=pyhd8ed1ab_0 - - virtualenv=20.25.0=pyhd8ed1ab_0 - - xorg-libxi=1.7.10=h3557bc0_0 - - annotated-types=0.6.0=pyhd8ed1ab_0 - - argon2-cffi-bindings=21.2.0=py310hb299538_4 - - arpack=3.7.0=hf862f49_2 - - arrow=1.3.0=pyhd8ed1ab_0 - - cattrs=23.2.3=pyhd8ed1ab_0 - - compilers=1.6.0=h8af1aa0_0 - - cryptography=41.0.7=py310he685ff2_1 - - dsdp=5.8=hb12102e_1203 + - urllib3=2.2.1=pyhd8ed1ab_0 + - arpack=3.8.0=nompi_h32ff4ca_101 - fflas-ffpack=2.4.3=hf104d39_2 - - fqdn=1.5.1=pyhd8ed1ab_0 - - git=2.42.0=pl5321h0d979e1_0 - - gitpython=3.1.40=pyhd8ed1ab_0 - gsl=2.7=h294027d_0 - - harfbuzz=6.0.0=hbcb8a4f_0 - - hatchling=1.21.0=pyhd8ed1ab_0 - iml=1.0.5=h9076c59_1003 - - importlib-resources=6.1.1=pyhd8ed1ab_0 - - importlib_metadata=7.0.0=hd8ed1ab_0 - - jsonschema-specifications=2023.11.2=pyhd8ed1ab_0 - - jupyter_server_terminals=0.5.0=pyhd8ed1ab_0 + - importlib_metadata=7.0.1=hd8ed1ab_0 - liblapacke=3.9.0=20_linuxaarch64_openblas - - numpy=1.26.2=py310hcbab775_0 - - prompt_toolkit=3.0.42=hd8ed1ab_0 - - pydantic-core=2.14.5=py310hfd680ee_0 + - meson-python=0.15.0=pyh0c530f3_0 + - numpy=1.26.4=py310hcbab775_0 - pytest-xdist=3.5.0=pyhd8ed1ab_0 - requests=2.31.0=pyhd8ed1ab_0 - - setuptools-scm=8.0.4=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 - - suitesparse=5.10.1=h1404dd6_1 - - xorg-libxtst=1.2.3=hf897c2e_1002 - - argon2-cffi=23.1.0=pyhd8ed1ab_0 - blas-devel=3.9.0=20_linuxaarch64_openblas - - cachecontrol=0.13.1=pyhd8ed1ab_0 - contourpy=1.2.0=py310h586407a_0 - - cvxopt=1.3.2=py310h536486b_1 - - ensureconda=1.4.3=pyhd8ed1ab_0 - - fpylll=0.6.0=py310hfdbf2a6_1 + - fpylll=0.6.1=py310hfdbf2a6_0 - giac=1.9.0.21=h04922a4_1 - - igraph=0.9.10=hefb87a8_1 - - ipython=8.18.1=pyh707e725_3 - - isoduration=20.11.0=pyhd8ed1ab_0 - - jsonschema=4.20.0=pyhd8ed1ab_0 + - igraph=0.10.10=hcfae7ab_0 + - ipython=8.22.0=pyh707e725_0 - jupyter_client=8.6.0=pyhd8ed1ab_0 - linbox=1.6.3=h681a5ee_8 - - lsprotocol=2023.0.0=pyhd8ed1ab_0 - - openjdk=17.0.3=h1a274e0_5 - - pango=1.50.14=h1f1e9b3_0 - - pydantic=2.5.2=pyhd8ed1ab_0 - - pythran=0.14.0=py310h5e48e15_1 - scipy=1.11.3=py310hcbab775_1 - - secretstorage=3.3.3=py310hbbe02a8_2 - - setuptools_scm=8.0.4=hd8ed1ab_0 - - tox=4.11.4=pyhd8ed1ab_0 - blas=2.120=openblas - - cachecontrol-with-filecache=0.13.1=pyhd8ed1ab_0 - - ipykernel=6.26.0=pyhf8b6a83_0 - - ipywidgets=8.1.1=pyhd8ed1ab_0 - - jmol=14.32.10=h8af1aa0_0 - - jsonschema-with-format-nongpl=4.20.0=pyhd8ed1ab_0 - - keyring=24.3.0=py310h4c7bcd0_0 - - matplotlib-base=3.8.2=py310h0a7f329_0 - - nbformat=5.9.2=pyhd8ed1ab_0 - - pygls=1.2.1=pyhd8ed1ab_0 - - r-base=4.2.3=h620ca72_0 - - rw=0.9=hf897c2e_0 - - conda-lock=2.5.1=pyhd8ed1ab_0 - - ipympl=0.9.3=pyhd8ed1ab_0 - - jupyter-jsmol=2022.1.0=pyhd8ed1ab_0 - - jupyter_events=0.9.0=pyhd8ed1ab_0 - - matplotlib=3.8.2=py310hbbe02a8_0 - - nbclient=0.8.0=pyhd8ed1ab_0 - - rpy2=3.5.11=py310r42h8b6b5fc_3 - - nbconvert-core=7.13.0=pyhd8ed1ab_0 - - jupyter_server=2.12.1=pyhd8ed1ab_0 - - nbconvert-pandoc=7.13.0=pyhd8ed1ab_0 - - jupyter-lsp=2.2.1=pyhd8ed1ab_0 - - jupyterlab_server=2.25.2=pyhd8ed1ab_0 - - nbconvert=7.13.0=pyhd8ed1ab_0 - - notebook-shim=0.2.3=pyhd8ed1ab_0 - - jupyterlab=4.0.9=pyhd8ed1ab_0 - - notebook=7.0.6=pyhd8ed1ab_0 - - esbonio=0.16.3=pyhd8ed1ab_0 - - jupyter_sphinx=0.1.4=py_0 + - ipykernel=6.29.2=pyhd33586a_0 + - ipywidgets=8.1.2=pyhd8ed1ab_0 + - matplotlib-base=3.8.3=py310h0a7f329_0 + - rw=0.9=h31becfc_1 - sphinx-basic-ng=1.0.0b2=pyhd8ed1ab_1 - - furo=2023.9.10=pyhd8ed1ab_0 - - sphinx-copybutton=0.5.2=pyhd8ed1ab_0 - - sphinxcontrib-applehelp=1.0.7=pyhd8ed1ab_0 - - sphinxcontrib-devhelp=1.0.5=pyhd8ed1ab_0 - - sphinxcontrib-htmlhelp=2.0.4=pyhd8ed1ab_0 - - sphinxcontrib-qthelp=1.0.6=pyhd8ed1ab_0 + - furo=2024.1.29=pyhd8ed1ab_0 + - sphinx-inline-tabs=2023.4.21=pyhd8ed1ab_0 + - sphinxcontrib-applehelp=1.0.8=pyhd8ed1ab_0 + - sphinxcontrib-devhelp=1.0.6=pyhd8ed1ab_0 + - sphinxcontrib-htmlhelp=2.0.5=pyhd8ed1ab_0 + - sphinxcontrib-qthelp=1.0.7=pyhd8ed1ab_0 - sphinx=7.2.6=pyhd8ed1ab_0 - - sphinxcontrib-serializinghtml=1.1.9=pyhd8ed1ab_0 - - sphinxcontrib-websupport=1.2.6=pyhd8ed1ab_0 + - sphinxcontrib-serializinghtml=1.1.10=pyhd8ed1ab_0 diff --git a/src/environment-dev-3.10-linux.yml b/src/environment-dev-3.10-linux.yml index 63279d82c7e..f4df98a8751 100644 --- a/src/environment-dev-3.10-linux.yml +++ b/src/environment-dev-3.10-linux.yml @@ -1,512 +1,263 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: e806cf8008f4581b2bbb7fa721cb7222007cedcd9dc4ae088a6cfe8342f1c7e7 +# input_hash: effe24293e92dbce44cb4fef038ec98e3a7920c051f25f1d927e68a9afd74197 channels: - conda-forge dependencies: - _libgcc_mutex=0.1=conda_forge - - _r-mutex=1.0.1=anacondar_1 - - ca-certificates=2023.11.17=hbcca054_0 + - ca-certificates=2024.2.2=hbcca054_0 - font-ttf-dejavu-sans-mono=2.37=hab24e00_0 - font-ttf-inconsolata=3.000=h77eed37_0 - font-ttf-source-code-pro=2.038=h77eed37_0 - font-ttf-ubuntu=0.83=h77eed37_1 - - gh=2.40.1=ha8f183a_0 - - kernel-headers_linux-64=2.6.32=he073ed8_16 + - kernel-headers_linux-64=2.6.32=he073ed8_17 - ld_impl_linux-64=2.40=h41732ed_0 - - libboost-headers=1.84.0=ha770c72_0 - - libgcc-devel_linux-64=12.3.0=h8bca6fd_103 - - libstdcxx-devel_linux-64=12.3.0=h8bca6fd_103 - - libstdcxx-ng=13.2.0=h7e041cc_3 - - mathjax=3.2.2=ha770c72_0 + - libboost-headers=1.84.0=ha770c72_1 + - libgcc-devel_linux-64=12.3.0=h8bca6fd_105 + - libstdcxx-devel_linux-64=12.3.0=h8bca6fd_105 + - libstdcxx-ng=13.2.0=h7e041cc_5 - pari-elldata=0.0.20161017=0 - pari-galdata=0.0.20180411=0 - - pari-galpol=0.0.20180625=0 - pari-seadata-small=0.0.20090618=0 - python_abi=3.10=4_cp310 - - sagemath-db-combinatorial-designs=20140630=1 - - sagemath-db-graphs=20210214=hd8ed1ab_0 - - sagemath-db-polytopes=20170220=1 - - three.js=122=hd8ed1ab_2 - - tzdata=2023c=h71feb2d_0 + - tzdata=2024a=h0c530f3_0 - fonts-conda-forge=1=0 - - libgomp=13.2.0=h807b86a_3 + - libgomp=13.2.0=h807b86a_5 - pari-seadata=0.0.20090618=0 - - sysroot_linux-64=2.12=he073ed8_16 - - threejs-sage=122=hd8ed1ab_2 + - sysroot_linux-64=2.12=he073ed8_17 - binutils_impl_linux-64=2.40=hf600244_0 - fonts-conda-ecosystem=1=0 - binutils=2.40=hdd6e379_0 - binutils_linux-64=2.40=hbdbef99_2 - _openmp_mutex=4.5=2_kmp_llvm - - libgcc-ng=13.2.0=h807b86a_3 - - alsa-lib=1.2.10=hd590300_0 - - attr=2.5.1=h166bdaf_1 - - bc=1.07.1=h7f98852_0 + - libgcc-ng=13.2.0=h807b86a_5 - bdw-gc=8.0.6=h4bd325d_0 - bzip2=1.0.8=hd590300_5 - - c-ares=1.24.0=hd590300_0 + - c-ares=1.27.0=hd590300_0 - cliquer=1.22=h36c2ea0_0 - - fribidi=1.0.10=h36c2ea0_0 - - gengetopt=2.23=h9c3ff4c_0 - - gettext=0.21.1=h27087fc_0 - gf2x=1.3.0=ha476b99_2 - giflib=5.2.1=h0b41bf4_3 - gmp=6.3.0=h59595ed_0 - - graphite2=1.3.13=h58526e2_1001 - icu=73.2=h59595ed_0 - keyutils=1.6.1=h166bdaf_0 - - lame=3.100=h166bdaf_1003 - lerc=4.0.0=h27087fc_0 - - libatomic_ops=7.6.14=h166bdaf_0 - libbraiding=1.2=hcb278e6_0 - libbrotlicommon=1.1.0=hd590300_1 - - libcbor=0.10.2=hcb278e6_0 - libdeflate=1.19=hd590300_0 - libev=4.33=hd590300_2 - libexpat=2.5.0=hcb278e6_1 - libffi=3.4.2=h7f98852_5 - - libgfortran5=13.2.0=ha4646dd_3 + - libgfortran5=13.2.0=ha4646dd_5 - libiconv=1.17=hd590300_2 - libjpeg-turbo=3.0.0=hd590300_1 - libnsl=2.0.1=hd590300_0 - - libogg=1.3.4=h7f98852_1 - - libopus=1.3.1=h7f98852_1 - - libsanitizer=12.3.0=h0f45ef3_3 + - libsanitizer=12.3.0=h0f45ef3_5 - libsodium=1.0.18=h36c2ea0_1 - - libtool=2.4.7=h27087fc_0 - libuuid=2.38.1=h0b41bf4_0 - - libuv=1.46.0=hd590300_0 - libwebp-base=1.3.2=hd590300_0 + - libxcrypt=4.4.36=hd590300_1 - libzlib=1.2.13=hd590300_5 - - lrcalc=2.1=h27087fc_5 - - lz4-c=1.9.4=hcb278e6_0 - - m4=1.4.18=h516909a_1001 - - make=4.3=hd18ef5c_1 - - metis=5.1.1=h59595ed_2 - - mpg123=1.32.3=h59595ed_0 - - nauty=2.8.8=hd590300_0 + - lrcalc=2.1=h59595ed_6 + - nauty=2.8.8=hd590300_1 - ncurses=6.4=h59595ed_2 - ninja=1.11.1=h924138e_0 - - nspr=4.35=h27087fc_0 - - openssl=3.2.0=hd590300_1 + - openssl=3.2.1=hd590300_0 - palp=2.20=h36c2ea0_0 - - patch=2.7.6=h7f98852_1002 - - pixman=0.42.2=h59595ed_0 - pkg-config=0.29.2=h36c2ea0_1008 - planarity=3.0.0.5=h36c2ea0_1002 - primesieve=11.1=h59595ed_0 - pthread-stubs=0.4=h36c2ea0_1001 - qhull=2020.2=h4bd325d_2 - - rhash=1.4.4=hd590300_0 - - sed=4.8=he412f7d_0 - symmetrica=3.0.1=hcb278e6_0 - - xorg-inputproto=2.3.2=h7f98852_1002 - - xorg-kbproto=1.0.7=h7f98852_1002 - - xorg-libice=1.1.1=hd590300_0 - xorg-libxau=1.0.11=hd590300_0 - xorg-libxdmcp=1.1.3=h7f98852_0 - - xorg-recordproto=1.14.2=h7f98852_1002 - - xorg-renderproto=0.11.1=h7f98852_1002 - - xorg-xextproto=7.3.0=h0b41bf4_1003 - - xorg-xf86vidmodeproto=2.3.1=h7f98852_1002 - - xorg-xproto=7.0.31=h7f98852_1007 - xz=5.2.6=h166bdaf_0 - - yaml=0.2.5=h7f98852_2 - cddlib=1!0.94m=h9202a9a_0 - ecm=7.0.4=h9202a9a_1002 - expat=2.5.0=hcb278e6_1 - - gcc_impl_linux-64=12.3.0=he2b93b0_3 + - gcc_impl_linux-64=12.3.0=he2b93b0_5 - givaro=4.1.1=h192cbe9_1 - glpk=5.0=h445213a_0 - libbrotlidec=1.1.0=hd590300_1 - libbrotlienc=1.1.0=hd590300_1 - - libcap=2.69=h0f662aa_0 - libedit=3.1.20191231=he28a2e2_2 - - libevent=2.1.12=hf998b51_1 - - libflac=1.4.3=h59595ed_0 - - libgfortran-ng=13.2.0=h69a702a_3 - - libgpg-error=1.47=h71f35ed_0 + - libgfortran-ng=13.2.0=h69a702a_5 - libhomfly=1.02r6=h36c2ea0_0 - libnghttp2=1.58.0=h47da74e_1 - - libpng=1.6.39=h753d276_0 - - libsqlite=3.44.2=h2797004_0 + - libpng=1.6.42=h2797004_0 + - libsqlite=3.45.1=h2797004_0 - libssh2=1.11.0=h0841786_0 - - libvorbis=1.3.7=h9c3ff4c_0 - libxcb=1.15=h0b41bf4_0 - - libxml2=2.11.6=h232c23b_0 + - libxml2=2.12.5=h232c23b_0 - mpfr=4.2.1=h9458935_0 - - mysql-common=8.0.33=hf1915f5_6 - ntl=11.4.3=hef3c4d3_1 - - pcre2=10.42=hcad00b1_0 - - perl=5.32.1=4_hd590300_perl5 + - perl=5.32.1=7_hd590300_perl5 - primecount=7.9=hcb278e6_0 - readline=8.2=h8228510_1 - - tar=1.34=hb2e2bae_1 - tk=8.6.13=noxft_h4845f30_101 - - xorg-fixesproto=5.0=h7f98852_1002 - - xorg-libsm=1.2.4=h7391055_0 - zeromq=4.3.5=h59595ed_0 - zlib=1.2.13=hd590300_5 - zstd=1.5.5=hfc55251_0 - - autoconf=2.71=pl5321h2b4cb7a_1 - brotli-bin=1.1.0=hd590300_1 - - bwidget=1.9.14=ha770c72_1 - ecl=21.2.1=h9d73b02_2 - - fftw=3.3.10=nompi_hc118613_108 - freetype=2.12.1=h267a509_2 - gap-core=4.12.2=he9a28a4_3 - gcc=12.3.0=h8d2909c_2 - gcc_linux-64=12.3.0=h76fc315_2 - gfan=0.6.2=hb86e20a_1003 - - gfortran_impl_linux-64=12.3.0=hfcedea8_3 - - gxx_impl_linux-64=12.3.0=he2b93b0_3 + - gxx_impl_linux-64=12.3.0=he2b93b0_5 - krb5=1.21.2=h659d440_0 - - libboost=1.84.0=h6fcfa73_0 + - libboost=1.84.0=h8013b2b_1 - libflint=3.0.1=h5f2e117_ntl_100 - - libgcrypt=1.10.3=hd590300_0 - - libglib=2.78.3=h783c2da_0 - - libhwloc=2.9.3=default_h554bfaf_1009 - - libllvm15=15.0.7=h5cf9203_3 - libopenblas=0.3.25=pthreads_h413a1c8_0 - - libsndfile=1.2.2=hc60ed4a_1 - libtiff=4.6.0=ha9c0a0a_2 - - libudev1=255=h3f72095_0 - llvm-openmp=17.0.6=h4dfa4b3_0 - m4ri=20140914=h7ca028e_1005 - mpc=1.3.1=hfe3b2da_0 - mpfi=1.5.4=h9f54685_1001 - - mysql-libs=8.0.33=hca2cd23_6 - - nss=3.96=h1d7d5a4_0 - - pandoc=3.1.3=h32600fe_0 - pari=2.15.4=h4d4ae9b_2_pthread - ppl=1.2=h6ec01c2_1006 - - python=3.10.13=hd12c33a_0_cpython + - python=3.10.13=hd12c33a_1_cpython - qd=2.3.22=h2cc385e_1004 - - sqlite=3.44.2=h2c6b66d_0 - - tachyon=0.99b6=0 - - texinfo=7.0=pl5321h0f457ee_0 - - tktable=2.10=h0c5db8f_5 - - xcb-util=0.4.0=hd590300_1 - - xcb-util-keysyms=0.4.0=h8ee46fc_1 - - xcb-util-renderutil=0.3.9=hd590300_1 - - xcb-util-wm=0.4.1=h8ee46fc_1 - - xorg-libx11=1.8.7=h8ee46fc_0 - - alabaster=0.7.13=pyhd8ed1ab_0 - - appdirs=1.4.4=pyh9f0ad1d_0 - - appnope=0.1.3=pyhd8ed1ab_0 - - attrs=23.1.0=pyh71513ae_1 - - automake=1.16.5=pl5321ha770c72_0 + - alabaster=0.7.16=pyhd8ed1ab_0 - brotli=1.1.0=hd590300_1 - brotli-python=1.1.0=py310hc6cd4ac_1 - c-compiler=1.6.0=hd590300_0 - - cached_property=1.5.2=pyha770c72_1 - - cachetools=5.3.2=pyhd8ed1ab_0 - - cachy=0.3.0=pyhd8ed1ab_1 - - certifi=2023.11.17=pyhd8ed1ab_0 - - chardet=5.2.0=py310hff52083_1 + - certifi=2024.2.2=pyhd8ed1ab_0 - charset-normalizer=3.3.2=pyhd8ed1ab_0 - - click=8.1.7=unix_pyh707e725_0 - colorama=0.4.6=pyhd8ed1ab_0 - - conway-polynomials=0.8=pyhd8ed1ab_0 - - crashtest=0.4.1=pyhd8ed1ab_0 + - conway-polynomials=0.9=pyhd8ed1ab_0 - cycler=0.12.1=pyhd8ed1ab_0 - cysignals=1.11.2=py310h945e7c7_3 - - cython=3.0.7=py310hc6cd4ac_0 - - dbus=1.13.6=h5008d03_3 - - debugpy=1.8.0=py310hc6cd4ac_1 + - cython=3.0.8=py310hc6cd4ac_0 + - debugpy=1.8.1=py310hc6cd4ac_0 - decorator=5.1.1=pyhd8ed1ab_0 - - defusedxml=0.7.1=pyhd8ed1ab_0 - - distlib=0.3.8=pyhd8ed1ab_0 - docutils=0.20.1=py310hff52083_3 - - eclib=20231211=h96f522a_0 - - editables=0.3=pyhd8ed1ab_0 - - entrypoints=0.4=pyhd8ed1ab_0 - - exceptiongroup=1.2.0=pyhd8ed1ab_0 + - eclib=20231212=h96f522a_0 + - exceptiongroup=1.2.0=pyhd8ed1ab_2 - execnet=2.0.2=pyhd8ed1ab_0 - executing=2.0.1=pyhd8ed1ab_0 - - filelock=3.13.1=pyhd8ed1ab_0 - - flit-core=3.9.0=pyhd8ed1ab_0 - fontconfig=2.14.2=h14ed4e7_0 - fplll=5.4.5=h384768b_0 - gap-defaults=4.12.2=ha770c72_3 - - gast=0.5.4=pyhd8ed1ab_0 - - gfortran=12.3.0=h499e0f7_2 - - gfortran_linux-64=12.3.0=h7fe76b4_2 - - glib-tools=2.78.3=hfc55251_0 - gmpy2=2.1.2=py310h3ec546c_1 - gxx=12.3.0=h8d2909c_2 - gxx_linux-64=12.3.0=h8a814eb_2 - idna=3.6=pyhd8ed1ab_0 - imagesize=1.4.1=pyhd8ed1ab_0 - iniconfig=2.0.0=pyhd8ed1ab_0 - - ipython_genutils=0.2.0=py_1 - - jeepney=0.8.0=pyhd8ed1ab_0 - - json5=0.9.14=pyhd8ed1ab_0 - - jsonpointer=2.4=py310hff52083_3 - - jupyterlab_widgets=3.0.9=pyhd8ed1ab_0 + - jupyterlab_widgets=3.0.10=pyhd8ed1ab_0 - kiwisolver=1.4.5=py310hd41b1e2_1 - lcalc=2.0.5=h6a8a7c6_1 - lcms2=2.16=hb7c19ff_0 - libblas=3.9.0=20_linux64_openblas - - libboost-devel=1.84.0=h00ab1b0_0 + - libboost-devel=1.84.0=h00ab1b0_1 - libbrial=1.2.12=h3155cbd_1 - - libclang13=15.0.7=default_ha2b6cf4_4 - - libcups=2.3.3=h4637d8d_4 - libcurl=8.5.0=hca28451_0 - - libfido2=1.14.0=h4446dcb_0 - - libpq=16.1=h33b98f1_7 - - libsystemd0=255=h3516f8a_0 - libwebp=1.3.2=h658648e_1 - m4rie=20150908=h7ca028e_1001 - - markupsafe=2.1.3=py310h2372a71_1 + - markupsafe=2.1.5=py310h2372a71_0 - maxima=5.47.0=hed6455c_1 - - mistune=3.0.2=pyhd8ed1ab_0 - - more-itertools=10.1.0=pyhd8ed1ab_0 - mpmath=1.3.0=pyhd8ed1ab_0 - - msgpack-python=1.0.7=py310hd41b1e2_0 - munkres=1.1.4=pyh9f0ad1d_0 - - nest-asyncio=1.5.8=pyhd8ed1ab_0 + - nest-asyncio=1.6.0=pyhd8ed1ab_0 - networkx=3.2.1=pyhd8ed1ab_0 - openblas=0.3.25=pthreads_h7a3da1a_0 - openjpeg=2.5.0=h488ebb8_3 - packaging=23.2=pyhd8ed1ab_0 - - pandocfilters=1.5.0=pyhd8ed1ab_0 - parso=0.8.3=pyhd8ed1ab_0 - - pastel=0.2.1=pyhd8ed1ab_0 - - pathspec=0.12.1=pyhd8ed1ab_0 - pickleshare=0.7.5=py_1003 - pkgconfig=1.5.5=pyhd8ed1ab_4 - - pkginfo=1.9.6=pyhd8ed1ab_0 - - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 - - platformdirs=4.1.0=pyhd8ed1ab_0 - - pluggy=1.3.0=pyhd8ed1ab_0 - - ply=3.11=py_1 - - prometheus_client=0.19.0=pyhd8ed1ab_0 - - psutil=5.9.7=py310h2372a71_0 + - platformdirs=4.2.0=pyhd8ed1ab_0 + - pluggy=1.4.0=pyhd8ed1ab_0 + - psutil=5.9.8=py310h2372a71_0 - ptyprocess=0.7.0=pyhd3deb0d_0 - pure_eval=0.2.2=pyhd8ed1ab_0 - - py=1.11.0=pyh6c4a22f_0 - - pybind11-global=2.11.1=py310hd41b1e2_2 - - pycodestyle=2.11.1=pyhd8ed1ab_0 - - pycparser=2.21=pyhd8ed1ab_0 - pygments=2.17.2=pyhd8ed1ab_0 - - pylev=1.4.0=pyhd8ed1ab_0 - pyparsing=3.1.1=pyhd8ed1ab_0 - - pyrsistent=0.20.0=py310h2372a71_0 - pysocks=1.7.1=pyha2e5f31_6 - - pyspellchecker=0.7.2=pyhd8ed1ab_0 - - python-fastjsonschema=2.19.0=pyhd8ed1ab_0 - - python-json-logger=2.0.7=pyhd8ed1ab_0 - - python-lrcalc=2.1=py310hd8f1fbe_5 - - python-tzdata=2023.3=pyhd8ed1ab_0 - - pytz=2023.3.post1=pyhd8ed1ab_0 - - pyyaml=6.0.1=py310h2372a71_1 + - pytz=2024.1=pyhd8ed1ab_0 - pyzmq=25.1.2=py310h795f18f_0 - - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.15.2=py310hcb5633a_0 - - ruamel.yaml.clib=0.2.7=py310h2372a71_2 - - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 - - sagetex=3.6.1=pyhd8ed1ab_0 - - send2trash=1.8.2=pyh41d4057_0 - - setuptools=68.2.2=pyhd8ed1ab_0 - - simplegeneric=0.8.1=py_1 + - setuptools=69.1.0=pyhd8ed1ab_1 - singular=4.3.2.p8=h33f5c3f_1 - six=1.16.0=pyh6c4a22f_0 - - smmap=5.0.0=pyhd8ed1ab_0 - - sniffio=1.3.0=pyhd8ed1ab_0 - snowballstemmer=2.2.0=pyhd8ed1ab_0 - soupsieve=2.5=pyhd8ed1ab_1 - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_0 - sympow=2.023.6=hc6ab17c_3 - - tbb=2021.11.0=h00ab1b0_0 - - toml=0.10.2=pyhd8ed1ab_0 - tomli=2.0.1=pyhd8ed1ab_0 - - tomlkit=0.12.3=pyha770c72_0 - - toolz=0.12.0=pyhd8ed1ab_0 - - tornado=6.3.3=py310h2372a71_1 - - traitlets=5.14.0=pyhd8ed1ab_0 - - trove-classifiers=2023.11.29=pyhd8ed1ab_0 - - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 + - tornado=6.4=py310h2372a71_0 + - traitlets=5.14.1=pyhd8ed1ab_0 - typing_extensions=4.9.0=pyha770c72_0 - - typing_utils=0.1.0=pyhd8ed1ab_0 - - tzlocal=5.2=py310hff52083_0 - unicodedata2=15.1.0=py310h2372a71_0 - - uri-template=1.3.0=pyhd8ed1ab_0 - - wcwidth=0.2.12=pyhd8ed1ab_0 - - webcolors=1.13=pyhd8ed1ab_0 - - webencodings=0.5.1=pyhd8ed1ab_2 - - websocket-client=1.7.0=pyhd8ed1ab_0 + - wcwidth=0.2.13=pyhd8ed1ab_0 - wheel=0.42.0=pyhd8ed1ab_0 - - widgetsnbextension=4.0.9=pyhd8ed1ab_0 - - xcb-util-image=0.4.0=h8ee46fc_1 - - xkeyboard-config=2.40=hd590300_0 - - xorg-libxext=1.3.4=h0b41bf4_2 - - xorg-libxfixes=5.0.3=h7f98852_1004 - - xorg-libxrender=0.9.11=hd590300_0 - - xorg-libxt=1.3.0=hd590300_1 + - widgetsnbextension=4.0.10=pyhd8ed1ab_0 - zipp=3.17.0=pyhd8ed1ab_0 - - anyio=4.2.0=pyhd8ed1ab_0 - asttokens=2.4.1=pyhd8ed1ab_0 - - async-lru=2.0.4=pyhd8ed1ab_0 - babel=2.14.0=pyhd8ed1ab_0 - - beautifulsoup4=4.12.2=pyha770c72_0 - - beniget=0.4.1=pyhd8ed1ab_0 - - bleach=6.1.0=pyhd8ed1ab_0 - - boost-cpp=1.84.0=h44aadfe_0 + - beautifulsoup4=4.12.3=pyha770c72_0 + - boost-cpp=1.84.0=h44aadfe_1 - brial=1.2.12=pyh694c41f_1 - - cached-property=1.5.2=hd8ed1ab_1 - - cairo=1.18.0=h3faef2a_0 - - cffi=1.16.0=py310h2fee648_0 - - click-default-group=1.2.4=pyhd8ed1ab_0 - - clikit=0.6.2=pyhd8ed1ab_2 - - cmake=3.28.1=hcfe8598_0 - - comm=0.1.4=pyhd8ed1ab_0 - - cppy=1.2.1=pyhd8ed1ab_0 - - curl=8.5.0=hca28451_0 + - comm=0.2.1=pyhd8ed1ab_0 + - coverage=7.4.2=py310h2372a71_0 - cxx-compiler=1.6.0=h00ab1b0_0 - - cypari2=2.1.3=py310h14ed79e_2 - - deprecation=2.1.0=pyh9f0ad1d_0 - - fonttools=4.47.0=py310h2372a71_0 - - fortran-compiler=1.6.0=heb67821_0 - - gitdb=4.0.11=pyhd8ed1ab_0 - - glib=2.78.3=hfc55251_0 - - html5lib=1.1=pyh9f0ad1d_0 - - importlib-metadata=7.0.0=pyha770c72_0 + - cypari2=2.1.4=py310h14ed79e_2 + - fonttools=4.49.0=py310h2372a71_0 + - importlib-metadata=7.0.1=pyha770c72_0 - importlib_resources=6.1.1=pyhd8ed1ab_0 - - jaraco.classes=3.3.0=pyhd8ed1ab_0 - jedi=0.19.1=pyhd8ed1ab_0 - - jinja2=3.1.2=pyhd8ed1ab_1 - - jupyter_core=5.5.1=py310hff52083_0 - - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 + - jinja2=3.1.3=pyhd8ed1ab_0 + - jupyter_core=5.7.1=py310hff52083_0 - libcblas=3.9.0=20_linux64_openblas - - libclang=15.0.7=default_hb11cfb5_4 - libgd=2.3.3=h119a65a_9 - liblapack=3.9.0=20_linux64_openblas - - libxkbcommon=1.6.0=h5d7e998_0 - matplotlib-inline=0.1.6=pyhd8ed1ab_0 - memory-allocator=0.1.3=py310h2372a71_0 - - openssh=9.3p1=h2d3b35a_2 - - overrides=7.4.0=pyhd8ed1ab_0 - - pexpect=4.8.0=pyh1a96a4e_2 - - pillow=10.1.0=py310h01dd4db_0 - - pip=23.3.2=pyhd8ed1ab_0 + - meson=1.3.2=pyhd8ed1ab_0 + - pexpect=4.9.0=pyhd8ed1ab_0 + - pillow=10.2.0=py310h01dd4db_0 + - pip=24.0=pyhd8ed1ab_0 - pplpy=0.8.9=py310h28f6eb6_0 - primecountpy=0.1.0=py310hd41b1e2_4 - prompt-toolkit=3.0.42=pyha770c72_0 - - pulseaudio-client=16.1=hb77b528_5 - - pybind11=2.11.1=py310hd41b1e2_2 - - pyproject-api=1.6.1=pyhd8ed1ab_0 - - pytest=7.4.3=pyhd8ed1ab_0 + - pyproject-metadata=0.7.1=pyhd8ed1ab_0 + - pytest=8.0.1=pyhd8ed1ab_1 - python-dateutil=2.8.2=pyhd8ed1ab_0 - - pytz-deprecation-shim=0.1.0.post0=py310hff52083_4 - - referencing=0.32.0=pyhd8ed1ab_0 - - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - - ruamel.yaml=0.18.5=py310h2372a71_0 - - sip=6.7.12=py310hc6cd4ac_0 - sympy=1.12=pypyh9d50eac_103 - - terminado=0.18.0=pyh0d859eb_0 - - tinycss2=1.2.1=pyhd8ed1ab_0 - - typing-extensions=4.9.0=hd8ed1ab_0 - - urllib3=1.26.18=pyhd8ed1ab_0 - - virtualenv=20.25.0=pyhd8ed1ab_0 - - xorg-libxi=1.7.10=h7f98852_0 - - annotated-types=0.6.0=pyhd8ed1ab_0 - - argon2-cffi-bindings=21.2.0=py310h2372a71_4 + - urllib3=2.2.1=pyhd8ed1ab_0 - arpack=3.8.0=nompi_h0baa96a_101 - - arrow=1.3.0=pyhd8ed1ab_0 - - cattrs=23.2.3=pyhd8ed1ab_0 - - compilers=1.6.0=ha770c72_0 - - cryptography=41.0.7=py310hb8475ec_1 - - dsdp=5.8=hd9d9efa_1203 - fflas-ffpack=2.4.3=h912ac81_2 - - fqdn=1.5.1=pyhd8ed1ab_0 - - git=2.43.0=pl5321h7bc287a_0 - - gitpython=3.1.40=pyhd8ed1ab_0 - gsl=2.7=he838d99_0 - - gstreamer=1.22.8=h98fc4e7_0 - - harfbuzz=8.3.0=h3d44ed6_0 - - hatchling=1.21.0=pyhd8ed1ab_0 - iml=1.0.5=hd75c201_1003 - - importlib-resources=6.1.1=pyhd8ed1ab_0 - - importlib_metadata=7.0.0=hd8ed1ab_0 - - jsonschema-specifications=2023.11.2=pyhd8ed1ab_0 - - jupyter_server_terminals=0.5.0=pyhd8ed1ab_0 + - importlib_metadata=7.0.1=hd8ed1ab_0 - liblapacke=3.9.0=20_linux64_openblas - - numpy=1.26.2=py310hb13e2d6_0 - - prompt_toolkit=3.0.42=hd8ed1ab_0 - - pydantic-core=2.14.5=py310hcb5633a_0 - - pyqt5-sip=12.12.2=py310hc6cd4ac_5 + - meson-python=0.15.0=pyh0c530f3_0 + - numpy=1.26.4=py310hb13e2d6_0 - pytest-xdist=3.5.0=pyhd8ed1ab_0 - requests=2.31.0=pyhd8ed1ab_0 - - setuptools-scm=8.0.4=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 - - suitesparse=5.10.1=h3ec001c_2 - - xorg-libxtst=1.2.3=h7f98852_1002 - - argon2-cffi=23.1.0=pyhd8ed1ab_0 - blas-devel=3.9.0=20_linux64_openblas - - cachecontrol=0.13.1=pyhd8ed1ab_0 - contourpy=1.2.0=py310hd41b1e2_0 - - cvxopt=1.3.2=py310h14a12bf_1 - - ensureconda=1.4.3=pyhd8ed1ab_0 - - fpylll=0.6.0=py310h7e26f94_1 + - fpylll=0.6.1=py310h7e26f94_0 - giac=1.9.0.21=h673759e_1 - - gst-plugins-base=1.22.8=h8e1006c_0 - - igraph=0.10.8=h66a01bf_0 - - ipython=8.18.1=pyh707e725_3 - - isoduration=20.11.0=pyhd8ed1ab_0 - - jsonschema=4.20.0=pyhd8ed1ab_0 + - igraph=0.10.10=h153f77b_0 + - ipython=8.22.0=pyh707e725_0 - jupyter_client=8.6.0=pyhd8ed1ab_0 - linbox=1.6.3=ha329b40_8 - - lsprotocol=2023.0.0=pyhd8ed1ab_0 - - openjdk=21.0.1=haa376d0_0 - - pango=1.50.14=ha41ecd1_2 - - pydantic=2.5.2=pyhd8ed1ab_0 - - pythran=0.14.0=py310hcb52e73_1 - scipy=1.11.4=py310hb13e2d6_0 - - secretstorage=3.3.3=py310hff52083_2 - - setuptools_scm=8.0.4=hd8ed1ab_0 - - tox=4.11.4=pyhd8ed1ab_0 - blas=2.120=openblas - - cachecontrol-with-filecache=0.13.1=pyhd8ed1ab_0 - - ipykernel=6.26.0=pyhf8b6a83_0 - - ipywidgets=8.1.1=pyhd8ed1ab_0 - - jmol=14.32.10=ha770c72_0 - - jsonschema-with-format-nongpl=4.20.0=pyhd8ed1ab_0 - - keyring=24.3.0=py310hff52083_0 - - matplotlib-base=3.8.2=py310h62c0568_0 - - nbformat=5.9.2=pyhd8ed1ab_0 - - pygls=1.2.1=pyhd8ed1ab_0 - - qt-main=5.15.8=h82b777d_17 - - r-base=4.3.2=hb8ee39d_1 + - ipykernel=6.29.2=pyhd33586a_0 + - ipywidgets=8.1.2=pyhd8ed1ab_0 + - matplotlib-base=3.8.3=py310h62c0568_0 - rw=0.9=hd590300_1 - - conda-lock=2.5.1=pyhd8ed1ab_0 - - ipympl=0.9.3=pyhd8ed1ab_0 - - jupyter-jsmol=2022.1.0=pyhd8ed1ab_0 - - jupyter_events=0.9.0=pyhd8ed1ab_0 - - nbclient=0.8.0=pyhd8ed1ab_0 - - pyqt=5.15.9=py310h04931ad_5 - - rpy2=3.5.11=py310r43h1f7b6fc_3 - - matplotlib=3.8.2=py310hff52083_0 - - nbconvert-core=7.13.0=pyhd8ed1ab_0 - - jupyter_server=2.12.1=pyhd8ed1ab_0 - - nbconvert-pandoc=7.13.0=pyhd8ed1ab_0 - - jupyter-lsp=2.2.1=pyhd8ed1ab_0 - - jupyterlab_server=2.25.2=pyhd8ed1ab_0 - - nbconvert=7.13.0=pyhd8ed1ab_0 - - notebook-shim=0.2.3=pyhd8ed1ab_0 - - jupyterlab=4.0.9=pyhd8ed1ab_0 - - notebook=7.0.6=pyhd8ed1ab_0 - - esbonio=0.16.3=pyhd8ed1ab_0 - - jupyter_sphinx=0.4.0=py310hff52083_1 - sphinx-basic-ng=1.0.0b2=pyhd8ed1ab_1 - - furo=2023.9.10=pyhd8ed1ab_0 - - sphinx-copybutton=0.5.2=pyhd8ed1ab_0 - - sphinxcontrib-applehelp=1.0.7=pyhd8ed1ab_0 - - sphinxcontrib-devhelp=1.0.5=pyhd8ed1ab_0 - - sphinxcontrib-htmlhelp=2.0.4=pyhd8ed1ab_0 - - sphinxcontrib-qthelp=1.0.6=pyhd8ed1ab_0 + - furo=2024.1.29=pyhd8ed1ab_0 + - sphinx-inline-tabs=2023.4.21=pyhd8ed1ab_0 + - sphinxcontrib-applehelp=1.0.8=pyhd8ed1ab_0 + - sphinxcontrib-devhelp=1.0.6=pyhd8ed1ab_0 + - sphinxcontrib-htmlhelp=2.0.5=pyhd8ed1ab_0 + - sphinxcontrib-qthelp=1.0.7=pyhd8ed1ab_0 - sphinx=7.2.6=pyhd8ed1ab_0 - - sphinxcontrib-serializinghtml=1.1.9=pyhd8ed1ab_0 - - sphinxcontrib-websupport=1.2.6=pyhd8ed1ab_0 + - sphinxcontrib-serializinghtml=1.1.10=pyhd8ed1ab_0 diff --git a/src/environment-dev-3.10-macos-arm64.yml b/src/environment-dev-3.10-macos-arm64.yml index d86a78207a8..b9af09265b7 100644 --- a/src/environment-dev-3.10-macos-arm64.yml +++ b/src/environment-dev-3.10-macos-arm64.yml @@ -1,444 +1,262 @@ # Generated by conda-lock. # platform: osx-arm64 -# input_hash: eff22b2db37bc406cee8452950a7798c9503f58420a2ce0031b9564d18b33696 +# input_hash: 988991bcd1e95620068de1a155c3b397a4d8d455214525dcdb0fa0ed3f2382f4 channels: - conda-forge dependencies: - - _r-mutex=1.0.1=anacondar_1 - - bc=1.07.1=h3422bc3_0 - bzip2=1.0.8=h93a5062_5 - - c-ares=1.24.0=h93a5062_0 - - ca-certificates=2023.11.17=hf0a4a13_0 + - c-ares=1.27.0=h93a5062_0 + - ca-certificates=2024.2.2=hf0a4a13_0 - cliquer=1.22=h27ca646_0 - font-ttf-dejavu-sans-mono=2.37=hab24e00_0 - font-ttf-inconsolata=3.000=h77eed37_0 - font-ttf-source-code-pro=2.038=h77eed37_0 - font-ttf-ubuntu=0.83=h77eed37_1 - - fribidi=1.0.10=h27ca646_0 - - gh=2.40.1=h75b854d_0 - giflib=5.2.1=h1a8c8d9_3 - - jpeg=9e=h1a8c8d9_3 - - libatomic_ops=7.6.14=h1a8c8d9_0 + - icu=73.2=hc8870d7_0 + - libboost-headers=1.84.0=hce30654_1 - libbrotlicommon=1.1.0=hb547adb_1 - libcxx=16.0.6=h4653b0c_0 - - libdeflate=1.17=h1a8c8d9_0 + - libdeflate=1.19=hb547adb_0 - libev=4.33=h93a5062_2 - libexpat=2.5.0=hb7217d7_1 - libffi=3.4.2=h3422bc3_5 - - libgfortran-devel_osx-arm64=12.3.0=hc62be1c_1 - libiconv=1.17=h0d3ecfb_2 + - libjpeg-turbo=3.0.0=hb547adb_1 - libsodium=1.0.18=h27ca646_1 - - libtool=2.4.7=hb7217d7_0 - - libuv=1.46.0=hb547adb_0 - - libwebp-base=1.2.4=h1a8c8d9_0 + - libwebp-base=1.3.2=hb547adb_0 - libzlib=1.2.13=h53f4e23_5 - llvm-openmp=17.0.6=hcd81f8e_0 - - m4=1.4.18=h642e427_1001 - - make=4.3=he57ea6c_1 - - mathjax=3.2.2=hce30654_0 - - nauty=2.8.8=h93a5062_0 + - nauty=2.8.8=h93a5062_1 - palp=2.20=h27ca646_0 - - pandoc=3.1.3=hce30654_0 - pari-elldata=0.0.20161017=0 - pari-galdata=0.0.20180411=0 - - pari-galpol=0.0.20180625=0 - pari-seadata-small=0.0.20090618=0 - - patch=2.7.6=h27ca646_1002 - - perl=5.32.1=4_hf2054a2_perl5 + - perl=5.32.1=7_h4614cfb_perl5 - planarity=3.0.0.5=h27ca646_1002 - pthread-stubs=0.4=h27ca646_1001 - python_abi=3.10=4_cp310 - - rhash=1.4.3=hb547adb_2 - - sagemath-db-combinatorial-designs=20140630=1 - - sagemath-db-graphs=20210214=hd8ed1ab_0 - - sagemath-db-polytopes=20170220=1 - - tbb=2021.10.0=h1995070_2 - - three.js=122=hd8ed1ab_2 - - tzdata=2023c=h71feb2d_0 + - tzdata=2024a=h0c530f3_0 - xorg-libxau=1.0.11=hb547adb_0 - xorg-libxdmcp=1.1.3=h27ca646_0 - xz=5.2.6=h57fd34a_0 - - yaml=0.2.5=h3422bc3_2 - - autoconf=2.71=pl5321hcd07c0c_1 - bdw-gc=8.0.6=hc021e02_0 - expat=2.5.0=hb7217d7_1 - fonts-conda-forge=1=0 - - gengetopt=2.23=hbdafb3b_0 - gettext=0.21.1=h0186832_0 - gf2x=1.3.0=hdaa854c_2 - gmp=6.3.0=h965bd2d_0 - - graphite2=1.3.13=h9f76cd9_1001 - - icu=70.1=h6b3803e_0 - - isl=0.25=h9a09cb3_0 - lerc=4.0.0=h9a09cb3_0 - libbraiding=1.2=hb7217d7_0 - libbrotlidec=1.1.0=hb547adb_1 - libbrotlienc=1.1.0=hb547adb_1 - - libcbor=0.10.2=hb7217d7_0 - - libgfortran5=13.2.0=hf226fd6_1 - - libpng=1.6.39=h76d750c_0 - - libsqlite=3.44.2=h091b4b1_0 - - libxcb=1.13=h9b22ae9_1004 - - lrcalc=2.1=hb7217d7_5 - - metis=5.1.1=h965bd2d_2 + - libgfortran5=13.2.0=hf226fd6_3 + - libpng=1.6.42=h091b4b1_0 + - libsqlite=3.45.1=h091b4b1_0 + - libxcb=1.15=hf346824_0 + - libxml2=2.12.5=h0d0cfa8_0 + - lrcalc=2.1=hebf3989_6 - ncurses=6.4=h463b476_2 - ninja=1.11.1=hffc8910_0 - - openjdk=21.0.1=hed44d8b_0 - - openssl=3.2.0=h0d3ecfb_1 + - openssl=3.2.1=h0d3ecfb_0 - pari-seadata=0.0.20090618=0 - - pcre2=10.40=hb34f9b4_0 - - pixman=0.42.2=h13dd4ca_0 + - pcre2=10.42=h26f9a81_0 - primesieve=11.0=hb7217d7_0 - qhull=2020.2=hc021e02_2 - symmetrica=3.0.1=hb7217d7_0 - tapi=1100.0.11=he4954df_0 - - tar=1.34=h7cb298e_1 - - threejs-sage=122=hd8ed1ab_2 - tk=8.6.13=h5083fa2_1 - zeromq=4.3.5=h965bd2d_0 - zlib=1.2.13=h53f4e23_5 - zstd=1.5.5=h4f39d0f_0 - - automake=1.16.5=pl5321hce30654_0 - - boost-cpp=1.81.0=hf96b251_0 - brotli-bin=1.1.0=hb547adb_1 - - bwidget=1.9.14=hce30654_1 - cddlib=1!0.94m=h6d7a090_0 - ecm=7.0.4=h47c7c1a_1002 - fonts-conda-ecosystem=1=0 - freetype=2.12.1=hadb7bae_2 - givaro=4.1.1=h0cdca34_3 - glpk=5.0=h6d7a090_0 - - jmol=14.32.10=hce30654_0 + - libboost=1.84.0=h8e0f962_1 - libedit=3.1.20191231=hc8eb9b7_2 - - libfido2=1.14.0=h8d15234_0 - - libgfortran=5.0.0=13_2_0_hd922786_1 - - libglib=2.78.1=hd9b11f9_0 + - libgfortran=5.0.0=13_2_0_hd922786_3 + - libglib=2.78.4=h1635a5e_0 - libhomfly=1.02r6=h27ca646_0 + - libllvm16=16.0.6=haab561b_3 - libnghttp2=1.58.0=ha4dd798_1 - libssh2=1.11.0=h7a5bd25_0 - - libtiff=4.5.0=h5dffbdd_2 - - libxml2=2.10.3=h67585b2_4 + - libtiff=4.6.0=ha8a6c65_2 - m4ri=20140914=h17b34a0_1005 - mpfr=4.2.1=h9546428_0 - ntl=11.4.3=hbb3f309_1 - primecount=7.6=hb6e4faa_0 - readline=8.2=h92ec313_1 - sigtool=0.1.3=h44b9a77_0 - - tachyon=0.99b6=hfb72b2a_1001 - - texinfo=7.0=pl5321h9ea1dce_0 - - tktable=2.10=hd996620_5 - brotli=1.1.0=hb547adb_1 - ecl=21.2.1=h8492d4d_2 - - fftw=3.3.10=nompi_h3046061_108 - fontconfig=2.14.2=h82840c6_0 - gap-core=4.12.2=he8f4e70_3 - gfan=0.6.2=hec08f5c_1003 - - krb5=1.20.1=h69eda48_0 - - lcms2=2.15=h481adae_0 + - krb5=1.21.2=h92f50d5_0 + - lcms2=2.16=ha0e7c42_0 + - ld64_osx-arm64=609=ha4bd21c_16 + - libboost-devel=1.84.0=hf450f58_1 - libbrial=1.2.12=ha7f5006_1 + - libclang-cpp16=16.0.6=default_he012953_5 - libflint=3.0.1=h28749a5_ntl_100 - - libllvm15=15.0.7=h62b9111_1 - libopenblas=0.3.25=openmp_h6c19121_0 - - libwebp=1.2.4=h999c80f_1 + - libwebp=1.3.2=hf30222e_1 + - llvm-tools=16.0.6=haab561b_3 - m4rie=20150908=h17b34a0_1001 - mpc=1.3.1=h91ba8db_0 - mpfi=1.5.4=hbde5f5b_1001 - - openjpeg=2.5.0=hbc2ba62_2 + - openjpeg=2.5.0=h4c1507b_3 - pari=2.15.4=haeeeed7_2_pthread - pkg-config=0.29.2=hab62308_1008 - ppl=1.2=h8b147cf_1006 - - python=3.10.13=h2469fbe_0_cpython + - python=3.10.13=h2469fbe_1_cpython - qd=2.3.22=hbec66e7_1004 - - sqlite=3.44.2=hf2abe2d_0 - - alabaster=0.7.13=pyhd8ed1ab_0 - - appdirs=1.4.4=pyh9f0ad1d_0 - - appnope=0.1.3=pyhd8ed1ab_0 - - attrs=23.1.0=pyh71513ae_1 + - alabaster=0.7.16=pyhd8ed1ab_0 + - appnope=0.1.4=pyhd8ed1ab_0 + - boost-cpp=1.84.0=hca5e981_1 - brial=1.2.12=pyh694c41f_1 - brotli-python=1.1.0=py310h1253130_1 - - cached_property=1.5.2=pyha770c72_1 - - cachetools=5.3.2=pyhd8ed1ab_0 - - cachy=0.3.0=pyhd8ed1ab_1 - - cairo=1.16.0=h73a0509_1014 - - certifi=2023.11.17=pyhd8ed1ab_0 - - chardet=5.2.0=py310hbe9552e_1 + - cctools_osx-arm64=973.0.1=h62378fb_16 + - certifi=2024.2.2=pyhd8ed1ab_0 - charset-normalizer=3.3.2=pyhd8ed1ab_0 - - click=8.1.7=unix_pyh707e725_0 + - clang-16=16.0.6=default_he012953_5 - colorama=0.4.6=pyhd8ed1ab_0 - - conway-polynomials=0.8=pyhd8ed1ab_0 - - crashtest=0.4.1=pyhd8ed1ab_0 + - conway-polynomials=0.9=pyhd8ed1ab_0 - cycler=0.12.1=pyhd8ed1ab_0 - cysignals=1.11.2=py310hfd3b3fe_3 - - cython=3.0.7=py310h692a8b6_0 - - debugpy=1.8.0=py310h1253130_1 + - cython=3.0.8=py310h692a8b6_0 + - debugpy=1.8.1=py310h692a8b6_0 - decorator=5.1.1=pyhd8ed1ab_0 - - defusedxml=0.7.1=pyhd8ed1ab_0 - - distlib=0.3.8=pyhd8ed1ab_0 - docutils=0.20.1=py310hbe9552e_3 - - eclib=20231211=h7f07de4_0 - - editables=0.3=pyhd8ed1ab_0 - - entrypoints=0.4=pyhd8ed1ab_0 - - exceptiongroup=1.2.0=pyhd8ed1ab_0 + - eclib=20231212=h7f07de4_0 + - exceptiongroup=1.2.0=pyhd8ed1ab_2 - execnet=2.0.2=pyhd8ed1ab_0 - executing=2.0.1=pyhd8ed1ab_0 - - filelock=3.13.1=pyhd8ed1ab_0 - - flit-core=3.9.0=pyhd8ed1ab_0 - fplll=5.4.5=hb7d509d_0 - gap-defaults=4.12.2=hce30654_3 - - gast=0.5.4=pyhd8ed1ab_0 - - gfortran_impl_osx-arm64=12.3.0=hbbb9e1e_1 - gmpy2=2.1.2=py310h2e6cad2_1 - idna=3.6=pyhd8ed1ab_0 - imagesize=1.4.1=pyhd8ed1ab_0 - iniconfig=2.0.0=pyhd8ed1ab_0 - - ipython_genutils=0.2.0=py_1 - - json5=0.9.14=pyhd8ed1ab_0 - - jsonpointer=2.4=py310hbe9552e_3 - - jupyterlab_widgets=3.0.9=pyhd8ed1ab_0 + - jupyterlab_widgets=3.0.10=pyhd8ed1ab_0 - kiwisolver=1.4.5=py310h38f39d4_1 - lcalc=2.0.5=hc94e8e6_1 - - ld64_osx-arm64=609=hc4dc95b_15 + - ld64=609=h634c8be_16 - libblas=3.9.0=20_osxarm64_openblas - - libclang-cpp15=15.0.7=default_hd209bcb_4 - - libcurl=8.1.2=h912dcd9_0 - - libgd=2.3.3=h90fb8ed_4 - - llvm-tools=15.0.7=h62b9111_1 - - markupsafe=2.1.3=py310h2aa6e3c_1 + - libcurl=8.5.0=h2d989ff_0 + - libgd=2.3.3=hfdf3952_9 + - markupsafe=2.1.5=py310hd125d64_0 - maxima=5.45.0=h6032a66_2 - - mistune=3.0.2=pyhd8ed1ab_0 - - more-itertools=10.1.0=pyhd8ed1ab_0 - mpmath=1.3.0=pyhd8ed1ab_0 - - msgpack-python=1.0.7=py310hd137fd4_0 - munkres=1.1.4=pyh9f0ad1d_0 - - nest-asyncio=1.5.8=pyhd8ed1ab_0 + - nest-asyncio=1.6.0=pyhd8ed1ab_0 - networkx=3.2.1=pyhd8ed1ab_0 - openblas=0.3.25=openmp_h55c453e_0 - - openssh=9.3p1=h7126958_1 - packaging=23.2=pyhd8ed1ab_0 - - pandocfilters=1.5.0=pyhd8ed1ab_0 - parso=0.8.3=pyhd8ed1ab_0 - - pastel=0.2.1=pyhd8ed1ab_0 - - pathspec=0.12.1=pyhd8ed1ab_0 - pickleshare=0.7.5=py_1003 - - pillow=9.4.0=py310h5a7539a_1 + - pillow=10.2.0=py310hfae7ebd_0 - pkgconfig=1.5.5=pyhd8ed1ab_4 - - pkginfo=1.9.6=pyhd8ed1ab_0 - - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 - - platformdirs=4.1.0=pyhd8ed1ab_0 - - pluggy=1.3.0=pyhd8ed1ab_0 - - ply=3.11=py_1 - - prometheus_client=0.19.0=pyhd8ed1ab_0 - - psutil=5.9.7=py310hd125d64_0 + - platformdirs=4.2.0=pyhd8ed1ab_0 + - pluggy=1.4.0=pyhd8ed1ab_0 + - psutil=5.9.8=py310hd125d64_0 - ptyprocess=0.7.0=pyhd3deb0d_0 - pure_eval=0.2.2=pyhd8ed1ab_0 - - py=1.11.0=pyh6c4a22f_0 - - pybind11-global=2.11.1=py310h38f39d4_2 - - pycodestyle=2.11.1=pyhd8ed1ab_0 - - pycparser=2.21=pyhd8ed1ab_0 - pygments=2.17.2=pyhd8ed1ab_0 - - pylev=1.4.0=pyhd8ed1ab_0 - pyparsing=3.1.1=pyhd8ed1ab_0 - - pyrsistent=0.20.0=py310hd125d64_0 - pysocks=1.7.1=pyha2e5f31_6 - - pyspellchecker=0.7.2=pyhd8ed1ab_0 - - python-fastjsonschema=2.19.0=pyhd8ed1ab_0 - - python-json-logger=2.0.7=pyhd8ed1ab_0 - - python-lrcalc=2.1=py310h0f1eb42_5 - - python-tzdata=2023.3=pyhd8ed1ab_0 - - pytz=2023.3.post1=pyhd8ed1ab_0 - - pyyaml=6.0.1=py310h2aa6e3c_1 + - pytz=2024.1=pyhd8ed1ab_0 - pyzmq=25.1.2=py310hbb13138_0 - - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.15.2=py310hd442715_0 - - ruamel.yaml.clib=0.2.7=py310h2aa6e3c_2 - - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 - - sagetex=3.6.1=pyhd8ed1ab_0 - - setuptools=68.2.2=pyhd8ed1ab_0 - - simplegeneric=0.8.1=py_1 + - setuptools=69.1.0=pyhd8ed1ab_1 - singular=4.3.2.p8=hb460b52_1 - six=1.16.0=pyh6c4a22f_0 - - smmap=5.0.0=pyhd8ed1ab_0 - - sniffio=1.3.0=pyhd8ed1ab_0 - snowballstemmer=2.2.0=pyhd8ed1ab_0 - soupsieve=2.5=pyhd8ed1ab_1 - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_0 - sympow=2.023.6=hb0babe8_3 - tomli=2.0.1=pyhd8ed1ab_0 - - tomlkit=0.12.3=pyha770c72_0 - - toolz=0.12.0=pyhd8ed1ab_0 - - tornado=6.3.3=py310h2aa6e3c_1 - - traitlets=5.14.0=pyhd8ed1ab_0 - - trove-classifiers=2023.11.29=pyhd8ed1ab_0 - - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 + - tornado=6.4=py310hd125d64_0 + - traitlets=5.14.1=pyhd8ed1ab_0 - typing_extensions=4.9.0=pyha770c72_0 - - typing_utils=0.1.0=pyhd8ed1ab_0 - - tzlocal=5.2=py310hbe9552e_0 - unicodedata2=15.1.0=py310h2aa6e3c_0 - - uri-template=1.3.0=pyhd8ed1ab_0 - - wcwidth=0.2.12=pyhd8ed1ab_0 - - webcolors=1.13=pyhd8ed1ab_0 - - webencodings=0.5.1=pyhd8ed1ab_2 - - websocket-client=1.7.0=pyhd8ed1ab_0 + - wcwidth=0.2.13=pyhd8ed1ab_0 - wheel=0.42.0=pyhd8ed1ab_0 - - widgetsnbextension=4.0.9=pyhd8ed1ab_0 + - widgetsnbextension=4.0.10=pyhd8ed1ab_0 - zipp=3.17.0=pyhd8ed1ab_0 - - anyio=4.2.0=pyhd8ed1ab_0 - asttokens=2.4.1=pyhd8ed1ab_0 - - async-lru=2.0.4=pyhd8ed1ab_0 - babel=2.14.0=pyhd8ed1ab_0 - - beautifulsoup4=4.12.2=pyha770c72_0 - - beniget=0.4.1=pyhd8ed1ab_0 - - bleach=6.1.0=pyhd8ed1ab_0 - - cached-property=1.5.2=hd8ed1ab_1 - - cctools_osx-arm64=973.0.1=h2a25c60_15 - - cffi=1.16.0=py310hdcd7c05_0 - - clang-15=15.0.7=default_hd209bcb_4 - - click-default-group=1.2.4=pyhd8ed1ab_0 - - clikit=0.6.2=pyhd8ed1ab_2 - - cmake=3.26.4=hc0af03a_0 - - comm=0.1.4=pyhd8ed1ab_0 - - cppy=1.2.1=pyhd8ed1ab_0 - - curl=8.1.2=h912dcd9_0 - - cypari2=2.1.3=py310h13936bf_2 - - deprecation=2.1.0=pyh9f0ad1d_0 - - fonttools=4.47.0=py310hd125d64_0 - - gitdb=4.0.11=pyhd8ed1ab_0 - - harfbuzz=6.0.0=hddbc195_0 - - html5lib=1.1=pyh9f0ad1d_0 - - importlib-metadata=7.0.0=pyha770c72_0 + - beautifulsoup4=4.12.3=pyha770c72_0 + - cctools=973.0.1=h4faf515_16 + - clang=16.0.6=h30cc82d_5 + - comm=0.2.1=pyhd8ed1ab_0 + - coverage=7.4.2=py310hd125d64_0 + - cypari2=2.1.4=py310h5e3d6bc_2 + - fonttools=4.49.0=py310hd125d64_0 + - importlib-metadata=7.0.1=pyha770c72_0 - importlib_resources=6.1.1=pyhd8ed1ab_0 - - jaraco.classes=3.3.0=pyhd8ed1ab_0 - jedi=0.19.1=pyhd8ed1ab_0 - - jinja2=3.1.2=pyhd8ed1ab_1 - - jupyter_core=5.5.1=py310hbe9552e_0 - - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 - - ld64=609=h89fa09d_15 + - jinja2=3.1.3=pyhd8ed1ab_0 + - jupyter_core=5.7.1=py310hbe9552e_0 - libcblas=3.9.0=20_osxarm64_openblas - liblapack=3.9.0=20_osxarm64_openblas - matplotlib-inline=0.1.6=pyhd8ed1ab_0 - memory-allocator=0.1.3=py310h2aa6e3c_0 - - overrides=7.4.0=pyhd8ed1ab_0 - - pexpect=4.8.0=pyh1a96a4e_2 - - pip=23.3.2=pyhd8ed1ab_0 + - meson=1.3.2=pyhd8ed1ab_0 + - pexpect=4.9.0=pyhd8ed1ab_0 + - pip=24.0=pyhd8ed1ab_0 - pplpy=0.8.9=py310hab1f656_0 - primecountpy=0.1.0=py310h38f39d4_4 - prompt-toolkit=3.0.42=pyha770c72_0 - - pybind11=2.11.1=py310h38f39d4_2 - - pyobjc-core=10.1=py310hb3aa912_0 - - pyproject-api=1.6.1=pyhd8ed1ab_0 - - pytest=7.4.3=pyhd8ed1ab_0 + - pyproject-metadata=0.7.1=pyhd8ed1ab_0 + - pytest=8.0.1=pyhd8ed1ab_1 - python-dateutil=2.8.2=pyhd8ed1ab_0 - - pytz-deprecation-shim=0.1.0.post0=py310hbe9552e_4 - - referencing=0.32.0=pyhd8ed1ab_0 - - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - - ruamel.yaml=0.18.5=py310hd125d64_0 - sympy=1.12=pypyh9d50eac_103 - - terminado=0.18.0=pyh31c8845_0 - - tinycss2=1.2.1=pyhd8ed1ab_0 - - typing-extensions=4.9.0=hd8ed1ab_0 - - urllib3=1.26.18=pyhd8ed1ab_0 - - virtualenv=20.25.0=pyhd8ed1ab_0 - - annotated-types=0.6.0=pyhd8ed1ab_0 - - argon2-cffi-bindings=21.2.0=py310h2aa6e3c_4 - - arpack=3.7.0=h58ebc17_2 - - arrow=1.3.0=pyhd8ed1ab_0 - - cattrs=23.2.3=pyhd8ed1ab_0 - - cctools=973.0.1=hd1ac623_15 - - clang=15.0.7=haab561b_4 - - dsdp=5.8=h9397a75_1203 + - urllib3=2.2.1=pyhd8ed1ab_0 + - arpack=3.8.0=nompi_ha3438d0_101 + - clangxx=16.0.6=default_h4cf2255_5 - fflas-ffpack=2.4.3=h11f2abc_2 - - fqdn=1.5.1=pyhd8ed1ab_0 - - git=2.42.0=pl5321h46e2b6d_0 - - gitpython=3.1.40=pyhd8ed1ab_0 - gsl=2.7=h6e638da_0 - - hatchling=1.21.0=pyhd8ed1ab_0 - iml=1.0.5=hd52f0d1_1003 - - importlib-resources=6.1.1=pyhd8ed1ab_0 - - importlib_metadata=7.0.0=hd8ed1ab_0 - - jsonschema-specifications=2023.11.2=pyhd8ed1ab_0 - - jupyter_server_terminals=0.5.0=pyhd8ed1ab_0 + - importlib_metadata=7.0.1=hd8ed1ab_0 - liblapacke=3.9.0=20_osxarm64_openblas - - numpy=1.26.2=py310h30ee222_0 - - pango=1.50.14=h6c112b8_0 - - prompt_toolkit=3.0.42=hd8ed1ab_0 - - pydantic-core=2.14.5=py310hd442715_0 - - pyobjc-framework-cocoa=10.1=py310hb3aa912_0 + - meson-python=0.15.0=pyh0c530f3_0 + - numpy=1.26.4=py310hd45542a_0 - pytest-xdist=3.5.0=pyhd8ed1ab_0 - requests=2.31.0=pyhd8ed1ab_0 - - setuptools-scm=8.0.4=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 - - suitesparse=5.10.1=h88be0ae_2 - - argon2-cffi=23.1.0=pyhd8ed1ab_0 - blas-devel=3.9.0=20_osxarm64_openblas - - cachecontrol=0.13.1=pyhd8ed1ab_0 - - clangxx=15.0.7=default_h5c94ee4_4 + - compiler-rt_osx-arm64=16.0.6=h3808999_2 - contourpy=1.2.0=py310hd137fd4_0 - - cvxopt=1.3.2=py310hadc6ad6_1 - - ensureconda=1.4.3=pyhd8ed1ab_0 - - fpylll=0.6.0=py310hc79cb59_1 + - fpylll=0.6.1=py310hd9be144_0 - giac=1.9.0.21=h1c96721_1 - - igraph=0.9.10=hcec9b84_1 - - ipython=8.18.1=pyh707e725_3 - - isoduration=20.11.0=pyhd8ed1ab_0 - - jsonschema=4.20.0=pyhd8ed1ab_0 + - igraph=0.10.10=h48be1ad_0 + - ipython=8.22.0=pyh707e725_0 - jupyter_client=8.6.0=pyhd8ed1ab_0 - - keyring=24.3.0=py310hbe9552e_0 - linbox=1.6.3=h380be0f_8 - - lsprotocol=2023.0.0=pyhd8ed1ab_0 - - pydantic=2.5.2=pyhd8ed1ab_0 - scipy=1.11.4=py310h2b794db_0 - - send2trash=1.8.2=pyhd1c38e8_0 - - setuptools_scm=8.0.4=hd8ed1ab_0 - - tox=4.11.4=pyhd8ed1ab_0 - blas=2.120=openblas - - cachecontrol-with-filecache=0.13.1=pyhd8ed1ab_0 - - compiler-rt_osx-arm64=15.0.7=h3808999_2 - - ipykernel=6.26.0=pyh3cd1d5f_0 - - ipywidgets=8.1.1=pyhd8ed1ab_0 - - jsonschema-with-format-nongpl=4.20.0=pyhd8ed1ab_0 - - matplotlib-base=3.8.2=py310h9d2df84_0 - - nbformat=5.9.2=pyhd8ed1ab_0 - - pygls=1.2.1=pyhd8ed1ab_0 - - rw=0.9=h3422bc3_0 - - compiler-rt=15.0.7=h3808999_2 - - conda-lock=2.5.1=pyhd8ed1ab_0 - - ipympl=0.9.3=pyhd8ed1ab_0 - - jupyter-jsmol=2022.1.0=pyhd8ed1ab_0 - - jupyter_events=0.9.0=pyhd8ed1ab_0 - - matplotlib=3.8.2=py310hb6292c7_0 - - nbclient=0.8.0=pyhd8ed1ab_0 - - clang_impl_osx-arm64=15.0.7=h77e971b_7 - - nbconvert-core=7.13.0=pyhd8ed1ab_0 - - clang_osx-arm64=15.0.7=h54d7cd3_7 - - jupyter_server=2.12.1=pyhd8ed1ab_0 - - nbconvert-pandoc=7.13.0=pyhd8ed1ab_0 - - c-compiler=1.6.0=hd291e01_0 - - clangxx_impl_osx-arm64=15.0.7=h768a7fd_7 - - gfortran_osx-arm64=12.3.0=h57527a5_1 - - jupyter-lsp=2.2.1=pyhd8ed1ab_0 - - jupyterlab_server=2.25.2=pyhd8ed1ab_0 - - nbconvert=7.13.0=pyhd8ed1ab_0 - - notebook-shim=0.2.3=pyhd8ed1ab_0 - - clangxx_osx-arm64=15.0.7=h54d7cd3_7 - - gfortran=12.3.0=h1ca8e4b_1 - - jupyterlab=4.0.9=pyhd8ed1ab_0 - - cxx-compiler=1.6.0=h1995070_0 - - fortran-compiler=1.6.0=h5a50232_0 - - notebook=7.0.6=pyhd8ed1ab_0 - - pythran=0.14.0=py310he53c7d2_1 - - r-base=4.1.3=h9c4d319_6 - - compilers=1.6.0=hce30654_0 - - rpy2=3.5.11=py310r41hf1a086a_0 - - esbonio=0.16.3=pyhd8ed1ab_0 - - jupyter_sphinx=0.1.4=py_0 + - compiler-rt=16.0.6=h3808999_2 + - ipykernel=6.29.2=pyh3cd1d5f_0 + - ipywidgets=8.1.2=pyhd8ed1ab_0 + - matplotlib-base=3.8.3=py310h2439c42_0 + - rw=0.9=h93a5062_1 + - clang_impl_osx-arm64=16.0.6=hc421ffc_9 + - clang_osx-arm64=16.0.6=h54d7cd3_9 + - c-compiler=1.6.0=h6aa9301_0 + - clangxx_impl_osx-arm64=16.0.6=hcd7bac0_9 + - clangxx_osx-arm64=16.0.6=h54d7cd3_9 + - cxx-compiler=1.6.0=h2ffa867_0 - sphinx-basic-ng=1.0.0b2=pyhd8ed1ab_1 - - furo=2023.9.10=pyhd8ed1ab_0 - - sphinx-copybutton=0.5.2=pyhd8ed1ab_0 - - sphinxcontrib-applehelp=1.0.7=pyhd8ed1ab_0 - - sphinxcontrib-devhelp=1.0.5=pyhd8ed1ab_0 - - sphinxcontrib-htmlhelp=2.0.4=pyhd8ed1ab_0 - - sphinxcontrib-qthelp=1.0.6=pyhd8ed1ab_0 + - furo=2024.1.29=pyhd8ed1ab_0 + - sphinx-inline-tabs=2023.4.21=pyhd8ed1ab_0 + - sphinxcontrib-applehelp=1.0.8=pyhd8ed1ab_0 + - sphinxcontrib-devhelp=1.0.6=pyhd8ed1ab_0 + - sphinxcontrib-htmlhelp=2.0.5=pyhd8ed1ab_0 + - sphinxcontrib-qthelp=1.0.7=pyhd8ed1ab_0 - sphinx=7.2.6=pyhd8ed1ab_0 - - sphinxcontrib-serializinghtml=1.1.9=pyhd8ed1ab_0 - - sphinxcontrib-websupport=1.2.6=pyhd8ed1ab_0 + - sphinxcontrib-serializinghtml=1.1.10=pyhd8ed1ab_0 diff --git a/src/environment-dev-3.10-macos.yml b/src/environment-dev-3.10-macos.yml index c35a0480400..b37308b1a4b 100644 --- a/src/environment-dev-3.10-macos.yml +++ b/src/environment-dev-3.10-macos.yml @@ -1,124 +1,87 @@ # Generated by conda-lock. # platform: osx-64 -# input_hash: 6eb9d5d3e7cea14a6487c37418ba6c346a5e94b0bbb07ea1594ce8447bc2d700 +# input_hash: be1d55049d9f6d603c39ad3609f7dcf79e8517bb06a0084908f84a182e2caf97 channels: - conda-forge dependencies: - - _r-mutex=1.0.1=anacondar_1 - - bc=1.07.1=h0d85af4_0 - bzip2=1.0.8=h10d778d_5 - - c-ares=1.24.0=h10d778d_0 - - ca-certificates=2023.11.17=h8857fd0_0 + - c-ares=1.27.0=h10d778d_0 + - ca-certificates=2024.2.2=h8857fd0_0 - cliquer=1.22=hbcb3906_0 - font-ttf-dejavu-sans-mono=2.37=hab24e00_0 - font-ttf-inconsolata=3.000=h77eed37_0 - font-ttf-source-code-pro=2.038=h77eed37_0 - font-ttf-ubuntu=0.83=h77eed37_1 - - fribidi=1.0.10=hbcb3906_0 - - gh=2.40.1=h990441c_0 - giflib=5.2.1=hb7f2c08_3 - icu=73.2=hf5e326d_0 - - libatomic_ops=7.6.14=hb7f2c08_0 - - libboost-headers=1.84.0=h694c41f_0 + - libboost-headers=1.84.0=h694c41f_1 - libbrotlicommon=1.1.0=h0dc2134_1 - libcxx=16.0.6=hd57cbcb_0 - libdeflate=1.19=ha4e1b8e_0 - libev=4.33=h10d778d_2 - libexpat=2.5.0=hf0c8a7f_1 - libffi=3.4.2=h0d85af4_5 - - libgfortran-devel_osx-64=12.3.0=h0b6f5ec_1 - libiconv=1.17=hd75f5a5_2 - libjpeg-turbo=3.0.0=h0dc2134_1 - libsodium=1.0.18=hbcb3906_1 - - libtool=2.4.7=hf0c8a7f_0 - - libuv=1.46.0=h0c2f820_0 - libwebp-base=1.3.2=h0dc2134_0 - libzlib=1.2.13=h8a1eda9_5 - llvm-openmp=17.0.6=hb6ac08f_0 - - m4=1.4.18=haf1e3a3_1001 - - make=4.3=h22f3db7_1 - - mathjax=3.2.2=h694c41f_0 - - nauty=2.8.8=h10d778d_0 + - nauty=2.8.8=h10d778d_1 - palp=2.20=hbcb3906_0 - pari-elldata=0.0.20161017=0 - pari-galdata=0.0.20180411=0 - - pari-galpol=0.0.20180625=0 - pari-seadata-small=0.0.20090618=0 - - patch=2.7.6=hbcf498f_1002 - - perl=5.32.1=4_h0dc2134_perl5 + - perl=5.32.1=7_h10d778d_perl5 - planarity=3.0.0.5=hbcb3906_1002 - pthread-stubs=0.4=hc929b4f_1001 - python_abi=3.10=4_cp310 - - rhash=1.4.4=h0dc2134_0 - - sagemath-db-combinatorial-designs=20140630=1 - - sagemath-db-graphs=20210214=hd8ed1ab_0 - - sagemath-db-polytopes=20170220=1 - - three.js=122=hd8ed1ab_2 - - tzdata=2023c=h71feb2d_0 + - tzdata=2024a=h0c530f3_0 - xorg-libxau=1.0.11=h0dc2134_0 - xorg-libxdmcp=1.1.3=h35c211d_0 - xz=5.2.6=h775f41a_0 - - yaml=0.2.5=h0d85af4_2 - - autoconf=2.71=pl5321hed12c24_1 - bdw-gc=8.0.6=h940c156_0 - expat=2.5.0=hf0c8a7f_1 - fonts-conda-forge=1=0 - - gengetopt=2.23=he49afe7_0 - gettext=0.21.1=h8a4c099_0 - gf2x=1.3.0=hb2a7efb_2 - gmp=6.3.0=h93d8f39_0 - - graphite2=1.3.13=h2e338ed_1001 - - isl=0.25=hb486fe8_0 - lerc=4.0.0=hb486fe8_0 - libbraiding=1.2=hf0c8a7f_0 - libbrotlidec=1.1.0=h0dc2134_1 - libbrotlienc=1.1.0=h0dc2134_1 - - libcbor=0.10.2=hf0c8a7f_0 - - libgfortran5=13.2.0=h2873a65_1 - - libpng=1.6.39=ha978bb4_0 - - libsqlite=3.44.2=h92b6c6a_0 + - libgfortran5=13.2.0=h2873a65_3 + - libpng=1.6.42=h92b6c6a_0 + - libsqlite=3.45.1=h92b6c6a_0 - libxcb=1.15=hb7f2c08_0 - - libxml2=2.11.6=hc0ae0f7_0 - - lrcalc=2.1=hf0c8a7f_5 - - metis=5.1.1=h93d8f39_2 + - libxml2=2.12.5=hc0ae0f7_0 + - lrcalc=2.1=h73e2aa4_6 - ncurses=6.4=h93d8f39_2 - ninja=1.11.1=hb8565cd_0 - - openjdk=21.0.1=hf4d7fad_0 - - openssl=3.2.0=hd75f5a5_1 - - pandoc=3.1.3=h9d075a6_0 + - openssl=3.2.1=hd75f5a5_0 - pari-seadata=0.0.20090618=0 - - pcre2=10.40=h1c4e4bc_0 - - pixman=0.42.2=he965462_0 - pkg-config=0.29.2=ha3d46e9_1008 - primesieve=11.0=hf0c8a7f_0 - qhull=2020.2=h940c156_2 - symmetrica=3.0.1=hf0c8a7f_0 - tapi=1100.0.11=h9ce4665_0 - - tar=1.34=hcb2f6ea_1 - - threejs-sage=122=hd8ed1ab_2 - tk=8.6.13=h1abcd95_1 - zeromq=4.3.5=h93d8f39_0 - zlib=1.2.13=h8a1eda9_5 - zstd=1.5.5=h829000d_0 - - automake=1.16.5=pl5321h694c41f_0 - brotli-bin=1.1.0=h0dc2134_1 - - bwidget=1.9.14=h694c41f_1 - cddlib=1!0.94m=h0f52abe_0 - ecm=7.0.4=h343d7f2_1002 - fonts-conda-ecosystem=1=0 - freetype=2.12.1=h60636b9_2 - givaro=4.1.1=h0a799c6_3 - glpk=5.0=h3cb5acd_0 - - jmol=14.32.9=h694c41f_0 - - libboost=1.84.0=h5b2dd29_0 + - libboost=1.84.0=h4bb364b_1 - libedit=3.1.20191231=h0678c8f_2 - - libfido2=1.14.0=h3cbcf74_0 - - libgfortran=5.0.0=13_2_0_h97931a8_1 - - libglib=2.78.1=h6d9ecee_0 + - libgfortran=5.0.0=13_2_0_h97931a8_3 - libhomfly=1.02r6=hc929b4f_0 - - libhwloc=2.9.3=default_h24e0189_1009 - - libllvm15=15.0.7=he4b1e75_3 + - libllvm16=16.0.6=hbedff68_3 - libnghttp2=1.58.0=h64cf6d3_1 - libssh2=1.11.0=hd019ec5_0 - libtiff=4.6.0=h684deea_2 @@ -128,321 +91,170 @@ dependencies: - primecount=7.6=ha894c9a_0 - readline=8.2=h9e318b2_1 - sigtool=0.1.3=h88f4db0_0 - - tachyon=0.99b6=0 - - texinfo=7.0=pl5321hc47821c_0 - - tktable=2.10=ha166976_5 - brotli=1.1.0=h0dc2134_1 - ecl=21.2.1=hd029580_2 - - fftw=3.3.10=nompi_h4fa670e_108 - fontconfig=2.14.2=h5bb23bf_0 - gap-core=4.12.2=hc16eb5f_3 - gfan=0.6.2=hd793b56_1003 - krb5=1.21.2=hb884880_0 - lcms2=2.16=ha2f27b4_0 - - ld64_osx-64=609=h0fd476b_15 - - libboost-devel=1.84.0=h7728843_0 + - ld64_osx-64=609=ha20a434_16 + - libboost-devel=1.84.0=h7728843_1 - libbrial=1.2.12=h8d08345_1 - - libclang-cpp15=15.0.7=default_h6b1ee41_4 + - libclang-cpp16=16.0.6=default_h7151d67_5 - libflint=3.0.1=h5d15de0_ntl_100 - libopenblas=0.3.25=openmp_hfef2a42_0 - libwebp=1.3.2=h44782d1_1 - - llvm-tools=15.0.7=he4b1e75_3 + - llvm-tools=16.0.6=hbedff68_3 - m4rie=20150908=h3f75d11_1001 - mpc=1.3.1=h81bd1dd_0 - mpfi=1.5.4=h52b28e3_1001 - openjpeg=2.5.0=ha4da562_3 - pari=2.15.4=h93f793c_2_pthread - ppl=1.2=ha60d53e_1006 - - python=3.10.13=h00d2728_0_cpython + - python=3.10.13=h00d2728_1_cpython - qd=2.3.22=h2beb688_1004 - - sqlite=3.44.2=h7461747_0 - - tbb=2021.11.0=he51d815_0 - - alabaster=0.7.13=pyhd8ed1ab_0 - - appdirs=1.4.4=pyh9f0ad1d_0 - - appnope=0.1.3=pyhd8ed1ab_0 - - attrs=23.1.0=pyh71513ae_1 - - boost-cpp=1.84.0=h07eb623_0 + - alabaster=0.7.16=pyhd8ed1ab_0 + - appnope=0.1.4=pyhd8ed1ab_0 + - boost-cpp=1.84.0=h07eb623_1 - brial=1.2.12=pyh694c41f_1 - brotli-python=1.1.0=py310h9e9d8ca_1 - - cached_property=1.5.2=pyha770c72_1 - - cachetools=5.3.2=pyhd8ed1ab_0 - - cachy=0.3.0=pyhd8ed1ab_1 - - cairo=1.18.0=h99e66fa_0 - - cctools_osx-64=973.0.1=habff3f6_15 - - certifi=2023.11.17=pyhd8ed1ab_0 - - chardet=5.2.0=py310h2ec42d9_1 + - cctools_osx-64=973.0.1=ha1c5b94_16 + - certifi=2024.2.2=pyhd8ed1ab_0 - charset-normalizer=3.3.2=pyhd8ed1ab_0 - - clang-15=15.0.7=default_h6b1ee41_4 - - click=8.1.7=unix_pyh707e725_0 + - clang-16=16.0.6=default_h7151d67_5 - colorama=0.4.6=pyhd8ed1ab_0 - - conway-polynomials=0.8=pyhd8ed1ab_0 - - crashtest=0.4.1=pyhd8ed1ab_0 + - conway-polynomials=0.9=pyhd8ed1ab_0 - cycler=0.12.1=pyhd8ed1ab_0 - cysignals=1.11.2=py310h8c82e65_3 - - cython=3.0.7=py310h5daac23_0 - - debugpy=1.8.0=py310h9e9d8ca_1 + - cython=3.0.8=py310h5daac23_0 + - debugpy=1.8.1=py310h5daac23_0 - decorator=5.1.1=pyhd8ed1ab_0 - - defusedxml=0.7.1=pyhd8ed1ab_0 - - distlib=0.3.8=pyhd8ed1ab_0 - docutils=0.20.1=py310h2ec42d9_3 - - eclib=20231211=h02435c3_0 - - editables=0.3=pyhd8ed1ab_0 - - entrypoints=0.4=pyhd8ed1ab_0 - - exceptiongroup=1.2.0=pyhd8ed1ab_0 + - eclib=20231212=h02435c3_0 + - exceptiongroup=1.2.0=pyhd8ed1ab_2 - execnet=2.0.2=pyhd8ed1ab_0 - executing=2.0.1=pyhd8ed1ab_0 - - filelock=3.13.1=pyhd8ed1ab_0 - - flit-core=3.9.0=pyhd8ed1ab_0 - fplll=5.4.5=hb7981ad_0 - gap-defaults=4.12.2=h694c41f_3 - - gast=0.5.4=pyhd8ed1ab_0 - - gfortran_impl_osx-64=12.3.0=h54fd467_1 - gmpy2=2.1.2=py310hb691cb2_1 - idna=3.6=pyhd8ed1ab_0 - imagesize=1.4.1=pyhd8ed1ab_0 - iniconfig=2.0.0=pyhd8ed1ab_0 - - ipython_genutils=0.2.0=py_1 - - json5=0.9.14=pyhd8ed1ab_0 - - jsonpointer=2.4=py310h2ec42d9_3 - - jupyterlab_widgets=3.0.9=pyhd8ed1ab_0 + - jupyterlab_widgets=3.0.10=pyhd8ed1ab_0 - kiwisolver=1.4.5=py310h88cfcbd_1 - lcalc=2.0.5=h3a941db_1 - - ld64=609=ha91a046_15 + - ld64=609=ha02d983_16 - libblas=3.9.0=20_osx64_openblas - libcurl=8.5.0=h726d00d_0 - libgd=2.3.3=h0dceb68_9 - - markupsafe=2.1.3=py310h6729b98_1 + - markupsafe=2.1.5=py310hb372a2b_0 - maxima=5.47.0=h2b27fa8_1 - - mistune=3.0.2=pyhd8ed1ab_0 - - more-itertools=10.1.0=pyhd8ed1ab_0 - mpmath=1.3.0=pyhd8ed1ab_0 - - msgpack-python=1.0.7=py310ha697434_0 - munkres=1.1.4=pyh9f0ad1d_0 - - nest-asyncio=1.5.8=pyhd8ed1ab_0 + - nest-asyncio=1.6.0=pyhd8ed1ab_0 - networkx=3.2.1=pyhd8ed1ab_0 - openblas=0.3.25=openmp_h6794695_0 - - openssh=9.3p1=h3df487d_2 - packaging=23.2=pyhd8ed1ab_0 - - pandocfilters=1.5.0=pyhd8ed1ab_0 - parso=0.8.3=pyhd8ed1ab_0 - - pastel=0.2.1=pyhd8ed1ab_0 - - pathspec=0.12.1=pyhd8ed1ab_0 - pickleshare=0.7.5=py_1003 - - pillow=10.1.0=py310he65384d_0 + - pillow=10.2.0=py310he65384d_0 - pkgconfig=1.5.5=pyhd8ed1ab_4 - - pkginfo=1.9.6=pyhd8ed1ab_0 - - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 - - platformdirs=4.1.0=pyhd8ed1ab_0 - - pluggy=1.3.0=pyhd8ed1ab_0 - - ply=3.11=py_1 - - prometheus_client=0.19.0=pyhd8ed1ab_0 - - psutil=5.9.7=py310hb372a2b_0 + - platformdirs=4.2.0=pyhd8ed1ab_0 + - pluggy=1.4.0=pyhd8ed1ab_0 + - psutil=5.9.8=py310hb372a2b_0 - ptyprocess=0.7.0=pyhd3deb0d_0 - pure_eval=0.2.2=pyhd8ed1ab_0 - - py=1.11.0=pyh6c4a22f_0 - - pybind11-global=2.11.1=py310h88cfcbd_2 - - pycodestyle=2.11.1=pyhd8ed1ab_0 - - pycparser=2.21=pyhd8ed1ab_0 - pygments=2.17.2=pyhd8ed1ab_0 - - pylev=1.4.0=pyhd8ed1ab_0 - pyparsing=3.1.1=pyhd8ed1ab_0 - - pyrsistent=0.20.0=py310hb372a2b_0 - pysocks=1.7.1=pyha2e5f31_6 - - pyspellchecker=0.7.2=pyhd8ed1ab_0 - - python-fastjsonschema=2.19.0=pyhd8ed1ab_0 - - python-json-logger=2.0.7=pyhd8ed1ab_0 - - python-lrcalc=2.1=py310h7a76584_5 - - python-tzdata=2023.3=pyhd8ed1ab_0 - - pytz=2023.3.post1=pyhd8ed1ab_0 - - pyyaml=6.0.1=py310h6729b98_1 + - pytz=2024.1=pyhd8ed1ab_0 - pyzmq=25.1.2=py310h6b67f7f_0 - - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.15.2=py310h0e083fb_0 - - ruamel.yaml.clib=0.2.7=py310h6729b98_2 - - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 - - sagetex=3.6.1=pyhd8ed1ab_0 - - setuptools=68.2.2=pyhd8ed1ab_0 - - simplegeneric=0.8.1=py_1 + - setuptools=69.1.0=pyhd8ed1ab_1 - singular=4.3.2.p8=h0d51a9f_1 - six=1.16.0=pyh6c4a22f_0 - - smmap=5.0.0=pyhd8ed1ab_0 - - sniffio=1.3.0=pyhd8ed1ab_0 - snowballstemmer=2.2.0=pyhd8ed1ab_0 - soupsieve=2.5=pyhd8ed1ab_1 - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_0 - sympow=2.023.6=h115ba6a_3 - tomli=2.0.1=pyhd8ed1ab_0 - - tomlkit=0.12.3=pyha770c72_0 - - toolz=0.12.0=pyhd8ed1ab_0 - - tornado=6.3.3=py310h6729b98_1 - - traitlets=5.14.0=pyhd8ed1ab_0 - - trove-classifiers=2023.11.29=pyhd8ed1ab_0 - - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 + - tornado=6.4=py310hb372a2b_0 + - traitlets=5.14.1=pyhd8ed1ab_0 - typing_extensions=4.9.0=pyha770c72_0 - - typing_utils=0.1.0=pyhd8ed1ab_0 - - tzlocal=5.2=py310h2ec42d9_0 - unicodedata2=15.1.0=py310h6729b98_0 - - uri-template=1.3.0=pyhd8ed1ab_0 - - wcwidth=0.2.12=pyhd8ed1ab_0 - - webcolors=1.13=pyhd8ed1ab_0 - - webencodings=0.5.1=pyhd8ed1ab_2 - - websocket-client=1.7.0=pyhd8ed1ab_0 + - wcwidth=0.2.13=pyhd8ed1ab_0 - wheel=0.42.0=pyhd8ed1ab_0 - - widgetsnbextension=4.0.9=pyhd8ed1ab_0 + - widgetsnbextension=4.0.10=pyhd8ed1ab_0 - zipp=3.17.0=pyhd8ed1ab_0 - - anyio=4.2.0=pyhd8ed1ab_0 - asttokens=2.4.1=pyhd8ed1ab_0 - - async-lru=2.0.4=pyhd8ed1ab_0 - babel=2.14.0=pyhd8ed1ab_0 - - beautifulsoup4=4.12.2=pyha770c72_0 - - beniget=0.4.1=pyhd8ed1ab_0 - - bleach=6.1.0=pyhd8ed1ab_0 - - cached-property=1.5.2=hd8ed1ab_1 - - cctools=973.0.1=hd9ad811_15 - - cffi=1.16.0=py310hdca579f_0 - - clang=15.0.7=hac416ee_4 - - click-default-group=1.2.4=pyhd8ed1ab_0 - - clikit=0.6.2=pyhd8ed1ab_2 - - cmake=3.28.1=h7c85d92_0 - - comm=0.1.4=pyhd8ed1ab_0 - - cppy=1.2.1=pyhd8ed1ab_0 - - curl=8.5.0=h726d00d_0 - - cypari2=2.1.3=py310hb5d31c9_2 - - deprecation=2.1.0=pyh9f0ad1d_0 - - fonttools=4.47.0=py310hb372a2b_0 - - gitdb=4.0.11=pyhd8ed1ab_0 - - harfbuzz=8.3.0=hf45c392_0 - - html5lib=1.1=pyh9f0ad1d_0 - - importlib-metadata=7.0.0=pyha770c72_0 + - beautifulsoup4=4.12.3=pyha770c72_0 + - cctools=973.0.1=h40f6528_16 + - clang=16.0.6=hdae98eb_5 + - comm=0.2.1=pyhd8ed1ab_0 + - coverage=7.4.2=py310hb372a2b_0 + - cypari2=2.1.4=py310hc7df965_2 + - fonttools=4.49.0=py310hb372a2b_0 + - importlib-metadata=7.0.1=pyha770c72_0 - importlib_resources=6.1.1=pyhd8ed1ab_0 - - jaraco.classes=3.3.0=pyhd8ed1ab_0 - jedi=0.19.1=pyhd8ed1ab_0 - - jinja2=3.1.2=pyhd8ed1ab_1 - - jupyter_core=5.5.1=py310h2ec42d9_0 - - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 + - jinja2=3.1.3=pyhd8ed1ab_0 + - jupyter_core=5.7.1=py310h2ec42d9_0 - libcblas=3.9.0=20_osx64_openblas - liblapack=3.9.0=20_osx64_openblas - matplotlib-inline=0.1.6=pyhd8ed1ab_0 - memory-allocator=0.1.3=py310h6729b98_0 - - overrides=7.4.0=pyhd8ed1ab_0 - - pexpect=4.8.0=pyh1a96a4e_2 - - pip=23.3.2=pyhd8ed1ab_0 + - meson=1.3.2=pyhd8ed1ab_0 + - pexpect=4.9.0=pyhd8ed1ab_0 + - pip=24.0=pyhd8ed1ab_0 - pplpy=0.8.9=py310hd89f7aa_0 - primecountpy=0.1.0=py310h88cfcbd_4 - prompt-toolkit=3.0.42=pyha770c72_0 - - pybind11=2.11.1=py310h88cfcbd_2 - - pyobjc-core=10.1=py310h3674b6a_0 - - pyproject-api=1.6.1=pyhd8ed1ab_0 - - pytest=7.4.3=pyhd8ed1ab_0 + - pyproject-metadata=0.7.1=pyhd8ed1ab_0 + - pytest=8.0.1=pyhd8ed1ab_1 - python-dateutil=2.8.2=pyhd8ed1ab_0 - - pytz-deprecation-shim=0.1.0.post0=py310h2ec42d9_4 - - referencing=0.32.0=pyhd8ed1ab_0 - - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - - ruamel.yaml=0.18.5=py310hb372a2b_0 - sympy=1.12=pypyh9d50eac_103 - - terminado=0.18.0=pyh31c8845_0 - - tinycss2=1.2.1=pyhd8ed1ab_0 - - typing-extensions=4.9.0=hd8ed1ab_0 - - urllib3=1.26.18=pyhd8ed1ab_0 - - virtualenv=20.25.0=pyhd8ed1ab_0 - - annotated-types=0.6.0=pyhd8ed1ab_0 - - argon2-cffi-bindings=21.2.0=py310h6729b98_4 + - urllib3=2.2.1=pyhd8ed1ab_0 - arpack=3.8.0=nompi_hb44a6d1_101 - - arrow=1.3.0=pyhd8ed1ab_0 - - cattrs=23.2.3=pyhd8ed1ab_0 - - clangxx=15.0.7=default_h6b1ee41_4 - - dsdp=5.8=h6e329d1_1203 + - clangxx=16.0.6=default_h7151d67_5 - fflas-ffpack=2.4.3=h026fd7e_2 - - fqdn=1.5.1=pyhd8ed1ab_0 - - git=2.42.0=pl5321hbb4c4ee_0 - - gitpython=3.1.40=pyhd8ed1ab_0 - gsl=2.7=h93259b0_0 - - hatchling=1.21.0=pyhd8ed1ab_0 - iml=1.0.5=h64b42ca_1003 - - importlib-resources=6.1.1=pyhd8ed1ab_0 - - importlib_metadata=7.0.0=hd8ed1ab_0 - - jsonschema-specifications=2023.11.2=pyhd8ed1ab_0 - - jupyter_server_terminals=0.5.0=pyhd8ed1ab_0 + - importlib_metadata=7.0.1=hd8ed1ab_0 - liblapacke=3.9.0=20_osx64_openblas - - numpy=1.26.2=py310h2a7ecf2_0 - - pango=1.50.14=h19c1c8a_2 - - prompt_toolkit=3.0.42=hd8ed1ab_0 - - pydantic-core=2.14.5=py310h0e083fb_0 - - pyobjc-framework-cocoa=10.1=py310h3674b6a_0 + - meson-python=0.15.0=pyh0c530f3_0 + - numpy=1.26.4=py310h4bfa8fc_0 - pytest-xdist=3.5.0=pyhd8ed1ab_0 - requests=2.31.0=pyhd8ed1ab_0 - - setuptools-scm=8.0.4=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 - - suitesparse=5.10.1=h0a40b7c_2 - - argon2-cffi=23.1.0=pyhd8ed1ab_0 - blas-devel=3.9.0=20_osx64_openblas - - cachecontrol=0.13.1=pyhd8ed1ab_0 - - compiler-rt_osx-64=15.0.7=ha38d28d_2 + - compiler-rt_osx-64=16.0.6=ha38d28d_2 - contourpy=1.2.0=py310ha697434_0 - - cvxopt=1.3.2=py310ha550498_1 - - ensureconda=1.4.3=pyhd8ed1ab_0 - - fpylll=0.6.0=py310h2acdeac_1 + - fpylll=0.6.1=py310h65a3d7e_0 - giac=1.9.0.21=h92f3f65_1 - - igraph=0.10.8=h29df365_0 - - ipython=8.18.1=pyh707e725_3 - - isoduration=20.11.0=pyhd8ed1ab_0 - - jsonschema=4.20.0=pyhd8ed1ab_0 + - igraph=0.10.10=h6b221b4_0 + - ipython=8.22.0=pyh707e725_0 - jupyter_client=8.6.0=pyhd8ed1ab_0 - - keyring=24.3.0=py310h2ec42d9_0 - linbox=1.6.3=hfb9b24e_8 - - lsprotocol=2023.0.0=pyhd8ed1ab_0 - - pydantic=2.5.2=pyhd8ed1ab_0 - scipy=1.11.4=py310h3f1db6d_0 - - send2trash=1.8.2=pyhd1c38e8_0 - - setuptools_scm=8.0.4=hd8ed1ab_0 - - tox=4.11.4=pyhd8ed1ab_0 - blas=2.120=openblas - - cachecontrol-with-filecache=0.13.1=pyhd8ed1ab_0 - - compiler-rt=15.0.7=ha38d28d_2 - - ipykernel=6.26.0=pyh3cd1d5f_0 - - ipywidgets=8.1.1=pyhd8ed1ab_0 - - jsonschema-with-format-nongpl=4.20.0=pyhd8ed1ab_0 - - matplotlib-base=3.8.2=py310hec49e92_0 - - nbformat=5.9.2=pyhd8ed1ab_0 - - pygls=1.2.1=pyhd8ed1ab_0 + - compiler-rt=16.0.6=ha38d28d_2 + - ipykernel=6.29.2=pyh3cd1d5f_0 + - ipywidgets=8.1.2=pyhd8ed1ab_0 + - matplotlib-base=3.8.3=py310hec49e92_0 - rw=0.9=h10d778d_1 - - clang_impl_osx-64=15.0.7=h03d6864_7 - - conda-lock=2.5.1=pyhd8ed1ab_0 - - ipympl=0.9.3=pyhd8ed1ab_0 - - jupyter-jsmol=2022.1.0=pyhd8ed1ab_0 - - jupyter_events=0.9.0=pyhd8ed1ab_0 - - matplotlib=3.8.2=py310h2ec42d9_0 - - nbclient=0.8.0=pyhd8ed1ab_0 - - clang_osx-64=15.0.7=hb91bd55_7 - - nbconvert-core=7.13.0=pyhd8ed1ab_0 - - c-compiler=1.6.0=h63c33a9_0 - - clangxx_impl_osx-64=15.0.7=h2133e9c_7 - - gfortran_osx-64=12.3.0=h18f7dce_1 - - jupyter_server=2.12.1=pyhd8ed1ab_0 - - nbconvert-pandoc=7.13.0=pyhd8ed1ab_0 - - clangxx_osx-64=15.0.7=hb91bd55_7 - - gfortran=12.3.0=h2c809b3_1 - - jupyter-lsp=2.2.1=pyhd8ed1ab_0 - - jupyterlab_server=2.25.2=pyhd8ed1ab_0 - - nbconvert=7.13.0=pyhd8ed1ab_0 - - notebook-shim=0.2.3=pyhd8ed1ab_0 - - cxx-compiler=1.6.0=h1c7c39f_0 - - fortran-compiler=1.6.0=h932d759_0 - - jupyterlab=4.0.9=pyhd8ed1ab_0 - - pythran=0.14.0=py310h92ebccd_1 - - r-base=4.3.1=h0ff45fa_6 - - compilers=1.6.0=h694c41f_0 - - notebook=7.0.6=pyhd8ed1ab_0 - - rpy2=3.5.11=py310r43hf0b6da5_3 - - esbonio=0.16.3=pyhd8ed1ab_0 - - jupyter_sphinx=0.4.0=py310h2ec42d9_1 + - clang_impl_osx-64=16.0.6=h8787910_9 + - clang_osx-64=16.0.6=hb91bd55_9 + - c-compiler=1.6.0=h282daa2_0 + - clangxx_impl_osx-64=16.0.6=h6d92fbe_9 + - clangxx_osx-64=16.0.6=hb91bd55_9 + - cxx-compiler=1.6.0=h7728843_0 - sphinx-basic-ng=1.0.0b2=pyhd8ed1ab_1 - - furo=2023.9.10=pyhd8ed1ab_0 - - sphinx-copybutton=0.5.2=pyhd8ed1ab_0 - - sphinxcontrib-applehelp=1.0.7=pyhd8ed1ab_0 - - sphinxcontrib-devhelp=1.0.5=pyhd8ed1ab_0 - - sphinxcontrib-htmlhelp=2.0.4=pyhd8ed1ab_0 - - sphinxcontrib-qthelp=1.0.6=pyhd8ed1ab_0 + - furo=2024.1.29=pyhd8ed1ab_0 + - sphinx-inline-tabs=2023.4.21=pyhd8ed1ab_0 + - sphinxcontrib-applehelp=1.0.8=pyhd8ed1ab_0 + - sphinxcontrib-devhelp=1.0.6=pyhd8ed1ab_0 + - sphinxcontrib-htmlhelp=2.0.5=pyhd8ed1ab_0 + - sphinxcontrib-qthelp=1.0.7=pyhd8ed1ab_0 - sphinx=7.2.6=pyhd8ed1ab_0 - - sphinxcontrib-serializinghtml=1.1.9=pyhd8ed1ab_0 - - sphinxcontrib-websupport=1.2.6=pyhd8ed1ab_0 + - sphinxcontrib-serializinghtml=1.1.10=pyhd8ed1ab_0 diff --git a/src/environment-dev-3.11-linux-aarch64.yml b/src/environment-dev-3.11-linux-aarch64.yml index d3fef3676c5..3510af10df3 100644 --- a/src/environment-dev-3.11-linux-aarch64.yml +++ b/src/environment-dev-3.11-linux-aarch64.yml @@ -1,470 +1,262 @@ # Generated by conda-lock. # platform: linux-aarch64 -# input_hash: 61440f9bf5b10e5736a9f88f0d4d24374ac0851704ea2bd8947851379f6d2985 +# input_hash: 09f4725aa31cbf4e2e85442e1df745c5ca5481c37c9a5dba4f78f49264e10bdb channels: - conda-forge dependencies: - - _r-mutex=1.0.1=anacondar_1 - - _sysroot_linux-aarch64_curr_repodata_hack=4=h57d6b7b_13 - - ca-certificates=2023.11.17=hcefe29a_0 + - _sysroot_linux-aarch64_curr_repodata_hack=4=h57d6b7b_14 + - ca-certificates=2024.2.2=hcefe29a_0 - font-ttf-dejavu-sans-mono=2.37=hab24e00_0 - font-ttf-inconsolata=3.000=h77eed37_0 - font-ttf-source-code-pro=2.038=h77eed37_0 - font-ttf-ubuntu=0.83=h77eed37_1 - - gh=2.40.1=h652cbe9_0 - - kernel-headers_linux-aarch64=4.18.0=h5b4a56d_13 - ld_impl_linux-aarch64=2.40=h2d8c526_0 - - libgcc-devel_linux-aarch64=12.3.0=h8b5ab12_103 - - libgomp=13.2.0=hf8544c7_3 - - libstdcxx-devel_linux-aarch64=12.3.0=h8b5ab12_103 - - libstdcxx-ng=13.2.0=h9a76618_3 - - mathjax=3.2.2=h8af1aa0_0 - - pandoc=3.1.3=h8af1aa0_0 + - libboost-headers=1.84.0=h8af1aa0_1 + - libgcc-devel_linux-aarch64=12.3.0=h8b5ab12_105 + - libgomp=13.2.0=hf8544c7_5 + - libstdcxx-devel_linux-aarch64=12.3.0=h8b5ab12_105 + - libstdcxx-ng=13.2.0=h9a76618_5 - pari-elldata=0.0.20161017=0 - pari-galdata=0.0.20180411=0 - - pari-galpol=0.0.20180625=0 - pari-seadata-small=0.0.20090618=0 - python_abi=3.11=4_cp311 - - sagemath-db-combinatorial-designs=20140630=1 - - sagemath-db-graphs=20210214=hd8ed1ab_0 - - sagemath-db-polytopes=20170220=1 - - three.js=122=hd8ed1ab_2 - - tzdata=2023c=h71feb2d_0 + - tzdata=2024a=h0c530f3_0 - fonts-conda-forge=1=0 + - kernel-headers_linux-aarch64=4.18.0=h5b4a56d_14 - pari-seadata=0.0.20090618=0 - - sysroot_linux-aarch64=2.17=h5b4a56d_13 - - threejs-sage=122=hd8ed1ab_2 - - binutils_impl_linux-aarch64=2.40=h870a726_0 - fonts-conda-ecosystem=1=0 + - sysroot_linux-aarch64=2.17=h5b4a56d_14 + - binutils_impl_linux-aarch64=2.40=h870a726_0 - binutils=2.40=h64c2a2e_0 - binutils_linux-aarch64=2.40=h94bbfa1_2 - _openmp_mutex=4.5=2_kmp_llvm - - libgcc-ng=13.2.0=hf8544c7_3 - - alsa-lib=1.2.8=h4e544f5_0 - - attr=2.5.1=h4e544f5_1 - - bc=1.07.1=hf897c2e_0 + - libgcc-ng=13.2.0=hf8544c7_5 - bdw-gc=8.0.6=hd62202e_0 - bzip2=1.0.8=h31becfc_5 - - c-ares=1.24.0=h31becfc_0 + - c-ares=1.27.0=h31becfc_0 - cliquer=1.22=hb9de7d4_0 - - fribidi=1.0.10=hb9de7d4_0 - - gengetopt=2.23=h01db608_0 - - gettext=0.21.1=ha18d298_0 - gf2x=1.3.0=h1b3b3a3_2 - giflib=5.2.1=hb4cce97_3 - gmp=6.3.0=h2f0025b_0 - - graphite2=1.3.13=h7fd3ca4_1001 - - icu=70.1=ha18d298_0 - - jpeg=9e=h2a766a3_3 + - icu=73.2=h787c7f5_0 - keyutils=1.6.1=h4e544f5_0 - lerc=4.0.0=h4de3ea5_0 - - libatomic_ops=7.6.14=h4e544f5_0 - libbraiding=1.2=hd600fc2_0 - libbrotlicommon=1.1.0=h31becfc_1 - - libcbor=0.9.0=h01db608_0 - - libdeflate=1.17=hb4cce97_0 + - libdeflate=1.19=h31becfc_0 - libev=4.33=h31becfc_2 - libexpat=2.5.0=hd600fc2_1 - libffi=3.4.2=h3557bc0_5 - - libgfortran5=13.2.0=h582850c_3 + - libgfortran5=13.2.0=h582850c_5 - libiconv=1.17=h31becfc_2 + - libjpeg-turbo=3.0.0=h31becfc_1 - libnsl=2.0.1=h31becfc_0 - - libsanitizer=12.3.0=h8ebda82_3 + - libsanitizer=12.3.0=h8ebda82_5 - libsodium=1.0.18=hb9de7d4_1 - - libtool=2.4.7=h4de3ea5_0 - libuuid=2.38.1=hb4cce97_0 - - libuv=1.46.0=h31becfc_0 - - libwebp-base=1.2.4=h4e544f5_0 + - libwebp-base=1.3.2=h31becfc_0 + - libxcrypt=4.4.36=h31becfc_1 - libzlib=1.2.13=h31becfc_5 - - lrcalc=2.1=h4de3ea5_5 - - m4=1.4.18=h516909a_1001 - - make=4.3=h309ac5b_1 - - metis=5.1.0=h2f0025b_1007 - - nauty=2.8.8=h31becfc_0 + - lrcalc=2.1=h2f0025b_6 + - nauty=2.8.8=h31becfc_1 - ncurses=6.4=h0425590_2 - ninja=1.11.1=hdd96247_0 - - openssl=3.2.0=h31becfc_1 + - openssl=3.2.1=h31becfc_0 - palp=2.20=hb9de7d4_0 - - patch=2.7.6=hf897c2e_1002 - - pixman=0.42.2=h2f0025b_0 - pkg-config=0.29.2=hb9de7d4_1008 - planarity=3.0.0.5=hb9de7d4_1002 - primesieve=11.1=h2f0025b_0 - pthread-stubs=0.4=hb9de7d4_1001 - qhull=2020.2=hd62202e_2 - - rhash=1.4.3=h31becfc_2 - - sed=4.8=ha0d5d3d_0 - symmetrica=3.0.1=hd600fc2_0 - - xorg-inputproto=2.3.2=h3557bc0_1002 - - xorg-kbproto=1.0.7=h3557bc0_1002 - - xorg-libice=1.0.10=h3557bc0_0 - xorg-libxau=1.0.11=h31becfc_0 - xorg-libxdmcp=1.1.3=h3557bc0_0 - - xorg-recordproto=1.14.2=hf897c2e_1002 - - xorg-renderproto=0.11.1=h3557bc0_1002 - - xorg-xextproto=7.3.0=h2a766a3_1003 - - xorg-xproto=7.0.31=h3557bc0_1007 - xz=5.2.6=h9cdd2b7_0 - - yaml=0.2.5=hf897c2e_2 - cddlib=1!0.94m=h719063d_0 - ecm=7.0.4=h719063d_1002 - expat=2.5.0=hd600fc2_1 - - gcc_impl_linux-aarch64=12.3.0=hcde2664_3 + - gcc_impl_linux-aarch64=12.3.0=hcde2664_5 - givaro=4.1.1=h192cbe9_1 - glpk=5.0=h66325d0_0 - libbrotlidec=1.1.0=h31becfc_1 - libbrotlienc=1.1.0=h31becfc_1 - - libcap=2.69=h883460d_0 - libedit=3.1.20191231=he28a2e2_2 - - libgfortran-ng=13.2.0=he9431aa_3 + - libgfortran-ng=13.2.0=he9431aa_5 - libhomfly=1.02r6=hb9de7d4_0 - libnghttp2=1.58.0=hb0e430d_1 - - libpng=1.6.39=hf9034f9_0 - - libsqlite=3.44.2=h194ca79_0 + - libpng=1.6.42=h194ca79_0 + - libsqlite=3.45.1=h194ca79_0 - libssh2=1.11.0=h492db2e_0 - - libxcb=1.13=h3557bc0_1004 - - libxml2=2.10.3=habe54e3_4 + - libxcb=1.15=h2a766a3_0 + - libxml2=2.12.5=h3091e33_0 - mpfr=4.2.1=ha2d0fc4_0 - ntl=11.4.3=h0d7519b_1 - - pcre2=10.40=he7b27c6_0 - - perl=5.32.1=4_h31becfc_perl5 + - perl=5.32.1=7_h31becfc_perl5 - primecount=7.9=hd600fc2_0 - readline=8.2=h8fc344f_1 - - tar=1.34=h048efde_0 - tk=8.6.13=h194ca79_0 - - xorg-fixesproto=5.0=h3557bc0_1002 - - xorg-libsm=1.2.3=h965e137_1000 - zeromq=4.3.5=h2f0025b_0 - zlib=1.2.13=h31becfc_5 - zstd=1.5.5=h4c53e97_0 - - autoconf=2.71=pl5321h2148fe1_1 - - boost-cpp=1.81.0=h07c2bc3_0 - brotli-bin=1.1.0=h31becfc_1 - - bwidget=1.9.14=h8af1aa0_1 - ecl=21.2.1=haa44c19_2 - - fftw=3.3.10=nompi_h2dcef8e_108 - freetype=2.12.1=hf0a5ef3_2 - gap-core=4.12.2=h597289e_3 - gcc=12.3.0=hc1b51f9_2 - gcc_linux-aarch64=12.3.0=h464a8f7_2 - gfan=0.6.2=h5f589ec_1003 - - gfortran_impl_linux-aarch64=12.3.0=hb7244be_3 - - gxx_impl_linux-aarch64=12.3.0=hcde2664_3 - - krb5=1.20.1=h113d92e_0 + - gxx_impl_linux-aarch64=12.3.0=hcde2664_5 + - krb5=1.21.2=hc419048_0 + - libboost=1.84.0=h1fed05a_1 - libflint=3.0.1=hc392af7_ntl_100 - - libglib=2.78.1=h0464669_0 - - libhwloc=2.9.1=h21e8147_0 - libopenblas=0.3.25=pthreads_h5a5ec62_0 - - libtiff=4.5.0=h4c1066a_2 - - libudev1=255=h31becfc_0 + - libtiff=4.6.0=h1708d11_2 - llvm-openmp=17.0.6=h8b0cb96_0 - m4ri=20140914=h75e8696_1005 - mpc=1.3.1=hf4c8f4c_0 - mpfi=1.5.4=h846f343_1001 - pari=2.15.4=h169c2a7_2_pthread - ppl=1.2=h984aac9_1006 - - python=3.11.7=h43d1f9e_0_cpython + - python=3.11.8=h43d1f9e_0_cpython - qd=2.3.22=h05efe27_1004 - - sqlite=3.44.2=h3b3482f_0 - - tachyon=0.99b6=h63ab1d9_1001 - - texinfo=7.0=pl5321h17f021e_0 - - tktable=2.10=h4f9ca69_5 - - xorg-libx11=1.8.4=h2a766a3_0 - - alabaster=0.7.13=pyhd8ed1ab_0 - - appdirs=1.4.4=pyh9f0ad1d_0 - - appnope=0.1.3=pyhd8ed1ab_0 - - attrs=23.1.0=pyh71513ae_1 - - automake=1.16.5=pl5321h8af1aa0_0 + - alabaster=0.7.16=pyhd8ed1ab_0 - brotli=1.1.0=h31becfc_1 - brotli-python=1.1.0=py311h8715677_1 - c-compiler=1.6.0=h31becfc_0 - - cached_property=1.5.2=pyha770c72_1 - - cachetools=5.3.2=pyhd8ed1ab_0 - - cachy=0.3.0=pyhd8ed1ab_1 - - certifi=2023.11.17=pyhd8ed1ab_0 - - chardet=5.2.0=py311hfecb2dc_1 + - certifi=2024.2.2=pyhd8ed1ab_0 - charset-normalizer=3.3.2=pyhd8ed1ab_0 - - click=8.1.7=unix_pyh707e725_0 - colorama=0.4.6=pyhd8ed1ab_0 - - conway-polynomials=0.8=pyhd8ed1ab_0 - - crashtest=0.4.1=pyhd8ed1ab_0 + - conway-polynomials=0.9=pyhd8ed1ab_0 - cycler=0.12.1=pyhd8ed1ab_0 - cysignals=1.11.2=py311h644d908_3 - - cython=3.0.7=py311h8715677_0 - - dbus=1.13.6=h12b9eeb_3 - - debugpy=1.8.0=py311h8715677_1 + - cython=3.0.8=py311h8715677_0 + - debugpy=1.8.1=py311h8715677_0 - decorator=5.1.1=pyhd8ed1ab_0 - - defusedxml=0.7.1=pyhd8ed1ab_0 - - distlib=0.3.8=pyhd8ed1ab_0 - docutils=0.20.1=py311hfecb2dc_3 - - eclib=20231211=he26bab5_0 - - editables=0.3=pyhd8ed1ab_0 - - entrypoints=0.4=pyhd8ed1ab_0 - - exceptiongroup=1.2.0=pyhd8ed1ab_0 + - eclib=20231212=he26bab5_0 + - exceptiongroup=1.2.0=pyhd8ed1ab_2 - execnet=2.0.2=pyhd8ed1ab_0 - executing=2.0.1=pyhd8ed1ab_0 - - filelock=3.13.1=pyhd8ed1ab_0 - - flit-core=3.9.0=pyhd8ed1ab_0 - fontconfig=2.14.2=ha9a116f_0 - fplll=5.4.5=hb3a790e_0 - gap-defaults=4.12.2=h8af1aa0_3 - - gast=0.5.4=pyhd8ed1ab_0 - - gfortran=12.3.0=h8d4031d_2 - - gfortran_linux-aarch64=12.3.0=h1993883_2 - gmpy2=2.1.2=py311h00bc151_1 - gxx=12.3.0=hc1b51f9_2 - gxx_linux-aarch64=12.3.0=h21accf6_2 - idna=3.6=pyhd8ed1ab_0 - imagesize=1.4.1=pyhd8ed1ab_0 - iniconfig=2.0.0=pyhd8ed1ab_0 - - ipython_genutils=0.2.0=py_1 - - jeepney=0.8.0=pyhd8ed1ab_0 - - json5=0.9.14=pyhd8ed1ab_0 - - jsonpointer=2.4=py311hec3470c_3 - - jupyterlab_widgets=3.0.9=pyhd8ed1ab_0 + - jupyterlab_widgets=3.0.10=pyhd8ed1ab_0 - kiwisolver=1.4.5=py311h0d5d7b0_1 - lcalc=2.0.5=h3264cc0_1 - - lcms2=2.15=h7576be9_0 + - lcms2=2.16=h922389a_0 - libblas=3.9.0=20_linuxaarch64_openblas + - libboost-devel=1.84.0=h37bb5a9_1 - libbrial=1.2.12=h17533bf_1 - - libcups=2.3.3=h4303303_3 - - libcurl=8.1.2=hc34909b_0 - - libfido2=1.14.0=heb3f89f_0 - - libwebp=1.2.4=h7bdf6e5_1 + - libcurl=8.5.0=h4e8248e_0 + - libwebp=1.3.2=heb2ea1b_1 - m4rie=20150908=h75e8696_1001 - - markupsafe=2.1.3=py311hc8f2f60_1 + - markupsafe=2.1.5=py311hc8f2f60_0 - maxima=5.47.0=h6475f26_1 - - mistune=3.0.2=pyhd8ed1ab_0 - - more-itertools=10.1.0=pyhd8ed1ab_0 - mpmath=1.3.0=pyhd8ed1ab_0 - - msgpack-python=1.0.7=py311h0d5d7b0_0 - munkres=1.1.4=pyh9f0ad1d_0 - - nest-asyncio=1.5.8=pyhd8ed1ab_0 + - nest-asyncio=1.6.0=pyhd8ed1ab_0 - networkx=3.2.1=pyhd8ed1ab_0 - openblas=0.3.25=pthreads_h339cbfa_0 - - openjpeg=2.5.0=h9508984_2 + - openjpeg=2.5.0=h0d9d63b_3 - packaging=23.2=pyhd8ed1ab_0 - - pandocfilters=1.5.0=pyhd8ed1ab_0 - parso=0.8.3=pyhd8ed1ab_0 - - pastel=0.2.1=pyhd8ed1ab_0 - - pathspec=0.12.1=pyhd8ed1ab_0 - pickleshare=0.7.5=py_1003 - pkgconfig=1.5.5=pyhd8ed1ab_4 - - pkginfo=1.9.6=pyhd8ed1ab_0 - - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 - - platformdirs=4.1.0=pyhd8ed1ab_0 - - pluggy=1.3.0=pyhd8ed1ab_0 - - ply=3.11=py_1 - - prometheus_client=0.19.0=pyhd8ed1ab_0 - - psutil=5.9.7=py311hcd402e7_0 + - platformdirs=4.2.0=pyhd8ed1ab_0 + - pluggy=1.4.0=pyhd8ed1ab_0 + - psutil=5.9.8=py311hcd402e7_0 - ptyprocess=0.7.0=pyhd3deb0d_0 - pure_eval=0.2.2=pyhd8ed1ab_0 - - py=1.11.0=pyh6c4a22f_0 - - pybind11-global=2.11.1=py311h098ece5_2 - - pycodestyle=2.11.1=pyhd8ed1ab_0 - - pycparser=2.21=pyhd8ed1ab_0 - pygments=2.17.2=pyhd8ed1ab_0 - - pylev=1.4.0=pyhd8ed1ab_0 - pyparsing=3.1.1=pyhd8ed1ab_0 - - pyrsistent=0.20.0=py311hc8f2f60_0 - pysocks=1.7.1=pyha2e5f31_6 - - pyspellchecker=0.7.2=pyhd8ed1ab_0 - - python-fastjsonschema=2.19.0=pyhd8ed1ab_0 - - python-json-logger=2.0.7=pyhd8ed1ab_0 - - python-lrcalc=2.1=py311h5a24a75_5 - - python-tzdata=2023.3=pyhd8ed1ab_0 - - pytz=2023.3.post1=pyhd8ed1ab_0 - - pyyaml=6.0.1=py311hcd402e7_1 + - pytz=2024.1=pyhd8ed1ab_0 - pyzmq=25.1.2=py311h0fdcd05_0 - - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.15.2=py311h32437ce_0 - - ruamel.yaml.clib=0.2.7=py311hcd402e7_2 - - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 - - sagetex=3.6.1=pyhd8ed1ab_0 - - send2trash=1.8.2=pyh41d4057_0 - - setuptools=68.2.2=pyhd8ed1ab_0 - - simplegeneric=0.8.1=py_1 + - setuptools=69.1.0=pyhd8ed1ab_1 - singular=4.3.2.p8=hbe76a8a_1 - six=1.16.0=pyh6c4a22f_0 - - smmap=5.0.0=pyhd8ed1ab_0 - - sniffio=1.3.0=pyhd8ed1ab_0 - snowballstemmer=2.2.0=pyhd8ed1ab_0 - soupsieve=2.5=pyhd8ed1ab_1 - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_0 - sympow=2.023.6=h157afb5_3 - - tbb=2021.9.0=h4c384f3_0 - tomli=2.0.1=pyhd8ed1ab_0 - - tomlkit=0.12.3=pyha770c72_0 - - toolz=0.12.0=pyhd8ed1ab_0 - - tornado=6.3.3=py311hc8f2f60_1 - - traitlets=5.14.0=pyhd8ed1ab_0 - - trove-classifiers=2023.11.29=pyhd8ed1ab_0 - - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 + - tornado=6.4=py311hc8f2f60_0 + - traitlets=5.14.1=pyhd8ed1ab_0 - typing_extensions=4.9.0=pyha770c72_0 - - typing_utils=0.1.0=pyhd8ed1ab_0 - - tzlocal=5.2=py311hec3470c_0 - - uri-template=1.3.0=pyhd8ed1ab_0 - - wcwidth=0.2.12=pyhd8ed1ab_0 - - webcolors=1.13=pyhd8ed1ab_0 - - webencodings=0.5.1=pyhd8ed1ab_2 - - websocket-client=1.7.0=pyhd8ed1ab_0 + - wcwidth=0.2.13=pyhd8ed1ab_0 - wheel=0.42.0=pyhd8ed1ab_0 - - widgetsnbextension=4.0.9=pyhd8ed1ab_0 - - xorg-libxext=1.3.4=h2a766a3_2 - - xorg-libxfixes=5.0.3=h3557bc0_1004 - - xorg-libxrender=0.9.10=h3557bc0_1003 - - xorg-libxt=1.3.0=h7935292_0 + - widgetsnbextension=4.0.10=pyhd8ed1ab_0 - zipp=3.17.0=pyhd8ed1ab_0 - - anyio=4.2.0=pyhd8ed1ab_0 - asttokens=2.4.1=pyhd8ed1ab_0 - - async-lru=2.0.4=pyhd8ed1ab_0 - babel=2.14.0=pyhd8ed1ab_0 - - beautifulsoup4=4.12.2=pyha770c72_0 - - beniget=0.4.1=pyhd8ed1ab_0 - - bleach=6.1.0=pyhd8ed1ab_0 + - beautifulsoup4=4.12.3=pyha770c72_0 + - boost-cpp=1.84.0=ha990451_1 - brial=1.2.12=pyh694c41f_1 - - cached-property=1.5.2=hd8ed1ab_1 - - cairo=1.16.0=hd19fb6e_1014 - - cffi=1.16.0=py311h7963103_0 - - click-default-group=1.2.4=pyhd8ed1ab_0 - - clikit=0.6.2=pyhd8ed1ab_2 - - cmake=3.26.4=hef020d8_0 - - comm=0.1.4=pyhd8ed1ab_0 - - cppy=1.2.1=pyhd8ed1ab_0 - - curl=8.1.2=hc34909b_0 + - comm=0.2.1=pyhd8ed1ab_0 + - coverage=7.4.2=py311hc8f2f60_0 - cxx-compiler=1.6.0=h2a328a1_0 - - cypari2=2.1.3=py311h5ab95f0_2 - - deprecation=2.1.0=pyh9f0ad1d_0 - - fonttools=4.47.0=py311hcd402e7_0 - - fortran-compiler=1.6.0=h7048d53_0 - - gitdb=4.0.11=pyhd8ed1ab_0 - - html5lib=1.1=pyh9f0ad1d_0 - - importlib-metadata=7.0.0=pyha770c72_0 + - cypari2=2.1.4=py311h5ab95f0_2 + - fonttools=4.49.0=py311hcd402e7_0 + - importlib-metadata=7.0.1=pyha770c72_0 - importlib_resources=6.1.1=pyhd8ed1ab_0 - - jaraco.classes=3.3.0=pyhd8ed1ab_0 - jedi=0.19.1=pyhd8ed1ab_0 - - jinja2=3.1.2=pyhd8ed1ab_1 - - jupyter_core=5.5.1=py311hec3470c_0 - - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 + - jinja2=3.1.3=pyhd8ed1ab_0 + - jupyter_core=5.7.1=py311hec3470c_0 - libcblas=3.9.0=20_linuxaarch64_openblas - - libgd=2.3.3=h99c6b3b_4 + - libgd=2.3.3=hcd22fd5_9 - liblapack=3.9.0=20_linuxaarch64_openblas - matplotlib-inline=0.1.6=pyhd8ed1ab_0 - memory-allocator=0.1.3=py311hcd402e7_0 - - openssh=9.3p1=hf616e62_1 - - overrides=7.4.0=pyhd8ed1ab_0 - - pexpect=4.8.0=pyh1a96a4e_2 - - pillow=9.4.0=py311hf18358d_1 - - pip=23.3.2=pyhd8ed1ab_0 + - meson=1.3.2=pyhd8ed1ab_0 + - pexpect=4.9.0=pyhd8ed1ab_0 + - pillow=10.2.0=py311hbcc2232_0 + - pip=24.0=pyhd8ed1ab_0 - pplpy=0.8.9=py311haefeb0b_0 - primecountpy=0.1.0=py311h098ece5_4 - prompt-toolkit=3.0.42=pyha770c72_0 - - pybind11=2.11.1=py311h098ece5_2 - - pyproject-api=1.6.1=pyhd8ed1ab_0 - - pytest=7.4.3=pyhd8ed1ab_0 + - pyproject-metadata=0.7.1=pyhd8ed1ab_0 + - pytest=8.0.1=pyhd8ed1ab_1 - python-dateutil=2.8.2=pyhd8ed1ab_0 - - pytz-deprecation-shim=0.1.0.post0=py311hec3470c_4 - - referencing=0.32.0=pyhd8ed1ab_0 - - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - - ruamel.yaml=0.18.5=py311hcd402e7_0 - sympy=1.12=pypyh9d50eac_103 - - terminado=0.18.0=pyh0d859eb_0 - - tinycss2=1.2.1=pyhd8ed1ab_0 - - typing-extensions=4.9.0=hd8ed1ab_0 - - urllib3=1.26.18=pyhd8ed1ab_0 - - virtualenv=20.25.0=pyhd8ed1ab_0 - - xorg-libxi=1.7.10=h3557bc0_0 - - annotated-types=0.6.0=pyhd8ed1ab_0 - - argon2-cffi-bindings=21.2.0=py311hcd402e7_4 - - arpack=3.7.0=hf862f49_2 - - arrow=1.3.0=pyhd8ed1ab_0 - - cattrs=23.2.3=pyhd8ed1ab_0 - - compilers=1.6.0=h8af1aa0_0 - - cryptography=41.0.7=py311h2245af3_1 - - dsdp=5.8=hb12102e_1203 + - urllib3=2.2.1=pyhd8ed1ab_0 + - arpack=3.8.0=nompi_h32ff4ca_101 - fflas-ffpack=2.4.3=hf104d39_2 - - fqdn=1.5.1=pyhd8ed1ab_0 - - git=2.42.0=pl5321h0d979e1_0 - - gitpython=3.1.40=pyhd8ed1ab_0 - gsl=2.7=h294027d_0 - - harfbuzz=6.0.0=hbcb8a4f_0 - - hatchling=1.21.0=pyhd8ed1ab_0 - iml=1.0.5=h9076c59_1003 - - importlib-resources=6.1.1=pyhd8ed1ab_0 - - importlib_metadata=7.0.0=hd8ed1ab_0 - - jsonschema-specifications=2023.11.2=pyhd8ed1ab_0 - - jupyter_server_terminals=0.5.0=pyhd8ed1ab_0 + - importlib_metadata=7.0.1=hd8ed1ab_0 - liblapacke=3.9.0=20_linuxaarch64_openblas - - numpy=1.26.2=py311h69ead2a_0 - - prompt_toolkit=3.0.42=hd8ed1ab_0 - - pydantic-core=2.14.5=py311h2bdde80_0 + - meson-python=0.15.0=pyh0c530f3_0 + - numpy=1.26.4=py311h69ead2a_0 - pytest-xdist=3.5.0=pyhd8ed1ab_0 - requests=2.31.0=pyhd8ed1ab_0 - - setuptools-scm=8.0.4=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 - - suitesparse=5.10.1=h1404dd6_1 - - xorg-libxtst=1.2.3=hf897c2e_1002 - - argon2-cffi=23.1.0=pyhd8ed1ab_0 - blas-devel=3.9.0=20_linuxaarch64_openblas - - cachecontrol=0.13.1=pyhd8ed1ab_0 - contourpy=1.2.0=py311h098ece5_0 - - cvxopt=1.3.2=py311hd9cfd3c_1 - - ensureconda=1.4.3=pyhd8ed1ab_0 - - fpylll=0.6.0=py311h5d3d69a_1 + - fpylll=0.6.1=py311h5d3d69a_0 - giac=1.9.0.21=h04922a4_1 - - igraph=0.9.10=hefb87a8_1 - - ipython=8.18.1=pyh707e725_3 - - isoduration=20.11.0=pyhd8ed1ab_0 - - jsonschema=4.20.0=pyhd8ed1ab_0 + - igraph=0.10.10=hcfae7ab_0 + - ipython=8.22.0=pyh707e725_0 - jupyter_client=8.6.0=pyhd8ed1ab_0 - linbox=1.6.3=h681a5ee_8 - - lsprotocol=2023.0.0=pyhd8ed1ab_0 - - openjdk=17.0.3=h1a274e0_5 - - pango=1.50.14=h1f1e9b3_0 - - pydantic=2.5.2=pyhd8ed1ab_0 - - pythran=0.14.0=py311hec5c23b_1 - scipy=1.11.3=py311h69ead2a_1 - - secretstorage=3.3.3=py311hfecb2dc_2 - - setuptools_scm=8.0.4=hd8ed1ab_0 - - tox=4.11.4=pyhd8ed1ab_0 - blas=2.120=openblas - - cachecontrol-with-filecache=0.13.1=pyhd8ed1ab_0 - - ipykernel=6.26.0=pyhf8b6a83_0 - - ipywidgets=8.1.1=pyhd8ed1ab_0 - - jmol=14.32.10=h8af1aa0_0 - - jsonschema-with-format-nongpl=4.20.0=pyhd8ed1ab_0 - - keyring=24.3.0=py311hec3470c_0 - - matplotlib-base=3.8.2=py311h1f11223_0 - - nbformat=5.9.2=pyhd8ed1ab_0 - - pygls=1.2.1=pyhd8ed1ab_0 - - r-base=4.2.3=h620ca72_0 - - rw=0.9=hf897c2e_0 - - conda-lock=2.5.1=pyhd8ed1ab_0 - - ipympl=0.9.3=pyhd8ed1ab_0 - - jupyter-jsmol=2022.1.0=pyhd8ed1ab_0 - - jupyter_events=0.9.0=pyhd8ed1ab_0 - - matplotlib=3.8.2=py311hfecb2dc_0 - - nbclient=0.8.0=pyhd8ed1ab_0 - - rpy2=3.5.11=py311r42hf13da56_3 - - nbconvert-core=7.13.0=pyhd8ed1ab_0 - - jupyter_server=2.12.1=pyhd8ed1ab_0 - - nbconvert-pandoc=7.13.0=pyhd8ed1ab_0 - - jupyter-lsp=2.2.1=pyhd8ed1ab_0 - - jupyterlab_server=2.25.2=pyhd8ed1ab_0 - - nbconvert=7.13.0=pyhd8ed1ab_0 - - notebook-shim=0.2.3=pyhd8ed1ab_0 - - jupyterlab=4.0.9=pyhd8ed1ab_0 - - notebook=7.0.6=pyhd8ed1ab_0 - - esbonio=0.16.3=pyhd8ed1ab_0 - - jupyter_sphinx=0.1.4=py_0 + - ipykernel=6.29.2=pyhd33586a_0 + - ipywidgets=8.1.2=pyhd8ed1ab_0 + - matplotlib-base=3.8.3=py311h1f11223_0 + - rw=0.9=h31becfc_1 - sphinx-basic-ng=1.0.0b2=pyhd8ed1ab_1 - - furo=2023.9.10=pyhd8ed1ab_0 - - sphinx-copybutton=0.5.2=pyhd8ed1ab_0 - - sphinxcontrib-applehelp=1.0.7=pyhd8ed1ab_0 - - sphinxcontrib-devhelp=1.0.5=pyhd8ed1ab_0 - - sphinxcontrib-htmlhelp=2.0.4=pyhd8ed1ab_0 - - sphinxcontrib-qthelp=1.0.6=pyhd8ed1ab_0 + - furo=2024.1.29=pyhd8ed1ab_0 + - sphinx-inline-tabs=2023.4.21=pyhd8ed1ab_0 + - sphinxcontrib-applehelp=1.0.8=pyhd8ed1ab_0 + - sphinxcontrib-devhelp=1.0.6=pyhd8ed1ab_0 + - sphinxcontrib-htmlhelp=2.0.5=pyhd8ed1ab_0 + - sphinxcontrib-qthelp=1.0.7=pyhd8ed1ab_0 - sphinx=7.2.6=pyhd8ed1ab_0 - - sphinxcontrib-serializinghtml=1.1.9=pyhd8ed1ab_0 - - sphinxcontrib-websupport=1.2.6=pyhd8ed1ab_0 + - sphinxcontrib-serializinghtml=1.1.10=pyhd8ed1ab_0 diff --git a/src/environment-dev-3.11-linux.yml b/src/environment-dev-3.11-linux.yml index 0e23f16474b..875ec6ac0a3 100644 --- a/src/environment-dev-3.11-linux.yml +++ b/src/environment-dev-3.11-linux.yml @@ -1,511 +1,262 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: 56c42ecbe65cba7282953f079a512567282badec48b591a1070d8b4df13df565 +# input_hash: e1f01075026a5517d94682cc74044f8236c0120b681ca98df9af12a1de0e6237 channels: - conda-forge dependencies: - _libgcc_mutex=0.1=conda_forge - - _r-mutex=1.0.1=anacondar_1 - - ca-certificates=2023.11.17=hbcca054_0 + - ca-certificates=2024.2.2=hbcca054_0 - font-ttf-dejavu-sans-mono=2.37=hab24e00_0 - font-ttf-inconsolata=3.000=h77eed37_0 - font-ttf-source-code-pro=2.038=h77eed37_0 - font-ttf-ubuntu=0.83=h77eed37_1 - - gh=2.40.1=ha8f183a_0 - - kernel-headers_linux-64=2.6.32=he073ed8_16 + - kernel-headers_linux-64=2.6.32=he073ed8_17 - ld_impl_linux-64=2.40=h41732ed_0 - - libboost-headers=1.84.0=ha770c72_0 - - libgcc-devel_linux-64=12.3.0=h8bca6fd_103 - - libstdcxx-devel_linux-64=12.3.0=h8bca6fd_103 - - libstdcxx-ng=13.2.0=h7e041cc_3 - - mathjax=3.2.2=ha770c72_0 + - libboost-headers=1.84.0=ha770c72_1 + - libgcc-devel_linux-64=12.3.0=h8bca6fd_105 + - libstdcxx-devel_linux-64=12.3.0=h8bca6fd_105 + - libstdcxx-ng=13.2.0=h7e041cc_5 - pari-elldata=0.0.20161017=0 - pari-galdata=0.0.20180411=0 - - pari-galpol=0.0.20180625=0 - pari-seadata-small=0.0.20090618=0 - python_abi=3.11=4_cp311 - - sagemath-db-combinatorial-designs=20140630=1 - - sagemath-db-graphs=20210214=hd8ed1ab_0 - - sagemath-db-polytopes=20170220=1 - - three.js=122=hd8ed1ab_2 - - tzdata=2023c=h71feb2d_0 + - tzdata=2024a=h0c530f3_0 - fonts-conda-forge=1=0 - - libgomp=13.2.0=h807b86a_3 + - libgomp=13.2.0=h807b86a_5 - pari-seadata=0.0.20090618=0 - - sysroot_linux-64=2.12=he073ed8_16 - - threejs-sage=122=hd8ed1ab_2 + - sysroot_linux-64=2.12=he073ed8_17 - binutils_impl_linux-64=2.40=hf600244_0 - fonts-conda-ecosystem=1=0 - binutils=2.40=hdd6e379_0 - binutils_linux-64=2.40=hbdbef99_2 - _openmp_mutex=4.5=2_kmp_llvm - - libgcc-ng=13.2.0=h807b86a_3 - - alsa-lib=1.2.10=hd590300_0 - - attr=2.5.1=h166bdaf_1 - - bc=1.07.1=h7f98852_0 + - libgcc-ng=13.2.0=h807b86a_5 - bdw-gc=8.0.6=h4bd325d_0 - bzip2=1.0.8=hd590300_5 - - c-ares=1.24.0=hd590300_0 + - c-ares=1.27.0=hd590300_0 - cliquer=1.22=h36c2ea0_0 - - fribidi=1.0.10=h36c2ea0_0 - - gengetopt=2.23=h9c3ff4c_0 - - gettext=0.21.1=h27087fc_0 - gf2x=1.3.0=ha476b99_2 - giflib=5.2.1=h0b41bf4_3 - gmp=6.3.0=h59595ed_0 - - graphite2=1.3.13=h58526e2_1001 - icu=73.2=h59595ed_0 - keyutils=1.6.1=h166bdaf_0 - - lame=3.100=h166bdaf_1003 - lerc=4.0.0=h27087fc_0 - - libatomic_ops=7.6.14=h166bdaf_0 - libbraiding=1.2=hcb278e6_0 - libbrotlicommon=1.1.0=hd590300_1 - - libcbor=0.10.2=hcb278e6_0 - libdeflate=1.19=hd590300_0 - libev=4.33=hd590300_2 - libexpat=2.5.0=hcb278e6_1 - libffi=3.4.2=h7f98852_5 - - libgfortran5=13.2.0=ha4646dd_3 + - libgfortran5=13.2.0=ha4646dd_5 - libiconv=1.17=hd590300_2 - libjpeg-turbo=3.0.0=hd590300_1 - libnsl=2.0.1=hd590300_0 - - libogg=1.3.4=h7f98852_1 - - libopus=1.3.1=h7f98852_1 - - libsanitizer=12.3.0=h0f45ef3_3 + - libsanitizer=12.3.0=h0f45ef3_5 - libsodium=1.0.18=h36c2ea0_1 - - libtool=2.4.7=h27087fc_0 - libuuid=2.38.1=h0b41bf4_0 - - libuv=1.46.0=hd590300_0 - libwebp-base=1.3.2=hd590300_0 + - libxcrypt=4.4.36=hd590300_1 - libzlib=1.2.13=hd590300_5 - - lrcalc=2.1=h27087fc_5 - - lz4-c=1.9.4=hcb278e6_0 - - m4=1.4.18=h516909a_1001 - - make=4.3=hd18ef5c_1 - - metis=5.1.1=h59595ed_2 - - mpg123=1.32.3=h59595ed_0 - - nauty=2.8.8=hd590300_0 + - lrcalc=2.1=h59595ed_6 + - nauty=2.8.8=hd590300_1 - ncurses=6.4=h59595ed_2 - ninja=1.11.1=h924138e_0 - - nspr=4.35=h27087fc_0 - - openssl=3.2.0=hd590300_1 + - openssl=3.2.1=hd590300_0 - palp=2.20=h36c2ea0_0 - - patch=2.7.6=h7f98852_1002 - - pixman=0.42.2=h59595ed_0 - pkg-config=0.29.2=h36c2ea0_1008 - planarity=3.0.0.5=h36c2ea0_1002 - primesieve=11.1=h59595ed_0 - pthread-stubs=0.4=h36c2ea0_1001 - qhull=2020.2=h4bd325d_2 - - rhash=1.4.4=hd590300_0 - - sed=4.8=he412f7d_0 - symmetrica=3.0.1=hcb278e6_0 - - xorg-inputproto=2.3.2=h7f98852_1002 - - xorg-kbproto=1.0.7=h7f98852_1002 - - xorg-libice=1.1.1=hd590300_0 - xorg-libxau=1.0.11=hd590300_0 - xorg-libxdmcp=1.1.3=h7f98852_0 - - xorg-recordproto=1.14.2=h7f98852_1002 - - xorg-renderproto=0.11.1=h7f98852_1002 - - xorg-xextproto=7.3.0=h0b41bf4_1003 - - xorg-xf86vidmodeproto=2.3.1=h7f98852_1002 - - xorg-xproto=7.0.31=h7f98852_1007 - xz=5.2.6=h166bdaf_0 - - yaml=0.2.5=h7f98852_2 - cddlib=1!0.94m=h9202a9a_0 - ecm=7.0.4=h9202a9a_1002 - expat=2.5.0=hcb278e6_1 - - gcc_impl_linux-64=12.3.0=he2b93b0_3 + - gcc_impl_linux-64=12.3.0=he2b93b0_5 - givaro=4.1.1=h192cbe9_1 - glpk=5.0=h445213a_0 - libbrotlidec=1.1.0=hd590300_1 - libbrotlienc=1.1.0=hd590300_1 - - libcap=2.69=h0f662aa_0 - libedit=3.1.20191231=he28a2e2_2 - - libevent=2.1.12=hf998b51_1 - - libflac=1.4.3=h59595ed_0 - - libgfortran-ng=13.2.0=h69a702a_3 - - libgpg-error=1.47=h71f35ed_0 + - libgfortran-ng=13.2.0=h69a702a_5 - libhomfly=1.02r6=h36c2ea0_0 - libnghttp2=1.58.0=h47da74e_1 - - libpng=1.6.39=h753d276_0 - - libsqlite=3.44.2=h2797004_0 + - libpng=1.6.42=h2797004_0 + - libsqlite=3.45.1=h2797004_0 - libssh2=1.11.0=h0841786_0 - - libvorbis=1.3.7=h9c3ff4c_0 - libxcb=1.15=h0b41bf4_0 - - libxml2=2.11.6=h232c23b_0 + - libxml2=2.12.5=h232c23b_0 - mpfr=4.2.1=h9458935_0 - - mysql-common=8.0.33=hf1915f5_6 - ntl=11.4.3=hef3c4d3_1 - - pcre2=10.42=hcad00b1_0 - - perl=5.32.1=4_hd590300_perl5 + - perl=5.32.1=7_hd590300_perl5 - primecount=7.9=hcb278e6_0 - readline=8.2=h8228510_1 - - tar=1.34=hb2e2bae_1 - tk=8.6.13=noxft_h4845f30_101 - - xorg-fixesproto=5.0=h7f98852_1002 - - xorg-libsm=1.2.4=h7391055_0 - zeromq=4.3.5=h59595ed_0 - zlib=1.2.13=hd590300_5 - zstd=1.5.5=hfc55251_0 - - autoconf=2.71=pl5321h2b4cb7a_1 - brotli-bin=1.1.0=hd590300_1 - - bwidget=1.9.14=ha770c72_1 - ecl=21.2.1=h9d73b02_2 - - fftw=3.3.10=nompi_hc118613_108 - freetype=2.12.1=h267a509_2 - gap-core=4.12.2=he9a28a4_3 - gcc=12.3.0=h8d2909c_2 - gcc_linux-64=12.3.0=h76fc315_2 - gfan=0.6.2=hb86e20a_1003 - - gfortran_impl_linux-64=12.3.0=hfcedea8_3 - - gxx_impl_linux-64=12.3.0=he2b93b0_3 + - gxx_impl_linux-64=12.3.0=he2b93b0_5 - krb5=1.21.2=h659d440_0 - - libboost=1.84.0=h6fcfa73_0 + - libboost=1.84.0=h8013b2b_1 - libflint=3.0.1=h5f2e117_ntl_100 - - libgcrypt=1.10.3=hd590300_0 - - libglib=2.78.3=h783c2da_0 - - libhwloc=2.9.3=default_h554bfaf_1009 - - libllvm15=15.0.7=h5cf9203_3 - libopenblas=0.3.25=pthreads_h413a1c8_0 - - libsndfile=1.2.2=hc60ed4a_1 - libtiff=4.6.0=ha9c0a0a_2 - - libudev1=255=h3f72095_0 - llvm-openmp=17.0.6=h4dfa4b3_0 - m4ri=20140914=h7ca028e_1005 - mpc=1.3.1=hfe3b2da_0 - mpfi=1.5.4=h9f54685_1001 - - mysql-libs=8.0.33=hca2cd23_6 - - nss=3.96=h1d7d5a4_0 - - pandoc=3.1.3=h32600fe_0 - pari=2.15.4=h4d4ae9b_2_pthread - ppl=1.2=h6ec01c2_1006 - - python=3.11.7=hab00c5b_0_cpython + - python=3.11.8=hab00c5b_0_cpython - qd=2.3.22=h2cc385e_1004 - - sqlite=3.44.2=h2c6b66d_0 - - tachyon=0.99b6=0 - - texinfo=7.0=pl5321h0f457ee_0 - - tktable=2.10=h0c5db8f_5 - - xcb-util=0.4.0=hd590300_1 - - xcb-util-keysyms=0.4.0=h8ee46fc_1 - - xcb-util-renderutil=0.3.9=hd590300_1 - - xcb-util-wm=0.4.1=h8ee46fc_1 - - xorg-libx11=1.8.7=h8ee46fc_0 - - alabaster=0.7.13=pyhd8ed1ab_0 - - appdirs=1.4.4=pyh9f0ad1d_0 - - appnope=0.1.3=pyhd8ed1ab_0 - - attrs=23.1.0=pyh71513ae_1 - - automake=1.16.5=pl5321ha770c72_0 + - alabaster=0.7.16=pyhd8ed1ab_0 - brotli=1.1.0=hd590300_1 - brotli-python=1.1.0=py311hb755f60_1 - c-compiler=1.6.0=hd590300_0 - - cached_property=1.5.2=pyha770c72_1 - - cachetools=5.3.2=pyhd8ed1ab_0 - - cachy=0.3.0=pyhd8ed1ab_1 - - certifi=2023.11.17=pyhd8ed1ab_0 - - chardet=5.2.0=py311h38be061_1 + - certifi=2024.2.2=pyhd8ed1ab_0 - charset-normalizer=3.3.2=pyhd8ed1ab_0 - - click=8.1.7=unix_pyh707e725_0 - colorama=0.4.6=pyhd8ed1ab_0 - - conway-polynomials=0.8=pyhd8ed1ab_0 - - crashtest=0.4.1=pyhd8ed1ab_0 + - conway-polynomials=0.9=pyhd8ed1ab_0 - cycler=0.12.1=pyhd8ed1ab_0 - cysignals=1.11.2=py311h82528dc_3 - - cython=3.0.7=py311hb755f60_0 - - dbus=1.13.6=h5008d03_3 - - debugpy=1.8.0=py311hb755f60_1 + - cython=3.0.8=py311hb755f60_0 + - debugpy=1.8.1=py311hb755f60_0 - decorator=5.1.1=pyhd8ed1ab_0 - - defusedxml=0.7.1=pyhd8ed1ab_0 - - distlib=0.3.8=pyhd8ed1ab_0 - docutils=0.20.1=py311h38be061_3 - - eclib=20231211=h96f522a_0 - - editables=0.3=pyhd8ed1ab_0 - - entrypoints=0.4=pyhd8ed1ab_0 - - exceptiongroup=1.2.0=pyhd8ed1ab_0 + - eclib=20231212=h96f522a_0 + - exceptiongroup=1.2.0=pyhd8ed1ab_2 - execnet=2.0.2=pyhd8ed1ab_0 - executing=2.0.1=pyhd8ed1ab_0 - - filelock=3.13.1=pyhd8ed1ab_0 - - flit-core=3.9.0=pyhd8ed1ab_0 - fontconfig=2.14.2=h14ed4e7_0 - fplll=5.4.5=h384768b_0 - gap-defaults=4.12.2=ha770c72_3 - - gast=0.5.4=pyhd8ed1ab_0 - - gfortran=12.3.0=h499e0f7_2 - - gfortran_linux-64=12.3.0=h7fe76b4_2 - - glib-tools=2.78.3=hfc55251_0 - gmpy2=2.1.2=py311h6a5fa03_1 - gxx=12.3.0=h8d2909c_2 - gxx_linux-64=12.3.0=h8a814eb_2 - idna=3.6=pyhd8ed1ab_0 - imagesize=1.4.1=pyhd8ed1ab_0 - iniconfig=2.0.0=pyhd8ed1ab_0 - - ipython_genutils=0.2.0=py_1 - - jeepney=0.8.0=pyhd8ed1ab_0 - - json5=0.9.14=pyhd8ed1ab_0 - - jsonpointer=2.4=py311h38be061_3 - - jupyterlab_widgets=3.0.9=pyhd8ed1ab_0 + - jupyterlab_widgets=3.0.10=pyhd8ed1ab_0 - kiwisolver=1.4.5=py311h9547e67_1 - lcalc=2.0.5=h6a8a7c6_1 - lcms2=2.16=hb7c19ff_0 - libblas=3.9.0=20_linux64_openblas - - libboost-devel=1.84.0=h00ab1b0_0 + - libboost-devel=1.84.0=h00ab1b0_1 - libbrial=1.2.12=h3155cbd_1 - - libclang13=15.0.7=default_ha2b6cf4_4 - - libcups=2.3.3=h4637d8d_4 - libcurl=8.5.0=hca28451_0 - - libfido2=1.14.0=h4446dcb_0 - - libpq=16.1=h33b98f1_7 - - libsystemd0=255=h3516f8a_0 - libwebp=1.3.2=h658648e_1 - m4rie=20150908=h7ca028e_1001 - - markupsafe=2.1.3=py311h459d7ec_1 + - markupsafe=2.1.5=py311h459d7ec_0 - maxima=5.47.0=hed6455c_1 - - mistune=3.0.2=pyhd8ed1ab_0 - - more-itertools=10.1.0=pyhd8ed1ab_0 - mpmath=1.3.0=pyhd8ed1ab_0 - - msgpack-python=1.0.7=py311h9547e67_0 - munkres=1.1.4=pyh9f0ad1d_0 - - nest-asyncio=1.5.8=pyhd8ed1ab_0 + - nest-asyncio=1.6.0=pyhd8ed1ab_0 - networkx=3.2.1=pyhd8ed1ab_0 - openblas=0.3.25=pthreads_h7a3da1a_0 - openjpeg=2.5.0=h488ebb8_3 - packaging=23.2=pyhd8ed1ab_0 - - pandocfilters=1.5.0=pyhd8ed1ab_0 - parso=0.8.3=pyhd8ed1ab_0 - - pastel=0.2.1=pyhd8ed1ab_0 - - pathspec=0.12.1=pyhd8ed1ab_0 - pickleshare=0.7.5=py_1003 - pkgconfig=1.5.5=pyhd8ed1ab_4 - - pkginfo=1.9.6=pyhd8ed1ab_0 - - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 - - platformdirs=4.1.0=pyhd8ed1ab_0 - - pluggy=1.3.0=pyhd8ed1ab_0 - - ply=3.11=py_1 - - prometheus_client=0.19.0=pyhd8ed1ab_0 - - psutil=5.9.7=py311h459d7ec_0 + - platformdirs=4.2.0=pyhd8ed1ab_0 + - pluggy=1.4.0=pyhd8ed1ab_0 + - psutil=5.9.8=py311h459d7ec_0 - ptyprocess=0.7.0=pyhd3deb0d_0 - pure_eval=0.2.2=pyhd8ed1ab_0 - - py=1.11.0=pyh6c4a22f_0 - - pybind11-global=2.11.1=py311h9547e67_2 - - pycodestyle=2.11.1=pyhd8ed1ab_0 - - pycparser=2.21=pyhd8ed1ab_0 - pygments=2.17.2=pyhd8ed1ab_0 - - pylev=1.4.0=pyhd8ed1ab_0 - pyparsing=3.1.1=pyhd8ed1ab_0 - - pyrsistent=0.20.0=py311h459d7ec_0 - pysocks=1.7.1=pyha2e5f31_6 - - pyspellchecker=0.7.2=pyhd8ed1ab_0 - - python-fastjsonschema=2.19.0=pyhd8ed1ab_0 - - python-json-logger=2.0.7=pyhd8ed1ab_0 - - python-lrcalc=2.1=py311ha362b79_5 - - python-tzdata=2023.3=pyhd8ed1ab_0 - - pytz=2023.3.post1=pyhd8ed1ab_0 - - pyyaml=6.0.1=py311h459d7ec_1 + - pytz=2024.1=pyhd8ed1ab_0 - pyzmq=25.1.2=py311h34ded2d_0 - - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.15.2=py311h46250e7_0 - - ruamel.yaml.clib=0.2.7=py311h459d7ec_2 - - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 - - sagetex=3.6.1=pyhd8ed1ab_0 - - send2trash=1.8.2=pyh41d4057_0 - - setuptools=68.2.2=pyhd8ed1ab_0 - - simplegeneric=0.8.1=py_1 + - setuptools=69.1.0=pyhd8ed1ab_1 - singular=4.3.2.p8=h33f5c3f_1 - six=1.16.0=pyh6c4a22f_0 - - smmap=5.0.0=pyhd8ed1ab_0 - - sniffio=1.3.0=pyhd8ed1ab_0 - snowballstemmer=2.2.0=pyhd8ed1ab_0 - soupsieve=2.5=pyhd8ed1ab_1 - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_0 - sympow=2.023.6=hc6ab17c_3 - - tbb=2021.11.0=h00ab1b0_0 - - toml=0.10.2=pyhd8ed1ab_0 - tomli=2.0.1=pyhd8ed1ab_0 - - tomlkit=0.12.3=pyha770c72_0 - - toolz=0.12.0=pyhd8ed1ab_0 - - tornado=6.3.3=py311h459d7ec_1 - - traitlets=5.14.0=pyhd8ed1ab_0 - - trove-classifiers=2023.11.29=pyhd8ed1ab_0 - - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 + - tornado=6.4=py311h459d7ec_0 + - traitlets=5.14.1=pyhd8ed1ab_0 - typing_extensions=4.9.0=pyha770c72_0 - - typing_utils=0.1.0=pyhd8ed1ab_0 - - tzlocal=5.2=py311h38be061_0 - - uri-template=1.3.0=pyhd8ed1ab_0 - - wcwidth=0.2.12=pyhd8ed1ab_0 - - webcolors=1.13=pyhd8ed1ab_0 - - webencodings=0.5.1=pyhd8ed1ab_2 - - websocket-client=1.7.0=pyhd8ed1ab_0 + - wcwidth=0.2.13=pyhd8ed1ab_0 - wheel=0.42.0=pyhd8ed1ab_0 - - widgetsnbextension=4.0.9=pyhd8ed1ab_0 - - xcb-util-image=0.4.0=h8ee46fc_1 - - xkeyboard-config=2.40=hd590300_0 - - xorg-libxext=1.3.4=h0b41bf4_2 - - xorg-libxfixes=5.0.3=h7f98852_1004 - - xorg-libxrender=0.9.11=hd590300_0 - - xorg-libxt=1.3.0=hd590300_1 + - widgetsnbextension=4.0.10=pyhd8ed1ab_0 - zipp=3.17.0=pyhd8ed1ab_0 - - anyio=4.2.0=pyhd8ed1ab_0 - asttokens=2.4.1=pyhd8ed1ab_0 - - async-lru=2.0.4=pyhd8ed1ab_0 - babel=2.14.0=pyhd8ed1ab_0 - - beautifulsoup4=4.12.2=pyha770c72_0 - - beniget=0.4.1=pyhd8ed1ab_0 - - bleach=6.1.0=pyhd8ed1ab_0 - - boost-cpp=1.84.0=h44aadfe_0 + - beautifulsoup4=4.12.3=pyha770c72_0 + - boost-cpp=1.84.0=h44aadfe_1 - brial=1.2.12=pyh694c41f_1 - - cached-property=1.5.2=hd8ed1ab_1 - - cairo=1.18.0=h3faef2a_0 - - cffi=1.16.0=py311hb3a22ac_0 - - click-default-group=1.2.4=pyhd8ed1ab_0 - - clikit=0.6.2=pyhd8ed1ab_2 - - cmake=3.28.1=hcfe8598_0 - - comm=0.1.4=pyhd8ed1ab_0 - - cppy=1.2.1=pyhd8ed1ab_0 - - curl=8.5.0=hca28451_0 + - comm=0.2.1=pyhd8ed1ab_0 + - coverage=7.4.2=py311h459d7ec_0 - cxx-compiler=1.6.0=h00ab1b0_0 - - cypari2=2.1.3=py311hd2352ae_2 - - deprecation=2.1.0=pyh9f0ad1d_0 - - fonttools=4.47.0=py311h459d7ec_0 - - fortran-compiler=1.6.0=heb67821_0 - - gitdb=4.0.11=pyhd8ed1ab_0 - - glib=2.78.3=hfc55251_0 - - html5lib=1.1=pyh9f0ad1d_0 - - importlib-metadata=7.0.0=pyha770c72_0 + - cypari2=2.1.4=py311hd2352ae_2 + - fonttools=4.49.0=py311h459d7ec_0 + - importlib-metadata=7.0.1=pyha770c72_0 - importlib_resources=6.1.1=pyhd8ed1ab_0 - - jaraco.classes=3.3.0=pyhd8ed1ab_0 - jedi=0.19.1=pyhd8ed1ab_0 - - jinja2=3.1.2=pyhd8ed1ab_1 - - jupyter_core=5.5.1=py311h38be061_0 - - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 + - jinja2=3.1.3=pyhd8ed1ab_0 + - jupyter_core=5.7.1=py311h38be061_0 - libcblas=3.9.0=20_linux64_openblas - - libclang=15.0.7=default_hb11cfb5_4 - libgd=2.3.3=h119a65a_9 - liblapack=3.9.0=20_linux64_openblas - - libxkbcommon=1.6.0=h5d7e998_0 - matplotlib-inline=0.1.6=pyhd8ed1ab_0 - memory-allocator=0.1.3=py311h459d7ec_0 - - openssh=9.3p1=h2d3b35a_2 - - overrides=7.4.0=pyhd8ed1ab_0 - - pexpect=4.8.0=pyh1a96a4e_2 - - pillow=10.1.0=py311ha6c5da5_0 - - pip=23.3.2=pyhd8ed1ab_0 + - meson=1.3.2=pyhd8ed1ab_0 + - pexpect=4.9.0=pyhd8ed1ab_0 + - pillow=10.2.0=py311ha6c5da5_0 + - pip=24.0=pyhd8ed1ab_0 - pplpy=0.8.9=py311h85abca9_0 - primecountpy=0.1.0=py311h9547e67_4 - prompt-toolkit=3.0.42=pyha770c72_0 - - pulseaudio-client=16.1=hb77b528_5 - - pybind11=2.11.1=py311h9547e67_2 - - pyproject-api=1.6.1=pyhd8ed1ab_0 - - pytest=7.4.3=pyhd8ed1ab_0 + - pyproject-metadata=0.7.1=pyhd8ed1ab_0 + - pytest=8.0.1=pyhd8ed1ab_1 - python-dateutil=2.8.2=pyhd8ed1ab_0 - - pytz-deprecation-shim=0.1.0.post0=py311h38be061_4 - - referencing=0.32.0=pyhd8ed1ab_0 - - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - - ruamel.yaml=0.18.5=py311h459d7ec_0 - - sip=6.7.12=py311hb755f60_0 - sympy=1.12=pypyh9d50eac_103 - - terminado=0.18.0=pyh0d859eb_0 - - tinycss2=1.2.1=pyhd8ed1ab_0 - - typing-extensions=4.9.0=hd8ed1ab_0 - - urllib3=1.26.18=pyhd8ed1ab_0 - - virtualenv=20.25.0=pyhd8ed1ab_0 - - xorg-libxi=1.7.10=h7f98852_0 - - annotated-types=0.6.0=pyhd8ed1ab_0 - - argon2-cffi-bindings=21.2.0=py311h459d7ec_4 + - urllib3=2.2.1=pyhd8ed1ab_0 - arpack=3.8.0=nompi_h0baa96a_101 - - arrow=1.3.0=pyhd8ed1ab_0 - - cattrs=23.2.3=pyhd8ed1ab_0 - - compilers=1.6.0=ha770c72_0 - - cryptography=41.0.7=py311hcb13ee4_1 - - dsdp=5.8=hd9d9efa_1203 - fflas-ffpack=2.4.3=h912ac81_2 - - fqdn=1.5.1=pyhd8ed1ab_0 - - git=2.43.0=pl5321h7bc287a_0 - - gitpython=3.1.40=pyhd8ed1ab_0 - gsl=2.7=he838d99_0 - - gstreamer=1.22.8=h98fc4e7_0 - - harfbuzz=8.3.0=h3d44ed6_0 - - hatchling=1.21.0=pyhd8ed1ab_0 - iml=1.0.5=hd75c201_1003 - - importlib-resources=6.1.1=pyhd8ed1ab_0 - - importlib_metadata=7.0.0=hd8ed1ab_0 - - jsonschema-specifications=2023.11.2=pyhd8ed1ab_0 - - jupyter_server_terminals=0.5.0=pyhd8ed1ab_0 + - importlib_metadata=7.0.1=hd8ed1ab_0 - liblapacke=3.9.0=20_linux64_openblas - - numpy=1.26.2=py311h64a7726_0 - - prompt_toolkit=3.0.42=hd8ed1ab_0 - - pydantic-core=2.14.5=py311h46250e7_0 - - pyqt5-sip=12.12.2=py311hb755f60_5 + - meson-python=0.15.0=pyh0c530f3_0 + - numpy=1.26.4=py311h64a7726_0 - pytest-xdist=3.5.0=pyhd8ed1ab_0 - requests=2.31.0=pyhd8ed1ab_0 - - setuptools-scm=8.0.4=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 - - suitesparse=5.10.1=h3ec001c_2 - - xorg-libxtst=1.2.3=h7f98852_1002 - - argon2-cffi=23.1.0=pyhd8ed1ab_0 - blas-devel=3.9.0=20_linux64_openblas - - cachecontrol=0.13.1=pyhd8ed1ab_0 - contourpy=1.2.0=py311h9547e67_0 - - cvxopt=1.3.2=py311h2b3fd1d_1 - - ensureconda=1.4.3=pyhd8ed1ab_0 - - fpylll=0.6.0=py311hcfae7cf_1 + - fpylll=0.6.1=py311hcfae7cf_0 - giac=1.9.0.21=h673759e_1 - - gst-plugins-base=1.22.8=h8e1006c_0 - - igraph=0.10.8=h66a01bf_0 - - ipython=8.18.1=pyh707e725_3 - - isoduration=20.11.0=pyhd8ed1ab_0 - - jsonschema=4.20.0=pyhd8ed1ab_0 + - igraph=0.10.10=h153f77b_0 + - ipython=8.22.0=pyh707e725_0 - jupyter_client=8.6.0=pyhd8ed1ab_0 - linbox=1.6.3=ha329b40_8 - - lsprotocol=2023.0.0=pyhd8ed1ab_0 - - openjdk=21.0.1=haa376d0_0 - - pango=1.50.14=ha41ecd1_2 - - pydantic=2.5.2=pyhd8ed1ab_0 - - pythran=0.14.0=py311h92ebd52_1 - scipy=1.11.4=py311h64a7726_0 - - secretstorage=3.3.3=py311h38be061_2 - - setuptools_scm=8.0.4=hd8ed1ab_0 - - tox=4.11.4=pyhd8ed1ab_0 - blas=2.120=openblas - - cachecontrol-with-filecache=0.13.1=pyhd8ed1ab_0 - - ipykernel=6.26.0=pyhf8b6a83_0 - - ipywidgets=8.1.1=pyhd8ed1ab_0 - - jmol=14.32.10=ha770c72_0 - - jsonschema-with-format-nongpl=4.20.0=pyhd8ed1ab_0 - - keyring=24.3.0=py311h38be061_0 - - matplotlib-base=3.8.2=py311h54ef318_0 - - nbformat=5.9.2=pyhd8ed1ab_0 - - pygls=1.2.1=pyhd8ed1ab_0 - - qt-main=5.15.8=h82b777d_17 - - r-base=4.3.2=hb8ee39d_1 + - ipykernel=6.29.2=pyhd33586a_0 + - ipywidgets=8.1.2=pyhd8ed1ab_0 + - matplotlib-base=3.8.3=py311h54ef318_0 - rw=0.9=hd590300_1 - - conda-lock=2.5.1=pyhd8ed1ab_0 - - ipympl=0.9.3=pyhd8ed1ab_0 - - jupyter-jsmol=2022.1.0=pyhd8ed1ab_0 - - jupyter_events=0.9.0=pyhd8ed1ab_0 - - nbclient=0.8.0=pyhd8ed1ab_0 - - pyqt=5.15.9=py311hf0fb5b6_5 - - rpy2=3.5.11=py311r43h1f0f07a_3 - - matplotlib=3.8.2=py311h38be061_0 - - nbconvert-core=7.13.0=pyhd8ed1ab_0 - - jupyter_server=2.12.1=pyhd8ed1ab_0 - - nbconvert-pandoc=7.13.0=pyhd8ed1ab_0 - - jupyter-lsp=2.2.1=pyhd8ed1ab_0 - - jupyterlab_server=2.25.2=pyhd8ed1ab_0 - - nbconvert=7.13.0=pyhd8ed1ab_0 - - notebook-shim=0.2.3=pyhd8ed1ab_0 - - jupyterlab=4.0.9=pyhd8ed1ab_0 - - notebook=7.0.6=pyhd8ed1ab_0 - - esbonio=0.16.3=pyhd8ed1ab_0 - - jupyter_sphinx=0.4.0=py311h38be061_1 - sphinx-basic-ng=1.0.0b2=pyhd8ed1ab_1 - - furo=2023.9.10=pyhd8ed1ab_0 - - sphinx-copybutton=0.5.2=pyhd8ed1ab_0 - - sphinxcontrib-applehelp=1.0.7=pyhd8ed1ab_0 - - sphinxcontrib-devhelp=1.0.5=pyhd8ed1ab_0 - - sphinxcontrib-htmlhelp=2.0.4=pyhd8ed1ab_0 - - sphinxcontrib-qthelp=1.0.6=pyhd8ed1ab_0 + - furo=2024.1.29=pyhd8ed1ab_0 + - sphinx-inline-tabs=2023.4.21=pyhd8ed1ab_0 + - sphinxcontrib-applehelp=1.0.8=pyhd8ed1ab_0 + - sphinxcontrib-devhelp=1.0.6=pyhd8ed1ab_0 + - sphinxcontrib-htmlhelp=2.0.5=pyhd8ed1ab_0 + - sphinxcontrib-qthelp=1.0.7=pyhd8ed1ab_0 - sphinx=7.2.6=pyhd8ed1ab_0 - - sphinxcontrib-serializinghtml=1.1.9=pyhd8ed1ab_0 - - sphinxcontrib-websupport=1.2.6=pyhd8ed1ab_0 + - sphinxcontrib-serializinghtml=1.1.10=pyhd8ed1ab_0 diff --git a/src/environment-dev-3.11-macos-arm64.yml b/src/environment-dev-3.11-macos-arm64.yml index 57e973865a7..de185d404a3 100644 --- a/src/environment-dev-3.11-macos-arm64.yml +++ b/src/environment-dev-3.11-macos-arm64.yml @@ -1,443 +1,261 @@ # Generated by conda-lock. # platform: osx-arm64 -# input_hash: 27412966e5080ea2aee7d435840d7e4763032989dbb5d6af642016276929ae26 +# input_hash: a9b5a4d6e3d27347e7e373931e24f51b2eb1bd729ae05e506da9b404f801553e channels: - conda-forge dependencies: - - _r-mutex=1.0.1=anacondar_1 - - bc=1.07.1=h3422bc3_0 - bzip2=1.0.8=h93a5062_5 - - c-ares=1.24.0=h93a5062_0 - - ca-certificates=2023.11.17=hf0a4a13_0 + - c-ares=1.27.0=h93a5062_0 + - ca-certificates=2024.2.2=hf0a4a13_0 - cliquer=1.22=h27ca646_0 - font-ttf-dejavu-sans-mono=2.37=hab24e00_0 - font-ttf-inconsolata=3.000=h77eed37_0 - font-ttf-source-code-pro=2.038=h77eed37_0 - font-ttf-ubuntu=0.83=h77eed37_1 - - fribidi=1.0.10=h27ca646_0 - - gh=2.40.1=h75b854d_0 - giflib=5.2.1=h1a8c8d9_3 - - jpeg=9e=h1a8c8d9_3 - - libatomic_ops=7.6.14=h1a8c8d9_0 + - icu=73.2=hc8870d7_0 + - libboost-headers=1.84.0=hce30654_1 - libbrotlicommon=1.1.0=hb547adb_1 - libcxx=16.0.6=h4653b0c_0 - - libdeflate=1.17=h1a8c8d9_0 + - libdeflate=1.19=hb547adb_0 - libev=4.33=h93a5062_2 - libexpat=2.5.0=hb7217d7_1 - libffi=3.4.2=h3422bc3_5 - - libgfortran-devel_osx-arm64=12.3.0=hc62be1c_1 - libiconv=1.17=h0d3ecfb_2 + - libjpeg-turbo=3.0.0=hb547adb_1 - libsodium=1.0.18=h27ca646_1 - - libtool=2.4.7=hb7217d7_0 - - libuv=1.46.0=hb547adb_0 - - libwebp-base=1.2.4=h1a8c8d9_0 + - libwebp-base=1.3.2=hb547adb_0 - libzlib=1.2.13=h53f4e23_5 - llvm-openmp=17.0.6=hcd81f8e_0 - - m4=1.4.18=h642e427_1001 - - make=4.3=he57ea6c_1 - - mathjax=3.2.2=hce30654_0 - - nauty=2.8.8=h93a5062_0 + - nauty=2.8.8=h93a5062_1 - palp=2.20=h27ca646_0 - - pandoc=3.1.3=hce30654_0 - pari-elldata=0.0.20161017=0 - pari-galdata=0.0.20180411=0 - - pari-galpol=0.0.20180625=0 - pari-seadata-small=0.0.20090618=0 - - patch=2.7.6=h27ca646_1002 - - perl=5.32.1=4_hf2054a2_perl5 + - perl=5.32.1=7_h4614cfb_perl5 - planarity=3.0.0.5=h27ca646_1002 - pthread-stubs=0.4=h27ca646_1001 - python_abi=3.11=4_cp311 - - rhash=1.4.3=hb547adb_2 - - sagemath-db-combinatorial-designs=20140630=1 - - sagemath-db-graphs=20210214=hd8ed1ab_0 - - sagemath-db-polytopes=20170220=1 - - tbb=2021.10.0=h1995070_2 - - three.js=122=hd8ed1ab_2 - - tzdata=2023c=h71feb2d_0 + - tzdata=2024a=h0c530f3_0 - xorg-libxau=1.0.11=hb547adb_0 - xorg-libxdmcp=1.1.3=h27ca646_0 - xz=5.2.6=h57fd34a_0 - - yaml=0.2.5=h3422bc3_2 - - autoconf=2.71=pl5321hcd07c0c_1 - bdw-gc=8.0.6=hc021e02_0 - expat=2.5.0=hb7217d7_1 - fonts-conda-forge=1=0 - - gengetopt=2.23=hbdafb3b_0 - gettext=0.21.1=h0186832_0 - gf2x=1.3.0=hdaa854c_2 - gmp=6.3.0=h965bd2d_0 - - graphite2=1.3.13=h9f76cd9_1001 - - icu=70.1=h6b3803e_0 - - isl=0.25=h9a09cb3_0 - lerc=4.0.0=h9a09cb3_0 - libbraiding=1.2=hb7217d7_0 - libbrotlidec=1.1.0=hb547adb_1 - libbrotlienc=1.1.0=hb547adb_1 - - libcbor=0.10.2=hb7217d7_0 - - libgfortran5=13.2.0=hf226fd6_1 - - libpng=1.6.39=h76d750c_0 - - libsqlite=3.44.2=h091b4b1_0 - - libxcb=1.13=h9b22ae9_1004 - - lrcalc=2.1=hb7217d7_5 - - metis=5.1.1=h965bd2d_2 + - libgfortran5=13.2.0=hf226fd6_3 + - libpng=1.6.42=h091b4b1_0 + - libsqlite=3.45.1=h091b4b1_0 + - libxcb=1.15=hf346824_0 + - libxml2=2.12.5=h0d0cfa8_0 + - lrcalc=2.1=hebf3989_6 - ncurses=6.4=h463b476_2 - ninja=1.11.1=hffc8910_0 - - openjdk=21.0.1=hed44d8b_0 - - openssl=3.2.0=h0d3ecfb_1 + - openssl=3.2.1=h0d3ecfb_0 - pari-seadata=0.0.20090618=0 - - pcre2=10.40=hb34f9b4_0 - - pixman=0.42.2=h13dd4ca_0 + - pcre2=10.42=h26f9a81_0 - primesieve=11.0=hb7217d7_0 - qhull=2020.2=hc021e02_2 - symmetrica=3.0.1=hb7217d7_0 - tapi=1100.0.11=he4954df_0 - - tar=1.34=h7cb298e_1 - - threejs-sage=122=hd8ed1ab_2 - tk=8.6.13=h5083fa2_1 - zeromq=4.3.5=h965bd2d_0 - zlib=1.2.13=h53f4e23_5 - zstd=1.5.5=h4f39d0f_0 - - automake=1.16.5=pl5321hce30654_0 - - boost-cpp=1.81.0=hf96b251_0 - brotli-bin=1.1.0=hb547adb_1 - - bwidget=1.9.14=hce30654_1 - cddlib=1!0.94m=h6d7a090_0 - ecm=7.0.4=h47c7c1a_1002 - fonts-conda-ecosystem=1=0 - freetype=2.12.1=hadb7bae_2 - givaro=4.1.1=h0cdca34_3 - glpk=5.0=h6d7a090_0 - - jmol=14.32.10=hce30654_0 + - libboost=1.84.0=h8e0f962_1 - libedit=3.1.20191231=hc8eb9b7_2 - - libfido2=1.14.0=h8d15234_0 - - libgfortran=5.0.0=13_2_0_hd922786_1 - - libglib=2.78.1=hd9b11f9_0 + - libgfortran=5.0.0=13_2_0_hd922786_3 + - libglib=2.78.4=h1635a5e_0 - libhomfly=1.02r6=h27ca646_0 + - libllvm16=16.0.6=haab561b_3 - libnghttp2=1.58.0=ha4dd798_1 - libssh2=1.11.0=h7a5bd25_0 - - libtiff=4.5.0=h5dffbdd_2 - - libxml2=2.10.3=h67585b2_4 + - libtiff=4.6.0=ha8a6c65_2 - m4ri=20140914=h17b34a0_1005 - mpfr=4.2.1=h9546428_0 - ntl=11.4.3=hbb3f309_1 - primecount=7.6=hb6e4faa_0 - readline=8.2=h92ec313_1 - sigtool=0.1.3=h44b9a77_0 - - tachyon=0.99b6=hfb72b2a_1001 - - texinfo=7.0=pl5321h9ea1dce_0 - - tktable=2.10=hd996620_5 - brotli=1.1.0=hb547adb_1 - ecl=21.2.1=h8492d4d_2 - - fftw=3.3.10=nompi_h3046061_108 - fontconfig=2.14.2=h82840c6_0 - gap-core=4.12.2=he8f4e70_3 - gfan=0.6.2=hec08f5c_1003 - - krb5=1.20.1=h69eda48_0 - - lcms2=2.15=h481adae_0 + - krb5=1.21.2=h92f50d5_0 + - lcms2=2.16=ha0e7c42_0 + - ld64_osx-arm64=609=ha4bd21c_16 + - libboost-devel=1.84.0=hf450f58_1 - libbrial=1.2.12=ha7f5006_1 + - libclang-cpp16=16.0.6=default_he012953_5 - libflint=3.0.1=h28749a5_ntl_100 - - libllvm15=15.0.7=h62b9111_1 - libopenblas=0.3.25=openmp_h6c19121_0 - - libwebp=1.2.4=h999c80f_1 + - libwebp=1.3.2=hf30222e_1 + - llvm-tools=16.0.6=haab561b_3 - m4rie=20150908=h17b34a0_1001 - mpc=1.3.1=h91ba8db_0 - mpfi=1.5.4=hbde5f5b_1001 - - openjpeg=2.5.0=hbc2ba62_2 + - openjpeg=2.5.0=h4c1507b_3 - pari=2.15.4=haeeeed7_2_pthread - pkg-config=0.29.2=hab62308_1008 - ppl=1.2=h8b147cf_1006 - - python=3.11.7=hdf0ec26_0_cpython + - python=3.11.8=hdf0ec26_0_cpython - qd=2.3.22=hbec66e7_1004 - - sqlite=3.44.2=hf2abe2d_0 - - alabaster=0.7.13=pyhd8ed1ab_0 - - appdirs=1.4.4=pyh9f0ad1d_0 - - appnope=0.1.3=pyhd8ed1ab_0 - - attrs=23.1.0=pyh71513ae_1 + - alabaster=0.7.16=pyhd8ed1ab_0 + - appnope=0.1.4=pyhd8ed1ab_0 + - boost-cpp=1.84.0=hca5e981_1 - brial=1.2.12=pyh694c41f_1 - brotli-python=1.1.0=py311ha891d26_1 - - cached_property=1.5.2=pyha770c72_1 - - cachetools=5.3.2=pyhd8ed1ab_0 - - cachy=0.3.0=pyhd8ed1ab_1 - - cairo=1.16.0=h73a0509_1014 - - certifi=2023.11.17=pyhd8ed1ab_0 - - chardet=5.2.0=py311h267d04e_1 + - cctools_osx-arm64=973.0.1=h62378fb_16 + - certifi=2024.2.2=pyhd8ed1ab_0 - charset-normalizer=3.3.2=pyhd8ed1ab_0 - - click=8.1.7=unix_pyh707e725_0 + - clang-16=16.0.6=default_he012953_5 - colorama=0.4.6=pyhd8ed1ab_0 - - conway-polynomials=0.8=pyhd8ed1ab_0 - - crashtest=0.4.1=pyhd8ed1ab_0 + - conway-polynomials=0.9=pyhd8ed1ab_0 - cycler=0.12.1=pyhd8ed1ab_0 - cysignals=1.11.2=py311he42fc87_3 - - cython=3.0.7=py311h92babd0_0 - - debugpy=1.8.0=py311ha891d26_1 + - cython=3.0.8=py311h92babd0_0 + - debugpy=1.8.1=py311h92babd0_0 - decorator=5.1.1=pyhd8ed1ab_0 - - defusedxml=0.7.1=pyhd8ed1ab_0 - - distlib=0.3.8=pyhd8ed1ab_0 - docutils=0.20.1=py311h267d04e_3 - - eclib=20231211=h7f07de4_0 - - editables=0.3=pyhd8ed1ab_0 - - entrypoints=0.4=pyhd8ed1ab_0 - - exceptiongroup=1.2.0=pyhd8ed1ab_0 + - eclib=20231212=h7f07de4_0 + - exceptiongroup=1.2.0=pyhd8ed1ab_2 - execnet=2.0.2=pyhd8ed1ab_0 - executing=2.0.1=pyhd8ed1ab_0 - - filelock=3.13.1=pyhd8ed1ab_0 - - flit-core=3.9.0=pyhd8ed1ab_0 - fplll=5.4.5=hb7d509d_0 - gap-defaults=4.12.2=hce30654_3 - - gast=0.5.4=pyhd8ed1ab_0 - - gfortran_impl_osx-arm64=12.3.0=hbbb9e1e_1 - gmpy2=2.1.2=py311h2ba9262_1 - idna=3.6=pyhd8ed1ab_0 - imagesize=1.4.1=pyhd8ed1ab_0 - iniconfig=2.0.0=pyhd8ed1ab_0 - - ipython_genutils=0.2.0=py_1 - - json5=0.9.14=pyhd8ed1ab_0 - - jsonpointer=2.4=py311h267d04e_3 - - jupyterlab_widgets=3.0.9=pyhd8ed1ab_0 + - jupyterlab_widgets=3.0.10=pyhd8ed1ab_0 - kiwisolver=1.4.5=py311he4fd1f5_1 - lcalc=2.0.5=hc94e8e6_1 - - ld64_osx-arm64=609=hc4dc95b_15 + - ld64=609=h634c8be_16 - libblas=3.9.0=20_osxarm64_openblas - - libclang-cpp15=15.0.7=default_hd209bcb_4 - - libcurl=8.1.2=h912dcd9_0 - - libgd=2.3.3=h90fb8ed_4 - - llvm-tools=15.0.7=h62b9111_1 - - markupsafe=2.1.3=py311heffc1b2_1 + - libcurl=8.5.0=h2d989ff_0 + - libgd=2.3.3=hfdf3952_9 + - markupsafe=2.1.5=py311h05b510d_0 - maxima=5.45.0=h6032a66_2 - - mistune=3.0.2=pyhd8ed1ab_0 - - more-itertools=10.1.0=pyhd8ed1ab_0 - mpmath=1.3.0=pyhd8ed1ab_0 - - msgpack-python=1.0.7=py311hd03642b_0 - munkres=1.1.4=pyh9f0ad1d_0 - - nest-asyncio=1.5.8=pyhd8ed1ab_0 + - nest-asyncio=1.6.0=pyhd8ed1ab_0 - networkx=3.2.1=pyhd8ed1ab_0 - openblas=0.3.25=openmp_h55c453e_0 - - openssh=9.3p1=h7126958_1 - packaging=23.2=pyhd8ed1ab_0 - - pandocfilters=1.5.0=pyhd8ed1ab_0 - parso=0.8.3=pyhd8ed1ab_0 - - pastel=0.2.1=pyhd8ed1ab_0 - - pathspec=0.12.1=pyhd8ed1ab_0 - pickleshare=0.7.5=py_1003 - - pillow=9.4.0=py311h627eb56_1 + - pillow=10.2.0=py311hb9c5795_0 - pkgconfig=1.5.5=pyhd8ed1ab_4 - - pkginfo=1.9.6=pyhd8ed1ab_0 - - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 - - platformdirs=4.1.0=pyhd8ed1ab_0 - - pluggy=1.3.0=pyhd8ed1ab_0 - - ply=3.11=py_1 - - prometheus_client=0.19.0=pyhd8ed1ab_0 - - psutil=5.9.7=py311h05b510d_0 + - platformdirs=4.2.0=pyhd8ed1ab_0 + - pluggy=1.4.0=pyhd8ed1ab_0 + - psutil=5.9.8=py311h05b510d_0 - ptyprocess=0.7.0=pyhd3deb0d_0 - pure_eval=0.2.2=pyhd8ed1ab_0 - - py=1.11.0=pyh6c4a22f_0 - - pybind11-global=2.11.1=py311he4fd1f5_2 - - pycodestyle=2.11.1=pyhd8ed1ab_0 - - pycparser=2.21=pyhd8ed1ab_0 - pygments=2.17.2=pyhd8ed1ab_0 - - pylev=1.4.0=pyhd8ed1ab_0 - pyparsing=3.1.1=pyhd8ed1ab_0 - - pyrsistent=0.20.0=py311h05b510d_0 - pysocks=1.7.1=pyha2e5f31_6 - - pyspellchecker=0.7.2=pyhd8ed1ab_0 - - python-fastjsonschema=2.19.0=pyhd8ed1ab_0 - - python-json-logger=2.0.7=pyhd8ed1ab_0 - - python-lrcalc=2.1=py311ha397e9f_5 - - python-tzdata=2023.3=pyhd8ed1ab_0 - - pytz=2023.3.post1=pyhd8ed1ab_0 - - pyyaml=6.0.1=py311heffc1b2_1 + - pytz=2024.1=pyhd8ed1ab_0 - pyzmq=25.1.2=py311h6727e71_0 - - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.15.2=py311h94f323b_0 - - ruamel.yaml.clib=0.2.7=py311heffc1b2_2 - - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 - - sagetex=3.6.1=pyhd8ed1ab_0 - - setuptools=68.2.2=pyhd8ed1ab_0 - - simplegeneric=0.8.1=py_1 + - setuptools=69.1.0=pyhd8ed1ab_1 - singular=4.3.2.p8=hb460b52_1 - six=1.16.0=pyh6c4a22f_0 - - smmap=5.0.0=pyhd8ed1ab_0 - - sniffio=1.3.0=pyhd8ed1ab_0 - snowballstemmer=2.2.0=pyhd8ed1ab_0 - soupsieve=2.5=pyhd8ed1ab_1 - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_0 - sympow=2.023.6=hb0babe8_3 - tomli=2.0.1=pyhd8ed1ab_0 - - tomlkit=0.12.3=pyha770c72_0 - - toolz=0.12.0=pyhd8ed1ab_0 - - tornado=6.3.3=py311heffc1b2_1 - - traitlets=5.14.0=pyhd8ed1ab_0 - - trove-classifiers=2023.11.29=pyhd8ed1ab_0 - - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 + - tornado=6.4=py311h05b510d_0 + - traitlets=5.14.1=pyhd8ed1ab_0 - typing_extensions=4.9.0=pyha770c72_0 - - typing_utils=0.1.0=pyhd8ed1ab_0 - - tzlocal=5.2=py311h267d04e_0 - - uri-template=1.3.0=pyhd8ed1ab_0 - - wcwidth=0.2.12=pyhd8ed1ab_0 - - webcolors=1.13=pyhd8ed1ab_0 - - webencodings=0.5.1=pyhd8ed1ab_2 - - websocket-client=1.7.0=pyhd8ed1ab_0 + - wcwidth=0.2.13=pyhd8ed1ab_0 - wheel=0.42.0=pyhd8ed1ab_0 - - widgetsnbextension=4.0.9=pyhd8ed1ab_0 + - widgetsnbextension=4.0.10=pyhd8ed1ab_0 - zipp=3.17.0=pyhd8ed1ab_0 - - anyio=4.2.0=pyhd8ed1ab_0 - asttokens=2.4.1=pyhd8ed1ab_0 - - async-lru=2.0.4=pyhd8ed1ab_0 - babel=2.14.0=pyhd8ed1ab_0 - - beautifulsoup4=4.12.2=pyha770c72_0 - - beniget=0.4.1=pyhd8ed1ab_0 - - bleach=6.1.0=pyhd8ed1ab_0 - - cached-property=1.5.2=hd8ed1ab_1 - - cctools_osx-arm64=973.0.1=h2a25c60_15 - - cffi=1.16.0=py311h4a08483_0 - - clang-15=15.0.7=default_hd209bcb_4 - - click-default-group=1.2.4=pyhd8ed1ab_0 - - clikit=0.6.2=pyhd8ed1ab_2 - - cmake=3.26.4=hc0af03a_0 - - comm=0.1.4=pyhd8ed1ab_0 - - cppy=1.2.1=pyhd8ed1ab_0 - - curl=8.1.2=h912dcd9_0 - - cypari2=2.1.3=py311h149620a_2 - - deprecation=2.1.0=pyh9f0ad1d_0 - - fonttools=4.47.0=py311h05b510d_0 - - gitdb=4.0.11=pyhd8ed1ab_0 - - harfbuzz=6.0.0=hddbc195_0 - - html5lib=1.1=pyh9f0ad1d_0 - - importlib-metadata=7.0.0=pyha770c72_0 + - beautifulsoup4=4.12.3=pyha770c72_0 + - cctools=973.0.1=h4faf515_16 + - clang=16.0.6=h30cc82d_5 + - comm=0.2.1=pyhd8ed1ab_0 + - coverage=7.4.2=py311h05b510d_0 + - cypari2=2.1.4=py311h2c49a9d_2 + - fonttools=4.48.1=py311h05b510d_0 + - importlib-metadata=7.0.1=pyha770c72_0 - importlib_resources=6.1.1=pyhd8ed1ab_0 - - jaraco.classes=3.3.0=pyhd8ed1ab_0 - jedi=0.19.1=pyhd8ed1ab_0 - - jinja2=3.1.2=pyhd8ed1ab_1 - - jupyter_core=5.5.1=py311h267d04e_0 - - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 - - ld64=609=h89fa09d_15 + - jinja2=3.1.3=pyhd8ed1ab_0 + - jupyter_core=5.7.1=py311h267d04e_0 - libcblas=3.9.0=20_osxarm64_openblas - liblapack=3.9.0=20_osxarm64_openblas - matplotlib-inline=0.1.6=pyhd8ed1ab_0 - memory-allocator=0.1.3=py311heffc1b2_0 - - overrides=7.4.0=pyhd8ed1ab_0 - - pexpect=4.8.0=pyh1a96a4e_2 - - pip=23.3.2=pyhd8ed1ab_0 + - meson=1.3.2=pyhd8ed1ab_0 + - pexpect=4.9.0=pyhd8ed1ab_0 + - pip=24.0=pyhd8ed1ab_0 - pplpy=0.8.9=py311h5ba3760_0 - primecountpy=0.1.0=py311he4fd1f5_4 - prompt-toolkit=3.0.42=pyha770c72_0 - - pybind11=2.11.1=py311he4fd1f5_2 - - pyobjc-core=10.1=py311h665608e_0 - - pyproject-api=1.6.1=pyhd8ed1ab_0 - - pytest=7.4.3=pyhd8ed1ab_0 + - pyproject-metadata=0.7.1=pyhd8ed1ab_0 + - pytest=8.0.1=pyhd8ed1ab_1 - python-dateutil=2.8.2=pyhd8ed1ab_0 - - pytz-deprecation-shim=0.1.0.post0=py311h267d04e_4 - - referencing=0.32.0=pyhd8ed1ab_0 - - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - - ruamel.yaml=0.18.5=py311h05b510d_0 - sympy=1.12=pypyh9d50eac_103 - - terminado=0.18.0=pyh31c8845_0 - - tinycss2=1.2.1=pyhd8ed1ab_0 - - typing-extensions=4.9.0=hd8ed1ab_0 - - urllib3=1.26.18=pyhd8ed1ab_0 - - virtualenv=20.25.0=pyhd8ed1ab_0 - - annotated-types=0.6.0=pyhd8ed1ab_0 - - argon2-cffi-bindings=21.2.0=py311heffc1b2_4 - - arpack=3.7.0=h58ebc17_2 - - arrow=1.3.0=pyhd8ed1ab_0 - - cattrs=23.2.3=pyhd8ed1ab_0 - - cctools=973.0.1=hd1ac623_15 - - clang=15.0.7=haab561b_4 - - dsdp=5.8=h9397a75_1203 + - urllib3=2.2.1=pyhd8ed1ab_0 + - arpack=3.8.0=nompi_ha3438d0_101 + - clangxx=16.0.6=default_h4cf2255_5 - fflas-ffpack=2.4.3=h11f2abc_2 - - fqdn=1.5.1=pyhd8ed1ab_0 - - git=2.42.0=pl5321h46e2b6d_0 - - gitpython=3.1.40=pyhd8ed1ab_0 - gsl=2.7=h6e638da_0 - - hatchling=1.21.0=pyhd8ed1ab_0 - iml=1.0.5=hd52f0d1_1003 - - importlib-resources=6.1.1=pyhd8ed1ab_0 - - importlib_metadata=7.0.0=hd8ed1ab_0 - - jsonschema-specifications=2023.11.2=pyhd8ed1ab_0 - - jupyter_server_terminals=0.5.0=pyhd8ed1ab_0 + - importlib_metadata=7.0.1=hd8ed1ab_0 - liblapacke=3.9.0=20_osxarm64_openblas - - numpy=1.26.2=py311h6d074dd_0 - - pango=1.50.14=h6c112b8_0 - - prompt_toolkit=3.0.42=hd8ed1ab_0 - - pydantic-core=2.14.5=py311h94f323b_0 - - pyobjc-framework-cocoa=10.1=py311h665608e_0 + - meson-python=0.15.0=pyh0c530f3_0 + - numpy=1.26.4=py311h7125741_0 - pytest-xdist=3.5.0=pyhd8ed1ab_0 - requests=2.31.0=pyhd8ed1ab_0 - - setuptools-scm=8.0.4=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 - - suitesparse=5.10.1=h88be0ae_2 - - argon2-cffi=23.1.0=pyhd8ed1ab_0 - blas-devel=3.9.0=20_osxarm64_openblas - - cachecontrol=0.13.1=pyhd8ed1ab_0 - - clangxx=15.0.7=default_h5c94ee4_4 + - compiler-rt_osx-arm64=16.0.6=h3808999_2 - contourpy=1.2.0=py311hd03642b_0 - - cvxopt=1.3.2=py311hd76776f_1 - - ensureconda=1.4.3=pyhd8ed1ab_0 - - fpylll=0.6.0=py311he33df0e_1 + - fpylll=0.6.1=py311h341b96b_0 - giac=1.9.0.21=h1c96721_1 - - igraph=0.9.10=hcec9b84_1 - - ipython=8.18.1=pyh707e725_3 - - isoduration=20.11.0=pyhd8ed1ab_0 - - jsonschema=4.20.0=pyhd8ed1ab_0 + - igraph=0.10.10=h48be1ad_0 + - ipython=8.22.0=pyh707e725_0 - jupyter_client=8.6.0=pyhd8ed1ab_0 - - keyring=24.3.0=py311h267d04e_0 - linbox=1.6.3=h380be0f_8 - - lsprotocol=2023.0.0=pyhd8ed1ab_0 - - pydantic=2.5.2=pyhd8ed1ab_0 - scipy=1.11.4=py311h2b215a9_0 - - send2trash=1.8.2=pyhd1c38e8_0 - - setuptools_scm=8.0.4=hd8ed1ab_0 - - tox=4.11.4=pyhd8ed1ab_0 - blas=2.120=openblas - - cachecontrol-with-filecache=0.13.1=pyhd8ed1ab_0 - - compiler-rt_osx-arm64=15.0.7=h3808999_2 - - ipykernel=6.26.0=pyh3cd1d5f_0 - - ipywidgets=8.1.1=pyhd8ed1ab_0 - - jsonschema-with-format-nongpl=4.20.0=pyhd8ed1ab_0 - - matplotlib-base=3.8.2=py311hfdba5f6_0 - - nbformat=5.9.2=pyhd8ed1ab_0 - - pygls=1.2.1=pyhd8ed1ab_0 - - rw=0.9=h3422bc3_0 - - compiler-rt=15.0.7=h3808999_2 - - conda-lock=2.5.1=pyhd8ed1ab_0 - - ipympl=0.9.3=pyhd8ed1ab_0 - - jupyter-jsmol=2022.1.0=pyhd8ed1ab_0 - - jupyter_events=0.9.0=pyhd8ed1ab_0 - - matplotlib=3.8.2=py311ha1ab1f8_0 - - nbclient=0.8.0=pyhd8ed1ab_0 - - clang_impl_osx-arm64=15.0.7=h77e971b_7 - - nbconvert-core=7.13.0=pyhd8ed1ab_0 - - clang_osx-arm64=15.0.7=h54d7cd3_7 - - jupyter_server=2.12.1=pyhd8ed1ab_0 - - nbconvert-pandoc=7.13.0=pyhd8ed1ab_0 - - c-compiler=1.6.0=hd291e01_0 - - clangxx_impl_osx-arm64=15.0.7=h768a7fd_7 - - gfortran_osx-arm64=12.3.0=h57527a5_1 - - jupyter-lsp=2.2.1=pyhd8ed1ab_0 - - jupyterlab_server=2.25.2=pyhd8ed1ab_0 - - nbconvert=7.13.0=pyhd8ed1ab_0 - - notebook-shim=0.2.3=pyhd8ed1ab_0 - - clangxx_osx-arm64=15.0.7=h54d7cd3_7 - - gfortran=12.3.0=h1ca8e4b_1 - - jupyterlab=4.0.9=pyhd8ed1ab_0 - - cxx-compiler=1.6.0=h1995070_0 - - fortran-compiler=1.6.0=h5a50232_0 - - notebook=7.0.6=pyhd8ed1ab_0 - - pythran=0.14.0=py311hddbb800_1 - - r-base=4.1.3=h9c4d319_6 - - compilers=1.6.0=hce30654_0 - - rpy2=3.5.11=py311r41h4add359_0 - - esbonio=0.16.3=pyhd8ed1ab_0 - - jupyter_sphinx=0.1.4=py_0 + - compiler-rt=16.0.6=h3808999_2 + - ipykernel=6.29.2=pyh3cd1d5f_0 + - ipywidgets=8.1.2=pyhd8ed1ab_0 + - matplotlib-base=3.8.3=py311hb58f1d1_0 + - rw=0.9=h93a5062_1 + - clang_impl_osx-arm64=16.0.6=hc421ffc_9 + - clang_osx-arm64=16.0.6=h54d7cd3_9 + - c-compiler=1.6.0=h6aa9301_0 + - clangxx_impl_osx-arm64=16.0.6=hcd7bac0_9 + - clangxx_osx-arm64=16.0.6=h54d7cd3_9 + - cxx-compiler=1.6.0=h2ffa867_0 - sphinx-basic-ng=1.0.0b2=pyhd8ed1ab_1 - - furo=2023.9.10=pyhd8ed1ab_0 - - sphinx-copybutton=0.5.2=pyhd8ed1ab_0 - - sphinxcontrib-applehelp=1.0.7=pyhd8ed1ab_0 - - sphinxcontrib-devhelp=1.0.5=pyhd8ed1ab_0 - - sphinxcontrib-htmlhelp=2.0.4=pyhd8ed1ab_0 - - sphinxcontrib-qthelp=1.0.6=pyhd8ed1ab_0 + - furo=2024.1.29=pyhd8ed1ab_0 + - sphinx-inline-tabs=2023.4.21=pyhd8ed1ab_0 + - sphinxcontrib-applehelp=1.0.8=pyhd8ed1ab_0 + - sphinxcontrib-devhelp=1.0.6=pyhd8ed1ab_0 + - sphinxcontrib-htmlhelp=2.0.5=pyhd8ed1ab_0 + - sphinxcontrib-qthelp=1.0.7=pyhd8ed1ab_0 - sphinx=7.2.6=pyhd8ed1ab_0 - - sphinxcontrib-serializinghtml=1.1.9=pyhd8ed1ab_0 - - sphinxcontrib-websupport=1.2.6=pyhd8ed1ab_0 + - sphinxcontrib-serializinghtml=1.1.10=pyhd8ed1ab_0 diff --git a/src/environment-dev-3.11-macos.yml b/src/environment-dev-3.11-macos.yml index def5a0a3c44..bf55b3fc073 100644 --- a/src/environment-dev-3.11-macos.yml +++ b/src/environment-dev-3.11-macos.yml @@ -1,124 +1,87 @@ # Generated by conda-lock. # platform: osx-64 -# input_hash: 44b85991c6586ed547f231313cf900e49e139d33b4763935c5cead2842a07f01 +# input_hash: 3989c533ba9ab168f49b67a7184e516615f897c7a9efb281ac72f1abb96c478d channels: - conda-forge dependencies: - - _r-mutex=1.0.1=anacondar_1 - - bc=1.07.1=h0d85af4_0 - bzip2=1.0.8=h10d778d_5 - - c-ares=1.24.0=h10d778d_0 - - ca-certificates=2023.11.17=h8857fd0_0 + - c-ares=1.27.0=h10d778d_0 + - ca-certificates=2024.2.2=h8857fd0_0 - cliquer=1.22=hbcb3906_0 - font-ttf-dejavu-sans-mono=2.37=hab24e00_0 - font-ttf-inconsolata=3.000=h77eed37_0 - font-ttf-source-code-pro=2.038=h77eed37_0 - font-ttf-ubuntu=0.83=h77eed37_1 - - fribidi=1.0.10=hbcb3906_0 - - gh=2.40.1=h990441c_0 - giflib=5.2.1=hb7f2c08_3 - icu=73.2=hf5e326d_0 - - libatomic_ops=7.6.14=hb7f2c08_0 - - libboost-headers=1.84.0=h694c41f_0 + - libboost-headers=1.84.0=h694c41f_1 - libbrotlicommon=1.1.0=h0dc2134_1 - libcxx=16.0.6=hd57cbcb_0 - libdeflate=1.19=ha4e1b8e_0 - libev=4.33=h10d778d_2 - libexpat=2.5.0=hf0c8a7f_1 - libffi=3.4.2=h0d85af4_5 - - libgfortran-devel_osx-64=12.3.0=h0b6f5ec_1 - libiconv=1.17=hd75f5a5_2 - libjpeg-turbo=3.0.0=h0dc2134_1 - libsodium=1.0.18=hbcb3906_1 - - libtool=2.4.7=hf0c8a7f_0 - - libuv=1.46.0=h0c2f820_0 - libwebp-base=1.3.2=h0dc2134_0 - libzlib=1.2.13=h8a1eda9_5 - llvm-openmp=17.0.6=hb6ac08f_0 - - m4=1.4.18=haf1e3a3_1001 - - make=4.3=h22f3db7_1 - - mathjax=3.2.2=h694c41f_0 - - nauty=2.8.8=h10d778d_0 + - nauty=2.8.8=h10d778d_1 - palp=2.20=hbcb3906_0 - pari-elldata=0.0.20161017=0 - pari-galdata=0.0.20180411=0 - - pari-galpol=0.0.20180625=0 - pari-seadata-small=0.0.20090618=0 - - patch=2.7.6=hbcf498f_1002 - - perl=5.32.1=4_h0dc2134_perl5 + - perl=5.32.1=7_h10d778d_perl5 - planarity=3.0.0.5=hbcb3906_1002 - pthread-stubs=0.4=hc929b4f_1001 - python_abi=3.11=4_cp311 - - rhash=1.4.4=h0dc2134_0 - - sagemath-db-combinatorial-designs=20140630=1 - - sagemath-db-graphs=20210214=hd8ed1ab_0 - - sagemath-db-polytopes=20170220=1 - - three.js=122=hd8ed1ab_2 - - tzdata=2023c=h71feb2d_0 + - tzdata=2024a=h0c530f3_0 - xorg-libxau=1.0.11=h0dc2134_0 - xorg-libxdmcp=1.1.3=h35c211d_0 - xz=5.2.6=h775f41a_0 - - yaml=0.2.5=h0d85af4_2 - - autoconf=2.71=pl5321hed12c24_1 - bdw-gc=8.0.6=h940c156_0 - expat=2.5.0=hf0c8a7f_1 - fonts-conda-forge=1=0 - - gengetopt=2.23=he49afe7_0 - gettext=0.21.1=h8a4c099_0 - gf2x=1.3.0=hb2a7efb_2 - gmp=6.3.0=h93d8f39_0 - - graphite2=1.3.13=h2e338ed_1001 - - isl=0.25=hb486fe8_0 - lerc=4.0.0=hb486fe8_0 - libbraiding=1.2=hf0c8a7f_0 - libbrotlidec=1.1.0=h0dc2134_1 - libbrotlienc=1.1.0=h0dc2134_1 - - libcbor=0.10.2=hf0c8a7f_0 - - libgfortran5=13.2.0=h2873a65_1 - - libpng=1.6.39=ha978bb4_0 - - libsqlite=3.44.2=h92b6c6a_0 + - libgfortran5=13.2.0=h2873a65_3 + - libpng=1.6.42=h92b6c6a_0 + - libsqlite=3.45.1=h92b6c6a_0 - libxcb=1.15=hb7f2c08_0 - - libxml2=2.11.6=hc0ae0f7_0 - - lrcalc=2.1=hf0c8a7f_5 - - metis=5.1.1=h93d8f39_2 + - libxml2=2.12.5=hc0ae0f7_0 + - lrcalc=2.1=h73e2aa4_6 - ncurses=6.4=h93d8f39_2 - ninja=1.11.1=hb8565cd_0 - - openjdk=21.0.1=hf4d7fad_0 - - openssl=3.2.0=hd75f5a5_1 - - pandoc=3.1.3=h9d075a6_0 + - openssl=3.2.1=hd75f5a5_0 - pari-seadata=0.0.20090618=0 - - pcre2=10.40=h1c4e4bc_0 - - pixman=0.42.2=he965462_0 - pkg-config=0.29.2=ha3d46e9_1008 - primesieve=11.0=hf0c8a7f_0 - qhull=2020.2=h940c156_2 - symmetrica=3.0.1=hf0c8a7f_0 - tapi=1100.0.11=h9ce4665_0 - - tar=1.34=hcb2f6ea_1 - - threejs-sage=122=hd8ed1ab_2 - tk=8.6.13=h1abcd95_1 - zeromq=4.3.5=h93d8f39_0 - zlib=1.2.13=h8a1eda9_5 - zstd=1.5.5=h829000d_0 - - automake=1.16.5=pl5321h694c41f_0 - brotli-bin=1.1.0=h0dc2134_1 - - bwidget=1.9.14=h694c41f_1 - cddlib=1!0.94m=h0f52abe_0 - ecm=7.0.4=h343d7f2_1002 - fonts-conda-ecosystem=1=0 - freetype=2.12.1=h60636b9_2 - givaro=4.1.1=h0a799c6_3 - glpk=5.0=h3cb5acd_0 - - jmol=14.32.9=h694c41f_0 - - libboost=1.84.0=h5b2dd29_0 + - libboost=1.84.0=h4bb364b_1 - libedit=3.1.20191231=h0678c8f_2 - - libfido2=1.14.0=h3cbcf74_0 - - libgfortran=5.0.0=13_2_0_h97931a8_1 - - libglib=2.78.1=h6d9ecee_0 + - libgfortran=5.0.0=13_2_0_h97931a8_3 - libhomfly=1.02r6=hc929b4f_0 - - libhwloc=2.9.3=default_h24e0189_1009 - - libllvm15=15.0.7=he4b1e75_3 + - libllvm16=16.0.6=hbedff68_3 - libnghttp2=1.58.0=h64cf6d3_1 - libssh2=1.11.0=hd019ec5_0 - libtiff=4.6.0=h684deea_2 @@ -128,320 +91,169 @@ dependencies: - primecount=7.6=ha894c9a_0 - readline=8.2=h9e318b2_1 - sigtool=0.1.3=h88f4db0_0 - - tachyon=0.99b6=0 - - texinfo=7.0=pl5321hc47821c_0 - - tktable=2.10=ha166976_5 - brotli=1.1.0=h0dc2134_1 - ecl=21.2.1=hd029580_2 - - fftw=3.3.10=nompi_h4fa670e_108 - fontconfig=2.14.2=h5bb23bf_0 - gap-core=4.12.2=hc16eb5f_3 - gfan=0.6.2=hd793b56_1003 - krb5=1.21.2=hb884880_0 - lcms2=2.16=ha2f27b4_0 - - ld64_osx-64=609=h0fd476b_15 - - libboost-devel=1.84.0=h7728843_0 + - ld64_osx-64=609=ha20a434_16 + - libboost-devel=1.84.0=h7728843_1 - libbrial=1.2.12=h8d08345_1 - - libclang-cpp15=15.0.7=default_h6b1ee41_4 + - libclang-cpp16=16.0.6=default_h7151d67_5 - libflint=3.0.1=h5d15de0_ntl_100 - libopenblas=0.3.25=openmp_hfef2a42_0 - libwebp=1.3.2=h44782d1_1 - - llvm-tools=15.0.7=he4b1e75_3 + - llvm-tools=16.0.6=hbedff68_3 - m4rie=20150908=h3f75d11_1001 - mpc=1.3.1=h81bd1dd_0 - mpfi=1.5.4=h52b28e3_1001 - openjpeg=2.5.0=ha4da562_3 - pari=2.15.4=h93f793c_2_pthread - ppl=1.2=ha60d53e_1006 - - python=3.11.7=h9f0c242_0_cpython + - python=3.11.8=h9f0c242_0_cpython - qd=2.3.22=h2beb688_1004 - - sqlite=3.44.2=h7461747_0 - - tbb=2021.11.0=he51d815_0 - - alabaster=0.7.13=pyhd8ed1ab_0 - - appdirs=1.4.4=pyh9f0ad1d_0 - - appnope=0.1.3=pyhd8ed1ab_0 - - attrs=23.1.0=pyh71513ae_1 - - boost-cpp=1.84.0=h07eb623_0 + - alabaster=0.7.16=pyhd8ed1ab_0 + - appnope=0.1.4=pyhd8ed1ab_0 + - boost-cpp=1.84.0=h07eb623_1 - brial=1.2.12=pyh694c41f_1 - brotli-python=1.1.0=py311hdf8f085_1 - - cached_property=1.5.2=pyha770c72_1 - - cachetools=5.3.2=pyhd8ed1ab_0 - - cachy=0.3.0=pyhd8ed1ab_1 - - cairo=1.18.0=h99e66fa_0 - - cctools_osx-64=973.0.1=habff3f6_15 - - certifi=2023.11.17=pyhd8ed1ab_0 - - chardet=5.2.0=py311h6eed73b_1 + - cctools_osx-64=973.0.1=ha1c5b94_16 + - certifi=2024.2.2=pyhd8ed1ab_0 - charset-normalizer=3.3.2=pyhd8ed1ab_0 - - clang-15=15.0.7=default_h6b1ee41_4 - - click=8.1.7=unix_pyh707e725_0 + - clang-16=16.0.6=default_h7151d67_5 - colorama=0.4.6=pyhd8ed1ab_0 - - conway-polynomials=0.8=pyhd8ed1ab_0 - - crashtest=0.4.1=pyhd8ed1ab_0 + - conway-polynomials=0.9=pyhd8ed1ab_0 - cycler=0.12.1=pyhd8ed1ab_0 - cysignals=1.11.2=py311h8a58447_3 - - cython=3.0.7=py311hdd0406b_0 - - debugpy=1.8.0=py311hdf8f085_1 + - cython=3.0.8=py311hdd0406b_0 + - debugpy=1.8.1=py311hdd0406b_0 - decorator=5.1.1=pyhd8ed1ab_0 - - defusedxml=0.7.1=pyhd8ed1ab_0 - - distlib=0.3.8=pyhd8ed1ab_0 - docutils=0.20.1=py311h6eed73b_3 - - eclib=20231211=h02435c3_0 - - editables=0.3=pyhd8ed1ab_0 - - entrypoints=0.4=pyhd8ed1ab_0 - - exceptiongroup=1.2.0=pyhd8ed1ab_0 + - eclib=20231212=h02435c3_0 + - exceptiongroup=1.2.0=pyhd8ed1ab_2 - execnet=2.0.2=pyhd8ed1ab_0 - executing=2.0.1=pyhd8ed1ab_0 - - filelock=3.13.1=pyhd8ed1ab_0 - - flit-core=3.9.0=pyhd8ed1ab_0 - fplll=5.4.5=hb7981ad_0 - gap-defaults=4.12.2=h694c41f_3 - - gast=0.5.4=pyhd8ed1ab_0 - - gfortran_impl_osx-64=12.3.0=h54fd467_1 - gmpy2=2.1.2=py311hc5b4402_1 - idna=3.6=pyhd8ed1ab_0 - imagesize=1.4.1=pyhd8ed1ab_0 - iniconfig=2.0.0=pyhd8ed1ab_0 - - ipython_genutils=0.2.0=py_1 - - json5=0.9.14=pyhd8ed1ab_0 - - jsonpointer=2.4=py311h6eed73b_3 - - jupyterlab_widgets=3.0.9=pyhd8ed1ab_0 + - jupyterlab_widgets=3.0.10=pyhd8ed1ab_0 - kiwisolver=1.4.5=py311h5fe6e05_1 - lcalc=2.0.5=h3a941db_1 - - ld64=609=ha91a046_15 + - ld64=609=ha02d983_16 - libblas=3.9.0=20_osx64_openblas - libcurl=8.5.0=h726d00d_0 - libgd=2.3.3=h0dceb68_9 - - markupsafe=2.1.3=py311h2725bcf_1 + - markupsafe=2.1.5=py311he705e18_0 - maxima=5.47.0=h2b27fa8_1 - - mistune=3.0.2=pyhd8ed1ab_0 - - more-itertools=10.1.0=pyhd8ed1ab_0 - mpmath=1.3.0=pyhd8ed1ab_0 - - msgpack-python=1.0.7=py311h7bea37d_0 - munkres=1.1.4=pyh9f0ad1d_0 - - nest-asyncio=1.5.8=pyhd8ed1ab_0 + - nest-asyncio=1.6.0=pyhd8ed1ab_0 - networkx=3.2.1=pyhd8ed1ab_0 - openblas=0.3.25=openmp_h6794695_0 - - openssh=9.3p1=h3df487d_2 - packaging=23.2=pyhd8ed1ab_0 - - pandocfilters=1.5.0=pyhd8ed1ab_0 - parso=0.8.3=pyhd8ed1ab_0 - - pastel=0.2.1=pyhd8ed1ab_0 - - pathspec=0.12.1=pyhd8ed1ab_0 - pickleshare=0.7.5=py_1003 - - pillow=10.1.0=py311hea5c87a_0 + - pillow=10.2.0=py311hea5c87a_0 - pkgconfig=1.5.5=pyhd8ed1ab_4 - - pkginfo=1.9.6=pyhd8ed1ab_0 - - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 - - platformdirs=4.1.0=pyhd8ed1ab_0 - - pluggy=1.3.0=pyhd8ed1ab_0 - - ply=3.11=py_1 - - prometheus_client=0.19.0=pyhd8ed1ab_0 - - psutil=5.9.7=py311he705e18_0 + - platformdirs=4.2.0=pyhd8ed1ab_0 + - pluggy=1.4.0=pyhd8ed1ab_0 + - psutil=5.9.8=py311he705e18_0 - ptyprocess=0.7.0=pyhd3deb0d_0 - pure_eval=0.2.2=pyhd8ed1ab_0 - - py=1.11.0=pyh6c4a22f_0 - - pybind11-global=2.11.1=py311h5fe6e05_2 - - pycodestyle=2.11.1=pyhd8ed1ab_0 - - pycparser=2.21=pyhd8ed1ab_0 - pygments=2.17.2=pyhd8ed1ab_0 - - pylev=1.4.0=pyhd8ed1ab_0 - pyparsing=3.1.1=pyhd8ed1ab_0 - - pyrsistent=0.20.0=py311he705e18_0 - pysocks=1.7.1=pyha2e5f31_6 - - pyspellchecker=0.7.2=pyhd8ed1ab_0 - - python-fastjsonschema=2.19.0=pyhd8ed1ab_0 - - python-json-logger=2.0.7=pyhd8ed1ab_0 - - python-lrcalc=2.1=py311h814d153_5 - - python-tzdata=2023.3=pyhd8ed1ab_0 - - pytz=2023.3.post1=pyhd8ed1ab_0 - - pyyaml=6.0.1=py311h2725bcf_1 + - pytz=2024.1=pyhd8ed1ab_0 - pyzmq=25.1.2=py311h889d6d6_0 - - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.15.2=py311h5e0f0e4_0 - - ruamel.yaml.clib=0.2.7=py311h2725bcf_2 - - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 - - sagetex=3.6.1=pyhd8ed1ab_0 - - setuptools=68.2.2=pyhd8ed1ab_0 - - simplegeneric=0.8.1=py_1 + - setuptools=69.1.0=pyhd8ed1ab_1 - singular=4.3.2.p8=h0d51a9f_1 - six=1.16.0=pyh6c4a22f_0 - - smmap=5.0.0=pyhd8ed1ab_0 - - sniffio=1.3.0=pyhd8ed1ab_0 - snowballstemmer=2.2.0=pyhd8ed1ab_0 - soupsieve=2.5=pyhd8ed1ab_1 - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_0 - sympow=2.023.6=h115ba6a_3 - tomli=2.0.1=pyhd8ed1ab_0 - - tomlkit=0.12.3=pyha770c72_0 - - toolz=0.12.0=pyhd8ed1ab_0 - - tornado=6.3.3=py311h2725bcf_1 - - traitlets=5.14.0=pyhd8ed1ab_0 - - trove-classifiers=2023.11.29=pyhd8ed1ab_0 - - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 + - tornado=6.4=py311he705e18_0 + - traitlets=5.14.1=pyhd8ed1ab_0 - typing_extensions=4.9.0=pyha770c72_0 - - typing_utils=0.1.0=pyhd8ed1ab_0 - - tzlocal=5.2=py311h6eed73b_0 - - uri-template=1.3.0=pyhd8ed1ab_0 - - wcwidth=0.2.12=pyhd8ed1ab_0 - - webcolors=1.13=pyhd8ed1ab_0 - - webencodings=0.5.1=pyhd8ed1ab_2 - - websocket-client=1.7.0=pyhd8ed1ab_0 + - wcwidth=0.2.13=pyhd8ed1ab_0 - wheel=0.42.0=pyhd8ed1ab_0 - - widgetsnbextension=4.0.9=pyhd8ed1ab_0 + - widgetsnbextension=4.0.10=pyhd8ed1ab_0 - zipp=3.17.0=pyhd8ed1ab_0 - - anyio=4.2.0=pyhd8ed1ab_0 - asttokens=2.4.1=pyhd8ed1ab_0 - - async-lru=2.0.4=pyhd8ed1ab_0 - babel=2.14.0=pyhd8ed1ab_0 - - beautifulsoup4=4.12.2=pyha770c72_0 - - beniget=0.4.1=pyhd8ed1ab_0 - - bleach=6.1.0=pyhd8ed1ab_0 - - cached-property=1.5.2=hd8ed1ab_1 - - cctools=973.0.1=hd9ad811_15 - - cffi=1.16.0=py311hc0b63fd_0 - - clang=15.0.7=hac416ee_4 - - click-default-group=1.2.4=pyhd8ed1ab_0 - - clikit=0.6.2=pyhd8ed1ab_2 - - cmake=3.28.1=h7c85d92_0 - - comm=0.1.4=pyhd8ed1ab_0 - - cppy=1.2.1=pyhd8ed1ab_0 - - curl=8.5.0=h726d00d_0 - - cypari2=2.1.3=py311h7d823c7_2 - - deprecation=2.1.0=pyh9f0ad1d_0 - - fonttools=4.47.0=py311he705e18_0 - - gitdb=4.0.11=pyhd8ed1ab_0 - - harfbuzz=8.3.0=hf45c392_0 - - html5lib=1.1=pyh9f0ad1d_0 - - importlib-metadata=7.0.0=pyha770c72_0 + - beautifulsoup4=4.12.3=pyha770c72_0 + - cctools=973.0.1=h40f6528_16 + - clang=16.0.6=hdae98eb_5 + - comm=0.2.1=pyhd8ed1ab_0 + - coverage=7.4.2=py311he705e18_0 + - cypari2=2.1.4=py311h4fde0ae_2 + - fonttools=4.49.0=py311he705e18_0 + - importlib-metadata=7.0.1=pyha770c72_0 - importlib_resources=6.1.1=pyhd8ed1ab_0 - - jaraco.classes=3.3.0=pyhd8ed1ab_0 - jedi=0.19.1=pyhd8ed1ab_0 - - jinja2=3.1.2=pyhd8ed1ab_1 - - jupyter_core=5.5.1=py311h6eed73b_0 - - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 + - jinja2=3.1.3=pyhd8ed1ab_0 + - jupyter_core=5.7.1=py311h6eed73b_0 - libcblas=3.9.0=20_osx64_openblas - liblapack=3.9.0=20_osx64_openblas - matplotlib-inline=0.1.6=pyhd8ed1ab_0 - memory-allocator=0.1.3=py311h2725bcf_0 - - overrides=7.4.0=pyhd8ed1ab_0 - - pexpect=4.8.0=pyh1a96a4e_2 - - pip=23.3.2=pyhd8ed1ab_0 + - meson=1.3.2=pyhd8ed1ab_0 + - pexpect=4.9.0=pyhd8ed1ab_0 + - pip=24.0=pyhd8ed1ab_0 - pplpy=0.8.9=py311h7355a2a_0 - primecountpy=0.1.0=py311h5fe6e05_4 - prompt-toolkit=3.0.42=pyha770c72_0 - - pybind11=2.11.1=py311h5fe6e05_2 - - pyobjc-core=10.1=py311h9b70068_0 - - pyproject-api=1.6.1=pyhd8ed1ab_0 - - pytest=7.4.3=pyhd8ed1ab_0 + - pyproject-metadata=0.7.1=pyhd8ed1ab_0 + - pytest=8.0.1=pyhd8ed1ab_1 - python-dateutil=2.8.2=pyhd8ed1ab_0 - - pytz-deprecation-shim=0.1.0.post0=py311h6eed73b_4 - - referencing=0.32.0=pyhd8ed1ab_0 - - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - - ruamel.yaml=0.18.5=py311he705e18_0 - sympy=1.12=pypyh9d50eac_103 - - terminado=0.18.0=pyh31c8845_0 - - tinycss2=1.2.1=pyhd8ed1ab_0 - - typing-extensions=4.9.0=hd8ed1ab_0 - - urllib3=1.26.18=pyhd8ed1ab_0 - - virtualenv=20.25.0=pyhd8ed1ab_0 - - annotated-types=0.6.0=pyhd8ed1ab_0 - - argon2-cffi-bindings=21.2.0=py311h2725bcf_4 + - urllib3=2.2.1=pyhd8ed1ab_0 - arpack=3.8.0=nompi_hb44a6d1_101 - - arrow=1.3.0=pyhd8ed1ab_0 - - cattrs=23.2.3=pyhd8ed1ab_0 - - clangxx=15.0.7=default_h6b1ee41_4 - - dsdp=5.8=h6e329d1_1203 + - clangxx=16.0.6=default_h7151d67_5 - fflas-ffpack=2.4.3=h026fd7e_2 - - fqdn=1.5.1=pyhd8ed1ab_0 - - git=2.42.0=pl5321hbb4c4ee_0 - - gitpython=3.1.40=pyhd8ed1ab_0 - gsl=2.7=h93259b0_0 - - hatchling=1.21.0=pyhd8ed1ab_0 - iml=1.0.5=h64b42ca_1003 - - importlib-resources=6.1.1=pyhd8ed1ab_0 - - importlib_metadata=7.0.0=hd8ed1ab_0 - - jsonschema-specifications=2023.11.2=pyhd8ed1ab_0 - - jupyter_server_terminals=0.5.0=pyhd8ed1ab_0 + - importlib_metadata=7.0.1=hd8ed1ab_0 - liblapacke=3.9.0=20_osx64_openblas - - numpy=1.26.2=py311h93c810c_0 - - pango=1.50.14=h19c1c8a_2 - - prompt_toolkit=3.0.42=hd8ed1ab_0 - - pydantic-core=2.14.5=py311h5e0f0e4_0 - - pyobjc-framework-cocoa=10.1=py311h9b70068_0 + - meson-python=0.15.0=pyh0c530f3_0 + - numpy=1.26.4=py311hc43a94b_0 - pytest-xdist=3.5.0=pyhd8ed1ab_0 - requests=2.31.0=pyhd8ed1ab_0 - - setuptools-scm=8.0.4=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 - - suitesparse=5.10.1=h0a40b7c_2 - - argon2-cffi=23.1.0=pyhd8ed1ab_0 - blas-devel=3.9.0=20_osx64_openblas - - cachecontrol=0.13.1=pyhd8ed1ab_0 - - compiler-rt_osx-64=15.0.7=ha38d28d_2 + - compiler-rt_osx-64=16.0.6=ha38d28d_2 - contourpy=1.2.0=py311h7bea37d_0 - - cvxopt=1.3.2=py311ha4c19de_1 - - ensureconda=1.4.3=pyhd8ed1ab_0 - - fpylll=0.6.0=py311hc863427_1 + - fpylll=0.6.1=py311h85fbf69_0 - giac=1.9.0.21=h92f3f65_1 - - igraph=0.10.8=h29df365_0 - - ipython=8.18.1=pyh707e725_3 - - isoduration=20.11.0=pyhd8ed1ab_0 - - jsonschema=4.20.0=pyhd8ed1ab_0 + - igraph=0.10.10=h6b221b4_0 + - ipython=8.22.0=pyh707e725_0 - jupyter_client=8.6.0=pyhd8ed1ab_0 - - keyring=24.3.0=py311h6eed73b_0 - linbox=1.6.3=hfb9b24e_8 - - lsprotocol=2023.0.0=pyhd8ed1ab_0 - - pydantic=2.5.2=pyhd8ed1ab_0 - scipy=1.11.4=py311he0bea55_0 - - send2trash=1.8.2=pyhd1c38e8_0 - - setuptools_scm=8.0.4=hd8ed1ab_0 - - tox=4.11.4=pyhd8ed1ab_0 - blas=2.120=openblas - - cachecontrol-with-filecache=0.13.1=pyhd8ed1ab_0 - - compiler-rt=15.0.7=ha38d28d_2 - - ipykernel=6.26.0=pyh3cd1d5f_0 - - ipywidgets=8.1.1=pyhd8ed1ab_0 - - jsonschema-with-format-nongpl=4.20.0=pyhd8ed1ab_0 - - matplotlib-base=3.8.2=py311hd316c10_0 - - nbformat=5.9.2=pyhd8ed1ab_0 - - pygls=1.2.1=pyhd8ed1ab_0 + - compiler-rt=16.0.6=ha38d28d_2 + - ipykernel=6.29.2=pyh3cd1d5f_0 + - ipywidgets=8.1.2=pyhd8ed1ab_0 + - matplotlib-base=3.8.3=py311h6ff1f5f_0 - rw=0.9=h10d778d_1 - - clang_impl_osx-64=15.0.7=h03d6864_7 - - conda-lock=2.5.1=pyhd8ed1ab_0 - - ipympl=0.9.3=pyhd8ed1ab_0 - - jupyter-jsmol=2022.1.0=pyhd8ed1ab_0 - - jupyter_events=0.9.0=pyhd8ed1ab_0 - - matplotlib=3.8.2=py311h6eed73b_0 - - nbclient=0.8.0=pyhd8ed1ab_0 - - clang_osx-64=15.0.7=hb91bd55_7 - - nbconvert-core=7.13.0=pyhd8ed1ab_0 - - c-compiler=1.6.0=h63c33a9_0 - - clangxx_impl_osx-64=15.0.7=h2133e9c_7 - - gfortran_osx-64=12.3.0=h18f7dce_1 - - jupyter_server=2.12.1=pyhd8ed1ab_0 - - nbconvert-pandoc=7.13.0=pyhd8ed1ab_0 - - clangxx_osx-64=15.0.7=hb91bd55_7 - - gfortran=12.3.0=h2c809b3_1 - - jupyter-lsp=2.2.1=pyhd8ed1ab_0 - - jupyterlab_server=2.25.2=pyhd8ed1ab_0 - - nbconvert=7.13.0=pyhd8ed1ab_0 - - notebook-shim=0.2.3=pyhd8ed1ab_0 - - cxx-compiler=1.6.0=h1c7c39f_0 - - fortran-compiler=1.6.0=h932d759_0 - - jupyterlab=4.0.9=pyhd8ed1ab_0 - - pythran=0.14.0=py311hd5c4f45_1 - - r-base=4.3.1=h0ff45fa_6 - - compilers=1.6.0=h694c41f_0 - - notebook=7.0.6=pyhd8ed1ab_0 - - rpy2=3.5.11=py311r43h4a70a88_3 - - esbonio=0.16.3=pyhd8ed1ab_0 - - jupyter_sphinx=0.4.0=py311h6eed73b_1 + - clang_impl_osx-64=16.0.6=h8787910_9 + - clang_osx-64=16.0.6=hb91bd55_9 + - c-compiler=1.6.0=h282daa2_0 + - clangxx_impl_osx-64=16.0.6=h6d92fbe_9 + - clangxx_osx-64=16.0.6=hb91bd55_9 + - cxx-compiler=1.6.0=h7728843_0 - sphinx-basic-ng=1.0.0b2=pyhd8ed1ab_1 - - furo=2023.9.10=pyhd8ed1ab_0 - - sphinx-copybutton=0.5.2=pyhd8ed1ab_0 - - sphinxcontrib-applehelp=1.0.7=pyhd8ed1ab_0 - - sphinxcontrib-devhelp=1.0.5=pyhd8ed1ab_0 - - sphinxcontrib-htmlhelp=2.0.4=pyhd8ed1ab_0 - - sphinxcontrib-qthelp=1.0.6=pyhd8ed1ab_0 + - furo=2024.1.29=pyhd8ed1ab_0 + - sphinx-inline-tabs=2023.4.21=pyhd8ed1ab_0 + - sphinxcontrib-applehelp=1.0.8=pyhd8ed1ab_0 + - sphinxcontrib-devhelp=1.0.6=pyhd8ed1ab_0 + - sphinxcontrib-htmlhelp=2.0.5=pyhd8ed1ab_0 + - sphinxcontrib-qthelp=1.0.7=pyhd8ed1ab_0 - sphinx=7.2.6=pyhd8ed1ab_0 - - sphinxcontrib-serializinghtml=1.1.9=pyhd8ed1ab_0 - - sphinxcontrib-websupport=1.2.6=pyhd8ed1ab_0 + - sphinxcontrib-serializinghtml=1.1.10=pyhd8ed1ab_0 diff --git a/src/environment-dev-3.9-linux-aarch64.yml b/src/environment-dev-3.9-linux-aarch64.yml index 4b70d0a4e98..fdfa4424f0d 100644 --- a/src/environment-dev-3.9-linux-aarch64.yml +++ b/src/environment-dev-3.9-linux-aarch64.yml @@ -1,471 +1,264 @@ # Generated by conda-lock. # platform: linux-aarch64 -# input_hash: 6bb8baa489bd6fe865a20fa985509961599b43e728e121ea29e980a671f65b17 +# input_hash: 02709e5dae3489462cd3820535dc79cb7b3d413a76b055afd91854928d890b83 channels: - conda-forge dependencies: - - _r-mutex=1.0.1=anacondar_1 - - _sysroot_linux-aarch64_curr_repodata_hack=4=h57d6b7b_13 - - ca-certificates=2023.11.17=hcefe29a_0 + - _sysroot_linux-aarch64_curr_repodata_hack=4=h57d6b7b_14 + - ca-certificates=2024.2.2=hcefe29a_0 - font-ttf-dejavu-sans-mono=2.37=hab24e00_0 - font-ttf-inconsolata=3.000=h77eed37_0 - font-ttf-source-code-pro=2.038=h77eed37_0 - font-ttf-ubuntu=0.83=h77eed37_1 - - gh=2.40.1=h652cbe9_0 - - kernel-headers_linux-aarch64=4.18.0=h5b4a56d_13 - ld_impl_linux-aarch64=2.40=h2d8c526_0 - - libgcc-devel_linux-aarch64=12.3.0=h8b5ab12_103 - - libgomp=13.2.0=hf8544c7_3 - - libstdcxx-devel_linux-aarch64=12.3.0=h8b5ab12_103 - - libstdcxx-ng=13.2.0=h9a76618_3 - - mathjax=3.2.2=h8af1aa0_0 - - pandoc=3.1.3=h8af1aa0_0 + - libboost-headers=1.84.0=h8af1aa0_1 + - libgcc-devel_linux-aarch64=12.3.0=h8b5ab12_105 + - libgomp=13.2.0=hf8544c7_5 + - libstdcxx-devel_linux-aarch64=12.3.0=h8b5ab12_105 + - libstdcxx-ng=13.2.0=h9a76618_5 - pari-elldata=0.0.20161017=0 - pari-galdata=0.0.20180411=0 - - pari-galpol=0.0.20180625=0 - pari-seadata-small=0.0.20090618=0 - python_abi=3.9=4_cp39 - - sagemath-db-combinatorial-designs=20140630=1 - - sagemath-db-graphs=20210214=hd8ed1ab_0 - - sagemath-db-polytopes=20170220=1 - - three.js=122=hd8ed1ab_2 - - tzdata=2023c=h71feb2d_0 + - tzdata=2024a=h0c530f3_0 - fonts-conda-forge=1=0 + - kernel-headers_linux-aarch64=4.18.0=h5b4a56d_14 - pari-seadata=0.0.20090618=0 - - sysroot_linux-aarch64=2.17=h5b4a56d_13 - - threejs-sage=122=hd8ed1ab_2 - - binutils_impl_linux-aarch64=2.40=h870a726_0 - fonts-conda-ecosystem=1=0 + - sysroot_linux-aarch64=2.17=h5b4a56d_14 + - binutils_impl_linux-aarch64=2.40=h870a726_0 - binutils=2.40=h64c2a2e_0 - binutils_linux-aarch64=2.40=h94bbfa1_2 - _openmp_mutex=4.5=2_kmp_llvm - - libgcc-ng=13.2.0=hf8544c7_3 - - alsa-lib=1.2.8=h4e544f5_0 - - attr=2.5.1=h4e544f5_1 - - bc=1.07.1=hf897c2e_0 + - libgcc-ng=13.2.0=hf8544c7_5 - bdw-gc=8.0.6=hd62202e_0 - bzip2=1.0.8=h31becfc_5 - - c-ares=1.24.0=h31becfc_0 + - c-ares=1.27.0=h31becfc_0 - cliquer=1.22=hb9de7d4_0 - - fribidi=1.0.10=hb9de7d4_0 - - gengetopt=2.23=h01db608_0 - - gettext=0.21.1=ha18d298_0 - gf2x=1.3.0=h1b3b3a3_2 - giflib=5.2.1=hb4cce97_3 - gmp=6.3.0=h2f0025b_0 - - graphite2=1.3.13=h7fd3ca4_1001 - - icu=70.1=ha18d298_0 - - jpeg=9e=h2a766a3_3 + - icu=73.2=h787c7f5_0 - keyutils=1.6.1=h4e544f5_0 - lerc=4.0.0=h4de3ea5_0 - - libatomic_ops=7.6.14=h4e544f5_0 - libbraiding=1.2=hd600fc2_0 - libbrotlicommon=1.1.0=h31becfc_1 - - libcbor=0.9.0=h01db608_0 - - libdeflate=1.17=hb4cce97_0 + - libdeflate=1.19=h31becfc_0 - libev=4.33=h31becfc_2 - libexpat=2.5.0=hd600fc2_1 - libffi=3.4.2=h3557bc0_5 - - libgfortran5=13.2.0=h582850c_3 + - libgfortran5=13.2.0=h582850c_5 - libiconv=1.17=h31becfc_2 + - libjpeg-turbo=3.0.0=h31becfc_1 - libnsl=2.0.1=h31becfc_0 - - libsanitizer=12.3.0=h8ebda82_3 + - libsanitizer=12.3.0=h8ebda82_5 - libsodium=1.0.18=hb9de7d4_1 - - libtool=2.4.7=h4de3ea5_0 - libuuid=2.38.1=hb4cce97_0 - - libuv=1.46.0=h31becfc_0 - - libwebp-base=1.2.4=h4e544f5_0 + - libwebp-base=1.3.2=h31becfc_0 + - libxcrypt=4.4.36=h31becfc_1 - libzlib=1.2.13=h31becfc_5 - - lrcalc=2.1=h4de3ea5_5 - - m4=1.4.18=h516909a_1001 - - make=4.3=h309ac5b_1 - - metis=5.1.0=h2f0025b_1007 - - nauty=2.8.8=h31becfc_0 + - lrcalc=2.1=h2f0025b_6 + - nauty=2.8.8=h31becfc_1 - ncurses=6.4=h0425590_2 - ninja=1.11.1=hdd96247_0 - - openssl=3.2.0=h31becfc_1 + - openssl=3.2.1=h31becfc_0 - palp=2.20=hb9de7d4_0 - - patch=2.7.6=hf897c2e_1002 - - pixman=0.42.2=h2f0025b_0 - pkg-config=0.29.2=hb9de7d4_1008 - planarity=3.0.0.5=hb9de7d4_1002 - primesieve=11.0=hd600fc2_0 - pthread-stubs=0.4=hb9de7d4_1001 - qhull=2020.2=hd62202e_2 - - rhash=1.4.3=h31becfc_2 - - sed=4.8=ha0d5d3d_0 - symmetrica=3.0.1=hd600fc2_0 - - xorg-inputproto=2.3.2=h3557bc0_1002 - - xorg-kbproto=1.0.7=h3557bc0_1002 - - xorg-libice=1.0.10=h3557bc0_0 - xorg-libxau=1.0.11=h31becfc_0 - xorg-libxdmcp=1.1.3=h3557bc0_0 - - xorg-recordproto=1.14.2=hf897c2e_1002 - - xorg-renderproto=0.11.1=h3557bc0_1002 - - xorg-xextproto=7.3.0=h2a766a3_1003 - - xorg-xproto=7.0.31=h3557bc0_1007 - xz=5.2.6=h9cdd2b7_0 - - yaml=0.2.5=hf897c2e_2 - cddlib=1!0.94m=h719063d_0 - ecm=7.0.4=h719063d_1002 - expat=2.5.0=hd600fc2_1 - - gcc_impl_linux-aarch64=12.3.0=hcde2664_3 + - gcc_impl_linux-aarch64=12.3.0=hcde2664_5 - givaro=4.1.1=h192cbe9_1 - glpk=5.0=h66325d0_0 - libbrotlidec=1.1.0=h31becfc_1 - libbrotlienc=1.1.0=h31becfc_1 - - libcap=2.69=h883460d_0 - libedit=3.1.20191231=he28a2e2_2 - - libgfortran-ng=13.2.0=he9431aa_3 + - libgfortran-ng=13.2.0=he9431aa_5 - libhomfly=1.02r6=hb9de7d4_0 - libnghttp2=1.58.0=hb0e430d_1 - - libpng=1.6.39=hf9034f9_0 - - libsqlite=3.44.2=h194ca79_0 + - libpng=1.6.42=h194ca79_0 + - libsqlite=3.45.1=h194ca79_0 - libssh2=1.11.0=h492db2e_0 - - libxcb=1.13=h3557bc0_1004 - - libxml2=2.10.3=habe54e3_4 + - libxcb=1.15=h2a766a3_0 + - libxml2=2.12.5=h3091e33_0 - mpfr=4.2.1=ha2d0fc4_0 - ntl=11.4.3=h0d7519b_1 - - pcre2=10.40=he7b27c6_0 - - perl=5.32.1=4_h31becfc_perl5 + - perl=5.32.1=7_h31becfc_perl5 - primecount=7.6=hd600fc2_0 - readline=8.2=h8fc344f_1 - - tar=1.34=h048efde_0 - tk=8.6.13=h194ca79_0 - - xorg-fixesproto=5.0=h3557bc0_1002 - - xorg-libsm=1.2.3=h965e137_1000 - zeromq=4.3.5=h2f0025b_0 - zlib=1.2.13=h31becfc_5 - zstd=1.5.5=h4c53e97_0 - - autoconf=2.71=pl5321h2148fe1_1 - - boost-cpp=1.81.0=h07c2bc3_0 - brotli-bin=1.1.0=h31becfc_1 - - bwidget=1.9.14=h8af1aa0_1 - ecl=21.2.1=haa44c19_2 - - fftw=3.3.10=nompi_h2dcef8e_108 - freetype=2.12.1=hf0a5ef3_2 - gap-core=4.12.2=h597289e_3 - gcc=12.3.0=hc1b51f9_2 - gcc_linux-aarch64=12.3.0=h464a8f7_2 - gfan=0.6.2=h5f589ec_1003 - - gfortran_impl_linux-aarch64=12.3.0=hb7244be_3 - - gxx_impl_linux-aarch64=12.3.0=hcde2664_3 - - krb5=1.20.1=h113d92e_0 + - gxx_impl_linux-aarch64=12.3.0=hcde2664_5 + - krb5=1.21.2=hc419048_0 + - libboost=1.84.0=h1fed05a_1 - libflint=3.0.1=hc392af7_ntl_100 - - libglib=2.78.1=h0464669_0 - - libhwloc=2.9.1=h21e8147_0 - libopenblas=0.3.25=pthreads_h5a5ec62_0 - - libtiff=4.5.0=h4c1066a_2 - - libudev1=255=h31becfc_0 + - libtiff=4.6.0=h1708d11_2 - llvm-openmp=17.0.6=h8b0cb96_0 - m4ri=20140914=h75e8696_1005 - mpc=1.3.1=hf4c8f4c_0 - mpfi=1.5.4=h846f343_1001 - pari=2.15.4=h169c2a7_2_pthread - ppl=1.2=h984aac9_1006 - - python=3.9.18=h4ac3b42_0_cpython + - python=3.9.18=h4ac3b42_1_cpython - qd=2.3.22=h05efe27_1004 - - sqlite=3.44.2=h3b3482f_0 - - tachyon=0.99b6=h63ab1d9_1001 - - texinfo=7.0=pl5321h17f021e_0 - - tktable=2.10=h4f9ca69_5 - - xorg-libx11=1.8.4=h2a766a3_0 - - alabaster=0.7.13=pyhd8ed1ab_0 - - appdirs=1.4.4=pyh9f0ad1d_0 - - appnope=0.1.3=pyhd8ed1ab_0 - - attrs=23.1.0=pyh71513ae_1 - - automake=1.16.5=pl5321h8af1aa0_0 + - alabaster=0.7.16=pyhd8ed1ab_0 - brotli=1.1.0=h31becfc_1 - brotli-python=1.1.0=py39h387a81e_1 - c-compiler=1.6.0=h31becfc_0 - - cached_property=1.5.2=pyha770c72_1 - - cachetools=5.3.2=pyhd8ed1ab_0 - - cachy=0.3.0=pyhd8ed1ab_1 - - certifi=2023.11.17=pyhd8ed1ab_0 - - chardet=5.2.0=py39ha65689a_1 + - certifi=2024.2.2=pyhd8ed1ab_0 - charset-normalizer=3.3.2=pyhd8ed1ab_0 - - click=8.1.7=unix_pyh707e725_0 - colorama=0.4.6=pyhd8ed1ab_0 - - conway-polynomials=0.8=pyhd8ed1ab_0 - - crashtest=0.4.1=pyhd8ed1ab_0 + - conway-polynomials=0.9=pyhd8ed1ab_0 - cycler=0.12.1=pyhd8ed1ab_0 - cysignals=1.11.2=py39hfa81392_3 - - cython=3.0.7=py39h387a81e_0 - - dbus=1.13.6=h12b9eeb_3 - - debugpy=1.8.0=py39h387a81e_1 + - cython=3.0.8=py39h387a81e_0 + - debugpy=1.8.1=py39h387a81e_0 - decorator=5.1.1=pyhd8ed1ab_0 - - defusedxml=0.7.1=pyhd8ed1ab_0 - - distlib=0.3.8=pyhd8ed1ab_0 - docutils=0.20.1=py39ha65689a_3 - - eclib=20231211=he26bab5_0 - - editables=0.3=pyhd8ed1ab_0 - - entrypoints=0.4=pyhd8ed1ab_0 - - exceptiongroup=1.2.0=pyhd8ed1ab_0 + - eclib=20231212=he26bab5_0 + - exceptiongroup=1.2.0=pyhd8ed1ab_2 - execnet=2.0.2=pyhd8ed1ab_0 - executing=2.0.1=pyhd8ed1ab_0 - - filelock=3.13.1=pyhd8ed1ab_0 - - flit-core=3.9.0=pyhd8ed1ab_0 - fontconfig=2.14.2=ha9a116f_0 - fplll=5.4.5=hb3a790e_0 - gap-defaults=4.12.2=h8af1aa0_3 - - gast=0.5.4=pyhd8ed1ab_0 - - gfortran=12.3.0=h8d4031d_2 - - gfortran_linux-aarch64=12.3.0=h1993883_2 - gmpy2=2.1.2=py39h3ba43c8_1 - gxx=12.3.0=hc1b51f9_2 - gxx_linux-aarch64=12.3.0=h21accf6_2 - idna=3.6=pyhd8ed1ab_0 - imagesize=1.4.1=pyhd8ed1ab_0 - iniconfig=2.0.0=pyhd8ed1ab_0 - - ipython_genutils=0.2.0=py_1 - - jeepney=0.8.0=pyhd8ed1ab_0 - - json5=0.9.14=pyhd8ed1ab_0 - - jsonpointer=2.4=py39h4420490_3 - - jupyterlab_widgets=3.0.9=pyhd8ed1ab_0 + - jupyterlab_widgets=3.0.10=pyhd8ed1ab_0 - kiwisolver=1.4.5=py39had2cf8c_1 - lcalc=2.0.5=h3264cc0_1 - - lcms2=2.15=h7576be9_0 + - lcms2=2.16=h922389a_0 - libblas=3.9.0=20_linuxaarch64_openblas + - libboost-devel=1.84.0=h37bb5a9_1 - libbrial=1.2.12=h17533bf_1 - - libcups=2.3.3=h4303303_3 - - libcurl=8.1.2=hc34909b_0 - - libfido2=1.14.0=heb3f89f_0 - - libwebp=1.2.4=h7bdf6e5_1 + - libcurl=8.5.0=h4e8248e_0 + - libwebp=1.3.2=heb2ea1b_1 - m4rie=20150908=h75e8696_1001 - - markupsafe=2.1.3=py39h7cc1d5f_1 + - markupsafe=2.1.5=py39h7cc1d5f_0 - maxima=5.47.0=h6475f26_1 - - mistune=3.0.2=pyhd8ed1ab_0 - - more-itertools=10.1.0=pyhd8ed1ab_0 - mpmath=1.3.0=pyhd8ed1ab_0 - - msgpack-python=1.0.7=py39had2cf8c_0 - munkres=1.1.4=pyh9f0ad1d_0 - - nest-asyncio=1.5.8=pyhd8ed1ab_0 + - nest-asyncio=1.6.0=pyhd8ed1ab_0 - networkx=3.2.1=pyhd8ed1ab_0 - openblas=0.3.25=pthreads_h339cbfa_0 - - openjpeg=2.5.0=h9508984_2 + - openjpeg=2.5.0=h0d9d63b_3 - packaging=23.2=pyhd8ed1ab_0 - - pandocfilters=1.5.0=pyhd8ed1ab_0 - parso=0.8.3=pyhd8ed1ab_0 - - pastel=0.2.1=pyhd8ed1ab_0 - - pathspec=0.12.1=pyhd8ed1ab_0 - pickleshare=0.7.5=py_1003 - pkgconfig=1.5.5=pyhd8ed1ab_4 - - pkginfo=1.9.6=pyhd8ed1ab_0 - - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 - - platformdirs=4.1.0=pyhd8ed1ab_0 - - pluggy=1.3.0=pyhd8ed1ab_0 - - ply=3.11=py_1 - - prometheus_client=0.19.0=pyhd8ed1ab_0 - - psutil=5.9.7=py39h898b7ef_0 + - platformdirs=4.2.0=pyhd8ed1ab_0 + - pluggy=1.4.0=pyhd8ed1ab_0 + - psutil=5.9.8=py39h898b7ef_0 - ptyprocess=0.7.0=pyhd3deb0d_0 - pure_eval=0.2.2=pyhd8ed1ab_0 - - py=1.11.0=pyh6c4a22f_0 - - pybind11-global=2.11.1=py39hd16970a_2 - - pycodestyle=2.11.1=pyhd8ed1ab_0 - - pycparser=2.21=pyhd8ed1ab_0 - pygments=2.17.2=pyhd8ed1ab_0 - - pylev=1.4.0=pyhd8ed1ab_0 - pyparsing=3.1.1=pyhd8ed1ab_0 - - pyrsistent=0.20.0=py39h7cc1d5f_0 - pysocks=1.7.1=pyha2e5f31_6 - - pyspellchecker=0.7.2=pyhd8ed1ab_0 - - python-fastjsonschema=2.19.0=pyhd8ed1ab_0 - - python-json-logger=2.0.7=pyhd8ed1ab_0 - - python-lrcalc=2.1=py39h3d8bfb9_5 - - python-tzdata=2023.3=pyhd8ed1ab_0 - - pytz=2023.3.post1=pyhd8ed1ab_0 - - pyyaml=6.0.1=py39h898b7ef_1 + - pytz=2024.1=pyhd8ed1ab_0 - pyzmq=25.1.2=py39hbab03a2_0 - - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.15.2=py39hfe8b3a4_0 - - ruamel.yaml.clib=0.2.7=py39h898b7ef_2 - - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 - - sagetex=3.6.1=pyhd8ed1ab_0 - - send2trash=1.8.2=pyh41d4057_0 - - setuptools=68.2.2=pyhd8ed1ab_0 - - simplegeneric=0.8.1=py_1 + - setuptools=69.1.0=pyhd8ed1ab_1 - singular=4.3.2.p8=hbe76a8a_1 - six=1.16.0=pyh6c4a22f_0 - - smmap=5.0.0=pyhd8ed1ab_0 - - sniffio=1.3.0=pyhd8ed1ab_0 - snowballstemmer=2.2.0=pyhd8ed1ab_0 - soupsieve=2.5=pyhd8ed1ab_1 - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_0 - sympow=2.023.6=h157afb5_3 - - tbb=2021.9.0=h4c384f3_0 - tomli=2.0.1=pyhd8ed1ab_0 - - tomlkit=0.12.3=pyha770c72_0 - - toolz=0.12.0=pyhd8ed1ab_0 - - tornado=6.3.3=py39h7cc1d5f_1 - - traitlets=5.14.0=pyhd8ed1ab_0 - - trove-classifiers=2023.11.29=pyhd8ed1ab_0 - - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 + - tornado=6.4=py39h7cc1d5f_0 + - traitlets=5.14.1=pyhd8ed1ab_0 - typing_extensions=4.9.0=pyha770c72_0 - - typing_utils=0.1.0=pyhd8ed1ab_0 - - tzlocal=5.2=py39h4420490_0 - unicodedata2=15.1.0=py39h898b7ef_0 - - uri-template=1.3.0=pyhd8ed1ab_0 - - wcwidth=0.2.12=pyhd8ed1ab_0 - - webcolors=1.13=pyhd8ed1ab_0 - - webencodings=0.5.1=pyhd8ed1ab_2 - - websocket-client=1.7.0=pyhd8ed1ab_0 + - wcwidth=0.2.13=pyhd8ed1ab_0 - wheel=0.42.0=pyhd8ed1ab_0 - - widgetsnbextension=4.0.9=pyhd8ed1ab_0 - - xorg-libxext=1.3.4=h2a766a3_2 - - xorg-libxfixes=5.0.3=h3557bc0_1004 - - xorg-libxrender=0.9.10=h3557bc0_1003 - - xorg-libxt=1.3.0=h7935292_0 + - widgetsnbextension=4.0.10=pyhd8ed1ab_0 - zipp=3.17.0=pyhd8ed1ab_0 - - anyio=4.2.0=pyhd8ed1ab_0 - asttokens=2.4.1=pyhd8ed1ab_0 - - async-lru=2.0.4=pyhd8ed1ab_0 - babel=2.14.0=pyhd8ed1ab_0 - - beautifulsoup4=4.12.2=pyha770c72_0 - - beniget=0.4.1=pyhd8ed1ab_0 - - bleach=6.1.0=pyhd8ed1ab_0 + - beautifulsoup4=4.12.3=pyha770c72_0 + - boost-cpp=1.84.0=ha990451_1 - brial=1.2.12=pyh694c41f_1 - - cached-property=1.5.2=hd8ed1ab_1 - - cairo=1.16.0=hd19fb6e_1014 - - cffi=1.16.0=py39hdf53b9e_0 - - click-default-group=1.2.4=pyhd8ed1ab_0 - - clikit=0.6.2=pyhd8ed1ab_2 - - cmake=3.26.4=hef020d8_0 - - comm=0.1.4=pyhd8ed1ab_0 - - cppy=1.2.1=pyhd8ed1ab_0 - - curl=8.1.2=hc34909b_0 + - comm=0.2.1=pyhd8ed1ab_0 + - coverage=7.4.1=py39h7cc1d5f_0 - cxx-compiler=1.6.0=h2a328a1_0 - - cypari2=2.1.3=py39h532d932_2 - - deprecation=2.1.0=pyh9f0ad1d_0 - - fonttools=4.47.0=py39h898b7ef_0 - - fortran-compiler=1.6.0=h7048d53_0 - - gitdb=4.0.11=pyhd8ed1ab_0 - - html5lib=1.1=pyh9f0ad1d_0 - - importlib-metadata=7.0.0=pyha770c72_0 + - cypari2=2.1.4=py39h532d932_2 + - fonttools=4.49.0=py39h898b7ef_0 + - importlib-metadata=7.0.1=pyha770c72_0 - importlib_resources=6.1.1=pyhd8ed1ab_0 - - jaraco.classes=3.3.0=pyhd8ed1ab_0 - jedi=0.19.1=pyhd8ed1ab_0 - - jinja2=3.1.2=pyhd8ed1ab_1 - - jupyter_core=5.5.1=py39h4420490_0 - - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 + - jinja2=3.1.3=pyhd8ed1ab_0 + - jupyter_core=5.7.1=py39h4420490_0 - libcblas=3.9.0=20_linuxaarch64_openblas - - libgd=2.3.3=h99c6b3b_4 + - libgd=2.3.3=hcd22fd5_9 - liblapack=3.9.0=20_linuxaarch64_openblas - matplotlib-inline=0.1.6=pyhd8ed1ab_0 - memory-allocator=0.1.3=py39h898b7ef_0 - - openssh=9.3p1=hf616e62_1 - - overrides=7.4.0=pyhd8ed1ab_0 - - pexpect=4.8.0=pyh1a96a4e_2 - - pillow=9.4.0=py39h72365ce_1 - - pip=23.3.2=pyhd8ed1ab_0 + - meson=1.3.2=pyhd8ed1ab_0 + - pexpect=4.9.0=pyhd8ed1ab_0 + - pillow=10.2.0=py39h8ce38d7_0 + - pip=24.0=pyhd8ed1ab_0 - pplpy=0.8.9=py39h087fc0e_0 - primecountpy=0.1.0=py39hd16970a_3 - prompt-toolkit=3.0.42=pyha770c72_0 - - pybind11=2.11.1=py39hd16970a_2 - - pyproject-api=1.6.1=pyhd8ed1ab_0 - - pytest=7.4.3=pyhd8ed1ab_0 + - pyproject-metadata=0.7.1=pyhd8ed1ab_0 + - pytest=8.0.1=pyhd8ed1ab_1 - python-dateutil=2.8.2=pyhd8ed1ab_0 - - pytz-deprecation-shim=0.1.0.post0=py39h4420490_4 - - referencing=0.32.0=pyhd8ed1ab_0 - - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - - ruamel.yaml=0.18.5=py39h898b7ef_0 - sympy=1.12=pypyh9d50eac_103 - - terminado=0.18.0=pyh0d859eb_0 - - tinycss2=1.2.1=pyhd8ed1ab_0 - - typing-extensions=4.9.0=hd8ed1ab_0 - - urllib3=1.26.18=pyhd8ed1ab_0 - - virtualenv=20.25.0=pyhd8ed1ab_0 - - xorg-libxi=1.7.10=h3557bc0_0 - - annotated-types=0.6.0=pyhd8ed1ab_0 - - argon2-cffi-bindings=21.2.0=py39h898b7ef_4 - - arpack=3.7.0=hf862f49_2 - - arrow=1.3.0=pyhd8ed1ab_0 - - cattrs=23.2.3=pyhd8ed1ab_0 - - compilers=1.6.0=h8af1aa0_0 - - cryptography=41.0.7=py39h58638f2_1 - - dsdp=5.8=hb12102e_1203 + - urllib3=2.2.1=pyhd8ed1ab_0 + - arpack=3.8.0=nompi_h32ff4ca_101 - fflas-ffpack=2.4.3=hf104d39_2 - - fqdn=1.5.1=pyhd8ed1ab_0 - - git=2.42.0=pl5321h0d979e1_0 - - gitpython=3.1.40=pyhd8ed1ab_0 - gsl=2.7=h294027d_0 - - harfbuzz=6.0.0=hbcb8a4f_0 - - hatchling=1.21.0=pyhd8ed1ab_0 - iml=1.0.5=h9076c59_1003 - importlib-resources=6.1.1=pyhd8ed1ab_0 - - importlib_metadata=7.0.0=hd8ed1ab_0 - - jsonschema-specifications=2023.11.2=pyhd8ed1ab_0 - - jupyter_server_terminals=0.5.0=pyhd8ed1ab_0 + - importlib_metadata=7.0.1=hd8ed1ab_0 - liblapacke=3.9.0=20_linuxaarch64_openblas - - numpy=1.26.2=py39h91c28bb_0 - - prompt_toolkit=3.0.42=hd8ed1ab_0 - - pydantic-core=2.14.5=py39hf916c31_0 + - meson-python=0.15.0=pyh0c530f3_0 + - numpy=1.26.4=py39h91c28bb_0 - pytest-xdist=3.5.0=pyhd8ed1ab_0 - requests=2.31.0=pyhd8ed1ab_0 - - setuptools-scm=8.0.4=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 - - suitesparse=5.10.1=h1404dd6_1 - - xorg-libxtst=1.2.3=hf897c2e_1002 - - argon2-cffi=23.1.0=pyhd8ed1ab_0 - blas-devel=3.9.0=20_linuxaarch64_openblas - - cachecontrol=0.13.1=pyhd8ed1ab_0 - contourpy=1.2.0=py39hd16970a_0 - - cvxopt=1.3.2=py39h9d7d0b6_1 - - ensureconda=1.4.3=pyhd8ed1ab_0 - - fpylll=0.6.0=py39h97065f7_1 + - fpylll=0.6.1=py39h97065f7_0 - giac=1.9.0.21=h04922a4_1 - - igraph=0.9.10=hefb87a8_1 + - igraph=0.10.10=hcfae7ab_0 - ipython=8.18.1=pyh707e725_3 - - isoduration=20.11.0=pyhd8ed1ab_0 - - jsonschema=4.20.0=pyhd8ed1ab_0 - jupyter_client=8.6.0=pyhd8ed1ab_0 - linbox=1.6.3=h681a5ee_8 - - lsprotocol=2023.0.0=pyhd8ed1ab_0 - - openjdk=17.0.3=h1a274e0_5 - - pango=1.50.14=h1f1e9b3_0 - - pydantic=2.5.2=pyhd8ed1ab_0 - - pythran=0.14.0=py39hc2250db_1 - scipy=1.11.3=py39h91c28bb_1 - - secretstorage=3.3.3=py39ha65689a_2 - - setuptools_scm=8.0.4=hd8ed1ab_0 - - tox=4.11.4=pyhd8ed1ab_0 - blas=2.120=openblas - - cachecontrol-with-filecache=0.13.1=pyhd8ed1ab_0 - - ipykernel=6.26.0=pyhf8b6a83_0 - - ipywidgets=8.1.1=pyhd8ed1ab_0 - - jmol=14.32.10=h8af1aa0_0 - - jsonschema-with-format-nongpl=4.20.0=pyhd8ed1ab_0 - - keyring=24.3.0=py39h4420490_0 - - matplotlib-base=3.8.2=py39h8e43113_0 - - nbformat=5.9.2=pyhd8ed1ab_0 - - pygls=1.2.1=pyhd8ed1ab_0 - - r-base=4.2.3=h620ca72_0 - - rw=0.9=hf897c2e_0 - - conda-lock=2.5.1=pyhd8ed1ab_0 - - ipympl=0.9.3=pyhd8ed1ab_0 - - jupyter-jsmol=2022.1.0=pyhd8ed1ab_0 - - jupyter_events=0.9.0=pyhd8ed1ab_0 - - matplotlib=3.8.2=py39ha65689a_0 - - nbclient=0.8.0=pyhd8ed1ab_0 - - rpy2=3.5.11=py39r42h1ae4408_3 - - nbconvert-core=7.13.0=pyhd8ed1ab_0 - - jupyter_server=2.12.1=pyhd8ed1ab_0 - - nbconvert-pandoc=7.13.0=pyhd8ed1ab_0 - - jupyter-lsp=2.2.1=pyhd8ed1ab_0 - - jupyterlab_server=2.25.2=pyhd8ed1ab_0 - - nbconvert=7.13.0=pyhd8ed1ab_0 - - notebook-shim=0.2.3=pyhd8ed1ab_0 - - jupyterlab=4.0.9=pyhd8ed1ab_0 - - notebook=7.0.6=pyhd8ed1ab_0 - - esbonio=0.16.3=pyhd8ed1ab_0 - - jupyter_sphinx=0.1.4=py_0 + - ipykernel=6.29.2=pyhd33586a_0 + - ipywidgets=8.1.2=pyhd8ed1ab_0 + - matplotlib-base=3.8.3=py39h8e43113_0 + - rw=0.9=h31becfc_1 - sphinx-basic-ng=1.0.0b2=pyhd8ed1ab_1 - - furo=2023.9.10=pyhd8ed1ab_0 - - sphinx-copybutton=0.5.2=pyhd8ed1ab_0 - - sphinxcontrib-applehelp=1.0.7=pyhd8ed1ab_0 - - sphinxcontrib-devhelp=1.0.5=pyhd8ed1ab_0 - - sphinxcontrib-htmlhelp=2.0.4=pyhd8ed1ab_0 - - sphinxcontrib-qthelp=1.0.6=pyhd8ed1ab_0 + - furo=2024.1.29=pyhd8ed1ab_0 + - sphinx-inline-tabs=2023.4.21=pyhd8ed1ab_0 + - sphinxcontrib-applehelp=1.0.8=pyhd8ed1ab_0 + - sphinxcontrib-devhelp=1.0.6=pyhd8ed1ab_0 + - sphinxcontrib-htmlhelp=2.0.5=pyhd8ed1ab_0 + - sphinxcontrib-qthelp=1.0.7=pyhd8ed1ab_0 - sphinx=7.2.6=pyhd8ed1ab_0 - - sphinxcontrib-serializinghtml=1.1.9=pyhd8ed1ab_0 - - sphinxcontrib-websupport=1.2.6=pyhd8ed1ab_0 + - sphinxcontrib-serializinghtml=1.1.10=pyhd8ed1ab_0 diff --git a/src/environment-dev-3.9-linux.yml b/src/environment-dev-3.9-linux.yml index 6da40a4af0c..92cee9e5ba1 100644 --- a/src/environment-dev-3.9-linux.yml +++ b/src/environment-dev-3.9-linux.yml @@ -1,512 +1,264 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: 8228c70c3f4709e6768e87980d54e76c4e66183c854327691d173d864f96b80a +# input_hash: b299ab03c2902da2b8b4bcf65c23cc041a98f358203e1f2df50a6a0be8f3eda6 channels: - conda-forge dependencies: - _libgcc_mutex=0.1=conda_forge - - _r-mutex=1.0.1=anacondar_1 - - ca-certificates=2023.11.17=hbcca054_0 + - ca-certificates=2024.2.2=hbcca054_0 - font-ttf-dejavu-sans-mono=2.37=hab24e00_0 - font-ttf-inconsolata=3.000=h77eed37_0 - font-ttf-source-code-pro=2.038=h77eed37_0 - font-ttf-ubuntu=0.83=h77eed37_1 - - gh=2.40.1=ha8f183a_0 - - kernel-headers_linux-64=2.6.32=he073ed8_16 + - kernel-headers_linux-64=2.6.32=he073ed8_17 - ld_impl_linux-64=2.40=h41732ed_0 - - libboost-headers=1.84.0=ha770c72_0 - - libgcc-devel_linux-64=12.3.0=h8bca6fd_103 - - libstdcxx-devel_linux-64=12.3.0=h8bca6fd_103 - - libstdcxx-ng=13.2.0=h7e041cc_3 - - mathjax=3.2.2=ha770c72_0 + - libboost-headers=1.84.0=ha770c72_1 + - libgcc-devel_linux-64=12.3.0=h8bca6fd_105 + - libstdcxx-devel_linux-64=12.3.0=h8bca6fd_105 + - libstdcxx-ng=13.2.0=h7e041cc_5 - pari-elldata=0.0.20161017=0 - pari-galdata=0.0.20180411=0 - - pari-galpol=0.0.20180625=0 - pari-seadata-small=0.0.20090618=0 - python_abi=3.9=4_cp39 - - sagemath-db-combinatorial-designs=20140630=1 - - sagemath-db-graphs=20210214=hd8ed1ab_0 - - sagemath-db-polytopes=20170220=1 - - three.js=122=hd8ed1ab_2 - - tzdata=2023c=h71feb2d_0 + - tzdata=2024a=h0c530f3_0 - fonts-conda-forge=1=0 - - libgomp=13.2.0=h807b86a_3 + - libgomp=13.2.0=h807b86a_5 - pari-seadata=0.0.20090618=0 - - sysroot_linux-64=2.12=he073ed8_16 - - threejs-sage=122=hd8ed1ab_2 + - sysroot_linux-64=2.12=he073ed8_17 - binutils_impl_linux-64=2.40=hf600244_0 - fonts-conda-ecosystem=1=0 - binutils=2.40=hdd6e379_0 - binutils_linux-64=2.40=hbdbef99_2 - _openmp_mutex=4.5=2_kmp_llvm - - libgcc-ng=13.2.0=h807b86a_3 - - alsa-lib=1.2.10=hd590300_0 - - attr=2.5.1=h166bdaf_1 - - bc=1.07.1=h7f98852_0 + - libgcc-ng=13.2.0=h807b86a_5 - bdw-gc=8.0.6=h4bd325d_0 - bzip2=1.0.8=hd590300_5 - - c-ares=1.24.0=hd590300_0 + - c-ares=1.27.0=hd590300_0 - cliquer=1.22=h36c2ea0_0 - - fribidi=1.0.10=h36c2ea0_0 - - gengetopt=2.23=h9c3ff4c_0 - - gettext=0.21.1=h27087fc_0 - gf2x=1.3.0=ha476b99_2 - giflib=5.2.1=h0b41bf4_3 - gmp=6.3.0=h59595ed_0 - - graphite2=1.3.13=h58526e2_1001 - icu=73.2=h59595ed_0 - keyutils=1.6.1=h166bdaf_0 - - lame=3.100=h166bdaf_1003 - lerc=4.0.0=h27087fc_0 - - libatomic_ops=7.6.14=h166bdaf_0 - libbraiding=1.2=hcb278e6_0 - libbrotlicommon=1.1.0=hd590300_1 - - libcbor=0.10.2=hcb278e6_0 - libdeflate=1.19=hd590300_0 - libev=4.33=hd590300_2 - libexpat=2.5.0=hcb278e6_1 - libffi=3.4.2=h7f98852_5 - - libgfortran5=13.2.0=ha4646dd_3 + - libgfortran5=13.2.0=ha4646dd_5 - libiconv=1.17=hd590300_2 - libjpeg-turbo=3.0.0=hd590300_1 - libnsl=2.0.1=hd590300_0 - - libogg=1.3.4=h7f98852_1 - - libopus=1.3.1=h7f98852_1 - - libsanitizer=12.3.0=h0f45ef3_3 + - libsanitizer=12.3.0=h0f45ef3_5 - libsodium=1.0.18=h36c2ea0_1 - - libtool=2.4.7=h27087fc_0 - libuuid=2.38.1=h0b41bf4_0 - - libuv=1.46.0=hd590300_0 - libwebp-base=1.3.2=hd590300_0 + - libxcrypt=4.4.36=hd590300_1 - libzlib=1.2.13=hd590300_5 - - lrcalc=2.1=h27087fc_5 - - lz4-c=1.9.4=hcb278e6_0 - - m4=1.4.18=h516909a_1001 - - make=4.3=hd18ef5c_1 - - metis=5.1.1=h59595ed_2 - - mpg123=1.32.3=h59595ed_0 - - nauty=2.8.8=hd590300_0 + - lrcalc=2.1=h59595ed_6 + - nauty=2.8.8=hd590300_1 - ncurses=6.4=h59595ed_2 - ninja=1.11.1=h924138e_0 - - nspr=4.35=h27087fc_0 - - openssl=3.2.0=hd590300_1 + - openssl=3.2.1=hd590300_0 - palp=2.20=h36c2ea0_0 - - patch=2.7.6=h7f98852_1002 - - pixman=0.42.2=h59595ed_0 - pkg-config=0.29.2=h36c2ea0_1008 - planarity=3.0.0.5=h36c2ea0_1002 - primesieve=11.1=h59595ed_0 - pthread-stubs=0.4=h36c2ea0_1001 - qhull=2020.2=h4bd325d_2 - - rhash=1.4.4=hd590300_0 - - sed=4.8=he412f7d_0 - symmetrica=3.0.1=hcb278e6_0 - - xorg-inputproto=2.3.2=h7f98852_1002 - - xorg-kbproto=1.0.7=h7f98852_1002 - - xorg-libice=1.1.1=hd590300_0 - xorg-libxau=1.0.11=hd590300_0 - xorg-libxdmcp=1.1.3=h7f98852_0 - - xorg-recordproto=1.14.2=h7f98852_1002 - - xorg-renderproto=0.11.1=h7f98852_1002 - - xorg-xextproto=7.3.0=h0b41bf4_1003 - - xorg-xf86vidmodeproto=2.3.1=h7f98852_1002 - - xorg-xproto=7.0.31=h7f98852_1007 - xz=5.2.6=h166bdaf_0 - - yaml=0.2.5=h7f98852_2 - cddlib=1!0.94m=h9202a9a_0 - ecm=7.0.4=h9202a9a_1002 - expat=2.5.0=hcb278e6_1 - - gcc_impl_linux-64=12.3.0=he2b93b0_3 + - gcc_impl_linux-64=12.3.0=he2b93b0_5 - givaro=4.1.1=h192cbe9_1 - glpk=5.0=h445213a_0 - libbrotlidec=1.1.0=hd590300_1 - libbrotlienc=1.1.0=hd590300_1 - - libcap=2.69=h0f662aa_0 - libedit=3.1.20191231=he28a2e2_2 - - libevent=2.1.12=hf998b51_1 - - libflac=1.4.3=h59595ed_0 - - libgfortran-ng=13.2.0=h69a702a_3 - - libgpg-error=1.47=h71f35ed_0 + - libgfortran-ng=13.2.0=h69a702a_5 - libhomfly=1.02r6=h36c2ea0_0 - libnghttp2=1.58.0=h47da74e_1 - - libpng=1.6.39=h753d276_0 - - libsqlite=3.44.2=h2797004_0 + - libpng=1.6.42=h2797004_0 + - libsqlite=3.45.1=h2797004_0 - libssh2=1.11.0=h0841786_0 - - libvorbis=1.3.7=h9c3ff4c_0 - libxcb=1.15=h0b41bf4_0 - - libxml2=2.11.6=h232c23b_0 + - libxml2=2.12.5=h232c23b_0 - mpfr=4.2.1=h9458935_0 - - mysql-common=8.0.33=hf1915f5_6 - ntl=11.4.3=hef3c4d3_1 - - pcre2=10.42=hcad00b1_0 - - perl=5.32.1=4_hd590300_perl5 + - perl=5.32.1=7_hd590300_perl5 - primecount=7.9=hcb278e6_0 - readline=8.2=h8228510_1 - - tar=1.34=hb2e2bae_1 - tk=8.6.13=noxft_h4845f30_101 - - xorg-fixesproto=5.0=h7f98852_1002 - - xorg-libsm=1.2.4=h7391055_0 - zeromq=4.3.5=h59595ed_0 - zlib=1.2.13=hd590300_5 - zstd=1.5.5=hfc55251_0 - - autoconf=2.71=pl5321h2b4cb7a_1 - brotli-bin=1.1.0=hd590300_1 - - bwidget=1.9.14=ha770c72_1 - ecl=21.2.1=h9d73b02_2 - - fftw=3.3.10=nompi_hc118613_108 - freetype=2.12.1=h267a509_2 - gap-core=4.12.2=he9a28a4_3 - gcc=12.3.0=h8d2909c_2 - gcc_linux-64=12.3.0=h76fc315_2 - gfan=0.6.2=hb86e20a_1003 - - gfortran_impl_linux-64=12.3.0=hfcedea8_3 - - gxx_impl_linux-64=12.3.0=he2b93b0_3 + - gxx_impl_linux-64=12.3.0=he2b93b0_5 - krb5=1.21.2=h659d440_0 - - libboost=1.84.0=h6fcfa73_0 + - libboost=1.84.0=h8013b2b_1 - libflint=3.0.1=h5f2e117_ntl_100 - - libgcrypt=1.10.3=hd590300_0 - - libglib=2.78.3=h783c2da_0 - - libhwloc=2.9.3=default_h554bfaf_1009 - - libllvm15=15.0.7=h5cf9203_3 - libopenblas=0.3.25=pthreads_h413a1c8_0 - - libsndfile=1.2.2=hc60ed4a_1 - libtiff=4.6.0=ha9c0a0a_2 - - libudev1=255=h3f72095_0 - llvm-openmp=17.0.6=h4dfa4b3_0 - m4ri=20140914=h7ca028e_1005 - mpc=1.3.1=hfe3b2da_0 - mpfi=1.5.4=h9f54685_1001 - - mysql-libs=8.0.33=hca2cd23_6 - - nss=3.96=h1d7d5a4_0 - - pandoc=3.1.3=h32600fe_0 - pari=2.15.4=h4d4ae9b_2_pthread - ppl=1.2=h6ec01c2_1006 - - python=3.9.18=h0755675_0_cpython + - python=3.9.18=h0755675_1_cpython - qd=2.3.22=h2cc385e_1004 - - sqlite=3.44.2=h2c6b66d_0 - - tachyon=0.99b6=0 - - texinfo=7.0=pl5321h0f457ee_0 - - tktable=2.10=h0c5db8f_5 - - xcb-util=0.4.0=hd590300_1 - - xcb-util-keysyms=0.4.0=h8ee46fc_1 - - xcb-util-renderutil=0.3.9=hd590300_1 - - xcb-util-wm=0.4.1=h8ee46fc_1 - - xorg-libx11=1.8.7=h8ee46fc_0 - - alabaster=0.7.13=pyhd8ed1ab_0 - - appdirs=1.4.4=pyh9f0ad1d_0 - - appnope=0.1.3=pyhd8ed1ab_0 - - attrs=23.1.0=pyh71513ae_1 - - automake=1.16.5=pl5321ha770c72_0 + - alabaster=0.7.16=pyhd8ed1ab_0 - brotli=1.1.0=hd590300_1 - brotli-python=1.1.0=py39h3d6467e_1 - c-compiler=1.6.0=hd590300_0 - - cached_property=1.5.2=pyha770c72_1 - - cachetools=5.3.2=pyhd8ed1ab_0 - - cachy=0.3.0=pyhd8ed1ab_1 - - certifi=2023.11.17=pyhd8ed1ab_0 - - chardet=5.2.0=py39hf3d152e_1 + - certifi=2024.2.2=pyhd8ed1ab_0 - charset-normalizer=3.3.2=pyhd8ed1ab_0 - - click=8.1.7=unix_pyh707e725_0 - colorama=0.4.6=pyhd8ed1ab_0 - - conway-polynomials=0.8=pyhd8ed1ab_0 - - crashtest=0.4.1=pyhd8ed1ab_0 + - conway-polynomials=0.9=pyhd8ed1ab_0 - cycler=0.12.1=pyhd8ed1ab_0 - cysignals=1.11.2=py39h1ce0973_3 - - cython=3.0.7=py39h3d6467e_0 - - dbus=1.13.6=h5008d03_3 - - debugpy=1.8.0=py39h3d6467e_1 + - cython=3.0.8=py39h3d6467e_0 + - debugpy=1.8.1=py39h3d6467e_0 - decorator=5.1.1=pyhd8ed1ab_0 - - defusedxml=0.7.1=pyhd8ed1ab_0 - - distlib=0.3.8=pyhd8ed1ab_0 - docutils=0.20.1=py39hf3d152e_3 - - eclib=20231211=h96f522a_0 - - editables=0.3=pyhd8ed1ab_0 - - entrypoints=0.4=pyhd8ed1ab_0 - - exceptiongroup=1.2.0=pyhd8ed1ab_0 + - eclib=20231212=h96f522a_0 + - exceptiongroup=1.2.0=pyhd8ed1ab_2 - execnet=2.0.2=pyhd8ed1ab_0 - executing=2.0.1=pyhd8ed1ab_0 - - filelock=3.13.1=pyhd8ed1ab_0 - - flit-core=3.9.0=pyhd8ed1ab_0 - fontconfig=2.14.2=h14ed4e7_0 - fplll=5.4.5=h384768b_0 - gap-defaults=4.12.2=ha770c72_3 - - gast=0.5.4=pyhd8ed1ab_0 - - gfortran=12.3.0=h499e0f7_2 - - gfortran_linux-64=12.3.0=h7fe76b4_2 - - glib-tools=2.78.3=hfc55251_0 - gmpy2=2.1.2=py39h376b7d2_1 - gxx=12.3.0=h8d2909c_2 - gxx_linux-64=12.3.0=h8a814eb_2 - idna=3.6=pyhd8ed1ab_0 - imagesize=1.4.1=pyhd8ed1ab_0 - iniconfig=2.0.0=pyhd8ed1ab_0 - - ipython_genutils=0.2.0=py_1 - - jeepney=0.8.0=pyhd8ed1ab_0 - - json5=0.9.14=pyhd8ed1ab_0 - - jsonpointer=2.4=py39hf3d152e_3 - - jupyterlab_widgets=3.0.9=pyhd8ed1ab_0 + - jupyterlab_widgets=3.0.10=pyhd8ed1ab_0 - kiwisolver=1.4.5=py39h7633fee_1 - lcalc=2.0.5=h6a8a7c6_1 - lcms2=2.16=hb7c19ff_0 - libblas=3.9.0=20_linux64_openblas - - libboost-devel=1.84.0=h00ab1b0_0 + - libboost-devel=1.84.0=h00ab1b0_1 - libbrial=1.2.12=h3155cbd_1 - - libclang13=15.0.7=default_ha2b6cf4_4 - - libcups=2.3.3=h4637d8d_4 - libcurl=8.5.0=hca28451_0 - - libfido2=1.14.0=h4446dcb_0 - - libpq=16.1=h33b98f1_7 - - libsystemd0=255=h3516f8a_0 - libwebp=1.3.2=h658648e_1 - m4rie=20150908=h7ca028e_1001 - - markupsafe=2.1.3=py39hd1e30aa_1 + - markupsafe=2.1.5=py39hd1e30aa_0 - maxima=5.47.0=hed6455c_1 - - mistune=3.0.2=pyhd8ed1ab_0 - - more-itertools=10.1.0=pyhd8ed1ab_0 - mpmath=1.3.0=pyhd8ed1ab_0 - - msgpack-python=1.0.7=py39h7633fee_0 - munkres=1.1.4=pyh9f0ad1d_0 - - nest-asyncio=1.5.8=pyhd8ed1ab_0 + - nest-asyncio=1.6.0=pyhd8ed1ab_0 - networkx=3.2.1=pyhd8ed1ab_0 - openblas=0.3.25=pthreads_h7a3da1a_0 - openjpeg=2.5.0=h488ebb8_3 - packaging=23.2=pyhd8ed1ab_0 - - pandocfilters=1.5.0=pyhd8ed1ab_0 - parso=0.8.3=pyhd8ed1ab_0 - - pastel=0.2.1=pyhd8ed1ab_0 - - pathspec=0.12.1=pyhd8ed1ab_0 - pickleshare=0.7.5=py_1003 - pkgconfig=1.5.5=pyhd8ed1ab_4 - - pkginfo=1.9.6=pyhd8ed1ab_0 - - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 - - platformdirs=4.1.0=pyhd8ed1ab_0 - - pluggy=1.3.0=pyhd8ed1ab_0 - - ply=3.11=py_1 - - prometheus_client=0.19.0=pyhd8ed1ab_0 - - psutil=5.9.7=py39hd1e30aa_0 + - platformdirs=4.2.0=pyhd8ed1ab_0 + - pluggy=1.4.0=pyhd8ed1ab_0 + - psutil=5.9.8=py39hd1e30aa_0 - ptyprocess=0.7.0=pyhd3deb0d_0 - pure_eval=0.2.2=pyhd8ed1ab_0 - - py=1.11.0=pyh6c4a22f_0 - - pybind11-global=2.11.1=py39h7633fee_2 - - pycodestyle=2.11.1=pyhd8ed1ab_0 - - pycparser=2.21=pyhd8ed1ab_0 - pygments=2.17.2=pyhd8ed1ab_0 - - pylev=1.4.0=pyhd8ed1ab_0 - pyparsing=3.1.1=pyhd8ed1ab_0 - - pyrsistent=0.20.0=py39hd1e30aa_0 - pysocks=1.7.1=pyha2e5f31_6 - - pyspellchecker=0.7.2=pyhd8ed1ab_0 - - python-fastjsonschema=2.19.0=pyhd8ed1ab_0 - - python-json-logger=2.0.7=pyhd8ed1ab_0 - - python-lrcalc=2.1=py39h5a03fae_5 - - python-tzdata=2023.3=pyhd8ed1ab_0 - - pytz=2023.3.post1=pyhd8ed1ab_0 - - pyyaml=6.0.1=py39hd1e30aa_1 + - pytz=2024.1=pyhd8ed1ab_0 - pyzmq=25.1.2=py39h8c080ef_0 - - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.15.2=py39h9fdd4d6_0 - - ruamel.yaml.clib=0.2.7=py39hd1e30aa_2 - - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 - - sagetex=3.6.1=pyhd8ed1ab_0 - - send2trash=1.8.2=pyh41d4057_0 - - setuptools=68.2.2=pyhd8ed1ab_0 - - simplegeneric=0.8.1=py_1 + - setuptools=69.1.0=pyhd8ed1ab_1 - singular=4.3.2.p8=h33f5c3f_1 - six=1.16.0=pyh6c4a22f_0 - - smmap=5.0.0=pyhd8ed1ab_0 - - sniffio=1.3.0=pyhd8ed1ab_0 - snowballstemmer=2.2.0=pyhd8ed1ab_0 - soupsieve=2.5=pyhd8ed1ab_1 - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_0 - sympow=2.023.6=hc6ab17c_3 - - tbb=2021.11.0=h00ab1b0_0 - - toml=0.10.2=pyhd8ed1ab_0 - tomli=2.0.1=pyhd8ed1ab_0 - - tomlkit=0.12.3=pyha770c72_0 - - toolz=0.12.0=pyhd8ed1ab_0 - - tornado=6.3.3=py39hd1e30aa_1 - - traitlets=5.14.0=pyhd8ed1ab_0 - - trove-classifiers=2023.11.29=pyhd8ed1ab_0 - - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 + - tornado=6.4=py39hd1e30aa_0 + - traitlets=5.14.1=pyhd8ed1ab_0 - typing_extensions=4.9.0=pyha770c72_0 - - typing_utils=0.1.0=pyhd8ed1ab_0 - - tzlocal=5.2=py39hf3d152e_0 - unicodedata2=15.1.0=py39hd1e30aa_0 - - uri-template=1.3.0=pyhd8ed1ab_0 - - wcwidth=0.2.12=pyhd8ed1ab_0 - - webcolors=1.13=pyhd8ed1ab_0 - - webencodings=0.5.1=pyhd8ed1ab_2 - - websocket-client=1.7.0=pyhd8ed1ab_0 + - wcwidth=0.2.13=pyhd8ed1ab_0 - wheel=0.42.0=pyhd8ed1ab_0 - - widgetsnbextension=4.0.9=pyhd8ed1ab_0 - - xcb-util-image=0.4.0=h8ee46fc_1 - - xkeyboard-config=2.40=hd590300_0 - - xorg-libxext=1.3.4=h0b41bf4_2 - - xorg-libxfixes=5.0.3=h7f98852_1004 - - xorg-libxrender=0.9.11=hd590300_0 - - xorg-libxt=1.3.0=hd590300_1 + - widgetsnbextension=4.0.10=pyhd8ed1ab_0 - zipp=3.17.0=pyhd8ed1ab_0 - - anyio=4.2.0=pyhd8ed1ab_0 - asttokens=2.4.1=pyhd8ed1ab_0 - - async-lru=2.0.4=pyhd8ed1ab_0 - babel=2.14.0=pyhd8ed1ab_0 - - beautifulsoup4=4.12.2=pyha770c72_0 - - beniget=0.4.1=pyhd8ed1ab_0 - - bleach=6.1.0=pyhd8ed1ab_0 - - boost-cpp=1.84.0=h44aadfe_0 + - beautifulsoup4=4.12.3=pyha770c72_0 + - boost-cpp=1.84.0=h44aadfe_1 - brial=1.2.12=pyh694c41f_1 - - cached-property=1.5.2=hd8ed1ab_1 - - cairo=1.18.0=h3faef2a_0 - - cffi=1.16.0=py39h7a31438_0 - - click-default-group=1.2.4=pyhd8ed1ab_0 - - clikit=0.6.2=pyhd8ed1ab_2 - - cmake=3.28.1=hcfe8598_0 - - comm=0.1.4=pyhd8ed1ab_0 - - cppy=1.2.1=pyhd8ed1ab_0 - - curl=8.5.0=hca28451_0 + - comm=0.2.1=pyhd8ed1ab_0 + - coverage=7.4.1=py39hd1e30aa_0 - cxx-compiler=1.6.0=h00ab1b0_0 - - cypari2=2.1.3=py39h1698a45_2 - - deprecation=2.1.0=pyh9f0ad1d_0 - - fonttools=4.47.0=py39hd1e30aa_0 - - fortran-compiler=1.6.0=heb67821_0 - - gitdb=4.0.11=pyhd8ed1ab_0 - - glib=2.78.3=hfc55251_0 - - html5lib=1.1=pyh9f0ad1d_0 - - importlib-metadata=7.0.0=pyha770c72_0 + - cypari2=2.1.4=py39h1698a45_2 + - fonttools=4.49.0=py39hd1e30aa_0 + - importlib-metadata=7.0.1=pyha770c72_0 - importlib_resources=6.1.1=pyhd8ed1ab_0 - - jaraco.classes=3.3.0=pyhd8ed1ab_0 - jedi=0.19.1=pyhd8ed1ab_0 - - jinja2=3.1.2=pyhd8ed1ab_1 - - jupyter_core=5.5.1=py39hf3d152e_0 - - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 + - jinja2=3.1.3=pyhd8ed1ab_0 + - jupyter_core=5.7.1=py39hf3d152e_0 - libcblas=3.9.0=20_linux64_openblas - - libclang=15.0.7=default_hb11cfb5_4 - libgd=2.3.3=h119a65a_9 - liblapack=3.9.0=20_linux64_openblas - - libxkbcommon=1.6.0=h5d7e998_0 - matplotlib-inline=0.1.6=pyhd8ed1ab_0 - memory-allocator=0.1.3=py39hd1e30aa_0 - - openssh=9.3p1=h2d3b35a_2 - - overrides=7.4.0=pyhd8ed1ab_0 - - pexpect=4.8.0=pyh1a96a4e_2 - - pillow=10.1.0=py39had0adad_0 - - pip=23.3.2=pyhd8ed1ab_0 + - meson=1.3.2=pyhd8ed1ab_0 + - pexpect=4.9.0=pyhd8ed1ab_0 + - pillow=10.2.0=py39had0adad_0 + - pip=24.0=pyhd8ed1ab_0 - pplpy=0.8.9=py39hba3e9e5_0 - primecountpy=0.1.0=py39h7633fee_4 - prompt-toolkit=3.0.42=pyha770c72_0 - - pulseaudio-client=16.1=hb77b528_5 - - pybind11=2.11.1=py39h7633fee_2 - - pyproject-api=1.6.1=pyhd8ed1ab_0 - - pytest=7.4.3=pyhd8ed1ab_0 + - pyproject-metadata=0.7.1=pyhd8ed1ab_0 + - pytest=8.0.1=pyhd8ed1ab_1 - python-dateutil=2.8.2=pyhd8ed1ab_0 - - pytz-deprecation-shim=0.1.0.post0=py39hf3d152e_4 - - referencing=0.32.0=pyhd8ed1ab_0 - - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - - ruamel.yaml=0.18.5=py39hd1e30aa_0 - - sip=6.7.12=py39h3d6467e_0 - sympy=1.12=pypyh9d50eac_103 - - terminado=0.18.0=pyh0d859eb_0 - - tinycss2=1.2.1=pyhd8ed1ab_0 - - typing-extensions=4.9.0=hd8ed1ab_0 - - urllib3=1.26.18=pyhd8ed1ab_0 - - virtualenv=20.25.0=pyhd8ed1ab_0 - - xorg-libxi=1.7.10=h7f98852_0 - - annotated-types=0.6.0=pyhd8ed1ab_0 - - argon2-cffi-bindings=21.2.0=py39hd1e30aa_4 + - urllib3=2.2.1=pyhd8ed1ab_0 - arpack=3.8.0=nompi_h0baa96a_101 - - arrow=1.3.0=pyhd8ed1ab_0 - - cattrs=23.2.3=pyhd8ed1ab_0 - - compilers=1.6.0=ha770c72_0 - - cryptography=41.0.7=py39he6105cc_1 - - dsdp=5.8=hd9d9efa_1203 - fflas-ffpack=2.4.3=h912ac81_2 - - fqdn=1.5.1=pyhd8ed1ab_0 - - git=2.43.0=pl5321h7bc287a_0 - - gitpython=3.1.40=pyhd8ed1ab_0 - gsl=2.7=he838d99_0 - - gstreamer=1.22.8=h98fc4e7_0 - - harfbuzz=8.3.0=h3d44ed6_0 - - hatchling=1.21.0=pyhd8ed1ab_0 - iml=1.0.5=hd75c201_1003 - importlib-resources=6.1.1=pyhd8ed1ab_0 - - importlib_metadata=7.0.0=hd8ed1ab_0 - - jsonschema-specifications=2023.11.2=pyhd8ed1ab_0 - - jupyter_server_terminals=0.5.0=pyhd8ed1ab_0 + - importlib_metadata=7.0.1=hd8ed1ab_0 - liblapacke=3.9.0=20_linux64_openblas - - numpy=1.26.2=py39h474f0d3_0 - - prompt_toolkit=3.0.42=hd8ed1ab_0 - - pydantic-core=2.14.5=py39h9fdd4d6_0 - - pyqt5-sip=12.12.2=py39h3d6467e_5 + - meson-python=0.15.0=pyh0c530f3_0 + - numpy=1.26.4=py39h474f0d3_0 - pytest-xdist=3.5.0=pyhd8ed1ab_0 - requests=2.31.0=pyhd8ed1ab_0 - - setuptools-scm=8.0.4=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 - - suitesparse=5.10.1=h3ec001c_2 - - xorg-libxtst=1.2.3=h7f98852_1002 - - argon2-cffi=23.1.0=pyhd8ed1ab_0 - blas-devel=3.9.0=20_linux64_openblas - - cachecontrol=0.13.1=pyhd8ed1ab_0 - contourpy=1.2.0=py39h7633fee_0 - - cvxopt=1.3.2=py39hef4d4b4_1 - - ensureconda=1.4.3=pyhd8ed1ab_0 - - fpylll=0.6.0=py39h2525e16_1 + - fpylll=0.6.1=py39h2525e16_0 - giac=1.9.0.21=h673759e_1 - - gst-plugins-base=1.22.8=h8e1006c_0 - - igraph=0.10.8=h66a01bf_0 + - igraph=0.10.10=h153f77b_0 - ipython=8.18.1=pyh707e725_3 - - isoduration=20.11.0=pyhd8ed1ab_0 - - jsonschema=4.20.0=pyhd8ed1ab_0 - jupyter_client=8.6.0=pyhd8ed1ab_0 - linbox=1.6.3=ha329b40_8 - - lsprotocol=2023.0.0=pyhd8ed1ab_0 - - openjdk=21.0.1=haa376d0_0 - - pango=1.50.14=ha41ecd1_2 - - pydantic=2.5.2=pyhd8ed1ab_0 - - pythran=0.14.0=py39hda80f44_1 - scipy=1.11.4=py39h474f0d3_0 - - secretstorage=3.3.3=py39hf3d152e_2 - - setuptools_scm=8.0.4=hd8ed1ab_0 - - tox=4.11.4=pyhd8ed1ab_0 - blas=2.120=openblas - - cachecontrol-with-filecache=0.13.1=pyhd8ed1ab_0 - - ipykernel=6.26.0=pyhf8b6a83_0 - - ipywidgets=8.1.1=pyhd8ed1ab_0 - - jmol=14.32.10=ha770c72_0 - - jsonschema-with-format-nongpl=4.20.0=pyhd8ed1ab_0 - - keyring=24.3.0=py39hf3d152e_0 - - matplotlib-base=3.8.2=py39he9076e7_0 - - nbformat=5.9.2=pyhd8ed1ab_0 - - pygls=1.2.1=pyhd8ed1ab_0 - - qt-main=5.15.8=h82b777d_17 - - r-base=4.3.2=hb8ee39d_1 + - ipykernel=6.29.2=pyhd33586a_0 + - ipywidgets=8.1.2=pyhd8ed1ab_0 + - matplotlib-base=3.8.3=py39he9076e7_0 - rw=0.9=hd590300_1 - - conda-lock=2.5.1=pyhd8ed1ab_0 - - ipympl=0.9.3=pyhd8ed1ab_0 - - jupyter-jsmol=2022.1.0=pyhd8ed1ab_0 - - jupyter_events=0.9.0=pyhd8ed1ab_0 - - nbclient=0.8.0=pyhd8ed1ab_0 - - pyqt=5.15.9=py39h52134e7_5 - - rpy2=3.5.11=py39r43h44dd56e_3 - - matplotlib=3.8.2=py39hf3d152e_0 - - nbconvert-core=7.13.0=pyhd8ed1ab_0 - - jupyter_server=2.12.1=pyhd8ed1ab_0 - - nbconvert-pandoc=7.13.0=pyhd8ed1ab_0 - - jupyter-lsp=2.2.1=pyhd8ed1ab_0 - - jupyterlab_server=2.25.2=pyhd8ed1ab_0 - - nbconvert=7.13.0=pyhd8ed1ab_0 - - notebook-shim=0.2.3=pyhd8ed1ab_0 - - jupyterlab=4.0.9=pyhd8ed1ab_0 - - notebook=7.0.6=pyhd8ed1ab_0 - - esbonio=0.16.3=pyhd8ed1ab_0 - - jupyter_sphinx=0.4.0=py39hf3d152e_1 - sphinx-basic-ng=1.0.0b2=pyhd8ed1ab_1 - - furo=2023.9.10=pyhd8ed1ab_0 - - sphinx-copybutton=0.5.2=pyhd8ed1ab_0 - - sphinxcontrib-applehelp=1.0.7=pyhd8ed1ab_0 - - sphinxcontrib-devhelp=1.0.5=pyhd8ed1ab_0 - - sphinxcontrib-htmlhelp=2.0.4=pyhd8ed1ab_0 - - sphinxcontrib-qthelp=1.0.6=pyhd8ed1ab_0 + - furo=2024.1.29=pyhd8ed1ab_0 + - sphinx-inline-tabs=2023.4.21=pyhd8ed1ab_0 + - sphinxcontrib-applehelp=1.0.8=pyhd8ed1ab_0 + - sphinxcontrib-devhelp=1.0.6=pyhd8ed1ab_0 + - sphinxcontrib-htmlhelp=2.0.5=pyhd8ed1ab_0 + - sphinxcontrib-qthelp=1.0.7=pyhd8ed1ab_0 - sphinx=7.2.6=pyhd8ed1ab_0 - - sphinxcontrib-serializinghtml=1.1.9=pyhd8ed1ab_0 - - sphinxcontrib-websupport=1.2.6=pyhd8ed1ab_0 + - sphinxcontrib-serializinghtml=1.1.10=pyhd8ed1ab_0 diff --git a/src/environment-dev-3.9-macos-arm64.yml b/src/environment-dev-3.9-macos-arm64.yml index df36d72fe93..db6d0420f12 100644 --- a/src/environment-dev-3.9-macos-arm64.yml +++ b/src/environment-dev-3.9-macos-arm64.yml @@ -1,444 +1,263 @@ # Generated by conda-lock. # platform: osx-arm64 -# input_hash: 0048aada15edee17d798a7bb4c2443c62747b86e759ca3f37153d5ef80efc852 +# input_hash: c537ed24865205fb5ae9e843d1689163e38c315b0af17f31ad31ce4905da6171 channels: - conda-forge dependencies: - - _r-mutex=1.0.1=anacondar_1 - - bc=1.07.1=h3422bc3_0 - bzip2=1.0.8=h93a5062_5 - - c-ares=1.24.0=h93a5062_0 - - ca-certificates=2023.11.17=hf0a4a13_0 + - c-ares=1.27.0=h93a5062_0 + - ca-certificates=2024.2.2=hf0a4a13_0 - cliquer=1.22=h27ca646_0 - font-ttf-dejavu-sans-mono=2.37=hab24e00_0 - font-ttf-inconsolata=3.000=h77eed37_0 - font-ttf-source-code-pro=2.038=h77eed37_0 - font-ttf-ubuntu=0.83=h77eed37_1 - - fribidi=1.0.10=h27ca646_0 - - gh=2.40.1=h75b854d_0 - giflib=5.2.1=h1a8c8d9_3 - - jpeg=9e=h1a8c8d9_3 - - libatomic_ops=7.6.14=h1a8c8d9_0 + - icu=73.2=hc8870d7_0 + - libboost-headers=1.84.0=hce30654_1 - libbrotlicommon=1.1.0=hb547adb_1 - libcxx=16.0.6=h4653b0c_0 - - libdeflate=1.17=h1a8c8d9_0 + - libdeflate=1.19=hb547adb_0 - libev=4.33=h93a5062_2 - libexpat=2.5.0=hb7217d7_1 - libffi=3.4.2=h3422bc3_5 - - libgfortran-devel_osx-arm64=12.3.0=hc62be1c_1 - libiconv=1.17=h0d3ecfb_2 + - libjpeg-turbo=3.0.0=hb547adb_1 - libsodium=1.0.18=h27ca646_1 - - libtool=2.4.7=hb7217d7_0 - - libuv=1.46.0=hb547adb_0 - - libwebp-base=1.2.4=h1a8c8d9_0 + - libwebp-base=1.3.2=hb547adb_0 - libzlib=1.2.13=h53f4e23_5 - llvm-openmp=17.0.6=hcd81f8e_0 - - m4=1.4.18=h642e427_1001 - - make=4.3=he57ea6c_1 - - mathjax=3.2.2=hce30654_0 - - nauty=2.8.8=h93a5062_0 + - nauty=2.8.8=h93a5062_1 - palp=2.20=h27ca646_0 - - pandoc=3.1.3=hce30654_0 - pari-elldata=0.0.20161017=0 - pari-galdata=0.0.20180411=0 - - pari-galpol=0.0.20180625=0 - pari-seadata-small=0.0.20090618=0 - - patch=2.7.6=h27ca646_1002 - - perl=5.32.1=4_hf2054a2_perl5 + - perl=5.32.1=7_h4614cfb_perl5 - planarity=3.0.0.5=h27ca646_1002 - pthread-stubs=0.4=h27ca646_1001 - python_abi=3.9=4_cp39 - - rhash=1.4.3=hb547adb_2 - - sagemath-db-combinatorial-designs=20140630=1 - - sagemath-db-graphs=20210214=hd8ed1ab_0 - - sagemath-db-polytopes=20170220=1 - - tbb=2021.10.0=h1995070_2 - - three.js=122=hd8ed1ab_2 - - tzdata=2023c=h71feb2d_0 + - tzdata=2024a=h0c530f3_0 - xorg-libxau=1.0.11=hb547adb_0 - xorg-libxdmcp=1.1.3=h27ca646_0 - xz=5.2.6=h57fd34a_0 - - yaml=0.2.5=h3422bc3_2 - - autoconf=2.71=pl5321hcd07c0c_1 - bdw-gc=8.0.6=hc021e02_0 - expat=2.5.0=hb7217d7_1 - fonts-conda-forge=1=0 - - gengetopt=2.23=hbdafb3b_0 - gettext=0.21.1=h0186832_0 - gf2x=1.3.0=hdaa854c_2 - gmp=6.3.0=h965bd2d_0 - - graphite2=1.3.13=h9f76cd9_1001 - - icu=70.1=h6b3803e_0 - - isl=0.25=h9a09cb3_0 - lerc=4.0.0=h9a09cb3_0 - libbraiding=1.2=hb7217d7_0 - libbrotlidec=1.1.0=hb547adb_1 - libbrotlienc=1.1.0=hb547adb_1 - - libcbor=0.10.2=hb7217d7_0 - - libgfortran5=13.2.0=hf226fd6_1 - - libpng=1.6.39=h76d750c_0 - - libsqlite=3.44.2=h091b4b1_0 - - libxcb=1.13=h9b22ae9_1004 - - lrcalc=2.1=hb7217d7_5 - - metis=5.1.1=h965bd2d_2 + - libgfortran5=13.2.0=hf226fd6_3 + - libpng=1.6.42=h091b4b1_0 + - libsqlite=3.45.1=h091b4b1_0 + - libxcb=1.15=hf346824_0 + - libxml2=2.12.5=h0d0cfa8_0 + - lrcalc=2.1=hebf3989_6 - ncurses=6.4=h463b476_2 - ninja=1.11.1=hffc8910_0 - - openjdk=21.0.1=hed44d8b_0 - - openssl=3.2.0=h0d3ecfb_1 + - openssl=3.2.1=h0d3ecfb_0 - pari-seadata=0.0.20090618=0 - - pcre2=10.40=hb34f9b4_0 - - pixman=0.42.2=h13dd4ca_0 + - pcre2=10.42=h26f9a81_0 - primesieve=11.0=hb7217d7_0 - qhull=2020.2=hc021e02_2 - symmetrica=3.0.1=hb7217d7_0 - tapi=1100.0.11=he4954df_0 - - tar=1.34=h7cb298e_1 - - threejs-sage=122=hd8ed1ab_2 - tk=8.6.13=h5083fa2_1 - zeromq=4.3.5=h965bd2d_0 - zlib=1.2.13=h53f4e23_5 - zstd=1.5.5=h4f39d0f_0 - - automake=1.16.5=pl5321hce30654_0 - - boost-cpp=1.81.0=hf96b251_0 - brotli-bin=1.1.0=hb547adb_1 - - bwidget=1.9.14=hce30654_1 - cddlib=1!0.94m=h6d7a090_0 - ecm=7.0.4=h47c7c1a_1002 - fonts-conda-ecosystem=1=0 - freetype=2.12.1=hadb7bae_2 - givaro=4.1.1=h0cdca34_3 - glpk=5.0=h6d7a090_0 - - jmol=14.32.10=hce30654_0 + - libboost=1.84.0=h8e0f962_1 - libedit=3.1.20191231=hc8eb9b7_2 - - libfido2=1.14.0=h8d15234_0 - - libgfortran=5.0.0=13_2_0_hd922786_1 - - libglib=2.78.1=hd9b11f9_0 + - libgfortran=5.0.0=13_2_0_hd922786_3 + - libglib=2.78.4=h1635a5e_0 - libhomfly=1.02r6=h27ca646_0 + - libllvm16=16.0.6=haab561b_3 - libnghttp2=1.58.0=ha4dd798_1 - libssh2=1.11.0=h7a5bd25_0 - - libtiff=4.5.0=h5dffbdd_2 - - libxml2=2.10.3=h67585b2_4 + - libtiff=4.6.0=ha8a6c65_2 - m4ri=20140914=h17b34a0_1005 - mpfr=4.2.1=h9546428_0 - ntl=11.4.3=hbb3f309_1 - primecount=7.6=hb6e4faa_0 - readline=8.2=h92ec313_1 - sigtool=0.1.3=h44b9a77_0 - - tachyon=0.99b6=hfb72b2a_1001 - - texinfo=7.0=pl5321h9ea1dce_0 - - tktable=2.10=hd996620_5 - brotli=1.1.0=hb547adb_1 - ecl=21.2.1=h8492d4d_2 - - fftw=3.3.10=nompi_h3046061_108 - fontconfig=2.14.2=h82840c6_0 - gap-core=4.12.2=he8f4e70_3 - gfan=0.6.2=hec08f5c_1003 - - krb5=1.20.1=h69eda48_0 - - lcms2=2.15=h481adae_0 + - krb5=1.21.2=h92f50d5_0 + - lcms2=2.16=ha0e7c42_0 + - ld64_osx-arm64=609=ha4bd21c_16 + - libboost-devel=1.84.0=hf450f58_1 - libbrial=1.2.12=ha7f5006_1 + - libclang-cpp16=16.0.6=default_he012953_5 - libflint=3.0.1=h28749a5_ntl_100 - - libllvm15=15.0.7=h62b9111_1 - libopenblas=0.3.25=openmp_h6c19121_0 - - libwebp=1.2.4=h999c80f_1 + - libwebp=1.3.2=hf30222e_1 + - llvm-tools=16.0.6=haab561b_3 - m4rie=20150908=h17b34a0_1001 - mpc=1.3.1=h91ba8db_0 - mpfi=1.5.4=hbde5f5b_1001 - - openjpeg=2.5.0=hbc2ba62_2 + - openjpeg=2.5.0=h4c1507b_3 - pari=2.15.4=haeeeed7_2_pthread - pkg-config=0.29.2=hab62308_1008 - ppl=1.2=h8b147cf_1006 - - python=3.9.18=hfa1ae8a_0_cpython + - python=3.9.18=hd7ebdb9_1_cpython - qd=2.3.22=hbec66e7_1004 - - sqlite=3.44.2=hf2abe2d_0 - - alabaster=0.7.13=pyhd8ed1ab_0 - - appdirs=1.4.4=pyh9f0ad1d_0 - - appnope=0.1.3=pyhd8ed1ab_0 - - attrs=23.1.0=pyh71513ae_1 + - alabaster=0.7.16=pyhd8ed1ab_0 + - appnope=0.1.4=pyhd8ed1ab_0 + - boost-cpp=1.84.0=hca5e981_1 - brial=1.2.12=pyh694c41f_1 - brotli-python=1.1.0=py39hb198ff7_1 - - cached_property=1.5.2=pyha770c72_1 - - cachetools=5.3.2=pyhd8ed1ab_0 - - cachy=0.3.0=pyhd8ed1ab_1 - - cairo=1.16.0=h73a0509_1014 - - certifi=2023.11.17=pyhd8ed1ab_0 - - chardet=5.2.0=py39h2804cbe_1 + - cctools_osx-arm64=973.0.1=h62378fb_16 + - certifi=2024.2.2=pyhd8ed1ab_0 - charset-normalizer=3.3.2=pyhd8ed1ab_0 - - click=8.1.7=unix_pyh707e725_0 + - clang-16=16.0.6=default_he012953_5 - colorama=0.4.6=pyhd8ed1ab_0 - - conway-polynomials=0.8=pyhd8ed1ab_0 - - crashtest=0.4.1=pyhd8ed1ab_0 + - conway-polynomials=0.9=pyhd8ed1ab_0 - cycler=0.12.1=pyhd8ed1ab_0 - cysignals=1.11.2=py39h65fc70a_3 - - cython=3.0.7=py39hf3050f2_0 - - debugpy=1.8.0=py39hb198ff7_1 + - cython=3.0.8=py39hf3050f2_0 + - debugpy=1.8.1=py39hf3050f2_0 - decorator=5.1.1=pyhd8ed1ab_0 - - defusedxml=0.7.1=pyhd8ed1ab_0 - - distlib=0.3.8=pyhd8ed1ab_0 - docutils=0.20.1=py39h2804cbe_3 - - eclib=20231211=h7f07de4_0 - - editables=0.3=pyhd8ed1ab_0 - - entrypoints=0.4=pyhd8ed1ab_0 - - exceptiongroup=1.2.0=pyhd8ed1ab_0 + - eclib=20231212=h7f07de4_0 + - exceptiongroup=1.2.0=pyhd8ed1ab_2 - execnet=2.0.2=pyhd8ed1ab_0 - executing=2.0.1=pyhd8ed1ab_0 - - filelock=3.13.1=pyhd8ed1ab_0 - - flit-core=3.9.0=pyhd8ed1ab_0 - fplll=5.4.5=hb7d509d_0 - gap-defaults=4.12.2=hce30654_3 - - gast=0.5.4=pyhd8ed1ab_0 - - gfortran_impl_osx-arm64=12.3.0=hbbb9e1e_1 - gmpy2=2.1.2=py39h0b4f9c6_1 - idna=3.6=pyhd8ed1ab_0 - imagesize=1.4.1=pyhd8ed1ab_0 - iniconfig=2.0.0=pyhd8ed1ab_0 - - ipython_genutils=0.2.0=py_1 - - json5=0.9.14=pyhd8ed1ab_0 - - jsonpointer=2.4=py39h2804cbe_3 - - jupyterlab_widgets=3.0.9=pyhd8ed1ab_0 + - jupyterlab_widgets=3.0.10=pyhd8ed1ab_0 - kiwisolver=1.4.5=py39hbd775c9_1 - lcalc=2.0.5=hc94e8e6_1 - - ld64_osx-arm64=609=hc4dc95b_15 + - ld64=609=h634c8be_16 - libblas=3.9.0=20_osxarm64_openblas - - libclang-cpp15=15.0.7=default_hd209bcb_4 - - libcurl=8.1.2=h912dcd9_0 - - libgd=2.3.3=h90fb8ed_4 - - llvm-tools=15.0.7=h62b9111_1 - - markupsafe=2.1.3=py39h0f82c59_1 + - libcurl=8.5.0=h2d989ff_0 + - libgd=2.3.3=hfdf3952_9 + - markupsafe=2.1.5=py39h17cfd9d_0 - maxima=5.45.0=h6032a66_2 - - mistune=3.0.2=pyhd8ed1ab_0 - - more-itertools=10.1.0=pyhd8ed1ab_0 - mpmath=1.3.0=pyhd8ed1ab_0 - - msgpack-python=1.0.7=py39he9de807_0 - munkres=1.1.4=pyh9f0ad1d_0 - - nest-asyncio=1.5.8=pyhd8ed1ab_0 + - nest-asyncio=1.6.0=pyhd8ed1ab_0 - networkx=3.2.1=pyhd8ed1ab_0 - openblas=0.3.25=openmp_h55c453e_0 - - openssh=9.3p1=h7126958_1 - packaging=23.2=pyhd8ed1ab_0 - - pandocfilters=1.5.0=pyhd8ed1ab_0 - parso=0.8.3=pyhd8ed1ab_0 - - pastel=0.2.1=pyhd8ed1ab_0 - - pathspec=0.12.1=pyhd8ed1ab_0 - pickleshare=0.7.5=py_1003 - - pillow=9.4.0=py39h8bd98a6_1 + - pillow=10.2.0=py39h755f0b7_0 - pkgconfig=1.5.5=pyhd8ed1ab_4 - - pkginfo=1.9.6=pyhd8ed1ab_0 - - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 - - platformdirs=4.1.0=pyhd8ed1ab_0 - - pluggy=1.3.0=pyhd8ed1ab_0 - - ply=3.11=py_1 - - prometheus_client=0.19.0=pyhd8ed1ab_0 - - psutil=5.9.7=py39h17cfd9d_0 + - platformdirs=4.2.0=pyhd8ed1ab_0 + - pluggy=1.4.0=pyhd8ed1ab_0 + - psutil=5.9.8=py39h17cfd9d_0 - ptyprocess=0.7.0=pyhd3deb0d_0 - pure_eval=0.2.2=pyhd8ed1ab_0 - - py=1.11.0=pyh6c4a22f_0 - - pybind11-global=2.11.1=py39hbd775c9_2 - - pycodestyle=2.11.1=pyhd8ed1ab_0 - - pycparser=2.21=pyhd8ed1ab_0 - pygments=2.17.2=pyhd8ed1ab_0 - - pylev=1.4.0=pyhd8ed1ab_0 - pyparsing=3.1.1=pyhd8ed1ab_0 - - pyrsistent=0.20.0=py39h17cfd9d_0 - pysocks=1.7.1=pyha2e5f31_6 - - pyspellchecker=0.7.2=pyhd8ed1ab_0 - - python-fastjsonschema=2.19.0=pyhd8ed1ab_0 - - python-json-logger=2.0.7=pyhd8ed1ab_0 - - python-lrcalc=2.1=py39h23fbdae_5 - - python-tzdata=2023.3=pyhd8ed1ab_0 - - pytz=2023.3.post1=pyhd8ed1ab_0 - - pyyaml=6.0.1=py39h0f82c59_1 + - pytz=2024.1=pyhd8ed1ab_0 - pyzmq=25.1.2=py39he1e2164_0 - - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.15.2=py39h8fec3ad_0 - - ruamel.yaml.clib=0.2.7=py39h0f82c59_2 - - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 - - sagetex=3.6.1=pyhd8ed1ab_0 - - setuptools=68.2.2=pyhd8ed1ab_0 - - simplegeneric=0.8.1=py_1 + - setuptools=69.1.0=pyhd8ed1ab_1 - singular=4.3.2.p8=hb460b52_1 - six=1.16.0=pyh6c4a22f_0 - - smmap=5.0.0=pyhd8ed1ab_0 - - sniffio=1.3.0=pyhd8ed1ab_0 - snowballstemmer=2.2.0=pyhd8ed1ab_0 - soupsieve=2.5=pyhd8ed1ab_1 - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_0 - sympow=2.023.6=hb0babe8_3 - tomli=2.0.1=pyhd8ed1ab_0 - - tomlkit=0.12.3=pyha770c72_0 - - toolz=0.12.0=pyhd8ed1ab_0 - - tornado=6.3.3=py39h0f82c59_1 - - traitlets=5.14.0=pyhd8ed1ab_0 - - trove-classifiers=2023.11.29=pyhd8ed1ab_0 - - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 + - tornado=6.4=py39h17cfd9d_0 + - traitlets=5.14.1=pyhd8ed1ab_0 - typing_extensions=4.9.0=pyha770c72_0 - - typing_utils=0.1.0=pyhd8ed1ab_0 - - tzlocal=5.2=py39h2804cbe_0 - unicodedata2=15.1.0=py39h0f82c59_0 - - uri-template=1.3.0=pyhd8ed1ab_0 - - wcwidth=0.2.12=pyhd8ed1ab_0 - - webcolors=1.13=pyhd8ed1ab_0 - - webencodings=0.5.1=pyhd8ed1ab_2 - - websocket-client=1.7.0=pyhd8ed1ab_0 + - wcwidth=0.2.13=pyhd8ed1ab_0 - wheel=0.42.0=pyhd8ed1ab_0 - - widgetsnbextension=4.0.9=pyhd8ed1ab_0 + - widgetsnbextension=4.0.10=pyhd8ed1ab_0 - zipp=3.17.0=pyhd8ed1ab_0 - - anyio=4.2.0=pyhd8ed1ab_0 - asttokens=2.4.1=pyhd8ed1ab_0 - - async-lru=2.0.4=pyhd8ed1ab_0 - babel=2.14.0=pyhd8ed1ab_0 - - beautifulsoup4=4.12.2=pyha770c72_0 - - beniget=0.4.1=pyhd8ed1ab_0 - - bleach=6.1.0=pyhd8ed1ab_0 - - cached-property=1.5.2=hd8ed1ab_1 - - cctools_osx-arm64=973.0.1=h2a25c60_15 - - cffi=1.16.0=py39he153c15_0 - - clang-15=15.0.7=default_hd209bcb_4 - - click-default-group=1.2.4=pyhd8ed1ab_0 - - clikit=0.6.2=pyhd8ed1ab_2 - - cmake=3.26.4=hc0af03a_0 - - comm=0.1.4=pyhd8ed1ab_0 - - cppy=1.2.1=pyhd8ed1ab_0 - - curl=8.1.2=h912dcd9_0 - - cypari2=2.1.3=py39h7462d2a_2 - - deprecation=2.1.0=pyh9f0ad1d_0 - - fonttools=4.47.0=py39h17cfd9d_0 - - gitdb=4.0.11=pyhd8ed1ab_0 - - harfbuzz=6.0.0=hddbc195_0 - - html5lib=1.1=pyh9f0ad1d_0 - - importlib-metadata=7.0.0=pyha770c72_0 + - beautifulsoup4=4.12.3=pyha770c72_0 + - cctools=973.0.1=h4faf515_16 + - clang=16.0.6=h30cc82d_5 + - comm=0.2.1=pyhd8ed1ab_0 + - coverage=7.4.2=py39h17cfd9d_0 + - cypari2=2.1.4=py39h070b2a8_2 + - fonttools=4.49.0=py39h17cfd9d_0 + - importlib-metadata=7.0.1=pyha770c72_0 - importlib_resources=6.1.1=pyhd8ed1ab_0 - - jaraco.classes=3.3.0=pyhd8ed1ab_0 - jedi=0.19.1=pyhd8ed1ab_0 - - jinja2=3.1.2=pyhd8ed1ab_1 - - jupyter_core=5.5.1=py39h2804cbe_0 - - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 - - ld64=609=h89fa09d_15 + - jinja2=3.1.3=pyhd8ed1ab_0 + - jupyter_core=5.7.1=py39h2804cbe_0 - libcblas=3.9.0=20_osxarm64_openblas - liblapack=3.9.0=20_osxarm64_openblas - matplotlib-inline=0.1.6=pyhd8ed1ab_0 - memory-allocator=0.1.3=py39h0f82c59_0 - - overrides=7.4.0=pyhd8ed1ab_0 - - pexpect=4.8.0=pyh1a96a4e_2 - - pip=23.3.2=pyhd8ed1ab_0 + - meson=1.3.2=pyhd8ed1ab_0 + - pexpect=4.9.0=pyhd8ed1ab_0 + - pip=24.0=pyhd8ed1ab_0 - pplpy=0.8.9=py39haf103f8_0 - primecountpy=0.1.0=py39hbd775c9_4 - prompt-toolkit=3.0.42=pyha770c72_0 - - pybind11=2.11.1=py39hbd775c9_2 - - pyobjc-core=10.1=py39hb167abd_0 - - pyproject-api=1.6.1=pyhd8ed1ab_0 - - pytest=7.4.3=pyhd8ed1ab_0 + - pyproject-metadata=0.7.1=pyhd8ed1ab_0 + - pytest=8.0.1=pyhd8ed1ab_1 - python-dateutil=2.8.2=pyhd8ed1ab_0 - - pytz-deprecation-shim=0.1.0.post0=py39h2804cbe_4 - - referencing=0.32.0=pyhd8ed1ab_0 - - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - - ruamel.yaml=0.18.5=py39h17cfd9d_0 - sympy=1.12=pypyh9d50eac_103 - - terminado=0.18.0=pyh31c8845_0 - - tinycss2=1.2.1=pyhd8ed1ab_0 - - typing-extensions=4.9.0=hd8ed1ab_0 - - urllib3=1.26.18=pyhd8ed1ab_0 - - virtualenv=20.25.0=pyhd8ed1ab_0 - - annotated-types=0.6.0=pyhd8ed1ab_0 - - argon2-cffi-bindings=21.2.0=py39h0f82c59_4 - - arpack=3.7.0=h58ebc17_2 - - arrow=1.3.0=pyhd8ed1ab_0 - - cattrs=23.2.3=pyhd8ed1ab_0 - - cctools=973.0.1=hd1ac623_15 - - clang=15.0.7=haab561b_4 - - dsdp=5.8=h9397a75_1203 + - urllib3=2.2.1=pyhd8ed1ab_0 + - arpack=3.8.0=nompi_ha3438d0_101 + - clangxx=16.0.6=default_h4cf2255_5 - fflas-ffpack=2.4.3=h11f2abc_2 - - fqdn=1.5.1=pyhd8ed1ab_0 - - git=2.42.0=pl5321h46e2b6d_0 - - gitpython=3.1.40=pyhd8ed1ab_0 - gsl=2.7=h6e638da_0 - - hatchling=1.21.0=pyhd8ed1ab_0 - iml=1.0.5=hd52f0d1_1003 - importlib-resources=6.1.1=pyhd8ed1ab_0 - - importlib_metadata=7.0.0=hd8ed1ab_0 - - jsonschema-specifications=2023.11.2=pyhd8ed1ab_0 - - jupyter_server_terminals=0.5.0=pyhd8ed1ab_0 + - importlib_metadata=7.0.1=hd8ed1ab_0 - liblapacke=3.9.0=20_osxarm64_openblas - - numpy=1.26.2=py39heee92a0_0 - - pango=1.50.14=h6c112b8_0 - - prompt_toolkit=3.0.42=hd8ed1ab_0 - - pydantic-core=2.14.5=py39h8fec3ad_0 - - pyobjc-framework-cocoa=10.1=py39hb167abd_0 + - meson-python=0.15.0=pyh0c530f3_0 + - numpy=1.26.4=py39h7aa2656_0 - pytest-xdist=3.5.0=pyhd8ed1ab_0 - requests=2.31.0=pyhd8ed1ab_0 - - setuptools-scm=8.0.4=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 - - suitesparse=5.10.1=h88be0ae_2 - - argon2-cffi=23.1.0=pyhd8ed1ab_0 - blas-devel=3.9.0=20_osxarm64_openblas - - cachecontrol=0.13.1=pyhd8ed1ab_0 - - clangxx=15.0.7=default_h5c94ee4_4 + - compiler-rt_osx-arm64=16.0.6=h3808999_2 - contourpy=1.2.0=py39he9de807_0 - - cvxopt=1.3.2=py39h76eeb2c_1 - - ensureconda=1.4.3=pyhd8ed1ab_0 - - fpylll=0.6.0=py39h947550b_1 + - fpylll=0.6.1=py39h2eadeda_0 - giac=1.9.0.21=h1c96721_1 - - igraph=0.9.10=hcec9b84_1 + - igraph=0.10.10=h48be1ad_0 - ipython=8.18.1=pyh707e725_3 - - isoduration=20.11.0=pyhd8ed1ab_0 - - jsonschema=4.20.0=pyhd8ed1ab_0 - jupyter_client=8.6.0=pyhd8ed1ab_0 - - keyring=24.3.0=py39h2804cbe_0 - linbox=1.6.3=h380be0f_8 - - lsprotocol=2023.0.0=pyhd8ed1ab_0 - - pydantic=2.5.2=pyhd8ed1ab_0 - scipy=1.11.4=py39h36c428d_0 - - send2trash=1.8.2=pyhd1c38e8_0 - - setuptools_scm=8.0.4=hd8ed1ab_0 - - tox=4.11.4=pyhd8ed1ab_0 - blas=2.120=openblas - - cachecontrol-with-filecache=0.13.1=pyhd8ed1ab_0 - - compiler-rt_osx-arm64=15.0.7=h3808999_2 - - ipykernel=6.26.0=pyh3cd1d5f_0 - - ipywidgets=8.1.1=pyhd8ed1ab_0 - - jsonschema-with-format-nongpl=4.20.0=pyhd8ed1ab_0 - - matplotlib-base=3.8.2=py39h1a09f3e_0 - - nbformat=5.9.2=pyhd8ed1ab_0 - - pygls=1.2.1=pyhd8ed1ab_0 - - rw=0.9=h3422bc3_0 - - compiler-rt=15.0.7=h3808999_2 - - conda-lock=2.5.1=pyhd8ed1ab_0 - - ipympl=0.9.3=pyhd8ed1ab_0 - - jupyter-jsmol=2022.1.0=pyhd8ed1ab_0 - - jupyter_events=0.9.0=pyhd8ed1ab_0 - - matplotlib=3.8.2=py39hdf13c20_0 - - nbclient=0.8.0=pyhd8ed1ab_0 - - clang_impl_osx-arm64=15.0.7=h77e971b_7 - - nbconvert-core=7.13.0=pyhd8ed1ab_0 - - clang_osx-arm64=15.0.7=h54d7cd3_7 - - jupyter_server=2.12.1=pyhd8ed1ab_0 - - nbconvert-pandoc=7.13.0=pyhd8ed1ab_0 - - c-compiler=1.6.0=hd291e01_0 - - clangxx_impl_osx-arm64=15.0.7=h768a7fd_7 - - gfortran_osx-arm64=12.3.0=h57527a5_1 - - jupyter-lsp=2.2.1=pyhd8ed1ab_0 - - jupyterlab_server=2.25.2=pyhd8ed1ab_0 - - nbconvert=7.13.0=pyhd8ed1ab_0 - - notebook-shim=0.2.3=pyhd8ed1ab_0 - - clangxx_osx-arm64=15.0.7=h54d7cd3_7 - - gfortran=12.3.0=h1ca8e4b_1 - - jupyterlab=4.0.9=pyhd8ed1ab_0 - - cxx-compiler=1.6.0=h1995070_0 - - fortran-compiler=1.6.0=h5a50232_0 - - notebook=7.0.6=pyhd8ed1ab_0 - - pythran=0.14.0=py39h819cc4c_1 - - r-base=4.1.3=h9c4d319_6 - - compilers=1.6.0=hce30654_0 - - rpy2=3.5.11=py39r41hf9b1952_0 - - esbonio=0.16.3=pyhd8ed1ab_0 - - jupyter_sphinx=0.1.4=py_0 + - compiler-rt=16.0.6=h3808999_2 + - ipykernel=6.29.2=pyh3cd1d5f_0 + - ipywidgets=8.1.2=pyhd8ed1ab_0 + - matplotlib-base=3.8.3=py39hbab7938_0 + - rw=0.9=h93a5062_1 + - clang_impl_osx-arm64=16.0.6=hc421ffc_9 + - clang_osx-arm64=16.0.6=h54d7cd3_9 + - c-compiler=1.6.0=h6aa9301_0 + - clangxx_impl_osx-arm64=16.0.6=hcd7bac0_9 + - clangxx_osx-arm64=16.0.6=h54d7cd3_9 + - cxx-compiler=1.6.0=h2ffa867_0 - sphinx-basic-ng=1.0.0b2=pyhd8ed1ab_1 - - furo=2023.9.10=pyhd8ed1ab_0 - - sphinx-copybutton=0.5.2=pyhd8ed1ab_0 - - sphinxcontrib-applehelp=1.0.7=pyhd8ed1ab_0 - - sphinxcontrib-devhelp=1.0.5=pyhd8ed1ab_0 - - sphinxcontrib-htmlhelp=2.0.4=pyhd8ed1ab_0 - - sphinxcontrib-qthelp=1.0.6=pyhd8ed1ab_0 + - furo=2024.1.29=pyhd8ed1ab_0 + - sphinx-inline-tabs=2023.4.21=pyhd8ed1ab_0 + - sphinxcontrib-applehelp=1.0.8=pyhd8ed1ab_0 + - sphinxcontrib-devhelp=1.0.6=pyhd8ed1ab_0 + - sphinxcontrib-htmlhelp=2.0.5=pyhd8ed1ab_0 + - sphinxcontrib-qthelp=1.0.7=pyhd8ed1ab_0 - sphinx=7.2.6=pyhd8ed1ab_0 - - sphinxcontrib-serializinghtml=1.1.9=pyhd8ed1ab_0 - - sphinxcontrib-websupport=1.2.6=pyhd8ed1ab_0 + - sphinxcontrib-serializinghtml=1.1.10=pyhd8ed1ab_0 diff --git a/src/environment-dev-3.9-macos.yml b/src/environment-dev-3.9-macos.yml index ac77cf8ce96..a2bc49e4a63 100644 --- a/src/environment-dev-3.9-macos.yml +++ b/src/environment-dev-3.9-macos.yml @@ -1,124 +1,87 @@ # Generated by conda-lock. # platform: osx-64 -# input_hash: 02de012815b6a6a4f1eca5e694350ba62ade15820e1fde8a68f04682cd2698c0 +# input_hash: e2b9d0aa382a3916469423b39da04515801270bfb3854af4de5cb43640ff935e channels: - conda-forge dependencies: - - _r-mutex=1.0.1=anacondar_1 - - bc=1.07.1=h0d85af4_0 - bzip2=1.0.8=h10d778d_5 - - c-ares=1.24.0=h10d778d_0 - - ca-certificates=2023.11.17=h8857fd0_0 + - c-ares=1.27.0=h10d778d_0 + - ca-certificates=2024.2.2=h8857fd0_0 - cliquer=1.22=hbcb3906_0 - font-ttf-dejavu-sans-mono=2.37=hab24e00_0 - font-ttf-inconsolata=3.000=h77eed37_0 - font-ttf-source-code-pro=2.038=h77eed37_0 - font-ttf-ubuntu=0.83=h77eed37_1 - - fribidi=1.0.10=hbcb3906_0 - - gh=2.40.1=h990441c_0 - giflib=5.2.1=hb7f2c08_3 - icu=73.2=hf5e326d_0 - - libatomic_ops=7.6.14=hb7f2c08_0 - - libboost-headers=1.84.0=h694c41f_0 + - libboost-headers=1.84.0=h694c41f_1 - libbrotlicommon=1.1.0=h0dc2134_1 - libcxx=16.0.6=hd57cbcb_0 - libdeflate=1.19=ha4e1b8e_0 - libev=4.33=h10d778d_2 - libexpat=2.5.0=hf0c8a7f_1 - libffi=3.4.2=h0d85af4_5 - - libgfortran-devel_osx-64=12.3.0=h0b6f5ec_1 - libiconv=1.17=hd75f5a5_2 - libjpeg-turbo=3.0.0=h0dc2134_1 - libsodium=1.0.18=hbcb3906_1 - - libtool=2.4.7=hf0c8a7f_0 - - libuv=1.46.0=h0c2f820_0 - libwebp-base=1.3.2=h0dc2134_0 - libzlib=1.2.13=h8a1eda9_5 - llvm-openmp=17.0.6=hb6ac08f_0 - - m4=1.4.18=haf1e3a3_1001 - - make=4.3=h22f3db7_1 - - mathjax=3.2.2=h694c41f_0 - - nauty=2.8.8=h10d778d_0 + - nauty=2.8.8=h10d778d_1 - palp=2.20=hbcb3906_0 - pari-elldata=0.0.20161017=0 - pari-galdata=0.0.20180411=0 - - pari-galpol=0.0.20180625=0 - pari-seadata-small=0.0.20090618=0 - - patch=2.7.6=hbcf498f_1002 - - perl=5.32.1=4_h0dc2134_perl5 + - perl=5.32.1=7_h10d778d_perl5 - planarity=3.0.0.5=hbcb3906_1002 - pthread-stubs=0.4=hc929b4f_1001 - python_abi=3.9=4_cp39 - - rhash=1.4.4=h0dc2134_0 - - sagemath-db-combinatorial-designs=20140630=1 - - sagemath-db-graphs=20210214=hd8ed1ab_0 - - sagemath-db-polytopes=20170220=1 - - three.js=122=hd8ed1ab_2 - - tzdata=2023c=h71feb2d_0 + - tzdata=2024a=h0c530f3_0 - xorg-libxau=1.0.11=h0dc2134_0 - xorg-libxdmcp=1.1.3=h35c211d_0 - xz=5.2.6=h775f41a_0 - - yaml=0.2.5=h0d85af4_2 - - autoconf=2.71=pl5321hed12c24_1 - bdw-gc=8.0.6=h940c156_0 - expat=2.5.0=hf0c8a7f_1 - fonts-conda-forge=1=0 - - gengetopt=2.23=he49afe7_0 - gettext=0.21.1=h8a4c099_0 - gf2x=1.3.0=hb2a7efb_2 - gmp=6.3.0=h93d8f39_0 - - graphite2=1.3.13=h2e338ed_1001 - - isl=0.25=hb486fe8_0 - lerc=4.0.0=hb486fe8_0 - libbraiding=1.2=hf0c8a7f_0 - libbrotlidec=1.1.0=h0dc2134_1 - libbrotlienc=1.1.0=h0dc2134_1 - - libcbor=0.10.2=hf0c8a7f_0 - - libgfortran5=13.2.0=h2873a65_1 - - libpng=1.6.39=ha978bb4_0 - - libsqlite=3.44.2=h92b6c6a_0 + - libgfortran5=13.2.0=h2873a65_3 + - libpng=1.6.42=h92b6c6a_0 + - libsqlite=3.45.1=h92b6c6a_0 - libxcb=1.15=hb7f2c08_0 - - libxml2=2.11.6=hc0ae0f7_0 - - lrcalc=2.1=hf0c8a7f_5 - - metis=5.1.1=h93d8f39_2 + - libxml2=2.12.5=hc0ae0f7_0 + - lrcalc=2.1=h73e2aa4_6 - ncurses=6.4=h93d8f39_2 - ninja=1.11.1=hb8565cd_0 - - openjdk=21.0.1=hf4d7fad_0 - - openssl=3.2.0=hd75f5a5_1 - - pandoc=3.1.3=h9d075a6_0 + - openssl=3.2.1=hd75f5a5_0 - pari-seadata=0.0.20090618=0 - - pcre2=10.40=h1c4e4bc_0 - - pixman=0.42.2=he965462_0 - pkg-config=0.29.2=ha3d46e9_1008 - primesieve=11.0=hf0c8a7f_0 - qhull=2020.2=h940c156_2 - symmetrica=3.0.1=hf0c8a7f_0 - tapi=1100.0.11=h9ce4665_0 - - tar=1.34=hcb2f6ea_1 - - threejs-sage=122=hd8ed1ab_2 - tk=8.6.13=h1abcd95_1 - zeromq=4.3.5=h93d8f39_0 - zlib=1.2.13=h8a1eda9_5 - zstd=1.5.5=h829000d_0 - - automake=1.16.5=pl5321h694c41f_0 - brotli-bin=1.1.0=h0dc2134_1 - - bwidget=1.9.14=h694c41f_1 - cddlib=1!0.94m=h0f52abe_0 - ecm=7.0.4=h343d7f2_1002 - fonts-conda-ecosystem=1=0 - freetype=2.12.1=h60636b9_2 - givaro=4.1.1=h0a799c6_3 - glpk=5.0=h3cb5acd_0 - - jmol=14.32.9=h694c41f_0 - - libboost=1.84.0=h5b2dd29_0 + - libboost=1.84.0=h4bb364b_1 - libedit=3.1.20191231=h0678c8f_2 - - libfido2=1.14.0=h3cbcf74_0 - - libgfortran=5.0.0=13_2_0_h97931a8_1 - - libglib=2.78.1=h6d9ecee_0 + - libgfortran=5.0.0=13_2_0_h97931a8_3 - libhomfly=1.02r6=hc929b4f_0 - - libhwloc=2.9.3=default_h24e0189_1009 - - libllvm15=15.0.7=he4b1e75_3 + - libllvm16=16.0.6=hbedff68_3 - libnghttp2=1.58.0=h64cf6d3_1 - libssh2=1.11.0=hd019ec5_0 - libtiff=4.6.0=h684deea_2 @@ -128,321 +91,171 @@ dependencies: - primecount=7.6=ha894c9a_0 - readline=8.2=h9e318b2_1 - sigtool=0.1.3=h88f4db0_0 - - tachyon=0.99b6=0 - - texinfo=7.0=pl5321hc47821c_0 - - tktable=2.10=ha166976_5 - brotli=1.1.0=h0dc2134_1 - ecl=21.2.1=hd029580_2 - - fftw=3.3.10=nompi_h4fa670e_108 - fontconfig=2.14.2=h5bb23bf_0 - gap-core=4.12.2=hc16eb5f_3 - gfan=0.6.2=hd793b56_1003 - krb5=1.21.2=hb884880_0 - lcms2=2.16=ha2f27b4_0 - - ld64_osx-64=609=h0fd476b_15 - - libboost-devel=1.84.0=h7728843_0 + - ld64_osx-64=609=ha20a434_16 + - libboost-devel=1.84.0=h7728843_1 - libbrial=1.2.12=h8d08345_1 - - libclang-cpp15=15.0.7=default_h6b1ee41_4 + - libclang-cpp16=16.0.6=default_h7151d67_5 - libflint=3.0.1=h5d15de0_ntl_100 - libopenblas=0.3.25=openmp_hfef2a42_0 - libwebp=1.3.2=h44782d1_1 - - llvm-tools=15.0.7=he4b1e75_3 + - llvm-tools=16.0.6=hbedff68_3 - m4rie=20150908=h3f75d11_1001 - mpc=1.3.1=h81bd1dd_0 - mpfi=1.5.4=h52b28e3_1001 - openjpeg=2.5.0=ha4da562_3 - pari=2.15.4=h93f793c_2_pthread - ppl=1.2=ha60d53e_1006 - - python=3.9.18=h07e1443_0_cpython + - python=3.9.18=h7a9c478_1_cpython - qd=2.3.22=h2beb688_1004 - - sqlite=3.44.2=h7461747_0 - - tbb=2021.11.0=he51d815_0 - - alabaster=0.7.13=pyhd8ed1ab_0 - - appdirs=1.4.4=pyh9f0ad1d_0 - - appnope=0.1.3=pyhd8ed1ab_0 - - attrs=23.1.0=pyh71513ae_1 - - boost-cpp=1.84.0=h07eb623_0 + - alabaster=0.7.16=pyhd8ed1ab_0 + - appnope=0.1.4=pyhd8ed1ab_0 + - boost-cpp=1.84.0=h07eb623_1 - brial=1.2.12=pyh694c41f_1 - brotli-python=1.1.0=py39h840bb9f_1 - - cached_property=1.5.2=pyha770c72_1 - - cachetools=5.3.2=pyhd8ed1ab_0 - - cachy=0.3.0=pyhd8ed1ab_1 - - cairo=1.18.0=h99e66fa_0 - - cctools_osx-64=973.0.1=habff3f6_15 - - certifi=2023.11.17=pyhd8ed1ab_0 - - chardet=5.2.0=py39h6e9494a_1 + - cctools_osx-64=973.0.1=ha1c5b94_16 + - certifi=2024.2.2=pyhd8ed1ab_0 - charset-normalizer=3.3.2=pyhd8ed1ab_0 - - clang-15=15.0.7=default_h6b1ee41_4 - - click=8.1.7=unix_pyh707e725_0 + - clang-16=16.0.6=default_h7151d67_5 - colorama=0.4.6=pyhd8ed1ab_0 - - conway-polynomials=0.8=pyhd8ed1ab_0 - - crashtest=0.4.1=pyhd8ed1ab_0 + - conway-polynomials=0.9=pyhd8ed1ab_0 - cycler=0.12.1=pyhd8ed1ab_0 - cysignals=1.11.2=py39hf6ae30e_3 - - cython=3.0.7=py39hd253f6c_0 - - debugpy=1.8.0=py39h840bb9f_1 + - cython=3.0.8=py39hd253f6c_0 + - debugpy=1.8.1=py39hd253f6c_0 - decorator=5.1.1=pyhd8ed1ab_0 - - defusedxml=0.7.1=pyhd8ed1ab_0 - - distlib=0.3.8=pyhd8ed1ab_0 - docutils=0.20.1=py39h6e9494a_3 - - eclib=20231211=h02435c3_0 - - editables=0.3=pyhd8ed1ab_0 - - entrypoints=0.4=pyhd8ed1ab_0 - - exceptiongroup=1.2.0=pyhd8ed1ab_0 + - eclib=20231212=h02435c3_0 + - exceptiongroup=1.2.0=pyhd8ed1ab_2 - execnet=2.0.2=pyhd8ed1ab_0 - executing=2.0.1=pyhd8ed1ab_0 - - filelock=3.13.1=pyhd8ed1ab_0 - - flit-core=3.9.0=pyhd8ed1ab_0 - fplll=5.4.5=hb7981ad_0 - gap-defaults=4.12.2=h694c41f_3 - - gast=0.5.4=pyhd8ed1ab_0 - - gfortran_impl_osx-64=12.3.0=h54fd467_1 - gmpy2=2.1.2=py39h2da61ea_1 - idna=3.6=pyhd8ed1ab_0 - imagesize=1.4.1=pyhd8ed1ab_0 - iniconfig=2.0.0=pyhd8ed1ab_0 - - ipython_genutils=0.2.0=py_1 - - json5=0.9.14=pyhd8ed1ab_0 - - jsonpointer=2.4=py39h6e9494a_3 - - jupyterlab_widgets=3.0.9=pyhd8ed1ab_0 + - jupyterlab_widgets=3.0.10=pyhd8ed1ab_0 - kiwisolver=1.4.5=py39h8ee36c8_1 - lcalc=2.0.5=h3a941db_1 - - ld64=609=ha91a046_15 + - ld64=609=ha02d983_16 - libblas=3.9.0=20_osx64_openblas - libcurl=8.5.0=h726d00d_0 - libgd=2.3.3=h0dceb68_9 - - markupsafe=2.1.3=py39hdc70f33_1 + - markupsafe=2.1.5=py39ha09f3b3_0 - maxima=5.47.0=h2b27fa8_1 - - mistune=3.0.2=pyhd8ed1ab_0 - - more-itertools=10.1.0=pyhd8ed1ab_0 - mpmath=1.3.0=pyhd8ed1ab_0 - - msgpack-python=1.0.7=py39h6be1789_0 - munkres=1.1.4=pyh9f0ad1d_0 - - nest-asyncio=1.5.8=pyhd8ed1ab_0 + - nest-asyncio=1.6.0=pyhd8ed1ab_0 - networkx=3.2.1=pyhd8ed1ab_0 - openblas=0.3.25=openmp_h6794695_0 - - openssh=9.3p1=h3df487d_2 - packaging=23.2=pyhd8ed1ab_0 - - pandocfilters=1.5.0=pyhd8ed1ab_0 - parso=0.8.3=pyhd8ed1ab_0 - - pastel=0.2.1=pyhd8ed1ab_0 - - pathspec=0.12.1=pyhd8ed1ab_0 - pickleshare=0.7.5=py_1003 - - pillow=10.1.0=py39hdd30358_0 + - pillow=10.2.0=py39hdd30358_0 - pkgconfig=1.5.5=pyhd8ed1ab_4 - - pkginfo=1.9.6=pyhd8ed1ab_0 - - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 - - platformdirs=4.1.0=pyhd8ed1ab_0 - - pluggy=1.3.0=pyhd8ed1ab_0 - - ply=3.11=py_1 - - prometheus_client=0.19.0=pyhd8ed1ab_0 - - psutil=5.9.7=py39ha09f3b3_0 + - platformdirs=4.2.0=pyhd8ed1ab_0 + - pluggy=1.4.0=pyhd8ed1ab_0 + - psutil=5.9.8=py39ha09f3b3_0 - ptyprocess=0.7.0=pyhd3deb0d_0 - pure_eval=0.2.2=pyhd8ed1ab_0 - - py=1.11.0=pyh6c4a22f_0 - - pybind11-global=2.11.1=py39h8ee36c8_2 - - pycodestyle=2.11.1=pyhd8ed1ab_0 - - pycparser=2.21=pyhd8ed1ab_0 - pygments=2.17.2=pyhd8ed1ab_0 - - pylev=1.4.0=pyhd8ed1ab_0 - pyparsing=3.1.1=pyhd8ed1ab_0 - - pyrsistent=0.20.0=py39ha09f3b3_0 - pysocks=1.7.1=pyha2e5f31_6 - - pyspellchecker=0.7.2=pyhd8ed1ab_0 - - python-fastjsonschema=2.19.0=pyhd8ed1ab_0 - - python-json-logger=2.0.7=pyhd8ed1ab_0 - - python-lrcalc=2.1=py39h7a8716b_5 - - python-tzdata=2023.3=pyhd8ed1ab_0 - - pytz=2023.3.post1=pyhd8ed1ab_0 - - pyyaml=6.0.1=py39hdc70f33_1 + - pytz=2024.1=pyhd8ed1ab_0 - pyzmq=25.1.2=py39hcb7a90d_0 - - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.15.2=py39h3f9c672_0 - - ruamel.yaml.clib=0.2.7=py39hdc70f33_2 - - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 - - sagetex=3.6.1=pyhd8ed1ab_0 - - setuptools=68.2.2=pyhd8ed1ab_0 - - simplegeneric=0.8.1=py_1 + - setuptools=69.1.0=pyhd8ed1ab_1 - singular=4.3.2.p8=h0d51a9f_1 - six=1.16.0=pyh6c4a22f_0 - - smmap=5.0.0=pyhd8ed1ab_0 - - sniffio=1.3.0=pyhd8ed1ab_0 - snowballstemmer=2.2.0=pyhd8ed1ab_0 - soupsieve=2.5=pyhd8ed1ab_1 - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_0 - sympow=2.023.6=h115ba6a_3 - tomli=2.0.1=pyhd8ed1ab_0 - - tomlkit=0.12.3=pyha770c72_0 - - toolz=0.12.0=pyhd8ed1ab_0 - - tornado=6.3.3=py39hdc70f33_1 - - traitlets=5.14.0=pyhd8ed1ab_0 - - trove-classifiers=2023.11.29=pyhd8ed1ab_0 - - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 + - tornado=6.4=py39ha09f3b3_0 + - traitlets=5.14.1=pyhd8ed1ab_0 - typing_extensions=4.9.0=pyha770c72_0 - - typing_utils=0.1.0=pyhd8ed1ab_0 - - tzlocal=5.2=py39h6e9494a_0 - unicodedata2=15.1.0=py39hdc70f33_0 - - uri-template=1.3.0=pyhd8ed1ab_0 - - wcwidth=0.2.12=pyhd8ed1ab_0 - - webcolors=1.13=pyhd8ed1ab_0 - - webencodings=0.5.1=pyhd8ed1ab_2 - - websocket-client=1.7.0=pyhd8ed1ab_0 + - wcwidth=0.2.13=pyhd8ed1ab_0 - wheel=0.42.0=pyhd8ed1ab_0 - - widgetsnbextension=4.0.9=pyhd8ed1ab_0 + - widgetsnbextension=4.0.10=pyhd8ed1ab_0 - zipp=3.17.0=pyhd8ed1ab_0 - - anyio=4.2.0=pyhd8ed1ab_0 - asttokens=2.4.1=pyhd8ed1ab_0 - - async-lru=2.0.4=pyhd8ed1ab_0 - babel=2.14.0=pyhd8ed1ab_0 - - beautifulsoup4=4.12.2=pyha770c72_0 - - beniget=0.4.1=pyhd8ed1ab_0 - - bleach=6.1.0=pyhd8ed1ab_0 - - cached-property=1.5.2=hd8ed1ab_1 - - cctools=973.0.1=hd9ad811_15 - - cffi=1.16.0=py39h18ef598_0 - - clang=15.0.7=hac416ee_4 - - click-default-group=1.2.4=pyhd8ed1ab_0 - - clikit=0.6.2=pyhd8ed1ab_2 - - cmake=3.28.1=h7c85d92_0 - - comm=0.1.4=pyhd8ed1ab_0 - - cppy=1.2.1=pyhd8ed1ab_0 - - curl=8.5.0=h726d00d_0 - - cypari2=2.1.3=py39he2cb11e_2 - - deprecation=2.1.0=pyh9f0ad1d_0 - - fonttools=4.47.0=py39ha09f3b3_0 - - gitdb=4.0.11=pyhd8ed1ab_0 - - harfbuzz=8.3.0=hf45c392_0 - - html5lib=1.1=pyh9f0ad1d_0 - - importlib-metadata=7.0.0=pyha770c72_0 + - beautifulsoup4=4.12.3=pyha770c72_0 + - cctools=973.0.1=h40f6528_16 + - clang=16.0.6=hdae98eb_5 + - comm=0.2.1=pyhd8ed1ab_0 + - coverage=7.4.2=py39ha09f3b3_0 + - cypari2=2.1.4=py39hc0d7317_2 + - fonttools=4.49.0=py39ha09f3b3_0 + - importlib-metadata=7.0.1=pyha770c72_0 - importlib_resources=6.1.1=pyhd8ed1ab_0 - - jaraco.classes=3.3.0=pyhd8ed1ab_0 - jedi=0.19.1=pyhd8ed1ab_0 - - jinja2=3.1.2=pyhd8ed1ab_1 - - jupyter_core=5.5.1=py39h6e9494a_0 - - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 + - jinja2=3.1.3=pyhd8ed1ab_0 + - jupyter_core=5.7.1=py39h6e9494a_0 - libcblas=3.9.0=20_osx64_openblas - liblapack=3.9.0=20_osx64_openblas - matplotlib-inline=0.1.6=pyhd8ed1ab_0 - memory-allocator=0.1.3=py39hdc70f33_0 - - overrides=7.4.0=pyhd8ed1ab_0 - - pexpect=4.8.0=pyh1a96a4e_2 - - pip=23.3.2=pyhd8ed1ab_0 + - meson=1.3.2=pyhd8ed1ab_0 + - pexpect=4.9.0=pyhd8ed1ab_0 + - pip=24.0=pyhd8ed1ab_0 - pplpy=0.8.9=py39h248ee18_0 - primecountpy=0.1.0=py39h8ee36c8_4 - prompt-toolkit=3.0.42=pyha770c72_0 - - pybind11=2.11.1=py39h8ee36c8_2 - - pyobjc-core=10.1=py39h8602b6b_0 - - pyproject-api=1.6.1=pyhd8ed1ab_0 - - pytest=7.4.3=pyhd8ed1ab_0 + - pyproject-metadata=0.7.1=pyhd8ed1ab_0 + - pytest=8.0.1=pyhd8ed1ab_1 - python-dateutil=2.8.2=pyhd8ed1ab_0 - - pytz-deprecation-shim=0.1.0.post0=py39h6e9494a_4 - - referencing=0.32.0=pyhd8ed1ab_0 - - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - - ruamel.yaml=0.18.5=py39ha09f3b3_0 - sympy=1.12=pypyh9d50eac_103 - - terminado=0.18.0=pyh31c8845_0 - - tinycss2=1.2.1=pyhd8ed1ab_0 - - typing-extensions=4.9.0=hd8ed1ab_0 - - urllib3=1.26.18=pyhd8ed1ab_0 - - virtualenv=20.25.0=pyhd8ed1ab_0 - - annotated-types=0.6.0=pyhd8ed1ab_0 - - argon2-cffi-bindings=21.2.0=py39hdc70f33_4 + - urllib3=2.2.1=pyhd8ed1ab_0 - arpack=3.8.0=nompi_hb44a6d1_101 - - arrow=1.3.0=pyhd8ed1ab_0 - - cattrs=23.2.3=pyhd8ed1ab_0 - - clangxx=15.0.7=default_h6b1ee41_4 - - dsdp=5.8=h6e329d1_1203 + - clangxx=16.0.6=default_h7151d67_5 - fflas-ffpack=2.4.3=h026fd7e_2 - - fqdn=1.5.1=pyhd8ed1ab_0 - - git=2.42.0=pl5321hbb4c4ee_0 - - gitpython=3.1.40=pyhd8ed1ab_0 - gsl=2.7=h93259b0_0 - - hatchling=1.21.0=pyhd8ed1ab_0 - iml=1.0.5=h64b42ca_1003 - importlib-resources=6.1.1=pyhd8ed1ab_0 - - importlib_metadata=7.0.0=hd8ed1ab_0 - - jsonschema-specifications=2023.11.2=pyhd8ed1ab_0 - - jupyter_server_terminals=0.5.0=pyhd8ed1ab_0 + - importlib_metadata=7.0.1=hd8ed1ab_0 - liblapacke=3.9.0=20_osx64_openblas - - numpy=1.26.2=py39h14c6d2e_0 - - pango=1.50.14=h19c1c8a_2 - - prompt_toolkit=3.0.42=hd8ed1ab_0 - - pydantic-core=2.14.5=py39h3f9c672_0 - - pyobjc-framework-cocoa=10.1=py39h8602b6b_0 + - meson-python=0.15.0=pyh0c530f3_0 + - numpy=1.26.4=py39h28c39a1_0 - pytest-xdist=3.5.0=pyhd8ed1ab_0 - requests=2.31.0=pyhd8ed1ab_0 - - setuptools-scm=8.0.4=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 - - suitesparse=5.10.1=h0a40b7c_2 - - argon2-cffi=23.1.0=pyhd8ed1ab_0 - blas-devel=3.9.0=20_osx64_openblas - - cachecontrol=0.13.1=pyhd8ed1ab_0 - - compiler-rt_osx-64=15.0.7=ha38d28d_2 + - compiler-rt_osx-64=16.0.6=ha38d28d_2 - contourpy=1.2.0=py39h6be1789_0 - - cvxopt=1.3.2=py39h2a3e123_1 - - ensureconda=1.4.3=pyhd8ed1ab_0 - - fpylll=0.6.0=py39hec15948_1 + - fpylll=0.6.1=py39h3b3ffec_0 - giac=1.9.0.21=h92f3f65_1 - - igraph=0.10.8=h29df365_0 + - igraph=0.10.10=h6b221b4_0 - ipython=8.18.1=pyh707e725_3 - - isoduration=20.11.0=pyhd8ed1ab_0 - - jsonschema=4.20.0=pyhd8ed1ab_0 - jupyter_client=8.6.0=pyhd8ed1ab_0 - - keyring=24.3.0=py39h6e9494a_0 - linbox=1.6.3=hfb9b24e_8 - - lsprotocol=2023.0.0=pyhd8ed1ab_0 - - pydantic=2.5.2=pyhd8ed1ab_0 - scipy=1.11.4=py39ha321857_0 - - send2trash=1.8.2=pyhd1c38e8_0 - - setuptools_scm=8.0.4=hd8ed1ab_0 - - tox=4.11.4=pyhd8ed1ab_0 - blas=2.120=openblas - - cachecontrol-with-filecache=0.13.1=pyhd8ed1ab_0 - - compiler-rt=15.0.7=ha38d28d_2 - - ipykernel=6.26.0=pyh3cd1d5f_0 - - ipywidgets=8.1.1=pyhd8ed1ab_0 - - jsonschema-with-format-nongpl=4.20.0=pyhd8ed1ab_0 - - matplotlib-base=3.8.2=py39h7070ae8_0 - - nbformat=5.9.2=pyhd8ed1ab_0 - - pygls=1.2.1=pyhd8ed1ab_0 + - compiler-rt=16.0.6=ha38d28d_2 + - ipykernel=6.29.2=pyh3cd1d5f_0 + - ipywidgets=8.1.2=pyhd8ed1ab_0 + - matplotlib-base=3.8.3=py39h7070ae8_0 - rw=0.9=h10d778d_1 - - clang_impl_osx-64=15.0.7=h03d6864_7 - - conda-lock=2.5.1=pyhd8ed1ab_0 - - ipympl=0.9.3=pyhd8ed1ab_0 - - jupyter-jsmol=2022.1.0=pyhd8ed1ab_0 - - jupyter_events=0.9.0=pyhd8ed1ab_0 - - matplotlib=3.8.2=py39h6e9494a_0 - - nbclient=0.8.0=pyhd8ed1ab_0 - - clang_osx-64=15.0.7=hb91bd55_7 - - nbconvert-core=7.13.0=pyhd8ed1ab_0 - - c-compiler=1.6.0=h63c33a9_0 - - clangxx_impl_osx-64=15.0.7=h2133e9c_7 - - gfortran_osx-64=12.3.0=h18f7dce_1 - - jupyter_server=2.12.1=pyhd8ed1ab_0 - - nbconvert-pandoc=7.13.0=pyhd8ed1ab_0 - - clangxx_osx-64=15.0.7=hb91bd55_7 - - gfortran=12.3.0=h2c809b3_1 - - jupyter-lsp=2.2.1=pyhd8ed1ab_0 - - jupyterlab_server=2.25.2=pyhd8ed1ab_0 - - nbconvert=7.13.0=pyhd8ed1ab_0 - - notebook-shim=0.2.3=pyhd8ed1ab_0 - - cxx-compiler=1.6.0=h1c7c39f_0 - - fortran-compiler=1.6.0=h932d759_0 - - jupyterlab=4.0.9=pyhd8ed1ab_0 - - pythran=0.14.0=py39h4aa56a1_1 - - r-base=4.3.1=h0ff45fa_6 - - compilers=1.6.0=h694c41f_0 - - notebook=7.0.6=pyhd8ed1ab_0 - - rpy2=3.5.11=py39r43hd01001f_3 - - esbonio=0.16.3=pyhd8ed1ab_0 - - jupyter_sphinx=0.4.0=py39h6e9494a_1 + - clang_impl_osx-64=16.0.6=h8787910_9 + - clang_osx-64=16.0.6=hb91bd55_9 + - c-compiler=1.6.0=h282daa2_0 + - clangxx_impl_osx-64=16.0.6=h6d92fbe_9 + - clangxx_osx-64=16.0.6=hb91bd55_9 + - cxx-compiler=1.6.0=h7728843_0 - sphinx-basic-ng=1.0.0b2=pyhd8ed1ab_1 - - furo=2023.9.10=pyhd8ed1ab_0 - - sphinx-copybutton=0.5.2=pyhd8ed1ab_0 - - sphinxcontrib-applehelp=1.0.7=pyhd8ed1ab_0 - - sphinxcontrib-devhelp=1.0.5=pyhd8ed1ab_0 - - sphinxcontrib-htmlhelp=2.0.4=pyhd8ed1ab_0 - - sphinxcontrib-qthelp=1.0.6=pyhd8ed1ab_0 + - furo=2024.1.29=pyhd8ed1ab_0 + - sphinx-inline-tabs=2023.4.21=pyhd8ed1ab_0 + - sphinxcontrib-applehelp=1.0.8=pyhd8ed1ab_0 + - sphinxcontrib-devhelp=1.0.6=pyhd8ed1ab_0 + - sphinxcontrib-htmlhelp=2.0.5=pyhd8ed1ab_0 + - sphinxcontrib-qthelp=1.0.7=pyhd8ed1ab_0 - sphinx=7.2.6=pyhd8ed1ab_0 - - sphinxcontrib-serializinghtml=1.1.9=pyhd8ed1ab_0 - - sphinxcontrib-websupport=1.2.6=pyhd8ed1ab_0 + - sphinxcontrib-serializinghtml=1.1.10=pyhd8ed1ab_0 From e7400778a7347d84eb645bff8084f96f309608e9 Mon Sep 17 00:00:00 2001 From: Tobias Diez Date: Sat, 24 Feb 2024 07:18:05 +0000 Subject: [PATCH 3/5] Add lrcalc and sphinx --- src/environment-3.10-linux-aarch64.yml | 24 ++++++++++++++-------- src/environment-3.10-linux.yml | 24 ++++++++++++++-------- src/environment-3.10-macos-arm64.yml | 24 ++++++++++++++-------- src/environment-3.10-macos.yml | 24 ++++++++++++++-------- src/environment-3.11-linux-aarch64.yml | 24 ++++++++++++++-------- src/environment-3.11-linux.yml | 24 ++++++++++++++-------- src/environment-3.11-macos-arm64.yml | 24 ++++++++++++++-------- src/environment-3.11-macos.yml | 24 ++++++++++++++-------- src/environment-3.9-linux-aarch64.yml | 22 +++++++++++++------- src/environment-3.9-linux.yml | 22 +++++++++++++------- src/environment-3.9-macos-arm64.yml | 22 +++++++++++++------- src/environment-3.9-macos.yml | 22 +++++++++++++------- src/environment-dev-3.10-linux-aarch64.yml | 12 ++++------- src/environment-dev-3.10-linux.yml | 12 ++++------- src/environment-dev-3.10-macos-arm64.yml | 12 ++++------- src/environment-dev-3.10-macos.yml | 12 ++++------- src/environment-dev-3.11-linux-aarch64.yml | 12 ++++------- src/environment-dev-3.11-linux.yml | 12 ++++------- src/environment-dev-3.11-macos-arm64.yml | 10 +++------ src/environment-dev-3.11-macos.yml | 12 ++++------- src/environment-dev-3.9-linux-aarch64.yml | 10 +++------ src/environment-dev-3.9-linux.yml | 10 +++------ src/environment-dev-3.9-macos-arm64.yml | 10 +++------ src/environment-dev-3.9-macos.yml | 10 +++------ 24 files changed, 231 insertions(+), 183 deletions(-) diff --git a/src/environment-3.10-linux-aarch64.yml b/src/environment-3.10-linux-aarch64.yml index 5a19b5a8dcf..1d9e7e8dfd0 100644 --- a/src/environment-3.10-linux-aarch64.yml +++ b/src/environment-3.10-linux-aarch64.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: linux-aarch64 -# input_hash: 9d1968aee9592374b5f7e334fe253b6024c7e8d42652a4a15104328d08b83d58 +# input_hash: bc69a0d25d50f9b6efe607eddf252e8f39dc469e76c675c0d8c8bbdcfc3e3fe3 channels: - conda-forge @@ -61,7 +61,6 @@ dependencies: - lrcalc=2.1=h2f0025b_6 - nauty=2.8.8=h31becfc_1 - ncurses=6.4=h0425590_2 - - ninja=1.11.1=hdd96247_0 - openssl=3.2.1=h31becfc_0 - palp=2.20=hb9de7d4_0 - pkg-config=0.29.2=hb9de7d4_1008 @@ -120,6 +119,7 @@ dependencies: - ppl=1.2=h984aac9_1006 - python=3.10.13=hbbe8eec_1_cpython - qd=2.3.22=h05efe27_1004 + - alabaster=0.7.16=pyhd8ed1ab_0 - brotli=1.1.0=h31becfc_1 - brotli-python=1.1.0=py310hbb3657e_1 - c-compiler=1.6.0=h31becfc_0 @@ -132,6 +132,7 @@ dependencies: - cython=3.0.8=py310hbb3657e_0 - debugpy=1.8.1=py310hbb3657e_0 - decorator=5.1.1=pyhd8ed1ab_0 + - docutils=0.20.1=py310hbbe02a8_3 - eclib=20231212=he26bab5_0 - exceptiongroup=1.2.0=pyhd8ed1ab_2 - executing=2.0.1=pyhd8ed1ab_0 @@ -142,6 +143,7 @@ dependencies: - gxx=12.3.0=hc1b51f9_2 - gxx_linux-aarch64=12.3.0=h21accf6_2 - idna=3.6=pyhd8ed1ab_0 + - imagesize=1.4.1=pyhd8ed1ab_0 - jupyterlab_widgets=3.0.10=pyhd8ed1ab_0 - kiwisolver=1.4.5=py310he290b8a_1 - lcalc=2.0.5=h3264cc0_1 @@ -171,12 +173,14 @@ dependencies: - pygments=2.17.2=pyhd8ed1ab_0 - pyparsing=3.1.1=pyhd8ed1ab_0 - pysocks=1.7.1=pyha2e5f31_6 + - pytz=2024.1=pyhd8ed1ab_0 - pyzmq=25.1.2=py310h014ca53_0 - - setuptools=69.1.0=pyhd8ed1ab_1 + - setuptools=69.1.1=pyhd8ed1ab_0 - singular=4.3.2.p8=hbe76a8a_1 - six=1.16.0=pyh6c4a22f_0 + - snowballstemmer=2.2.0=pyhd8ed1ab_0 + - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_0 - sympow=2.023.6=h157afb5_3 - - tomli=2.0.1=pyhd8ed1ab_0 - tornado=6.4=py310h7c1f4a2_0 - traitlets=5.14.1=pyhd8ed1ab_0 - typing_extensions=4.9.0=pyha770c72_0 @@ -186,6 +190,7 @@ dependencies: - widgetsnbextension=4.0.10=pyhd8ed1ab_0 - zipp=3.17.0=pyhd8ed1ab_0 - asttokens=2.4.1=pyhd8ed1ab_0 + - babel=2.14.0=pyhd8ed1ab_0 - boost-cpp=1.84.0=ha990451_1 - brial=1.2.12=pyh694c41f_1 - comm=0.2.1=pyhd8ed1ab_0 @@ -202,14 +207,12 @@ dependencies: - liblapack=3.9.0=20_linuxaarch64_openblas - matplotlib-inline=0.1.6=pyhd8ed1ab_0 - memory-allocator=0.1.3=py310hb299538_0 - - meson=1.3.2=pyhd8ed1ab_0 - pexpect=4.9.0=pyhd8ed1ab_0 - pillow=10.2.0=py310h0ae3e2b_0 - pip=24.0=pyhd8ed1ab_0 - pplpy=0.8.9=py310hd5c817c_0 - primecountpy=0.1.0=py310h586407a_4 - prompt-toolkit=3.0.42=pyha770c72_0 - - pyproject-metadata=0.7.1=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - sympy=1.12=pypyh9d50eac_103 - urllib3=2.2.1=pyhd8ed1ab_0 @@ -219,7 +222,6 @@ dependencies: - iml=1.0.5=h9076c59_1003 - importlib_metadata=7.0.1=hd8ed1ab_0 - liblapacke=3.9.0=20_linuxaarch64_openblas - - meson-python=0.15.0=pyh0c530f3_0 - numpy=1.26.4=py310hcbab775_0 - requests=2.31.0=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 @@ -228,7 +230,7 @@ dependencies: - fpylll=0.6.1=py310hfdbf2a6_0 - giac=1.9.0.21=h04922a4_1 - igraph=0.10.10=hcfae7ab_0 - - ipython=8.22.0=pyh707e725_0 + - ipython=8.22.1=pyh707e725_0 - jupyter_client=8.6.0=pyhd8ed1ab_0 - linbox=1.6.3=h681a5ee_8 - scipy=1.11.3=py310hcbab775_1 @@ -237,3 +239,9 @@ dependencies: - ipywidgets=8.1.2=pyhd8ed1ab_0 - matplotlib-base=3.8.3=py310h0a7f329_0 - rw=0.9=h31becfc_1 + - sphinxcontrib-applehelp=1.0.8=pyhd8ed1ab_0 + - sphinxcontrib-devhelp=1.0.6=pyhd8ed1ab_0 + - sphinxcontrib-htmlhelp=2.0.5=pyhd8ed1ab_0 + - sphinxcontrib-qthelp=1.0.7=pyhd8ed1ab_0 + - sphinx=7.2.6=pyhd8ed1ab_0 + - sphinxcontrib-serializinghtml=1.1.10=pyhd8ed1ab_0 diff --git a/src/environment-3.10-linux.yml b/src/environment-3.10-linux.yml index 40d0b881b9b..9df4358b99f 100644 --- a/src/environment-3.10-linux.yml +++ b/src/environment-3.10-linux.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: 1bed96a5e1bf90765a7ae203b6c4edbeaa6f5671cda9b89097343978572846a1 +# input_hash: 44fd37fafeb88550e13fac041b87497eda241bb47bcd8e4460dcf7eb8f5e18a8 channels: - conda-forge @@ -61,7 +61,6 @@ dependencies: - lrcalc=2.1=h59595ed_6 - nauty=2.8.8=hd590300_1 - ncurses=6.4=h59595ed_2 - - ninja=1.11.1=h924138e_0 - openssl=3.2.1=hd590300_0 - palp=2.20=h36c2ea0_0 - pkg-config=0.29.2=h36c2ea0_1008 @@ -120,6 +119,7 @@ dependencies: - ppl=1.2=h6ec01c2_1006 - python=3.10.13=hd12c33a_1_cpython - qd=2.3.22=h2cc385e_1004 + - alabaster=0.7.16=pyhd8ed1ab_0 - brotli=1.1.0=hd590300_1 - brotli-python=1.1.0=py310hc6cd4ac_1 - c-compiler=1.6.0=hd590300_0 @@ -132,6 +132,7 @@ dependencies: - cython=3.0.8=py310hc6cd4ac_0 - debugpy=1.8.1=py310hc6cd4ac_0 - decorator=5.1.1=pyhd8ed1ab_0 + - docutils=0.20.1=py310hff52083_3 - eclib=20231212=h96f522a_0 - exceptiongroup=1.2.0=pyhd8ed1ab_2 - executing=2.0.1=pyhd8ed1ab_0 @@ -142,6 +143,7 @@ dependencies: - gxx=12.3.0=h8d2909c_2 - gxx_linux-64=12.3.0=h8a814eb_2 - idna=3.6=pyhd8ed1ab_0 + - imagesize=1.4.1=pyhd8ed1ab_0 - jupyterlab_widgets=3.0.10=pyhd8ed1ab_0 - kiwisolver=1.4.5=py310hd41b1e2_1 - lcalc=2.0.5=h6a8a7c6_1 @@ -171,12 +173,14 @@ dependencies: - pygments=2.17.2=pyhd8ed1ab_0 - pyparsing=3.1.1=pyhd8ed1ab_0 - pysocks=1.7.1=pyha2e5f31_6 + - pytz=2024.1=pyhd8ed1ab_0 - pyzmq=25.1.2=py310h795f18f_0 - - setuptools=69.1.0=pyhd8ed1ab_1 + - setuptools=69.1.1=pyhd8ed1ab_0 - singular=4.3.2.p8=h33f5c3f_1 - six=1.16.0=pyh6c4a22f_0 + - snowballstemmer=2.2.0=pyhd8ed1ab_0 + - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_0 - sympow=2.023.6=hc6ab17c_3 - - tomli=2.0.1=pyhd8ed1ab_0 - tornado=6.4=py310h2372a71_0 - traitlets=5.14.1=pyhd8ed1ab_0 - typing_extensions=4.9.0=pyha770c72_0 @@ -186,6 +190,7 @@ dependencies: - widgetsnbextension=4.0.10=pyhd8ed1ab_0 - zipp=3.17.0=pyhd8ed1ab_0 - asttokens=2.4.1=pyhd8ed1ab_0 + - babel=2.14.0=pyhd8ed1ab_0 - boost-cpp=1.84.0=h44aadfe_1 - brial=1.2.12=pyh694c41f_1 - comm=0.2.1=pyhd8ed1ab_0 @@ -202,14 +207,12 @@ dependencies: - liblapack=3.9.0=20_linux64_openblas - matplotlib-inline=0.1.6=pyhd8ed1ab_0 - memory-allocator=0.1.3=py310h2372a71_0 - - meson=1.3.2=pyhd8ed1ab_0 - pexpect=4.9.0=pyhd8ed1ab_0 - pillow=10.2.0=py310h01dd4db_0 - pip=24.0=pyhd8ed1ab_0 - pplpy=0.8.9=py310h28f6eb6_0 - primecountpy=0.1.0=py310hd41b1e2_4 - prompt-toolkit=3.0.42=pyha770c72_0 - - pyproject-metadata=0.7.1=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - sympy=1.12=pypyh9d50eac_103 - urllib3=2.2.1=pyhd8ed1ab_0 @@ -219,7 +222,6 @@ dependencies: - iml=1.0.5=hd75c201_1003 - importlib_metadata=7.0.1=hd8ed1ab_0 - liblapacke=3.9.0=20_linux64_openblas - - meson-python=0.15.0=pyh0c530f3_0 - numpy=1.26.4=py310hb13e2d6_0 - requests=2.31.0=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 @@ -228,7 +230,7 @@ dependencies: - fpylll=0.6.1=py310h7e26f94_0 - giac=1.9.0.21=h673759e_1 - igraph=0.10.10=h153f77b_0 - - ipython=8.22.0=pyh707e725_0 + - ipython=8.22.1=pyh707e725_0 - jupyter_client=8.6.0=pyhd8ed1ab_0 - linbox=1.6.3=ha329b40_8 - scipy=1.11.4=py310hb13e2d6_0 @@ -237,3 +239,9 @@ dependencies: - ipywidgets=8.1.2=pyhd8ed1ab_0 - matplotlib-base=3.8.3=py310h62c0568_0 - rw=0.9=hd590300_1 + - sphinxcontrib-applehelp=1.0.8=pyhd8ed1ab_0 + - sphinxcontrib-devhelp=1.0.6=pyhd8ed1ab_0 + - sphinxcontrib-htmlhelp=2.0.5=pyhd8ed1ab_0 + - sphinxcontrib-qthelp=1.0.7=pyhd8ed1ab_0 + - sphinx=7.2.6=pyhd8ed1ab_0 + - sphinxcontrib-serializinghtml=1.1.10=pyhd8ed1ab_0 diff --git a/src/environment-3.10-macos-arm64.yml b/src/environment-3.10-macos-arm64.yml index 721916ef016..9785af2776c 100644 --- a/src/environment-3.10-macos-arm64.yml +++ b/src/environment-3.10-macos-arm64.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: osx-arm64 -# input_hash: 973780e52fbcde632116239dfe66edd82c0b3c444ef84a872cdd1d01c2b7a804 +# input_hash: 5a01ef36307b533782d5ba7ce6e1628c3ef19f906543238841f945f05c02f1c4 channels: - conda-forge @@ -58,7 +58,6 @@ dependencies: - libxml2=2.12.5=h0d0cfa8_0 - lrcalc=2.1=hebf3989_6 - ncurses=6.4=h463b476_2 - - ninja=1.11.1=hffc8910_0 - openssl=3.2.1=h0d3ecfb_0 - pari-seadata=0.0.20090618=0 - pcre2=10.42=h26f9a81_0 @@ -116,6 +115,7 @@ dependencies: - ppl=1.2=h8b147cf_1006 - python=3.10.13=h2469fbe_1_cpython - qd=2.3.22=hbec66e7_1004 + - alabaster=0.7.16=pyhd8ed1ab_0 - appnope=0.1.4=pyhd8ed1ab_0 - boost-cpp=1.84.0=hca5e981_1 - brial=1.2.12=pyh694c41f_1 @@ -131,6 +131,7 @@ dependencies: - cython=3.0.8=py310h692a8b6_0 - debugpy=1.8.1=py310h692a8b6_0 - decorator=5.1.1=pyhd8ed1ab_0 + - docutils=0.20.1=py310hbe9552e_3 - eclib=20231212=h7f07de4_0 - exceptiongroup=1.2.0=pyhd8ed1ab_2 - executing=2.0.1=pyhd8ed1ab_0 @@ -138,6 +139,7 @@ dependencies: - gap-defaults=4.12.2=hce30654_3 - gmpy2=2.1.2=py310h2e6cad2_1 - idna=3.6=pyhd8ed1ab_0 + - imagesize=1.4.1=pyhd8ed1ab_0 - jupyterlab_widgets=3.0.10=pyhd8ed1ab_0 - kiwisolver=1.4.5=py310h38f39d4_1 - lcalc=2.0.5=hc94e8e6_1 @@ -164,12 +166,14 @@ dependencies: - pygments=2.17.2=pyhd8ed1ab_0 - pyparsing=3.1.1=pyhd8ed1ab_0 - pysocks=1.7.1=pyha2e5f31_6 + - pytz=2024.1=pyhd8ed1ab_0 - pyzmq=25.1.2=py310hbb13138_0 - - setuptools=69.1.0=pyhd8ed1ab_1 + - setuptools=69.1.1=pyhd8ed1ab_0 - singular=4.3.2.p8=hb460b52_1 - six=1.16.0=pyh6c4a22f_0 + - snowballstemmer=2.2.0=pyhd8ed1ab_0 + - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_0 - sympow=2.023.6=hb0babe8_3 - - tomli=2.0.1=pyhd8ed1ab_0 - tornado=6.4=py310hd125d64_0 - traitlets=5.14.1=pyhd8ed1ab_0 - typing_extensions=4.9.0=pyha770c72_0 @@ -179,6 +183,7 @@ dependencies: - widgetsnbextension=4.0.10=pyhd8ed1ab_0 - zipp=3.17.0=pyhd8ed1ab_0 - asttokens=2.4.1=pyhd8ed1ab_0 + - babel=2.14.0=pyhd8ed1ab_0 - cctools=973.0.1=h4faf515_16 - clang=16.0.6=h30cc82d_5 - comm=0.2.1=pyhd8ed1ab_0 @@ -193,13 +198,11 @@ dependencies: - liblapack=3.9.0=20_osxarm64_openblas - matplotlib-inline=0.1.6=pyhd8ed1ab_0 - memory-allocator=0.1.3=py310h2aa6e3c_0 - - meson=1.3.2=pyhd8ed1ab_0 - pexpect=4.9.0=pyhd8ed1ab_0 - pip=24.0=pyhd8ed1ab_0 - pplpy=0.8.9=py310hab1f656_0 - primecountpy=0.1.0=py310h38f39d4_4 - prompt-toolkit=3.0.42=pyha770c72_0 - - pyproject-metadata=0.7.1=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - sympy=1.12=pypyh9d50eac_103 - urllib3=2.2.1=pyhd8ed1ab_0 @@ -210,7 +213,6 @@ dependencies: - iml=1.0.5=hd52f0d1_1003 - importlib_metadata=7.0.1=hd8ed1ab_0 - liblapacke=3.9.0=20_osxarm64_openblas - - meson-python=0.15.0=pyh0c530f3_0 - numpy=1.26.4=py310hd45542a_0 - requests=2.31.0=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 @@ -220,7 +222,7 @@ dependencies: - fpylll=0.6.1=py310hd9be144_0 - giac=1.9.0.21=h1c96721_1 - igraph=0.10.10=h48be1ad_0 - - ipython=8.22.0=pyh707e725_0 + - ipython=8.22.1=pyh707e725_0 - jupyter_client=8.6.0=pyhd8ed1ab_0 - linbox=1.6.3=h380be0f_8 - scipy=1.11.4=py310h2b794db_0 @@ -236,3 +238,9 @@ dependencies: - clangxx_impl_osx-arm64=16.0.6=hcd7bac0_9 - clangxx_osx-arm64=16.0.6=h54d7cd3_9 - cxx-compiler=1.6.0=h2ffa867_0 + - sphinxcontrib-applehelp=1.0.8=pyhd8ed1ab_0 + - sphinxcontrib-devhelp=1.0.6=pyhd8ed1ab_0 + - sphinxcontrib-htmlhelp=2.0.5=pyhd8ed1ab_0 + - sphinxcontrib-qthelp=1.0.7=pyhd8ed1ab_0 + - sphinx=7.2.6=pyhd8ed1ab_0 + - sphinxcontrib-serializinghtml=1.1.10=pyhd8ed1ab_0 diff --git a/src/environment-3.10-macos.yml b/src/environment-3.10-macos.yml index 99cbc1e53ad..a2e9c3c6723 100644 --- a/src/environment-3.10-macos.yml +++ b/src/environment-3.10-macos.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: osx-64 -# input_hash: c8efcf85fc5d9787933feb262de13d9315c8a1cba3dcd543e175083ed1fda983 +# input_hash: 36d60df1ef0e29e3074b43f4e7c1dbdd57ddb20da689b0faa5f6427164809e9e channels: - conda-forge @@ -58,7 +58,6 @@ dependencies: - libxml2=2.12.5=hc0ae0f7_0 - lrcalc=2.1=h73e2aa4_6 - ncurses=6.4=h93d8f39_2 - - ninja=1.11.1=hb8565cd_0 - openssl=3.2.1=hd75f5a5_0 - pari-seadata=0.0.20090618=0 - pkg-config=0.29.2=ha3d46e9_1008 @@ -114,6 +113,7 @@ dependencies: - ppl=1.2=ha60d53e_1006 - python=3.10.13=h00d2728_1_cpython - qd=2.3.22=h2beb688_1004 + - alabaster=0.7.16=pyhd8ed1ab_0 - appnope=0.1.4=pyhd8ed1ab_0 - boost-cpp=1.84.0=h07eb623_1 - brial=1.2.12=pyh694c41f_1 @@ -129,6 +129,7 @@ dependencies: - cython=3.0.8=py310h5daac23_0 - debugpy=1.8.1=py310h5daac23_0 - decorator=5.1.1=pyhd8ed1ab_0 + - docutils=0.20.1=py310h2ec42d9_3 - eclib=20231212=h02435c3_0 - exceptiongroup=1.2.0=pyhd8ed1ab_2 - executing=2.0.1=pyhd8ed1ab_0 @@ -136,6 +137,7 @@ dependencies: - gap-defaults=4.12.2=h694c41f_3 - gmpy2=2.1.2=py310hb691cb2_1 - idna=3.6=pyhd8ed1ab_0 + - imagesize=1.4.1=pyhd8ed1ab_0 - jupyterlab_widgets=3.0.10=pyhd8ed1ab_0 - kiwisolver=1.4.5=py310h88cfcbd_1 - lcalc=2.0.5=h3a941db_1 @@ -162,12 +164,14 @@ dependencies: - pygments=2.17.2=pyhd8ed1ab_0 - pyparsing=3.1.1=pyhd8ed1ab_0 - pysocks=1.7.1=pyha2e5f31_6 + - pytz=2024.1=pyhd8ed1ab_0 - pyzmq=25.1.2=py310h6b67f7f_0 - - setuptools=69.1.0=pyhd8ed1ab_1 + - setuptools=69.1.1=pyhd8ed1ab_0 - singular=4.3.2.p8=h0d51a9f_1 - six=1.16.0=pyh6c4a22f_0 + - snowballstemmer=2.2.0=pyhd8ed1ab_0 + - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_0 - sympow=2.023.6=h115ba6a_3 - - tomli=2.0.1=pyhd8ed1ab_0 - tornado=6.4=py310hb372a2b_0 - traitlets=5.14.1=pyhd8ed1ab_0 - typing_extensions=4.9.0=pyha770c72_0 @@ -177,6 +181,7 @@ dependencies: - widgetsnbextension=4.0.10=pyhd8ed1ab_0 - zipp=3.17.0=pyhd8ed1ab_0 - asttokens=2.4.1=pyhd8ed1ab_0 + - babel=2.14.0=pyhd8ed1ab_0 - cctools=973.0.1=h40f6528_16 - clang=16.0.6=hdae98eb_5 - comm=0.2.1=pyhd8ed1ab_0 @@ -191,13 +196,11 @@ dependencies: - liblapack=3.9.0=20_osx64_openblas - matplotlib-inline=0.1.6=pyhd8ed1ab_0 - memory-allocator=0.1.3=py310h6729b98_0 - - meson=1.3.2=pyhd8ed1ab_0 - pexpect=4.9.0=pyhd8ed1ab_0 - pip=24.0=pyhd8ed1ab_0 - pplpy=0.8.9=py310hd89f7aa_0 - primecountpy=0.1.0=py310h88cfcbd_4 - prompt-toolkit=3.0.42=pyha770c72_0 - - pyproject-metadata=0.7.1=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - sympy=1.12=pypyh9d50eac_103 - urllib3=2.2.1=pyhd8ed1ab_0 @@ -208,7 +211,6 @@ dependencies: - iml=1.0.5=h64b42ca_1003 - importlib_metadata=7.0.1=hd8ed1ab_0 - liblapacke=3.9.0=20_osx64_openblas - - meson-python=0.15.0=pyh0c530f3_0 - numpy=1.26.4=py310h4bfa8fc_0 - requests=2.31.0=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 @@ -218,7 +220,7 @@ dependencies: - fpylll=0.6.1=py310h65a3d7e_0 - giac=1.9.0.21=h92f3f65_1 - igraph=0.10.10=h6b221b4_0 - - ipython=8.22.0=pyh707e725_0 + - ipython=8.22.1=pyh707e725_0 - jupyter_client=8.6.0=pyhd8ed1ab_0 - linbox=1.6.3=hfb9b24e_8 - scipy=1.11.4=py310h3f1db6d_0 @@ -234,3 +236,9 @@ dependencies: - clangxx_impl_osx-64=16.0.6=h6d92fbe_9 - clangxx_osx-64=16.0.6=hb91bd55_9 - cxx-compiler=1.6.0=h7728843_0 + - sphinxcontrib-applehelp=1.0.8=pyhd8ed1ab_0 + - sphinxcontrib-devhelp=1.0.6=pyhd8ed1ab_0 + - sphinxcontrib-htmlhelp=2.0.5=pyhd8ed1ab_0 + - sphinxcontrib-qthelp=1.0.7=pyhd8ed1ab_0 + - sphinx=7.2.6=pyhd8ed1ab_0 + - sphinxcontrib-serializinghtml=1.1.10=pyhd8ed1ab_0 diff --git a/src/environment-3.11-linux-aarch64.yml b/src/environment-3.11-linux-aarch64.yml index 121c368bd7b..a055f61c4bb 100644 --- a/src/environment-3.11-linux-aarch64.yml +++ b/src/environment-3.11-linux-aarch64.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: linux-aarch64 -# input_hash: dc72554373dccddaa645f4d49d5a1077bf4d6e5653024d3e26a8a77aec537139 +# input_hash: 92ebf158163c0a0c85e4aac1a582c1f76d9f995f74e901e978342b9681bab439 channels: - conda-forge @@ -61,7 +61,6 @@ dependencies: - lrcalc=2.1=h2f0025b_6 - nauty=2.8.8=h31becfc_1 - ncurses=6.4=h0425590_2 - - ninja=1.11.1=hdd96247_0 - openssl=3.2.1=h31becfc_0 - palp=2.20=hb9de7d4_0 - pkg-config=0.29.2=hb9de7d4_1008 @@ -120,6 +119,7 @@ dependencies: - ppl=1.2=h984aac9_1006 - python=3.11.8=h43d1f9e_0_cpython - qd=2.3.22=h05efe27_1004 + - alabaster=0.7.16=pyhd8ed1ab_0 - brotli=1.1.0=h31becfc_1 - brotli-python=1.1.0=py311h8715677_1 - c-compiler=1.6.0=h31becfc_0 @@ -132,6 +132,7 @@ dependencies: - cython=3.0.8=py311h8715677_0 - debugpy=1.8.1=py311h8715677_0 - decorator=5.1.1=pyhd8ed1ab_0 + - docutils=0.20.1=py311hfecb2dc_3 - eclib=20231212=he26bab5_0 - exceptiongroup=1.2.0=pyhd8ed1ab_2 - executing=2.0.1=pyhd8ed1ab_0 @@ -142,6 +143,7 @@ dependencies: - gxx=12.3.0=hc1b51f9_2 - gxx_linux-aarch64=12.3.0=h21accf6_2 - idna=3.6=pyhd8ed1ab_0 + - imagesize=1.4.1=pyhd8ed1ab_0 - jupyterlab_widgets=3.0.10=pyhd8ed1ab_0 - kiwisolver=1.4.5=py311h0d5d7b0_1 - lcalc=2.0.5=h3264cc0_1 @@ -171,12 +173,14 @@ dependencies: - pygments=2.17.2=pyhd8ed1ab_0 - pyparsing=3.1.1=pyhd8ed1ab_0 - pysocks=1.7.1=pyha2e5f31_6 + - pytz=2024.1=pyhd8ed1ab_0 - pyzmq=25.1.2=py311h0fdcd05_0 - - setuptools=69.1.0=pyhd8ed1ab_1 + - setuptools=69.1.1=pyhd8ed1ab_0 - singular=4.3.2.p8=hbe76a8a_1 - six=1.16.0=pyh6c4a22f_0 + - snowballstemmer=2.2.0=pyhd8ed1ab_0 + - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_0 - sympow=2.023.6=h157afb5_3 - - tomli=2.0.1=pyhd8ed1ab_0 - tornado=6.4=py311hc8f2f60_0 - traitlets=5.14.1=pyhd8ed1ab_0 - typing_extensions=4.9.0=pyha770c72_0 @@ -185,6 +189,7 @@ dependencies: - widgetsnbextension=4.0.10=pyhd8ed1ab_0 - zipp=3.17.0=pyhd8ed1ab_0 - asttokens=2.4.1=pyhd8ed1ab_0 + - babel=2.14.0=pyhd8ed1ab_0 - boost-cpp=1.84.0=ha990451_1 - brial=1.2.12=pyh694c41f_1 - comm=0.2.1=pyhd8ed1ab_0 @@ -201,14 +206,12 @@ dependencies: - liblapack=3.9.0=20_linuxaarch64_openblas - matplotlib-inline=0.1.6=pyhd8ed1ab_0 - memory-allocator=0.1.3=py311hcd402e7_0 - - meson=1.3.2=pyhd8ed1ab_0 - pexpect=4.9.0=pyhd8ed1ab_0 - pillow=10.2.0=py311hbcc2232_0 - pip=24.0=pyhd8ed1ab_0 - pplpy=0.8.9=py311haefeb0b_0 - primecountpy=0.1.0=py311h098ece5_4 - prompt-toolkit=3.0.42=pyha770c72_0 - - pyproject-metadata=0.7.1=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - sympy=1.12=pypyh9d50eac_103 - urllib3=2.2.1=pyhd8ed1ab_0 @@ -218,7 +221,6 @@ dependencies: - iml=1.0.5=h9076c59_1003 - importlib_metadata=7.0.1=hd8ed1ab_0 - liblapacke=3.9.0=20_linuxaarch64_openblas - - meson-python=0.15.0=pyh0c530f3_0 - numpy=1.26.4=py311h69ead2a_0 - requests=2.31.0=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 @@ -227,7 +229,7 @@ dependencies: - fpylll=0.6.1=py311h5d3d69a_0 - giac=1.9.0.21=h04922a4_1 - igraph=0.10.10=hcfae7ab_0 - - ipython=8.22.0=pyh707e725_0 + - ipython=8.22.1=pyh707e725_0 - jupyter_client=8.6.0=pyhd8ed1ab_0 - linbox=1.6.3=h681a5ee_8 - scipy=1.11.3=py311h69ead2a_1 @@ -236,3 +238,9 @@ dependencies: - ipywidgets=8.1.2=pyhd8ed1ab_0 - matplotlib-base=3.8.3=py311h1f11223_0 - rw=0.9=h31becfc_1 + - sphinxcontrib-applehelp=1.0.8=pyhd8ed1ab_0 + - sphinxcontrib-devhelp=1.0.6=pyhd8ed1ab_0 + - sphinxcontrib-htmlhelp=2.0.5=pyhd8ed1ab_0 + - sphinxcontrib-qthelp=1.0.7=pyhd8ed1ab_0 + - sphinx=7.2.6=pyhd8ed1ab_0 + - sphinxcontrib-serializinghtml=1.1.10=pyhd8ed1ab_0 diff --git a/src/environment-3.11-linux.yml b/src/environment-3.11-linux.yml index 8d97f46b234..25e37ede976 100644 --- a/src/environment-3.11-linux.yml +++ b/src/environment-3.11-linux.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: 9ea772c20ce9a7b5b7898d2becce32170009c86d676e205de842b4db32b6845a +# input_hash: 322ea4cf98714f84d6f2a829163f4f7d72ef88cc927bf41b8f0c0b9a77589ef4 channels: - conda-forge @@ -61,7 +61,6 @@ dependencies: - lrcalc=2.1=h59595ed_6 - nauty=2.8.8=hd590300_1 - ncurses=6.4=h59595ed_2 - - ninja=1.11.1=h924138e_0 - openssl=3.2.1=hd590300_0 - palp=2.20=h36c2ea0_0 - pkg-config=0.29.2=h36c2ea0_1008 @@ -120,6 +119,7 @@ dependencies: - ppl=1.2=h6ec01c2_1006 - python=3.11.8=hab00c5b_0_cpython - qd=2.3.22=h2cc385e_1004 + - alabaster=0.7.16=pyhd8ed1ab_0 - brotli=1.1.0=hd590300_1 - brotli-python=1.1.0=py311hb755f60_1 - c-compiler=1.6.0=hd590300_0 @@ -132,6 +132,7 @@ dependencies: - cython=3.0.8=py311hb755f60_0 - debugpy=1.8.1=py311hb755f60_0 - decorator=5.1.1=pyhd8ed1ab_0 + - docutils=0.20.1=py311h38be061_3 - eclib=20231212=h96f522a_0 - exceptiongroup=1.2.0=pyhd8ed1ab_2 - executing=2.0.1=pyhd8ed1ab_0 @@ -142,6 +143,7 @@ dependencies: - gxx=12.3.0=h8d2909c_2 - gxx_linux-64=12.3.0=h8a814eb_2 - idna=3.6=pyhd8ed1ab_0 + - imagesize=1.4.1=pyhd8ed1ab_0 - jupyterlab_widgets=3.0.10=pyhd8ed1ab_0 - kiwisolver=1.4.5=py311h9547e67_1 - lcalc=2.0.5=h6a8a7c6_1 @@ -171,12 +173,14 @@ dependencies: - pygments=2.17.2=pyhd8ed1ab_0 - pyparsing=3.1.1=pyhd8ed1ab_0 - pysocks=1.7.1=pyha2e5f31_6 + - pytz=2024.1=pyhd8ed1ab_0 - pyzmq=25.1.2=py311h34ded2d_0 - - setuptools=69.1.0=pyhd8ed1ab_1 + - setuptools=69.1.1=pyhd8ed1ab_0 - singular=4.3.2.p8=h33f5c3f_1 - six=1.16.0=pyh6c4a22f_0 + - snowballstemmer=2.2.0=pyhd8ed1ab_0 + - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_0 - sympow=2.023.6=hc6ab17c_3 - - tomli=2.0.1=pyhd8ed1ab_0 - tornado=6.4=py311h459d7ec_0 - traitlets=5.14.1=pyhd8ed1ab_0 - typing_extensions=4.9.0=pyha770c72_0 @@ -185,6 +189,7 @@ dependencies: - widgetsnbextension=4.0.10=pyhd8ed1ab_0 - zipp=3.17.0=pyhd8ed1ab_0 - asttokens=2.4.1=pyhd8ed1ab_0 + - babel=2.14.0=pyhd8ed1ab_0 - boost-cpp=1.84.0=h44aadfe_1 - brial=1.2.12=pyh694c41f_1 - comm=0.2.1=pyhd8ed1ab_0 @@ -201,14 +206,12 @@ dependencies: - liblapack=3.9.0=20_linux64_openblas - matplotlib-inline=0.1.6=pyhd8ed1ab_0 - memory-allocator=0.1.3=py311h459d7ec_0 - - meson=1.3.2=pyhd8ed1ab_0 - pexpect=4.9.0=pyhd8ed1ab_0 - pillow=10.2.0=py311ha6c5da5_0 - pip=24.0=pyhd8ed1ab_0 - pplpy=0.8.9=py311h85abca9_0 - primecountpy=0.1.0=py311h9547e67_4 - prompt-toolkit=3.0.42=pyha770c72_0 - - pyproject-metadata=0.7.1=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - sympy=1.12=pypyh9d50eac_103 - urllib3=2.2.1=pyhd8ed1ab_0 @@ -218,7 +221,6 @@ dependencies: - iml=1.0.5=hd75c201_1003 - importlib_metadata=7.0.1=hd8ed1ab_0 - liblapacke=3.9.0=20_linux64_openblas - - meson-python=0.15.0=pyh0c530f3_0 - numpy=1.26.4=py311h64a7726_0 - requests=2.31.0=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 @@ -227,7 +229,7 @@ dependencies: - fpylll=0.6.1=py311hcfae7cf_0 - giac=1.9.0.21=h673759e_1 - igraph=0.10.10=h153f77b_0 - - ipython=8.22.0=pyh707e725_0 + - ipython=8.22.1=pyh707e725_0 - jupyter_client=8.6.0=pyhd8ed1ab_0 - linbox=1.6.3=ha329b40_8 - scipy=1.11.4=py311h64a7726_0 @@ -236,3 +238,9 @@ dependencies: - ipywidgets=8.1.2=pyhd8ed1ab_0 - matplotlib-base=3.8.3=py311h54ef318_0 - rw=0.9=hd590300_1 + - sphinxcontrib-applehelp=1.0.8=pyhd8ed1ab_0 + - sphinxcontrib-devhelp=1.0.6=pyhd8ed1ab_0 + - sphinxcontrib-htmlhelp=2.0.5=pyhd8ed1ab_0 + - sphinxcontrib-qthelp=1.0.7=pyhd8ed1ab_0 + - sphinx=7.2.6=pyhd8ed1ab_0 + - sphinxcontrib-serializinghtml=1.1.10=pyhd8ed1ab_0 diff --git a/src/environment-3.11-macos-arm64.yml b/src/environment-3.11-macos-arm64.yml index 0150a4b8f89..9df5a2e3637 100644 --- a/src/environment-3.11-macos-arm64.yml +++ b/src/environment-3.11-macos-arm64.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: osx-arm64 -# input_hash: 5c95308be6e999e2bc1be12179de613d528ee6077093b633cf30e2b296ce7bb4 +# input_hash: 02d201a54886831777e2b88da0969f4dfe54d2fdbf17cfb2ea9712aa2e2034c3 channels: - conda-forge @@ -58,7 +58,6 @@ dependencies: - libxml2=2.12.5=h0d0cfa8_0 - lrcalc=2.1=hebf3989_6 - ncurses=6.4=h463b476_2 - - ninja=1.11.1=hffc8910_0 - openssl=3.2.1=h0d3ecfb_0 - pari-seadata=0.0.20090618=0 - pcre2=10.42=h26f9a81_0 @@ -116,6 +115,7 @@ dependencies: - ppl=1.2=h8b147cf_1006 - python=3.11.8=hdf0ec26_0_cpython - qd=2.3.22=hbec66e7_1004 + - alabaster=0.7.16=pyhd8ed1ab_0 - appnope=0.1.4=pyhd8ed1ab_0 - boost-cpp=1.84.0=hca5e981_1 - brial=1.2.12=pyh694c41f_1 @@ -131,6 +131,7 @@ dependencies: - cython=3.0.8=py311h92babd0_0 - debugpy=1.8.1=py311h92babd0_0 - decorator=5.1.1=pyhd8ed1ab_0 + - docutils=0.20.1=py311h267d04e_3 - eclib=20231212=h7f07de4_0 - exceptiongroup=1.2.0=pyhd8ed1ab_2 - executing=2.0.1=pyhd8ed1ab_0 @@ -138,6 +139,7 @@ dependencies: - gap-defaults=4.12.2=hce30654_3 - gmpy2=2.1.2=py311h2ba9262_1 - idna=3.6=pyhd8ed1ab_0 + - imagesize=1.4.1=pyhd8ed1ab_0 - jupyterlab_widgets=3.0.10=pyhd8ed1ab_0 - kiwisolver=1.4.5=py311he4fd1f5_1 - lcalc=2.0.5=hc94e8e6_1 @@ -164,12 +166,14 @@ dependencies: - pygments=2.17.2=pyhd8ed1ab_0 - pyparsing=3.1.1=pyhd8ed1ab_0 - pysocks=1.7.1=pyha2e5f31_6 + - pytz=2024.1=pyhd8ed1ab_0 - pyzmq=25.1.2=py311h6727e71_0 - - setuptools=69.1.0=pyhd8ed1ab_1 + - setuptools=69.1.1=pyhd8ed1ab_0 - singular=4.3.2.p8=hb460b52_1 - six=1.16.0=pyh6c4a22f_0 + - snowballstemmer=2.2.0=pyhd8ed1ab_0 + - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_0 - sympow=2.023.6=hb0babe8_3 - - tomli=2.0.1=pyhd8ed1ab_0 - tornado=6.4=py311h05b510d_0 - traitlets=5.14.1=pyhd8ed1ab_0 - typing_extensions=4.9.0=pyha770c72_0 @@ -178,6 +182,7 @@ dependencies: - widgetsnbextension=4.0.10=pyhd8ed1ab_0 - zipp=3.17.0=pyhd8ed1ab_0 - asttokens=2.4.1=pyhd8ed1ab_0 + - babel=2.14.0=pyhd8ed1ab_0 - cctools=973.0.1=h4faf515_16 - clang=16.0.6=h30cc82d_5 - comm=0.2.1=pyhd8ed1ab_0 @@ -192,13 +197,11 @@ dependencies: - liblapack=3.9.0=20_osxarm64_openblas - matplotlib-inline=0.1.6=pyhd8ed1ab_0 - memory-allocator=0.1.3=py311heffc1b2_0 - - meson=1.3.2=pyhd8ed1ab_0 - pexpect=4.9.0=pyhd8ed1ab_0 - pip=24.0=pyhd8ed1ab_0 - pplpy=0.8.9=py311h5ba3760_0 - primecountpy=0.1.0=py311he4fd1f5_4 - prompt-toolkit=3.0.42=pyha770c72_0 - - pyproject-metadata=0.7.1=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - sympy=1.12=pypyh9d50eac_103 - urllib3=2.2.1=pyhd8ed1ab_0 @@ -209,7 +212,6 @@ dependencies: - iml=1.0.5=hd52f0d1_1003 - importlib_metadata=7.0.1=hd8ed1ab_0 - liblapacke=3.9.0=20_osxarm64_openblas - - meson-python=0.15.0=pyh0c530f3_0 - numpy=1.26.4=py311h7125741_0 - requests=2.31.0=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 @@ -219,7 +221,7 @@ dependencies: - fpylll=0.6.1=py311h341b96b_0 - giac=1.9.0.21=h1c96721_1 - igraph=0.10.10=h48be1ad_0 - - ipython=8.22.0=pyh707e725_0 + - ipython=8.22.1=pyh707e725_0 - jupyter_client=8.6.0=pyhd8ed1ab_0 - linbox=1.6.3=h380be0f_8 - scipy=1.11.4=py311h2b215a9_0 @@ -235,3 +237,9 @@ dependencies: - clangxx_impl_osx-arm64=16.0.6=hcd7bac0_9 - clangxx_osx-arm64=16.0.6=h54d7cd3_9 - cxx-compiler=1.6.0=h2ffa867_0 + - sphinxcontrib-applehelp=1.0.8=pyhd8ed1ab_0 + - sphinxcontrib-devhelp=1.0.6=pyhd8ed1ab_0 + - sphinxcontrib-htmlhelp=2.0.5=pyhd8ed1ab_0 + - sphinxcontrib-qthelp=1.0.7=pyhd8ed1ab_0 + - sphinx=7.2.6=pyhd8ed1ab_0 + - sphinxcontrib-serializinghtml=1.1.10=pyhd8ed1ab_0 diff --git a/src/environment-3.11-macos.yml b/src/environment-3.11-macos.yml index c66cb2b11df..b743c447c94 100644 --- a/src/environment-3.11-macos.yml +++ b/src/environment-3.11-macos.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: osx-64 -# input_hash: df9ff2d930b5a595158333831cb6a7c9dfec0085b794f9f8e86c5954e4bfea27 +# input_hash: 449c187686902948fc85c1470ba9244a3d19b82f4b6a248d2f1cca230853ba09 channels: - conda-forge @@ -58,7 +58,6 @@ dependencies: - libxml2=2.12.5=hc0ae0f7_0 - lrcalc=2.1=h73e2aa4_6 - ncurses=6.4=h93d8f39_2 - - ninja=1.11.1=hb8565cd_0 - openssl=3.2.1=hd75f5a5_0 - pari-seadata=0.0.20090618=0 - pkg-config=0.29.2=ha3d46e9_1008 @@ -114,6 +113,7 @@ dependencies: - ppl=1.2=ha60d53e_1006 - python=3.11.8=h9f0c242_0_cpython - qd=2.3.22=h2beb688_1004 + - alabaster=0.7.16=pyhd8ed1ab_0 - appnope=0.1.4=pyhd8ed1ab_0 - boost-cpp=1.84.0=h07eb623_1 - brial=1.2.12=pyh694c41f_1 @@ -129,6 +129,7 @@ dependencies: - cython=3.0.8=py311hdd0406b_0 - debugpy=1.8.1=py311hdd0406b_0 - decorator=5.1.1=pyhd8ed1ab_0 + - docutils=0.20.1=py311h6eed73b_3 - eclib=20231212=h02435c3_0 - exceptiongroup=1.2.0=pyhd8ed1ab_2 - executing=2.0.1=pyhd8ed1ab_0 @@ -136,6 +137,7 @@ dependencies: - gap-defaults=4.12.2=h694c41f_3 - gmpy2=2.1.2=py311hc5b4402_1 - idna=3.6=pyhd8ed1ab_0 + - imagesize=1.4.1=pyhd8ed1ab_0 - jupyterlab_widgets=3.0.10=pyhd8ed1ab_0 - kiwisolver=1.4.5=py311h5fe6e05_1 - lcalc=2.0.5=h3a941db_1 @@ -162,12 +164,14 @@ dependencies: - pygments=2.17.2=pyhd8ed1ab_0 - pyparsing=3.1.1=pyhd8ed1ab_0 - pysocks=1.7.1=pyha2e5f31_6 + - pytz=2024.1=pyhd8ed1ab_0 - pyzmq=25.1.2=py311h889d6d6_0 - - setuptools=69.1.0=pyhd8ed1ab_1 + - setuptools=69.1.1=pyhd8ed1ab_0 - singular=4.3.2.p8=h0d51a9f_1 - six=1.16.0=pyh6c4a22f_0 + - snowballstemmer=2.2.0=pyhd8ed1ab_0 + - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_0 - sympow=2.023.6=h115ba6a_3 - - tomli=2.0.1=pyhd8ed1ab_0 - tornado=6.4=py311he705e18_0 - traitlets=5.14.1=pyhd8ed1ab_0 - typing_extensions=4.9.0=pyha770c72_0 @@ -176,6 +180,7 @@ dependencies: - widgetsnbextension=4.0.10=pyhd8ed1ab_0 - zipp=3.17.0=pyhd8ed1ab_0 - asttokens=2.4.1=pyhd8ed1ab_0 + - babel=2.14.0=pyhd8ed1ab_0 - cctools=973.0.1=h40f6528_16 - clang=16.0.6=hdae98eb_5 - comm=0.2.1=pyhd8ed1ab_0 @@ -190,13 +195,11 @@ dependencies: - liblapack=3.9.0=20_osx64_openblas - matplotlib-inline=0.1.6=pyhd8ed1ab_0 - memory-allocator=0.1.3=py311h2725bcf_0 - - meson=1.3.2=pyhd8ed1ab_0 - pexpect=4.9.0=pyhd8ed1ab_0 - pip=24.0=pyhd8ed1ab_0 - pplpy=0.8.9=py311h7355a2a_0 - primecountpy=0.1.0=py311h5fe6e05_4 - prompt-toolkit=3.0.42=pyha770c72_0 - - pyproject-metadata=0.7.1=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - sympy=1.12=pypyh9d50eac_103 - urllib3=2.2.1=pyhd8ed1ab_0 @@ -207,7 +210,6 @@ dependencies: - iml=1.0.5=h64b42ca_1003 - importlib_metadata=7.0.1=hd8ed1ab_0 - liblapacke=3.9.0=20_osx64_openblas - - meson-python=0.15.0=pyh0c530f3_0 - numpy=1.26.4=py311hc43a94b_0 - requests=2.31.0=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 @@ -217,7 +219,7 @@ dependencies: - fpylll=0.6.1=py311h85fbf69_0 - giac=1.9.0.21=h92f3f65_1 - igraph=0.10.10=h6b221b4_0 - - ipython=8.22.0=pyh707e725_0 + - ipython=8.22.1=pyh707e725_0 - jupyter_client=8.6.0=pyhd8ed1ab_0 - linbox=1.6.3=hfb9b24e_8 - scipy=1.11.4=py311he0bea55_0 @@ -233,3 +235,9 @@ dependencies: - clangxx_impl_osx-64=16.0.6=h6d92fbe_9 - clangxx_osx-64=16.0.6=hb91bd55_9 - cxx-compiler=1.6.0=h7728843_0 + - sphinxcontrib-applehelp=1.0.8=pyhd8ed1ab_0 + - sphinxcontrib-devhelp=1.0.6=pyhd8ed1ab_0 + - sphinxcontrib-htmlhelp=2.0.5=pyhd8ed1ab_0 + - sphinxcontrib-qthelp=1.0.7=pyhd8ed1ab_0 + - sphinx=7.2.6=pyhd8ed1ab_0 + - sphinxcontrib-serializinghtml=1.1.10=pyhd8ed1ab_0 diff --git a/src/environment-3.9-linux-aarch64.yml b/src/environment-3.9-linux-aarch64.yml index 0e724e430af..b8d4edb2197 100644 --- a/src/environment-3.9-linux-aarch64.yml +++ b/src/environment-3.9-linux-aarch64.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: linux-aarch64 -# input_hash: ef81471404120f756a0382a36f52b9bc2a1c5831d23b88d16f023278c6f40842 +# input_hash: 0127db3765fd3ca0fbf8c9af001868d436283baaa7e340cd80fc937e239fb52a channels: - conda-forge @@ -61,7 +61,6 @@ dependencies: - lrcalc=2.1=h2f0025b_6 - nauty=2.8.8=h31becfc_1 - ncurses=6.4=h0425590_2 - - ninja=1.11.1=hdd96247_0 - openssl=3.2.1=h31becfc_0 - palp=2.20=hb9de7d4_0 - pkg-config=0.29.2=hb9de7d4_1008 @@ -120,6 +119,7 @@ dependencies: - ppl=1.2=h984aac9_1006 - python=3.9.18=h4ac3b42_1_cpython - qd=2.3.22=h05efe27_1004 + - alabaster=0.7.16=pyhd8ed1ab_0 - brotli=1.1.0=h31becfc_1 - brotli-python=1.1.0=py39h387a81e_1 - c-compiler=1.6.0=h31becfc_0 @@ -132,6 +132,7 @@ dependencies: - cython=3.0.8=py39h387a81e_0 - debugpy=1.8.1=py39h387a81e_0 - decorator=5.1.1=pyhd8ed1ab_0 + - docutils=0.20.1=py39ha65689a_3 - eclib=20231212=he26bab5_0 - exceptiongroup=1.2.0=pyhd8ed1ab_2 - executing=2.0.1=pyhd8ed1ab_0 @@ -142,6 +143,7 @@ dependencies: - gxx=12.3.0=hc1b51f9_2 - gxx_linux-aarch64=12.3.0=h21accf6_2 - idna=3.6=pyhd8ed1ab_0 + - imagesize=1.4.1=pyhd8ed1ab_0 - jupyterlab_widgets=3.0.10=pyhd8ed1ab_0 - kiwisolver=1.4.5=py39had2cf8c_1 - lcalc=2.0.5=h3264cc0_1 @@ -171,12 +173,14 @@ dependencies: - pygments=2.17.2=pyhd8ed1ab_0 - pyparsing=3.1.1=pyhd8ed1ab_0 - pysocks=1.7.1=pyha2e5f31_6 + - pytz=2024.1=pyhd8ed1ab_0 - pyzmq=25.1.2=py39hbab03a2_0 - - setuptools=69.1.0=pyhd8ed1ab_1 + - setuptools=69.1.1=pyhd8ed1ab_0 - singular=4.3.2.p8=hbe76a8a_1 - six=1.16.0=pyh6c4a22f_0 + - snowballstemmer=2.2.0=pyhd8ed1ab_0 + - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_0 - sympow=2.023.6=h157afb5_3 - - tomli=2.0.1=pyhd8ed1ab_0 - tornado=6.4=py39h7cc1d5f_0 - traitlets=5.14.1=pyhd8ed1ab_0 - typing_extensions=4.9.0=pyha770c72_0 @@ -186,6 +190,7 @@ dependencies: - widgetsnbextension=4.0.10=pyhd8ed1ab_0 - zipp=3.17.0=pyhd8ed1ab_0 - asttokens=2.4.1=pyhd8ed1ab_0 + - babel=2.14.0=pyhd8ed1ab_0 - boost-cpp=1.84.0=ha990451_1 - brial=1.2.12=pyh694c41f_1 - comm=0.2.1=pyhd8ed1ab_0 @@ -202,14 +207,12 @@ dependencies: - liblapack=3.9.0=20_linuxaarch64_openblas - matplotlib-inline=0.1.6=pyhd8ed1ab_0 - memory-allocator=0.1.3=py39h898b7ef_0 - - meson=1.3.2=pyhd8ed1ab_0 - pexpect=4.9.0=pyhd8ed1ab_0 - pillow=10.2.0=py39h8ce38d7_0 - pip=24.0=pyhd8ed1ab_0 - pplpy=0.8.9=py39h087fc0e_0 - primecountpy=0.1.0=py39hd16970a_3 - prompt-toolkit=3.0.42=pyha770c72_0 - - pyproject-metadata=0.7.1=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - sympy=1.12=pypyh9d50eac_103 - urllib3=2.2.1=pyhd8ed1ab_0 @@ -220,7 +223,6 @@ dependencies: - importlib-resources=6.1.1=pyhd8ed1ab_0 - importlib_metadata=7.0.1=hd8ed1ab_0 - liblapacke=3.9.0=20_linuxaarch64_openblas - - meson-python=0.15.0=pyh0c530f3_0 - numpy=1.26.4=py39h91c28bb_0 - requests=2.31.0=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 @@ -238,3 +240,9 @@ dependencies: - ipywidgets=8.1.2=pyhd8ed1ab_0 - matplotlib-base=3.8.3=py39h8e43113_0 - rw=0.9=h31becfc_1 + - sphinxcontrib-applehelp=1.0.8=pyhd8ed1ab_0 + - sphinxcontrib-devhelp=1.0.6=pyhd8ed1ab_0 + - sphinxcontrib-htmlhelp=2.0.5=pyhd8ed1ab_0 + - sphinxcontrib-qthelp=1.0.7=pyhd8ed1ab_0 + - sphinx=7.2.6=pyhd8ed1ab_0 + - sphinxcontrib-serializinghtml=1.1.10=pyhd8ed1ab_0 diff --git a/src/environment-3.9-linux.yml b/src/environment-3.9-linux.yml index b4e1adfc584..4693601ea16 100644 --- a/src/environment-3.9-linux.yml +++ b/src/environment-3.9-linux.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: 69d576d155ebf4e28f6193b3715f32af2523656f91914fc6f838338b64b3bf27 +# input_hash: 440e15fd8b2a8a8004f2bd0cf252c5bcc0158a6c417599fa1dbb6c032034eded channels: - conda-forge @@ -61,7 +61,6 @@ dependencies: - lrcalc=2.1=h59595ed_6 - nauty=2.8.8=hd590300_1 - ncurses=6.4=h59595ed_2 - - ninja=1.11.1=h924138e_0 - openssl=3.2.1=hd590300_0 - palp=2.20=h36c2ea0_0 - pkg-config=0.29.2=h36c2ea0_1008 @@ -120,6 +119,7 @@ dependencies: - ppl=1.2=h6ec01c2_1006 - python=3.9.18=h0755675_1_cpython - qd=2.3.22=h2cc385e_1004 + - alabaster=0.7.16=pyhd8ed1ab_0 - brotli=1.1.0=hd590300_1 - brotli-python=1.1.0=py39h3d6467e_1 - c-compiler=1.6.0=hd590300_0 @@ -132,6 +132,7 @@ dependencies: - cython=3.0.8=py39h3d6467e_0 - debugpy=1.8.1=py39h3d6467e_0 - decorator=5.1.1=pyhd8ed1ab_0 + - docutils=0.20.1=py39hf3d152e_3 - eclib=20231212=h96f522a_0 - exceptiongroup=1.2.0=pyhd8ed1ab_2 - executing=2.0.1=pyhd8ed1ab_0 @@ -142,6 +143,7 @@ dependencies: - gxx=12.3.0=h8d2909c_2 - gxx_linux-64=12.3.0=h8a814eb_2 - idna=3.6=pyhd8ed1ab_0 + - imagesize=1.4.1=pyhd8ed1ab_0 - jupyterlab_widgets=3.0.10=pyhd8ed1ab_0 - kiwisolver=1.4.5=py39h7633fee_1 - lcalc=2.0.5=h6a8a7c6_1 @@ -171,12 +173,14 @@ dependencies: - pygments=2.17.2=pyhd8ed1ab_0 - pyparsing=3.1.1=pyhd8ed1ab_0 - pysocks=1.7.1=pyha2e5f31_6 + - pytz=2024.1=pyhd8ed1ab_0 - pyzmq=25.1.2=py39h8c080ef_0 - - setuptools=69.1.0=pyhd8ed1ab_1 + - setuptools=69.1.1=pyhd8ed1ab_0 - singular=4.3.2.p8=h33f5c3f_1 - six=1.16.0=pyh6c4a22f_0 + - snowballstemmer=2.2.0=pyhd8ed1ab_0 + - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_0 - sympow=2.023.6=hc6ab17c_3 - - tomli=2.0.1=pyhd8ed1ab_0 - tornado=6.4=py39hd1e30aa_0 - traitlets=5.14.1=pyhd8ed1ab_0 - typing_extensions=4.9.0=pyha770c72_0 @@ -186,6 +190,7 @@ dependencies: - widgetsnbextension=4.0.10=pyhd8ed1ab_0 - zipp=3.17.0=pyhd8ed1ab_0 - asttokens=2.4.1=pyhd8ed1ab_0 + - babel=2.14.0=pyhd8ed1ab_0 - boost-cpp=1.84.0=h44aadfe_1 - brial=1.2.12=pyh694c41f_1 - comm=0.2.1=pyhd8ed1ab_0 @@ -202,14 +207,12 @@ dependencies: - liblapack=3.9.0=20_linux64_openblas - matplotlib-inline=0.1.6=pyhd8ed1ab_0 - memory-allocator=0.1.3=py39hd1e30aa_0 - - meson=1.3.2=pyhd8ed1ab_0 - pexpect=4.9.0=pyhd8ed1ab_0 - pillow=10.2.0=py39had0adad_0 - pip=24.0=pyhd8ed1ab_0 - pplpy=0.8.9=py39hba3e9e5_0 - primecountpy=0.1.0=py39h7633fee_4 - prompt-toolkit=3.0.42=pyha770c72_0 - - pyproject-metadata=0.7.1=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - sympy=1.12=pypyh9d50eac_103 - urllib3=2.2.1=pyhd8ed1ab_0 @@ -220,7 +223,6 @@ dependencies: - importlib-resources=6.1.1=pyhd8ed1ab_0 - importlib_metadata=7.0.1=hd8ed1ab_0 - liblapacke=3.9.0=20_linux64_openblas - - meson-python=0.15.0=pyh0c530f3_0 - numpy=1.26.4=py39h474f0d3_0 - requests=2.31.0=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 @@ -238,3 +240,9 @@ dependencies: - ipywidgets=8.1.2=pyhd8ed1ab_0 - matplotlib-base=3.8.3=py39he9076e7_0 - rw=0.9=hd590300_1 + - sphinxcontrib-applehelp=1.0.8=pyhd8ed1ab_0 + - sphinxcontrib-devhelp=1.0.6=pyhd8ed1ab_0 + - sphinxcontrib-htmlhelp=2.0.5=pyhd8ed1ab_0 + - sphinxcontrib-qthelp=1.0.7=pyhd8ed1ab_0 + - sphinx=7.2.6=pyhd8ed1ab_0 + - sphinxcontrib-serializinghtml=1.1.10=pyhd8ed1ab_0 diff --git a/src/environment-3.9-macos-arm64.yml b/src/environment-3.9-macos-arm64.yml index ea08ad7cf87..9433644cd1e 100644 --- a/src/environment-3.9-macos-arm64.yml +++ b/src/environment-3.9-macos-arm64.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: osx-arm64 -# input_hash: ebc1f0d23b29fad3374d5318c90643b4ee6b1dc741cb34f1d6d51f1be0019137 +# input_hash: 47e535549b78839268cd8547a6c59a3cef740a38ad0fdf820e6db7417c9fae23 channels: - conda-forge @@ -58,7 +58,6 @@ dependencies: - libxml2=2.12.5=h0d0cfa8_0 - lrcalc=2.1=hebf3989_6 - ncurses=6.4=h463b476_2 - - ninja=1.11.1=hffc8910_0 - openssl=3.2.1=h0d3ecfb_0 - pari-seadata=0.0.20090618=0 - pcre2=10.42=h26f9a81_0 @@ -116,6 +115,7 @@ dependencies: - ppl=1.2=h8b147cf_1006 - python=3.9.18=hd7ebdb9_1_cpython - qd=2.3.22=hbec66e7_1004 + - alabaster=0.7.16=pyhd8ed1ab_0 - appnope=0.1.4=pyhd8ed1ab_0 - boost-cpp=1.84.0=hca5e981_1 - brial=1.2.12=pyh694c41f_1 @@ -131,6 +131,7 @@ dependencies: - cython=3.0.8=py39hf3050f2_0 - debugpy=1.8.1=py39hf3050f2_0 - decorator=5.1.1=pyhd8ed1ab_0 + - docutils=0.20.1=py39h2804cbe_3 - eclib=20231212=h7f07de4_0 - exceptiongroup=1.2.0=pyhd8ed1ab_2 - executing=2.0.1=pyhd8ed1ab_0 @@ -138,6 +139,7 @@ dependencies: - gap-defaults=4.12.2=hce30654_3 - gmpy2=2.1.2=py39h0b4f9c6_1 - idna=3.6=pyhd8ed1ab_0 + - imagesize=1.4.1=pyhd8ed1ab_0 - jupyterlab_widgets=3.0.10=pyhd8ed1ab_0 - kiwisolver=1.4.5=py39hbd775c9_1 - lcalc=2.0.5=hc94e8e6_1 @@ -164,12 +166,14 @@ dependencies: - pygments=2.17.2=pyhd8ed1ab_0 - pyparsing=3.1.1=pyhd8ed1ab_0 - pysocks=1.7.1=pyha2e5f31_6 + - pytz=2024.1=pyhd8ed1ab_0 - pyzmq=25.1.2=py39he1e2164_0 - - setuptools=69.1.0=pyhd8ed1ab_1 + - setuptools=69.1.1=pyhd8ed1ab_0 - singular=4.3.2.p8=hb460b52_1 - six=1.16.0=pyh6c4a22f_0 + - snowballstemmer=2.2.0=pyhd8ed1ab_0 + - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_0 - sympow=2.023.6=hb0babe8_3 - - tomli=2.0.1=pyhd8ed1ab_0 - tornado=6.4=py39h17cfd9d_0 - traitlets=5.14.1=pyhd8ed1ab_0 - typing_extensions=4.9.0=pyha770c72_0 @@ -179,6 +183,7 @@ dependencies: - widgetsnbextension=4.0.10=pyhd8ed1ab_0 - zipp=3.17.0=pyhd8ed1ab_0 - asttokens=2.4.1=pyhd8ed1ab_0 + - babel=2.14.0=pyhd8ed1ab_0 - cctools=973.0.1=h4faf515_16 - clang=16.0.6=h30cc82d_5 - comm=0.2.1=pyhd8ed1ab_0 @@ -193,13 +198,11 @@ dependencies: - liblapack=3.9.0=20_osxarm64_openblas - matplotlib-inline=0.1.6=pyhd8ed1ab_0 - memory-allocator=0.1.3=py39h0f82c59_0 - - meson=1.3.2=pyhd8ed1ab_0 - pexpect=4.9.0=pyhd8ed1ab_0 - pip=24.0=pyhd8ed1ab_0 - pplpy=0.8.9=py39haf103f8_0 - primecountpy=0.1.0=py39hbd775c9_4 - prompt-toolkit=3.0.42=pyha770c72_0 - - pyproject-metadata=0.7.1=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - sympy=1.12=pypyh9d50eac_103 - urllib3=2.2.1=pyhd8ed1ab_0 @@ -211,7 +214,6 @@ dependencies: - importlib-resources=6.1.1=pyhd8ed1ab_0 - importlib_metadata=7.0.1=hd8ed1ab_0 - liblapacke=3.9.0=20_osxarm64_openblas - - meson-python=0.15.0=pyh0c530f3_0 - numpy=1.26.4=py39h7aa2656_0 - requests=2.31.0=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 @@ -237,3 +239,9 @@ dependencies: - clangxx_impl_osx-arm64=16.0.6=hcd7bac0_9 - clangxx_osx-arm64=16.0.6=h54d7cd3_9 - cxx-compiler=1.6.0=h2ffa867_0 + - sphinxcontrib-applehelp=1.0.8=pyhd8ed1ab_0 + - sphinxcontrib-devhelp=1.0.6=pyhd8ed1ab_0 + - sphinxcontrib-htmlhelp=2.0.5=pyhd8ed1ab_0 + - sphinxcontrib-qthelp=1.0.7=pyhd8ed1ab_0 + - sphinx=7.2.6=pyhd8ed1ab_0 + - sphinxcontrib-serializinghtml=1.1.10=pyhd8ed1ab_0 diff --git a/src/environment-3.9-macos.yml b/src/environment-3.9-macos.yml index f5f54f08024..ed8e120a256 100644 --- a/src/environment-3.9-macos.yml +++ b/src/environment-3.9-macos.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: osx-64 -# input_hash: f9b1fc3757a3651ee8e5d4a2ca9e85debaec778a18e156fad4e075c4940402a5 +# input_hash: 8b8f458cc1ce4f5f4f62c5994dcfc5a372d4ee6fd93282e8048c5cca8387d827 channels: - conda-forge @@ -58,7 +58,6 @@ dependencies: - libxml2=2.12.5=hc0ae0f7_0 - lrcalc=2.1=h73e2aa4_6 - ncurses=6.4=h93d8f39_2 - - ninja=1.11.1=hb8565cd_0 - openssl=3.2.1=hd75f5a5_0 - pari-seadata=0.0.20090618=0 - pkg-config=0.29.2=ha3d46e9_1008 @@ -114,6 +113,7 @@ dependencies: - ppl=1.2=ha60d53e_1006 - python=3.9.18=h7a9c478_1_cpython - qd=2.3.22=h2beb688_1004 + - alabaster=0.7.16=pyhd8ed1ab_0 - appnope=0.1.4=pyhd8ed1ab_0 - boost-cpp=1.84.0=h07eb623_1 - brial=1.2.12=pyh694c41f_1 @@ -129,6 +129,7 @@ dependencies: - cython=3.0.8=py39hd253f6c_0 - debugpy=1.8.1=py39hd253f6c_0 - decorator=5.1.1=pyhd8ed1ab_0 + - docutils=0.20.1=py39h6e9494a_3 - eclib=20231212=h02435c3_0 - exceptiongroup=1.2.0=pyhd8ed1ab_2 - executing=2.0.1=pyhd8ed1ab_0 @@ -136,6 +137,7 @@ dependencies: - gap-defaults=4.12.2=h694c41f_3 - gmpy2=2.1.2=py39h2da61ea_1 - idna=3.6=pyhd8ed1ab_0 + - imagesize=1.4.1=pyhd8ed1ab_0 - jupyterlab_widgets=3.0.10=pyhd8ed1ab_0 - kiwisolver=1.4.5=py39h8ee36c8_1 - lcalc=2.0.5=h3a941db_1 @@ -162,12 +164,14 @@ dependencies: - pygments=2.17.2=pyhd8ed1ab_0 - pyparsing=3.1.1=pyhd8ed1ab_0 - pysocks=1.7.1=pyha2e5f31_6 + - pytz=2024.1=pyhd8ed1ab_0 - pyzmq=25.1.2=py39hcb7a90d_0 - - setuptools=69.1.0=pyhd8ed1ab_1 + - setuptools=69.1.1=pyhd8ed1ab_0 - singular=4.3.2.p8=h0d51a9f_1 - six=1.16.0=pyh6c4a22f_0 + - snowballstemmer=2.2.0=pyhd8ed1ab_0 + - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_0 - sympow=2.023.6=h115ba6a_3 - - tomli=2.0.1=pyhd8ed1ab_0 - tornado=6.4=py39ha09f3b3_0 - traitlets=5.14.1=pyhd8ed1ab_0 - typing_extensions=4.9.0=pyha770c72_0 @@ -177,6 +181,7 @@ dependencies: - widgetsnbextension=4.0.10=pyhd8ed1ab_0 - zipp=3.17.0=pyhd8ed1ab_0 - asttokens=2.4.1=pyhd8ed1ab_0 + - babel=2.14.0=pyhd8ed1ab_0 - cctools=973.0.1=h40f6528_16 - clang=16.0.6=hdae98eb_5 - comm=0.2.1=pyhd8ed1ab_0 @@ -191,13 +196,11 @@ dependencies: - liblapack=3.9.0=20_osx64_openblas - matplotlib-inline=0.1.6=pyhd8ed1ab_0 - memory-allocator=0.1.3=py39hdc70f33_0 - - meson=1.3.2=pyhd8ed1ab_0 - pexpect=4.9.0=pyhd8ed1ab_0 - pip=24.0=pyhd8ed1ab_0 - pplpy=0.8.9=py39h248ee18_0 - primecountpy=0.1.0=py39h8ee36c8_4 - prompt-toolkit=3.0.42=pyha770c72_0 - - pyproject-metadata=0.7.1=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - sympy=1.12=pypyh9d50eac_103 - urllib3=2.2.1=pyhd8ed1ab_0 @@ -209,7 +212,6 @@ dependencies: - importlib-resources=6.1.1=pyhd8ed1ab_0 - importlib_metadata=7.0.1=hd8ed1ab_0 - liblapacke=3.9.0=20_osx64_openblas - - meson-python=0.15.0=pyh0c530f3_0 - numpy=1.26.4=py39h28c39a1_0 - requests=2.31.0=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 @@ -235,3 +237,9 @@ dependencies: - clangxx_impl_osx-64=16.0.6=h6d92fbe_9 - clangxx_osx-64=16.0.6=hb91bd55_9 - cxx-compiler=1.6.0=h7728843_0 + - sphinxcontrib-applehelp=1.0.8=pyhd8ed1ab_0 + - sphinxcontrib-devhelp=1.0.6=pyhd8ed1ab_0 + - sphinxcontrib-htmlhelp=2.0.5=pyhd8ed1ab_0 + - sphinxcontrib-qthelp=1.0.7=pyhd8ed1ab_0 + - sphinx=7.2.6=pyhd8ed1ab_0 + - sphinxcontrib-serializinghtml=1.1.10=pyhd8ed1ab_0 diff --git a/src/environment-dev-3.10-linux-aarch64.yml b/src/environment-dev-3.10-linux-aarch64.yml index e263c5dd407..1f52dfa0442 100644 --- a/src/environment-dev-3.10-linux-aarch64.yml +++ b/src/environment-dev-3.10-linux-aarch64.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: linux-aarch64 -# input_hash: eed9292ae08285da3f635921b3ea2c9a7485fb35b3273d63f890ad3a42b44538 +# input_hash: 48c7de04cfa4d7e770d059eb789eca5b00e4233d3147a53dea402c0295316f67 channels: - conda-forge @@ -61,7 +61,6 @@ dependencies: - lrcalc=2.1=h2f0025b_6 - nauty=2.8.8=h31becfc_1 - ncurses=6.4=h0425590_2 - - ninja=1.11.1=hdd96247_0 - openssl=3.2.1=h31becfc_0 - palp=2.20=hb9de7d4_0 - pkg-config=0.29.2=hb9de7d4_1008 @@ -179,7 +178,7 @@ dependencies: - pysocks=1.7.1=pyha2e5f31_6 - pytz=2024.1=pyhd8ed1ab_0 - pyzmq=25.1.2=py310h014ca53_0 - - setuptools=69.1.0=pyhd8ed1ab_1 + - setuptools=69.1.1=pyhd8ed1ab_0 - singular=4.3.2.p8=hbe76a8a_1 - six=1.16.0=pyh6c4a22f_0 - snowballstemmer=2.2.0=pyhd8ed1ab_0 @@ -201,7 +200,7 @@ dependencies: - boost-cpp=1.84.0=ha990451_1 - brial=1.2.12=pyh694c41f_1 - comm=0.2.1=pyhd8ed1ab_0 - - coverage=7.4.2=py310h7c1f4a2_0 + - coverage=7.4.3=py310h7c1f4a2_0 - cxx-compiler=1.6.0=h2a328a1_0 - cypari2=2.1.4=py310h4cbba44_2 - fonttools=4.49.0=py310hb299538_0 @@ -215,14 +214,12 @@ dependencies: - liblapack=3.9.0=20_linuxaarch64_openblas - matplotlib-inline=0.1.6=pyhd8ed1ab_0 - memory-allocator=0.1.3=py310hb299538_0 - - meson=1.3.2=pyhd8ed1ab_0 - pexpect=4.9.0=pyhd8ed1ab_0 - pillow=10.2.0=py310h0ae3e2b_0 - pip=24.0=pyhd8ed1ab_0 - pplpy=0.8.9=py310hd5c817c_0 - primecountpy=0.1.0=py310h586407a_4 - prompt-toolkit=3.0.42=pyha770c72_0 - - pyproject-metadata=0.7.1=pyhd8ed1ab_0 - pytest=8.0.1=pyhd8ed1ab_1 - python-dateutil=2.8.2=pyhd8ed1ab_0 - sympy=1.12=pypyh9d50eac_103 @@ -233,7 +230,6 @@ dependencies: - iml=1.0.5=h9076c59_1003 - importlib_metadata=7.0.1=hd8ed1ab_0 - liblapacke=3.9.0=20_linuxaarch64_openblas - - meson-python=0.15.0=pyh0c530f3_0 - numpy=1.26.4=py310hcbab775_0 - pytest-xdist=3.5.0=pyhd8ed1ab_0 - requests=2.31.0=pyhd8ed1ab_0 @@ -243,7 +239,7 @@ dependencies: - fpylll=0.6.1=py310hfdbf2a6_0 - giac=1.9.0.21=h04922a4_1 - igraph=0.10.10=hcfae7ab_0 - - ipython=8.22.0=pyh707e725_0 + - ipython=8.22.1=pyh707e725_0 - jupyter_client=8.6.0=pyhd8ed1ab_0 - linbox=1.6.3=h681a5ee_8 - scipy=1.11.3=py310hcbab775_1 diff --git a/src/environment-dev-3.10-linux.yml b/src/environment-dev-3.10-linux.yml index f4df98a8751..906af974d0a 100644 --- a/src/environment-dev-3.10-linux.yml +++ b/src/environment-dev-3.10-linux.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: effe24293e92dbce44cb4fef038ec98e3a7920c051f25f1d927e68a9afd74197 +# input_hash: 9e57280e784d9744d31e3409ca495963b80a0068d863b5e7f8e753def6383460 channels: - conda-forge @@ -61,7 +61,6 @@ dependencies: - lrcalc=2.1=h59595ed_6 - nauty=2.8.8=hd590300_1 - ncurses=6.4=h59595ed_2 - - ninja=1.11.1=h924138e_0 - openssl=3.2.1=hd590300_0 - palp=2.20=h36c2ea0_0 - pkg-config=0.29.2=h36c2ea0_1008 @@ -179,7 +178,7 @@ dependencies: - pysocks=1.7.1=pyha2e5f31_6 - pytz=2024.1=pyhd8ed1ab_0 - pyzmq=25.1.2=py310h795f18f_0 - - setuptools=69.1.0=pyhd8ed1ab_1 + - setuptools=69.1.1=pyhd8ed1ab_0 - singular=4.3.2.p8=h33f5c3f_1 - six=1.16.0=pyh6c4a22f_0 - snowballstemmer=2.2.0=pyhd8ed1ab_0 @@ -201,7 +200,7 @@ dependencies: - boost-cpp=1.84.0=h44aadfe_1 - brial=1.2.12=pyh694c41f_1 - comm=0.2.1=pyhd8ed1ab_0 - - coverage=7.4.2=py310h2372a71_0 + - coverage=7.4.3=py310h2372a71_0 - cxx-compiler=1.6.0=h00ab1b0_0 - cypari2=2.1.4=py310h14ed79e_2 - fonttools=4.49.0=py310h2372a71_0 @@ -215,14 +214,12 @@ dependencies: - liblapack=3.9.0=20_linux64_openblas - matplotlib-inline=0.1.6=pyhd8ed1ab_0 - memory-allocator=0.1.3=py310h2372a71_0 - - meson=1.3.2=pyhd8ed1ab_0 - pexpect=4.9.0=pyhd8ed1ab_0 - pillow=10.2.0=py310h01dd4db_0 - pip=24.0=pyhd8ed1ab_0 - pplpy=0.8.9=py310h28f6eb6_0 - primecountpy=0.1.0=py310hd41b1e2_4 - prompt-toolkit=3.0.42=pyha770c72_0 - - pyproject-metadata=0.7.1=pyhd8ed1ab_0 - pytest=8.0.1=pyhd8ed1ab_1 - python-dateutil=2.8.2=pyhd8ed1ab_0 - sympy=1.12=pypyh9d50eac_103 @@ -233,7 +230,6 @@ dependencies: - iml=1.0.5=hd75c201_1003 - importlib_metadata=7.0.1=hd8ed1ab_0 - liblapacke=3.9.0=20_linux64_openblas - - meson-python=0.15.0=pyh0c530f3_0 - numpy=1.26.4=py310hb13e2d6_0 - pytest-xdist=3.5.0=pyhd8ed1ab_0 - requests=2.31.0=pyhd8ed1ab_0 @@ -243,7 +239,7 @@ dependencies: - fpylll=0.6.1=py310h7e26f94_0 - giac=1.9.0.21=h673759e_1 - igraph=0.10.10=h153f77b_0 - - ipython=8.22.0=pyh707e725_0 + - ipython=8.22.1=pyh707e725_0 - jupyter_client=8.6.0=pyhd8ed1ab_0 - linbox=1.6.3=ha329b40_8 - scipy=1.11.4=py310hb13e2d6_0 diff --git a/src/environment-dev-3.10-macos-arm64.yml b/src/environment-dev-3.10-macos-arm64.yml index b9af09265b7..7ba239934a1 100644 --- a/src/environment-dev-3.10-macos-arm64.yml +++ b/src/environment-dev-3.10-macos-arm64.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: osx-arm64 -# input_hash: 988991bcd1e95620068de1a155c3b397a4d8d455214525dcdb0fa0ed3f2382f4 +# input_hash: 1cbc354aec588ee8383c3488e75946521676c45f7d2832a1bb4e50470e44e54a channels: - conda-forge @@ -58,7 +58,6 @@ dependencies: - libxml2=2.12.5=h0d0cfa8_0 - lrcalc=2.1=hebf3989_6 - ncurses=6.4=h463b476_2 - - ninja=1.11.1=hffc8910_0 - openssl=3.2.1=h0d3ecfb_0 - pari-seadata=0.0.20090618=0 - pcre2=10.42=h26f9a81_0 @@ -172,7 +171,7 @@ dependencies: - pysocks=1.7.1=pyha2e5f31_6 - pytz=2024.1=pyhd8ed1ab_0 - pyzmq=25.1.2=py310hbb13138_0 - - setuptools=69.1.0=pyhd8ed1ab_1 + - setuptools=69.1.1=pyhd8ed1ab_0 - singular=4.3.2.p8=hb460b52_1 - six=1.16.0=pyh6c4a22f_0 - snowballstemmer=2.2.0=pyhd8ed1ab_0 @@ -194,7 +193,7 @@ dependencies: - cctools=973.0.1=h4faf515_16 - clang=16.0.6=h30cc82d_5 - comm=0.2.1=pyhd8ed1ab_0 - - coverage=7.4.2=py310hd125d64_0 + - coverage=7.4.3=py310hd125d64_0 - cypari2=2.1.4=py310h5e3d6bc_2 - fonttools=4.49.0=py310hd125d64_0 - importlib-metadata=7.0.1=pyha770c72_0 @@ -206,13 +205,11 @@ dependencies: - liblapack=3.9.0=20_osxarm64_openblas - matplotlib-inline=0.1.6=pyhd8ed1ab_0 - memory-allocator=0.1.3=py310h2aa6e3c_0 - - meson=1.3.2=pyhd8ed1ab_0 - pexpect=4.9.0=pyhd8ed1ab_0 - pip=24.0=pyhd8ed1ab_0 - pplpy=0.8.9=py310hab1f656_0 - primecountpy=0.1.0=py310h38f39d4_4 - prompt-toolkit=3.0.42=pyha770c72_0 - - pyproject-metadata=0.7.1=pyhd8ed1ab_0 - pytest=8.0.1=pyhd8ed1ab_1 - python-dateutil=2.8.2=pyhd8ed1ab_0 - sympy=1.12=pypyh9d50eac_103 @@ -224,7 +221,6 @@ dependencies: - iml=1.0.5=hd52f0d1_1003 - importlib_metadata=7.0.1=hd8ed1ab_0 - liblapacke=3.9.0=20_osxarm64_openblas - - meson-python=0.15.0=pyh0c530f3_0 - numpy=1.26.4=py310hd45542a_0 - pytest-xdist=3.5.0=pyhd8ed1ab_0 - requests=2.31.0=pyhd8ed1ab_0 @@ -235,7 +231,7 @@ dependencies: - fpylll=0.6.1=py310hd9be144_0 - giac=1.9.0.21=h1c96721_1 - igraph=0.10.10=h48be1ad_0 - - ipython=8.22.0=pyh707e725_0 + - ipython=8.22.1=pyh707e725_0 - jupyter_client=8.6.0=pyhd8ed1ab_0 - linbox=1.6.3=h380be0f_8 - scipy=1.11.4=py310h2b794db_0 diff --git a/src/environment-dev-3.10-macos.yml b/src/environment-dev-3.10-macos.yml index b37308b1a4b..06687199740 100644 --- a/src/environment-dev-3.10-macos.yml +++ b/src/environment-dev-3.10-macos.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: osx-64 -# input_hash: be1d55049d9f6d603c39ad3609f7dcf79e8517bb06a0084908f84a182e2caf97 +# input_hash: 7689d29edcd0e307e8a04eebd1beac17126466d56ceccac87a587b8dcbdd442e channels: - conda-forge @@ -58,7 +58,6 @@ dependencies: - libxml2=2.12.5=hc0ae0f7_0 - lrcalc=2.1=h73e2aa4_6 - ncurses=6.4=h93d8f39_2 - - ninja=1.11.1=hb8565cd_0 - openssl=3.2.1=hd75f5a5_0 - pari-seadata=0.0.20090618=0 - pkg-config=0.29.2=ha3d46e9_1008 @@ -170,7 +169,7 @@ dependencies: - pysocks=1.7.1=pyha2e5f31_6 - pytz=2024.1=pyhd8ed1ab_0 - pyzmq=25.1.2=py310h6b67f7f_0 - - setuptools=69.1.0=pyhd8ed1ab_1 + - setuptools=69.1.1=pyhd8ed1ab_0 - singular=4.3.2.p8=h0d51a9f_1 - six=1.16.0=pyh6c4a22f_0 - snowballstemmer=2.2.0=pyhd8ed1ab_0 @@ -192,7 +191,7 @@ dependencies: - cctools=973.0.1=h40f6528_16 - clang=16.0.6=hdae98eb_5 - comm=0.2.1=pyhd8ed1ab_0 - - coverage=7.4.2=py310hb372a2b_0 + - coverage=7.4.3=py310hb372a2b_0 - cypari2=2.1.4=py310hc7df965_2 - fonttools=4.49.0=py310hb372a2b_0 - importlib-metadata=7.0.1=pyha770c72_0 @@ -204,13 +203,11 @@ dependencies: - liblapack=3.9.0=20_osx64_openblas - matplotlib-inline=0.1.6=pyhd8ed1ab_0 - memory-allocator=0.1.3=py310h6729b98_0 - - meson=1.3.2=pyhd8ed1ab_0 - pexpect=4.9.0=pyhd8ed1ab_0 - pip=24.0=pyhd8ed1ab_0 - pplpy=0.8.9=py310hd89f7aa_0 - primecountpy=0.1.0=py310h88cfcbd_4 - prompt-toolkit=3.0.42=pyha770c72_0 - - pyproject-metadata=0.7.1=pyhd8ed1ab_0 - pytest=8.0.1=pyhd8ed1ab_1 - python-dateutil=2.8.2=pyhd8ed1ab_0 - sympy=1.12=pypyh9d50eac_103 @@ -222,7 +219,6 @@ dependencies: - iml=1.0.5=h64b42ca_1003 - importlib_metadata=7.0.1=hd8ed1ab_0 - liblapacke=3.9.0=20_osx64_openblas - - meson-python=0.15.0=pyh0c530f3_0 - numpy=1.26.4=py310h4bfa8fc_0 - pytest-xdist=3.5.0=pyhd8ed1ab_0 - requests=2.31.0=pyhd8ed1ab_0 @@ -233,7 +229,7 @@ dependencies: - fpylll=0.6.1=py310h65a3d7e_0 - giac=1.9.0.21=h92f3f65_1 - igraph=0.10.10=h6b221b4_0 - - ipython=8.22.0=pyh707e725_0 + - ipython=8.22.1=pyh707e725_0 - jupyter_client=8.6.0=pyhd8ed1ab_0 - linbox=1.6.3=hfb9b24e_8 - scipy=1.11.4=py310h3f1db6d_0 diff --git a/src/environment-dev-3.11-linux-aarch64.yml b/src/environment-dev-3.11-linux-aarch64.yml index 3510af10df3..af8f2050c35 100644 --- a/src/environment-dev-3.11-linux-aarch64.yml +++ b/src/environment-dev-3.11-linux-aarch64.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: linux-aarch64 -# input_hash: 09f4725aa31cbf4e2e85442e1df745c5ca5481c37c9a5dba4f78f49264e10bdb +# input_hash: d98e4f91321717a99ad09cd0fb01d5ac13f04a013fd4901ebce56393880cc0af channels: - conda-forge @@ -61,7 +61,6 @@ dependencies: - lrcalc=2.1=h2f0025b_6 - nauty=2.8.8=h31becfc_1 - ncurses=6.4=h0425590_2 - - ninja=1.11.1=hdd96247_0 - openssl=3.2.1=h31becfc_0 - palp=2.20=hb9de7d4_0 - pkg-config=0.29.2=hb9de7d4_1008 @@ -179,7 +178,7 @@ dependencies: - pysocks=1.7.1=pyha2e5f31_6 - pytz=2024.1=pyhd8ed1ab_0 - pyzmq=25.1.2=py311h0fdcd05_0 - - setuptools=69.1.0=pyhd8ed1ab_1 + - setuptools=69.1.1=pyhd8ed1ab_0 - singular=4.3.2.p8=hbe76a8a_1 - six=1.16.0=pyh6c4a22f_0 - snowballstemmer=2.2.0=pyhd8ed1ab_0 @@ -200,7 +199,7 @@ dependencies: - boost-cpp=1.84.0=ha990451_1 - brial=1.2.12=pyh694c41f_1 - comm=0.2.1=pyhd8ed1ab_0 - - coverage=7.4.2=py311hc8f2f60_0 + - coverage=7.4.3=py311hc8f2f60_0 - cxx-compiler=1.6.0=h2a328a1_0 - cypari2=2.1.4=py311h5ab95f0_2 - fonttools=4.49.0=py311hcd402e7_0 @@ -214,14 +213,12 @@ dependencies: - liblapack=3.9.0=20_linuxaarch64_openblas - matplotlib-inline=0.1.6=pyhd8ed1ab_0 - memory-allocator=0.1.3=py311hcd402e7_0 - - meson=1.3.2=pyhd8ed1ab_0 - pexpect=4.9.0=pyhd8ed1ab_0 - pillow=10.2.0=py311hbcc2232_0 - pip=24.0=pyhd8ed1ab_0 - pplpy=0.8.9=py311haefeb0b_0 - primecountpy=0.1.0=py311h098ece5_4 - prompt-toolkit=3.0.42=pyha770c72_0 - - pyproject-metadata=0.7.1=pyhd8ed1ab_0 - pytest=8.0.1=pyhd8ed1ab_1 - python-dateutil=2.8.2=pyhd8ed1ab_0 - sympy=1.12=pypyh9d50eac_103 @@ -232,7 +229,6 @@ dependencies: - iml=1.0.5=h9076c59_1003 - importlib_metadata=7.0.1=hd8ed1ab_0 - liblapacke=3.9.0=20_linuxaarch64_openblas - - meson-python=0.15.0=pyh0c530f3_0 - numpy=1.26.4=py311h69ead2a_0 - pytest-xdist=3.5.0=pyhd8ed1ab_0 - requests=2.31.0=pyhd8ed1ab_0 @@ -242,7 +238,7 @@ dependencies: - fpylll=0.6.1=py311h5d3d69a_0 - giac=1.9.0.21=h04922a4_1 - igraph=0.10.10=hcfae7ab_0 - - ipython=8.22.0=pyh707e725_0 + - ipython=8.22.1=pyh707e725_0 - jupyter_client=8.6.0=pyhd8ed1ab_0 - linbox=1.6.3=h681a5ee_8 - scipy=1.11.3=py311h69ead2a_1 diff --git a/src/environment-dev-3.11-linux.yml b/src/environment-dev-3.11-linux.yml index 875ec6ac0a3..110c9b87e9f 100644 --- a/src/environment-dev-3.11-linux.yml +++ b/src/environment-dev-3.11-linux.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: e1f01075026a5517d94682cc74044f8236c0120b681ca98df9af12a1de0e6237 +# input_hash: 0604c719ebb657ecdc2c2c6dcd11e7ae3c318420cdfcb7c18fd2b1b241777630 channels: - conda-forge @@ -61,7 +61,6 @@ dependencies: - lrcalc=2.1=h59595ed_6 - nauty=2.8.8=hd590300_1 - ncurses=6.4=h59595ed_2 - - ninja=1.11.1=h924138e_0 - openssl=3.2.1=hd590300_0 - palp=2.20=h36c2ea0_0 - pkg-config=0.29.2=h36c2ea0_1008 @@ -179,7 +178,7 @@ dependencies: - pysocks=1.7.1=pyha2e5f31_6 - pytz=2024.1=pyhd8ed1ab_0 - pyzmq=25.1.2=py311h34ded2d_0 - - setuptools=69.1.0=pyhd8ed1ab_1 + - setuptools=69.1.1=pyhd8ed1ab_0 - singular=4.3.2.p8=h33f5c3f_1 - six=1.16.0=pyh6c4a22f_0 - snowballstemmer=2.2.0=pyhd8ed1ab_0 @@ -200,7 +199,7 @@ dependencies: - boost-cpp=1.84.0=h44aadfe_1 - brial=1.2.12=pyh694c41f_1 - comm=0.2.1=pyhd8ed1ab_0 - - coverage=7.4.2=py311h459d7ec_0 + - coverage=7.4.3=py311h459d7ec_0 - cxx-compiler=1.6.0=h00ab1b0_0 - cypari2=2.1.4=py311hd2352ae_2 - fonttools=4.49.0=py311h459d7ec_0 @@ -214,14 +213,12 @@ dependencies: - liblapack=3.9.0=20_linux64_openblas - matplotlib-inline=0.1.6=pyhd8ed1ab_0 - memory-allocator=0.1.3=py311h459d7ec_0 - - meson=1.3.2=pyhd8ed1ab_0 - pexpect=4.9.0=pyhd8ed1ab_0 - pillow=10.2.0=py311ha6c5da5_0 - pip=24.0=pyhd8ed1ab_0 - pplpy=0.8.9=py311h85abca9_0 - primecountpy=0.1.0=py311h9547e67_4 - prompt-toolkit=3.0.42=pyha770c72_0 - - pyproject-metadata=0.7.1=pyhd8ed1ab_0 - pytest=8.0.1=pyhd8ed1ab_1 - python-dateutil=2.8.2=pyhd8ed1ab_0 - sympy=1.12=pypyh9d50eac_103 @@ -232,7 +229,6 @@ dependencies: - iml=1.0.5=hd75c201_1003 - importlib_metadata=7.0.1=hd8ed1ab_0 - liblapacke=3.9.0=20_linux64_openblas - - meson-python=0.15.0=pyh0c530f3_0 - numpy=1.26.4=py311h64a7726_0 - pytest-xdist=3.5.0=pyhd8ed1ab_0 - requests=2.31.0=pyhd8ed1ab_0 @@ -242,7 +238,7 @@ dependencies: - fpylll=0.6.1=py311hcfae7cf_0 - giac=1.9.0.21=h673759e_1 - igraph=0.10.10=h153f77b_0 - - ipython=8.22.0=pyh707e725_0 + - ipython=8.22.1=pyh707e725_0 - jupyter_client=8.6.0=pyhd8ed1ab_0 - linbox=1.6.3=ha329b40_8 - scipy=1.11.4=py311h64a7726_0 diff --git a/src/environment-dev-3.11-macos-arm64.yml b/src/environment-dev-3.11-macos-arm64.yml index de185d404a3..3bd24faf87a 100644 --- a/src/environment-dev-3.11-macos-arm64.yml +++ b/src/environment-dev-3.11-macos-arm64.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: osx-arm64 -# input_hash: a9b5a4d6e3d27347e7e373931e24f51b2eb1bd729ae05e506da9b404f801553e +# input_hash: 6c3ab7eef526b12517e6c331e6ce8cdeeabe32fc46589d4661c34f781ce08928 channels: - conda-forge @@ -58,7 +58,6 @@ dependencies: - libxml2=2.12.5=h0d0cfa8_0 - lrcalc=2.1=hebf3989_6 - ncurses=6.4=h463b476_2 - - ninja=1.11.1=hffc8910_0 - openssl=3.2.1=h0d3ecfb_0 - pari-seadata=0.0.20090618=0 - pcre2=10.42=h26f9a81_0 @@ -172,7 +171,7 @@ dependencies: - pysocks=1.7.1=pyha2e5f31_6 - pytz=2024.1=pyhd8ed1ab_0 - pyzmq=25.1.2=py311h6727e71_0 - - setuptools=69.1.0=pyhd8ed1ab_1 + - setuptools=69.1.1=pyhd8ed1ab_0 - singular=4.3.2.p8=hb460b52_1 - six=1.16.0=pyh6c4a22f_0 - snowballstemmer=2.2.0=pyhd8ed1ab_0 @@ -205,13 +204,11 @@ dependencies: - liblapack=3.9.0=20_osxarm64_openblas - matplotlib-inline=0.1.6=pyhd8ed1ab_0 - memory-allocator=0.1.3=py311heffc1b2_0 - - meson=1.3.2=pyhd8ed1ab_0 - pexpect=4.9.0=pyhd8ed1ab_0 - pip=24.0=pyhd8ed1ab_0 - pplpy=0.8.9=py311h5ba3760_0 - primecountpy=0.1.0=py311he4fd1f5_4 - prompt-toolkit=3.0.42=pyha770c72_0 - - pyproject-metadata=0.7.1=pyhd8ed1ab_0 - pytest=8.0.1=pyhd8ed1ab_1 - python-dateutil=2.8.2=pyhd8ed1ab_0 - sympy=1.12=pypyh9d50eac_103 @@ -223,7 +220,6 @@ dependencies: - iml=1.0.5=hd52f0d1_1003 - importlib_metadata=7.0.1=hd8ed1ab_0 - liblapacke=3.9.0=20_osxarm64_openblas - - meson-python=0.15.0=pyh0c530f3_0 - numpy=1.26.4=py311h7125741_0 - pytest-xdist=3.5.0=pyhd8ed1ab_0 - requests=2.31.0=pyhd8ed1ab_0 @@ -234,7 +230,7 @@ dependencies: - fpylll=0.6.1=py311h341b96b_0 - giac=1.9.0.21=h1c96721_1 - igraph=0.10.10=h48be1ad_0 - - ipython=8.22.0=pyh707e725_0 + - ipython=8.22.1=pyh707e725_0 - jupyter_client=8.6.0=pyhd8ed1ab_0 - linbox=1.6.3=h380be0f_8 - scipy=1.11.4=py311h2b215a9_0 diff --git a/src/environment-dev-3.11-macos.yml b/src/environment-dev-3.11-macos.yml index bf55b3fc073..b9d0e513eb4 100644 --- a/src/environment-dev-3.11-macos.yml +++ b/src/environment-dev-3.11-macos.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: osx-64 -# input_hash: 3989c533ba9ab168f49b67a7184e516615f897c7a9efb281ac72f1abb96c478d +# input_hash: 51c5c798404fa4f0a0696f61971bfdedd949f70270ddf2a30cb7ab38121ed829 channels: - conda-forge @@ -58,7 +58,6 @@ dependencies: - libxml2=2.12.5=hc0ae0f7_0 - lrcalc=2.1=h73e2aa4_6 - ncurses=6.4=h93d8f39_2 - - ninja=1.11.1=hb8565cd_0 - openssl=3.2.1=hd75f5a5_0 - pari-seadata=0.0.20090618=0 - pkg-config=0.29.2=ha3d46e9_1008 @@ -170,7 +169,7 @@ dependencies: - pysocks=1.7.1=pyha2e5f31_6 - pytz=2024.1=pyhd8ed1ab_0 - pyzmq=25.1.2=py311h889d6d6_0 - - setuptools=69.1.0=pyhd8ed1ab_1 + - setuptools=69.1.1=pyhd8ed1ab_0 - singular=4.3.2.p8=h0d51a9f_1 - six=1.16.0=pyh6c4a22f_0 - snowballstemmer=2.2.0=pyhd8ed1ab_0 @@ -191,7 +190,7 @@ dependencies: - cctools=973.0.1=h40f6528_16 - clang=16.0.6=hdae98eb_5 - comm=0.2.1=pyhd8ed1ab_0 - - coverage=7.4.2=py311he705e18_0 + - coverage=7.4.3=py311he705e18_0 - cypari2=2.1.4=py311h4fde0ae_2 - fonttools=4.49.0=py311he705e18_0 - importlib-metadata=7.0.1=pyha770c72_0 @@ -203,13 +202,11 @@ dependencies: - liblapack=3.9.0=20_osx64_openblas - matplotlib-inline=0.1.6=pyhd8ed1ab_0 - memory-allocator=0.1.3=py311h2725bcf_0 - - meson=1.3.2=pyhd8ed1ab_0 - pexpect=4.9.0=pyhd8ed1ab_0 - pip=24.0=pyhd8ed1ab_0 - pplpy=0.8.9=py311h7355a2a_0 - primecountpy=0.1.0=py311h5fe6e05_4 - prompt-toolkit=3.0.42=pyha770c72_0 - - pyproject-metadata=0.7.1=pyhd8ed1ab_0 - pytest=8.0.1=pyhd8ed1ab_1 - python-dateutil=2.8.2=pyhd8ed1ab_0 - sympy=1.12=pypyh9d50eac_103 @@ -221,7 +218,6 @@ dependencies: - iml=1.0.5=h64b42ca_1003 - importlib_metadata=7.0.1=hd8ed1ab_0 - liblapacke=3.9.0=20_osx64_openblas - - meson-python=0.15.0=pyh0c530f3_0 - numpy=1.26.4=py311hc43a94b_0 - pytest-xdist=3.5.0=pyhd8ed1ab_0 - requests=2.31.0=pyhd8ed1ab_0 @@ -232,7 +228,7 @@ dependencies: - fpylll=0.6.1=py311h85fbf69_0 - giac=1.9.0.21=h92f3f65_1 - igraph=0.10.10=h6b221b4_0 - - ipython=8.22.0=pyh707e725_0 + - ipython=8.22.1=pyh707e725_0 - jupyter_client=8.6.0=pyhd8ed1ab_0 - linbox=1.6.3=hfb9b24e_8 - scipy=1.11.4=py311he0bea55_0 diff --git a/src/environment-dev-3.9-linux-aarch64.yml b/src/environment-dev-3.9-linux-aarch64.yml index fdfa4424f0d..13f67c3b383 100644 --- a/src/environment-dev-3.9-linux-aarch64.yml +++ b/src/environment-dev-3.9-linux-aarch64.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: linux-aarch64 -# input_hash: 02709e5dae3489462cd3820535dc79cb7b3d413a76b055afd91854928d890b83 +# input_hash: e90839a3e330be50d83147d80700e257661b335b8d8129f0dc024b10554a01a5 channels: - conda-forge @@ -61,7 +61,6 @@ dependencies: - lrcalc=2.1=h2f0025b_6 - nauty=2.8.8=h31becfc_1 - ncurses=6.4=h0425590_2 - - ninja=1.11.1=hdd96247_0 - openssl=3.2.1=h31becfc_0 - palp=2.20=hb9de7d4_0 - pkg-config=0.29.2=hb9de7d4_1008 @@ -179,7 +178,7 @@ dependencies: - pysocks=1.7.1=pyha2e5f31_6 - pytz=2024.1=pyhd8ed1ab_0 - pyzmq=25.1.2=py39hbab03a2_0 - - setuptools=69.1.0=pyhd8ed1ab_1 + - setuptools=69.1.1=pyhd8ed1ab_0 - singular=4.3.2.p8=hbe76a8a_1 - six=1.16.0=pyh6c4a22f_0 - snowballstemmer=2.2.0=pyhd8ed1ab_0 @@ -201,7 +200,7 @@ dependencies: - boost-cpp=1.84.0=ha990451_1 - brial=1.2.12=pyh694c41f_1 - comm=0.2.1=pyhd8ed1ab_0 - - coverage=7.4.1=py39h7cc1d5f_0 + - coverage=7.4.3=py39h7cc1d5f_0 - cxx-compiler=1.6.0=h2a328a1_0 - cypari2=2.1.4=py39h532d932_2 - fonttools=4.49.0=py39h898b7ef_0 @@ -215,14 +214,12 @@ dependencies: - liblapack=3.9.0=20_linuxaarch64_openblas - matplotlib-inline=0.1.6=pyhd8ed1ab_0 - memory-allocator=0.1.3=py39h898b7ef_0 - - meson=1.3.2=pyhd8ed1ab_0 - pexpect=4.9.0=pyhd8ed1ab_0 - pillow=10.2.0=py39h8ce38d7_0 - pip=24.0=pyhd8ed1ab_0 - pplpy=0.8.9=py39h087fc0e_0 - primecountpy=0.1.0=py39hd16970a_3 - prompt-toolkit=3.0.42=pyha770c72_0 - - pyproject-metadata=0.7.1=pyhd8ed1ab_0 - pytest=8.0.1=pyhd8ed1ab_1 - python-dateutil=2.8.2=pyhd8ed1ab_0 - sympy=1.12=pypyh9d50eac_103 @@ -234,7 +231,6 @@ dependencies: - importlib-resources=6.1.1=pyhd8ed1ab_0 - importlib_metadata=7.0.1=hd8ed1ab_0 - liblapacke=3.9.0=20_linuxaarch64_openblas - - meson-python=0.15.0=pyh0c530f3_0 - numpy=1.26.4=py39h91c28bb_0 - pytest-xdist=3.5.0=pyhd8ed1ab_0 - requests=2.31.0=pyhd8ed1ab_0 diff --git a/src/environment-dev-3.9-linux.yml b/src/environment-dev-3.9-linux.yml index 92cee9e5ba1..f0dd9dbf741 100644 --- a/src/environment-dev-3.9-linux.yml +++ b/src/environment-dev-3.9-linux.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: b299ab03c2902da2b8b4bcf65c23cc041a98f358203e1f2df50a6a0be8f3eda6 +# input_hash: 617c43338a22d2c8fec340d169eba8993ba5e7753bf6bc95b8581595801b3057 channels: - conda-forge @@ -61,7 +61,6 @@ dependencies: - lrcalc=2.1=h59595ed_6 - nauty=2.8.8=hd590300_1 - ncurses=6.4=h59595ed_2 - - ninja=1.11.1=h924138e_0 - openssl=3.2.1=hd590300_0 - palp=2.20=h36c2ea0_0 - pkg-config=0.29.2=h36c2ea0_1008 @@ -179,7 +178,7 @@ dependencies: - pysocks=1.7.1=pyha2e5f31_6 - pytz=2024.1=pyhd8ed1ab_0 - pyzmq=25.1.2=py39h8c080ef_0 - - setuptools=69.1.0=pyhd8ed1ab_1 + - setuptools=69.1.1=pyhd8ed1ab_0 - singular=4.3.2.p8=h33f5c3f_1 - six=1.16.0=pyh6c4a22f_0 - snowballstemmer=2.2.0=pyhd8ed1ab_0 @@ -201,7 +200,7 @@ dependencies: - boost-cpp=1.84.0=h44aadfe_1 - brial=1.2.12=pyh694c41f_1 - comm=0.2.1=pyhd8ed1ab_0 - - coverage=7.4.1=py39hd1e30aa_0 + - coverage=7.4.3=py39hd1e30aa_0 - cxx-compiler=1.6.0=h00ab1b0_0 - cypari2=2.1.4=py39h1698a45_2 - fonttools=4.49.0=py39hd1e30aa_0 @@ -215,14 +214,12 @@ dependencies: - liblapack=3.9.0=20_linux64_openblas - matplotlib-inline=0.1.6=pyhd8ed1ab_0 - memory-allocator=0.1.3=py39hd1e30aa_0 - - meson=1.3.2=pyhd8ed1ab_0 - pexpect=4.9.0=pyhd8ed1ab_0 - pillow=10.2.0=py39had0adad_0 - pip=24.0=pyhd8ed1ab_0 - pplpy=0.8.9=py39hba3e9e5_0 - primecountpy=0.1.0=py39h7633fee_4 - prompt-toolkit=3.0.42=pyha770c72_0 - - pyproject-metadata=0.7.1=pyhd8ed1ab_0 - pytest=8.0.1=pyhd8ed1ab_1 - python-dateutil=2.8.2=pyhd8ed1ab_0 - sympy=1.12=pypyh9d50eac_103 @@ -234,7 +231,6 @@ dependencies: - importlib-resources=6.1.1=pyhd8ed1ab_0 - importlib_metadata=7.0.1=hd8ed1ab_0 - liblapacke=3.9.0=20_linux64_openblas - - meson-python=0.15.0=pyh0c530f3_0 - numpy=1.26.4=py39h474f0d3_0 - pytest-xdist=3.5.0=pyhd8ed1ab_0 - requests=2.31.0=pyhd8ed1ab_0 diff --git a/src/environment-dev-3.9-macos-arm64.yml b/src/environment-dev-3.9-macos-arm64.yml index db6d0420f12..fd3c1e88d00 100644 --- a/src/environment-dev-3.9-macos-arm64.yml +++ b/src/environment-dev-3.9-macos-arm64.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: osx-arm64 -# input_hash: c537ed24865205fb5ae9e843d1689163e38c315b0af17f31ad31ce4905da6171 +# input_hash: f0bbd96c2a5cac2effc638505223f3cbcb8d81f8b55a3ca045c88cab5ad6123d channels: - conda-forge @@ -58,7 +58,6 @@ dependencies: - libxml2=2.12.5=h0d0cfa8_0 - lrcalc=2.1=hebf3989_6 - ncurses=6.4=h463b476_2 - - ninja=1.11.1=hffc8910_0 - openssl=3.2.1=h0d3ecfb_0 - pari-seadata=0.0.20090618=0 - pcre2=10.42=h26f9a81_0 @@ -172,7 +171,7 @@ dependencies: - pysocks=1.7.1=pyha2e5f31_6 - pytz=2024.1=pyhd8ed1ab_0 - pyzmq=25.1.2=py39he1e2164_0 - - setuptools=69.1.0=pyhd8ed1ab_1 + - setuptools=69.1.1=pyhd8ed1ab_0 - singular=4.3.2.p8=hb460b52_1 - six=1.16.0=pyh6c4a22f_0 - snowballstemmer=2.2.0=pyhd8ed1ab_0 @@ -194,7 +193,7 @@ dependencies: - cctools=973.0.1=h4faf515_16 - clang=16.0.6=h30cc82d_5 - comm=0.2.1=pyhd8ed1ab_0 - - coverage=7.4.2=py39h17cfd9d_0 + - coverage=7.4.3=py39h17cfd9d_0 - cypari2=2.1.4=py39h070b2a8_2 - fonttools=4.49.0=py39h17cfd9d_0 - importlib-metadata=7.0.1=pyha770c72_0 @@ -206,13 +205,11 @@ dependencies: - liblapack=3.9.0=20_osxarm64_openblas - matplotlib-inline=0.1.6=pyhd8ed1ab_0 - memory-allocator=0.1.3=py39h0f82c59_0 - - meson=1.3.2=pyhd8ed1ab_0 - pexpect=4.9.0=pyhd8ed1ab_0 - pip=24.0=pyhd8ed1ab_0 - pplpy=0.8.9=py39haf103f8_0 - primecountpy=0.1.0=py39hbd775c9_4 - prompt-toolkit=3.0.42=pyha770c72_0 - - pyproject-metadata=0.7.1=pyhd8ed1ab_0 - pytest=8.0.1=pyhd8ed1ab_1 - python-dateutil=2.8.2=pyhd8ed1ab_0 - sympy=1.12=pypyh9d50eac_103 @@ -225,7 +222,6 @@ dependencies: - importlib-resources=6.1.1=pyhd8ed1ab_0 - importlib_metadata=7.0.1=hd8ed1ab_0 - liblapacke=3.9.0=20_osxarm64_openblas - - meson-python=0.15.0=pyh0c530f3_0 - numpy=1.26.4=py39h7aa2656_0 - pytest-xdist=3.5.0=pyhd8ed1ab_0 - requests=2.31.0=pyhd8ed1ab_0 diff --git a/src/environment-dev-3.9-macos.yml b/src/environment-dev-3.9-macos.yml index a2bc49e4a63..1db7209a0f5 100644 --- a/src/environment-dev-3.9-macos.yml +++ b/src/environment-dev-3.9-macos.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: osx-64 -# input_hash: e2b9d0aa382a3916469423b39da04515801270bfb3854af4de5cb43640ff935e +# input_hash: fb8d2c1ac8a541d3d579a24767d6098fdd791feb919bbd00c62ab18dae289b61 channels: - conda-forge @@ -58,7 +58,6 @@ dependencies: - libxml2=2.12.5=hc0ae0f7_0 - lrcalc=2.1=h73e2aa4_6 - ncurses=6.4=h93d8f39_2 - - ninja=1.11.1=hb8565cd_0 - openssl=3.2.1=hd75f5a5_0 - pari-seadata=0.0.20090618=0 - pkg-config=0.29.2=ha3d46e9_1008 @@ -170,7 +169,7 @@ dependencies: - pysocks=1.7.1=pyha2e5f31_6 - pytz=2024.1=pyhd8ed1ab_0 - pyzmq=25.1.2=py39hcb7a90d_0 - - setuptools=69.1.0=pyhd8ed1ab_1 + - setuptools=69.1.1=pyhd8ed1ab_0 - singular=4.3.2.p8=h0d51a9f_1 - six=1.16.0=pyh6c4a22f_0 - snowballstemmer=2.2.0=pyhd8ed1ab_0 @@ -192,7 +191,7 @@ dependencies: - cctools=973.0.1=h40f6528_16 - clang=16.0.6=hdae98eb_5 - comm=0.2.1=pyhd8ed1ab_0 - - coverage=7.4.2=py39ha09f3b3_0 + - coverage=7.4.3=py39ha09f3b3_0 - cypari2=2.1.4=py39hc0d7317_2 - fonttools=4.49.0=py39ha09f3b3_0 - importlib-metadata=7.0.1=pyha770c72_0 @@ -204,13 +203,11 @@ dependencies: - liblapack=3.9.0=20_osx64_openblas - matplotlib-inline=0.1.6=pyhd8ed1ab_0 - memory-allocator=0.1.3=py39hdc70f33_0 - - meson=1.3.2=pyhd8ed1ab_0 - pexpect=4.9.0=pyhd8ed1ab_0 - pip=24.0=pyhd8ed1ab_0 - pplpy=0.8.9=py39h248ee18_0 - primecountpy=0.1.0=py39h8ee36c8_4 - prompt-toolkit=3.0.42=pyha770c72_0 - - pyproject-metadata=0.7.1=pyhd8ed1ab_0 - pytest=8.0.1=pyhd8ed1ab_1 - python-dateutil=2.8.2=pyhd8ed1ab_0 - sympy=1.12=pypyh9d50eac_103 @@ -223,7 +220,6 @@ dependencies: - importlib-resources=6.1.1=pyhd8ed1ab_0 - importlib_metadata=7.0.1=hd8ed1ab_0 - liblapacke=3.9.0=20_osx64_openblas - - meson-python=0.15.0=pyh0c530f3_0 - numpy=1.26.4=py39h28c39a1_0 - pytest-xdist=3.5.0=pyhd8ed1ab_0 - requests=2.31.0=pyhd8ed1ab_0 From fb9c4aae0de7232693de1ba68dd0495d6020b41e Mon Sep 17 00:00:00 2001 From: Tobias Diez Date: Sun, 25 Feb 2024 08:11:12 +0000 Subject: [PATCH 4/5] Update dependencies in environment files --- src/environment-3.10-linux-aarch64.yml | 43 ++++++++++-------- src/environment-3.10-linux.yml | 9 +++- src/environment-3.10-macos-arm64.yml | 47 +++++++++++--------- src/environment-3.10-macos.yml | 9 +++- src/environment-3.11-linux-aarch64.yml | 43 ++++++++++-------- src/environment-3.11-linux.yml | 9 +++- src/environment-3.11-macos-arm64.yml | 47 +++++++++++--------- src/environment-3.11-macos.yml | 9 +++- src/environment-3.9-linux-aarch64.yml | 43 ++++++++++-------- src/environment-3.9-linux.yml | 9 +++- src/environment-3.9-macos-arm64.yml | 47 +++++++++++--------- src/environment-3.9-macos.yml | 9 +++- src/environment-dev-3.10-linux-aarch64.yml | 47 +++++++++++--------- src/environment-dev-3.10-linux.yml | 13 ++++-- src/environment-dev-3.10-macos-arm64.yml | 51 ++++++++++++---------- src/environment-dev-3.10-macos.yml | 13 ++++-- src/environment-dev-3.11-linux-aarch64.yml | 47 +++++++++++--------- src/environment-dev-3.11-linux.yml | 13 ++++-- src/environment-dev-3.11-macos-arm64.yml | 51 ++++++++++++---------- src/environment-dev-3.11-macos.yml | 13 ++++-- src/environment-dev-3.9-linux-aarch64.yml | 47 +++++++++++--------- src/environment-dev-3.9-linux.yml | 13 ++++-- src/environment-dev-3.9-macos-arm64.yml | 51 ++++++++++++---------- src/environment-dev-3.9-macos.yml | 13 ++++-- 24 files changed, 408 insertions(+), 288 deletions(-) diff --git a/src/environment-3.10-linux-aarch64.yml b/src/environment-3.10-linux-aarch64.yml index 1d9e7e8dfd0..4e72ebf780b 100644 --- a/src/environment-3.10-linux-aarch64.yml +++ b/src/environment-3.10-linux-aarch64.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: linux-aarch64 -# input_hash: bc69a0d25d50f9b6efe607eddf252e8f39dc469e76c675c0d8c8bbdcfc3e3fe3 +# input_hash: 21fde6b93b05c1d9756709464c7346372d7ee10a5cc06d972c567ce15335d4b1 channels: - conda-forge @@ -12,7 +12,7 @@ dependencies: - font-ttf-source-code-pro=2.038=h77eed37_0 - font-ttf-ubuntu=0.83=h77eed37_1 - ld_impl_linux-aarch64=2.40=h2d8c526_0 - - libboost-headers=1.84.0=h8af1aa0_1 + - libboost-headers=1.82.0=h8af1aa0_2 - libgcc-devel_linux-aarch64=12.3.0=h8b5ab12_105 - libgomp=13.2.0=hf8544c7_5 - libstdcxx-devel_linux-aarch64=12.3.0=h8b5ab12_105 @@ -21,6 +21,7 @@ dependencies: - pari-galdata=0.0.20180411=0 - pari-seadata-small=0.0.20090618=0 - python_abi=3.10=4_cp310 + - sagemath-db-polytopes=20170220=1 - tzdata=2024a=h0c530f3_0 - fonts-conda-forge=1=0 - kernel-headers_linux-aarch64=4.18.0=h5b4a56d_14 @@ -39,23 +40,23 @@ dependencies: - gf2x=1.3.0=h1b3b3a3_2 - giflib=5.2.1=hb4cce97_3 - gmp=6.3.0=h2f0025b_0 - - icu=73.2=h787c7f5_0 + - icu=72.1=hcf00150_0 + - jpeg=9e=h2a766a3_3 - keyutils=1.6.1=h4e544f5_0 - lerc=4.0.0=h4de3ea5_0 - libbraiding=1.2=hd600fc2_0 - libbrotlicommon=1.1.0=h31becfc_1 - - libdeflate=1.19=h31becfc_0 + - libdeflate=1.17=hb4cce97_0 - libev=4.33=h31becfc_2 - libexpat=2.5.0=hd600fc2_1 - libffi=3.4.2=h3557bc0_5 - libgfortran5=13.2.0=h582850c_5 - libiconv=1.17=h31becfc_2 - - libjpeg-turbo=3.0.0=h31becfc_1 - libnsl=2.0.1=h31becfc_0 - libsanitizer=12.3.0=h8ebda82_5 - libsodium=1.0.18=hb9de7d4_1 - libuuid=2.38.1=hb4cce97_0 - - libwebp-base=1.3.2=h31becfc_0 + - libwebp-base=1.2.4=h4e544f5_0 - libxcrypt=4.4.36=h31becfc_1 - libzlib=1.2.13=h31becfc_5 - lrcalc=2.1=h2f0025b_6 @@ -84,11 +85,11 @@ dependencies: - libgfortran-ng=13.2.0=he9431aa_5 - libhomfly=1.02r6=hb9de7d4_0 - libnghttp2=1.58.0=hb0e430d_1 - - libpng=1.6.42=h194ca79_0 + - libpng=1.6.43=h194ca79_0 - libsqlite=3.45.1=h194ca79_0 - libssh2=1.11.0=h492db2e_0 - - libxcb=1.15=h2a766a3_0 - - libxml2=2.12.5=h3091e33_0 + - libxcb=1.13=h3557bc0_1004 + - libxml2=2.11.5=h164fba4_0 - mpfr=4.2.1=ha2d0fc4_0 - ntl=11.4.3=h0d7519b_1 - perl=5.32.1=7_h31becfc_perl5 @@ -107,10 +108,10 @@ dependencies: - gfan=0.6.2=h5f589ec_1003 - gxx_impl_linux-aarch64=12.3.0=hcde2664_5 - krb5=1.21.2=hc419048_0 - - libboost=1.84.0=h1fed05a_1 + - libboost=1.82.0=hbfc56d7_2 - libflint=3.0.1=hc392af7_ntl_100 - libopenblas=0.3.25=pthreads_h5a5ec62_0 - - libtiff=4.6.0=h1708d11_2 + - libtiff=4.5.0=h4c1066a_2 - llvm-openmp=17.0.6=h8b0cb96_0 - m4ri=20140914=h75e8696_1005 - mpc=1.3.1=hf4c8f4c_0 @@ -119,6 +120,8 @@ dependencies: - ppl=1.2=h984aac9_1006 - python=3.10.13=hbbe8eec_1_cpython - qd=2.3.22=h05efe27_1004 + - sqlite=3.45.1=h3b3482f_0 + - tachyon=0.99b6=h63ab1d9_1001 - alabaster=0.7.16=pyhd8ed1ab_0 - brotli=1.1.0=h31becfc_1 - brotli-python=1.1.0=py310hbb3657e_1 @@ -147,12 +150,12 @@ dependencies: - jupyterlab_widgets=3.0.10=pyhd8ed1ab_0 - kiwisolver=1.4.5=py310he290b8a_1 - lcalc=2.0.5=h3264cc0_1 - - lcms2=2.16=h922389a_0 + - lcms2=2.15=h7576be9_0 - libblas=3.9.0=20_linuxaarch64_openblas - - libboost-devel=1.84.0=h37bb5a9_1 + - libboost-devel=1.82.0=h37bb5a9_2 - libbrial=1.2.12=h17533bf_1 - libcurl=8.5.0=h4e8248e_0 - - libwebp=1.3.2=heb2ea1b_1 + - libwebp=1.2.4=h7bdf6e5_1 - m4rie=20150908=h75e8696_1001 - markupsafe=2.1.5=py310h7c1f4a2_0 - maxima=5.47.0=h6475f26_1 @@ -161,7 +164,7 @@ dependencies: - nest-asyncio=1.6.0=pyhd8ed1ab_0 - networkx=3.2.1=pyhd8ed1ab_0 - openblas=0.3.25=pthreads_h339cbfa_0 - - openjpeg=2.5.0=h0d9d63b_3 + - openjpeg=2.5.0=h9508984_2 - packaging=23.2=pyhd8ed1ab_0 - parso=0.8.3=pyhd8ed1ab_0 - pickleshare=0.7.5=py_1003 @@ -173,8 +176,10 @@ dependencies: - pygments=2.17.2=pyhd8ed1ab_0 - pyparsing=3.1.1=pyhd8ed1ab_0 - pysocks=1.7.1=pyha2e5f31_6 + - python-lrcalc=2.1=py310hbb3657e_6 - pytz=2024.1=pyhd8ed1ab_0 - pyzmq=25.1.2=py310h014ca53_0 + - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 - setuptools=69.1.1=pyhd8ed1ab_0 - singular=4.3.2.p8=hbe76a8a_1 - six=1.16.0=pyh6c4a22f_0 @@ -191,7 +196,7 @@ dependencies: - zipp=3.17.0=pyhd8ed1ab_0 - asttokens=2.4.1=pyhd8ed1ab_0 - babel=2.14.0=pyhd8ed1ab_0 - - boost-cpp=1.84.0=ha990451_1 + - boost-cpp=1.82.0=h62f3a30_2 - brial=1.2.12=pyh694c41f_1 - comm=0.2.1=pyhd8ed1ab_0 - cxx-compiler=1.6.0=h2a328a1_0 @@ -203,12 +208,12 @@ dependencies: - jinja2=3.1.3=pyhd8ed1ab_0 - jupyter_core=5.7.1=py310h4c7bcd0_0 - libcblas=3.9.0=20_linuxaarch64_openblas - - libgd=2.3.3=hcd22fd5_9 + - libgd=2.3.3=h5fc1a20_5 - liblapack=3.9.0=20_linuxaarch64_openblas - matplotlib-inline=0.1.6=pyhd8ed1ab_0 - memory-allocator=0.1.3=py310hb299538_0 - pexpect=4.9.0=pyhd8ed1ab_0 - - pillow=10.2.0=py310h0ae3e2b_0 + - pillow=9.4.0=py310h2843b5e_1 - pip=24.0=pyhd8ed1ab_0 - pplpy=0.8.9=py310hd5c817c_0 - primecountpy=0.1.0=py310h586407a_4 @@ -229,7 +234,7 @@ dependencies: - contourpy=1.2.0=py310h586407a_0 - fpylll=0.6.1=py310hfdbf2a6_0 - giac=1.9.0.21=h04922a4_1 - - igraph=0.10.10=hcfae7ab_0 + - igraph=0.10.8=h4617136_0 - ipython=8.22.1=pyh707e725_0 - jupyter_client=8.6.0=pyhd8ed1ab_0 - linbox=1.6.3=h681a5ee_8 diff --git a/src/environment-3.10-linux.yml b/src/environment-3.10-linux.yml index 9df4358b99f..a7992a48057 100644 --- a/src/environment-3.10-linux.yml +++ b/src/environment-3.10-linux.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: 44fd37fafeb88550e13fac041b87497eda241bb47bcd8e4460dcf7eb8f5e18a8 +# input_hash: 5501e72910e66beb7d93d022d2e6ad1633f92e1f8d740204c5d21e23b8f5c47a channels: - conda-forge @@ -21,6 +21,7 @@ dependencies: - pari-galdata=0.0.20180411=0 - pari-seadata-small=0.0.20090618=0 - python_abi=3.10=4_cp310 + - sagemath-db-polytopes=20170220=1 - tzdata=2024a=h0c530f3_0 - fonts-conda-forge=1=0 - libgomp=13.2.0=h807b86a_5 @@ -84,7 +85,7 @@ dependencies: - libgfortran-ng=13.2.0=h69a702a_5 - libhomfly=1.02r6=h36c2ea0_0 - libnghttp2=1.58.0=h47da74e_1 - - libpng=1.6.42=h2797004_0 + - libpng=1.6.43=h2797004_0 - libsqlite=3.45.1=h2797004_0 - libssh2=1.11.0=h0841786_0 - libxcb=1.15=h0b41bf4_0 @@ -119,6 +120,8 @@ dependencies: - ppl=1.2=h6ec01c2_1006 - python=3.10.13=hd12c33a_1_cpython - qd=2.3.22=h2cc385e_1004 + - sqlite=3.45.1=h2c6b66d_0 + - tachyon=0.99b6=0 - alabaster=0.7.16=pyhd8ed1ab_0 - brotli=1.1.0=hd590300_1 - brotli-python=1.1.0=py310hc6cd4ac_1 @@ -173,8 +176,10 @@ dependencies: - pygments=2.17.2=pyhd8ed1ab_0 - pyparsing=3.1.1=pyhd8ed1ab_0 - pysocks=1.7.1=pyha2e5f31_6 + - python-lrcalc=2.1=py310hc6cd4ac_6 - pytz=2024.1=pyhd8ed1ab_0 - pyzmq=25.1.2=py310h795f18f_0 + - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 - setuptools=69.1.1=pyhd8ed1ab_0 - singular=4.3.2.p8=h33f5c3f_1 - six=1.16.0=pyh6c4a22f_0 diff --git a/src/environment-3.10-macos-arm64.yml b/src/environment-3.10-macos-arm64.yml index 9785af2776c..a5c0a9825d8 100644 --- a/src/environment-3.10-macos-arm64.yml +++ b/src/environment-3.10-macos-arm64.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: osx-arm64 -# input_hash: 5a01ef36307b533782d5ba7ce6e1628c3ef19f906543238841f945f05c02f1c4 +# input_hash: 7b0add4b23941d4aecdb179562ba9c7ce85eca05a860e17b731b907af1c7dd5b channels: - conda-forge @@ -14,18 +14,18 @@ dependencies: - font-ttf-source-code-pro=2.038=h77eed37_0 - font-ttf-ubuntu=0.83=h77eed37_1 - giflib=5.2.1=h1a8c8d9_3 - - icu=73.2=hc8870d7_0 - - libboost-headers=1.84.0=hce30654_1 + - icu=72.1=he12128b_0 + - jpeg=9e=h1a8c8d9_3 + - libboost-headers=1.82.0=hce30654_2 - libbrotlicommon=1.1.0=hb547adb_1 - libcxx=16.0.6=h4653b0c_0 - - libdeflate=1.19=hb547adb_0 + - libdeflate=1.17=h1a8c8d9_0 - libev=4.33=h93a5062_2 - libexpat=2.5.0=hb7217d7_1 - libffi=3.4.2=h3422bc3_5 - libiconv=1.17=h0d3ecfb_2 - - libjpeg-turbo=3.0.0=hb547adb_1 - libsodium=1.0.18=h27ca646_1 - - libwebp-base=1.3.2=hb547adb_0 + - libwebp-base=1.2.4=h1a8c8d9_0 - libzlib=1.2.13=h53f4e23_5 - llvm-openmp=17.0.6=hcd81f8e_0 - nauty=2.8.8=h93a5062_1 @@ -37,6 +37,7 @@ dependencies: - planarity=3.0.0.5=h27ca646_1002 - pthread-stubs=0.4=h27ca646_1001 - python_abi=3.10=4_cp310 + - sagemath-db-polytopes=20170220=1 - tzdata=2024a=h0c530f3_0 - xorg-libxau=1.0.11=hb547adb_0 - xorg-libxdmcp=1.1.3=h27ca646_0 @@ -52,10 +53,10 @@ dependencies: - libbrotlidec=1.1.0=hb547adb_1 - libbrotlienc=1.1.0=hb547adb_1 - libgfortran5=13.2.0=hf226fd6_3 - - libpng=1.6.42=h091b4b1_0 + - libpng=1.6.43=h091b4b1_0 - libsqlite=3.45.1=h091b4b1_0 - - libxcb=1.15=hf346824_0 - - libxml2=2.12.5=h0d0cfa8_0 + - libxcb=1.13=h9b22ae9_1004 + - libxml2=2.11.5=he3bdae6_0 - lrcalc=2.1=hebf3989_6 - ncurses=6.4=h463b476_2 - openssl=3.2.1=h0d3ecfb_0 @@ -76,48 +77,50 @@ dependencies: - freetype=2.12.1=hadb7bae_2 - givaro=4.1.1=h0cdca34_3 - glpk=5.0=h6d7a090_0 - - libboost=1.84.0=h8e0f962_1 + - libboost=1.82.0=h3f31f7c_2 - libedit=3.1.20191231=hc8eb9b7_2 - libgfortran=5.0.0=13_2_0_hd922786_3 - libglib=2.78.4=h1635a5e_0 - libhomfly=1.02r6=h27ca646_0 - - libllvm16=16.0.6=haab561b_3 + - libllvm16=16.0.6=he79909e_2 - libnghttp2=1.58.0=ha4dd798_1 - libssh2=1.11.0=h7a5bd25_0 - - libtiff=4.6.0=ha8a6c65_2 + - libtiff=4.5.0=h5dffbdd_2 - m4ri=20140914=h17b34a0_1005 - mpfr=4.2.1=h9546428_0 - ntl=11.4.3=hbb3f309_1 - primecount=7.6=hb6e4faa_0 - readline=8.2=h92ec313_1 - sigtool=0.1.3=h44b9a77_0 + - tachyon=0.99b6=hfb72b2a_1001 - brotli=1.1.0=hb547adb_1 - ecl=21.2.1=h8492d4d_2 - fontconfig=2.14.2=h82840c6_0 - gap-core=4.12.2=he8f4e70_3 - gfan=0.6.2=hec08f5c_1003 - krb5=1.21.2=h92f50d5_0 - - lcms2=2.16=ha0e7c42_0 + - lcms2=2.15=h481adae_0 - ld64_osx-arm64=609=ha4bd21c_16 - - libboost-devel=1.84.0=hf450f58_1 + - libboost-devel=1.82.0=hf450f58_2 - libbrial=1.2.12=ha7f5006_1 - libclang-cpp16=16.0.6=default_he012953_5 - libflint=3.0.1=h28749a5_ntl_100 - libopenblas=0.3.25=openmp_h6c19121_0 - - libwebp=1.3.2=hf30222e_1 - - llvm-tools=16.0.6=haab561b_3 + - libwebp=1.2.4=h999c80f_1 + - llvm-tools=16.0.6=he79909e_2 - m4rie=20150908=h17b34a0_1001 - mpc=1.3.1=h91ba8db_0 - mpfi=1.5.4=hbde5f5b_1001 - - openjpeg=2.5.0=h4c1507b_3 + - openjpeg=2.5.0=hbc2ba62_2 - pari=2.15.4=haeeeed7_2_pthread - pkg-config=0.29.2=hab62308_1008 - ppl=1.2=h8b147cf_1006 - python=3.10.13=h2469fbe_1_cpython - qd=2.3.22=hbec66e7_1004 + - sqlite=3.45.1=hf2abe2d_0 - alabaster=0.7.16=pyhd8ed1ab_0 - appnope=0.1.4=pyhd8ed1ab_0 - - boost-cpp=1.84.0=hca5e981_1 + - boost-cpp=1.82.0=h4ae65de_2 - brial=1.2.12=pyh694c41f_1 - brotli-python=1.1.0=py310h1253130_1 - cctools_osx-arm64=973.0.1=h62378fb_16 @@ -146,7 +149,7 @@ dependencies: - ld64=609=h634c8be_16 - libblas=3.9.0=20_osxarm64_openblas - libcurl=8.5.0=h2d989ff_0 - - libgd=2.3.3=hfdf3952_9 + - libgd=2.3.3=h8db8f0b_5 - markupsafe=2.1.5=py310hd125d64_0 - maxima=5.45.0=h6032a66_2 - mpmath=1.3.0=pyhd8ed1ab_0 @@ -157,7 +160,7 @@ dependencies: - packaging=23.2=pyhd8ed1ab_0 - parso=0.8.3=pyhd8ed1ab_0 - pickleshare=0.7.5=py_1003 - - pillow=10.2.0=py310hfae7ebd_0 + - pillow=9.4.0=py310h5a7539a_1 - pkgconfig=1.5.5=pyhd8ed1ab_4 - platformdirs=4.2.0=pyhd8ed1ab_0 - psutil=5.9.8=py310hd125d64_0 @@ -166,8 +169,10 @@ dependencies: - pygments=2.17.2=pyhd8ed1ab_0 - pyparsing=3.1.1=pyhd8ed1ab_0 - pysocks=1.7.1=pyha2e5f31_6 + - python-lrcalc=2.1=py310h692a8b6_6 - pytz=2024.1=pyhd8ed1ab_0 - pyzmq=25.1.2=py310hbb13138_0 + - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 - setuptools=69.1.1=pyhd8ed1ab_0 - singular=4.3.2.p8=hb460b52_1 - six=1.16.0=pyh6c4a22f_0 @@ -221,7 +226,7 @@ dependencies: - contourpy=1.2.0=py310hd137fd4_0 - fpylll=0.6.1=py310hd9be144_0 - giac=1.9.0.21=h1c96721_1 - - igraph=0.10.10=h48be1ad_0 + - igraph=0.10.8=h29932c4_0 - ipython=8.22.1=pyh707e725_0 - jupyter_client=8.6.0=pyhd8ed1ab_0 - linbox=1.6.3=h380be0f_8 diff --git a/src/environment-3.10-macos.yml b/src/environment-3.10-macos.yml index a2e9c3c6723..3773ba4aee2 100644 --- a/src/environment-3.10-macos.yml +++ b/src/environment-3.10-macos.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: osx-64 -# input_hash: 36d60df1ef0e29e3074b43f4e7c1dbdd57ddb20da689b0faa5f6427164809e9e +# input_hash: 42ecd1956437b090d917786bfa107d01e0e3e3658680cd1be8d98fe0fa933982 channels: - conda-forge @@ -37,6 +37,7 @@ dependencies: - planarity=3.0.0.5=hbcb3906_1002 - pthread-stubs=0.4=hc929b4f_1001 - python_abi=3.10=4_cp310 + - sagemath-db-polytopes=20170220=1 - tzdata=2024a=h0c530f3_0 - xorg-libxau=1.0.11=h0dc2134_0 - xorg-libxdmcp=1.1.3=h35c211d_0 @@ -52,7 +53,7 @@ dependencies: - libbrotlidec=1.1.0=h0dc2134_1 - libbrotlienc=1.1.0=h0dc2134_1 - libgfortran5=13.2.0=h2873a65_3 - - libpng=1.6.42=h92b6c6a_0 + - libpng=1.6.43=h92b6c6a_0 - libsqlite=3.45.1=h92b6c6a_0 - libxcb=1.15=hb7f2c08_0 - libxml2=2.12.5=hc0ae0f7_0 @@ -90,6 +91,7 @@ dependencies: - primecount=7.6=ha894c9a_0 - readline=8.2=h9e318b2_1 - sigtool=0.1.3=h88f4db0_0 + - tachyon=0.99b6=0 - brotli=1.1.0=h0dc2134_1 - ecl=21.2.1=hd029580_2 - fontconfig=2.14.2=h5bb23bf_0 @@ -113,6 +115,7 @@ dependencies: - ppl=1.2=ha60d53e_1006 - python=3.10.13=h00d2728_1_cpython - qd=2.3.22=h2beb688_1004 + - sqlite=3.45.1=h7461747_0 - alabaster=0.7.16=pyhd8ed1ab_0 - appnope=0.1.4=pyhd8ed1ab_0 - boost-cpp=1.84.0=h07eb623_1 @@ -164,8 +167,10 @@ dependencies: - pygments=2.17.2=pyhd8ed1ab_0 - pyparsing=3.1.1=pyhd8ed1ab_0 - pysocks=1.7.1=pyha2e5f31_6 + - python-lrcalc=2.1=py310h5daac23_6 - pytz=2024.1=pyhd8ed1ab_0 - pyzmq=25.1.2=py310h6b67f7f_0 + - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 - setuptools=69.1.1=pyhd8ed1ab_0 - singular=4.3.2.p8=h0d51a9f_1 - six=1.16.0=pyh6c4a22f_0 diff --git a/src/environment-3.11-linux-aarch64.yml b/src/environment-3.11-linux-aarch64.yml index a055f61c4bb..86551d57f09 100644 --- a/src/environment-3.11-linux-aarch64.yml +++ b/src/environment-3.11-linux-aarch64.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: linux-aarch64 -# input_hash: 92ebf158163c0a0c85e4aac1a582c1f76d9f995f74e901e978342b9681bab439 +# input_hash: 9dd745b3ff6bb8e87451079d5feeba1e0a1e8287c0c8d2be1985365d0b16537d channels: - conda-forge @@ -12,7 +12,7 @@ dependencies: - font-ttf-source-code-pro=2.038=h77eed37_0 - font-ttf-ubuntu=0.83=h77eed37_1 - ld_impl_linux-aarch64=2.40=h2d8c526_0 - - libboost-headers=1.84.0=h8af1aa0_1 + - libboost-headers=1.82.0=h8af1aa0_2 - libgcc-devel_linux-aarch64=12.3.0=h8b5ab12_105 - libgomp=13.2.0=hf8544c7_5 - libstdcxx-devel_linux-aarch64=12.3.0=h8b5ab12_105 @@ -21,6 +21,7 @@ dependencies: - pari-galdata=0.0.20180411=0 - pari-seadata-small=0.0.20090618=0 - python_abi=3.11=4_cp311 + - sagemath-db-polytopes=20170220=1 - tzdata=2024a=h0c530f3_0 - fonts-conda-forge=1=0 - kernel-headers_linux-aarch64=4.18.0=h5b4a56d_14 @@ -39,23 +40,23 @@ dependencies: - gf2x=1.3.0=h1b3b3a3_2 - giflib=5.2.1=hb4cce97_3 - gmp=6.3.0=h2f0025b_0 - - icu=73.2=h787c7f5_0 + - icu=72.1=hcf00150_0 + - jpeg=9e=h2a766a3_3 - keyutils=1.6.1=h4e544f5_0 - lerc=4.0.0=h4de3ea5_0 - libbraiding=1.2=hd600fc2_0 - libbrotlicommon=1.1.0=h31becfc_1 - - libdeflate=1.19=h31becfc_0 + - libdeflate=1.17=hb4cce97_0 - libev=4.33=h31becfc_2 - libexpat=2.5.0=hd600fc2_1 - libffi=3.4.2=h3557bc0_5 - libgfortran5=13.2.0=h582850c_5 - libiconv=1.17=h31becfc_2 - - libjpeg-turbo=3.0.0=h31becfc_1 - libnsl=2.0.1=h31becfc_0 - libsanitizer=12.3.0=h8ebda82_5 - libsodium=1.0.18=hb9de7d4_1 - libuuid=2.38.1=hb4cce97_0 - - libwebp-base=1.3.2=h31becfc_0 + - libwebp-base=1.2.4=h4e544f5_0 - libxcrypt=4.4.36=h31becfc_1 - libzlib=1.2.13=h31becfc_5 - lrcalc=2.1=h2f0025b_6 @@ -84,11 +85,11 @@ dependencies: - libgfortran-ng=13.2.0=he9431aa_5 - libhomfly=1.02r6=hb9de7d4_0 - libnghttp2=1.58.0=hb0e430d_1 - - libpng=1.6.42=h194ca79_0 + - libpng=1.6.43=h194ca79_0 - libsqlite=3.45.1=h194ca79_0 - libssh2=1.11.0=h492db2e_0 - - libxcb=1.15=h2a766a3_0 - - libxml2=2.12.5=h3091e33_0 + - libxcb=1.13=h3557bc0_1004 + - libxml2=2.11.5=h164fba4_0 - mpfr=4.2.1=ha2d0fc4_0 - ntl=11.4.3=h0d7519b_1 - perl=5.32.1=7_h31becfc_perl5 @@ -107,10 +108,10 @@ dependencies: - gfan=0.6.2=h5f589ec_1003 - gxx_impl_linux-aarch64=12.3.0=hcde2664_5 - krb5=1.21.2=hc419048_0 - - libboost=1.84.0=h1fed05a_1 + - libboost=1.82.0=hbfc56d7_2 - libflint=3.0.1=hc392af7_ntl_100 - libopenblas=0.3.25=pthreads_h5a5ec62_0 - - libtiff=4.6.0=h1708d11_2 + - libtiff=4.5.0=h4c1066a_2 - llvm-openmp=17.0.6=h8b0cb96_0 - m4ri=20140914=h75e8696_1005 - mpc=1.3.1=hf4c8f4c_0 @@ -119,6 +120,8 @@ dependencies: - ppl=1.2=h984aac9_1006 - python=3.11.8=h43d1f9e_0_cpython - qd=2.3.22=h05efe27_1004 + - sqlite=3.45.1=h3b3482f_0 + - tachyon=0.99b6=h63ab1d9_1001 - alabaster=0.7.16=pyhd8ed1ab_0 - brotli=1.1.0=h31becfc_1 - brotli-python=1.1.0=py311h8715677_1 @@ -147,12 +150,12 @@ dependencies: - jupyterlab_widgets=3.0.10=pyhd8ed1ab_0 - kiwisolver=1.4.5=py311h0d5d7b0_1 - lcalc=2.0.5=h3264cc0_1 - - lcms2=2.16=h922389a_0 + - lcms2=2.15=h7576be9_0 - libblas=3.9.0=20_linuxaarch64_openblas - - libboost-devel=1.84.0=h37bb5a9_1 + - libboost-devel=1.82.0=h37bb5a9_2 - libbrial=1.2.12=h17533bf_1 - libcurl=8.5.0=h4e8248e_0 - - libwebp=1.3.2=heb2ea1b_1 + - libwebp=1.2.4=h7bdf6e5_1 - m4rie=20150908=h75e8696_1001 - markupsafe=2.1.5=py311hc8f2f60_0 - maxima=5.47.0=h6475f26_1 @@ -161,7 +164,7 @@ dependencies: - nest-asyncio=1.6.0=pyhd8ed1ab_0 - networkx=3.2.1=pyhd8ed1ab_0 - openblas=0.3.25=pthreads_h339cbfa_0 - - openjpeg=2.5.0=h0d9d63b_3 + - openjpeg=2.5.0=h9508984_2 - packaging=23.2=pyhd8ed1ab_0 - parso=0.8.3=pyhd8ed1ab_0 - pickleshare=0.7.5=py_1003 @@ -173,8 +176,10 @@ dependencies: - pygments=2.17.2=pyhd8ed1ab_0 - pyparsing=3.1.1=pyhd8ed1ab_0 - pysocks=1.7.1=pyha2e5f31_6 + - python-lrcalc=2.1=py311h8715677_6 - pytz=2024.1=pyhd8ed1ab_0 - pyzmq=25.1.2=py311h0fdcd05_0 + - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 - setuptools=69.1.1=pyhd8ed1ab_0 - singular=4.3.2.p8=hbe76a8a_1 - six=1.16.0=pyh6c4a22f_0 @@ -190,7 +195,7 @@ dependencies: - zipp=3.17.0=pyhd8ed1ab_0 - asttokens=2.4.1=pyhd8ed1ab_0 - babel=2.14.0=pyhd8ed1ab_0 - - boost-cpp=1.84.0=ha990451_1 + - boost-cpp=1.82.0=h62f3a30_2 - brial=1.2.12=pyh694c41f_1 - comm=0.2.1=pyhd8ed1ab_0 - cxx-compiler=1.6.0=h2a328a1_0 @@ -202,12 +207,12 @@ dependencies: - jinja2=3.1.3=pyhd8ed1ab_0 - jupyter_core=5.7.1=py311hec3470c_0 - libcblas=3.9.0=20_linuxaarch64_openblas - - libgd=2.3.3=hcd22fd5_9 + - libgd=2.3.3=h5fc1a20_5 - liblapack=3.9.0=20_linuxaarch64_openblas - matplotlib-inline=0.1.6=pyhd8ed1ab_0 - memory-allocator=0.1.3=py311hcd402e7_0 - pexpect=4.9.0=pyhd8ed1ab_0 - - pillow=10.2.0=py311hbcc2232_0 + - pillow=9.4.0=py311hf18358d_1 - pip=24.0=pyhd8ed1ab_0 - pplpy=0.8.9=py311haefeb0b_0 - primecountpy=0.1.0=py311h098ece5_4 @@ -228,7 +233,7 @@ dependencies: - contourpy=1.2.0=py311h098ece5_0 - fpylll=0.6.1=py311h5d3d69a_0 - giac=1.9.0.21=h04922a4_1 - - igraph=0.10.10=hcfae7ab_0 + - igraph=0.10.8=h4617136_0 - ipython=8.22.1=pyh707e725_0 - jupyter_client=8.6.0=pyhd8ed1ab_0 - linbox=1.6.3=h681a5ee_8 diff --git a/src/environment-3.11-linux.yml b/src/environment-3.11-linux.yml index 25e37ede976..c03aff52b0f 100644 --- a/src/environment-3.11-linux.yml +++ b/src/environment-3.11-linux.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: 322ea4cf98714f84d6f2a829163f4f7d72ef88cc927bf41b8f0c0b9a77589ef4 +# input_hash: 6fbe0c2502dd0d9cd02b86413b43fb24ce03b07991be99dfdb837fb2c8ff34eb channels: - conda-forge @@ -21,6 +21,7 @@ dependencies: - pari-galdata=0.0.20180411=0 - pari-seadata-small=0.0.20090618=0 - python_abi=3.11=4_cp311 + - sagemath-db-polytopes=20170220=1 - tzdata=2024a=h0c530f3_0 - fonts-conda-forge=1=0 - libgomp=13.2.0=h807b86a_5 @@ -84,7 +85,7 @@ dependencies: - libgfortran-ng=13.2.0=h69a702a_5 - libhomfly=1.02r6=h36c2ea0_0 - libnghttp2=1.58.0=h47da74e_1 - - libpng=1.6.42=h2797004_0 + - libpng=1.6.43=h2797004_0 - libsqlite=3.45.1=h2797004_0 - libssh2=1.11.0=h0841786_0 - libxcb=1.15=h0b41bf4_0 @@ -119,6 +120,8 @@ dependencies: - ppl=1.2=h6ec01c2_1006 - python=3.11.8=hab00c5b_0_cpython - qd=2.3.22=h2cc385e_1004 + - sqlite=3.45.1=h2c6b66d_0 + - tachyon=0.99b6=0 - alabaster=0.7.16=pyhd8ed1ab_0 - brotli=1.1.0=hd590300_1 - brotli-python=1.1.0=py311hb755f60_1 @@ -173,8 +176,10 @@ dependencies: - pygments=2.17.2=pyhd8ed1ab_0 - pyparsing=3.1.1=pyhd8ed1ab_0 - pysocks=1.7.1=pyha2e5f31_6 + - python-lrcalc=2.1=py311hb755f60_6 - pytz=2024.1=pyhd8ed1ab_0 - pyzmq=25.1.2=py311h34ded2d_0 + - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 - setuptools=69.1.1=pyhd8ed1ab_0 - singular=4.3.2.p8=h33f5c3f_1 - six=1.16.0=pyh6c4a22f_0 diff --git a/src/environment-3.11-macos-arm64.yml b/src/environment-3.11-macos-arm64.yml index 9df5a2e3637..8cf800b4cd9 100644 --- a/src/environment-3.11-macos-arm64.yml +++ b/src/environment-3.11-macos-arm64.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: osx-arm64 -# input_hash: 02d201a54886831777e2b88da0969f4dfe54d2fdbf17cfb2ea9712aa2e2034c3 +# input_hash: efa5ea1498b84f4ee84f4049473f0a1104323baf0ffd776140fc2f4abcbde77a channels: - conda-forge @@ -14,18 +14,18 @@ dependencies: - font-ttf-source-code-pro=2.038=h77eed37_0 - font-ttf-ubuntu=0.83=h77eed37_1 - giflib=5.2.1=h1a8c8d9_3 - - icu=73.2=hc8870d7_0 - - libboost-headers=1.84.0=hce30654_1 + - icu=72.1=he12128b_0 + - jpeg=9e=h1a8c8d9_3 + - libboost-headers=1.82.0=hce30654_2 - libbrotlicommon=1.1.0=hb547adb_1 - libcxx=16.0.6=h4653b0c_0 - - libdeflate=1.19=hb547adb_0 + - libdeflate=1.17=h1a8c8d9_0 - libev=4.33=h93a5062_2 - libexpat=2.5.0=hb7217d7_1 - libffi=3.4.2=h3422bc3_5 - libiconv=1.17=h0d3ecfb_2 - - libjpeg-turbo=3.0.0=hb547adb_1 - libsodium=1.0.18=h27ca646_1 - - libwebp-base=1.3.2=hb547adb_0 + - libwebp-base=1.2.4=h1a8c8d9_0 - libzlib=1.2.13=h53f4e23_5 - llvm-openmp=17.0.6=hcd81f8e_0 - nauty=2.8.8=h93a5062_1 @@ -37,6 +37,7 @@ dependencies: - planarity=3.0.0.5=h27ca646_1002 - pthread-stubs=0.4=h27ca646_1001 - python_abi=3.11=4_cp311 + - sagemath-db-polytopes=20170220=1 - tzdata=2024a=h0c530f3_0 - xorg-libxau=1.0.11=hb547adb_0 - xorg-libxdmcp=1.1.3=h27ca646_0 @@ -52,10 +53,10 @@ dependencies: - libbrotlidec=1.1.0=hb547adb_1 - libbrotlienc=1.1.0=hb547adb_1 - libgfortran5=13.2.0=hf226fd6_3 - - libpng=1.6.42=h091b4b1_0 + - libpng=1.6.43=h091b4b1_0 - libsqlite=3.45.1=h091b4b1_0 - - libxcb=1.15=hf346824_0 - - libxml2=2.12.5=h0d0cfa8_0 + - libxcb=1.13=h9b22ae9_1004 + - libxml2=2.11.5=he3bdae6_0 - lrcalc=2.1=hebf3989_6 - ncurses=6.4=h463b476_2 - openssl=3.2.1=h0d3ecfb_0 @@ -76,48 +77,50 @@ dependencies: - freetype=2.12.1=hadb7bae_2 - givaro=4.1.1=h0cdca34_3 - glpk=5.0=h6d7a090_0 - - libboost=1.84.0=h8e0f962_1 + - libboost=1.82.0=h3f31f7c_2 - libedit=3.1.20191231=hc8eb9b7_2 - libgfortran=5.0.0=13_2_0_hd922786_3 - libglib=2.78.4=h1635a5e_0 - libhomfly=1.02r6=h27ca646_0 - - libllvm16=16.0.6=haab561b_3 + - libllvm16=16.0.6=he79909e_2 - libnghttp2=1.58.0=ha4dd798_1 - libssh2=1.11.0=h7a5bd25_0 - - libtiff=4.6.0=ha8a6c65_2 + - libtiff=4.5.0=h5dffbdd_2 - m4ri=20140914=h17b34a0_1005 - mpfr=4.2.1=h9546428_0 - ntl=11.4.3=hbb3f309_1 - primecount=7.6=hb6e4faa_0 - readline=8.2=h92ec313_1 - sigtool=0.1.3=h44b9a77_0 + - tachyon=0.99b6=hfb72b2a_1001 - brotli=1.1.0=hb547adb_1 - ecl=21.2.1=h8492d4d_2 - fontconfig=2.14.2=h82840c6_0 - gap-core=4.12.2=he8f4e70_3 - gfan=0.6.2=hec08f5c_1003 - krb5=1.21.2=h92f50d5_0 - - lcms2=2.16=ha0e7c42_0 + - lcms2=2.15=h481adae_0 - ld64_osx-arm64=609=ha4bd21c_16 - - libboost-devel=1.84.0=hf450f58_1 + - libboost-devel=1.82.0=hf450f58_2 - libbrial=1.2.12=ha7f5006_1 - libclang-cpp16=16.0.6=default_he012953_5 - libflint=3.0.1=h28749a5_ntl_100 - libopenblas=0.3.25=openmp_h6c19121_0 - - libwebp=1.3.2=hf30222e_1 - - llvm-tools=16.0.6=haab561b_3 + - libwebp=1.2.4=h999c80f_1 + - llvm-tools=16.0.6=he79909e_2 - m4rie=20150908=h17b34a0_1001 - mpc=1.3.1=h91ba8db_0 - mpfi=1.5.4=hbde5f5b_1001 - - openjpeg=2.5.0=h4c1507b_3 + - openjpeg=2.5.0=hbc2ba62_2 - pari=2.15.4=haeeeed7_2_pthread - pkg-config=0.29.2=hab62308_1008 - ppl=1.2=h8b147cf_1006 - python=3.11.8=hdf0ec26_0_cpython - qd=2.3.22=hbec66e7_1004 + - sqlite=3.45.1=hf2abe2d_0 - alabaster=0.7.16=pyhd8ed1ab_0 - appnope=0.1.4=pyhd8ed1ab_0 - - boost-cpp=1.84.0=hca5e981_1 + - boost-cpp=1.82.0=h4ae65de_2 - brial=1.2.12=pyh694c41f_1 - brotli-python=1.1.0=py311ha891d26_1 - cctools_osx-arm64=973.0.1=h62378fb_16 @@ -146,7 +149,7 @@ dependencies: - ld64=609=h634c8be_16 - libblas=3.9.0=20_osxarm64_openblas - libcurl=8.5.0=h2d989ff_0 - - libgd=2.3.3=hfdf3952_9 + - libgd=2.3.3=h8db8f0b_5 - markupsafe=2.1.5=py311h05b510d_0 - maxima=5.45.0=h6032a66_2 - mpmath=1.3.0=pyhd8ed1ab_0 @@ -157,7 +160,7 @@ dependencies: - packaging=23.2=pyhd8ed1ab_0 - parso=0.8.3=pyhd8ed1ab_0 - pickleshare=0.7.5=py_1003 - - pillow=10.2.0=py311hb9c5795_0 + - pillow=9.4.0=py311h627eb56_1 - pkgconfig=1.5.5=pyhd8ed1ab_4 - platformdirs=4.2.0=pyhd8ed1ab_0 - psutil=5.9.8=py311h05b510d_0 @@ -166,8 +169,10 @@ dependencies: - pygments=2.17.2=pyhd8ed1ab_0 - pyparsing=3.1.1=pyhd8ed1ab_0 - pysocks=1.7.1=pyha2e5f31_6 + - python-lrcalc=2.1=py311h92babd0_6 - pytz=2024.1=pyhd8ed1ab_0 - pyzmq=25.1.2=py311h6727e71_0 + - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 - setuptools=69.1.1=pyhd8ed1ab_0 - singular=4.3.2.p8=hb460b52_1 - six=1.16.0=pyh6c4a22f_0 @@ -220,7 +225,7 @@ dependencies: - contourpy=1.2.0=py311hd03642b_0 - fpylll=0.6.1=py311h341b96b_0 - giac=1.9.0.21=h1c96721_1 - - igraph=0.10.10=h48be1ad_0 + - igraph=0.10.8=h29932c4_0 - ipython=8.22.1=pyh707e725_0 - jupyter_client=8.6.0=pyhd8ed1ab_0 - linbox=1.6.3=h380be0f_8 diff --git a/src/environment-3.11-macos.yml b/src/environment-3.11-macos.yml index b743c447c94..c56f9574651 100644 --- a/src/environment-3.11-macos.yml +++ b/src/environment-3.11-macos.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: osx-64 -# input_hash: 449c187686902948fc85c1470ba9244a3d19b82f4b6a248d2f1cca230853ba09 +# input_hash: 853510e86a10a5d85817dbfef8a2252e019bfc2983d22b571f7d628d96e91f5b channels: - conda-forge @@ -37,6 +37,7 @@ dependencies: - planarity=3.0.0.5=hbcb3906_1002 - pthread-stubs=0.4=hc929b4f_1001 - python_abi=3.11=4_cp311 + - sagemath-db-polytopes=20170220=1 - tzdata=2024a=h0c530f3_0 - xorg-libxau=1.0.11=h0dc2134_0 - xorg-libxdmcp=1.1.3=h35c211d_0 @@ -52,7 +53,7 @@ dependencies: - libbrotlidec=1.1.0=h0dc2134_1 - libbrotlienc=1.1.0=h0dc2134_1 - libgfortran5=13.2.0=h2873a65_3 - - libpng=1.6.42=h92b6c6a_0 + - libpng=1.6.43=h92b6c6a_0 - libsqlite=3.45.1=h92b6c6a_0 - libxcb=1.15=hb7f2c08_0 - libxml2=2.12.5=hc0ae0f7_0 @@ -90,6 +91,7 @@ dependencies: - primecount=7.6=ha894c9a_0 - readline=8.2=h9e318b2_1 - sigtool=0.1.3=h88f4db0_0 + - tachyon=0.99b6=0 - brotli=1.1.0=h0dc2134_1 - ecl=21.2.1=hd029580_2 - fontconfig=2.14.2=h5bb23bf_0 @@ -113,6 +115,7 @@ dependencies: - ppl=1.2=ha60d53e_1006 - python=3.11.8=h9f0c242_0_cpython - qd=2.3.22=h2beb688_1004 + - sqlite=3.45.1=h7461747_0 - alabaster=0.7.16=pyhd8ed1ab_0 - appnope=0.1.4=pyhd8ed1ab_0 - boost-cpp=1.84.0=h07eb623_1 @@ -164,8 +167,10 @@ dependencies: - pygments=2.17.2=pyhd8ed1ab_0 - pyparsing=3.1.1=pyhd8ed1ab_0 - pysocks=1.7.1=pyha2e5f31_6 + - python-lrcalc=2.1=py311hdd0406b_6 - pytz=2024.1=pyhd8ed1ab_0 - pyzmq=25.1.2=py311h889d6d6_0 + - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 - setuptools=69.1.1=pyhd8ed1ab_0 - singular=4.3.2.p8=h0d51a9f_1 - six=1.16.0=pyh6c4a22f_0 diff --git a/src/environment-3.9-linux-aarch64.yml b/src/environment-3.9-linux-aarch64.yml index b8d4edb2197..e33551b3576 100644 --- a/src/environment-3.9-linux-aarch64.yml +++ b/src/environment-3.9-linux-aarch64.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: linux-aarch64 -# input_hash: 0127db3765fd3ca0fbf8c9af001868d436283baaa7e340cd80fc937e239fb52a +# input_hash: 8d4324ec31f81e97d1ff2515a47b0995966870135eb89fdc7a4e52337cb0ddbd channels: - conda-forge @@ -12,7 +12,7 @@ dependencies: - font-ttf-source-code-pro=2.038=h77eed37_0 - font-ttf-ubuntu=0.83=h77eed37_1 - ld_impl_linux-aarch64=2.40=h2d8c526_0 - - libboost-headers=1.84.0=h8af1aa0_1 + - libboost-headers=1.82.0=h8af1aa0_2 - libgcc-devel_linux-aarch64=12.3.0=h8b5ab12_105 - libgomp=13.2.0=hf8544c7_5 - libstdcxx-devel_linux-aarch64=12.3.0=h8b5ab12_105 @@ -21,6 +21,7 @@ dependencies: - pari-galdata=0.0.20180411=0 - pari-seadata-small=0.0.20090618=0 - python_abi=3.9=4_cp39 + - sagemath-db-polytopes=20170220=1 - tzdata=2024a=h0c530f3_0 - fonts-conda-forge=1=0 - kernel-headers_linux-aarch64=4.18.0=h5b4a56d_14 @@ -39,23 +40,23 @@ dependencies: - gf2x=1.3.0=h1b3b3a3_2 - giflib=5.2.1=hb4cce97_3 - gmp=6.3.0=h2f0025b_0 - - icu=73.2=h787c7f5_0 + - icu=72.1=hcf00150_0 + - jpeg=9e=h2a766a3_3 - keyutils=1.6.1=h4e544f5_0 - lerc=4.0.0=h4de3ea5_0 - libbraiding=1.2=hd600fc2_0 - libbrotlicommon=1.1.0=h31becfc_1 - - libdeflate=1.19=h31becfc_0 + - libdeflate=1.17=hb4cce97_0 - libev=4.33=h31becfc_2 - libexpat=2.5.0=hd600fc2_1 - libffi=3.4.2=h3557bc0_5 - libgfortran5=13.2.0=h582850c_5 - libiconv=1.17=h31becfc_2 - - libjpeg-turbo=3.0.0=h31becfc_1 - libnsl=2.0.1=h31becfc_0 - libsanitizer=12.3.0=h8ebda82_5 - libsodium=1.0.18=hb9de7d4_1 - libuuid=2.38.1=hb4cce97_0 - - libwebp-base=1.3.2=h31becfc_0 + - libwebp-base=1.2.4=h4e544f5_0 - libxcrypt=4.4.36=h31becfc_1 - libzlib=1.2.13=h31becfc_5 - lrcalc=2.1=h2f0025b_6 @@ -84,11 +85,11 @@ dependencies: - libgfortran-ng=13.2.0=he9431aa_5 - libhomfly=1.02r6=hb9de7d4_0 - libnghttp2=1.58.0=hb0e430d_1 - - libpng=1.6.42=h194ca79_0 + - libpng=1.6.43=h194ca79_0 - libsqlite=3.45.1=h194ca79_0 - libssh2=1.11.0=h492db2e_0 - - libxcb=1.15=h2a766a3_0 - - libxml2=2.12.5=h3091e33_0 + - libxcb=1.13=h3557bc0_1004 + - libxml2=2.11.5=h164fba4_0 - mpfr=4.2.1=ha2d0fc4_0 - ntl=11.4.3=h0d7519b_1 - perl=5.32.1=7_h31becfc_perl5 @@ -107,10 +108,10 @@ dependencies: - gfan=0.6.2=h5f589ec_1003 - gxx_impl_linux-aarch64=12.3.0=hcde2664_5 - krb5=1.21.2=hc419048_0 - - libboost=1.84.0=h1fed05a_1 + - libboost=1.82.0=hbfc56d7_2 - libflint=3.0.1=hc392af7_ntl_100 - libopenblas=0.3.25=pthreads_h5a5ec62_0 - - libtiff=4.6.0=h1708d11_2 + - libtiff=4.5.0=h4c1066a_2 - llvm-openmp=17.0.6=h8b0cb96_0 - m4ri=20140914=h75e8696_1005 - mpc=1.3.1=hf4c8f4c_0 @@ -119,6 +120,8 @@ dependencies: - ppl=1.2=h984aac9_1006 - python=3.9.18=h4ac3b42_1_cpython - qd=2.3.22=h05efe27_1004 + - sqlite=3.45.1=h3b3482f_0 + - tachyon=0.99b6=h63ab1d9_1001 - alabaster=0.7.16=pyhd8ed1ab_0 - brotli=1.1.0=h31becfc_1 - brotli-python=1.1.0=py39h387a81e_1 @@ -147,12 +150,12 @@ dependencies: - jupyterlab_widgets=3.0.10=pyhd8ed1ab_0 - kiwisolver=1.4.5=py39had2cf8c_1 - lcalc=2.0.5=h3264cc0_1 - - lcms2=2.16=h922389a_0 + - lcms2=2.15=h7576be9_0 - libblas=3.9.0=20_linuxaarch64_openblas - - libboost-devel=1.84.0=h37bb5a9_1 + - libboost-devel=1.82.0=h37bb5a9_2 - libbrial=1.2.12=h17533bf_1 - libcurl=8.5.0=h4e8248e_0 - - libwebp=1.3.2=heb2ea1b_1 + - libwebp=1.2.4=h7bdf6e5_1 - m4rie=20150908=h75e8696_1001 - markupsafe=2.1.5=py39h7cc1d5f_0 - maxima=5.47.0=h6475f26_1 @@ -161,7 +164,7 @@ dependencies: - nest-asyncio=1.6.0=pyhd8ed1ab_0 - networkx=3.2.1=pyhd8ed1ab_0 - openblas=0.3.25=pthreads_h339cbfa_0 - - openjpeg=2.5.0=h0d9d63b_3 + - openjpeg=2.5.0=h9508984_2 - packaging=23.2=pyhd8ed1ab_0 - parso=0.8.3=pyhd8ed1ab_0 - pickleshare=0.7.5=py_1003 @@ -173,8 +176,10 @@ dependencies: - pygments=2.17.2=pyhd8ed1ab_0 - pyparsing=3.1.1=pyhd8ed1ab_0 - pysocks=1.7.1=pyha2e5f31_6 + - python-lrcalc=2.1=py39h387a81e_6 - pytz=2024.1=pyhd8ed1ab_0 - pyzmq=25.1.2=py39hbab03a2_0 + - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 - setuptools=69.1.1=pyhd8ed1ab_0 - singular=4.3.2.p8=hbe76a8a_1 - six=1.16.0=pyh6c4a22f_0 @@ -191,7 +196,7 @@ dependencies: - zipp=3.17.0=pyhd8ed1ab_0 - asttokens=2.4.1=pyhd8ed1ab_0 - babel=2.14.0=pyhd8ed1ab_0 - - boost-cpp=1.84.0=ha990451_1 + - boost-cpp=1.82.0=h62f3a30_2 - brial=1.2.12=pyh694c41f_1 - comm=0.2.1=pyhd8ed1ab_0 - cxx-compiler=1.6.0=h2a328a1_0 @@ -203,12 +208,12 @@ dependencies: - jinja2=3.1.3=pyhd8ed1ab_0 - jupyter_core=5.7.1=py39h4420490_0 - libcblas=3.9.0=20_linuxaarch64_openblas - - libgd=2.3.3=hcd22fd5_9 + - libgd=2.3.3=h5fc1a20_5 - liblapack=3.9.0=20_linuxaarch64_openblas - matplotlib-inline=0.1.6=pyhd8ed1ab_0 - memory-allocator=0.1.3=py39h898b7ef_0 - pexpect=4.9.0=pyhd8ed1ab_0 - - pillow=10.2.0=py39h8ce38d7_0 + - pillow=9.4.0=py39h72365ce_1 - pip=24.0=pyhd8ed1ab_0 - pplpy=0.8.9=py39h087fc0e_0 - primecountpy=0.1.0=py39hd16970a_3 @@ -230,7 +235,7 @@ dependencies: - contourpy=1.2.0=py39hd16970a_0 - fpylll=0.6.1=py39h97065f7_0 - giac=1.9.0.21=h04922a4_1 - - igraph=0.10.10=hcfae7ab_0 + - igraph=0.10.8=h4617136_0 - ipython=8.18.1=pyh707e725_3 - jupyter_client=8.6.0=pyhd8ed1ab_0 - linbox=1.6.3=h681a5ee_8 diff --git a/src/environment-3.9-linux.yml b/src/environment-3.9-linux.yml index 4693601ea16..d6c680d1cef 100644 --- a/src/environment-3.9-linux.yml +++ b/src/environment-3.9-linux.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: 440e15fd8b2a8a8004f2bd0cf252c5bcc0158a6c417599fa1dbb6c032034eded +# input_hash: 0dc864e31e5ed0fe066de215fbbf063948b08946d961574679c20eddc06c31d2 channels: - conda-forge @@ -21,6 +21,7 @@ dependencies: - pari-galdata=0.0.20180411=0 - pari-seadata-small=0.0.20090618=0 - python_abi=3.9=4_cp39 + - sagemath-db-polytopes=20170220=1 - tzdata=2024a=h0c530f3_0 - fonts-conda-forge=1=0 - libgomp=13.2.0=h807b86a_5 @@ -84,7 +85,7 @@ dependencies: - libgfortran-ng=13.2.0=h69a702a_5 - libhomfly=1.02r6=h36c2ea0_0 - libnghttp2=1.58.0=h47da74e_1 - - libpng=1.6.42=h2797004_0 + - libpng=1.6.43=h2797004_0 - libsqlite=3.45.1=h2797004_0 - libssh2=1.11.0=h0841786_0 - libxcb=1.15=h0b41bf4_0 @@ -119,6 +120,8 @@ dependencies: - ppl=1.2=h6ec01c2_1006 - python=3.9.18=h0755675_1_cpython - qd=2.3.22=h2cc385e_1004 + - sqlite=3.45.1=h2c6b66d_0 + - tachyon=0.99b6=0 - alabaster=0.7.16=pyhd8ed1ab_0 - brotli=1.1.0=hd590300_1 - brotli-python=1.1.0=py39h3d6467e_1 @@ -173,8 +176,10 @@ dependencies: - pygments=2.17.2=pyhd8ed1ab_0 - pyparsing=3.1.1=pyhd8ed1ab_0 - pysocks=1.7.1=pyha2e5f31_6 + - python-lrcalc=2.1=py39h3d6467e_6 - pytz=2024.1=pyhd8ed1ab_0 - pyzmq=25.1.2=py39h8c080ef_0 + - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 - setuptools=69.1.1=pyhd8ed1ab_0 - singular=4.3.2.p8=h33f5c3f_1 - six=1.16.0=pyh6c4a22f_0 diff --git a/src/environment-3.9-macos-arm64.yml b/src/environment-3.9-macos-arm64.yml index 9433644cd1e..178ef2f4cde 100644 --- a/src/environment-3.9-macos-arm64.yml +++ b/src/environment-3.9-macos-arm64.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: osx-arm64 -# input_hash: 47e535549b78839268cd8547a6c59a3cef740a38ad0fdf820e6db7417c9fae23 +# input_hash: 26ff7d76fba2a5a875cd9fb8d50c12ba0bb3559fb0a1b74d4149ec0886d490ad channels: - conda-forge @@ -14,18 +14,18 @@ dependencies: - font-ttf-source-code-pro=2.038=h77eed37_0 - font-ttf-ubuntu=0.83=h77eed37_1 - giflib=5.2.1=h1a8c8d9_3 - - icu=73.2=hc8870d7_0 - - libboost-headers=1.84.0=hce30654_1 + - icu=72.1=he12128b_0 + - jpeg=9e=h1a8c8d9_3 + - libboost-headers=1.82.0=hce30654_2 - libbrotlicommon=1.1.0=hb547adb_1 - libcxx=16.0.6=h4653b0c_0 - - libdeflate=1.19=hb547adb_0 + - libdeflate=1.17=h1a8c8d9_0 - libev=4.33=h93a5062_2 - libexpat=2.5.0=hb7217d7_1 - libffi=3.4.2=h3422bc3_5 - libiconv=1.17=h0d3ecfb_2 - - libjpeg-turbo=3.0.0=hb547adb_1 - libsodium=1.0.18=h27ca646_1 - - libwebp-base=1.3.2=hb547adb_0 + - libwebp-base=1.2.4=h1a8c8d9_0 - libzlib=1.2.13=h53f4e23_5 - llvm-openmp=17.0.6=hcd81f8e_0 - nauty=2.8.8=h93a5062_1 @@ -37,6 +37,7 @@ dependencies: - planarity=3.0.0.5=h27ca646_1002 - pthread-stubs=0.4=h27ca646_1001 - python_abi=3.9=4_cp39 + - sagemath-db-polytopes=20170220=1 - tzdata=2024a=h0c530f3_0 - xorg-libxau=1.0.11=hb547adb_0 - xorg-libxdmcp=1.1.3=h27ca646_0 @@ -52,10 +53,10 @@ dependencies: - libbrotlidec=1.1.0=hb547adb_1 - libbrotlienc=1.1.0=hb547adb_1 - libgfortran5=13.2.0=hf226fd6_3 - - libpng=1.6.42=h091b4b1_0 + - libpng=1.6.43=h091b4b1_0 - libsqlite=3.45.1=h091b4b1_0 - - libxcb=1.15=hf346824_0 - - libxml2=2.12.5=h0d0cfa8_0 + - libxcb=1.13=h9b22ae9_1004 + - libxml2=2.11.5=he3bdae6_0 - lrcalc=2.1=hebf3989_6 - ncurses=6.4=h463b476_2 - openssl=3.2.1=h0d3ecfb_0 @@ -76,48 +77,50 @@ dependencies: - freetype=2.12.1=hadb7bae_2 - givaro=4.1.1=h0cdca34_3 - glpk=5.0=h6d7a090_0 - - libboost=1.84.0=h8e0f962_1 + - libboost=1.82.0=h3f31f7c_2 - libedit=3.1.20191231=hc8eb9b7_2 - libgfortran=5.0.0=13_2_0_hd922786_3 - libglib=2.78.4=h1635a5e_0 - libhomfly=1.02r6=h27ca646_0 - - libllvm16=16.0.6=haab561b_3 + - libllvm16=16.0.6=he79909e_2 - libnghttp2=1.58.0=ha4dd798_1 - libssh2=1.11.0=h7a5bd25_0 - - libtiff=4.6.0=ha8a6c65_2 + - libtiff=4.5.0=h5dffbdd_2 - m4ri=20140914=h17b34a0_1005 - mpfr=4.2.1=h9546428_0 - ntl=11.4.3=hbb3f309_1 - primecount=7.6=hb6e4faa_0 - readline=8.2=h92ec313_1 - sigtool=0.1.3=h44b9a77_0 + - tachyon=0.99b6=hfb72b2a_1001 - brotli=1.1.0=hb547adb_1 - ecl=21.2.1=h8492d4d_2 - fontconfig=2.14.2=h82840c6_0 - gap-core=4.12.2=he8f4e70_3 - gfan=0.6.2=hec08f5c_1003 - krb5=1.21.2=h92f50d5_0 - - lcms2=2.16=ha0e7c42_0 + - lcms2=2.15=h481adae_0 - ld64_osx-arm64=609=ha4bd21c_16 - - libboost-devel=1.84.0=hf450f58_1 + - libboost-devel=1.82.0=hf450f58_2 - libbrial=1.2.12=ha7f5006_1 - libclang-cpp16=16.0.6=default_he012953_5 - libflint=3.0.1=h28749a5_ntl_100 - libopenblas=0.3.25=openmp_h6c19121_0 - - libwebp=1.3.2=hf30222e_1 - - llvm-tools=16.0.6=haab561b_3 + - libwebp=1.2.4=h999c80f_1 + - llvm-tools=16.0.6=he79909e_2 - m4rie=20150908=h17b34a0_1001 - mpc=1.3.1=h91ba8db_0 - mpfi=1.5.4=hbde5f5b_1001 - - openjpeg=2.5.0=h4c1507b_3 + - openjpeg=2.5.0=hbc2ba62_2 - pari=2.15.4=haeeeed7_2_pthread - pkg-config=0.29.2=hab62308_1008 - ppl=1.2=h8b147cf_1006 - python=3.9.18=hd7ebdb9_1_cpython - qd=2.3.22=hbec66e7_1004 + - sqlite=3.45.1=hf2abe2d_0 - alabaster=0.7.16=pyhd8ed1ab_0 - appnope=0.1.4=pyhd8ed1ab_0 - - boost-cpp=1.84.0=hca5e981_1 + - boost-cpp=1.82.0=h4ae65de_2 - brial=1.2.12=pyh694c41f_1 - brotli-python=1.1.0=py39hb198ff7_1 - cctools_osx-arm64=973.0.1=h62378fb_16 @@ -146,7 +149,7 @@ dependencies: - ld64=609=h634c8be_16 - libblas=3.9.0=20_osxarm64_openblas - libcurl=8.5.0=h2d989ff_0 - - libgd=2.3.3=hfdf3952_9 + - libgd=2.3.3=h8db8f0b_5 - markupsafe=2.1.5=py39h17cfd9d_0 - maxima=5.45.0=h6032a66_2 - mpmath=1.3.0=pyhd8ed1ab_0 @@ -157,7 +160,7 @@ dependencies: - packaging=23.2=pyhd8ed1ab_0 - parso=0.8.3=pyhd8ed1ab_0 - pickleshare=0.7.5=py_1003 - - pillow=10.2.0=py39h755f0b7_0 + - pillow=9.4.0=py39h8bd98a6_1 - pkgconfig=1.5.5=pyhd8ed1ab_4 - platformdirs=4.2.0=pyhd8ed1ab_0 - psutil=5.9.8=py39h17cfd9d_0 @@ -166,8 +169,10 @@ dependencies: - pygments=2.17.2=pyhd8ed1ab_0 - pyparsing=3.1.1=pyhd8ed1ab_0 - pysocks=1.7.1=pyha2e5f31_6 + - python-lrcalc=2.1=py39hf3050f2_6 - pytz=2024.1=pyhd8ed1ab_0 - pyzmq=25.1.2=py39he1e2164_0 + - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 - setuptools=69.1.1=pyhd8ed1ab_0 - singular=4.3.2.p8=hb460b52_1 - six=1.16.0=pyh6c4a22f_0 @@ -222,7 +227,7 @@ dependencies: - contourpy=1.2.0=py39he9de807_0 - fpylll=0.6.1=py39h2eadeda_0 - giac=1.9.0.21=h1c96721_1 - - igraph=0.10.10=h48be1ad_0 + - igraph=0.10.8=h29932c4_0 - ipython=8.18.1=pyh707e725_3 - jupyter_client=8.6.0=pyhd8ed1ab_0 - linbox=1.6.3=h380be0f_8 diff --git a/src/environment-3.9-macos.yml b/src/environment-3.9-macos.yml index ed8e120a256..c88bcb63184 100644 --- a/src/environment-3.9-macos.yml +++ b/src/environment-3.9-macos.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: osx-64 -# input_hash: 8b8f458cc1ce4f5f4f62c5994dcfc5a372d4ee6fd93282e8048c5cca8387d827 +# input_hash: 18e525767190d86d8da78f7f6aaca852284483879bbc50fc537f81c6e9914000 channels: - conda-forge @@ -37,6 +37,7 @@ dependencies: - planarity=3.0.0.5=hbcb3906_1002 - pthread-stubs=0.4=hc929b4f_1001 - python_abi=3.9=4_cp39 + - sagemath-db-polytopes=20170220=1 - tzdata=2024a=h0c530f3_0 - xorg-libxau=1.0.11=h0dc2134_0 - xorg-libxdmcp=1.1.3=h35c211d_0 @@ -52,7 +53,7 @@ dependencies: - libbrotlidec=1.1.0=h0dc2134_1 - libbrotlienc=1.1.0=h0dc2134_1 - libgfortran5=13.2.0=h2873a65_3 - - libpng=1.6.42=h92b6c6a_0 + - libpng=1.6.43=h92b6c6a_0 - libsqlite=3.45.1=h92b6c6a_0 - libxcb=1.15=hb7f2c08_0 - libxml2=2.12.5=hc0ae0f7_0 @@ -90,6 +91,7 @@ dependencies: - primecount=7.6=ha894c9a_0 - readline=8.2=h9e318b2_1 - sigtool=0.1.3=h88f4db0_0 + - tachyon=0.99b6=0 - brotli=1.1.0=h0dc2134_1 - ecl=21.2.1=hd029580_2 - fontconfig=2.14.2=h5bb23bf_0 @@ -113,6 +115,7 @@ dependencies: - ppl=1.2=ha60d53e_1006 - python=3.9.18=h7a9c478_1_cpython - qd=2.3.22=h2beb688_1004 + - sqlite=3.45.1=h7461747_0 - alabaster=0.7.16=pyhd8ed1ab_0 - appnope=0.1.4=pyhd8ed1ab_0 - boost-cpp=1.84.0=h07eb623_1 @@ -164,8 +167,10 @@ dependencies: - pygments=2.17.2=pyhd8ed1ab_0 - pyparsing=3.1.1=pyhd8ed1ab_0 - pysocks=1.7.1=pyha2e5f31_6 + - python-lrcalc=2.1=py39hd253f6c_6 - pytz=2024.1=pyhd8ed1ab_0 - pyzmq=25.1.2=py39hcb7a90d_0 + - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 - setuptools=69.1.1=pyhd8ed1ab_0 - singular=4.3.2.p8=h0d51a9f_1 - six=1.16.0=pyh6c4a22f_0 diff --git a/src/environment-dev-3.10-linux-aarch64.yml b/src/environment-dev-3.10-linux-aarch64.yml index 1f52dfa0442..6008439acec 100644 --- a/src/environment-dev-3.10-linux-aarch64.yml +++ b/src/environment-dev-3.10-linux-aarch64.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: linux-aarch64 -# input_hash: 48c7de04cfa4d7e770d059eb789eca5b00e4233d3147a53dea402c0295316f67 +# input_hash: d59c7fdfce423e59357f7331b830bccc234d131565ef99e3f9d46758e8d2b17c channels: - conda-forge @@ -12,7 +12,7 @@ dependencies: - font-ttf-source-code-pro=2.038=h77eed37_0 - font-ttf-ubuntu=0.83=h77eed37_1 - ld_impl_linux-aarch64=2.40=h2d8c526_0 - - libboost-headers=1.84.0=h8af1aa0_1 + - libboost-headers=1.82.0=h8af1aa0_2 - libgcc-devel_linux-aarch64=12.3.0=h8b5ab12_105 - libgomp=13.2.0=hf8544c7_5 - libstdcxx-devel_linux-aarch64=12.3.0=h8b5ab12_105 @@ -21,6 +21,7 @@ dependencies: - pari-galdata=0.0.20180411=0 - pari-seadata-small=0.0.20090618=0 - python_abi=3.10=4_cp310 + - sagemath-db-polytopes=20170220=1 - tzdata=2024a=h0c530f3_0 - fonts-conda-forge=1=0 - kernel-headers_linux-aarch64=4.18.0=h5b4a56d_14 @@ -39,23 +40,23 @@ dependencies: - gf2x=1.3.0=h1b3b3a3_2 - giflib=5.2.1=hb4cce97_3 - gmp=6.3.0=h2f0025b_0 - - icu=73.2=h787c7f5_0 + - icu=72.1=hcf00150_0 + - jpeg=9e=h2a766a3_3 - keyutils=1.6.1=h4e544f5_0 - lerc=4.0.0=h4de3ea5_0 - libbraiding=1.2=hd600fc2_0 - libbrotlicommon=1.1.0=h31becfc_1 - - libdeflate=1.19=h31becfc_0 + - libdeflate=1.17=hb4cce97_0 - libev=4.33=h31becfc_2 - libexpat=2.5.0=hd600fc2_1 - libffi=3.4.2=h3557bc0_5 - libgfortran5=13.2.0=h582850c_5 - libiconv=1.17=h31becfc_2 - - libjpeg-turbo=3.0.0=h31becfc_1 - libnsl=2.0.1=h31becfc_0 - libsanitizer=12.3.0=h8ebda82_5 - libsodium=1.0.18=hb9de7d4_1 - libuuid=2.38.1=hb4cce97_0 - - libwebp-base=1.3.2=h31becfc_0 + - libwebp-base=1.2.4=h4e544f5_0 - libxcrypt=4.4.36=h31becfc_1 - libzlib=1.2.13=h31becfc_5 - lrcalc=2.1=h2f0025b_6 @@ -84,11 +85,11 @@ dependencies: - libgfortran-ng=13.2.0=he9431aa_5 - libhomfly=1.02r6=hb9de7d4_0 - libnghttp2=1.58.0=hb0e430d_1 - - libpng=1.6.42=h194ca79_0 + - libpng=1.6.43=h194ca79_0 - libsqlite=3.45.1=h194ca79_0 - libssh2=1.11.0=h492db2e_0 - - libxcb=1.15=h2a766a3_0 - - libxml2=2.12.5=h3091e33_0 + - libxcb=1.13=h3557bc0_1004 + - libxml2=2.11.5=h164fba4_0 - mpfr=4.2.1=ha2d0fc4_0 - ntl=11.4.3=h0d7519b_1 - perl=5.32.1=7_h31becfc_perl5 @@ -107,10 +108,10 @@ dependencies: - gfan=0.6.2=h5f589ec_1003 - gxx_impl_linux-aarch64=12.3.0=hcde2664_5 - krb5=1.21.2=hc419048_0 - - libboost=1.84.0=h1fed05a_1 + - libboost=1.82.0=hbfc56d7_2 - libflint=3.0.1=hc392af7_ntl_100 - libopenblas=0.3.25=pthreads_h5a5ec62_0 - - libtiff=4.6.0=h1708d11_2 + - libtiff=4.5.0=h4c1066a_2 - llvm-openmp=17.0.6=h8b0cb96_0 - m4ri=20140914=h75e8696_1005 - mpc=1.3.1=hf4c8f4c_0 @@ -119,6 +120,8 @@ dependencies: - ppl=1.2=h984aac9_1006 - python=3.10.13=hbbe8eec_1_cpython - qd=2.3.22=h05efe27_1004 + - sqlite=3.45.1=h3b3482f_0 + - tachyon=0.99b6=h63ab1d9_1001 - alabaster=0.7.16=pyhd8ed1ab_0 - brotli=1.1.0=h31becfc_1 - brotli-python=1.1.0=py310hbb3657e_1 @@ -149,12 +152,12 @@ dependencies: - jupyterlab_widgets=3.0.10=pyhd8ed1ab_0 - kiwisolver=1.4.5=py310he290b8a_1 - lcalc=2.0.5=h3264cc0_1 - - lcms2=2.16=h922389a_0 + - lcms2=2.15=h7576be9_0 - libblas=3.9.0=20_linuxaarch64_openblas - - libboost-devel=1.84.0=h37bb5a9_1 + - libboost-devel=1.82.0=h37bb5a9_2 - libbrial=1.2.12=h17533bf_1 - libcurl=8.5.0=h4e8248e_0 - - libwebp=1.3.2=heb2ea1b_1 + - libwebp=1.2.4=h7bdf6e5_1 - m4rie=20150908=h75e8696_1001 - markupsafe=2.1.5=py310h7c1f4a2_0 - maxima=5.47.0=h6475f26_1 @@ -163,7 +166,7 @@ dependencies: - nest-asyncio=1.6.0=pyhd8ed1ab_0 - networkx=3.2.1=pyhd8ed1ab_0 - openblas=0.3.25=pthreads_h339cbfa_0 - - openjpeg=2.5.0=h0d9d63b_3 + - openjpeg=2.5.0=h9508984_2 - packaging=23.2=pyhd8ed1ab_0 - parso=0.8.3=pyhd8ed1ab_0 - pickleshare=0.7.5=py_1003 @@ -176,8 +179,10 @@ dependencies: - pygments=2.17.2=pyhd8ed1ab_0 - pyparsing=3.1.1=pyhd8ed1ab_0 - pysocks=1.7.1=pyha2e5f31_6 + - python-lrcalc=2.1=py310hbb3657e_6 - pytz=2024.1=pyhd8ed1ab_0 - pyzmq=25.1.2=py310h014ca53_0 + - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 - setuptools=69.1.1=pyhd8ed1ab_0 - singular=4.3.2.p8=hbe76a8a_1 - six=1.16.0=pyh6c4a22f_0 @@ -197,10 +202,10 @@ dependencies: - asttokens=2.4.1=pyhd8ed1ab_0 - babel=2.14.0=pyhd8ed1ab_0 - beautifulsoup4=4.12.3=pyha770c72_0 - - boost-cpp=1.84.0=ha990451_1 + - boost-cpp=1.82.0=h62f3a30_2 - brial=1.2.12=pyh694c41f_1 - comm=0.2.1=pyhd8ed1ab_0 - - coverage=7.4.3=py310h7c1f4a2_0 + - coverage=7.4.3=py310h7c1f4a2_1 - cxx-compiler=1.6.0=h2a328a1_0 - cypari2=2.1.4=py310h4cbba44_2 - fonttools=4.49.0=py310hb299538_0 @@ -210,17 +215,17 @@ dependencies: - jinja2=3.1.3=pyhd8ed1ab_0 - jupyter_core=5.7.1=py310h4c7bcd0_0 - libcblas=3.9.0=20_linuxaarch64_openblas - - libgd=2.3.3=hcd22fd5_9 + - libgd=2.3.3=h5fc1a20_5 - liblapack=3.9.0=20_linuxaarch64_openblas - matplotlib-inline=0.1.6=pyhd8ed1ab_0 - memory-allocator=0.1.3=py310hb299538_0 - pexpect=4.9.0=pyhd8ed1ab_0 - - pillow=10.2.0=py310h0ae3e2b_0 + - pillow=9.4.0=py310h2843b5e_1 - pip=24.0=pyhd8ed1ab_0 - pplpy=0.8.9=py310hd5c817c_0 - primecountpy=0.1.0=py310h586407a_4 - prompt-toolkit=3.0.42=pyha770c72_0 - - pytest=8.0.1=pyhd8ed1ab_1 + - pytest=8.0.2=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - sympy=1.12=pypyh9d50eac_103 - urllib3=2.2.1=pyhd8ed1ab_0 @@ -238,7 +243,7 @@ dependencies: - contourpy=1.2.0=py310h586407a_0 - fpylll=0.6.1=py310hfdbf2a6_0 - giac=1.9.0.21=h04922a4_1 - - igraph=0.10.10=hcfae7ab_0 + - igraph=0.10.8=h4617136_0 - ipython=8.22.1=pyh707e725_0 - jupyter_client=8.6.0=pyhd8ed1ab_0 - linbox=1.6.3=h681a5ee_8 diff --git a/src/environment-dev-3.10-linux.yml b/src/environment-dev-3.10-linux.yml index 906af974d0a..f3515b97552 100644 --- a/src/environment-dev-3.10-linux.yml +++ b/src/environment-dev-3.10-linux.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: 9e57280e784d9744d31e3409ca495963b80a0068d863b5e7f8e753def6383460 +# input_hash: a1db7fb958522fc2aa766534dd623dc80a732897e8ee230e3eced324030a4e33 channels: - conda-forge @@ -21,6 +21,7 @@ dependencies: - pari-galdata=0.0.20180411=0 - pari-seadata-small=0.0.20090618=0 - python_abi=3.10=4_cp310 + - sagemath-db-polytopes=20170220=1 - tzdata=2024a=h0c530f3_0 - fonts-conda-forge=1=0 - libgomp=13.2.0=h807b86a_5 @@ -84,7 +85,7 @@ dependencies: - libgfortran-ng=13.2.0=h69a702a_5 - libhomfly=1.02r6=h36c2ea0_0 - libnghttp2=1.58.0=h47da74e_1 - - libpng=1.6.42=h2797004_0 + - libpng=1.6.43=h2797004_0 - libsqlite=3.45.1=h2797004_0 - libssh2=1.11.0=h0841786_0 - libxcb=1.15=h0b41bf4_0 @@ -119,6 +120,8 @@ dependencies: - ppl=1.2=h6ec01c2_1006 - python=3.10.13=hd12c33a_1_cpython - qd=2.3.22=h2cc385e_1004 + - sqlite=3.45.1=h2c6b66d_0 + - tachyon=0.99b6=0 - alabaster=0.7.16=pyhd8ed1ab_0 - brotli=1.1.0=hd590300_1 - brotli-python=1.1.0=py310hc6cd4ac_1 @@ -176,8 +179,10 @@ dependencies: - pygments=2.17.2=pyhd8ed1ab_0 - pyparsing=3.1.1=pyhd8ed1ab_0 - pysocks=1.7.1=pyha2e5f31_6 + - python-lrcalc=2.1=py310hc6cd4ac_6 - pytz=2024.1=pyhd8ed1ab_0 - pyzmq=25.1.2=py310h795f18f_0 + - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 - setuptools=69.1.1=pyhd8ed1ab_0 - singular=4.3.2.p8=h33f5c3f_1 - six=1.16.0=pyh6c4a22f_0 @@ -200,7 +205,7 @@ dependencies: - boost-cpp=1.84.0=h44aadfe_1 - brial=1.2.12=pyh694c41f_1 - comm=0.2.1=pyhd8ed1ab_0 - - coverage=7.4.3=py310h2372a71_0 + - coverage=7.4.3=py310h2372a71_1 - cxx-compiler=1.6.0=h00ab1b0_0 - cypari2=2.1.4=py310h14ed79e_2 - fonttools=4.49.0=py310h2372a71_0 @@ -220,7 +225,7 @@ dependencies: - pplpy=0.8.9=py310h28f6eb6_0 - primecountpy=0.1.0=py310hd41b1e2_4 - prompt-toolkit=3.0.42=pyha770c72_0 - - pytest=8.0.1=pyhd8ed1ab_1 + - pytest=8.0.2=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - sympy=1.12=pypyh9d50eac_103 - urllib3=2.2.1=pyhd8ed1ab_0 diff --git a/src/environment-dev-3.10-macos-arm64.yml b/src/environment-dev-3.10-macos-arm64.yml index 7ba239934a1..f69af16cbb4 100644 --- a/src/environment-dev-3.10-macos-arm64.yml +++ b/src/environment-dev-3.10-macos-arm64.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: osx-arm64 -# input_hash: 1cbc354aec588ee8383c3488e75946521676c45f7d2832a1bb4e50470e44e54a +# input_hash: 3b0ed1fe32c698567102d2e56bfd6673004af4d8fcb9f683835da09597cc4fc4 channels: - conda-forge @@ -14,18 +14,18 @@ dependencies: - font-ttf-source-code-pro=2.038=h77eed37_0 - font-ttf-ubuntu=0.83=h77eed37_1 - giflib=5.2.1=h1a8c8d9_3 - - icu=73.2=hc8870d7_0 - - libboost-headers=1.84.0=hce30654_1 + - icu=72.1=he12128b_0 + - jpeg=9e=h1a8c8d9_3 + - libboost-headers=1.82.0=hce30654_2 - libbrotlicommon=1.1.0=hb547adb_1 - libcxx=16.0.6=h4653b0c_0 - - libdeflate=1.19=hb547adb_0 + - libdeflate=1.17=h1a8c8d9_0 - libev=4.33=h93a5062_2 - libexpat=2.5.0=hb7217d7_1 - libffi=3.4.2=h3422bc3_5 - libiconv=1.17=h0d3ecfb_2 - - libjpeg-turbo=3.0.0=hb547adb_1 - libsodium=1.0.18=h27ca646_1 - - libwebp-base=1.3.2=hb547adb_0 + - libwebp-base=1.2.4=h1a8c8d9_0 - libzlib=1.2.13=h53f4e23_5 - llvm-openmp=17.0.6=hcd81f8e_0 - nauty=2.8.8=h93a5062_1 @@ -37,6 +37,7 @@ dependencies: - planarity=3.0.0.5=h27ca646_1002 - pthread-stubs=0.4=h27ca646_1001 - python_abi=3.10=4_cp310 + - sagemath-db-polytopes=20170220=1 - tzdata=2024a=h0c530f3_0 - xorg-libxau=1.0.11=hb547adb_0 - xorg-libxdmcp=1.1.3=h27ca646_0 @@ -52,10 +53,10 @@ dependencies: - libbrotlidec=1.1.0=hb547adb_1 - libbrotlienc=1.1.0=hb547adb_1 - libgfortran5=13.2.0=hf226fd6_3 - - libpng=1.6.42=h091b4b1_0 + - libpng=1.6.43=h091b4b1_0 - libsqlite=3.45.1=h091b4b1_0 - - libxcb=1.15=hf346824_0 - - libxml2=2.12.5=h0d0cfa8_0 + - libxcb=1.13=h9b22ae9_1004 + - libxml2=2.11.5=he3bdae6_0 - lrcalc=2.1=hebf3989_6 - ncurses=6.4=h463b476_2 - openssl=3.2.1=h0d3ecfb_0 @@ -76,48 +77,50 @@ dependencies: - freetype=2.12.1=hadb7bae_2 - givaro=4.1.1=h0cdca34_3 - glpk=5.0=h6d7a090_0 - - libboost=1.84.0=h8e0f962_1 + - libboost=1.82.0=h3f31f7c_2 - libedit=3.1.20191231=hc8eb9b7_2 - libgfortran=5.0.0=13_2_0_hd922786_3 - libglib=2.78.4=h1635a5e_0 - libhomfly=1.02r6=h27ca646_0 - - libllvm16=16.0.6=haab561b_3 + - libllvm16=16.0.6=he79909e_2 - libnghttp2=1.58.0=ha4dd798_1 - libssh2=1.11.0=h7a5bd25_0 - - libtiff=4.6.0=ha8a6c65_2 + - libtiff=4.5.0=h5dffbdd_2 - m4ri=20140914=h17b34a0_1005 - mpfr=4.2.1=h9546428_0 - ntl=11.4.3=hbb3f309_1 - primecount=7.6=hb6e4faa_0 - readline=8.2=h92ec313_1 - sigtool=0.1.3=h44b9a77_0 + - tachyon=0.99b6=hfb72b2a_1001 - brotli=1.1.0=hb547adb_1 - ecl=21.2.1=h8492d4d_2 - fontconfig=2.14.2=h82840c6_0 - gap-core=4.12.2=he8f4e70_3 - gfan=0.6.2=hec08f5c_1003 - krb5=1.21.2=h92f50d5_0 - - lcms2=2.16=ha0e7c42_0 + - lcms2=2.15=h481adae_0 - ld64_osx-arm64=609=ha4bd21c_16 - - libboost-devel=1.84.0=hf450f58_1 + - libboost-devel=1.82.0=hf450f58_2 - libbrial=1.2.12=ha7f5006_1 - libclang-cpp16=16.0.6=default_he012953_5 - libflint=3.0.1=h28749a5_ntl_100 - libopenblas=0.3.25=openmp_h6c19121_0 - - libwebp=1.3.2=hf30222e_1 - - llvm-tools=16.0.6=haab561b_3 + - libwebp=1.2.4=h999c80f_1 + - llvm-tools=16.0.6=he79909e_2 - m4rie=20150908=h17b34a0_1001 - mpc=1.3.1=h91ba8db_0 - mpfi=1.5.4=hbde5f5b_1001 - - openjpeg=2.5.0=h4c1507b_3 + - openjpeg=2.5.0=hbc2ba62_2 - pari=2.15.4=haeeeed7_2_pthread - pkg-config=0.29.2=hab62308_1008 - ppl=1.2=h8b147cf_1006 - python=3.10.13=h2469fbe_1_cpython - qd=2.3.22=hbec66e7_1004 + - sqlite=3.45.1=hf2abe2d_0 - alabaster=0.7.16=pyhd8ed1ab_0 - appnope=0.1.4=pyhd8ed1ab_0 - - boost-cpp=1.84.0=hca5e981_1 + - boost-cpp=1.82.0=h4ae65de_2 - brial=1.2.12=pyh694c41f_1 - brotli-python=1.1.0=py310h1253130_1 - cctools_osx-arm64=973.0.1=h62378fb_16 @@ -148,7 +151,7 @@ dependencies: - ld64=609=h634c8be_16 - libblas=3.9.0=20_osxarm64_openblas - libcurl=8.5.0=h2d989ff_0 - - libgd=2.3.3=hfdf3952_9 + - libgd=2.3.3=h8db8f0b_5 - markupsafe=2.1.5=py310hd125d64_0 - maxima=5.45.0=h6032a66_2 - mpmath=1.3.0=pyhd8ed1ab_0 @@ -159,7 +162,7 @@ dependencies: - packaging=23.2=pyhd8ed1ab_0 - parso=0.8.3=pyhd8ed1ab_0 - pickleshare=0.7.5=py_1003 - - pillow=10.2.0=py310hfae7ebd_0 + - pillow=9.4.0=py310h5a7539a_1 - pkgconfig=1.5.5=pyhd8ed1ab_4 - platformdirs=4.2.0=pyhd8ed1ab_0 - pluggy=1.4.0=pyhd8ed1ab_0 @@ -169,8 +172,10 @@ dependencies: - pygments=2.17.2=pyhd8ed1ab_0 - pyparsing=3.1.1=pyhd8ed1ab_0 - pysocks=1.7.1=pyha2e5f31_6 + - python-lrcalc=2.1=py310h692a8b6_6 - pytz=2024.1=pyhd8ed1ab_0 - pyzmq=25.1.2=py310hbb13138_0 + - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 - setuptools=69.1.1=pyhd8ed1ab_0 - singular=4.3.2.p8=hb460b52_1 - six=1.16.0=pyh6c4a22f_0 @@ -193,7 +198,7 @@ dependencies: - cctools=973.0.1=h4faf515_16 - clang=16.0.6=h30cc82d_5 - comm=0.2.1=pyhd8ed1ab_0 - - coverage=7.4.3=py310hd125d64_0 + - coverage=7.4.3=py310hd125d64_1 - cypari2=2.1.4=py310h5e3d6bc_2 - fonttools=4.49.0=py310hd125d64_0 - importlib-metadata=7.0.1=pyha770c72_0 @@ -210,7 +215,7 @@ dependencies: - pplpy=0.8.9=py310hab1f656_0 - primecountpy=0.1.0=py310h38f39d4_4 - prompt-toolkit=3.0.42=pyha770c72_0 - - pytest=8.0.1=pyhd8ed1ab_1 + - pytest=8.0.2=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - sympy=1.12=pypyh9d50eac_103 - urllib3=2.2.1=pyhd8ed1ab_0 @@ -230,7 +235,7 @@ dependencies: - contourpy=1.2.0=py310hd137fd4_0 - fpylll=0.6.1=py310hd9be144_0 - giac=1.9.0.21=h1c96721_1 - - igraph=0.10.10=h48be1ad_0 + - igraph=0.10.8=h29932c4_0 - ipython=8.22.1=pyh707e725_0 - jupyter_client=8.6.0=pyhd8ed1ab_0 - linbox=1.6.3=h380be0f_8 diff --git a/src/environment-dev-3.10-macos.yml b/src/environment-dev-3.10-macos.yml index 06687199740..4e545993353 100644 --- a/src/environment-dev-3.10-macos.yml +++ b/src/environment-dev-3.10-macos.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: osx-64 -# input_hash: 7689d29edcd0e307e8a04eebd1beac17126466d56ceccac87a587b8dcbdd442e +# input_hash: 72ff0671abbdbbe8aefda26b787fdeddecff4cc6201626de18f690cea41fe5b8 channels: - conda-forge @@ -37,6 +37,7 @@ dependencies: - planarity=3.0.0.5=hbcb3906_1002 - pthread-stubs=0.4=hc929b4f_1001 - python_abi=3.10=4_cp310 + - sagemath-db-polytopes=20170220=1 - tzdata=2024a=h0c530f3_0 - xorg-libxau=1.0.11=h0dc2134_0 - xorg-libxdmcp=1.1.3=h35c211d_0 @@ -52,7 +53,7 @@ dependencies: - libbrotlidec=1.1.0=h0dc2134_1 - libbrotlienc=1.1.0=h0dc2134_1 - libgfortran5=13.2.0=h2873a65_3 - - libpng=1.6.42=h92b6c6a_0 + - libpng=1.6.43=h92b6c6a_0 - libsqlite=3.45.1=h92b6c6a_0 - libxcb=1.15=hb7f2c08_0 - libxml2=2.12.5=hc0ae0f7_0 @@ -90,6 +91,7 @@ dependencies: - primecount=7.6=ha894c9a_0 - readline=8.2=h9e318b2_1 - sigtool=0.1.3=h88f4db0_0 + - tachyon=0.99b6=0 - brotli=1.1.0=h0dc2134_1 - ecl=21.2.1=hd029580_2 - fontconfig=2.14.2=h5bb23bf_0 @@ -113,6 +115,7 @@ dependencies: - ppl=1.2=ha60d53e_1006 - python=3.10.13=h00d2728_1_cpython - qd=2.3.22=h2beb688_1004 + - sqlite=3.45.1=h7461747_0 - alabaster=0.7.16=pyhd8ed1ab_0 - appnope=0.1.4=pyhd8ed1ab_0 - boost-cpp=1.84.0=h07eb623_1 @@ -167,8 +170,10 @@ dependencies: - pygments=2.17.2=pyhd8ed1ab_0 - pyparsing=3.1.1=pyhd8ed1ab_0 - pysocks=1.7.1=pyha2e5f31_6 + - python-lrcalc=2.1=py310h5daac23_6 - pytz=2024.1=pyhd8ed1ab_0 - pyzmq=25.1.2=py310h6b67f7f_0 + - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 - setuptools=69.1.1=pyhd8ed1ab_0 - singular=4.3.2.p8=h0d51a9f_1 - six=1.16.0=pyh6c4a22f_0 @@ -191,7 +196,7 @@ dependencies: - cctools=973.0.1=h40f6528_16 - clang=16.0.6=hdae98eb_5 - comm=0.2.1=pyhd8ed1ab_0 - - coverage=7.4.3=py310hb372a2b_0 + - coverage=7.4.3=py310hb372a2b_1 - cypari2=2.1.4=py310hc7df965_2 - fonttools=4.49.0=py310hb372a2b_0 - importlib-metadata=7.0.1=pyha770c72_0 @@ -208,7 +213,7 @@ dependencies: - pplpy=0.8.9=py310hd89f7aa_0 - primecountpy=0.1.0=py310h88cfcbd_4 - prompt-toolkit=3.0.42=pyha770c72_0 - - pytest=8.0.1=pyhd8ed1ab_1 + - pytest=8.0.2=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - sympy=1.12=pypyh9d50eac_103 - urllib3=2.2.1=pyhd8ed1ab_0 diff --git a/src/environment-dev-3.11-linux-aarch64.yml b/src/environment-dev-3.11-linux-aarch64.yml index af8f2050c35..fe86f8dc073 100644 --- a/src/environment-dev-3.11-linux-aarch64.yml +++ b/src/environment-dev-3.11-linux-aarch64.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: linux-aarch64 -# input_hash: d98e4f91321717a99ad09cd0fb01d5ac13f04a013fd4901ebce56393880cc0af +# input_hash: f23322956626c2c087339d2e4862e1f2895f38e65ffa5e7d49e830d9edf14ab3 channels: - conda-forge @@ -12,7 +12,7 @@ dependencies: - font-ttf-source-code-pro=2.038=h77eed37_0 - font-ttf-ubuntu=0.83=h77eed37_1 - ld_impl_linux-aarch64=2.40=h2d8c526_0 - - libboost-headers=1.84.0=h8af1aa0_1 + - libboost-headers=1.82.0=h8af1aa0_2 - libgcc-devel_linux-aarch64=12.3.0=h8b5ab12_105 - libgomp=13.2.0=hf8544c7_5 - libstdcxx-devel_linux-aarch64=12.3.0=h8b5ab12_105 @@ -21,6 +21,7 @@ dependencies: - pari-galdata=0.0.20180411=0 - pari-seadata-small=0.0.20090618=0 - python_abi=3.11=4_cp311 + - sagemath-db-polytopes=20170220=1 - tzdata=2024a=h0c530f3_0 - fonts-conda-forge=1=0 - kernel-headers_linux-aarch64=4.18.0=h5b4a56d_14 @@ -39,23 +40,23 @@ dependencies: - gf2x=1.3.0=h1b3b3a3_2 - giflib=5.2.1=hb4cce97_3 - gmp=6.3.0=h2f0025b_0 - - icu=73.2=h787c7f5_0 + - icu=72.1=hcf00150_0 + - jpeg=9e=h2a766a3_3 - keyutils=1.6.1=h4e544f5_0 - lerc=4.0.0=h4de3ea5_0 - libbraiding=1.2=hd600fc2_0 - libbrotlicommon=1.1.0=h31becfc_1 - - libdeflate=1.19=h31becfc_0 + - libdeflate=1.17=hb4cce97_0 - libev=4.33=h31becfc_2 - libexpat=2.5.0=hd600fc2_1 - libffi=3.4.2=h3557bc0_5 - libgfortran5=13.2.0=h582850c_5 - libiconv=1.17=h31becfc_2 - - libjpeg-turbo=3.0.0=h31becfc_1 - libnsl=2.0.1=h31becfc_0 - libsanitizer=12.3.0=h8ebda82_5 - libsodium=1.0.18=hb9de7d4_1 - libuuid=2.38.1=hb4cce97_0 - - libwebp-base=1.3.2=h31becfc_0 + - libwebp-base=1.2.4=h4e544f5_0 - libxcrypt=4.4.36=h31becfc_1 - libzlib=1.2.13=h31becfc_5 - lrcalc=2.1=h2f0025b_6 @@ -84,11 +85,11 @@ dependencies: - libgfortran-ng=13.2.0=he9431aa_5 - libhomfly=1.02r6=hb9de7d4_0 - libnghttp2=1.58.0=hb0e430d_1 - - libpng=1.6.42=h194ca79_0 + - libpng=1.6.43=h194ca79_0 - libsqlite=3.45.1=h194ca79_0 - libssh2=1.11.0=h492db2e_0 - - libxcb=1.15=h2a766a3_0 - - libxml2=2.12.5=h3091e33_0 + - libxcb=1.13=h3557bc0_1004 + - libxml2=2.11.5=h164fba4_0 - mpfr=4.2.1=ha2d0fc4_0 - ntl=11.4.3=h0d7519b_1 - perl=5.32.1=7_h31becfc_perl5 @@ -107,10 +108,10 @@ dependencies: - gfan=0.6.2=h5f589ec_1003 - gxx_impl_linux-aarch64=12.3.0=hcde2664_5 - krb5=1.21.2=hc419048_0 - - libboost=1.84.0=h1fed05a_1 + - libboost=1.82.0=hbfc56d7_2 - libflint=3.0.1=hc392af7_ntl_100 - libopenblas=0.3.25=pthreads_h5a5ec62_0 - - libtiff=4.6.0=h1708d11_2 + - libtiff=4.5.0=h4c1066a_2 - llvm-openmp=17.0.6=h8b0cb96_0 - m4ri=20140914=h75e8696_1005 - mpc=1.3.1=hf4c8f4c_0 @@ -119,6 +120,8 @@ dependencies: - ppl=1.2=h984aac9_1006 - python=3.11.8=h43d1f9e_0_cpython - qd=2.3.22=h05efe27_1004 + - sqlite=3.45.1=h3b3482f_0 + - tachyon=0.99b6=h63ab1d9_1001 - alabaster=0.7.16=pyhd8ed1ab_0 - brotli=1.1.0=h31becfc_1 - brotli-python=1.1.0=py311h8715677_1 @@ -149,12 +152,12 @@ dependencies: - jupyterlab_widgets=3.0.10=pyhd8ed1ab_0 - kiwisolver=1.4.5=py311h0d5d7b0_1 - lcalc=2.0.5=h3264cc0_1 - - lcms2=2.16=h922389a_0 + - lcms2=2.15=h7576be9_0 - libblas=3.9.0=20_linuxaarch64_openblas - - libboost-devel=1.84.0=h37bb5a9_1 + - libboost-devel=1.82.0=h37bb5a9_2 - libbrial=1.2.12=h17533bf_1 - libcurl=8.5.0=h4e8248e_0 - - libwebp=1.3.2=heb2ea1b_1 + - libwebp=1.2.4=h7bdf6e5_1 - m4rie=20150908=h75e8696_1001 - markupsafe=2.1.5=py311hc8f2f60_0 - maxima=5.47.0=h6475f26_1 @@ -163,7 +166,7 @@ dependencies: - nest-asyncio=1.6.0=pyhd8ed1ab_0 - networkx=3.2.1=pyhd8ed1ab_0 - openblas=0.3.25=pthreads_h339cbfa_0 - - openjpeg=2.5.0=h0d9d63b_3 + - openjpeg=2.5.0=h9508984_2 - packaging=23.2=pyhd8ed1ab_0 - parso=0.8.3=pyhd8ed1ab_0 - pickleshare=0.7.5=py_1003 @@ -176,8 +179,10 @@ dependencies: - pygments=2.17.2=pyhd8ed1ab_0 - pyparsing=3.1.1=pyhd8ed1ab_0 - pysocks=1.7.1=pyha2e5f31_6 + - python-lrcalc=2.1=py311h8715677_6 - pytz=2024.1=pyhd8ed1ab_0 - pyzmq=25.1.2=py311h0fdcd05_0 + - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 - setuptools=69.1.1=pyhd8ed1ab_0 - singular=4.3.2.p8=hbe76a8a_1 - six=1.16.0=pyh6c4a22f_0 @@ -196,10 +201,10 @@ dependencies: - asttokens=2.4.1=pyhd8ed1ab_0 - babel=2.14.0=pyhd8ed1ab_0 - beautifulsoup4=4.12.3=pyha770c72_0 - - boost-cpp=1.84.0=ha990451_1 + - boost-cpp=1.82.0=h62f3a30_2 - brial=1.2.12=pyh694c41f_1 - comm=0.2.1=pyhd8ed1ab_0 - - coverage=7.4.3=py311hc8f2f60_0 + - coverage=7.4.3=py311hc8f2f60_1 - cxx-compiler=1.6.0=h2a328a1_0 - cypari2=2.1.4=py311h5ab95f0_2 - fonttools=4.49.0=py311hcd402e7_0 @@ -209,17 +214,17 @@ dependencies: - jinja2=3.1.3=pyhd8ed1ab_0 - jupyter_core=5.7.1=py311hec3470c_0 - libcblas=3.9.0=20_linuxaarch64_openblas - - libgd=2.3.3=hcd22fd5_9 + - libgd=2.3.3=h5fc1a20_5 - liblapack=3.9.0=20_linuxaarch64_openblas - matplotlib-inline=0.1.6=pyhd8ed1ab_0 - memory-allocator=0.1.3=py311hcd402e7_0 - pexpect=4.9.0=pyhd8ed1ab_0 - - pillow=10.2.0=py311hbcc2232_0 + - pillow=9.4.0=py311hf18358d_1 - pip=24.0=pyhd8ed1ab_0 - pplpy=0.8.9=py311haefeb0b_0 - primecountpy=0.1.0=py311h098ece5_4 - prompt-toolkit=3.0.42=pyha770c72_0 - - pytest=8.0.1=pyhd8ed1ab_1 + - pytest=8.0.2=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - sympy=1.12=pypyh9d50eac_103 - urllib3=2.2.1=pyhd8ed1ab_0 @@ -237,7 +242,7 @@ dependencies: - contourpy=1.2.0=py311h098ece5_0 - fpylll=0.6.1=py311h5d3d69a_0 - giac=1.9.0.21=h04922a4_1 - - igraph=0.10.10=hcfae7ab_0 + - igraph=0.10.8=h4617136_0 - ipython=8.22.1=pyh707e725_0 - jupyter_client=8.6.0=pyhd8ed1ab_0 - linbox=1.6.3=h681a5ee_8 diff --git a/src/environment-dev-3.11-linux.yml b/src/environment-dev-3.11-linux.yml index 110c9b87e9f..5164f74509a 100644 --- a/src/environment-dev-3.11-linux.yml +++ b/src/environment-dev-3.11-linux.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: 0604c719ebb657ecdc2c2c6dcd11e7ae3c318420cdfcb7c18fd2b1b241777630 +# input_hash: a1a381c74d58a23ad9ee5daf9d4072ad14102b70211f88a7ae3ff6db4e40388d channels: - conda-forge @@ -21,6 +21,7 @@ dependencies: - pari-galdata=0.0.20180411=0 - pari-seadata-small=0.0.20090618=0 - python_abi=3.11=4_cp311 + - sagemath-db-polytopes=20170220=1 - tzdata=2024a=h0c530f3_0 - fonts-conda-forge=1=0 - libgomp=13.2.0=h807b86a_5 @@ -84,7 +85,7 @@ dependencies: - libgfortran-ng=13.2.0=h69a702a_5 - libhomfly=1.02r6=h36c2ea0_0 - libnghttp2=1.58.0=h47da74e_1 - - libpng=1.6.42=h2797004_0 + - libpng=1.6.43=h2797004_0 - libsqlite=3.45.1=h2797004_0 - libssh2=1.11.0=h0841786_0 - libxcb=1.15=h0b41bf4_0 @@ -119,6 +120,8 @@ dependencies: - ppl=1.2=h6ec01c2_1006 - python=3.11.8=hab00c5b_0_cpython - qd=2.3.22=h2cc385e_1004 + - sqlite=3.45.1=h2c6b66d_0 + - tachyon=0.99b6=0 - alabaster=0.7.16=pyhd8ed1ab_0 - brotli=1.1.0=hd590300_1 - brotli-python=1.1.0=py311hb755f60_1 @@ -176,8 +179,10 @@ dependencies: - pygments=2.17.2=pyhd8ed1ab_0 - pyparsing=3.1.1=pyhd8ed1ab_0 - pysocks=1.7.1=pyha2e5f31_6 + - python-lrcalc=2.1=py311hb755f60_6 - pytz=2024.1=pyhd8ed1ab_0 - pyzmq=25.1.2=py311h34ded2d_0 + - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 - setuptools=69.1.1=pyhd8ed1ab_0 - singular=4.3.2.p8=h33f5c3f_1 - six=1.16.0=pyh6c4a22f_0 @@ -199,7 +204,7 @@ dependencies: - boost-cpp=1.84.0=h44aadfe_1 - brial=1.2.12=pyh694c41f_1 - comm=0.2.1=pyhd8ed1ab_0 - - coverage=7.4.3=py311h459d7ec_0 + - coverage=7.4.3=py311h459d7ec_1 - cxx-compiler=1.6.0=h00ab1b0_0 - cypari2=2.1.4=py311hd2352ae_2 - fonttools=4.49.0=py311h459d7ec_0 @@ -219,7 +224,7 @@ dependencies: - pplpy=0.8.9=py311h85abca9_0 - primecountpy=0.1.0=py311h9547e67_4 - prompt-toolkit=3.0.42=pyha770c72_0 - - pytest=8.0.1=pyhd8ed1ab_1 + - pytest=8.0.2=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - sympy=1.12=pypyh9d50eac_103 - urllib3=2.2.1=pyhd8ed1ab_0 diff --git a/src/environment-dev-3.11-macos-arm64.yml b/src/environment-dev-3.11-macos-arm64.yml index 3bd24faf87a..593dd44f28d 100644 --- a/src/environment-dev-3.11-macos-arm64.yml +++ b/src/environment-dev-3.11-macos-arm64.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: osx-arm64 -# input_hash: 6c3ab7eef526b12517e6c331e6ce8cdeeabe32fc46589d4661c34f781ce08928 +# input_hash: 90a352d0687b860cdaab1f5667655093a65821493f062858988871fa1e5b36d4 channels: - conda-forge @@ -14,18 +14,18 @@ dependencies: - font-ttf-source-code-pro=2.038=h77eed37_0 - font-ttf-ubuntu=0.83=h77eed37_1 - giflib=5.2.1=h1a8c8d9_3 - - icu=73.2=hc8870d7_0 - - libboost-headers=1.84.0=hce30654_1 + - icu=72.1=he12128b_0 + - jpeg=9e=h1a8c8d9_3 + - libboost-headers=1.82.0=hce30654_2 - libbrotlicommon=1.1.0=hb547adb_1 - libcxx=16.0.6=h4653b0c_0 - - libdeflate=1.19=hb547adb_0 + - libdeflate=1.17=h1a8c8d9_0 - libev=4.33=h93a5062_2 - libexpat=2.5.0=hb7217d7_1 - libffi=3.4.2=h3422bc3_5 - libiconv=1.17=h0d3ecfb_2 - - libjpeg-turbo=3.0.0=hb547adb_1 - libsodium=1.0.18=h27ca646_1 - - libwebp-base=1.3.2=hb547adb_0 + - libwebp-base=1.2.4=h1a8c8d9_0 - libzlib=1.2.13=h53f4e23_5 - llvm-openmp=17.0.6=hcd81f8e_0 - nauty=2.8.8=h93a5062_1 @@ -37,6 +37,7 @@ dependencies: - planarity=3.0.0.5=h27ca646_1002 - pthread-stubs=0.4=h27ca646_1001 - python_abi=3.11=4_cp311 + - sagemath-db-polytopes=20170220=1 - tzdata=2024a=h0c530f3_0 - xorg-libxau=1.0.11=hb547adb_0 - xorg-libxdmcp=1.1.3=h27ca646_0 @@ -52,10 +53,10 @@ dependencies: - libbrotlidec=1.1.0=hb547adb_1 - libbrotlienc=1.1.0=hb547adb_1 - libgfortran5=13.2.0=hf226fd6_3 - - libpng=1.6.42=h091b4b1_0 + - libpng=1.6.43=h091b4b1_0 - libsqlite=3.45.1=h091b4b1_0 - - libxcb=1.15=hf346824_0 - - libxml2=2.12.5=h0d0cfa8_0 + - libxcb=1.13=h9b22ae9_1004 + - libxml2=2.11.5=he3bdae6_0 - lrcalc=2.1=hebf3989_6 - ncurses=6.4=h463b476_2 - openssl=3.2.1=h0d3ecfb_0 @@ -76,48 +77,50 @@ dependencies: - freetype=2.12.1=hadb7bae_2 - givaro=4.1.1=h0cdca34_3 - glpk=5.0=h6d7a090_0 - - libboost=1.84.0=h8e0f962_1 + - libboost=1.82.0=h3f31f7c_2 - libedit=3.1.20191231=hc8eb9b7_2 - libgfortran=5.0.0=13_2_0_hd922786_3 - libglib=2.78.4=h1635a5e_0 - libhomfly=1.02r6=h27ca646_0 - - libllvm16=16.0.6=haab561b_3 + - libllvm16=16.0.6=he79909e_2 - libnghttp2=1.58.0=ha4dd798_1 - libssh2=1.11.0=h7a5bd25_0 - - libtiff=4.6.0=ha8a6c65_2 + - libtiff=4.5.0=h5dffbdd_2 - m4ri=20140914=h17b34a0_1005 - mpfr=4.2.1=h9546428_0 - ntl=11.4.3=hbb3f309_1 - primecount=7.6=hb6e4faa_0 - readline=8.2=h92ec313_1 - sigtool=0.1.3=h44b9a77_0 + - tachyon=0.99b6=hfb72b2a_1001 - brotli=1.1.0=hb547adb_1 - ecl=21.2.1=h8492d4d_2 - fontconfig=2.14.2=h82840c6_0 - gap-core=4.12.2=he8f4e70_3 - gfan=0.6.2=hec08f5c_1003 - krb5=1.21.2=h92f50d5_0 - - lcms2=2.16=ha0e7c42_0 + - lcms2=2.15=h481adae_0 - ld64_osx-arm64=609=ha4bd21c_16 - - libboost-devel=1.84.0=hf450f58_1 + - libboost-devel=1.82.0=hf450f58_2 - libbrial=1.2.12=ha7f5006_1 - libclang-cpp16=16.0.6=default_he012953_5 - libflint=3.0.1=h28749a5_ntl_100 - libopenblas=0.3.25=openmp_h6c19121_0 - - libwebp=1.3.2=hf30222e_1 - - llvm-tools=16.0.6=haab561b_3 + - libwebp=1.2.4=h999c80f_1 + - llvm-tools=16.0.6=he79909e_2 - m4rie=20150908=h17b34a0_1001 - mpc=1.3.1=h91ba8db_0 - mpfi=1.5.4=hbde5f5b_1001 - - openjpeg=2.5.0=h4c1507b_3 + - openjpeg=2.5.0=hbc2ba62_2 - pari=2.15.4=haeeeed7_2_pthread - pkg-config=0.29.2=hab62308_1008 - ppl=1.2=h8b147cf_1006 - python=3.11.8=hdf0ec26_0_cpython - qd=2.3.22=hbec66e7_1004 + - sqlite=3.45.1=hf2abe2d_0 - alabaster=0.7.16=pyhd8ed1ab_0 - appnope=0.1.4=pyhd8ed1ab_0 - - boost-cpp=1.84.0=hca5e981_1 + - boost-cpp=1.82.0=h4ae65de_2 - brial=1.2.12=pyh694c41f_1 - brotli-python=1.1.0=py311ha891d26_1 - cctools_osx-arm64=973.0.1=h62378fb_16 @@ -148,7 +151,7 @@ dependencies: - ld64=609=h634c8be_16 - libblas=3.9.0=20_osxarm64_openblas - libcurl=8.5.0=h2d989ff_0 - - libgd=2.3.3=hfdf3952_9 + - libgd=2.3.3=h8db8f0b_5 - markupsafe=2.1.5=py311h05b510d_0 - maxima=5.45.0=h6032a66_2 - mpmath=1.3.0=pyhd8ed1ab_0 @@ -159,7 +162,7 @@ dependencies: - packaging=23.2=pyhd8ed1ab_0 - parso=0.8.3=pyhd8ed1ab_0 - pickleshare=0.7.5=py_1003 - - pillow=10.2.0=py311hb9c5795_0 + - pillow=9.4.0=py311h627eb56_1 - pkgconfig=1.5.5=pyhd8ed1ab_4 - platformdirs=4.2.0=pyhd8ed1ab_0 - pluggy=1.4.0=pyhd8ed1ab_0 @@ -169,8 +172,10 @@ dependencies: - pygments=2.17.2=pyhd8ed1ab_0 - pyparsing=3.1.1=pyhd8ed1ab_0 - pysocks=1.7.1=pyha2e5f31_6 + - python-lrcalc=2.1=py311h92babd0_6 - pytz=2024.1=pyhd8ed1ab_0 - pyzmq=25.1.2=py311h6727e71_0 + - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 - setuptools=69.1.1=pyhd8ed1ab_0 - singular=4.3.2.p8=hb460b52_1 - six=1.16.0=pyh6c4a22f_0 @@ -192,7 +197,7 @@ dependencies: - cctools=973.0.1=h4faf515_16 - clang=16.0.6=h30cc82d_5 - comm=0.2.1=pyhd8ed1ab_0 - - coverage=7.4.2=py311h05b510d_0 + - coverage=7.4.3=py311h05b510d_1 - cypari2=2.1.4=py311h2c49a9d_2 - fonttools=4.48.1=py311h05b510d_0 - importlib-metadata=7.0.1=pyha770c72_0 @@ -209,7 +214,7 @@ dependencies: - pplpy=0.8.9=py311h5ba3760_0 - primecountpy=0.1.0=py311he4fd1f5_4 - prompt-toolkit=3.0.42=pyha770c72_0 - - pytest=8.0.1=pyhd8ed1ab_1 + - pytest=8.0.2=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - sympy=1.12=pypyh9d50eac_103 - urllib3=2.2.1=pyhd8ed1ab_0 @@ -229,7 +234,7 @@ dependencies: - contourpy=1.2.0=py311hd03642b_0 - fpylll=0.6.1=py311h341b96b_0 - giac=1.9.0.21=h1c96721_1 - - igraph=0.10.10=h48be1ad_0 + - igraph=0.10.8=h29932c4_0 - ipython=8.22.1=pyh707e725_0 - jupyter_client=8.6.0=pyhd8ed1ab_0 - linbox=1.6.3=h380be0f_8 diff --git a/src/environment-dev-3.11-macos.yml b/src/environment-dev-3.11-macos.yml index b9d0e513eb4..999d3c85607 100644 --- a/src/environment-dev-3.11-macos.yml +++ b/src/environment-dev-3.11-macos.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: osx-64 -# input_hash: 51c5c798404fa4f0a0696f61971bfdedd949f70270ddf2a30cb7ab38121ed829 +# input_hash: 09b348052e2ba9a58c90b1896daccb8c1912b40fe5b3d4e440a9d2e0864f40ac channels: - conda-forge @@ -37,6 +37,7 @@ dependencies: - planarity=3.0.0.5=hbcb3906_1002 - pthread-stubs=0.4=hc929b4f_1001 - python_abi=3.11=4_cp311 + - sagemath-db-polytopes=20170220=1 - tzdata=2024a=h0c530f3_0 - xorg-libxau=1.0.11=h0dc2134_0 - xorg-libxdmcp=1.1.3=h35c211d_0 @@ -52,7 +53,7 @@ dependencies: - libbrotlidec=1.1.0=h0dc2134_1 - libbrotlienc=1.1.0=h0dc2134_1 - libgfortran5=13.2.0=h2873a65_3 - - libpng=1.6.42=h92b6c6a_0 + - libpng=1.6.43=h92b6c6a_0 - libsqlite=3.45.1=h92b6c6a_0 - libxcb=1.15=hb7f2c08_0 - libxml2=2.12.5=hc0ae0f7_0 @@ -90,6 +91,7 @@ dependencies: - primecount=7.6=ha894c9a_0 - readline=8.2=h9e318b2_1 - sigtool=0.1.3=h88f4db0_0 + - tachyon=0.99b6=0 - brotli=1.1.0=h0dc2134_1 - ecl=21.2.1=hd029580_2 - fontconfig=2.14.2=h5bb23bf_0 @@ -113,6 +115,7 @@ dependencies: - ppl=1.2=ha60d53e_1006 - python=3.11.8=h9f0c242_0_cpython - qd=2.3.22=h2beb688_1004 + - sqlite=3.45.1=h7461747_0 - alabaster=0.7.16=pyhd8ed1ab_0 - appnope=0.1.4=pyhd8ed1ab_0 - boost-cpp=1.84.0=h07eb623_1 @@ -167,8 +170,10 @@ dependencies: - pygments=2.17.2=pyhd8ed1ab_0 - pyparsing=3.1.1=pyhd8ed1ab_0 - pysocks=1.7.1=pyha2e5f31_6 + - python-lrcalc=2.1=py311hdd0406b_6 - pytz=2024.1=pyhd8ed1ab_0 - pyzmq=25.1.2=py311h889d6d6_0 + - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 - setuptools=69.1.1=pyhd8ed1ab_0 - singular=4.3.2.p8=h0d51a9f_1 - six=1.16.0=pyh6c4a22f_0 @@ -190,7 +195,7 @@ dependencies: - cctools=973.0.1=h40f6528_16 - clang=16.0.6=hdae98eb_5 - comm=0.2.1=pyhd8ed1ab_0 - - coverage=7.4.3=py311he705e18_0 + - coverage=7.4.3=py311he705e18_1 - cypari2=2.1.4=py311h4fde0ae_2 - fonttools=4.49.0=py311he705e18_0 - importlib-metadata=7.0.1=pyha770c72_0 @@ -207,7 +212,7 @@ dependencies: - pplpy=0.8.9=py311h7355a2a_0 - primecountpy=0.1.0=py311h5fe6e05_4 - prompt-toolkit=3.0.42=pyha770c72_0 - - pytest=8.0.1=pyhd8ed1ab_1 + - pytest=8.0.2=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - sympy=1.12=pypyh9d50eac_103 - urllib3=2.2.1=pyhd8ed1ab_0 diff --git a/src/environment-dev-3.9-linux-aarch64.yml b/src/environment-dev-3.9-linux-aarch64.yml index 13f67c3b383..e7d8de09970 100644 --- a/src/environment-dev-3.9-linux-aarch64.yml +++ b/src/environment-dev-3.9-linux-aarch64.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: linux-aarch64 -# input_hash: e90839a3e330be50d83147d80700e257661b335b8d8129f0dc024b10554a01a5 +# input_hash: 16af34b4de2b50d62c833643bd3d58877a43c830fb880d8c90179f5e7f6f5f0b channels: - conda-forge @@ -12,7 +12,7 @@ dependencies: - font-ttf-source-code-pro=2.038=h77eed37_0 - font-ttf-ubuntu=0.83=h77eed37_1 - ld_impl_linux-aarch64=2.40=h2d8c526_0 - - libboost-headers=1.84.0=h8af1aa0_1 + - libboost-headers=1.82.0=h8af1aa0_2 - libgcc-devel_linux-aarch64=12.3.0=h8b5ab12_105 - libgomp=13.2.0=hf8544c7_5 - libstdcxx-devel_linux-aarch64=12.3.0=h8b5ab12_105 @@ -21,6 +21,7 @@ dependencies: - pari-galdata=0.0.20180411=0 - pari-seadata-small=0.0.20090618=0 - python_abi=3.9=4_cp39 + - sagemath-db-polytopes=20170220=1 - tzdata=2024a=h0c530f3_0 - fonts-conda-forge=1=0 - kernel-headers_linux-aarch64=4.18.0=h5b4a56d_14 @@ -39,23 +40,23 @@ dependencies: - gf2x=1.3.0=h1b3b3a3_2 - giflib=5.2.1=hb4cce97_3 - gmp=6.3.0=h2f0025b_0 - - icu=73.2=h787c7f5_0 + - icu=72.1=hcf00150_0 + - jpeg=9e=h2a766a3_3 - keyutils=1.6.1=h4e544f5_0 - lerc=4.0.0=h4de3ea5_0 - libbraiding=1.2=hd600fc2_0 - libbrotlicommon=1.1.0=h31becfc_1 - - libdeflate=1.19=h31becfc_0 + - libdeflate=1.17=hb4cce97_0 - libev=4.33=h31becfc_2 - libexpat=2.5.0=hd600fc2_1 - libffi=3.4.2=h3557bc0_5 - libgfortran5=13.2.0=h582850c_5 - libiconv=1.17=h31becfc_2 - - libjpeg-turbo=3.0.0=h31becfc_1 - libnsl=2.0.1=h31becfc_0 - libsanitizer=12.3.0=h8ebda82_5 - libsodium=1.0.18=hb9de7d4_1 - libuuid=2.38.1=hb4cce97_0 - - libwebp-base=1.3.2=h31becfc_0 + - libwebp-base=1.2.4=h4e544f5_0 - libxcrypt=4.4.36=h31becfc_1 - libzlib=1.2.13=h31becfc_5 - lrcalc=2.1=h2f0025b_6 @@ -84,11 +85,11 @@ dependencies: - libgfortran-ng=13.2.0=he9431aa_5 - libhomfly=1.02r6=hb9de7d4_0 - libnghttp2=1.58.0=hb0e430d_1 - - libpng=1.6.42=h194ca79_0 + - libpng=1.6.43=h194ca79_0 - libsqlite=3.45.1=h194ca79_0 - libssh2=1.11.0=h492db2e_0 - - libxcb=1.15=h2a766a3_0 - - libxml2=2.12.5=h3091e33_0 + - libxcb=1.13=h3557bc0_1004 + - libxml2=2.11.5=h164fba4_0 - mpfr=4.2.1=ha2d0fc4_0 - ntl=11.4.3=h0d7519b_1 - perl=5.32.1=7_h31becfc_perl5 @@ -107,10 +108,10 @@ dependencies: - gfan=0.6.2=h5f589ec_1003 - gxx_impl_linux-aarch64=12.3.0=hcde2664_5 - krb5=1.21.2=hc419048_0 - - libboost=1.84.0=h1fed05a_1 + - libboost=1.82.0=hbfc56d7_2 - libflint=3.0.1=hc392af7_ntl_100 - libopenblas=0.3.25=pthreads_h5a5ec62_0 - - libtiff=4.6.0=h1708d11_2 + - libtiff=4.5.0=h4c1066a_2 - llvm-openmp=17.0.6=h8b0cb96_0 - m4ri=20140914=h75e8696_1005 - mpc=1.3.1=hf4c8f4c_0 @@ -119,6 +120,8 @@ dependencies: - ppl=1.2=h984aac9_1006 - python=3.9.18=h4ac3b42_1_cpython - qd=2.3.22=h05efe27_1004 + - sqlite=3.45.1=h3b3482f_0 + - tachyon=0.99b6=h63ab1d9_1001 - alabaster=0.7.16=pyhd8ed1ab_0 - brotli=1.1.0=h31becfc_1 - brotli-python=1.1.0=py39h387a81e_1 @@ -149,12 +152,12 @@ dependencies: - jupyterlab_widgets=3.0.10=pyhd8ed1ab_0 - kiwisolver=1.4.5=py39had2cf8c_1 - lcalc=2.0.5=h3264cc0_1 - - lcms2=2.16=h922389a_0 + - lcms2=2.15=h7576be9_0 - libblas=3.9.0=20_linuxaarch64_openblas - - libboost-devel=1.84.0=h37bb5a9_1 + - libboost-devel=1.82.0=h37bb5a9_2 - libbrial=1.2.12=h17533bf_1 - libcurl=8.5.0=h4e8248e_0 - - libwebp=1.3.2=heb2ea1b_1 + - libwebp=1.2.4=h7bdf6e5_1 - m4rie=20150908=h75e8696_1001 - markupsafe=2.1.5=py39h7cc1d5f_0 - maxima=5.47.0=h6475f26_1 @@ -163,7 +166,7 @@ dependencies: - nest-asyncio=1.6.0=pyhd8ed1ab_0 - networkx=3.2.1=pyhd8ed1ab_0 - openblas=0.3.25=pthreads_h339cbfa_0 - - openjpeg=2.5.0=h0d9d63b_3 + - openjpeg=2.5.0=h9508984_2 - packaging=23.2=pyhd8ed1ab_0 - parso=0.8.3=pyhd8ed1ab_0 - pickleshare=0.7.5=py_1003 @@ -176,8 +179,10 @@ dependencies: - pygments=2.17.2=pyhd8ed1ab_0 - pyparsing=3.1.1=pyhd8ed1ab_0 - pysocks=1.7.1=pyha2e5f31_6 + - python-lrcalc=2.1=py39h387a81e_6 - pytz=2024.1=pyhd8ed1ab_0 - pyzmq=25.1.2=py39hbab03a2_0 + - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 - setuptools=69.1.1=pyhd8ed1ab_0 - singular=4.3.2.p8=hbe76a8a_1 - six=1.16.0=pyh6c4a22f_0 @@ -197,10 +202,10 @@ dependencies: - asttokens=2.4.1=pyhd8ed1ab_0 - babel=2.14.0=pyhd8ed1ab_0 - beautifulsoup4=4.12.3=pyha770c72_0 - - boost-cpp=1.84.0=ha990451_1 + - boost-cpp=1.82.0=h62f3a30_2 - brial=1.2.12=pyh694c41f_1 - comm=0.2.1=pyhd8ed1ab_0 - - coverage=7.4.3=py39h7cc1d5f_0 + - coverage=7.4.3=py39h7cc1d5f_1 - cxx-compiler=1.6.0=h2a328a1_0 - cypari2=2.1.4=py39h532d932_2 - fonttools=4.49.0=py39h898b7ef_0 @@ -210,17 +215,17 @@ dependencies: - jinja2=3.1.3=pyhd8ed1ab_0 - jupyter_core=5.7.1=py39h4420490_0 - libcblas=3.9.0=20_linuxaarch64_openblas - - libgd=2.3.3=hcd22fd5_9 + - libgd=2.3.3=h5fc1a20_5 - liblapack=3.9.0=20_linuxaarch64_openblas - matplotlib-inline=0.1.6=pyhd8ed1ab_0 - memory-allocator=0.1.3=py39h898b7ef_0 - pexpect=4.9.0=pyhd8ed1ab_0 - - pillow=10.2.0=py39h8ce38d7_0 + - pillow=9.4.0=py39h72365ce_1 - pip=24.0=pyhd8ed1ab_0 - pplpy=0.8.9=py39h087fc0e_0 - primecountpy=0.1.0=py39hd16970a_3 - prompt-toolkit=3.0.42=pyha770c72_0 - - pytest=8.0.1=pyhd8ed1ab_1 + - pytest=8.0.2=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - sympy=1.12=pypyh9d50eac_103 - urllib3=2.2.1=pyhd8ed1ab_0 @@ -239,7 +244,7 @@ dependencies: - contourpy=1.2.0=py39hd16970a_0 - fpylll=0.6.1=py39h97065f7_0 - giac=1.9.0.21=h04922a4_1 - - igraph=0.10.10=hcfae7ab_0 + - igraph=0.10.8=h4617136_0 - ipython=8.18.1=pyh707e725_3 - jupyter_client=8.6.0=pyhd8ed1ab_0 - linbox=1.6.3=h681a5ee_8 diff --git a/src/environment-dev-3.9-linux.yml b/src/environment-dev-3.9-linux.yml index f0dd9dbf741..99537a2afb4 100644 --- a/src/environment-dev-3.9-linux.yml +++ b/src/environment-dev-3.9-linux.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: 617c43338a22d2c8fec340d169eba8993ba5e7753bf6bc95b8581595801b3057 +# input_hash: 031f4d8edf18d6686fd81b8c2edfcb5d1881b2655ee8a3cf6c683104922fc2e4 channels: - conda-forge @@ -21,6 +21,7 @@ dependencies: - pari-galdata=0.0.20180411=0 - pari-seadata-small=0.0.20090618=0 - python_abi=3.9=4_cp39 + - sagemath-db-polytopes=20170220=1 - tzdata=2024a=h0c530f3_0 - fonts-conda-forge=1=0 - libgomp=13.2.0=h807b86a_5 @@ -84,7 +85,7 @@ dependencies: - libgfortran-ng=13.2.0=h69a702a_5 - libhomfly=1.02r6=h36c2ea0_0 - libnghttp2=1.58.0=h47da74e_1 - - libpng=1.6.42=h2797004_0 + - libpng=1.6.43=h2797004_0 - libsqlite=3.45.1=h2797004_0 - libssh2=1.11.0=h0841786_0 - libxcb=1.15=h0b41bf4_0 @@ -119,6 +120,8 @@ dependencies: - ppl=1.2=h6ec01c2_1006 - python=3.9.18=h0755675_1_cpython - qd=2.3.22=h2cc385e_1004 + - sqlite=3.45.1=h2c6b66d_0 + - tachyon=0.99b6=0 - alabaster=0.7.16=pyhd8ed1ab_0 - brotli=1.1.0=hd590300_1 - brotli-python=1.1.0=py39h3d6467e_1 @@ -176,8 +179,10 @@ dependencies: - pygments=2.17.2=pyhd8ed1ab_0 - pyparsing=3.1.1=pyhd8ed1ab_0 - pysocks=1.7.1=pyha2e5f31_6 + - python-lrcalc=2.1=py39h3d6467e_6 - pytz=2024.1=pyhd8ed1ab_0 - pyzmq=25.1.2=py39h8c080ef_0 + - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 - setuptools=69.1.1=pyhd8ed1ab_0 - singular=4.3.2.p8=h33f5c3f_1 - six=1.16.0=pyh6c4a22f_0 @@ -200,7 +205,7 @@ dependencies: - boost-cpp=1.84.0=h44aadfe_1 - brial=1.2.12=pyh694c41f_1 - comm=0.2.1=pyhd8ed1ab_0 - - coverage=7.4.3=py39hd1e30aa_0 + - coverage=7.4.3=py39hd1e30aa_1 - cxx-compiler=1.6.0=h00ab1b0_0 - cypari2=2.1.4=py39h1698a45_2 - fonttools=4.49.0=py39hd1e30aa_0 @@ -220,7 +225,7 @@ dependencies: - pplpy=0.8.9=py39hba3e9e5_0 - primecountpy=0.1.0=py39h7633fee_4 - prompt-toolkit=3.0.42=pyha770c72_0 - - pytest=8.0.1=pyhd8ed1ab_1 + - pytest=8.0.2=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - sympy=1.12=pypyh9d50eac_103 - urllib3=2.2.1=pyhd8ed1ab_0 diff --git a/src/environment-dev-3.9-macos-arm64.yml b/src/environment-dev-3.9-macos-arm64.yml index fd3c1e88d00..8304a634460 100644 --- a/src/environment-dev-3.9-macos-arm64.yml +++ b/src/environment-dev-3.9-macos-arm64.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: osx-arm64 -# input_hash: f0bbd96c2a5cac2effc638505223f3cbcb8d81f8b55a3ca045c88cab5ad6123d +# input_hash: cd8efffd92af22a81dc29af51b6a15eb9ab939994d68783107db2b991ab4be49 channels: - conda-forge @@ -14,18 +14,18 @@ dependencies: - font-ttf-source-code-pro=2.038=h77eed37_0 - font-ttf-ubuntu=0.83=h77eed37_1 - giflib=5.2.1=h1a8c8d9_3 - - icu=73.2=hc8870d7_0 - - libboost-headers=1.84.0=hce30654_1 + - icu=72.1=he12128b_0 + - jpeg=9e=h1a8c8d9_3 + - libboost-headers=1.82.0=hce30654_2 - libbrotlicommon=1.1.0=hb547adb_1 - libcxx=16.0.6=h4653b0c_0 - - libdeflate=1.19=hb547adb_0 + - libdeflate=1.17=h1a8c8d9_0 - libev=4.33=h93a5062_2 - libexpat=2.5.0=hb7217d7_1 - libffi=3.4.2=h3422bc3_5 - libiconv=1.17=h0d3ecfb_2 - - libjpeg-turbo=3.0.0=hb547adb_1 - libsodium=1.0.18=h27ca646_1 - - libwebp-base=1.3.2=hb547adb_0 + - libwebp-base=1.2.4=h1a8c8d9_0 - libzlib=1.2.13=h53f4e23_5 - llvm-openmp=17.0.6=hcd81f8e_0 - nauty=2.8.8=h93a5062_1 @@ -37,6 +37,7 @@ dependencies: - planarity=3.0.0.5=h27ca646_1002 - pthread-stubs=0.4=h27ca646_1001 - python_abi=3.9=4_cp39 + - sagemath-db-polytopes=20170220=1 - tzdata=2024a=h0c530f3_0 - xorg-libxau=1.0.11=hb547adb_0 - xorg-libxdmcp=1.1.3=h27ca646_0 @@ -52,10 +53,10 @@ dependencies: - libbrotlidec=1.1.0=hb547adb_1 - libbrotlienc=1.1.0=hb547adb_1 - libgfortran5=13.2.0=hf226fd6_3 - - libpng=1.6.42=h091b4b1_0 + - libpng=1.6.43=h091b4b1_0 - libsqlite=3.45.1=h091b4b1_0 - - libxcb=1.15=hf346824_0 - - libxml2=2.12.5=h0d0cfa8_0 + - libxcb=1.13=h9b22ae9_1004 + - libxml2=2.11.5=he3bdae6_0 - lrcalc=2.1=hebf3989_6 - ncurses=6.4=h463b476_2 - openssl=3.2.1=h0d3ecfb_0 @@ -76,48 +77,50 @@ dependencies: - freetype=2.12.1=hadb7bae_2 - givaro=4.1.1=h0cdca34_3 - glpk=5.0=h6d7a090_0 - - libboost=1.84.0=h8e0f962_1 + - libboost=1.82.0=h3f31f7c_2 - libedit=3.1.20191231=hc8eb9b7_2 - libgfortran=5.0.0=13_2_0_hd922786_3 - libglib=2.78.4=h1635a5e_0 - libhomfly=1.02r6=h27ca646_0 - - libllvm16=16.0.6=haab561b_3 + - libllvm16=16.0.6=he79909e_2 - libnghttp2=1.58.0=ha4dd798_1 - libssh2=1.11.0=h7a5bd25_0 - - libtiff=4.6.0=ha8a6c65_2 + - libtiff=4.5.0=h5dffbdd_2 - m4ri=20140914=h17b34a0_1005 - mpfr=4.2.1=h9546428_0 - ntl=11.4.3=hbb3f309_1 - primecount=7.6=hb6e4faa_0 - readline=8.2=h92ec313_1 - sigtool=0.1.3=h44b9a77_0 + - tachyon=0.99b6=hfb72b2a_1001 - brotli=1.1.0=hb547adb_1 - ecl=21.2.1=h8492d4d_2 - fontconfig=2.14.2=h82840c6_0 - gap-core=4.12.2=he8f4e70_3 - gfan=0.6.2=hec08f5c_1003 - krb5=1.21.2=h92f50d5_0 - - lcms2=2.16=ha0e7c42_0 + - lcms2=2.15=h481adae_0 - ld64_osx-arm64=609=ha4bd21c_16 - - libboost-devel=1.84.0=hf450f58_1 + - libboost-devel=1.82.0=hf450f58_2 - libbrial=1.2.12=ha7f5006_1 - libclang-cpp16=16.0.6=default_he012953_5 - libflint=3.0.1=h28749a5_ntl_100 - libopenblas=0.3.25=openmp_h6c19121_0 - - libwebp=1.3.2=hf30222e_1 - - llvm-tools=16.0.6=haab561b_3 + - libwebp=1.2.4=h999c80f_1 + - llvm-tools=16.0.6=he79909e_2 - m4rie=20150908=h17b34a0_1001 - mpc=1.3.1=h91ba8db_0 - mpfi=1.5.4=hbde5f5b_1001 - - openjpeg=2.5.0=h4c1507b_3 + - openjpeg=2.5.0=hbc2ba62_2 - pari=2.15.4=haeeeed7_2_pthread - pkg-config=0.29.2=hab62308_1008 - ppl=1.2=h8b147cf_1006 - python=3.9.18=hd7ebdb9_1_cpython - qd=2.3.22=hbec66e7_1004 + - sqlite=3.45.1=hf2abe2d_0 - alabaster=0.7.16=pyhd8ed1ab_0 - appnope=0.1.4=pyhd8ed1ab_0 - - boost-cpp=1.84.0=hca5e981_1 + - boost-cpp=1.82.0=h4ae65de_2 - brial=1.2.12=pyh694c41f_1 - brotli-python=1.1.0=py39hb198ff7_1 - cctools_osx-arm64=973.0.1=h62378fb_16 @@ -148,7 +151,7 @@ dependencies: - ld64=609=h634c8be_16 - libblas=3.9.0=20_osxarm64_openblas - libcurl=8.5.0=h2d989ff_0 - - libgd=2.3.3=hfdf3952_9 + - libgd=2.3.3=h8db8f0b_5 - markupsafe=2.1.5=py39h17cfd9d_0 - maxima=5.45.0=h6032a66_2 - mpmath=1.3.0=pyhd8ed1ab_0 @@ -159,7 +162,7 @@ dependencies: - packaging=23.2=pyhd8ed1ab_0 - parso=0.8.3=pyhd8ed1ab_0 - pickleshare=0.7.5=py_1003 - - pillow=10.2.0=py39h755f0b7_0 + - pillow=9.4.0=py39h8bd98a6_1 - pkgconfig=1.5.5=pyhd8ed1ab_4 - platformdirs=4.2.0=pyhd8ed1ab_0 - pluggy=1.4.0=pyhd8ed1ab_0 @@ -169,8 +172,10 @@ dependencies: - pygments=2.17.2=pyhd8ed1ab_0 - pyparsing=3.1.1=pyhd8ed1ab_0 - pysocks=1.7.1=pyha2e5f31_6 + - python-lrcalc=2.1=py39hf3050f2_6 - pytz=2024.1=pyhd8ed1ab_0 - pyzmq=25.1.2=py39he1e2164_0 + - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 - setuptools=69.1.1=pyhd8ed1ab_0 - singular=4.3.2.p8=hb460b52_1 - six=1.16.0=pyh6c4a22f_0 @@ -193,7 +198,7 @@ dependencies: - cctools=973.0.1=h4faf515_16 - clang=16.0.6=h30cc82d_5 - comm=0.2.1=pyhd8ed1ab_0 - - coverage=7.4.3=py39h17cfd9d_0 + - coverage=7.4.3=py39h17cfd9d_1 - cypari2=2.1.4=py39h070b2a8_2 - fonttools=4.49.0=py39h17cfd9d_0 - importlib-metadata=7.0.1=pyha770c72_0 @@ -210,7 +215,7 @@ dependencies: - pplpy=0.8.9=py39haf103f8_0 - primecountpy=0.1.0=py39hbd775c9_4 - prompt-toolkit=3.0.42=pyha770c72_0 - - pytest=8.0.1=pyhd8ed1ab_1 + - pytest=8.0.2=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - sympy=1.12=pypyh9d50eac_103 - urllib3=2.2.1=pyhd8ed1ab_0 @@ -231,7 +236,7 @@ dependencies: - contourpy=1.2.0=py39he9de807_0 - fpylll=0.6.1=py39h2eadeda_0 - giac=1.9.0.21=h1c96721_1 - - igraph=0.10.10=h48be1ad_0 + - igraph=0.10.8=h29932c4_0 - ipython=8.18.1=pyh707e725_3 - jupyter_client=8.6.0=pyhd8ed1ab_0 - linbox=1.6.3=h380be0f_8 diff --git a/src/environment-dev-3.9-macos.yml b/src/environment-dev-3.9-macos.yml index 1db7209a0f5..96704d1afaf 100644 --- a/src/environment-dev-3.9-macos.yml +++ b/src/environment-dev-3.9-macos.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: osx-64 -# input_hash: fb8d2c1ac8a541d3d579a24767d6098fdd791feb919bbd00c62ab18dae289b61 +# input_hash: df7be9f6d5839ee864e7c3b5ec063109c8f1c78c9e33cb9e64d8f8844da97441 channels: - conda-forge @@ -37,6 +37,7 @@ dependencies: - planarity=3.0.0.5=hbcb3906_1002 - pthread-stubs=0.4=hc929b4f_1001 - python_abi=3.9=4_cp39 + - sagemath-db-polytopes=20170220=1 - tzdata=2024a=h0c530f3_0 - xorg-libxau=1.0.11=h0dc2134_0 - xorg-libxdmcp=1.1.3=h35c211d_0 @@ -52,7 +53,7 @@ dependencies: - libbrotlidec=1.1.0=h0dc2134_1 - libbrotlienc=1.1.0=h0dc2134_1 - libgfortran5=13.2.0=h2873a65_3 - - libpng=1.6.42=h92b6c6a_0 + - libpng=1.6.43=h92b6c6a_0 - libsqlite=3.45.1=h92b6c6a_0 - libxcb=1.15=hb7f2c08_0 - libxml2=2.12.5=hc0ae0f7_0 @@ -90,6 +91,7 @@ dependencies: - primecount=7.6=ha894c9a_0 - readline=8.2=h9e318b2_1 - sigtool=0.1.3=h88f4db0_0 + - tachyon=0.99b6=0 - brotli=1.1.0=h0dc2134_1 - ecl=21.2.1=hd029580_2 - fontconfig=2.14.2=h5bb23bf_0 @@ -113,6 +115,7 @@ dependencies: - ppl=1.2=ha60d53e_1006 - python=3.9.18=h7a9c478_1_cpython - qd=2.3.22=h2beb688_1004 + - sqlite=3.45.1=h7461747_0 - alabaster=0.7.16=pyhd8ed1ab_0 - appnope=0.1.4=pyhd8ed1ab_0 - boost-cpp=1.84.0=h07eb623_1 @@ -167,8 +170,10 @@ dependencies: - pygments=2.17.2=pyhd8ed1ab_0 - pyparsing=3.1.1=pyhd8ed1ab_0 - pysocks=1.7.1=pyha2e5f31_6 + - python-lrcalc=2.1=py39hd253f6c_6 - pytz=2024.1=pyhd8ed1ab_0 - pyzmq=25.1.2=py39hcb7a90d_0 + - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 - setuptools=69.1.1=pyhd8ed1ab_0 - singular=4.3.2.p8=h0d51a9f_1 - six=1.16.0=pyh6c4a22f_0 @@ -191,7 +196,7 @@ dependencies: - cctools=973.0.1=h40f6528_16 - clang=16.0.6=hdae98eb_5 - comm=0.2.1=pyhd8ed1ab_0 - - coverage=7.4.3=py39ha09f3b3_0 + - coverage=7.4.3=py39ha09f3b3_1 - cypari2=2.1.4=py39hc0d7317_2 - fonttools=4.49.0=py39ha09f3b3_0 - importlib-metadata=7.0.1=pyha770c72_0 @@ -208,7 +213,7 @@ dependencies: - pplpy=0.8.9=py39h248ee18_0 - primecountpy=0.1.0=py39h8ee36c8_4 - prompt-toolkit=3.0.42=pyha770c72_0 - - pytest=8.0.1=pyhd8ed1ab_1 + - pytest=8.0.2=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - sympy=1.12=pypyh9d50eac_103 - urllib3=2.2.1=pyhd8ed1ab_0 From 1a852d6c7ad02da7980e7d9e3c83368dc0a3b165 Mon Sep 17 00:00:00 2001 From: Tobias Diez Date: Tue, 27 Feb 2024 03:27:24 +0000 Subject: [PATCH 5/5] Update lock files --- src/environment-3.10-linux-aarch64.yml | 9 +++++---- src/environment-3.10-linux.yml | 11 ++++++----- src/environment-3.10-macos-arm64.yml | 9 +++++---- src/environment-3.10-macos.yml | 11 ++++++----- src/environment-3.11-linux-aarch64.yml | 9 +++++---- src/environment-3.11-linux.yml | 11 ++++++----- src/environment-3.11-macos-arm64.yml | 9 +++++---- src/environment-3.11-macos.yml | 11 ++++++----- src/environment-3.9-linux-aarch64.yml | 11 ++++++----- src/environment-3.9-linux.yml | 13 +++++++------ src/environment-3.9-macos-arm64.yml | 11 ++++++----- src/environment-3.9-macos.yml | 13 +++++++------ src/environment-dev-3.10-linux-aarch64.yml | 9 +++++---- src/environment-dev-3.10-linux.yml | 11 ++++++----- src/environment-dev-3.10-macos-arm64.yml | 9 +++++---- src/environment-dev-3.10-macos.yml | 11 ++++++----- src/environment-dev-3.11-linux-aarch64.yml | 9 +++++---- src/environment-dev-3.11-linux.yml | 11 ++++++----- src/environment-dev-3.11-macos-arm64.yml | 9 +++++---- src/environment-dev-3.11-macos.yml | 11 ++++++----- src/environment-dev-3.9-linux-aarch64.yml | 11 ++++++----- src/environment-dev-3.9-linux.yml | 13 +++++++------ src/environment-dev-3.9-macos-arm64.yml | 11 ++++++----- src/environment-dev-3.9-macos.yml | 13 +++++++------ 24 files changed, 140 insertions(+), 116 deletions(-) diff --git a/src/environment-3.10-linux-aarch64.yml b/src/environment-3.10-linux-aarch64.yml index 4e72ebf780b..2cc2e4164e3 100644 --- a/src/environment-3.10-linux-aarch64.yml +++ b/src/environment-3.10-linux-aarch64.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: linux-aarch64 -# input_hash: 21fde6b93b05c1d9756709464c7346372d7ee10a5cc06d972c567ce15335d4b1 +# input_hash: 09d79fa5cdcb9a9c937b1e18056db0f26c07cca54c519614cec522019c9eaa9e channels: - conda-forge @@ -21,6 +21,7 @@ dependencies: - pari-galdata=0.0.20180411=0 - pari-seadata-small=0.0.20090618=0 - python_abi=3.10=4_cp310 + - sagemath-db-graphs=20210214=hd8ed1ab_0 - sagemath-db-polytopes=20170220=1 - tzdata=2024a=h0c530f3_0 - fonts-conda-forge=1=0 @@ -188,7 +189,7 @@ dependencies: - sympow=2.023.6=h157afb5_3 - tornado=6.4=py310h7c1f4a2_0 - traitlets=5.14.1=pyhd8ed1ab_0 - - typing_extensions=4.9.0=pyha770c72_0 + - typing_extensions=4.10.0=pyha770c72_0 - unicodedata2=15.1.0=py310hb299538_0 - wcwidth=0.2.13=pyhd8ed1ab_0 - wheel=0.42.0=pyhd8ed1ab_0 @@ -203,7 +204,7 @@ dependencies: - cypari2=2.1.4=py310h4cbba44_2 - fonttools=4.49.0=py310hb299538_0 - importlib-metadata=7.0.1=pyha770c72_0 - - importlib_resources=6.1.1=pyhd8ed1ab_0 + - importlib_resources=6.1.2=pyhd8ed1ab_0 - jedi=0.19.1=pyhd8ed1ab_0 - jinja2=3.1.3=pyhd8ed1ab_0 - jupyter_core=5.7.1=py310h4c7bcd0_0 @@ -240,7 +241,7 @@ dependencies: - linbox=1.6.3=h681a5ee_8 - scipy=1.11.3=py310hcbab775_1 - blas=2.120=openblas - - ipykernel=6.29.2=pyhd33586a_0 + - ipykernel=6.29.3=pyhd33586a_0 - ipywidgets=8.1.2=pyhd8ed1ab_0 - matplotlib-base=3.8.3=py310h0a7f329_0 - rw=0.9=h31becfc_1 diff --git a/src/environment-3.10-linux.yml b/src/environment-3.10-linux.yml index a7992a48057..a45dc7bedab 100644 --- a/src/environment-3.10-linux.yml +++ b/src/environment-3.10-linux.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: 5501e72910e66beb7d93d022d2e6ad1633f92e1f8d740204c5d21e23b8f5c47a +# input_hash: bd797524145855f9736427878104250f99ae2a2c23d9f42a8a248346bc428fb1 channels: - conda-forge @@ -21,6 +21,7 @@ dependencies: - pari-galdata=0.0.20180411=0 - pari-seadata-small=0.0.20090618=0 - python_abi=3.10=4_cp310 + - sagemath-db-graphs=20210214=hd8ed1ab_0 - sagemath-db-polytopes=20170220=1 - tzdata=2024a=h0c530f3_0 - fonts-conda-forge=1=0 @@ -164,7 +165,7 @@ dependencies: - nest-asyncio=1.6.0=pyhd8ed1ab_0 - networkx=3.2.1=pyhd8ed1ab_0 - openblas=0.3.25=pthreads_h7a3da1a_0 - - openjpeg=2.5.0=h488ebb8_3 + - openjpeg=2.5.1=h488ebb8_0 - packaging=23.2=pyhd8ed1ab_0 - parso=0.8.3=pyhd8ed1ab_0 - pickleshare=0.7.5=py_1003 @@ -188,7 +189,7 @@ dependencies: - sympow=2.023.6=hc6ab17c_3 - tornado=6.4=py310h2372a71_0 - traitlets=5.14.1=pyhd8ed1ab_0 - - typing_extensions=4.9.0=pyha770c72_0 + - typing_extensions=4.10.0=pyha770c72_0 - unicodedata2=15.1.0=py310h2372a71_0 - wcwidth=0.2.13=pyhd8ed1ab_0 - wheel=0.42.0=pyhd8ed1ab_0 @@ -203,7 +204,7 @@ dependencies: - cypari2=2.1.4=py310h14ed79e_2 - fonttools=4.49.0=py310h2372a71_0 - importlib-metadata=7.0.1=pyha770c72_0 - - importlib_resources=6.1.1=pyhd8ed1ab_0 + - importlib_resources=6.1.2=pyhd8ed1ab_0 - jedi=0.19.1=pyhd8ed1ab_0 - jinja2=3.1.3=pyhd8ed1ab_0 - jupyter_core=5.7.1=py310hff52083_0 @@ -240,7 +241,7 @@ dependencies: - linbox=1.6.3=ha329b40_8 - scipy=1.11.4=py310hb13e2d6_0 - blas=2.120=openblas - - ipykernel=6.29.2=pyhd33586a_0 + - ipykernel=6.29.3=pyhd33586a_0 - ipywidgets=8.1.2=pyhd8ed1ab_0 - matplotlib-base=3.8.3=py310h62c0568_0 - rw=0.9=hd590300_1 diff --git a/src/environment-3.10-macos-arm64.yml b/src/environment-3.10-macos-arm64.yml index a5c0a9825d8..dc4b65670e4 100644 --- a/src/environment-3.10-macos-arm64.yml +++ b/src/environment-3.10-macos-arm64.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: osx-arm64 -# input_hash: 7b0add4b23941d4aecdb179562ba9c7ce85eca05a860e17b731b907af1c7dd5b +# input_hash: 5bf4b644ca2d475872e12268587b3cb2a14a706ba67e3c1d1cf42c2965c93218 channels: - conda-forge @@ -37,6 +37,7 @@ dependencies: - planarity=3.0.0.5=h27ca646_1002 - pthread-stubs=0.4=h27ca646_1001 - python_abi=3.10=4_cp310 + - sagemath-db-graphs=20210214=hd8ed1ab_0 - sagemath-db-polytopes=20170220=1 - tzdata=2024a=h0c530f3_0 - xorg-libxau=1.0.11=hb547adb_0 @@ -181,7 +182,7 @@ dependencies: - sympow=2.023.6=hb0babe8_3 - tornado=6.4=py310hd125d64_0 - traitlets=5.14.1=pyhd8ed1ab_0 - - typing_extensions=4.9.0=pyha770c72_0 + - typing_extensions=4.10.0=pyha770c72_0 - unicodedata2=15.1.0=py310h2aa6e3c_0 - wcwidth=0.2.13=pyhd8ed1ab_0 - wheel=0.42.0=pyhd8ed1ab_0 @@ -195,7 +196,7 @@ dependencies: - cypari2=2.1.4=py310h5e3d6bc_2 - fonttools=4.49.0=py310hd125d64_0 - importlib-metadata=7.0.1=pyha770c72_0 - - importlib_resources=6.1.1=pyhd8ed1ab_0 + - importlib_resources=6.1.2=pyhd8ed1ab_0 - jedi=0.19.1=pyhd8ed1ab_0 - jinja2=3.1.3=pyhd8ed1ab_0 - jupyter_core=5.7.1=py310hbe9552e_0 @@ -233,7 +234,7 @@ dependencies: - scipy=1.11.4=py310h2b794db_0 - blas=2.120=openblas - compiler-rt=16.0.6=h3808999_2 - - ipykernel=6.29.2=pyh3cd1d5f_0 + - ipykernel=6.29.3=pyh3cd1d5f_0 - ipywidgets=8.1.2=pyhd8ed1ab_0 - matplotlib-base=3.8.3=py310h2439c42_0 - rw=0.9=h93a5062_1 diff --git a/src/environment-3.10-macos.yml b/src/environment-3.10-macos.yml index 3773ba4aee2..11ff4720434 100644 --- a/src/environment-3.10-macos.yml +++ b/src/environment-3.10-macos.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: osx-64 -# input_hash: 42ecd1956437b090d917786bfa107d01e0e3e3658680cd1be8d98fe0fa933982 +# input_hash: 8e8704bd6ccb1d113421f874b4d23d3e09281965b7e5dbeb4af83a952853b3d0 channels: - conda-forge @@ -37,6 +37,7 @@ dependencies: - planarity=3.0.0.5=hbcb3906_1002 - pthread-stubs=0.4=hc929b4f_1001 - python_abi=3.10=4_cp310 + - sagemath-db-graphs=20210214=hd8ed1ab_0 - sagemath-db-polytopes=20170220=1 - tzdata=2024a=h0c530f3_0 - xorg-libxau=1.0.11=h0dc2134_0 @@ -110,7 +111,7 @@ dependencies: - m4rie=20150908=h3f75d11_1001 - mpc=1.3.1=h81bd1dd_0 - mpfi=1.5.4=h52b28e3_1001 - - openjpeg=2.5.0=ha4da562_3 + - openjpeg=2.5.1=h7310d3a_0 - pari=2.15.4=h93f793c_2_pthread - ppl=1.2=ha60d53e_1006 - python=3.10.13=h00d2728_1_cpython @@ -179,7 +180,7 @@ dependencies: - sympow=2.023.6=h115ba6a_3 - tornado=6.4=py310hb372a2b_0 - traitlets=5.14.1=pyhd8ed1ab_0 - - typing_extensions=4.9.0=pyha770c72_0 + - typing_extensions=4.10.0=pyha770c72_0 - unicodedata2=15.1.0=py310h6729b98_0 - wcwidth=0.2.13=pyhd8ed1ab_0 - wheel=0.42.0=pyhd8ed1ab_0 @@ -193,7 +194,7 @@ dependencies: - cypari2=2.1.4=py310hc7df965_2 - fonttools=4.49.0=py310hb372a2b_0 - importlib-metadata=7.0.1=pyha770c72_0 - - importlib_resources=6.1.1=pyhd8ed1ab_0 + - importlib_resources=6.1.2=pyhd8ed1ab_0 - jedi=0.19.1=pyhd8ed1ab_0 - jinja2=3.1.3=pyhd8ed1ab_0 - jupyter_core=5.7.1=py310h2ec42d9_0 @@ -231,7 +232,7 @@ dependencies: - scipy=1.11.4=py310h3f1db6d_0 - blas=2.120=openblas - compiler-rt=16.0.6=ha38d28d_2 - - ipykernel=6.29.2=pyh3cd1d5f_0 + - ipykernel=6.29.3=pyh3cd1d5f_0 - ipywidgets=8.1.2=pyhd8ed1ab_0 - matplotlib-base=3.8.3=py310hec49e92_0 - rw=0.9=h10d778d_1 diff --git a/src/environment-3.11-linux-aarch64.yml b/src/environment-3.11-linux-aarch64.yml index 86551d57f09..8c440859ba4 100644 --- a/src/environment-3.11-linux-aarch64.yml +++ b/src/environment-3.11-linux-aarch64.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: linux-aarch64 -# input_hash: 9dd745b3ff6bb8e87451079d5feeba1e0a1e8287c0c8d2be1985365d0b16537d +# input_hash: a698576b46cb9503c6d8224c261735297f9d10840d4ea6d9a7cb838f4536eceb channels: - conda-forge @@ -21,6 +21,7 @@ dependencies: - pari-galdata=0.0.20180411=0 - pari-seadata-small=0.0.20090618=0 - python_abi=3.11=4_cp311 + - sagemath-db-graphs=20210214=hd8ed1ab_0 - sagemath-db-polytopes=20170220=1 - tzdata=2024a=h0c530f3_0 - fonts-conda-forge=1=0 @@ -188,7 +189,7 @@ dependencies: - sympow=2.023.6=h157afb5_3 - tornado=6.4=py311hc8f2f60_0 - traitlets=5.14.1=pyhd8ed1ab_0 - - typing_extensions=4.9.0=pyha770c72_0 + - typing_extensions=4.10.0=pyha770c72_0 - wcwidth=0.2.13=pyhd8ed1ab_0 - wheel=0.42.0=pyhd8ed1ab_0 - widgetsnbextension=4.0.10=pyhd8ed1ab_0 @@ -202,7 +203,7 @@ dependencies: - cypari2=2.1.4=py311h5ab95f0_2 - fonttools=4.49.0=py311hcd402e7_0 - importlib-metadata=7.0.1=pyha770c72_0 - - importlib_resources=6.1.1=pyhd8ed1ab_0 + - importlib_resources=6.1.2=pyhd8ed1ab_0 - jedi=0.19.1=pyhd8ed1ab_0 - jinja2=3.1.3=pyhd8ed1ab_0 - jupyter_core=5.7.1=py311hec3470c_0 @@ -239,7 +240,7 @@ dependencies: - linbox=1.6.3=h681a5ee_8 - scipy=1.11.3=py311h69ead2a_1 - blas=2.120=openblas - - ipykernel=6.29.2=pyhd33586a_0 + - ipykernel=6.29.3=pyhd33586a_0 - ipywidgets=8.1.2=pyhd8ed1ab_0 - matplotlib-base=3.8.3=py311h1f11223_0 - rw=0.9=h31becfc_1 diff --git a/src/environment-3.11-linux.yml b/src/environment-3.11-linux.yml index c03aff52b0f..99585da56e1 100644 --- a/src/environment-3.11-linux.yml +++ b/src/environment-3.11-linux.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: 6fbe0c2502dd0d9cd02b86413b43fb24ce03b07991be99dfdb837fb2c8ff34eb +# input_hash: 87eb5c4a90cb9953d7940963300b84c0daf66992e15b5b8f0a9764b3dd892db0 channels: - conda-forge @@ -21,6 +21,7 @@ dependencies: - pari-galdata=0.0.20180411=0 - pari-seadata-small=0.0.20090618=0 - python_abi=3.11=4_cp311 + - sagemath-db-graphs=20210214=hd8ed1ab_0 - sagemath-db-polytopes=20170220=1 - tzdata=2024a=h0c530f3_0 - fonts-conda-forge=1=0 @@ -164,7 +165,7 @@ dependencies: - nest-asyncio=1.6.0=pyhd8ed1ab_0 - networkx=3.2.1=pyhd8ed1ab_0 - openblas=0.3.25=pthreads_h7a3da1a_0 - - openjpeg=2.5.0=h488ebb8_3 + - openjpeg=2.5.1=h488ebb8_0 - packaging=23.2=pyhd8ed1ab_0 - parso=0.8.3=pyhd8ed1ab_0 - pickleshare=0.7.5=py_1003 @@ -188,7 +189,7 @@ dependencies: - sympow=2.023.6=hc6ab17c_3 - tornado=6.4=py311h459d7ec_0 - traitlets=5.14.1=pyhd8ed1ab_0 - - typing_extensions=4.9.0=pyha770c72_0 + - typing_extensions=4.10.0=pyha770c72_0 - wcwidth=0.2.13=pyhd8ed1ab_0 - wheel=0.42.0=pyhd8ed1ab_0 - widgetsnbextension=4.0.10=pyhd8ed1ab_0 @@ -202,7 +203,7 @@ dependencies: - cypari2=2.1.4=py311hd2352ae_2 - fonttools=4.49.0=py311h459d7ec_0 - importlib-metadata=7.0.1=pyha770c72_0 - - importlib_resources=6.1.1=pyhd8ed1ab_0 + - importlib_resources=6.1.2=pyhd8ed1ab_0 - jedi=0.19.1=pyhd8ed1ab_0 - jinja2=3.1.3=pyhd8ed1ab_0 - jupyter_core=5.7.1=py311h38be061_0 @@ -239,7 +240,7 @@ dependencies: - linbox=1.6.3=ha329b40_8 - scipy=1.11.4=py311h64a7726_0 - blas=2.120=openblas - - ipykernel=6.29.2=pyhd33586a_0 + - ipykernel=6.29.3=pyhd33586a_0 - ipywidgets=8.1.2=pyhd8ed1ab_0 - matplotlib-base=3.8.3=py311h54ef318_0 - rw=0.9=hd590300_1 diff --git a/src/environment-3.11-macos-arm64.yml b/src/environment-3.11-macos-arm64.yml index 8cf800b4cd9..b72ee41b803 100644 --- a/src/environment-3.11-macos-arm64.yml +++ b/src/environment-3.11-macos-arm64.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: osx-arm64 -# input_hash: efa5ea1498b84f4ee84f4049473f0a1104323baf0ffd776140fc2f4abcbde77a +# input_hash: 2dfbeeaf130d7a9936acbb834fa2eef4442104a8f25e0bbcfc8b24ab4c788cee channels: - conda-forge @@ -37,6 +37,7 @@ dependencies: - planarity=3.0.0.5=h27ca646_1002 - pthread-stubs=0.4=h27ca646_1001 - python_abi=3.11=4_cp311 + - sagemath-db-graphs=20210214=hd8ed1ab_0 - sagemath-db-polytopes=20170220=1 - tzdata=2024a=h0c530f3_0 - xorg-libxau=1.0.11=hb547adb_0 @@ -181,7 +182,7 @@ dependencies: - sympow=2.023.6=hb0babe8_3 - tornado=6.4=py311h05b510d_0 - traitlets=5.14.1=pyhd8ed1ab_0 - - typing_extensions=4.9.0=pyha770c72_0 + - typing_extensions=4.10.0=pyha770c72_0 - wcwidth=0.2.13=pyhd8ed1ab_0 - wheel=0.42.0=pyhd8ed1ab_0 - widgetsnbextension=4.0.10=pyhd8ed1ab_0 @@ -194,7 +195,7 @@ dependencies: - cypari2=2.1.4=py311h2c49a9d_2 - fonttools=4.48.1=py311h05b510d_0 - importlib-metadata=7.0.1=pyha770c72_0 - - importlib_resources=6.1.1=pyhd8ed1ab_0 + - importlib_resources=6.1.2=pyhd8ed1ab_0 - jedi=0.19.1=pyhd8ed1ab_0 - jinja2=3.1.3=pyhd8ed1ab_0 - jupyter_core=5.7.1=py311h267d04e_0 @@ -232,7 +233,7 @@ dependencies: - scipy=1.11.4=py311h2b215a9_0 - blas=2.120=openblas - compiler-rt=16.0.6=h3808999_2 - - ipykernel=6.29.2=pyh3cd1d5f_0 + - ipykernel=6.29.3=pyh3cd1d5f_0 - ipywidgets=8.1.2=pyhd8ed1ab_0 - matplotlib-base=3.8.3=py311hb58f1d1_0 - rw=0.9=h93a5062_1 diff --git a/src/environment-3.11-macos.yml b/src/environment-3.11-macos.yml index c56f9574651..20092acacfb 100644 --- a/src/environment-3.11-macos.yml +++ b/src/environment-3.11-macos.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: osx-64 -# input_hash: 853510e86a10a5d85817dbfef8a2252e019bfc2983d22b571f7d628d96e91f5b +# input_hash: b6ab00ef85764e11029ab9898e95fde23f3da6316cbabbdc7bcec917d70eb591 channels: - conda-forge @@ -37,6 +37,7 @@ dependencies: - planarity=3.0.0.5=hbcb3906_1002 - pthread-stubs=0.4=hc929b4f_1001 - python_abi=3.11=4_cp311 + - sagemath-db-graphs=20210214=hd8ed1ab_0 - sagemath-db-polytopes=20170220=1 - tzdata=2024a=h0c530f3_0 - xorg-libxau=1.0.11=h0dc2134_0 @@ -110,7 +111,7 @@ dependencies: - m4rie=20150908=h3f75d11_1001 - mpc=1.3.1=h81bd1dd_0 - mpfi=1.5.4=h52b28e3_1001 - - openjpeg=2.5.0=ha4da562_3 + - openjpeg=2.5.1=h7310d3a_0 - pari=2.15.4=h93f793c_2_pthread - ppl=1.2=ha60d53e_1006 - python=3.11.8=h9f0c242_0_cpython @@ -179,7 +180,7 @@ dependencies: - sympow=2.023.6=h115ba6a_3 - tornado=6.4=py311he705e18_0 - traitlets=5.14.1=pyhd8ed1ab_0 - - typing_extensions=4.9.0=pyha770c72_0 + - typing_extensions=4.10.0=pyha770c72_0 - wcwidth=0.2.13=pyhd8ed1ab_0 - wheel=0.42.0=pyhd8ed1ab_0 - widgetsnbextension=4.0.10=pyhd8ed1ab_0 @@ -192,7 +193,7 @@ dependencies: - cypari2=2.1.4=py311h4fde0ae_2 - fonttools=4.49.0=py311he705e18_0 - importlib-metadata=7.0.1=pyha770c72_0 - - importlib_resources=6.1.1=pyhd8ed1ab_0 + - importlib_resources=6.1.2=pyhd8ed1ab_0 - jedi=0.19.1=pyhd8ed1ab_0 - jinja2=3.1.3=pyhd8ed1ab_0 - jupyter_core=5.7.1=py311h6eed73b_0 @@ -230,7 +231,7 @@ dependencies: - scipy=1.11.4=py311he0bea55_0 - blas=2.120=openblas - compiler-rt=16.0.6=ha38d28d_2 - - ipykernel=6.29.2=pyh3cd1d5f_0 + - ipykernel=6.29.3=pyh3cd1d5f_0 - ipywidgets=8.1.2=pyhd8ed1ab_0 - matplotlib-base=3.8.3=py311h6ff1f5f_0 - rw=0.9=h10d778d_1 diff --git a/src/environment-3.9-linux-aarch64.yml b/src/environment-3.9-linux-aarch64.yml index e33551b3576..624f94f9f04 100644 --- a/src/environment-3.9-linux-aarch64.yml +++ b/src/environment-3.9-linux-aarch64.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: linux-aarch64 -# input_hash: 8d4324ec31f81e97d1ff2515a47b0995966870135eb89fdc7a4e52337cb0ddbd +# input_hash: c69915ed4d328896462ec7d36ad38dedc4d01915d284f7faa835161eb75eecaf channels: - conda-forge @@ -21,6 +21,7 @@ dependencies: - pari-galdata=0.0.20180411=0 - pari-seadata-small=0.0.20090618=0 - python_abi=3.9=4_cp39 + - sagemath-db-graphs=20210214=hd8ed1ab_0 - sagemath-db-polytopes=20170220=1 - tzdata=2024a=h0c530f3_0 - fonts-conda-forge=1=0 @@ -188,7 +189,7 @@ dependencies: - sympow=2.023.6=h157afb5_3 - tornado=6.4=py39h7cc1d5f_0 - traitlets=5.14.1=pyhd8ed1ab_0 - - typing_extensions=4.9.0=pyha770c72_0 + - typing_extensions=4.10.0=pyha770c72_0 - unicodedata2=15.1.0=py39h898b7ef_0 - wcwidth=0.2.13=pyhd8ed1ab_0 - wheel=0.42.0=pyhd8ed1ab_0 @@ -203,7 +204,7 @@ dependencies: - cypari2=2.1.4=py39h532d932_2 - fonttools=4.49.0=py39h898b7ef_0 - importlib-metadata=7.0.1=pyha770c72_0 - - importlib_resources=6.1.1=pyhd8ed1ab_0 + - importlib_resources=6.1.2=pyhd8ed1ab_0 - jedi=0.19.1=pyhd8ed1ab_0 - jinja2=3.1.3=pyhd8ed1ab_0 - jupyter_core=5.7.1=py39h4420490_0 @@ -225,7 +226,7 @@ dependencies: - fflas-ffpack=2.4.3=hf104d39_2 - gsl=2.7=h294027d_0 - iml=1.0.5=h9076c59_1003 - - importlib-resources=6.1.1=pyhd8ed1ab_0 + - importlib-resources=6.1.2=pyhd8ed1ab_0 - importlib_metadata=7.0.1=hd8ed1ab_0 - liblapacke=3.9.0=20_linuxaarch64_openblas - numpy=1.26.4=py39h91c28bb_0 @@ -241,7 +242,7 @@ dependencies: - linbox=1.6.3=h681a5ee_8 - scipy=1.11.3=py39h91c28bb_1 - blas=2.120=openblas - - ipykernel=6.29.2=pyhd33586a_0 + - ipykernel=6.29.3=pyhd33586a_0 - ipywidgets=8.1.2=pyhd8ed1ab_0 - matplotlib-base=3.8.3=py39h8e43113_0 - rw=0.9=h31becfc_1 diff --git a/src/environment-3.9-linux.yml b/src/environment-3.9-linux.yml index d6c680d1cef..b311b0ba1a0 100644 --- a/src/environment-3.9-linux.yml +++ b/src/environment-3.9-linux.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: 0dc864e31e5ed0fe066de215fbbf063948b08946d961574679c20eddc06c31d2 +# input_hash: 990c267ed06a34972765af3766ee39f5be0c7937dc5119385b441352ecd0a1d1 channels: - conda-forge @@ -21,6 +21,7 @@ dependencies: - pari-galdata=0.0.20180411=0 - pari-seadata-small=0.0.20090618=0 - python_abi=3.9=4_cp39 + - sagemath-db-graphs=20210214=hd8ed1ab_0 - sagemath-db-polytopes=20170220=1 - tzdata=2024a=h0c530f3_0 - fonts-conda-forge=1=0 @@ -164,7 +165,7 @@ dependencies: - nest-asyncio=1.6.0=pyhd8ed1ab_0 - networkx=3.2.1=pyhd8ed1ab_0 - openblas=0.3.25=pthreads_h7a3da1a_0 - - openjpeg=2.5.0=h488ebb8_3 + - openjpeg=2.5.1=h488ebb8_0 - packaging=23.2=pyhd8ed1ab_0 - parso=0.8.3=pyhd8ed1ab_0 - pickleshare=0.7.5=py_1003 @@ -188,7 +189,7 @@ dependencies: - sympow=2.023.6=hc6ab17c_3 - tornado=6.4=py39hd1e30aa_0 - traitlets=5.14.1=pyhd8ed1ab_0 - - typing_extensions=4.9.0=pyha770c72_0 + - typing_extensions=4.10.0=pyha770c72_0 - unicodedata2=15.1.0=py39hd1e30aa_0 - wcwidth=0.2.13=pyhd8ed1ab_0 - wheel=0.42.0=pyhd8ed1ab_0 @@ -203,7 +204,7 @@ dependencies: - cypari2=2.1.4=py39h1698a45_2 - fonttools=4.49.0=py39hd1e30aa_0 - importlib-metadata=7.0.1=pyha770c72_0 - - importlib_resources=6.1.1=pyhd8ed1ab_0 + - importlib_resources=6.1.2=pyhd8ed1ab_0 - jedi=0.19.1=pyhd8ed1ab_0 - jinja2=3.1.3=pyhd8ed1ab_0 - jupyter_core=5.7.1=py39hf3d152e_0 @@ -225,7 +226,7 @@ dependencies: - fflas-ffpack=2.4.3=h912ac81_2 - gsl=2.7=he838d99_0 - iml=1.0.5=hd75c201_1003 - - importlib-resources=6.1.1=pyhd8ed1ab_0 + - importlib-resources=6.1.2=pyhd8ed1ab_0 - importlib_metadata=7.0.1=hd8ed1ab_0 - liblapacke=3.9.0=20_linux64_openblas - numpy=1.26.4=py39h474f0d3_0 @@ -241,7 +242,7 @@ dependencies: - linbox=1.6.3=ha329b40_8 - scipy=1.11.4=py39h474f0d3_0 - blas=2.120=openblas - - ipykernel=6.29.2=pyhd33586a_0 + - ipykernel=6.29.3=pyhd33586a_0 - ipywidgets=8.1.2=pyhd8ed1ab_0 - matplotlib-base=3.8.3=py39he9076e7_0 - rw=0.9=hd590300_1 diff --git a/src/environment-3.9-macos-arm64.yml b/src/environment-3.9-macos-arm64.yml index 178ef2f4cde..de95b6753e5 100644 --- a/src/environment-3.9-macos-arm64.yml +++ b/src/environment-3.9-macos-arm64.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: osx-arm64 -# input_hash: 26ff7d76fba2a5a875cd9fb8d50c12ba0bb3559fb0a1b74d4149ec0886d490ad +# input_hash: 553b5b3d44175143ec7d547d709a5d77897da2accb1dddc6f1d3342482140e85 channels: - conda-forge @@ -37,6 +37,7 @@ dependencies: - planarity=3.0.0.5=h27ca646_1002 - pthread-stubs=0.4=h27ca646_1001 - python_abi=3.9=4_cp39 + - sagemath-db-graphs=20210214=hd8ed1ab_0 - sagemath-db-polytopes=20170220=1 - tzdata=2024a=h0c530f3_0 - xorg-libxau=1.0.11=hb547adb_0 @@ -181,7 +182,7 @@ dependencies: - sympow=2.023.6=hb0babe8_3 - tornado=6.4=py39h17cfd9d_0 - traitlets=5.14.1=pyhd8ed1ab_0 - - typing_extensions=4.9.0=pyha770c72_0 + - typing_extensions=4.10.0=pyha770c72_0 - unicodedata2=15.1.0=py39h0f82c59_0 - wcwidth=0.2.13=pyhd8ed1ab_0 - wheel=0.42.0=pyhd8ed1ab_0 @@ -195,7 +196,7 @@ dependencies: - cypari2=2.1.4=py39h070b2a8_2 - fonttools=4.49.0=py39h17cfd9d_0 - importlib-metadata=7.0.1=pyha770c72_0 - - importlib_resources=6.1.1=pyhd8ed1ab_0 + - importlib_resources=6.1.2=pyhd8ed1ab_0 - jedi=0.19.1=pyhd8ed1ab_0 - jinja2=3.1.3=pyhd8ed1ab_0 - jupyter_core=5.7.1=py39h2804cbe_0 @@ -216,7 +217,7 @@ dependencies: - fflas-ffpack=2.4.3=h11f2abc_2 - gsl=2.7=h6e638da_0 - iml=1.0.5=hd52f0d1_1003 - - importlib-resources=6.1.1=pyhd8ed1ab_0 + - importlib-resources=6.1.2=pyhd8ed1ab_0 - importlib_metadata=7.0.1=hd8ed1ab_0 - liblapacke=3.9.0=20_osxarm64_openblas - numpy=1.26.4=py39h7aa2656_0 @@ -234,7 +235,7 @@ dependencies: - scipy=1.11.4=py39h36c428d_0 - blas=2.120=openblas - compiler-rt=16.0.6=h3808999_2 - - ipykernel=6.29.2=pyh3cd1d5f_0 + - ipykernel=6.29.3=pyh3cd1d5f_0 - ipywidgets=8.1.2=pyhd8ed1ab_0 - matplotlib-base=3.8.3=py39hbab7938_0 - rw=0.9=h93a5062_1 diff --git a/src/environment-3.9-macos.yml b/src/environment-3.9-macos.yml index c88bcb63184..db1e72750a9 100644 --- a/src/environment-3.9-macos.yml +++ b/src/environment-3.9-macos.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: osx-64 -# input_hash: 18e525767190d86d8da78f7f6aaca852284483879bbc50fc537f81c6e9914000 +# input_hash: c490a5804f5a90b6fea5503b19e5216704d67183a987dc625f25c81df7ab87cc channels: - conda-forge @@ -37,6 +37,7 @@ dependencies: - planarity=3.0.0.5=hbcb3906_1002 - pthread-stubs=0.4=hc929b4f_1001 - python_abi=3.9=4_cp39 + - sagemath-db-graphs=20210214=hd8ed1ab_0 - sagemath-db-polytopes=20170220=1 - tzdata=2024a=h0c530f3_0 - xorg-libxau=1.0.11=h0dc2134_0 @@ -110,7 +111,7 @@ dependencies: - m4rie=20150908=h3f75d11_1001 - mpc=1.3.1=h81bd1dd_0 - mpfi=1.5.4=h52b28e3_1001 - - openjpeg=2.5.0=ha4da562_3 + - openjpeg=2.5.1=h7310d3a_0 - pari=2.15.4=h93f793c_2_pthread - ppl=1.2=ha60d53e_1006 - python=3.9.18=h7a9c478_1_cpython @@ -179,7 +180,7 @@ dependencies: - sympow=2.023.6=h115ba6a_3 - tornado=6.4=py39ha09f3b3_0 - traitlets=5.14.1=pyhd8ed1ab_0 - - typing_extensions=4.9.0=pyha770c72_0 + - typing_extensions=4.10.0=pyha770c72_0 - unicodedata2=15.1.0=py39hdc70f33_0 - wcwidth=0.2.13=pyhd8ed1ab_0 - wheel=0.42.0=pyhd8ed1ab_0 @@ -193,7 +194,7 @@ dependencies: - cypari2=2.1.4=py39hc0d7317_2 - fonttools=4.49.0=py39ha09f3b3_0 - importlib-metadata=7.0.1=pyha770c72_0 - - importlib_resources=6.1.1=pyhd8ed1ab_0 + - importlib_resources=6.1.2=pyhd8ed1ab_0 - jedi=0.19.1=pyhd8ed1ab_0 - jinja2=3.1.3=pyhd8ed1ab_0 - jupyter_core=5.7.1=py39h6e9494a_0 @@ -214,7 +215,7 @@ dependencies: - fflas-ffpack=2.4.3=h026fd7e_2 - gsl=2.7=h93259b0_0 - iml=1.0.5=h64b42ca_1003 - - importlib-resources=6.1.1=pyhd8ed1ab_0 + - importlib-resources=6.1.2=pyhd8ed1ab_0 - importlib_metadata=7.0.1=hd8ed1ab_0 - liblapacke=3.9.0=20_osx64_openblas - numpy=1.26.4=py39h28c39a1_0 @@ -232,7 +233,7 @@ dependencies: - scipy=1.11.4=py39ha321857_0 - blas=2.120=openblas - compiler-rt=16.0.6=ha38d28d_2 - - ipykernel=6.29.2=pyh3cd1d5f_0 + - ipykernel=6.29.3=pyh3cd1d5f_0 - ipywidgets=8.1.2=pyhd8ed1ab_0 - matplotlib-base=3.8.3=py39h7070ae8_0 - rw=0.9=h10d778d_1 diff --git a/src/environment-dev-3.10-linux-aarch64.yml b/src/environment-dev-3.10-linux-aarch64.yml index 6008439acec..5a957d90fb4 100644 --- a/src/environment-dev-3.10-linux-aarch64.yml +++ b/src/environment-dev-3.10-linux-aarch64.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: linux-aarch64 -# input_hash: d59c7fdfce423e59357f7331b830bccc234d131565ef99e3f9d46758e8d2b17c +# input_hash: 1a16f108aa44c043cbaae217c6f2edb28cc7f3d01ada1334a79f88ea74708f40 channels: - conda-forge @@ -21,6 +21,7 @@ dependencies: - pari-galdata=0.0.20180411=0 - pari-seadata-small=0.0.20090618=0 - python_abi=3.10=4_cp310 + - sagemath-db-graphs=20210214=hd8ed1ab_0 - sagemath-db-polytopes=20170220=1 - tzdata=2024a=h0c530f3_0 - fonts-conda-forge=1=0 @@ -193,7 +194,7 @@ dependencies: - tomli=2.0.1=pyhd8ed1ab_0 - tornado=6.4=py310h7c1f4a2_0 - traitlets=5.14.1=pyhd8ed1ab_0 - - typing_extensions=4.9.0=pyha770c72_0 + - typing_extensions=4.10.0=pyha770c72_0 - unicodedata2=15.1.0=py310hb299538_0 - wcwidth=0.2.13=pyhd8ed1ab_0 - wheel=0.42.0=pyhd8ed1ab_0 @@ -210,7 +211,7 @@ dependencies: - cypari2=2.1.4=py310h4cbba44_2 - fonttools=4.49.0=py310hb299538_0 - importlib-metadata=7.0.1=pyha770c72_0 - - importlib_resources=6.1.1=pyhd8ed1ab_0 + - importlib_resources=6.1.2=pyhd8ed1ab_0 - jedi=0.19.1=pyhd8ed1ab_0 - jinja2=3.1.3=pyhd8ed1ab_0 - jupyter_core=5.7.1=py310h4c7bcd0_0 @@ -249,7 +250,7 @@ dependencies: - linbox=1.6.3=h681a5ee_8 - scipy=1.11.3=py310hcbab775_1 - blas=2.120=openblas - - ipykernel=6.29.2=pyhd33586a_0 + - ipykernel=6.29.3=pyhd33586a_0 - ipywidgets=8.1.2=pyhd8ed1ab_0 - matplotlib-base=3.8.3=py310h0a7f329_0 - rw=0.9=h31becfc_1 diff --git a/src/environment-dev-3.10-linux.yml b/src/environment-dev-3.10-linux.yml index f3515b97552..64b69896d5b 100644 --- a/src/environment-dev-3.10-linux.yml +++ b/src/environment-dev-3.10-linux.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: a1db7fb958522fc2aa766534dd623dc80a732897e8ee230e3eced324030a4e33 +# input_hash: 491f25354fd83069ae973be5a55782c7c035d5fc34d1ad152899a3568f3ad01f channels: - conda-forge @@ -21,6 +21,7 @@ dependencies: - pari-galdata=0.0.20180411=0 - pari-seadata-small=0.0.20090618=0 - python_abi=3.10=4_cp310 + - sagemath-db-graphs=20210214=hd8ed1ab_0 - sagemath-db-polytopes=20170220=1 - tzdata=2024a=h0c530f3_0 - fonts-conda-forge=1=0 @@ -166,7 +167,7 @@ dependencies: - nest-asyncio=1.6.0=pyhd8ed1ab_0 - networkx=3.2.1=pyhd8ed1ab_0 - openblas=0.3.25=pthreads_h7a3da1a_0 - - openjpeg=2.5.0=h488ebb8_3 + - openjpeg=2.5.1=h488ebb8_0 - packaging=23.2=pyhd8ed1ab_0 - parso=0.8.3=pyhd8ed1ab_0 - pickleshare=0.7.5=py_1003 @@ -193,7 +194,7 @@ dependencies: - tomli=2.0.1=pyhd8ed1ab_0 - tornado=6.4=py310h2372a71_0 - traitlets=5.14.1=pyhd8ed1ab_0 - - typing_extensions=4.9.0=pyha770c72_0 + - typing_extensions=4.10.0=pyha770c72_0 - unicodedata2=15.1.0=py310h2372a71_0 - wcwidth=0.2.13=pyhd8ed1ab_0 - wheel=0.42.0=pyhd8ed1ab_0 @@ -210,7 +211,7 @@ dependencies: - cypari2=2.1.4=py310h14ed79e_2 - fonttools=4.49.0=py310h2372a71_0 - importlib-metadata=7.0.1=pyha770c72_0 - - importlib_resources=6.1.1=pyhd8ed1ab_0 + - importlib_resources=6.1.2=pyhd8ed1ab_0 - jedi=0.19.1=pyhd8ed1ab_0 - jinja2=3.1.3=pyhd8ed1ab_0 - jupyter_core=5.7.1=py310hff52083_0 @@ -249,7 +250,7 @@ dependencies: - linbox=1.6.3=ha329b40_8 - scipy=1.11.4=py310hb13e2d6_0 - blas=2.120=openblas - - ipykernel=6.29.2=pyhd33586a_0 + - ipykernel=6.29.3=pyhd33586a_0 - ipywidgets=8.1.2=pyhd8ed1ab_0 - matplotlib-base=3.8.3=py310h62c0568_0 - rw=0.9=hd590300_1 diff --git a/src/environment-dev-3.10-macos-arm64.yml b/src/environment-dev-3.10-macos-arm64.yml index f69af16cbb4..8f64f91da0c 100644 --- a/src/environment-dev-3.10-macos-arm64.yml +++ b/src/environment-dev-3.10-macos-arm64.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: osx-arm64 -# input_hash: 3b0ed1fe32c698567102d2e56bfd6673004af4d8fcb9f683835da09597cc4fc4 +# input_hash: 0c4f45514d2398eed2ba713de1255885103fcd9b733056b4f3659a451fba39e5 channels: - conda-forge @@ -37,6 +37,7 @@ dependencies: - planarity=3.0.0.5=h27ca646_1002 - pthread-stubs=0.4=h27ca646_1001 - python_abi=3.10=4_cp310 + - sagemath-db-graphs=20210214=hd8ed1ab_0 - sagemath-db-polytopes=20170220=1 - tzdata=2024a=h0c530f3_0 - xorg-libxau=1.0.11=hb547adb_0 @@ -186,7 +187,7 @@ dependencies: - tomli=2.0.1=pyhd8ed1ab_0 - tornado=6.4=py310hd125d64_0 - traitlets=5.14.1=pyhd8ed1ab_0 - - typing_extensions=4.9.0=pyha770c72_0 + - typing_extensions=4.10.0=pyha770c72_0 - unicodedata2=15.1.0=py310h2aa6e3c_0 - wcwidth=0.2.13=pyhd8ed1ab_0 - wheel=0.42.0=pyhd8ed1ab_0 @@ -202,7 +203,7 @@ dependencies: - cypari2=2.1.4=py310h5e3d6bc_2 - fonttools=4.49.0=py310hd125d64_0 - importlib-metadata=7.0.1=pyha770c72_0 - - importlib_resources=6.1.1=pyhd8ed1ab_0 + - importlib_resources=6.1.2=pyhd8ed1ab_0 - jedi=0.19.1=pyhd8ed1ab_0 - jinja2=3.1.3=pyhd8ed1ab_0 - jupyter_core=5.7.1=py310hbe9552e_0 @@ -242,7 +243,7 @@ dependencies: - scipy=1.11.4=py310h2b794db_0 - blas=2.120=openblas - compiler-rt=16.0.6=h3808999_2 - - ipykernel=6.29.2=pyh3cd1d5f_0 + - ipykernel=6.29.3=pyh3cd1d5f_0 - ipywidgets=8.1.2=pyhd8ed1ab_0 - matplotlib-base=3.8.3=py310h2439c42_0 - rw=0.9=h93a5062_1 diff --git a/src/environment-dev-3.10-macos.yml b/src/environment-dev-3.10-macos.yml index 4e545993353..b8f6883d1fc 100644 --- a/src/environment-dev-3.10-macos.yml +++ b/src/environment-dev-3.10-macos.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: osx-64 -# input_hash: 72ff0671abbdbbe8aefda26b787fdeddecff4cc6201626de18f690cea41fe5b8 +# input_hash: 12638243c4eb821e79c86f61b3f4880ac28dfaab9837e9daee006d74ec0631c9 channels: - conda-forge @@ -37,6 +37,7 @@ dependencies: - planarity=3.0.0.5=hbcb3906_1002 - pthread-stubs=0.4=hc929b4f_1001 - python_abi=3.10=4_cp310 + - sagemath-db-graphs=20210214=hd8ed1ab_0 - sagemath-db-polytopes=20170220=1 - tzdata=2024a=h0c530f3_0 - xorg-libxau=1.0.11=h0dc2134_0 @@ -110,7 +111,7 @@ dependencies: - m4rie=20150908=h3f75d11_1001 - mpc=1.3.1=h81bd1dd_0 - mpfi=1.5.4=h52b28e3_1001 - - openjpeg=2.5.0=ha4da562_3 + - openjpeg=2.5.1=h7310d3a_0 - pari=2.15.4=h93f793c_2_pthread - ppl=1.2=ha60d53e_1006 - python=3.10.13=h00d2728_1_cpython @@ -184,7 +185,7 @@ dependencies: - tomli=2.0.1=pyhd8ed1ab_0 - tornado=6.4=py310hb372a2b_0 - traitlets=5.14.1=pyhd8ed1ab_0 - - typing_extensions=4.9.0=pyha770c72_0 + - typing_extensions=4.10.0=pyha770c72_0 - unicodedata2=15.1.0=py310h6729b98_0 - wcwidth=0.2.13=pyhd8ed1ab_0 - wheel=0.42.0=pyhd8ed1ab_0 @@ -200,7 +201,7 @@ dependencies: - cypari2=2.1.4=py310hc7df965_2 - fonttools=4.49.0=py310hb372a2b_0 - importlib-metadata=7.0.1=pyha770c72_0 - - importlib_resources=6.1.1=pyhd8ed1ab_0 + - importlib_resources=6.1.2=pyhd8ed1ab_0 - jedi=0.19.1=pyhd8ed1ab_0 - jinja2=3.1.3=pyhd8ed1ab_0 - jupyter_core=5.7.1=py310h2ec42d9_0 @@ -240,7 +241,7 @@ dependencies: - scipy=1.11.4=py310h3f1db6d_0 - blas=2.120=openblas - compiler-rt=16.0.6=ha38d28d_2 - - ipykernel=6.29.2=pyh3cd1d5f_0 + - ipykernel=6.29.3=pyh3cd1d5f_0 - ipywidgets=8.1.2=pyhd8ed1ab_0 - matplotlib-base=3.8.3=py310hec49e92_0 - rw=0.9=h10d778d_1 diff --git a/src/environment-dev-3.11-linux-aarch64.yml b/src/environment-dev-3.11-linux-aarch64.yml index fe86f8dc073..d667e408a97 100644 --- a/src/environment-dev-3.11-linux-aarch64.yml +++ b/src/environment-dev-3.11-linux-aarch64.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: linux-aarch64 -# input_hash: f23322956626c2c087339d2e4862e1f2895f38e65ffa5e7d49e830d9edf14ab3 +# input_hash: 45f678a59b7f58ffd12a8db1317b92d392de36eb0b635d3f1a4e6a2d9f81ad49 channels: - conda-forge @@ -21,6 +21,7 @@ dependencies: - pari-galdata=0.0.20180411=0 - pari-seadata-small=0.0.20090618=0 - python_abi=3.11=4_cp311 + - sagemath-db-graphs=20210214=hd8ed1ab_0 - sagemath-db-polytopes=20170220=1 - tzdata=2024a=h0c530f3_0 - fonts-conda-forge=1=0 @@ -193,7 +194,7 @@ dependencies: - tomli=2.0.1=pyhd8ed1ab_0 - tornado=6.4=py311hc8f2f60_0 - traitlets=5.14.1=pyhd8ed1ab_0 - - typing_extensions=4.9.0=pyha770c72_0 + - typing_extensions=4.10.0=pyha770c72_0 - wcwidth=0.2.13=pyhd8ed1ab_0 - wheel=0.42.0=pyhd8ed1ab_0 - widgetsnbextension=4.0.10=pyhd8ed1ab_0 @@ -209,7 +210,7 @@ dependencies: - cypari2=2.1.4=py311h5ab95f0_2 - fonttools=4.49.0=py311hcd402e7_0 - importlib-metadata=7.0.1=pyha770c72_0 - - importlib_resources=6.1.1=pyhd8ed1ab_0 + - importlib_resources=6.1.2=pyhd8ed1ab_0 - jedi=0.19.1=pyhd8ed1ab_0 - jinja2=3.1.3=pyhd8ed1ab_0 - jupyter_core=5.7.1=py311hec3470c_0 @@ -248,7 +249,7 @@ dependencies: - linbox=1.6.3=h681a5ee_8 - scipy=1.11.3=py311h69ead2a_1 - blas=2.120=openblas - - ipykernel=6.29.2=pyhd33586a_0 + - ipykernel=6.29.3=pyhd33586a_0 - ipywidgets=8.1.2=pyhd8ed1ab_0 - matplotlib-base=3.8.3=py311h1f11223_0 - rw=0.9=h31becfc_1 diff --git a/src/environment-dev-3.11-linux.yml b/src/environment-dev-3.11-linux.yml index 5164f74509a..53f46ae4b38 100644 --- a/src/environment-dev-3.11-linux.yml +++ b/src/environment-dev-3.11-linux.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: a1a381c74d58a23ad9ee5daf9d4072ad14102b70211f88a7ae3ff6db4e40388d +# input_hash: 131813046790ed35707f37ae1e8616c8c3c6fe4fec8ee5c87441e20bc6b42900 channels: - conda-forge @@ -21,6 +21,7 @@ dependencies: - pari-galdata=0.0.20180411=0 - pari-seadata-small=0.0.20090618=0 - python_abi=3.11=4_cp311 + - sagemath-db-graphs=20210214=hd8ed1ab_0 - sagemath-db-polytopes=20170220=1 - tzdata=2024a=h0c530f3_0 - fonts-conda-forge=1=0 @@ -166,7 +167,7 @@ dependencies: - nest-asyncio=1.6.0=pyhd8ed1ab_0 - networkx=3.2.1=pyhd8ed1ab_0 - openblas=0.3.25=pthreads_h7a3da1a_0 - - openjpeg=2.5.0=h488ebb8_3 + - openjpeg=2.5.1=h488ebb8_0 - packaging=23.2=pyhd8ed1ab_0 - parso=0.8.3=pyhd8ed1ab_0 - pickleshare=0.7.5=py_1003 @@ -193,7 +194,7 @@ dependencies: - tomli=2.0.1=pyhd8ed1ab_0 - tornado=6.4=py311h459d7ec_0 - traitlets=5.14.1=pyhd8ed1ab_0 - - typing_extensions=4.9.0=pyha770c72_0 + - typing_extensions=4.10.0=pyha770c72_0 - wcwidth=0.2.13=pyhd8ed1ab_0 - wheel=0.42.0=pyhd8ed1ab_0 - widgetsnbextension=4.0.10=pyhd8ed1ab_0 @@ -209,7 +210,7 @@ dependencies: - cypari2=2.1.4=py311hd2352ae_2 - fonttools=4.49.0=py311h459d7ec_0 - importlib-metadata=7.0.1=pyha770c72_0 - - importlib_resources=6.1.1=pyhd8ed1ab_0 + - importlib_resources=6.1.2=pyhd8ed1ab_0 - jedi=0.19.1=pyhd8ed1ab_0 - jinja2=3.1.3=pyhd8ed1ab_0 - jupyter_core=5.7.1=py311h38be061_0 @@ -248,7 +249,7 @@ dependencies: - linbox=1.6.3=ha329b40_8 - scipy=1.11.4=py311h64a7726_0 - blas=2.120=openblas - - ipykernel=6.29.2=pyhd33586a_0 + - ipykernel=6.29.3=pyhd33586a_0 - ipywidgets=8.1.2=pyhd8ed1ab_0 - matplotlib-base=3.8.3=py311h54ef318_0 - rw=0.9=hd590300_1 diff --git a/src/environment-dev-3.11-macos-arm64.yml b/src/environment-dev-3.11-macos-arm64.yml index 593dd44f28d..ca85b92d85d 100644 --- a/src/environment-dev-3.11-macos-arm64.yml +++ b/src/environment-dev-3.11-macos-arm64.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: osx-arm64 -# input_hash: 90a352d0687b860cdaab1f5667655093a65821493f062858988871fa1e5b36d4 +# input_hash: 6cd16abb2f343326bab3045c799d7cc2022f766a8686e1c635c4d025148a7ad7 channels: - conda-forge @@ -37,6 +37,7 @@ dependencies: - planarity=3.0.0.5=h27ca646_1002 - pthread-stubs=0.4=h27ca646_1001 - python_abi=3.11=4_cp311 + - sagemath-db-graphs=20210214=hd8ed1ab_0 - sagemath-db-polytopes=20170220=1 - tzdata=2024a=h0c530f3_0 - xorg-libxau=1.0.11=hb547adb_0 @@ -186,7 +187,7 @@ dependencies: - tomli=2.0.1=pyhd8ed1ab_0 - tornado=6.4=py311h05b510d_0 - traitlets=5.14.1=pyhd8ed1ab_0 - - typing_extensions=4.9.0=pyha770c72_0 + - typing_extensions=4.10.0=pyha770c72_0 - wcwidth=0.2.13=pyhd8ed1ab_0 - wheel=0.42.0=pyhd8ed1ab_0 - widgetsnbextension=4.0.10=pyhd8ed1ab_0 @@ -201,7 +202,7 @@ dependencies: - cypari2=2.1.4=py311h2c49a9d_2 - fonttools=4.48.1=py311h05b510d_0 - importlib-metadata=7.0.1=pyha770c72_0 - - importlib_resources=6.1.1=pyhd8ed1ab_0 + - importlib_resources=6.1.2=pyhd8ed1ab_0 - jedi=0.19.1=pyhd8ed1ab_0 - jinja2=3.1.3=pyhd8ed1ab_0 - jupyter_core=5.7.1=py311h267d04e_0 @@ -241,7 +242,7 @@ dependencies: - scipy=1.11.4=py311h2b215a9_0 - blas=2.120=openblas - compiler-rt=16.0.6=h3808999_2 - - ipykernel=6.29.2=pyh3cd1d5f_0 + - ipykernel=6.29.3=pyh3cd1d5f_0 - ipywidgets=8.1.2=pyhd8ed1ab_0 - matplotlib-base=3.8.3=py311hb58f1d1_0 - rw=0.9=h93a5062_1 diff --git a/src/environment-dev-3.11-macos.yml b/src/environment-dev-3.11-macos.yml index 999d3c85607..a9808b10e0f 100644 --- a/src/environment-dev-3.11-macos.yml +++ b/src/environment-dev-3.11-macos.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: osx-64 -# input_hash: 09b348052e2ba9a58c90b1896daccb8c1912b40fe5b3d4e440a9d2e0864f40ac +# input_hash: d8bde0fbb628635b71cb5ada5982ef92fcb5d39ef016f4153960cc3754b4f9ca channels: - conda-forge @@ -37,6 +37,7 @@ dependencies: - planarity=3.0.0.5=hbcb3906_1002 - pthread-stubs=0.4=hc929b4f_1001 - python_abi=3.11=4_cp311 + - sagemath-db-graphs=20210214=hd8ed1ab_0 - sagemath-db-polytopes=20170220=1 - tzdata=2024a=h0c530f3_0 - xorg-libxau=1.0.11=h0dc2134_0 @@ -110,7 +111,7 @@ dependencies: - m4rie=20150908=h3f75d11_1001 - mpc=1.3.1=h81bd1dd_0 - mpfi=1.5.4=h52b28e3_1001 - - openjpeg=2.5.0=ha4da562_3 + - openjpeg=2.5.1=h7310d3a_0 - pari=2.15.4=h93f793c_2_pthread - ppl=1.2=ha60d53e_1006 - python=3.11.8=h9f0c242_0_cpython @@ -184,7 +185,7 @@ dependencies: - tomli=2.0.1=pyhd8ed1ab_0 - tornado=6.4=py311he705e18_0 - traitlets=5.14.1=pyhd8ed1ab_0 - - typing_extensions=4.9.0=pyha770c72_0 + - typing_extensions=4.10.0=pyha770c72_0 - wcwidth=0.2.13=pyhd8ed1ab_0 - wheel=0.42.0=pyhd8ed1ab_0 - widgetsnbextension=4.0.10=pyhd8ed1ab_0 @@ -199,7 +200,7 @@ dependencies: - cypari2=2.1.4=py311h4fde0ae_2 - fonttools=4.49.0=py311he705e18_0 - importlib-metadata=7.0.1=pyha770c72_0 - - importlib_resources=6.1.1=pyhd8ed1ab_0 + - importlib_resources=6.1.2=pyhd8ed1ab_0 - jedi=0.19.1=pyhd8ed1ab_0 - jinja2=3.1.3=pyhd8ed1ab_0 - jupyter_core=5.7.1=py311h6eed73b_0 @@ -239,7 +240,7 @@ dependencies: - scipy=1.11.4=py311he0bea55_0 - blas=2.120=openblas - compiler-rt=16.0.6=ha38d28d_2 - - ipykernel=6.29.2=pyh3cd1d5f_0 + - ipykernel=6.29.3=pyh3cd1d5f_0 - ipywidgets=8.1.2=pyhd8ed1ab_0 - matplotlib-base=3.8.3=py311h6ff1f5f_0 - rw=0.9=h10d778d_1 diff --git a/src/environment-dev-3.9-linux-aarch64.yml b/src/environment-dev-3.9-linux-aarch64.yml index e7d8de09970..c67f1d0d6e7 100644 --- a/src/environment-dev-3.9-linux-aarch64.yml +++ b/src/environment-dev-3.9-linux-aarch64.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: linux-aarch64 -# input_hash: 16af34b4de2b50d62c833643bd3d58877a43c830fb880d8c90179f5e7f6f5f0b +# input_hash: 60a60dddebea58f91ed45c9043872bd17185a4d03bd12c01192ff2c685dc2ed9 channels: - conda-forge @@ -21,6 +21,7 @@ dependencies: - pari-galdata=0.0.20180411=0 - pari-seadata-small=0.0.20090618=0 - python_abi=3.9=4_cp39 + - sagemath-db-graphs=20210214=hd8ed1ab_0 - sagemath-db-polytopes=20170220=1 - tzdata=2024a=h0c530f3_0 - fonts-conda-forge=1=0 @@ -193,7 +194,7 @@ dependencies: - tomli=2.0.1=pyhd8ed1ab_0 - tornado=6.4=py39h7cc1d5f_0 - traitlets=5.14.1=pyhd8ed1ab_0 - - typing_extensions=4.9.0=pyha770c72_0 + - typing_extensions=4.10.0=pyha770c72_0 - unicodedata2=15.1.0=py39h898b7ef_0 - wcwidth=0.2.13=pyhd8ed1ab_0 - wheel=0.42.0=pyhd8ed1ab_0 @@ -210,7 +211,7 @@ dependencies: - cypari2=2.1.4=py39h532d932_2 - fonttools=4.49.0=py39h898b7ef_0 - importlib-metadata=7.0.1=pyha770c72_0 - - importlib_resources=6.1.1=pyhd8ed1ab_0 + - importlib_resources=6.1.2=pyhd8ed1ab_0 - jedi=0.19.1=pyhd8ed1ab_0 - jinja2=3.1.3=pyhd8ed1ab_0 - jupyter_core=5.7.1=py39h4420490_0 @@ -233,7 +234,7 @@ dependencies: - fflas-ffpack=2.4.3=hf104d39_2 - gsl=2.7=h294027d_0 - iml=1.0.5=h9076c59_1003 - - importlib-resources=6.1.1=pyhd8ed1ab_0 + - importlib-resources=6.1.2=pyhd8ed1ab_0 - importlib_metadata=7.0.1=hd8ed1ab_0 - liblapacke=3.9.0=20_linuxaarch64_openblas - numpy=1.26.4=py39h91c28bb_0 @@ -250,7 +251,7 @@ dependencies: - linbox=1.6.3=h681a5ee_8 - scipy=1.11.3=py39h91c28bb_1 - blas=2.120=openblas - - ipykernel=6.29.2=pyhd33586a_0 + - ipykernel=6.29.3=pyhd33586a_0 - ipywidgets=8.1.2=pyhd8ed1ab_0 - matplotlib-base=3.8.3=py39h8e43113_0 - rw=0.9=h31becfc_1 diff --git a/src/environment-dev-3.9-linux.yml b/src/environment-dev-3.9-linux.yml index 99537a2afb4..122b95357d2 100644 --- a/src/environment-dev-3.9-linux.yml +++ b/src/environment-dev-3.9-linux.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: 031f4d8edf18d6686fd81b8c2edfcb5d1881b2655ee8a3cf6c683104922fc2e4 +# input_hash: ec9c7e2e2fad65a6565a7e23adbe6ca9dec7bc5070f1b8c0a6d475397e171ed9 channels: - conda-forge @@ -21,6 +21,7 @@ dependencies: - pari-galdata=0.0.20180411=0 - pari-seadata-small=0.0.20090618=0 - python_abi=3.9=4_cp39 + - sagemath-db-graphs=20210214=hd8ed1ab_0 - sagemath-db-polytopes=20170220=1 - tzdata=2024a=h0c530f3_0 - fonts-conda-forge=1=0 @@ -166,7 +167,7 @@ dependencies: - nest-asyncio=1.6.0=pyhd8ed1ab_0 - networkx=3.2.1=pyhd8ed1ab_0 - openblas=0.3.25=pthreads_h7a3da1a_0 - - openjpeg=2.5.0=h488ebb8_3 + - openjpeg=2.5.1=h488ebb8_0 - packaging=23.2=pyhd8ed1ab_0 - parso=0.8.3=pyhd8ed1ab_0 - pickleshare=0.7.5=py_1003 @@ -193,7 +194,7 @@ dependencies: - tomli=2.0.1=pyhd8ed1ab_0 - tornado=6.4=py39hd1e30aa_0 - traitlets=5.14.1=pyhd8ed1ab_0 - - typing_extensions=4.9.0=pyha770c72_0 + - typing_extensions=4.10.0=pyha770c72_0 - unicodedata2=15.1.0=py39hd1e30aa_0 - wcwidth=0.2.13=pyhd8ed1ab_0 - wheel=0.42.0=pyhd8ed1ab_0 @@ -210,7 +211,7 @@ dependencies: - cypari2=2.1.4=py39h1698a45_2 - fonttools=4.49.0=py39hd1e30aa_0 - importlib-metadata=7.0.1=pyha770c72_0 - - importlib_resources=6.1.1=pyhd8ed1ab_0 + - importlib_resources=6.1.2=pyhd8ed1ab_0 - jedi=0.19.1=pyhd8ed1ab_0 - jinja2=3.1.3=pyhd8ed1ab_0 - jupyter_core=5.7.1=py39hf3d152e_0 @@ -233,7 +234,7 @@ dependencies: - fflas-ffpack=2.4.3=h912ac81_2 - gsl=2.7=he838d99_0 - iml=1.0.5=hd75c201_1003 - - importlib-resources=6.1.1=pyhd8ed1ab_0 + - importlib-resources=6.1.2=pyhd8ed1ab_0 - importlib_metadata=7.0.1=hd8ed1ab_0 - liblapacke=3.9.0=20_linux64_openblas - numpy=1.26.4=py39h474f0d3_0 @@ -250,7 +251,7 @@ dependencies: - linbox=1.6.3=ha329b40_8 - scipy=1.11.4=py39h474f0d3_0 - blas=2.120=openblas - - ipykernel=6.29.2=pyhd33586a_0 + - ipykernel=6.29.3=pyhd33586a_0 - ipywidgets=8.1.2=pyhd8ed1ab_0 - matplotlib-base=3.8.3=py39he9076e7_0 - rw=0.9=hd590300_1 diff --git a/src/environment-dev-3.9-macos-arm64.yml b/src/environment-dev-3.9-macos-arm64.yml index 8304a634460..2b8475411e1 100644 --- a/src/environment-dev-3.9-macos-arm64.yml +++ b/src/environment-dev-3.9-macos-arm64.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: osx-arm64 -# input_hash: cd8efffd92af22a81dc29af51b6a15eb9ab939994d68783107db2b991ab4be49 +# input_hash: 41c76c23262198741744bfd313d849e02fed31237e796a540f952c06035f684a channels: - conda-forge @@ -37,6 +37,7 @@ dependencies: - planarity=3.0.0.5=h27ca646_1002 - pthread-stubs=0.4=h27ca646_1001 - python_abi=3.9=4_cp39 + - sagemath-db-graphs=20210214=hd8ed1ab_0 - sagemath-db-polytopes=20170220=1 - tzdata=2024a=h0c530f3_0 - xorg-libxau=1.0.11=hb547adb_0 @@ -186,7 +187,7 @@ dependencies: - tomli=2.0.1=pyhd8ed1ab_0 - tornado=6.4=py39h17cfd9d_0 - traitlets=5.14.1=pyhd8ed1ab_0 - - typing_extensions=4.9.0=pyha770c72_0 + - typing_extensions=4.10.0=pyha770c72_0 - unicodedata2=15.1.0=py39h0f82c59_0 - wcwidth=0.2.13=pyhd8ed1ab_0 - wheel=0.42.0=pyhd8ed1ab_0 @@ -202,7 +203,7 @@ dependencies: - cypari2=2.1.4=py39h070b2a8_2 - fonttools=4.49.0=py39h17cfd9d_0 - importlib-metadata=7.0.1=pyha770c72_0 - - importlib_resources=6.1.1=pyhd8ed1ab_0 + - importlib_resources=6.1.2=pyhd8ed1ab_0 - jedi=0.19.1=pyhd8ed1ab_0 - jinja2=3.1.3=pyhd8ed1ab_0 - jupyter_core=5.7.1=py39h2804cbe_0 @@ -224,7 +225,7 @@ dependencies: - fflas-ffpack=2.4.3=h11f2abc_2 - gsl=2.7=h6e638da_0 - iml=1.0.5=hd52f0d1_1003 - - importlib-resources=6.1.1=pyhd8ed1ab_0 + - importlib-resources=6.1.2=pyhd8ed1ab_0 - importlib_metadata=7.0.1=hd8ed1ab_0 - liblapacke=3.9.0=20_osxarm64_openblas - numpy=1.26.4=py39h7aa2656_0 @@ -243,7 +244,7 @@ dependencies: - scipy=1.11.4=py39h36c428d_0 - blas=2.120=openblas - compiler-rt=16.0.6=h3808999_2 - - ipykernel=6.29.2=pyh3cd1d5f_0 + - ipykernel=6.29.3=pyh3cd1d5f_0 - ipywidgets=8.1.2=pyhd8ed1ab_0 - matplotlib-base=3.8.3=py39hbab7938_0 - rw=0.9=h93a5062_1 diff --git a/src/environment-dev-3.9-macos.yml b/src/environment-dev-3.9-macos.yml index 96704d1afaf..4a4c664693f 100644 --- a/src/environment-dev-3.9-macos.yml +++ b/src/environment-dev-3.9-macos.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: osx-64 -# input_hash: df7be9f6d5839ee864e7c3b5ec063109c8f1c78c9e33cb9e64d8f8844da97441 +# input_hash: a5ecc8418663b728d7279e3eaef8d4c1129a15a050227553bcbdf8d42cf648fd channels: - conda-forge @@ -37,6 +37,7 @@ dependencies: - planarity=3.0.0.5=hbcb3906_1002 - pthread-stubs=0.4=hc929b4f_1001 - python_abi=3.9=4_cp39 + - sagemath-db-graphs=20210214=hd8ed1ab_0 - sagemath-db-polytopes=20170220=1 - tzdata=2024a=h0c530f3_0 - xorg-libxau=1.0.11=h0dc2134_0 @@ -110,7 +111,7 @@ dependencies: - m4rie=20150908=h3f75d11_1001 - mpc=1.3.1=h81bd1dd_0 - mpfi=1.5.4=h52b28e3_1001 - - openjpeg=2.5.0=ha4da562_3 + - openjpeg=2.5.1=h7310d3a_0 - pari=2.15.4=h93f793c_2_pthread - ppl=1.2=ha60d53e_1006 - python=3.9.18=h7a9c478_1_cpython @@ -184,7 +185,7 @@ dependencies: - tomli=2.0.1=pyhd8ed1ab_0 - tornado=6.4=py39ha09f3b3_0 - traitlets=5.14.1=pyhd8ed1ab_0 - - typing_extensions=4.9.0=pyha770c72_0 + - typing_extensions=4.10.0=pyha770c72_0 - unicodedata2=15.1.0=py39hdc70f33_0 - wcwidth=0.2.13=pyhd8ed1ab_0 - wheel=0.42.0=pyhd8ed1ab_0 @@ -200,7 +201,7 @@ dependencies: - cypari2=2.1.4=py39hc0d7317_2 - fonttools=4.49.0=py39ha09f3b3_0 - importlib-metadata=7.0.1=pyha770c72_0 - - importlib_resources=6.1.1=pyhd8ed1ab_0 + - importlib_resources=6.1.2=pyhd8ed1ab_0 - jedi=0.19.1=pyhd8ed1ab_0 - jinja2=3.1.3=pyhd8ed1ab_0 - jupyter_core=5.7.1=py39h6e9494a_0 @@ -222,7 +223,7 @@ dependencies: - fflas-ffpack=2.4.3=h026fd7e_2 - gsl=2.7=h93259b0_0 - iml=1.0.5=h64b42ca_1003 - - importlib-resources=6.1.1=pyhd8ed1ab_0 + - importlib-resources=6.1.2=pyhd8ed1ab_0 - importlib_metadata=7.0.1=hd8ed1ab_0 - liblapacke=3.9.0=20_osx64_openblas - numpy=1.26.4=py39h28c39a1_0 @@ -241,7 +242,7 @@ dependencies: - scipy=1.11.4=py39ha321857_0 - blas=2.120=openblas - compiler-rt=16.0.6=ha38d28d_2 - - ipykernel=6.29.2=pyh3cd1d5f_0 + - ipykernel=6.29.3=pyh3cd1d5f_0 - ipywidgets=8.1.2=pyhd8ed1ab_0 - matplotlib-base=3.8.3=py39h7070ae8_0 - rw=0.9=h10d778d_1