From fb78e04d4c9d6e14a0ac8a27e278b6bdce574521 Mon Sep 17 00:00:00 2001 From: Tobias Diez Date: Mon, 24 Jul 2023 23:47:22 +0200 Subject: [PATCH 01/33] Use conda-lock for reproducible conda env --- .devcontainer/onCreate-conda.sh | 3 +- .github/workflows/ci-conda.yml | 9 +- .gitignore | 20 +- .gitpod.yml | 3 +- bootstrap-conda | 136 +++---- build/pkgs/cython/distros/conda.txt | 2 +- build/pkgs/matplotlib/distros/conda.txt | 2 +- build/pkgs/setuptools/distros/conda.txt | 2 +- build/pkgs/sphinx/distros/conda.txt | 2 +- environment-3.10-linux.yml | 226 +++++++++++ environment-3.10-macos.yml | 206 ++++++++++ environment-3.11-linux.yml | 226 +++++++++++ environment-3.11-macos.yml | 206 ++++++++++ environment-3.9-linux.yml | 226 +++++++++++ environment-3.9-macos.yml | 206 ++++++++++ src/doc/en/installation/conda.rst | 29 +- src/environment-3.10-linux.yml | 461 +++++++++++++++++++++++ src/environment-3.10-macos.yml | 398 ++++++++++++++++++++ src/environment-3.11-linux.yml | 461 +++++++++++++++++++++++ src/environment-3.11-macos.yml | 398 ++++++++++++++++++++ src/environment-3.9-linux.yml | 461 +++++++++++++++++++++++ src/environment-3.9-macos.yml | 398 ++++++++++++++++++++ src/environment-dev-3.11-linux.yml | 478 ++++++++++++++++++++++++ src/environment-dev-3.11-macos.yml | 414 ++++++++++++++++++++ src/pyproject.toml.m4 | 5 + 25 files changed, 4874 insertions(+), 104 deletions(-) create mode 100644 environment-3.10-linux.yml create mode 100644 environment-3.10-macos.yml create mode 100644 environment-3.11-linux.yml create mode 100644 environment-3.11-macos.yml create mode 100644 environment-3.9-linux.yml create mode 100644 environment-3.9-macos.yml create mode 100644 src/environment-3.10-linux.yml create mode 100644 src/environment-3.10-macos.yml create mode 100644 src/environment-3.11-linux.yml create mode 100644 src/environment-3.11-macos.yml create mode 100644 src/environment-3.9-linux.yml create mode 100644 src/environment-3.9-macos.yml create mode 100644 src/environment-dev-3.11-linux.yml create mode 100644 src/environment-dev-3.11-macos.yml diff --git a/.devcontainer/onCreate-conda.sh b/.devcontainer/onCreate-conda.sh index eaa045cd27b..94b3abe9ff8 100755 --- a/.devcontainer/onCreate-conda.sh +++ b/.devcontainer/onCreate-conda.sh @@ -2,9 +2,8 @@ set -e # Create conda environment -./bootstrap-conda conda install mamba -n base -c conda-forge -y -mamba env create --file src/environment-dev.yml || mamba env update --file src/environment-dev.yml +mamba env create --file src/environment-dev-3.11-linux.yml || mamba env update --file src/environment-dev-3.11-linux.yml conda init bash # Build sage diff --git a/.github/workflows/ci-conda.yml b/.github/workflows/ci-conda.yml index 2048d9c43ae..f35fe985a9a 100644 --- a/.github/workflows/ci-conda.yml +++ b/.github/workflows/ci-conda.yml @@ -20,7 +20,7 @@ concurrency: jobs: test: name: Conda - runs-on: ${{ matrix.os }} + runs-on: ${{ matrix.os }}-latest # Run on push, workflow dispatch and when certain labels are added if: | @@ -32,7 +32,7 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-latest, macos-latest] + os: [ubuntu, macos] python: ['3.9', '3.10', '3.11'] # Optional environment is disabled for now as its not yet working # environment: [environment, environment-optional] @@ -53,9 +53,6 @@ jobs: bash ~/miniconda.sh -b -p $HOME/miniconda echo "CONDA=$HOME/miniconda" >> $GITHUB_ENV - - name: Create conda environment files - run: ./bootstrap-conda - - name: Cache conda packages uses: actions/cache@v3 with: @@ -71,7 +68,7 @@ jobs: channels: conda-forge,defaults channel-priority: true activate-environment: sage-build - environment-file: src/${{ matrix.conda-env }}.yml + environment-file: src/${{ matrix.conda-env }}-${{ matrix.python }}-${{ matrix.os }}.yml - name: Print Conda environment shell: bash -l {0} diff --git a/.gitignore b/.gitignore index 0c1c9086cf7..f946ed4a56f 100644 --- a/.gitignore +++ b/.gitignore @@ -27,11 +27,21 @@ # no longer generated, but may still be in user worktrees /src/lib/pkgconfig -/environment.yml -/environment-optional.yml -/src/environment.yml -/src/environment-dev.yml -/src/environment-optional.yml +/environment-3.9.yml +/environment-3.10.yml +/environment-3.11.yml +/environment-optional-3.9.yml +/environment-optional-3.10.yml +/environment-optional-3.11.yml +/src/environment-3.9.yml +/src/environment-3.10.yml +/src/environment-3.11.yml +/src/environment-dev-3.9.yml +/src/environment-dev-3.10.yml +/src/environment-dev-3.11.yml +/src/environment-optional-3.9.yml +/src/environment-optional-3.10.yml +/src/environment-optional-3.11.yml /src/setup.cfg /src/requirements.txt diff --git a/.gitpod.yml b/.gitpod.yml index 52ac8d7184c..223e750bd63 100644 --- a/.gitpod.yml +++ b/.gitpod.yml @@ -7,8 +7,7 @@ tasks: - name: Setup # Create conda environment, then configure and build sage init: >- - ./bootstrap-conda - && mamba env create --file src/environment-dev.yml --prefix venv + && mamba env create --file src/environment-dev-3.11-linux.yml --prefix venv && conda config --append envs_dirs $(pwd) && conda activate $(pwd)/venv && ./bootstrap diff --git a/bootstrap-conda b/bootstrap-conda index ed4bb9e0d08..4e7f93343fc 100755 --- a/bootstrap-conda +++ b/bootstrap-conda @@ -51,72 +51,76 @@ for PKG_BASE in $(sage-package list --has-file distros/conda.txt --exclude _sage fi done echo >&2 $0:$LINENO: generate conda environment files -( - echo "name: sage-build" - echo "channels:" - echo " - conda-forge" - echo " - nodefaults" - echo "dependencies:" - for pkg in $SYSTEM_PACKAGES; do - echo " - $pkg" - done - echo " # Packages needed for ./bootstrap" - for pkg in $BOOTSTRAP_PACKAGES; do - echo " - $pkg" - done -) > environment.yml +for python_version in 3.9 3.10 3.11; do + ( + echo "name: sage-build" + echo "channels:" + echo " - conda-forge" + echo " - nodefaults" + echo "dependencies:" + echo " - python=$python_version" + for pkg in $SYSTEM_PACKAGES; do + echo " - $pkg" + done + echo " # Packages needed for ./bootstrap" + for pkg in $BOOTSTRAP_PACKAGES; do + echo " - $pkg" + done + ) > environment-$python_version.yml + ( + sed 's/name: sage-build/name: sage/' environment-$python_version.yml + echo " # Additional packages providing all dependencies for the Sage library" + for pkg in $SAGELIB_SYSTEM_PACKAGES; do + echo " - $pkg" + done + ) > src/environment-$python_version.yml + ( + sed 's/name: sage/name: sage-dev/' src/environment-$python_version.yml + echo " # Additional dev tools" + for pkg in $DEVELOP_SYSTEM_PACKAGES; do + echo " - $pkg" + done + ) > src/environment-dev-$python_version.yml -( - sed 's/name: sage-build/name: sage/' environment.yml - echo " # Additional packages providing all dependencies for the Sage library" - for pkg in $SAGELIB_SYSTEM_PACKAGES; do - echo " - $pkg" - done -) > src/environment.yml + ( + cat environment-$python_version.yml + echo " # optional packages" + for pkg in $OPTIONAL_SYSTEM_PACKAGES; do + echo " - $pkg" + done + ) > environment-optional-$python_version.yml -( - sed 's/name: sage/name: sage-dev/' src/environment.yml - echo " # Additional dev tools" - for pkg in $DEVELOP_SYSTEM_PACKAGES; do - echo " - $pkg" - done -) > src/environment-dev.yml - -( - cat environment.yml - echo " # optional packages" - for pkg in $OPTIONAL_SYSTEM_PACKAGES; do - echo " - $pkg" - done -) > environment-optional.yml + ( + cat src/environment-$python_version.yml + echo " # optional packages" + for pkg in $OPTIONAL_SYSTEM_PACKAGES $SAGELIB_OPTIONAL_SYSTEM_PACKAGES; do + echo " - $pkg" + done + ) > src/environment-optional-$python_version.yml + ( + echo >&4 " - pip:" + echo >&5 " - pip:" + for PKG_BASE in $((sage-package list :standard: :optional: --has-file requirements.txt --no-file distros/conda.txt --no-file src; sage-package list :standard: :optional: --has-file install-requires.txt --no-file requirements.txt --no-file distros/conda.txt --no-file src) | sort); do + PKG_SCRIPTS=build/pkgs/$PKG_BASE + SYSTEM_PACKAGES_FILE=$PKG_SCRIPTS/requirements.txt + if [ ! -f $SYSTEM_PACKAGES_FILE ]; then + SYSTEM_PACKAGES_FILE=$PKG_SCRIPTS/install-requires.txt + fi + PKG_TYPE=$(cat $PKG_SCRIPTS/type) + if grep -q SAGERUNTIME $PKG_SCRIPTS/dependencies $PKG_SCRIPTS/dependencies_order_only 2>/dev/null; then + : # cannot install packages that depend on the Sage library + else + case "$PKG_BASE:$PKG_TYPE" in + $DEVELOP_SPKG_PATTERN:*) FD=4;; + *) FD=5;; + esac + ${STRIP_COMMENTS} $SYSTEM_PACKAGES_FILE | while read -r line; do + [ -n "$line" ] && echo >&$FD " - $line" + done + fi + done + # Currently, there are no dev-python packages, so we do not write an empty pip section + #) 4>> src/environment-dev-$python_version.yml 5>> src/environment-optional-$python_version.yml + ) 4>> /dev/null 5>> src/environment-optional-$python_version.yml +done -( - cat src/environment.yml - echo " # optional packages" - for pkg in $OPTIONAL_SYSTEM_PACKAGES $SAGELIB_OPTIONAL_SYSTEM_PACKAGES; do - echo " - $pkg" - done -) > src/environment-optional.yml -( - echo >&4 " - pip:" - echo >&5 " - pip:" - for PKG_BASE in $((sage-package list :standard: :optional: --has-file requirements.txt --no-file distros/conda.txt --no-file src; sage-package list :standard: :optional: --has-file install-requires.txt --no-file requirements.txt --no-file distros/conda.txt --no-file src) | sort); do - PKG_SCRIPTS=build/pkgs/$PKG_BASE - SYSTEM_PACKAGES_FILE=$PKG_SCRIPTS/requirements.txt - if [ ! -f $SYSTEM_PACKAGES_FILE ]; then - SYSTEM_PACKAGES_FILE=$PKG_SCRIPTS/install-requires.txt - fi - PKG_TYPE=$(cat $PKG_SCRIPTS/type) - if grep -q SAGERUNTIME $PKG_SCRIPTS/dependencies $PKG_SCRIPTS/dependencies_order_only 2>/dev/null; then - : # cannot install packages that depend on the Sage library - else - case "$PKG_BASE:$PKG_TYPE" in - $DEVELOP_SPKG_PATTERN:*) FD=4;; - *) FD=5;; - esac - ${STRIP_COMMENTS} $SYSTEM_PACKAGES_FILE | while read -r line; do - [ -n "$line" ] && echo >&$FD " - $line" - done - fi - done -) 4>> src/environment-dev.yml 5>> src/environment-optional.yml diff --git a/build/pkgs/cython/distros/conda.txt b/build/pkgs/cython/distros/conda.txt index f6629e02456..3cb7796bded 100644 --- a/build/pkgs/cython/distros/conda.txt +++ b/build/pkgs/cython/distros/conda.txt @@ -1 +1 @@ -cython +cython<3.0.0 diff --git a/build/pkgs/matplotlib/distros/conda.txt b/build/pkgs/matplotlib/distros/conda.txt index 8b3901c7c9a..9fdcdfeb47f 100644 --- a/build/pkgs/matplotlib/distros/conda.txt +++ b/build/pkgs/matplotlib/distros/conda.txt @@ -1,2 +1,2 @@ # Trac #33642: For unknown reasons, without the version constraint, conda installs only 3.3.2 -"matplotlib>=3.5.1" +matplotlib>=3.5.1 diff --git a/build/pkgs/setuptools/distros/conda.txt b/build/pkgs/setuptools/distros/conda.txt index 2602d0f6344..36ade6db338 100644 --- a/build/pkgs/setuptools/distros/conda.txt +++ b/build/pkgs/setuptools/distros/conda.txt @@ -1,4 +1,4 @@ # Set this bound until https://github.com/sagemath/sage/issues/34209 adds support for PEP660 editable builds # By setting this version bound, we avoid having to include the following in our installation instructions. # export SETUPTOOLS_ENABLE_FEATURES=legacy-editable -"setuptools<64" +setuptools<64 diff --git a/build/pkgs/sphinx/distros/conda.txt b/build/pkgs/sphinx/distros/conda.txt index 596885d6456..667fc316a45 100644 --- a/build/pkgs/sphinx/distros/conda.txt +++ b/build/pkgs/sphinx/distros/conda.txt @@ -1 +1 @@ -sphinx<8,>=5.2 +sphinx>=5.2 diff --git a/environment-3.10-linux.yml b/environment-3.10-linux.yml new file mode 100644 index 00000000000..a4e0f79b00d --- /dev/null +++ b/environment-3.10-linux.yml @@ -0,0 +1,226 @@ +# Generated by conda-lock. +# platform: linux-64 +# input_hash: 3e531235a513060f63b991c223aa35c0cb0c16aef417e93c3df677572197bc24 + +channels: + - conda-forge +dependencies: + - _libgcc_mutex=0.1=conda_forge + - _r-mutex=1.0.1=anacondar_1 + - ca-certificates=2023.7.22=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=hab24e00_0 + - kernel-headers_linux-64=2.6.32=he073ed8_16 + - ld_impl_linux-64=2.40=h41732ed_0 + - libgcc-devel_linux-64=12.3.0=h8bca6fd_0 + - libgfortran5=13.1.0=h15d22d2_0 + - libstdcxx-devel_linux-64=12.3.0=h8bca6fd_0 + - libstdcxx-ng=13.1.0=hfd8a6a1_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 + - python_abi=3.11=3_cp311 + - tzdata=2023c=h71feb2d_0 + - fonts-conda-forge=1=0 + - libgfortran-ng=13.1.0=h69a702a_0 + - libgomp=13.1.0=he5830b7_0 + - pari-seadata=0.0.20090618=0 + - sysroot_linux-64=2.12=he073ed8_16 + - binutils_impl_linux-64=2.40=hf600244_0 + - fonts-conda-ecosystem=1=0 + - binutils=2.40=hdd6e379_0 + - binutils_linux-64=2.40=hbdbef99_1 + - _openmp_mutex=4.5=2_kmp_llvm + - libgcc-ng=13.1.0=he5830b7_0 + - bc=1.07.1=h7f98852_0 + - bdw-gc=8.0.6=h4bd325d_0 + - bzip2=1.0.8=h7f98852_4 + - c-ares=1.19.1=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.2.1=h58526e2_0 + - graphite2=1.3.13=h58526e2_1001 + - icu=72.1=hcb278e6_0 + - keyutils=1.6.1=h166bdaf_0 + - lerc=4.0.0=h27087fc_0 + - libatomic_ops=7.6.14=h166bdaf_0 + - libbraiding=1.1=h58526e2_0 + - libdeflate=1.18=h0b41bf4_0 + - libev=4.33=h516909a_1 + - libexpat=2.5.0=hcb278e6_1 + - libffi=3.4.2=h7f98852_5 + - libiconv=1.17=h166bdaf_0 + - libjpeg-turbo=2.1.5.1=h0b41bf4_0 + - libnsl=2.0.0=h7f98852_0 + - libopenblas=0.3.23=pthreads_h80387f5_0 + - libsanitizer=12.3.0=h0f45ef3_0 + - libsodium=1.0.18=h36c2ea0_1 + - libtool=2.4.7=h27087fc_0 + - libuuid=2.38.1=h0b41bf4_0 + - libuv=1.44.2=h166bdaf_0 + - libwebp-base=1.3.1=hd590300_0 + - libzlib=1.2.13=hd590300_5 + - lrcalc=2.1=h27087fc_5 + - m4=1.4.18=h516909a_1001 + - make=4.3=hd18ef5c_1 + - metis=5.1.1=h59595ed_0 + - nauty=2.7.2=h7f98852_0 + - ncurses=6.4=hcb278e6_0 + - ninja=1.11.1=h924138e_0 + - openssl=3.1.1=hd590300_1 + - palp=2.20=h36c2ea0_0 + - patch=2.7.6=h7f98852_1002 + - pixman=0.40.0=h36c2ea0_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 + - qd=2.3.22=h2cc385e_1004 + - qhull=2020.2=h4bd325d_2 + - rhash=1.4.3=h166bdaf_0 + - sed=4.8=he412f7d_0 + - symmetrica=3.0.1=hcb278e6_0 + - xorg-kbproto=1.0.7=h7f98852_1002 + - xorg-libice=1.0.10=h7f98852_0 + - xorg-libxau=1.0.11=hd590300_0 + - xorg-libxdmcp=1.1.3=h7f98852_0 + - xorg-renderproto=0.11.1=h7f98852_1002 + - xorg-xextproto=7.3.0=h0b41bf4_1003 + - xorg-xproto=7.0.31=h7f98852_1007 + - xz=5.2.6=h166bdaf_0 + - 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_0 + - givaro=4.1.1=h192cbe9_1 + - glpk=5.0=h445213a_0 + - libblas=3.9.0=17_linux64_openblas + - libedit=3.1.20191231=he28a2e2_2 + - libhomfly=1.02r6=h36c2ea0_0 + - libnghttp2=1.52.0=h61bc06f_0 + - libpng=1.6.39=h753d276_0 + - libsqlite=3.42.0=h2797004_0 + - libssh2=1.11.0=h0841786_0 + - libxcb=1.15=h0b41bf4_0 + - libxml2=2.10.4=hfdac1af_0 + - mpfr=4.2.0=hb012696_0 + - ntl=11.4.3=hef3c4d3_1 + - openblas=0.3.23=pthreads_h855a84d_0 + - pcre2=10.40=hc3806b6_0 + - perl=5.32.1=4_hd590300_perl5 + - primecount=7.9=hcb278e6_0 + - readline=8.2=h8228510_1 + - tar=1.34=hb2e2bae_1 + - tk=8.6.12=h27826a3_0 + - xorg-libsm=1.2.3=hd9c2040_1000 + - zeromq=4.3.4=h9c3ff4c_1 + - zlib=1.2.13=hd590300_5 + - zstd=1.5.2=hfc55251_7 + - autoconf=2.71=pl5321h2b4cb7a_1 + - boost-cpp=1.82.0=he19a28c_1 + - bwidget=1.9.14=ha770c72_1 + - ecl=21.2.1=h9d73b02_2 + - fplll=5.4.4=h8780c30_0 + - freetype=2.12.1=hca18f0e_1 + - gcc=12.3.0=h8d2909c_1 + - gcc_linux-64=12.3.0=h76fc315_1 + - gfan=0.6.2=hb86e20a_1003 + - gfortran_impl_linux-64=12.3.0=hfcedea8_0 + - gxx_impl_linux-64=12.3.0=he2b93b0_0 + - krb5=1.20.1=h81ceb04_0 + - libcblas=3.9.0=17_linux64_openblas + - libflint=2.9.0=h2f819a4_ntl_100 + - libglib=2.76.4=hebfc3b9_0 + - libhwloc=2.9.1=hd6dc26d_0 + - liblapack=3.9.0=17_linux64_openblas + - libtiff=4.5.1=h8b53f26_0 + - llvm-openmp=16.0.6=h4dfa4b3_0 + - m4ri=20140914=h7ca028e_1005 + - mpc=1.3.1=hfe3b2da_0 + - mpfi=1.5.4=h9f54685_1001 + - pari=2.15.4=h4d4ae9b_2_pthread + - ppl=1.2=h6ec01c2_1006 + - python=3.11.4=hab00c5b_0_cpython + - sqlite=3.42.0=h2c6b66d_0 + - tachyon=0.99b6=0 + - texinfo=7.0=pl5321h0f457ee_0 + - tktable=2.10=hb7b940f_3 + - xorg-libx11=1.8.6=h8ee46fc_0 + - appdirs=1.4.4=pyh9f0ad1d_0 + - arb=2.23.0=h44d021b_0 + - arpack=3.7.0=hdefa2d7_2 + - automake=1.16.5=pl5321ha770c72_0 + - c-compiler=1.6.0=hd590300_0 + - cachetools=5.3.1=pyhd8ed1ab_0 + - chardet=5.1.0=py311h38be061_0 + - colorama=0.4.6=pyhd8ed1ab_0 + - distlib=0.3.7=pyhd8ed1ab_0 + - eclib=20230424=hdef1efb_0 + - fflas-ffpack=2.4.3=h912ac81_2 + - filelock=3.12.2=pyhd8ed1ab_0 + - fontconfig=2.14.2=h14ed4e7_0 + - gfortran=12.3.0=h499e0f7_1 + - gfortran_linux-64=12.3.0=h7fe76b4_1 + - gsl=2.7=he838d99_0 + - gxx=12.3.0=h8d2909c_1 + - gxx_linux-64=12.3.0=h8a814eb_1 + - iml=1.0.5=hd75c201_1003 + - lcalc=2.0.5=h6a8a7c6_1 + - libbrial=1.2.12=h138cd66_0 + - libcurl=8.1.2=h409715c_0 + - liblapacke=3.9.0=17_linux64_openblas + - libwebp=1.3.1=hbf2b3c1_0 + - m4rie=20150908=h7ca028e_1001 + - markupsafe=2.1.3=py311h459d7ec_0 + - maxima=5.45.0=h9d73b02_3 + - packaging=23.1=pyhd8ed1ab_0 + - pluggy=1.2.0=pyhd8ed1ab_0 + - pycparser=2.21=pyhd8ed1ab_0 + - pytz=2023.3=pyhd8ed1ab_0 + - simplegeneric=0.8.1=py_1 + - singular=4.2.1.p3=h1ea75ed_2 + - sympow=2.023.6=hc6ab17c_3 + - tbb=2021.9.0=hf52228f_0 + - toml=0.10.2=pyhd8ed1ab_0 + - tomli=2.0.1=pyhd8ed1ab_0 + - typing_extensions=4.7.1=pyha770c72_0 + - tzlocal=5.0.1=py311h38be061_0 + - xorg-libxext=1.3.4=h0b41bf4_2 + - xorg-libxrender=0.9.11=hd590300_0 + - xorg-libxt=1.3.0=hd590300_0 + - zipp=3.16.2=pyhd8ed1ab_0 + - blas-devel=3.9.0=17_linux64_openblas + - brial=1.2.12=pyha3edaa6_0 + - cairo=1.16.0=hbbf8b49_1016 + - cffi=1.15.1=py311h409f033_3 + - cmake=3.26.4=hcfe8598_0 + - curl=8.1.2=h409715c_0 + - cxx-compiler=1.6.0=h00ab1b0_0 + - fortran-compiler=1.6.0=heb67821_0 + - giac=1.9.0.21=h673759e_1 + - importlib-metadata=6.8.0=pyha770c72_0 + - jinja2=3.1.2=pyhd8ed1ab_1 + - libgd=2.3.3=hfa28ad5_6 + - linbox=1.6.3=h9d78c56_7 + - pyproject-api=1.5.3=pyhd8ed1ab_0 + - suitesparse=5.10.1=h9e50725_1 + - typing-extensions=4.7.1=hd8ed1ab_0 + - blas=2.117=openblas + - compilers=1.6.0=ha770c72_0 + - harfbuzz=7.3.0=hdb3a94d_0 + - igraph=0.9.10=ha1f048c_1 + - importlib_metadata=6.8.0=hd8ed1ab_0 + - platformdirs=3.9.1=pyhd8ed1ab_0 + - pango=1.50.14=heaa33ce_1 + - rw=0.9=h7f98852_0 + - virtualenv=20.24.1=pyhd8ed1ab_0 + - r-base=4.3.0=h0fc540b_0 + - tox=4.6.4=pyhd8ed1ab_0 + - rpy2=3.5.11=py311r43h1f0f07a_2 diff --git a/environment-3.10-macos.yml b/environment-3.10-macos.yml new file mode 100644 index 00000000000..87cdcdc9a17 --- /dev/null +++ b/environment-3.10-macos.yml @@ -0,0 +1,206 @@ +# Generated by conda-lock. +# platform: osx-64 +# input_hash: 93b5ca84f839c4b1632c0eb98e3f5baa34ea1e607c329e9f4863fd87ae507dbe + +channels: + - conda-forge +dependencies: + - _r-mutex=1.0.1=anacondar_1 + - bc=1.07.1=h0d85af4_0 + - bzip2=1.0.8=h0d85af4_4 + - c-ares=1.19.1=h0dc2134_0 + - ca-certificates=2023.7.22=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=hab24e00_0 + - fribidi=1.0.10=hbcb3906_0 + - giflib=5.2.1=hb7f2c08_3 + - icu=72.1=h7336db1_0 + - libatomic_ops=7.6.14=hb7f2c08_0 + - libcxx=16.0.6=hd57cbcb_0 + - libdeflate=1.18=hac1461d_0 + - libev=4.33=haf1e3a3_1 + - libexpat=2.5.0=hf0c8a7f_1 + - libffi=3.4.2=h0d85af4_5 + - libgfortran-devel_osx-64=12.2.0=hf0fd499_32 + - libiconv=1.17=hac89ed1_0 + - libjpeg-turbo=2.1.5.1=hb7f2c08_0 + - libsodium=1.0.18=hbcb3906_1 + - libtool=2.4.7=hf0c8a7f_0 + - libuv=1.44.2=hac89ed1_0 + - libwebp-base=1.3.1=h0dc2134_0 + - libzlib=1.2.13=h8a1eda9_5 + - llvm-openmp=16.0.6=hff08bdf_0 + - m4=1.4.18=haf1e3a3_1001 + - make=4.3=h22f3db7_1 + - metis=5.1.1=he965462_0 + - nauty=2.7.2=h0d85af4_0 + - ncurses=6.4=hf0c8a7f_0 + - 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 + - pixman=0.40.0=hbcb3906_0 + - planarity=3.0.0.5=hbcb3906_1002 + - python_abi=3.11=3_cp311 + - rhash=1.4.3=hac89ed1_0 + - tzdata=2023c=h71feb2d_0 + - xz=5.2.6=h775f41a_0 + - 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.2.1=h2e338ed_0 + - graphite2=1.3.13=h2e338ed_1001 + - isl=0.25=hb486fe8_0 + - lerc=4.0.0=hb486fe8_0 + - libbraiding=1.1=h2e338ed_0 + - libedit=3.1.20191231=h0678c8f_2 + - libgfortran5=12.3.0=hbd3c1fe_1 + - libpng=1.6.39=ha978bb4_0 + - libsqlite=3.42.0=h58db7d2_0 + - libxml2=2.10.4=h554bb67_0 + - lrcalc=2.1=hf0c8a7f_5 + - ninja=1.11.1=hb8565cd_0 + - openssl=3.1.1=h8a1eda9_1 + - pari-seadata=0.0.20090618=0 + - pcre2=10.40=h1c4e4bc_0 + - pkg-config=0.29.2=ha3d46e9_1008 + - primesieve=11.0=hf0c8a7f_0 + - qhull=2020.2=h940c156_2 + - readline=8.2=h9e318b2_1 + - symmetrica=3.0.1=hf0c8a7f_0 + - tapi=1100.0.11=h9ce4665_0 + - tar=1.34=hcb2f6ea_1 + - tbb=2021.9.0=hb8565cd_0 + - texinfo=7.0=pl5321hc47821c_0 + - tk=8.6.12=h5dbffcc_0 + - zeromq=4.3.4=he49afe7_1 + - zlib=1.2.13=h8a1eda9_5 + - zstd=1.5.2=h829000d_7 + - automake=1.16.5=pl5321h694c41f_0 + - boost-cpp=1.82.0=hd754db5_1 + - bwidget=1.9.14=h694c41f_1 + - cddlib=1!0.94m=h0f52abe_0 + - ecl=21.2.1=hd029580_2 + - ecm=7.0.4=h343d7f2_1002 + - fonts-conda-ecosystem=1=0 + - freetype=2.12.1=h3f81eb7_1 + - givaro=4.1.1=h0a799c6_3 + - glpk=5.0=h3cb5acd_0 + - krb5=1.20.1=h049b76e_0 + - libgfortran=5.0.0=12_3_0_h97931a8_1 + - libglib=2.76.4=hc62aa5d_0 + - libhomfly=1.02r6=hc929b4f_0 + - libllvm15=15.0.7=h7001e86_1 + - libnghttp2=1.52.0=he2ab024_0 + - libssh2=1.11.0=hd019ec5_0 + - libtiff=4.5.1=hf955e92_0 + - m4ri=20140914=h3f75d11_1005 + - mpfr=4.2.0=h4f9bd69_0 + - ntl=11.4.3=h0ab3c2f_1 + - pari=2.15.4=h93f793c_2_pthread + - primecount=7.6=ha894c9a_0 + - python=3.11.4=h30d4d87_0_cpython + - sigtool=0.1.3=h88f4db0_0 + - sqlite=3.42.0=h2b0dec6_0 + - tachyon=0.99b6=0 + - tktable=2.10=h49f0cf7_3 + - appdirs=1.4.4=pyh9f0ad1d_0 + - cachetools=5.3.1=pyhd8ed1ab_0 + - chardet=5.1.0=py311h6eed73b_0 + - colorama=0.4.6=pyhd8ed1ab_0 + - distlib=0.3.7=pyhd8ed1ab_0 + - filelock=3.12.2=pyhd8ed1ab_0 + - fontconfig=2.14.2=h5bb23bf_0 + - gfan=0.6.2=hd793b56_1003 + - lcalc=2.0.5=h3a941db_1 + - ld64_osx-64=609=h8ce0179_13 + - libbrial=1.2.12=h8f704d5_0 + - libclang-cpp15=15.0.7=default_hdb78580_2 + - libcurl=8.1.2=hbee3ae8_0 + - libflint=2.9.0=hfd2f71f_ntl_100 + - libopenblas=0.3.23=openmp_h429af6e_0 + - libwebp=1.3.1=hc961f54_0 + - llvm-tools=15.0.7=h7001e86_1 + - m4rie=20150908=h3f75d11_1001 + - markupsafe=2.1.3=py311h2725bcf_0 + - maxima=5.45.0=hd029580_3 + - mpc=1.3.1=h81bd1dd_0 + - mpfi=1.5.4=h52b28e3_1001 + - packaging=23.1=pyhd8ed1ab_0 + - pluggy=1.2.0=pyhd8ed1ab_0 + - ppl=1.2=ha60d53e_1006 + - pycparser=2.21=pyhd8ed1ab_0 + - pytz=2023.3=pyhd8ed1ab_0 + - qd=2.3.22=h2beb688_1004 + - simplegeneric=0.8.1=py_1 + - sympow=2.023.6=h115ba6a_3 + - toml=0.10.2=pyhd8ed1ab_0 + - tomli=2.0.1=pyhd8ed1ab_0 + - typing_extensions=4.7.1=pyha770c72_0 + - tzlocal=5.0.1=py311h6eed73b_0 + - zipp=3.16.2=pyhd8ed1ab_0 + - arb=2.23.0=h905a977_0 + - brial=1.2.12=pyha3edaa6_0 + - cairo=1.16.0=h09dd18c_1016 + - cctools_osx-64=973.0.1=h48a5a9d_13 + - cffi=1.15.1=py311ha86e640_3 + - clang-15=15.0.7=default_hdb78580_2 + - cmake=3.26.4=hf40c264_0 + - curl=8.1.2=hbee3ae8_0 + - eclib=20230424=hd00e801_0 + - fplll=5.4.4=hdfdc905_0 + - gfortran_impl_osx-64=12.2.0=hdfd80ef_32 + - importlib-metadata=6.8.0=pyha770c72_0 + - jinja2=3.1.2=pyhd8ed1ab_1 + - ld64=609=ha91a046_13 + - libblas=3.9.0=17_osx64_openblas + - libgd=2.3.3=h3d994df_6 + - openblas=0.3.23=openmp_hbefa662_0 + - pyproject-api=1.5.3=pyhd8ed1ab_0 + - singular=4.2.1.p3=hac851df_2 + - typing-extensions=4.7.1=hd8ed1ab_0 + - cctools=973.0.1=hd9ad811_13 + - clang=15.0.7=h694c41f_2 + - harfbuzz=7.3.0=h413ba03_0 + - importlib_metadata=6.8.0=hd8ed1ab_0 + - libcblas=3.9.0=17_osx64_openblas + - liblapack=3.9.0=17_osx64_openblas + - platformdirs=3.9.1=pyhd8ed1ab_0 + - arpack=3.7.0=hefb7bc6_2 + - clangxx=15.0.7=default_hdb78580_2 + - fflas-ffpack=2.4.3=h026fd7e_2 + - gsl=2.7=h93259b0_0 + - iml=1.0.5=h64b42ca_1003 + - liblapacke=3.9.0=17_osx64_openblas + - pango=1.50.14=hbce5e75_1 + - suitesparse=5.10.1=h7aff33d_1 + - virtualenv=20.24.1=pyhd8ed1ab_0 + - blas-devel=3.9.0=17_osx64_openblas + - compiler-rt_osx-64=15.0.7=he1888fc_1 + - giac=1.9.0.21=h92f3f65_1 + - igraph=0.9.10=h6560ca6_1 + - linbox=1.6.3=hdde8d14_7 + - tox=4.6.4=pyhd8ed1ab_0 + - blas=2.117=openblas + - compiler-rt=15.0.7=he1888fc_1 + - rw=0.9=h0d85af4_0 + - clang_osx-64=15.0.7=h03d6864_3 + - c-compiler=1.6.0=h63c33a9_0 + - clangxx_osx-64=15.0.7=h2133e9c_3 + - gfortran_osx-64=12.2.0=h18f7dce_1 + - cxx-compiler=1.6.0=h1c7c39f_0 + - gfortran=12.2.0=h2c809b3_1 + - r-base=4.3.0=h7a6543b_0 + - fortran-compiler=1.6.0=h932d759_0 + - rpy2=3.5.11=py311r43h4a70a88_2 + - compilers=1.6.0=h694c41f_0 diff --git a/environment-3.11-linux.yml b/environment-3.11-linux.yml new file mode 100644 index 00000000000..a4e0f79b00d --- /dev/null +++ b/environment-3.11-linux.yml @@ -0,0 +1,226 @@ +# Generated by conda-lock. +# platform: linux-64 +# input_hash: 3e531235a513060f63b991c223aa35c0cb0c16aef417e93c3df677572197bc24 + +channels: + - conda-forge +dependencies: + - _libgcc_mutex=0.1=conda_forge + - _r-mutex=1.0.1=anacondar_1 + - ca-certificates=2023.7.22=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=hab24e00_0 + - kernel-headers_linux-64=2.6.32=he073ed8_16 + - ld_impl_linux-64=2.40=h41732ed_0 + - libgcc-devel_linux-64=12.3.0=h8bca6fd_0 + - libgfortran5=13.1.0=h15d22d2_0 + - libstdcxx-devel_linux-64=12.3.0=h8bca6fd_0 + - libstdcxx-ng=13.1.0=hfd8a6a1_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 + - python_abi=3.11=3_cp311 + - tzdata=2023c=h71feb2d_0 + - fonts-conda-forge=1=0 + - libgfortran-ng=13.1.0=h69a702a_0 + - libgomp=13.1.0=he5830b7_0 + - pari-seadata=0.0.20090618=0 + - sysroot_linux-64=2.12=he073ed8_16 + - binutils_impl_linux-64=2.40=hf600244_0 + - fonts-conda-ecosystem=1=0 + - binutils=2.40=hdd6e379_0 + - binutils_linux-64=2.40=hbdbef99_1 + - _openmp_mutex=4.5=2_kmp_llvm + - libgcc-ng=13.1.0=he5830b7_0 + - bc=1.07.1=h7f98852_0 + - bdw-gc=8.0.6=h4bd325d_0 + - bzip2=1.0.8=h7f98852_4 + - c-ares=1.19.1=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.2.1=h58526e2_0 + - graphite2=1.3.13=h58526e2_1001 + - icu=72.1=hcb278e6_0 + - keyutils=1.6.1=h166bdaf_0 + - lerc=4.0.0=h27087fc_0 + - libatomic_ops=7.6.14=h166bdaf_0 + - libbraiding=1.1=h58526e2_0 + - libdeflate=1.18=h0b41bf4_0 + - libev=4.33=h516909a_1 + - libexpat=2.5.0=hcb278e6_1 + - libffi=3.4.2=h7f98852_5 + - libiconv=1.17=h166bdaf_0 + - libjpeg-turbo=2.1.5.1=h0b41bf4_0 + - libnsl=2.0.0=h7f98852_0 + - libopenblas=0.3.23=pthreads_h80387f5_0 + - libsanitizer=12.3.0=h0f45ef3_0 + - libsodium=1.0.18=h36c2ea0_1 + - libtool=2.4.7=h27087fc_0 + - libuuid=2.38.1=h0b41bf4_0 + - libuv=1.44.2=h166bdaf_0 + - libwebp-base=1.3.1=hd590300_0 + - libzlib=1.2.13=hd590300_5 + - lrcalc=2.1=h27087fc_5 + - m4=1.4.18=h516909a_1001 + - make=4.3=hd18ef5c_1 + - metis=5.1.1=h59595ed_0 + - nauty=2.7.2=h7f98852_0 + - ncurses=6.4=hcb278e6_0 + - ninja=1.11.1=h924138e_0 + - openssl=3.1.1=hd590300_1 + - palp=2.20=h36c2ea0_0 + - patch=2.7.6=h7f98852_1002 + - pixman=0.40.0=h36c2ea0_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 + - qd=2.3.22=h2cc385e_1004 + - qhull=2020.2=h4bd325d_2 + - rhash=1.4.3=h166bdaf_0 + - sed=4.8=he412f7d_0 + - symmetrica=3.0.1=hcb278e6_0 + - xorg-kbproto=1.0.7=h7f98852_1002 + - xorg-libice=1.0.10=h7f98852_0 + - xorg-libxau=1.0.11=hd590300_0 + - xorg-libxdmcp=1.1.3=h7f98852_0 + - xorg-renderproto=0.11.1=h7f98852_1002 + - xorg-xextproto=7.3.0=h0b41bf4_1003 + - xorg-xproto=7.0.31=h7f98852_1007 + - xz=5.2.6=h166bdaf_0 + - 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_0 + - givaro=4.1.1=h192cbe9_1 + - glpk=5.0=h445213a_0 + - libblas=3.9.0=17_linux64_openblas + - libedit=3.1.20191231=he28a2e2_2 + - libhomfly=1.02r6=h36c2ea0_0 + - libnghttp2=1.52.0=h61bc06f_0 + - libpng=1.6.39=h753d276_0 + - libsqlite=3.42.0=h2797004_0 + - libssh2=1.11.0=h0841786_0 + - libxcb=1.15=h0b41bf4_0 + - libxml2=2.10.4=hfdac1af_0 + - mpfr=4.2.0=hb012696_0 + - ntl=11.4.3=hef3c4d3_1 + - openblas=0.3.23=pthreads_h855a84d_0 + - pcre2=10.40=hc3806b6_0 + - perl=5.32.1=4_hd590300_perl5 + - primecount=7.9=hcb278e6_0 + - readline=8.2=h8228510_1 + - tar=1.34=hb2e2bae_1 + - tk=8.6.12=h27826a3_0 + - xorg-libsm=1.2.3=hd9c2040_1000 + - zeromq=4.3.4=h9c3ff4c_1 + - zlib=1.2.13=hd590300_5 + - zstd=1.5.2=hfc55251_7 + - autoconf=2.71=pl5321h2b4cb7a_1 + - boost-cpp=1.82.0=he19a28c_1 + - bwidget=1.9.14=ha770c72_1 + - ecl=21.2.1=h9d73b02_2 + - fplll=5.4.4=h8780c30_0 + - freetype=2.12.1=hca18f0e_1 + - gcc=12.3.0=h8d2909c_1 + - gcc_linux-64=12.3.0=h76fc315_1 + - gfan=0.6.2=hb86e20a_1003 + - gfortran_impl_linux-64=12.3.0=hfcedea8_0 + - gxx_impl_linux-64=12.3.0=he2b93b0_0 + - krb5=1.20.1=h81ceb04_0 + - libcblas=3.9.0=17_linux64_openblas + - libflint=2.9.0=h2f819a4_ntl_100 + - libglib=2.76.4=hebfc3b9_0 + - libhwloc=2.9.1=hd6dc26d_0 + - liblapack=3.9.0=17_linux64_openblas + - libtiff=4.5.1=h8b53f26_0 + - llvm-openmp=16.0.6=h4dfa4b3_0 + - m4ri=20140914=h7ca028e_1005 + - mpc=1.3.1=hfe3b2da_0 + - mpfi=1.5.4=h9f54685_1001 + - pari=2.15.4=h4d4ae9b_2_pthread + - ppl=1.2=h6ec01c2_1006 + - python=3.11.4=hab00c5b_0_cpython + - sqlite=3.42.0=h2c6b66d_0 + - tachyon=0.99b6=0 + - texinfo=7.0=pl5321h0f457ee_0 + - tktable=2.10=hb7b940f_3 + - xorg-libx11=1.8.6=h8ee46fc_0 + - appdirs=1.4.4=pyh9f0ad1d_0 + - arb=2.23.0=h44d021b_0 + - arpack=3.7.0=hdefa2d7_2 + - automake=1.16.5=pl5321ha770c72_0 + - c-compiler=1.6.0=hd590300_0 + - cachetools=5.3.1=pyhd8ed1ab_0 + - chardet=5.1.0=py311h38be061_0 + - colorama=0.4.6=pyhd8ed1ab_0 + - distlib=0.3.7=pyhd8ed1ab_0 + - eclib=20230424=hdef1efb_0 + - fflas-ffpack=2.4.3=h912ac81_2 + - filelock=3.12.2=pyhd8ed1ab_0 + - fontconfig=2.14.2=h14ed4e7_0 + - gfortran=12.3.0=h499e0f7_1 + - gfortran_linux-64=12.3.0=h7fe76b4_1 + - gsl=2.7=he838d99_0 + - gxx=12.3.0=h8d2909c_1 + - gxx_linux-64=12.3.0=h8a814eb_1 + - iml=1.0.5=hd75c201_1003 + - lcalc=2.0.5=h6a8a7c6_1 + - libbrial=1.2.12=h138cd66_0 + - libcurl=8.1.2=h409715c_0 + - liblapacke=3.9.0=17_linux64_openblas + - libwebp=1.3.1=hbf2b3c1_0 + - m4rie=20150908=h7ca028e_1001 + - markupsafe=2.1.3=py311h459d7ec_0 + - maxima=5.45.0=h9d73b02_3 + - packaging=23.1=pyhd8ed1ab_0 + - pluggy=1.2.0=pyhd8ed1ab_0 + - pycparser=2.21=pyhd8ed1ab_0 + - pytz=2023.3=pyhd8ed1ab_0 + - simplegeneric=0.8.1=py_1 + - singular=4.2.1.p3=h1ea75ed_2 + - sympow=2.023.6=hc6ab17c_3 + - tbb=2021.9.0=hf52228f_0 + - toml=0.10.2=pyhd8ed1ab_0 + - tomli=2.0.1=pyhd8ed1ab_0 + - typing_extensions=4.7.1=pyha770c72_0 + - tzlocal=5.0.1=py311h38be061_0 + - xorg-libxext=1.3.4=h0b41bf4_2 + - xorg-libxrender=0.9.11=hd590300_0 + - xorg-libxt=1.3.0=hd590300_0 + - zipp=3.16.2=pyhd8ed1ab_0 + - blas-devel=3.9.0=17_linux64_openblas + - brial=1.2.12=pyha3edaa6_0 + - cairo=1.16.0=hbbf8b49_1016 + - cffi=1.15.1=py311h409f033_3 + - cmake=3.26.4=hcfe8598_0 + - curl=8.1.2=h409715c_0 + - cxx-compiler=1.6.0=h00ab1b0_0 + - fortran-compiler=1.6.0=heb67821_0 + - giac=1.9.0.21=h673759e_1 + - importlib-metadata=6.8.0=pyha770c72_0 + - jinja2=3.1.2=pyhd8ed1ab_1 + - libgd=2.3.3=hfa28ad5_6 + - linbox=1.6.3=h9d78c56_7 + - pyproject-api=1.5.3=pyhd8ed1ab_0 + - suitesparse=5.10.1=h9e50725_1 + - typing-extensions=4.7.1=hd8ed1ab_0 + - blas=2.117=openblas + - compilers=1.6.0=ha770c72_0 + - harfbuzz=7.3.0=hdb3a94d_0 + - igraph=0.9.10=ha1f048c_1 + - importlib_metadata=6.8.0=hd8ed1ab_0 + - platformdirs=3.9.1=pyhd8ed1ab_0 + - pango=1.50.14=heaa33ce_1 + - rw=0.9=h7f98852_0 + - virtualenv=20.24.1=pyhd8ed1ab_0 + - r-base=4.3.0=h0fc540b_0 + - tox=4.6.4=pyhd8ed1ab_0 + - rpy2=3.5.11=py311r43h1f0f07a_2 diff --git a/environment-3.11-macos.yml b/environment-3.11-macos.yml new file mode 100644 index 00000000000..87cdcdc9a17 --- /dev/null +++ b/environment-3.11-macos.yml @@ -0,0 +1,206 @@ +# Generated by conda-lock. +# platform: osx-64 +# input_hash: 93b5ca84f839c4b1632c0eb98e3f5baa34ea1e607c329e9f4863fd87ae507dbe + +channels: + - conda-forge +dependencies: + - _r-mutex=1.0.1=anacondar_1 + - bc=1.07.1=h0d85af4_0 + - bzip2=1.0.8=h0d85af4_4 + - c-ares=1.19.1=h0dc2134_0 + - ca-certificates=2023.7.22=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=hab24e00_0 + - fribidi=1.0.10=hbcb3906_0 + - giflib=5.2.1=hb7f2c08_3 + - icu=72.1=h7336db1_0 + - libatomic_ops=7.6.14=hb7f2c08_0 + - libcxx=16.0.6=hd57cbcb_0 + - libdeflate=1.18=hac1461d_0 + - libev=4.33=haf1e3a3_1 + - libexpat=2.5.0=hf0c8a7f_1 + - libffi=3.4.2=h0d85af4_5 + - libgfortran-devel_osx-64=12.2.0=hf0fd499_32 + - libiconv=1.17=hac89ed1_0 + - libjpeg-turbo=2.1.5.1=hb7f2c08_0 + - libsodium=1.0.18=hbcb3906_1 + - libtool=2.4.7=hf0c8a7f_0 + - libuv=1.44.2=hac89ed1_0 + - libwebp-base=1.3.1=h0dc2134_0 + - libzlib=1.2.13=h8a1eda9_5 + - llvm-openmp=16.0.6=hff08bdf_0 + - m4=1.4.18=haf1e3a3_1001 + - make=4.3=h22f3db7_1 + - metis=5.1.1=he965462_0 + - nauty=2.7.2=h0d85af4_0 + - ncurses=6.4=hf0c8a7f_0 + - 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 + - pixman=0.40.0=hbcb3906_0 + - planarity=3.0.0.5=hbcb3906_1002 + - python_abi=3.11=3_cp311 + - rhash=1.4.3=hac89ed1_0 + - tzdata=2023c=h71feb2d_0 + - xz=5.2.6=h775f41a_0 + - 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.2.1=h2e338ed_0 + - graphite2=1.3.13=h2e338ed_1001 + - isl=0.25=hb486fe8_0 + - lerc=4.0.0=hb486fe8_0 + - libbraiding=1.1=h2e338ed_0 + - libedit=3.1.20191231=h0678c8f_2 + - libgfortran5=12.3.0=hbd3c1fe_1 + - libpng=1.6.39=ha978bb4_0 + - libsqlite=3.42.0=h58db7d2_0 + - libxml2=2.10.4=h554bb67_0 + - lrcalc=2.1=hf0c8a7f_5 + - ninja=1.11.1=hb8565cd_0 + - openssl=3.1.1=h8a1eda9_1 + - pari-seadata=0.0.20090618=0 + - pcre2=10.40=h1c4e4bc_0 + - pkg-config=0.29.2=ha3d46e9_1008 + - primesieve=11.0=hf0c8a7f_0 + - qhull=2020.2=h940c156_2 + - readline=8.2=h9e318b2_1 + - symmetrica=3.0.1=hf0c8a7f_0 + - tapi=1100.0.11=h9ce4665_0 + - tar=1.34=hcb2f6ea_1 + - tbb=2021.9.0=hb8565cd_0 + - texinfo=7.0=pl5321hc47821c_0 + - tk=8.6.12=h5dbffcc_0 + - zeromq=4.3.4=he49afe7_1 + - zlib=1.2.13=h8a1eda9_5 + - zstd=1.5.2=h829000d_7 + - automake=1.16.5=pl5321h694c41f_0 + - boost-cpp=1.82.0=hd754db5_1 + - bwidget=1.9.14=h694c41f_1 + - cddlib=1!0.94m=h0f52abe_0 + - ecl=21.2.1=hd029580_2 + - ecm=7.0.4=h343d7f2_1002 + - fonts-conda-ecosystem=1=0 + - freetype=2.12.1=h3f81eb7_1 + - givaro=4.1.1=h0a799c6_3 + - glpk=5.0=h3cb5acd_0 + - krb5=1.20.1=h049b76e_0 + - libgfortran=5.0.0=12_3_0_h97931a8_1 + - libglib=2.76.4=hc62aa5d_0 + - libhomfly=1.02r6=hc929b4f_0 + - libllvm15=15.0.7=h7001e86_1 + - libnghttp2=1.52.0=he2ab024_0 + - libssh2=1.11.0=hd019ec5_0 + - libtiff=4.5.1=hf955e92_0 + - m4ri=20140914=h3f75d11_1005 + - mpfr=4.2.0=h4f9bd69_0 + - ntl=11.4.3=h0ab3c2f_1 + - pari=2.15.4=h93f793c_2_pthread + - primecount=7.6=ha894c9a_0 + - python=3.11.4=h30d4d87_0_cpython + - sigtool=0.1.3=h88f4db0_0 + - sqlite=3.42.0=h2b0dec6_0 + - tachyon=0.99b6=0 + - tktable=2.10=h49f0cf7_3 + - appdirs=1.4.4=pyh9f0ad1d_0 + - cachetools=5.3.1=pyhd8ed1ab_0 + - chardet=5.1.0=py311h6eed73b_0 + - colorama=0.4.6=pyhd8ed1ab_0 + - distlib=0.3.7=pyhd8ed1ab_0 + - filelock=3.12.2=pyhd8ed1ab_0 + - fontconfig=2.14.2=h5bb23bf_0 + - gfan=0.6.2=hd793b56_1003 + - lcalc=2.0.5=h3a941db_1 + - ld64_osx-64=609=h8ce0179_13 + - libbrial=1.2.12=h8f704d5_0 + - libclang-cpp15=15.0.7=default_hdb78580_2 + - libcurl=8.1.2=hbee3ae8_0 + - libflint=2.9.0=hfd2f71f_ntl_100 + - libopenblas=0.3.23=openmp_h429af6e_0 + - libwebp=1.3.1=hc961f54_0 + - llvm-tools=15.0.7=h7001e86_1 + - m4rie=20150908=h3f75d11_1001 + - markupsafe=2.1.3=py311h2725bcf_0 + - maxima=5.45.0=hd029580_3 + - mpc=1.3.1=h81bd1dd_0 + - mpfi=1.5.4=h52b28e3_1001 + - packaging=23.1=pyhd8ed1ab_0 + - pluggy=1.2.0=pyhd8ed1ab_0 + - ppl=1.2=ha60d53e_1006 + - pycparser=2.21=pyhd8ed1ab_0 + - pytz=2023.3=pyhd8ed1ab_0 + - qd=2.3.22=h2beb688_1004 + - simplegeneric=0.8.1=py_1 + - sympow=2.023.6=h115ba6a_3 + - toml=0.10.2=pyhd8ed1ab_0 + - tomli=2.0.1=pyhd8ed1ab_0 + - typing_extensions=4.7.1=pyha770c72_0 + - tzlocal=5.0.1=py311h6eed73b_0 + - zipp=3.16.2=pyhd8ed1ab_0 + - arb=2.23.0=h905a977_0 + - brial=1.2.12=pyha3edaa6_0 + - cairo=1.16.0=h09dd18c_1016 + - cctools_osx-64=973.0.1=h48a5a9d_13 + - cffi=1.15.1=py311ha86e640_3 + - clang-15=15.0.7=default_hdb78580_2 + - cmake=3.26.4=hf40c264_0 + - curl=8.1.2=hbee3ae8_0 + - eclib=20230424=hd00e801_0 + - fplll=5.4.4=hdfdc905_0 + - gfortran_impl_osx-64=12.2.0=hdfd80ef_32 + - importlib-metadata=6.8.0=pyha770c72_0 + - jinja2=3.1.2=pyhd8ed1ab_1 + - ld64=609=ha91a046_13 + - libblas=3.9.0=17_osx64_openblas + - libgd=2.3.3=h3d994df_6 + - openblas=0.3.23=openmp_hbefa662_0 + - pyproject-api=1.5.3=pyhd8ed1ab_0 + - singular=4.2.1.p3=hac851df_2 + - typing-extensions=4.7.1=hd8ed1ab_0 + - cctools=973.0.1=hd9ad811_13 + - clang=15.0.7=h694c41f_2 + - harfbuzz=7.3.0=h413ba03_0 + - importlib_metadata=6.8.0=hd8ed1ab_0 + - libcblas=3.9.0=17_osx64_openblas + - liblapack=3.9.0=17_osx64_openblas + - platformdirs=3.9.1=pyhd8ed1ab_0 + - arpack=3.7.0=hefb7bc6_2 + - clangxx=15.0.7=default_hdb78580_2 + - fflas-ffpack=2.4.3=h026fd7e_2 + - gsl=2.7=h93259b0_0 + - iml=1.0.5=h64b42ca_1003 + - liblapacke=3.9.0=17_osx64_openblas + - pango=1.50.14=hbce5e75_1 + - suitesparse=5.10.1=h7aff33d_1 + - virtualenv=20.24.1=pyhd8ed1ab_0 + - blas-devel=3.9.0=17_osx64_openblas + - compiler-rt_osx-64=15.0.7=he1888fc_1 + - giac=1.9.0.21=h92f3f65_1 + - igraph=0.9.10=h6560ca6_1 + - linbox=1.6.3=hdde8d14_7 + - tox=4.6.4=pyhd8ed1ab_0 + - blas=2.117=openblas + - compiler-rt=15.0.7=he1888fc_1 + - rw=0.9=h0d85af4_0 + - clang_osx-64=15.0.7=h03d6864_3 + - c-compiler=1.6.0=h63c33a9_0 + - clangxx_osx-64=15.0.7=h2133e9c_3 + - gfortran_osx-64=12.2.0=h18f7dce_1 + - cxx-compiler=1.6.0=h1c7c39f_0 + - gfortran=12.2.0=h2c809b3_1 + - r-base=4.3.0=h7a6543b_0 + - fortran-compiler=1.6.0=h932d759_0 + - rpy2=3.5.11=py311r43h4a70a88_2 + - compilers=1.6.0=h694c41f_0 diff --git a/environment-3.9-linux.yml b/environment-3.9-linux.yml new file mode 100644 index 00000000000..a4e0f79b00d --- /dev/null +++ b/environment-3.9-linux.yml @@ -0,0 +1,226 @@ +# Generated by conda-lock. +# platform: linux-64 +# input_hash: 3e531235a513060f63b991c223aa35c0cb0c16aef417e93c3df677572197bc24 + +channels: + - conda-forge +dependencies: + - _libgcc_mutex=0.1=conda_forge + - _r-mutex=1.0.1=anacondar_1 + - ca-certificates=2023.7.22=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=hab24e00_0 + - kernel-headers_linux-64=2.6.32=he073ed8_16 + - ld_impl_linux-64=2.40=h41732ed_0 + - libgcc-devel_linux-64=12.3.0=h8bca6fd_0 + - libgfortran5=13.1.0=h15d22d2_0 + - libstdcxx-devel_linux-64=12.3.0=h8bca6fd_0 + - libstdcxx-ng=13.1.0=hfd8a6a1_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 + - python_abi=3.11=3_cp311 + - tzdata=2023c=h71feb2d_0 + - fonts-conda-forge=1=0 + - libgfortran-ng=13.1.0=h69a702a_0 + - libgomp=13.1.0=he5830b7_0 + - pari-seadata=0.0.20090618=0 + - sysroot_linux-64=2.12=he073ed8_16 + - binutils_impl_linux-64=2.40=hf600244_0 + - fonts-conda-ecosystem=1=0 + - binutils=2.40=hdd6e379_0 + - binutils_linux-64=2.40=hbdbef99_1 + - _openmp_mutex=4.5=2_kmp_llvm + - libgcc-ng=13.1.0=he5830b7_0 + - bc=1.07.1=h7f98852_0 + - bdw-gc=8.0.6=h4bd325d_0 + - bzip2=1.0.8=h7f98852_4 + - c-ares=1.19.1=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.2.1=h58526e2_0 + - graphite2=1.3.13=h58526e2_1001 + - icu=72.1=hcb278e6_0 + - keyutils=1.6.1=h166bdaf_0 + - lerc=4.0.0=h27087fc_0 + - libatomic_ops=7.6.14=h166bdaf_0 + - libbraiding=1.1=h58526e2_0 + - libdeflate=1.18=h0b41bf4_0 + - libev=4.33=h516909a_1 + - libexpat=2.5.0=hcb278e6_1 + - libffi=3.4.2=h7f98852_5 + - libiconv=1.17=h166bdaf_0 + - libjpeg-turbo=2.1.5.1=h0b41bf4_0 + - libnsl=2.0.0=h7f98852_0 + - libopenblas=0.3.23=pthreads_h80387f5_0 + - libsanitizer=12.3.0=h0f45ef3_0 + - libsodium=1.0.18=h36c2ea0_1 + - libtool=2.4.7=h27087fc_0 + - libuuid=2.38.1=h0b41bf4_0 + - libuv=1.44.2=h166bdaf_0 + - libwebp-base=1.3.1=hd590300_0 + - libzlib=1.2.13=hd590300_5 + - lrcalc=2.1=h27087fc_5 + - m4=1.4.18=h516909a_1001 + - make=4.3=hd18ef5c_1 + - metis=5.1.1=h59595ed_0 + - nauty=2.7.2=h7f98852_0 + - ncurses=6.4=hcb278e6_0 + - ninja=1.11.1=h924138e_0 + - openssl=3.1.1=hd590300_1 + - palp=2.20=h36c2ea0_0 + - patch=2.7.6=h7f98852_1002 + - pixman=0.40.0=h36c2ea0_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 + - qd=2.3.22=h2cc385e_1004 + - qhull=2020.2=h4bd325d_2 + - rhash=1.4.3=h166bdaf_0 + - sed=4.8=he412f7d_0 + - symmetrica=3.0.1=hcb278e6_0 + - xorg-kbproto=1.0.7=h7f98852_1002 + - xorg-libice=1.0.10=h7f98852_0 + - xorg-libxau=1.0.11=hd590300_0 + - xorg-libxdmcp=1.1.3=h7f98852_0 + - xorg-renderproto=0.11.1=h7f98852_1002 + - xorg-xextproto=7.3.0=h0b41bf4_1003 + - xorg-xproto=7.0.31=h7f98852_1007 + - xz=5.2.6=h166bdaf_0 + - 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_0 + - givaro=4.1.1=h192cbe9_1 + - glpk=5.0=h445213a_0 + - libblas=3.9.0=17_linux64_openblas + - libedit=3.1.20191231=he28a2e2_2 + - libhomfly=1.02r6=h36c2ea0_0 + - libnghttp2=1.52.0=h61bc06f_0 + - libpng=1.6.39=h753d276_0 + - libsqlite=3.42.0=h2797004_0 + - libssh2=1.11.0=h0841786_0 + - libxcb=1.15=h0b41bf4_0 + - libxml2=2.10.4=hfdac1af_0 + - mpfr=4.2.0=hb012696_0 + - ntl=11.4.3=hef3c4d3_1 + - openblas=0.3.23=pthreads_h855a84d_0 + - pcre2=10.40=hc3806b6_0 + - perl=5.32.1=4_hd590300_perl5 + - primecount=7.9=hcb278e6_0 + - readline=8.2=h8228510_1 + - tar=1.34=hb2e2bae_1 + - tk=8.6.12=h27826a3_0 + - xorg-libsm=1.2.3=hd9c2040_1000 + - zeromq=4.3.4=h9c3ff4c_1 + - zlib=1.2.13=hd590300_5 + - zstd=1.5.2=hfc55251_7 + - autoconf=2.71=pl5321h2b4cb7a_1 + - boost-cpp=1.82.0=he19a28c_1 + - bwidget=1.9.14=ha770c72_1 + - ecl=21.2.1=h9d73b02_2 + - fplll=5.4.4=h8780c30_0 + - freetype=2.12.1=hca18f0e_1 + - gcc=12.3.0=h8d2909c_1 + - gcc_linux-64=12.3.0=h76fc315_1 + - gfan=0.6.2=hb86e20a_1003 + - gfortran_impl_linux-64=12.3.0=hfcedea8_0 + - gxx_impl_linux-64=12.3.0=he2b93b0_0 + - krb5=1.20.1=h81ceb04_0 + - libcblas=3.9.0=17_linux64_openblas + - libflint=2.9.0=h2f819a4_ntl_100 + - libglib=2.76.4=hebfc3b9_0 + - libhwloc=2.9.1=hd6dc26d_0 + - liblapack=3.9.0=17_linux64_openblas + - libtiff=4.5.1=h8b53f26_0 + - llvm-openmp=16.0.6=h4dfa4b3_0 + - m4ri=20140914=h7ca028e_1005 + - mpc=1.3.1=hfe3b2da_0 + - mpfi=1.5.4=h9f54685_1001 + - pari=2.15.4=h4d4ae9b_2_pthread + - ppl=1.2=h6ec01c2_1006 + - python=3.11.4=hab00c5b_0_cpython + - sqlite=3.42.0=h2c6b66d_0 + - tachyon=0.99b6=0 + - texinfo=7.0=pl5321h0f457ee_0 + - tktable=2.10=hb7b940f_3 + - xorg-libx11=1.8.6=h8ee46fc_0 + - appdirs=1.4.4=pyh9f0ad1d_0 + - arb=2.23.0=h44d021b_0 + - arpack=3.7.0=hdefa2d7_2 + - automake=1.16.5=pl5321ha770c72_0 + - c-compiler=1.6.0=hd590300_0 + - cachetools=5.3.1=pyhd8ed1ab_0 + - chardet=5.1.0=py311h38be061_0 + - colorama=0.4.6=pyhd8ed1ab_0 + - distlib=0.3.7=pyhd8ed1ab_0 + - eclib=20230424=hdef1efb_0 + - fflas-ffpack=2.4.3=h912ac81_2 + - filelock=3.12.2=pyhd8ed1ab_0 + - fontconfig=2.14.2=h14ed4e7_0 + - gfortran=12.3.0=h499e0f7_1 + - gfortran_linux-64=12.3.0=h7fe76b4_1 + - gsl=2.7=he838d99_0 + - gxx=12.3.0=h8d2909c_1 + - gxx_linux-64=12.3.0=h8a814eb_1 + - iml=1.0.5=hd75c201_1003 + - lcalc=2.0.5=h6a8a7c6_1 + - libbrial=1.2.12=h138cd66_0 + - libcurl=8.1.2=h409715c_0 + - liblapacke=3.9.0=17_linux64_openblas + - libwebp=1.3.1=hbf2b3c1_0 + - m4rie=20150908=h7ca028e_1001 + - markupsafe=2.1.3=py311h459d7ec_0 + - maxima=5.45.0=h9d73b02_3 + - packaging=23.1=pyhd8ed1ab_0 + - pluggy=1.2.0=pyhd8ed1ab_0 + - pycparser=2.21=pyhd8ed1ab_0 + - pytz=2023.3=pyhd8ed1ab_0 + - simplegeneric=0.8.1=py_1 + - singular=4.2.1.p3=h1ea75ed_2 + - sympow=2.023.6=hc6ab17c_3 + - tbb=2021.9.0=hf52228f_0 + - toml=0.10.2=pyhd8ed1ab_0 + - tomli=2.0.1=pyhd8ed1ab_0 + - typing_extensions=4.7.1=pyha770c72_0 + - tzlocal=5.0.1=py311h38be061_0 + - xorg-libxext=1.3.4=h0b41bf4_2 + - xorg-libxrender=0.9.11=hd590300_0 + - xorg-libxt=1.3.0=hd590300_0 + - zipp=3.16.2=pyhd8ed1ab_0 + - blas-devel=3.9.0=17_linux64_openblas + - brial=1.2.12=pyha3edaa6_0 + - cairo=1.16.0=hbbf8b49_1016 + - cffi=1.15.1=py311h409f033_3 + - cmake=3.26.4=hcfe8598_0 + - curl=8.1.2=h409715c_0 + - cxx-compiler=1.6.0=h00ab1b0_0 + - fortran-compiler=1.6.0=heb67821_0 + - giac=1.9.0.21=h673759e_1 + - importlib-metadata=6.8.0=pyha770c72_0 + - jinja2=3.1.2=pyhd8ed1ab_1 + - libgd=2.3.3=hfa28ad5_6 + - linbox=1.6.3=h9d78c56_7 + - pyproject-api=1.5.3=pyhd8ed1ab_0 + - suitesparse=5.10.1=h9e50725_1 + - typing-extensions=4.7.1=hd8ed1ab_0 + - blas=2.117=openblas + - compilers=1.6.0=ha770c72_0 + - harfbuzz=7.3.0=hdb3a94d_0 + - igraph=0.9.10=ha1f048c_1 + - importlib_metadata=6.8.0=hd8ed1ab_0 + - platformdirs=3.9.1=pyhd8ed1ab_0 + - pango=1.50.14=heaa33ce_1 + - rw=0.9=h7f98852_0 + - virtualenv=20.24.1=pyhd8ed1ab_0 + - r-base=4.3.0=h0fc540b_0 + - tox=4.6.4=pyhd8ed1ab_0 + - rpy2=3.5.11=py311r43h1f0f07a_2 diff --git a/environment-3.9-macos.yml b/environment-3.9-macos.yml new file mode 100644 index 00000000000..87cdcdc9a17 --- /dev/null +++ b/environment-3.9-macos.yml @@ -0,0 +1,206 @@ +# Generated by conda-lock. +# platform: osx-64 +# input_hash: 93b5ca84f839c4b1632c0eb98e3f5baa34ea1e607c329e9f4863fd87ae507dbe + +channels: + - conda-forge +dependencies: + - _r-mutex=1.0.1=anacondar_1 + - bc=1.07.1=h0d85af4_0 + - bzip2=1.0.8=h0d85af4_4 + - c-ares=1.19.1=h0dc2134_0 + - ca-certificates=2023.7.22=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=hab24e00_0 + - fribidi=1.0.10=hbcb3906_0 + - giflib=5.2.1=hb7f2c08_3 + - icu=72.1=h7336db1_0 + - libatomic_ops=7.6.14=hb7f2c08_0 + - libcxx=16.0.6=hd57cbcb_0 + - libdeflate=1.18=hac1461d_0 + - libev=4.33=haf1e3a3_1 + - libexpat=2.5.0=hf0c8a7f_1 + - libffi=3.4.2=h0d85af4_5 + - libgfortran-devel_osx-64=12.2.0=hf0fd499_32 + - libiconv=1.17=hac89ed1_0 + - libjpeg-turbo=2.1.5.1=hb7f2c08_0 + - libsodium=1.0.18=hbcb3906_1 + - libtool=2.4.7=hf0c8a7f_0 + - libuv=1.44.2=hac89ed1_0 + - libwebp-base=1.3.1=h0dc2134_0 + - libzlib=1.2.13=h8a1eda9_5 + - llvm-openmp=16.0.6=hff08bdf_0 + - m4=1.4.18=haf1e3a3_1001 + - make=4.3=h22f3db7_1 + - metis=5.1.1=he965462_0 + - nauty=2.7.2=h0d85af4_0 + - ncurses=6.4=hf0c8a7f_0 + - 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 + - pixman=0.40.0=hbcb3906_0 + - planarity=3.0.0.5=hbcb3906_1002 + - python_abi=3.11=3_cp311 + - rhash=1.4.3=hac89ed1_0 + - tzdata=2023c=h71feb2d_0 + - xz=5.2.6=h775f41a_0 + - 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.2.1=h2e338ed_0 + - graphite2=1.3.13=h2e338ed_1001 + - isl=0.25=hb486fe8_0 + - lerc=4.0.0=hb486fe8_0 + - libbraiding=1.1=h2e338ed_0 + - libedit=3.1.20191231=h0678c8f_2 + - libgfortran5=12.3.0=hbd3c1fe_1 + - libpng=1.6.39=ha978bb4_0 + - libsqlite=3.42.0=h58db7d2_0 + - libxml2=2.10.4=h554bb67_0 + - lrcalc=2.1=hf0c8a7f_5 + - ninja=1.11.1=hb8565cd_0 + - openssl=3.1.1=h8a1eda9_1 + - pari-seadata=0.0.20090618=0 + - pcre2=10.40=h1c4e4bc_0 + - pkg-config=0.29.2=ha3d46e9_1008 + - primesieve=11.0=hf0c8a7f_0 + - qhull=2020.2=h940c156_2 + - readline=8.2=h9e318b2_1 + - symmetrica=3.0.1=hf0c8a7f_0 + - tapi=1100.0.11=h9ce4665_0 + - tar=1.34=hcb2f6ea_1 + - tbb=2021.9.0=hb8565cd_0 + - texinfo=7.0=pl5321hc47821c_0 + - tk=8.6.12=h5dbffcc_0 + - zeromq=4.3.4=he49afe7_1 + - zlib=1.2.13=h8a1eda9_5 + - zstd=1.5.2=h829000d_7 + - automake=1.16.5=pl5321h694c41f_0 + - boost-cpp=1.82.0=hd754db5_1 + - bwidget=1.9.14=h694c41f_1 + - cddlib=1!0.94m=h0f52abe_0 + - ecl=21.2.1=hd029580_2 + - ecm=7.0.4=h343d7f2_1002 + - fonts-conda-ecosystem=1=0 + - freetype=2.12.1=h3f81eb7_1 + - givaro=4.1.1=h0a799c6_3 + - glpk=5.0=h3cb5acd_0 + - krb5=1.20.1=h049b76e_0 + - libgfortran=5.0.0=12_3_0_h97931a8_1 + - libglib=2.76.4=hc62aa5d_0 + - libhomfly=1.02r6=hc929b4f_0 + - libllvm15=15.0.7=h7001e86_1 + - libnghttp2=1.52.0=he2ab024_0 + - libssh2=1.11.0=hd019ec5_0 + - libtiff=4.5.1=hf955e92_0 + - m4ri=20140914=h3f75d11_1005 + - mpfr=4.2.0=h4f9bd69_0 + - ntl=11.4.3=h0ab3c2f_1 + - pari=2.15.4=h93f793c_2_pthread + - primecount=7.6=ha894c9a_0 + - python=3.11.4=h30d4d87_0_cpython + - sigtool=0.1.3=h88f4db0_0 + - sqlite=3.42.0=h2b0dec6_0 + - tachyon=0.99b6=0 + - tktable=2.10=h49f0cf7_3 + - appdirs=1.4.4=pyh9f0ad1d_0 + - cachetools=5.3.1=pyhd8ed1ab_0 + - chardet=5.1.0=py311h6eed73b_0 + - colorama=0.4.6=pyhd8ed1ab_0 + - distlib=0.3.7=pyhd8ed1ab_0 + - filelock=3.12.2=pyhd8ed1ab_0 + - fontconfig=2.14.2=h5bb23bf_0 + - gfan=0.6.2=hd793b56_1003 + - lcalc=2.0.5=h3a941db_1 + - ld64_osx-64=609=h8ce0179_13 + - libbrial=1.2.12=h8f704d5_0 + - libclang-cpp15=15.0.7=default_hdb78580_2 + - libcurl=8.1.2=hbee3ae8_0 + - libflint=2.9.0=hfd2f71f_ntl_100 + - libopenblas=0.3.23=openmp_h429af6e_0 + - libwebp=1.3.1=hc961f54_0 + - llvm-tools=15.0.7=h7001e86_1 + - m4rie=20150908=h3f75d11_1001 + - markupsafe=2.1.3=py311h2725bcf_0 + - maxima=5.45.0=hd029580_3 + - mpc=1.3.1=h81bd1dd_0 + - mpfi=1.5.4=h52b28e3_1001 + - packaging=23.1=pyhd8ed1ab_0 + - pluggy=1.2.0=pyhd8ed1ab_0 + - ppl=1.2=ha60d53e_1006 + - pycparser=2.21=pyhd8ed1ab_0 + - pytz=2023.3=pyhd8ed1ab_0 + - qd=2.3.22=h2beb688_1004 + - simplegeneric=0.8.1=py_1 + - sympow=2.023.6=h115ba6a_3 + - toml=0.10.2=pyhd8ed1ab_0 + - tomli=2.0.1=pyhd8ed1ab_0 + - typing_extensions=4.7.1=pyha770c72_0 + - tzlocal=5.0.1=py311h6eed73b_0 + - zipp=3.16.2=pyhd8ed1ab_0 + - arb=2.23.0=h905a977_0 + - brial=1.2.12=pyha3edaa6_0 + - cairo=1.16.0=h09dd18c_1016 + - cctools_osx-64=973.0.1=h48a5a9d_13 + - cffi=1.15.1=py311ha86e640_3 + - clang-15=15.0.7=default_hdb78580_2 + - cmake=3.26.4=hf40c264_0 + - curl=8.1.2=hbee3ae8_0 + - eclib=20230424=hd00e801_0 + - fplll=5.4.4=hdfdc905_0 + - gfortran_impl_osx-64=12.2.0=hdfd80ef_32 + - importlib-metadata=6.8.0=pyha770c72_0 + - jinja2=3.1.2=pyhd8ed1ab_1 + - ld64=609=ha91a046_13 + - libblas=3.9.0=17_osx64_openblas + - libgd=2.3.3=h3d994df_6 + - openblas=0.3.23=openmp_hbefa662_0 + - pyproject-api=1.5.3=pyhd8ed1ab_0 + - singular=4.2.1.p3=hac851df_2 + - typing-extensions=4.7.1=hd8ed1ab_0 + - cctools=973.0.1=hd9ad811_13 + - clang=15.0.7=h694c41f_2 + - harfbuzz=7.3.0=h413ba03_0 + - importlib_metadata=6.8.0=hd8ed1ab_0 + - libcblas=3.9.0=17_osx64_openblas + - liblapack=3.9.0=17_osx64_openblas + - platformdirs=3.9.1=pyhd8ed1ab_0 + - arpack=3.7.0=hefb7bc6_2 + - clangxx=15.0.7=default_hdb78580_2 + - fflas-ffpack=2.4.3=h026fd7e_2 + - gsl=2.7=h93259b0_0 + - iml=1.0.5=h64b42ca_1003 + - liblapacke=3.9.0=17_osx64_openblas + - pango=1.50.14=hbce5e75_1 + - suitesparse=5.10.1=h7aff33d_1 + - virtualenv=20.24.1=pyhd8ed1ab_0 + - blas-devel=3.9.0=17_osx64_openblas + - compiler-rt_osx-64=15.0.7=he1888fc_1 + - giac=1.9.0.21=h92f3f65_1 + - igraph=0.9.10=h6560ca6_1 + - linbox=1.6.3=hdde8d14_7 + - tox=4.6.4=pyhd8ed1ab_0 + - blas=2.117=openblas + - compiler-rt=15.0.7=he1888fc_1 + - rw=0.9=h0d85af4_0 + - clang_osx-64=15.0.7=h03d6864_3 + - c-compiler=1.6.0=h63c33a9_0 + - clangxx_osx-64=15.0.7=h2133e9c_3 + - gfortran_osx-64=12.2.0=h18f7dce_1 + - cxx-compiler=1.6.0=h1c7c39f_0 + - gfortran=12.2.0=h2c809b3_1 + - r-base=4.3.0=h7a6543b_0 + - fortran-compiler=1.6.0=h932d759_0 + - rpy2=3.5.11=py311r43h4a70a88_2 + - compilers=1.6.0=h694c41f_0 diff --git a/src/doc/en/installation/conda.rst b/src/doc/en/installation/conda.rst index 5228611de3b..e5d8b77f9cb 100644 --- a/src/doc/en/installation/conda.rst +++ b/src/doc/en/installation/conda.rst @@ -68,18 +68,15 @@ Using conda to provide system packages for the Sage distribution If Conda is installed (check by typing ``conda info``), one can install SageMath from source as follows: - - If you are using a git checkout:: - - $ ./bootstrap-conda - - Create a new conda environment including all standard packages recognized by sage, and activate it:: - $ conda env create --file environment.yml --name sage-build + $ conda env create --file environment-3.11-linux.yml --name sage-build $ conda activate sage-build - Alternatively, use ``environment-optional.yml`` in place of - ``environment.yml`` to create an environment with all standard and optional + If you use a different architecture, replace ``linux`` by ``macos``. + Alternatively, use ``environment-optional-3.11-linux.yml`` in place of + ``environment-3.11-linux.yml`` to create an environment with all standard and optional packages recognized by sage. - Then the SageMath distribution will be built using the compilers provided by Conda @@ -118,24 +115,18 @@ Here we assume that you are using a git checkout. $ conda install mamba - - Generate the conda environment files ``src/environment*.yml`` used - in the next step:: - - $ ./bootstrap-conda - - Create and activate a new conda environment with the dependencies of Sage and a few additional developer tools:: - $ mamba env create --file src/environment-dev.yml --name sage-dev + $ mamba env create --file src/environment-dev-3.11-linux.yml --name sage-dev $ conda activate sage-dev - Alternatively, you can use ``src/environment.yml`` or - ``src/environment-optional.yml``, which will only install standard + Alternatively, you can use ``src/environment-3.11-linux.yml`` or + ``src/environment-optional-3.11-linux.yml``, which will only install standard (and optional) packages without any additional developer tools. - By default, the most recent version of Python supported by Sage is - installed. You can use the additional option ``python=3.9`` in the above - ``env create`` command to select another Python version (here 3.9). + This will use Python 3.11. You can change the Python version by using one + of the other environment files, e.g. ``src/environment-3.10-linux.yml``. - Run the ``configure`` script:: @@ -177,7 +168,7 @@ After editing any Cython files, rebuild the Sage library using:: In order to update the conda environment later, you can run:: - $ mamba env update --file src/environment-dev.yml --name sage-dev + $ mamba env update --file src/environment-dev-3.11-linux.yml --name sage-dev To build the documentation, use:: diff --git a/src/environment-3.10-linux.yml b/src/environment-3.10-linux.yml new file mode 100644 index 00000000000..fff15536047 --- /dev/null +++ b/src/environment-3.10-linux.yml @@ -0,0 +1,461 @@ +# Generated by conda-lock. +# platform: linux-64 +# input_hash: 2fe7099c1d98ec324541bba0b769acbac35931b084f7e5640f0437a1ced9c5d2 + +channels: + - conda-forge +dependencies: + - _libgcc_mutex=0.1=conda_forge + - _r-mutex=1.0.1=anacondar_1 + - ca-certificates=2023.7.22=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=hab24e00_0 + - kernel-headers_linux-64=2.6.32=he073ed8_16 + - ld_impl_linux-64=2.40=h41732ed_0 + - libgcc-devel_linux-64=12.3.0=h8bca6fd_0 + - libgfortran5=13.1.0=h15d22d2_0 + - libstdcxx-devel_linux-64=12.3.0=h8bca6fd_0 + - libstdcxx-ng=13.1.0=hfd8a6a1_0 + - mathjax=3.2.2=ha770c72_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 + - python_abi=3.10=3_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 + - fonts-conda-forge=1=0 + - libgfortran-ng=13.1.0=h69a702a_0 + - libgomp=13.1.0=he5830b7_0 + - pari-seadata=0.0.20090618=0 + - sysroot_linux-64=2.12=he073ed8_16 + - threejs-sage=122=hd8ed1ab_2 + - binutils_impl_linux-64=2.40=hf600244_0 + - fonts-conda-ecosystem=1=0 + - binutils=2.40=hdd6e379_0 + - binutils_linux-64=2.40=hbdbef99_1 + - _openmp_mutex=4.5=2_kmp_llvm + - libgcc-ng=13.1.0=he5830b7_0 + - alsa-lib=1.2.8=h166bdaf_0 + - attr=2.5.1=h166bdaf_1 + - bc=1.07.1=h7f98852_0 + - bdw-gc=8.0.6=h4bd325d_0 + - bzip2=1.0.8=h7f98852_4 + - c-ares=1.19.1=hd590300_0 + - cliquer=1.22=h36c2ea0_0 + - fftw=3.3.10=nompi_hc118613_108 + - 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.2.1=h58526e2_0 + - graphite2=1.3.13=h58526e2_1001 + - icu=72.1=hcb278e6_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.1=h58526e2_0 + - libbrotlicommon=1.0.9=h166bdaf_9 + - libdeflate=1.18=h0b41bf4_0 + - libev=4.33=h516909a_1 + - libexpat=2.5.0=hcb278e6_1 + - libffi=3.4.2=h7f98852_5 + - libiconv=1.17=h166bdaf_0 + - libjpeg-turbo=2.1.5.1=h0b41bf4_0 + - libnsl=2.0.0=h7f98852_0 + - libogg=1.3.4=h7f98852_1 + - libopenblas=0.3.23=pthreads_h80387f5_0 + - libopus=1.3.1=h7f98852_1 + - libsanitizer=12.3.0=h0f45ef3_0 + - libsodium=1.0.18=h36c2ea0_1 + - libtool=2.4.7=h27087fc_0 + - libuuid=2.38.1=h0b41bf4_0 + - libuv=1.44.2=h166bdaf_0 + - libwebp-base=1.3.1=hd590300_0 + - 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_0 + - mpg123=1.31.3=hcb278e6_0 + - nauty=2.7.2=h7f98852_0 + - ncurses=6.4=hcb278e6_0 + - ninja=1.11.1=h924138e_0 + - nspr=4.35=h27087fc_0 + - openssl=3.1.1=hd590300_1 + - palp=2.20=h36c2ea0_0 + - patch=2.7.6=h7f98852_1002 + - pixman=0.40.0=h36c2ea0_0 + - pkg-config=0.29.2=h36c2ea0_1008 + - planarity=3.0.0.5=h36c2ea0_1002 + - primesieve=11.0=hcb278e6_0 + - pthread-stubs=0.4=h36c2ea0_1001 + - qd=2.3.22=h2cc385e_1004 + - qhull=2020.2=h4bd325d_2 + - rhash=1.4.3=h166bdaf_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.0.10=h7f98852_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_0 + - givaro=4.1.1=h192cbe9_1 + - glpk=5.0=h445213a_0 + - libblas=3.9.0=17_linux64_openblas + - libbrotlidec=1.0.9=h166bdaf_9 + - libbrotlienc=1.0.9=h166bdaf_9 + - libcap=2.67=he9d0100_0 + - libedit=3.1.20191231=he28a2e2_2 + - libevent=2.1.12=hf998b51_1 + - libflac=1.4.3=h59595ed_0 + - libgpg-error=1.47=h71f35ed_0 + - libhomfly=1.02r6=h36c2ea0_0 + - libnghttp2=1.52.0=h61bc06f_0 + - libpng=1.6.39=h753d276_0 + - libsqlite=3.42.0=h2797004_0 + - libssh2=1.11.0=h0841786_0 + - libvorbis=1.3.7=h9c3ff4c_0 + - libxcb=1.15=h0b41bf4_0 + - libxml2=2.11.4=h0d562d8_0 + - mpfr=4.2.0=hb012696_0 + - mysql-common=8.0.33=hf1915f5_2 + - ntl=11.4.3=hef3c4d3_1 + - openblas=0.3.23=pthreads_h855a84d_0 + - pcre2=10.40=hc3806b6_0 + - perl=5.32.1=4_hd590300_perl5 + - primecount=7.6=hcb278e6_0 + - readline=8.2=h8228510_1 + - tar=1.34=hb2e2bae_1 + - tk=8.6.12=h27826a3_0 + - xorg-fixesproto=5.0=h7f98852_1002 + - xorg-libsm=1.2.3=hd9c2040_1000 + - zeromq=4.3.4=h9c3ff4c_1 + - zlib=1.2.13=hd590300_5 + - zstd=1.5.2=hfc55251_7 + - autoconf=2.71=pl5321h2b4cb7a_1 + - boost-cpp=1.82.0=he19a28c_1 + - brotli-bin=1.0.9=h166bdaf_9 + - bwidget=1.9.14=ha770c72_1 + - ecl=21.2.1=h9d73b02_2 + - fplll=5.4.4=h8780c30_0 + - freetype=2.12.1=hca18f0e_1 + - gap-core=4.12.2=he9a28a4_3 + - gcc=12.3.0=h8d2909c_1 + - gcc_linux-64=12.3.0=h76fc315_1 + - gfan=0.6.2=hb86e20a_1003 + - gfortran_impl_linux-64=12.3.0=hfcedea8_0 + - gxx_impl_linux-64=12.3.0=he2b93b0_0 + - igraph=0.7.1=0 + - krb5=1.20.1=h81ceb04_0 + - libcblas=3.9.0=17_linux64_openblas + - libflint=2.9.0=h2f819a4_ntl_100 + - libgcrypt=1.10.1=h166bdaf_0 + - libglib=2.76.4=hebfc3b9_0 + - libhwloc=2.9.1=nocuda_h7313eea_6 + - liblapack=3.9.0=17_linux64_openblas + - libllvm16=16.0.6=h5cf9203_1 + - libsndfile=1.2.0=hb75c966_0 + - libtiff=4.5.1=h8b53f26_0 + - llvm-openmp=16.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_2 + - nss=3.89=he45b914_0 + - pandoc=3.1.3=h32600fe_0 + - pari=2.15.4=h4d4ae9b_2_pthread + - ppl=1.2=h6ec01c2_1006 + - python=3.10.12=hd12c33a_0_cpython + - sqlite=3.42.0=h2c6b66d_0 + - tachyon=0.99b6=0 + - texinfo=7.0=pl5321h0f457ee_0 + - tktable=2.10=hb7b940f_3 + - 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.6=h8ee46fc_0 + - alabaster=0.7.13=pyhd8ed1ab_0 + - appdirs=1.4.4=pyh9f0ad1d_0 + - appnope=0.1.3=pyhd8ed1ab_0 + - arb=2.23.0=h44d021b_0 + - attrs=23.1.0=pyh71513ae_1 + - automake=1.16.5=pl5321ha770c72_0 + - backcall=0.2.0=pyh9f0ad1d_0 + - backports=1.0=pyhd8ed1ab_3 + - backports.zoneinfo=0.2.1=py310hff52083_7 + - brotli=1.0.9=h166bdaf_9 + - brotli-python=1.0.9=py310hd8f1fbe_9 + - c-compiler=1.6.0=hd590300_0 + - cachetools=5.3.1=pyhd8ed1ab_0 + - certifi=2023.7.22=pyhd8ed1ab_0 + - chardet=5.1.0=py310hff52083_0 + - charset-normalizer=3.2.0=pyhd8ed1ab_0 + - colorama=0.4.6=pyhd8ed1ab_0 + - cycler=0.11.0=pyhd8ed1ab_0 + - cysignals=1.11.2=py310h945e7c7_2 + - cython=0.29.36=py310hc6cd4ac_0 + - dbus=1.13.6=h5008d03_3 + - debugpy=1.6.7=py310heca2aa9_0 + - decorator=5.1.1=pyhd8ed1ab_0 + - defusedxml=0.7.1=pyhd8ed1ab_0 + - distlib=0.3.7=pyhd8ed1ab_0 + - docutils=0.19=py310hff52083_1 + - dsdp=5.8=hd9d9efa_1203 + - eclib=20230424=hdef1efb_0 + - editables=0.3=pyhd8ed1ab_0 + - entrypoints=0.4=pyhd8ed1ab_0 + - exceptiongroup=1.1.2=pyhd8ed1ab_0 + - executing=1.2.0=pyhd8ed1ab_0 + - fflas-ffpack=2.4.3=h912ac81_2 + - filelock=3.12.2=pyhd8ed1ab_0 + - flit-core=3.9.0=pyhd8ed1ab_0 + - fontconfig=2.14.2=h14ed4e7_0 + - gap-defaults=4.12.2=ha770c72_3 + - gast=0.5.4=pyhd8ed1ab_0 + - gfortran=12.3.0=h499e0f7_1 + - gfortran_linux-64=12.3.0=h7fe76b4_1 + - glib-tools=2.76.4=hfc55251_0 + - gmpy2=2.1.2=py310h3ec546c_1 + - gsl=2.7=he838d99_0 + - gxx=12.3.0=h8d2909c_1 + - gxx_linux-64=12.3.0=h8a814eb_1 + - idna=3.4=pyhd8ed1ab_0 + - imagesize=1.4.1=pyhd8ed1ab_0 + - iml=1.0.5=hd75c201_1003 + - ipython_genutils=0.2.0=py_1 + - json5=0.9.14=pyhd8ed1ab_0 + - jupyterlab_widgets=1.1.1=pyhd8ed1ab_0 + - kiwisolver=1.4.4=py310hbf28c38_1 + - lcalc=2.0.5=h6a8a7c6_1 + - lcms2=2.15=haa2dc70_1 + - libbrial=1.2.12=h138cd66_0 + - libclang13=16.0.6=default_h4d60ac6_1 + - libcups=2.3.3=h36d4200_3 + - libcurl=8.1.2=h409715c_0 + - liblapacke=3.9.0=17_linux64_openblas + - libpq=15.3=hbcd7760_1 + - libsystemd0=253=h8c4010b_1 + - libwebp=1.3.1=hbf2b3c1_0 + - m4rie=20150908=h7ca028e_1001 + - markupsafe=2.1.3=py310h2372a71_0 + - maxima=5.45.0=h9d73b02_3 + - mistune=3.0.0=pyhd8ed1ab_0 + - mpmath=1.3.0=pyhd8ed1ab_0 + - munkres=1.1.4=pyh9f0ad1d_0 + - nest-asyncio=1.5.6=pyhd8ed1ab_0 + - networkx=2.8.8=pyhd8ed1ab_0 + - numpy=1.25.1=py310ha4c1d20_0 + - openjpeg=2.5.0=hfec8fc6_2 + - packaging=23.1=pyhd8ed1ab_0 + - pandocfilters=1.5.0=pyhd8ed1ab_0 + - parso=0.8.3=pyhd8ed1ab_0 + - pathspec=0.11.1=pyhd8ed1ab_0 + - pickleshare=0.7.5=py_1003 + - pkgconfig=1.5.5=pyhd8ed1ab_4 + - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_0 + - pluggy=1.2.0=pyhd8ed1ab_0 + - ply=3.11=py_1 + - prometheus_client=0.17.1=pyhd8ed1ab_0 + - psutil=5.9.5=py310h1fa729e_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_0 + - pycparser=2.21=pyhd8ed1ab_0 + - pygments=2.15.1=pyhd8ed1ab_0 + - pyparsing=3.0.9=pyhd8ed1ab_0 + - pyrsistent=0.19.3=py310h1fa729e_0 + - pysocks=1.7.1=pyha2e5f31_6 + - python-fastjsonschema=2.18.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=pyhd8ed1ab_0 + - pyyaml=6.0=py310h5764c6d_5 + - pyzmq=25.1.0=py310h5bbb5d0_0 + - rfc3986-validator=0.1.1=pyh9f0ad1d_0 + - rpds-py=0.9.2=py310hcb5633a_0 + - rw=0.8=h516909a_1001 + - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 + - sagetex=3.6.1=pyhd8ed1ab_0 + - send2trash=1.8.2=pyh41d4057_0 + - setuptools=63.4.3=py310hff52083_0 + - simplegeneric=0.8.1=py_1 + - singular=4.2.1.p3=h1ea75ed_2 + - six=1.16.0=pyh6c4a22f_0 + - sniffio=1.3.0=pyhd8ed1ab_0 + - snowballstemmer=2.2.0=pyhd8ed1ab_0 + - soupsieve=2.3.2.post1=pyhd8ed1ab_0 + - sphinxcontrib-applehelp=1.0.4=pyhd8ed1ab_0 + - sphinxcontrib-devhelp=1.0.2=py_0 + - sphinxcontrib-htmlhelp=2.0.1=pyhd8ed1ab_0 + - sphinxcontrib-jsmath=1.0.1=py_0 + - sphinxcontrib-qthelp=1.0.3=py_0 + - sphinxcontrib-serializinghtml=1.1.5=pyhd8ed1ab_2 + - sympow=2.023.6=hc6ab17c_3 + - tbb=2021.9.0=hf52228f_0 + - toml=0.10.2=pyhd8ed1ab_0 + - tomli=2.0.1=pyhd8ed1ab_0 + - tomlkit=0.11.8=pyha770c72_0 + - tornado=6.3.2=py310h2372a71_0 + - traitlets=5.9.0=pyhd8ed1ab_0 + - trove-classifiers=2023.7.6=pyhd8ed1ab_0 + - typing_extensions=4.7.1=pyha770c72_0 + - typing_utils=0.1.0=pyhd8ed1ab_0 + - tzlocal=5.0.1=py310hff52083_0 + - unicodedata2=15.0.0=py310h5764c6d_0 + - vcversioner=2.16.0.0=py_1 + - webencodings=0.5.1=py_1 + - websocket-client=1.6.1=pyhd8ed1ab_0 + - wheel=0.41.0=pyhd8ed1ab_0 + - xcb-util-image=0.4.0=h8ee46fc_1 + - xkeyboard-config=2.39=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_0 + - zipp=3.16.2=pyhd8ed1ab_0 + - anyio=3.7.1=pyhd8ed1ab_0 + - asttokens=2.2.1=pyhd8ed1ab_0 + - async-lru=2.0.3=pyhd8ed1ab_0 + - babel=2.12.1=pyhd8ed1ab_1 + - backports.functools_lru_cache=1.6.5=pyhd8ed1ab_0 + - beautifulsoup4=4.12.2=pyha770c72_0 + - beniget=0.4.1=pyhd8ed1ab_0 + - blas-devel=3.9.0=17_linux64_openblas + - bleach=6.0.0=pyhd8ed1ab_0 + - brial=1.2.12=pyha3edaa6_0 + - cairo=1.16.0=hbbf8b49_1016 + - cffi=1.15.1=py310h255011f_3 + - cmake=3.26.4=hcfe8598_0 + - comm=0.1.3=pyhd8ed1ab_0 + - contourpy=1.1.0=py310hd41b1e2_0 + - cppy=1.2.1=pyhd8ed1ab_0 + - curl=8.1.2=h409715c_0 + - cxx-compiler=1.6.0=h00ab1b0_0 + - cypari2=2.1.3=py310h14ed79e_2 + - deprecation=2.1.0=pyh9f0ad1d_0 + - fonttools=4.41.1=py310h2372a71_0 + - fortran-compiler=1.6.0=heb67821_0 + - fpylll=0.5.9=py310h0dadf69_1 + - giac=1.9.0.21=h673759e_1 + - glib=2.76.4=hfc55251_0 + - html5lib=1.1=pyh9f0ad1d_0 + - importlib-metadata=6.8.0=pyha770c72_0 + - importlib_resources=6.0.0=pyhd8ed1ab_1 + - jedi=0.18.2=pyhd8ed1ab_0 + - jinja2=3.1.2=pyhd8ed1ab_1 + - jupyterlab_pygments=0.2.2=pyhd8ed1ab_0 + - libclang=16.0.6=default_h1cdf331_1 + - libgd=2.3.3=hfa28ad5_6 + - libxkbcommon=1.5.0=h5d7e998_3 + - linbox=1.6.3=h9d78c56_7 + - matplotlib-inline=0.1.6=pyhd8ed1ab_0 + - memory-allocator=0.1.2=py310h5764c6d_2 + - overrides=7.3.1=pyhd8ed1ab_0 + - pexpect=4.8.0=pyh1a96a4e_2 + - pillow=10.0.0=py310h582fbeb_0 + - pip=23.2.1=pyhd8ed1ab_0 + - pplpy=0.8.7=py310h28f6eb6_0 + - primecountpy=0.1.0=py310hd41b1e2_3 + - pulseaudio-client=16.1=hb77b528_4 + - pybind11=2.11.1=py310hd41b1e2_0 + - pyproject-api=1.5.3=pyhd8ed1ab_0 + - python-dateutil=2.8.2=pyhd8ed1ab_0 + - pytz-deprecation-shim=0.1.0.post0=py310hff52083_3 + - referencing=0.30.0=pyhd8ed1ab_0 + - rfc3339-validator=0.1.4=pyhd8ed1ab_0 + - sagemath-db-conway-polynomials=0.5.0=ha878542_1 + - sip=6.7.9=py310hc6cd4ac_0 + - suitesparse=5.10.1=h9e50725_1 + - sympy=1.12=pypyh9d50eac_103 + - terminado=0.17.1=pyh41d4057_0 + - tinycss2=1.2.1=pyhd8ed1ab_0 + - typing-extensions=4.7.1=hd8ed1ab_0 + - urllib3=2.0.4=pyhd8ed1ab_0 + - xorg-libxi=1.7.10=h7f98852_0 + - argon2-cffi-bindings=21.2.0=py310h5764c6d_3 + - blas=2.117=openblas + - compilers=1.6.0=ha770c72_0 + - cvxopt=1.3.1=py310h14a12bf_0 + - gstreamer=1.22.3=h977cf35_1 + - harfbuzz=7.3.0=hdb3a94d_0 + - hatchling=1.18.0=pyhd8ed1ab_0 + - importlib-resources=6.0.0=pyhd8ed1ab_1 + - importlib_metadata=6.8.0=hd8ed1ab_0 + - jsonschema-specifications=2023.7.1=pyhd8ed1ab_0 + - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1 + - matplotlib-base=3.7.2=py310hf38f957_0 + - platformdirs=3.9.1=pyhd8ed1ab_0 + - poetry-core=1.6.1=pyhd8ed1ab_0 + - pyqt5-sip=12.11.0=py310heca2aa9_3 + - pythran=0.13.1=py310hfb6f7a9_0 + - requests=2.31.0=pyhd8ed1ab_0 + - setuptools-scm=7.1.0=pyhd8ed1ab_0 + - stack_data=0.6.2=pyhd8ed1ab_0 + - wcwidth=0.2.6=pyhd8ed1ab_0 + - xorg-libxtst=1.2.3=h7f98852_1002 + - argon2-cffi=21.3.0=pyhd8ed1ab_0 + - gst-plugins-base=1.22.3=h938bd60_1 + - jsonschema=4.18.4=pyhd8ed1ab_0 + - jupyter_core=5.3.1=py310hff52083_0 + - openjdk=17.0.3=h19c1b89_7 + - pango=1.50.14=heaa33ce_1 + - pooch=1.7.0=pyha770c72_3 + - prompt-toolkit=3.0.39=pyha770c72_0 + - setuptools_scm=7.1.0=hd8ed1ab_0 + - sphinx=6.2.1=pyhd8ed1ab_0 + - virtualenv=20.24.1=pyhd8ed1ab_0 + - jmol=14.32.10=ha770c72_0 + - jupyter_client=8.3.0=pyhd8ed1ab_0 + - jupyter_events=0.6.3=pyhd8ed1ab_0 + - nbformat=5.9.1=pyhd8ed1ab_0 + - prompt_toolkit=3.0.39=hd8ed1ab_0 + - qt-main=5.15.8=h01ceb2d_12 + - r-base=4.3.1=hfabd6f2_1 + - scipy=1.10.1=py310ha4c1d20_3 + - sphinx-basic-ng=1.0.0b2=pyhd8ed1ab_0 + - sphinx-copybutton=0.5.2=pyhd8ed1ab_0 + - sphinxcontrib-websupport=1.2.4=pyhd8ed1ab_1 + - tox=4.6.4=pyhd8ed1ab_0 + - furo=2023.5.20=pyhd8ed1ab_1 + - ipython=8.14.0=pyh41d4057_0 + - nbclient=0.8.0=pyhd8ed1ab_0 + - pyqt=5.15.7=py310hab646b1_3 + - rpy2=3.5.11=py310r43h278f3c1_2 + - ipykernel=6.24.0=pyh71e2992_0 + - matplotlib=3.7.2=py310hff52083_0 + - nbconvert-core=7.7.2=pyhd8ed1ab_0 + - jupyter_server=2.7.0=pyhd8ed1ab_0 + - nbconvert-pandoc=7.7.2=pyhd8ed1ab_0 + - jupyter-lsp=2.2.0=pyhd8ed1ab_0 + - jupyterlab_server=2.23.0=pyhd8ed1ab_0 + - nbconvert=7.7.2=pyhd8ed1ab_0 + - notebook-shim=0.2.3=pyhd8ed1ab_0 + - jupyterlab=4.0.3=pyhd8ed1ab_0 + - notebook=7.0.0=pyhd8ed1ab_0 + - widgetsnbextension=3.6.4=pyhd8ed1ab_0 + - ipywidgets=7.7.5=pyhd8ed1ab_0 + - jupyter-jsmol=2022.1.0=pyhd8ed1ab_0 + - jupyter_sphinx=0.4.0=py310hff52083_1 diff --git a/src/environment-3.10-macos.yml b/src/environment-3.10-macos.yml new file mode 100644 index 00000000000..e7414bef1b8 --- /dev/null +++ b/src/environment-3.10-macos.yml @@ -0,0 +1,398 @@ +# Generated by conda-lock. +# platform: osx-64 +# input_hash: 7056c18e920401fcf44f349c629cbeb7f2f00f1271eeeb3827d27907e8c4ee24 + +channels: + - conda-forge +dependencies: + - _r-mutex=1.0.1=anacondar_1 + - bc=1.07.1=h0d85af4_0 + - bzip2=1.0.8=h0d85af4_4 + - c-ares=1.19.1=h0dc2134_0 + - ca-certificates=2023.7.22=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=hab24e00_0 + - fribidi=1.0.10=hbcb3906_0 + - giflib=5.2.1=hb7f2c08_3 + - icu=72.1=h7336db1_0 + - libatomic_ops=7.6.14=hb7f2c08_0 + - libbrotlicommon=1.0.9=hb7f2c08_9 + - libcxx=16.0.6=hd57cbcb_0 + - libdeflate=1.18=hac1461d_0 + - libev=4.33=haf1e3a3_1 + - libexpat=2.5.0=hf0c8a7f_1 + - libffi=3.4.2=h0d85af4_5 + - libgfortran-devel_osx-64=12.2.0=hf0fd499_32 + - libiconv=1.17=hac89ed1_0 + - libjpeg-turbo=2.1.5.1=hb7f2c08_0 + - libsodium=1.0.18=hbcb3906_1 + - libtool=2.4.7=hf0c8a7f_0 + - libuv=1.44.2=hac89ed1_0 + - libwebp-base=1.3.1=h0dc2134_0 + - libzlib=1.2.13=h8a1eda9_5 + - llvm-openmp=16.0.6=hff08bdf_0 + - m4=1.4.18=haf1e3a3_1001 + - make=4.3=h22f3db7_1 + - mathjax=3.2.2=h694c41f_0 + - metis=5.1.1=he965462_0 + - nauty=2.7.2=h0d85af4_0 + - ncurses=6.4=hf0c8a7f_0 + - 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 + - pixman=0.40.0=hbcb3906_0 + - planarity=3.0.0.5=hbcb3906_1002 + - pthread-stubs=0.4=hc929b4f_1001 + - python_abi=3.10=3_cp310 + - rhash=1.4.3=hac89ed1_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 + - 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.2.1=h2e338ed_0 + - graphite2=1.3.13=h2e338ed_1001 + - isl=0.25=hb486fe8_0 + - lerc=4.0.0=hb486fe8_0 + - libbraiding=1.1=h2e338ed_0 + - libbrotlidec=1.0.9=hb7f2c08_9 + - libbrotlienc=1.0.9=hb7f2c08_9 + - libedit=3.1.20191231=h0678c8f_2 + - libgfortran5=12.3.0=hbd3c1fe_1 + - libpng=1.6.39=ha978bb4_0 + - libsqlite=3.42.0=h58db7d2_0 + - libxcb=1.15=hb7f2c08_0 + - libxml2=2.10.4=h554bb67_0 + - lrcalc=2.1=hf0c8a7f_5 + - ninja=1.11.1=hb8565cd_0 + - openjdk=20.0.0=h7d26f99_0 + - openssl=3.1.1=h8a1eda9_1 + - pandoc=3.1.3=h9d075a6_0 + - pari-seadata=0.0.20090618=0 + - pcre2=10.40=h1c4e4bc_0 + - pkg-config=0.29.2=ha3d46e9_1008 + - primesieve=11.0=hf0c8a7f_0 + - qhull=2020.2=h940c156_2 + - readline=8.2=h9e318b2_1 + - symmetrica=3.0.1=hf0c8a7f_0 + - tapi=1100.0.11=h9ce4665_0 + - tar=1.34=hcb2f6ea_1 + - tbb=2021.9.0=hb8565cd_0 + - texinfo=7.0=pl5321hc47821c_0 + - threejs-sage=122=hd8ed1ab_2 + - tk=8.6.12=h5dbffcc_0 + - zeromq=4.3.4=he49afe7_1 + - zlib=1.2.13=h8a1eda9_5 + - zstd=1.5.2=h829000d_7 + - automake=1.16.5=pl5321h694c41f_0 + - boost-cpp=1.82.0=hd754db5_1 + - brotli-bin=1.0.9=hb7f2c08_9 + - bwidget=1.9.14=h694c41f_1 + - cddlib=1!0.94m=h0f52abe_0 + - ecl=21.2.1=hd029580_2 + - ecm=7.0.4=h343d7f2_1002 + - fonts-conda-ecosystem=1=0 + - freetype=2.12.1=h3f81eb7_1 + - gap-core=4.12.2=hc16eb5f_3 + - givaro=4.1.1=h0a799c6_3 + - glpk=5.0=h3cb5acd_0 + - jmol=14.32.9=h694c41f_0 + - krb5=1.20.1=h049b76e_0 + - libgfortran=5.0.0=12_3_0_h97931a8_1 + - libglib=2.76.4=hc62aa5d_0 + - libhomfly=1.02r6=hc929b4f_0 + - libllvm15=15.0.7=h7001e86_1 + - libnghttp2=1.52.0=he2ab024_0 + - libssh2=1.11.0=hd019ec5_0 + - libtiff=4.5.1=hf955e92_0 + - m4ri=20140914=h3f75d11_1005 + - mpfr=4.2.0=h4f9bd69_0 + - ntl=11.4.3=h0ab3c2f_1 + - pari=2.15.4=h93f793c_2_pthread + - primecount=7.6=ha894c9a_0 + - python=3.10.12=had23ca6_0_cpython + - sigtool=0.1.3=h88f4db0_0 + - sqlite=3.42.0=h2b0dec6_0 + - tachyon=0.99b6=0 + - tktable=2.10=h49f0cf7_3 + - alabaster=0.7.13=pyhd8ed1ab_0 + - appdirs=1.4.4=pyh9f0ad1d_0 + - appnope=0.1.3=pyhd8ed1ab_0 + - attrs=23.1.0=pyh71513ae_1 + - backcall=0.2.0=pyh9f0ad1d_0 + - backports=1.0=pyhd8ed1ab_3 + - backports.zoneinfo=0.2.1=py310h2ec42d9_7 + - brotli=1.0.9=hb7f2c08_9 + - brotli-python=1.0.9=py310h7a76584_9 + - cachetools=5.3.1=pyhd8ed1ab_0 + - certifi=2023.7.22=pyhd8ed1ab_0 + - chardet=5.1.0=py310h2ec42d9_0 + - charset-normalizer=3.2.0=pyhd8ed1ab_0 + - colorama=0.4.6=pyhd8ed1ab_0 + - cycler=0.11.0=pyhd8ed1ab_0 + - cysignals=1.11.2=py310h8c82e65_2 + - cython=0.29.36=py310h9e9d8ca_0 + - debugpy=1.6.7=py310h7a76584_0 + - decorator=5.1.1=pyhd8ed1ab_0 + - defusedxml=0.7.1=pyhd8ed1ab_0 + - distlib=0.3.7=pyhd8ed1ab_0 + - docutils=0.19=py310h2ec42d9_1 + - editables=0.3=pyhd8ed1ab_0 + - entrypoints=0.4=pyhd8ed1ab_0 + - exceptiongroup=1.1.2=pyhd8ed1ab_0 + - executing=1.2.0=pyhd8ed1ab_0 + - fftw=3.3.10=nompi_h4fa670e_108 + - filelock=3.12.2=pyhd8ed1ab_0 + - flit-core=3.9.0=pyhd8ed1ab_0 + - fontconfig=2.14.2=h5bb23bf_0 + - gap-defaults=4.12.2=h694c41f_3 + - gast=0.5.4=pyhd8ed1ab_0 + - gfan=0.6.2=hd793b56_1003 + - idna=3.4=pyhd8ed1ab_0 + - imagesize=1.4.1=pyhd8ed1ab_0 + - ipython_genutils=0.2.0=py_1 + - json5=0.9.14=pyhd8ed1ab_0 + - jupyterlab_widgets=1.1.1=pyhd8ed1ab_0 + - kiwisolver=1.4.4=py310ha23aa8a_1 + - lcalc=2.0.5=h3a941db_1 + - lcms2=2.15=h2dcdeff_1 + - ld64_osx-64=609=h8ce0179_13 + - libbrial=1.2.12=h8f704d5_0 + - libclang-cpp15=15.0.7=default_hdb78580_2 + - libcurl=8.1.2=hbee3ae8_0 + - libflint=2.9.0=hfd2f71f_ntl_100 + - libopenblas=0.3.23=openmp_h429af6e_0 + - libwebp=1.3.1=hc961f54_0 + - llvm-tools=15.0.7=h7001e86_1 + - m4rie=20150908=h3f75d11_1001 + - markupsafe=2.1.3=py310h6729b98_0 + - maxima=5.45.0=hd029580_3 + - mistune=3.0.0=pyhd8ed1ab_0 + - mpc=1.3.1=h81bd1dd_0 + - mpfi=1.5.4=h52b28e3_1001 + - mpmath=1.3.0=pyhd8ed1ab_0 + - munkres=1.1.4=pyh9f0ad1d_0 + - nest-asyncio=1.5.6=pyhd8ed1ab_0 + - networkx=2.8.8=pyhd8ed1ab_0 + - openjpeg=2.5.0=h13ac156_2 + - packaging=23.1=pyhd8ed1ab_0 + - pandocfilters=1.5.0=pyhd8ed1ab_0 + - parso=0.8.3=pyhd8ed1ab_0 + - pathspec=0.11.1=pyhd8ed1ab_0 + - pickleshare=0.7.5=py_1003 + - pkgconfig=1.5.5=pyhd8ed1ab_4 + - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_0 + - pluggy=1.2.0=pyhd8ed1ab_0 + - ply=3.11=py_1 + - ppl=1.2=ha60d53e_1006 + - prometheus_client=0.17.1=pyhd8ed1ab_0 + - psutil=5.9.5=py310h90acd4f_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_0 + - pycparser=2.21=pyhd8ed1ab_0 + - pygments=2.15.1=pyhd8ed1ab_0 + - pyparsing=3.0.9=pyhd8ed1ab_0 + - pyrsistent=0.19.3=py310h90acd4f_0 + - pysocks=1.7.1=pyha2e5f31_6 + - python-fastjsonschema=2.18.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=pyhd8ed1ab_0 + - pyyaml=6.0=py310h90acd4f_5 + - pyzmq=25.1.0=py310h998be00_0 + - qd=2.3.22=h2beb688_1004 + - rfc3986-validator=0.1.1=pyh9f0ad1d_0 + - rpds-py=0.9.2=py310h3461e44_0 + - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 + - sagetex=3.6.1=pyhd8ed1ab_0 + - send2trash=1.8.2=pyh41d4057_0 + - setuptools=63.4.3=py310h2ec42d9_0 + - simplegeneric=0.8.1=py_1 + - six=1.16.0=pyh6c4a22f_0 + - sniffio=1.3.0=pyhd8ed1ab_0 + - snowballstemmer=2.2.0=pyhd8ed1ab_0 + - soupsieve=2.3.2.post1=pyhd8ed1ab_0 + - sphinxcontrib-applehelp=1.0.4=pyhd8ed1ab_0 + - sphinxcontrib-devhelp=1.0.2=py_0 + - sphinxcontrib-htmlhelp=2.0.1=pyhd8ed1ab_0 + - sphinxcontrib-jsmath=1.0.1=py_0 + - sphinxcontrib-qthelp=1.0.3=py_0 + - sphinxcontrib-serializinghtml=1.1.5=pyhd8ed1ab_2 + - sympow=2.023.6=h115ba6a_3 + - toml=0.10.2=pyhd8ed1ab_0 + - tomli=2.0.1=pyhd8ed1ab_0 + - tomlkit=0.11.8=pyha770c72_0 + - tornado=6.3.2=py310h6729b98_0 + - traitlets=5.9.0=pyhd8ed1ab_0 + - trove-classifiers=2023.7.6=pyhd8ed1ab_0 + - typing_extensions=4.7.1=pyha770c72_0 + - typing_utils=0.1.0=pyhd8ed1ab_0 + - tzlocal=5.0.1=py310h2ec42d9_0 + - unicodedata2=15.0.0=py310h90acd4f_0 + - vcversioner=2.16.0.0=py_1 + - webencodings=0.5.1=py_1 + - websocket-client=1.6.1=pyhd8ed1ab_0 + - wheel=0.41.0=pyhd8ed1ab_0 + - zipp=3.16.2=pyhd8ed1ab_0 + - anyio=3.7.1=pyhd8ed1ab_0 + - arb=2.23.0=h905a977_0 + - asttokens=2.2.1=pyhd8ed1ab_0 + - async-lru=2.0.3=pyhd8ed1ab_0 + - babel=2.12.1=pyhd8ed1ab_1 + - backports.functools_lru_cache=1.6.5=pyhd8ed1ab_0 + - beautifulsoup4=4.12.2=pyha770c72_0 + - beniget=0.4.1=pyhd8ed1ab_0 + - bleach=6.0.0=pyhd8ed1ab_0 + - brial=1.2.12=pyha3edaa6_0 + - cairo=1.16.0=h09dd18c_1016 + - cctools_osx-64=973.0.1=h48a5a9d_13 + - cffi=1.15.1=py310ha78151a_3 + - clang-15=15.0.7=default_hdb78580_2 + - cmake=3.26.4=hf40c264_0 + - comm=0.1.3=pyhd8ed1ab_0 + - cppy=1.2.1=pyhd8ed1ab_0 + - curl=8.1.2=hbee3ae8_0 + - cypari2=2.1.3=py310hb5d31c9_2 + - deprecation=2.1.0=pyh9f0ad1d_0 + - eclib=20230424=hd00e801_0 + - fonttools=4.41.1=py310h6729b98_0 + - fplll=5.4.4=hdfdc905_0 + - gfortran_impl_osx-64=12.2.0=hdfd80ef_32 + - gmpy2=2.1.2=py310hb691cb2_1 + - html5lib=1.1=pyh9f0ad1d_0 + - importlib-metadata=6.8.0=pyha770c72_0 + - importlib_resources=6.0.0=pyhd8ed1ab_1 + - jedi=0.18.2=pyhd8ed1ab_0 + - jinja2=3.1.2=pyhd8ed1ab_1 + - jupyterlab_pygments=0.2.2=pyhd8ed1ab_0 + - ld64=609=ha91a046_13 + - libblas=3.9.0=17_osx64_openblas + - libgd=2.3.3=h3d994df_6 + - matplotlib-inline=0.1.6=pyhd8ed1ab_0 + - memory-allocator=0.1.2=py310h90acd4f_2 + - openblas=0.3.23=openmp_hbefa662_0 + - overrides=7.3.1=pyhd8ed1ab_0 + - pexpect=4.8.0=pyh1a96a4e_2 + - pillow=10.0.0=py310hd63a8c7_0 + - pip=23.2.1=pyhd8ed1ab_0 + - primecountpy=0.1.0=py310h88cfcbd_3 + - pybind11=2.11.1=py310h88cfcbd_0 + - pyproject-api=1.5.3=pyhd8ed1ab_0 + - python-dateutil=2.8.2=pyhd8ed1ab_0 + - pytz-deprecation-shim=0.1.0.post0=py310h2ec42d9_3 + - referencing=0.30.0=pyhd8ed1ab_0 + - rfc3339-validator=0.1.4=pyhd8ed1ab_0 + - sagemath-db-conway-polynomials=0.5.0=h033912b_1 + - singular=4.2.1.p3=hac851df_2 + - terminado=0.17.1=pyhd1c38e8_0 + - tinycss2=1.2.1=pyhd8ed1ab_0 + - typing-extensions=4.7.1=hd8ed1ab_0 + - urllib3=2.0.4=pyhd8ed1ab_0 + - argon2-cffi-bindings=21.2.0=py310h90acd4f_3 + - cctools=973.0.1=hd9ad811_13 + - clang=15.0.7=h694c41f_2 + - harfbuzz=7.3.0=h413ba03_0 + - hatchling=1.18.0=pyhd8ed1ab_0 + - importlib-resources=6.0.0=pyhd8ed1ab_1 + - importlib_metadata=6.8.0=hd8ed1ab_0 + - jsonschema-specifications=2023.7.1=pyhd8ed1ab_0 + - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1 + - libcblas=3.9.0=17_osx64_openblas + - liblapack=3.9.0=17_osx64_openblas + - platformdirs=3.9.1=pyhd8ed1ab_0 + - poetry-core=1.6.1=pyhd8ed1ab_0 + - pplpy=0.8.7=py310h190f582_0 + - requests=2.31.0=pyhd8ed1ab_0 + - setuptools-scm=7.1.0=pyhd8ed1ab_0 + - stack_data=0.6.2=pyhd8ed1ab_0 + - sympy=1.12=pypyh9d50eac_103 + - wcwidth=0.2.6=pyhd8ed1ab_0 + - argon2-cffi=21.3.0=pyhd8ed1ab_0 + - arpack=3.7.0=hefb7bc6_2 + - clangxx=15.0.7=default_hdb78580_2 + - dsdp=5.8=h6e329d1_1203 + - fflas-ffpack=2.4.3=h026fd7e_2 + - gsl=2.7=h93259b0_0 + - iml=1.0.5=h64b42ca_1003 + - jsonschema=4.18.4=pyhd8ed1ab_0 + - jupyter_core=5.3.1=py310h2ec42d9_0 + - liblapacke=3.9.0=17_osx64_openblas + - numpy=1.25.1=py310h7451ae0_0 + - pango=1.50.14=hbce5e75_1 + - pooch=1.7.0=pyha770c72_3 + - prompt-toolkit=3.0.39=pyha770c72_0 + - setuptools_scm=7.1.0=hd8ed1ab_0 + - sphinx=6.2.1=pyhd8ed1ab_0 + - suitesparse=5.10.1=h7aff33d_1 + - virtualenv=20.24.1=pyhd8ed1ab_0 + - blas-devel=3.9.0=17_osx64_openblas + - compiler-rt_osx-64=15.0.7=he1888fc_1 + - contourpy=1.1.0=py310h88cfcbd_0 + - cvxopt=1.3.1=py310ha550498_0 + - fpylll=0.5.9=py310h0d1ef73_1 + - giac=1.9.0.21=h92f3f65_1 + - igraph=0.9.10=h6560ca6_1 + - jupyter_client=8.3.0=pyhd8ed1ab_0 + - jupyter_events=0.6.3=pyhd8ed1ab_0 + - linbox=1.6.3=hdde8d14_7 + - nbformat=5.9.1=pyhd8ed1ab_0 + - prompt_toolkit=3.0.39=hd8ed1ab_0 + - scipy=1.10.1=py310h3900cf1_3 + - sphinx-basic-ng=1.0.0b2=pyhd8ed1ab_0 + - sphinx-copybutton=0.5.2=pyhd8ed1ab_0 + - sphinxcontrib-websupport=1.2.4=pyhd8ed1ab_1 + - tox=4.6.4=pyhd8ed1ab_0 + - blas=2.117=openblas + - compiler-rt=15.0.7=he1888fc_1 + - furo=2023.5.20=pyhd8ed1ab_1 + - ipython=8.14.0=pyhd1c38e8_0 + - matplotlib-base=3.7.2=py310h475a17b_0 + - nbclient=0.8.0=pyhd8ed1ab_0 + - rw=0.9=h0d85af4_0 + - clang_osx-64=15.0.7=h03d6864_3 + - ipykernel=6.24.0=pyh5fb750a_0 + - matplotlib=3.7.2=py310h2ec42d9_0 + - nbconvert-core=7.7.2=pyhd8ed1ab_0 + - c-compiler=1.6.0=h63c33a9_0 + - clangxx_osx-64=15.0.7=h2133e9c_3 + - gfortran_osx-64=12.2.0=h18f7dce_1 + - jupyter_server=2.7.0=pyhd8ed1ab_0 + - nbconvert-pandoc=7.7.2=pyhd8ed1ab_0 + - cxx-compiler=1.6.0=h1c7c39f_0 + - gfortran=12.2.0=h2c809b3_1 + - jupyter-lsp=2.2.0=pyhd8ed1ab_0 + - jupyterlab_server=2.23.0=pyhd8ed1ab_0 + - nbconvert=7.7.2=pyhd8ed1ab_0 + - notebook-shim=0.2.3=pyhd8ed1ab_0 + - pythran=0.13.1=py310h9209b79_0 + - r-base=4.3.0=h7a6543b_0 + - fortran-compiler=1.6.0=h932d759_0 + - jupyterlab=4.0.3=pyhd8ed1ab_0 + - rpy2=3.5.11=py310r43hc1335a1_2 + - compilers=1.6.0=h694c41f_0 + - notebook=7.0.0=pyhd8ed1ab_0 + - widgetsnbextension=3.6.4=pyhd8ed1ab_0 + - ipywidgets=7.7.5=pyhd8ed1ab_0 + - jupyter-jsmol=2022.1.0=pyhd8ed1ab_0 + - jupyter_sphinx=0.4.0=py310h2ec42d9_1 diff --git a/src/environment-3.11-linux.yml b/src/environment-3.11-linux.yml new file mode 100644 index 00000000000..47095e822c0 --- /dev/null +++ b/src/environment-3.11-linux.yml @@ -0,0 +1,461 @@ +# Generated by conda-lock. +# platform: linux-64 +# input_hash: 2fe7099c1d98ec324541bba0b769acbac35931b084f7e5640f0437a1ced9c5d2 + +channels: + - conda-forge +dependencies: + - _libgcc_mutex=0.1=conda_forge + - _r-mutex=1.0.1=anacondar_1 + - ca-certificates=2023.5.7=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=hab24e00_0 + - kernel-headers_linux-64=2.6.32=he073ed8_16 + - ld_impl_linux-64=2.40=h41732ed_0 + - libgcc-devel_linux-64=12.3.0=h8bca6fd_0 + - libgfortran5=13.1.0=h15d22d2_0 + - libstdcxx-devel_linux-64=12.3.0=h8bca6fd_0 + - libstdcxx-ng=13.1.0=hfd8a6a1_0 + - mathjax=3.2.2=ha770c72_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 + - python_abi=3.10=3_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 + - fonts-conda-forge=1=0 + - libgfortran-ng=13.1.0=h69a702a_0 + - libgomp=13.1.0=he5830b7_0 + - pari-seadata=0.0.20090618=0 + - sysroot_linux-64=2.12=he073ed8_16 + - threejs-sage=122=hd8ed1ab_2 + - binutils_impl_linux-64=2.40=hf600244_0 + - fonts-conda-ecosystem=1=0 + - binutils=2.40=hdd6e379_0 + - binutils_linux-64=2.40=hbdbef99_1 + - _openmp_mutex=4.5=2_kmp_llvm + - libgcc-ng=13.1.0=he5830b7_0 + - alsa-lib=1.2.8=h166bdaf_0 + - attr=2.5.1=h166bdaf_1 + - bc=1.07.1=h7f98852_0 + - bdw-gc=8.0.6=h4bd325d_0 + - bzip2=1.0.8=h7f98852_4 + - c-ares=1.19.1=hd590300_0 + - cliquer=1.22=h36c2ea0_0 + - fftw=3.3.10=nompi_hc118613_108 + - 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.2.1=h58526e2_0 + - graphite2=1.3.13=h58526e2_1001 + - icu=72.1=hcb278e6_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.1=h58526e2_0 + - libbrotlicommon=1.0.9=h166bdaf_9 + - libdeflate=1.18=h0b41bf4_0 + - libev=4.33=h516909a_1 + - libexpat=2.5.0=hcb278e6_1 + - libffi=3.4.2=h7f98852_5 + - libiconv=1.17=h166bdaf_0 + - libjpeg-turbo=2.1.5.1=h0b41bf4_0 + - libnsl=2.0.0=h7f98852_0 + - libogg=1.3.4=h7f98852_1 + - libopenblas=0.3.23=pthreads_h80387f5_0 + - libopus=1.3.1=h7f98852_1 + - libsanitizer=12.3.0=h0f45ef3_0 + - libsodium=1.0.18=h36c2ea0_1 + - libtool=2.4.7=h27087fc_0 + - libuuid=2.38.1=h0b41bf4_0 + - libuv=1.44.2=h166bdaf_0 + - libwebp-base=1.3.1=hd590300_0 + - 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_0 + - mpg123=1.31.3=hcb278e6_0 + - nauty=2.7.2=h7f98852_0 + - ncurses=6.4=hcb278e6_0 + - ninja=1.11.1=h924138e_0 + - nspr=4.35=h27087fc_0 + - openssl=3.1.1=hd590300_1 + - palp=2.20=h36c2ea0_0 + - patch=2.7.6=h7f98852_1002 + - pixman=0.40.0=h36c2ea0_0 + - pkg-config=0.29.2=h36c2ea0_1008 + - planarity=3.0.0.5=h36c2ea0_1002 + - primesieve=11.0=hcb278e6_0 + - pthread-stubs=0.4=h36c2ea0_1001 + - qd=2.3.22=h2cc385e_1004 + - qhull=2020.2=h4bd325d_2 + - rhash=1.4.3=h166bdaf_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.0.10=h7f98852_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_0 + - givaro=4.1.1=h192cbe9_1 + - glpk=5.0=h445213a_0 + - libblas=3.9.0=17_linux64_openblas + - libbrotlidec=1.0.9=h166bdaf_9 + - libbrotlienc=1.0.9=h166bdaf_9 + - libcap=2.67=he9d0100_0 + - libedit=3.1.20191231=he28a2e2_2 + - libevent=2.1.12=hf998b51_1 + - libflac=1.4.3=h59595ed_0 + - libgpg-error=1.47=h71f35ed_0 + - libhomfly=1.02r6=h36c2ea0_0 + - libnghttp2=1.52.0=h61bc06f_0 + - libpng=1.6.39=h753d276_0 + - libsqlite=3.42.0=h2797004_0 + - libssh2=1.11.0=h0841786_0 + - libvorbis=1.3.7=h9c3ff4c_0 + - libxcb=1.15=h0b41bf4_0 + - libxml2=2.11.4=h0d562d8_0 + - mpfr=4.2.0=hb012696_0 + - mysql-common=8.0.33=hf1915f5_2 + - ntl=11.4.3=hef3c4d3_1 + - openblas=0.3.23=pthreads_h855a84d_0 + - pcre2=10.40=hc3806b6_0 + - perl=5.32.1=4_hd590300_perl5 + - primecount=7.6=hcb278e6_0 + - readline=8.2=h8228510_1 + - tar=1.34=hb2e2bae_1 + - tk=8.6.12=h27826a3_0 + - xorg-fixesproto=5.0=h7f98852_1002 + - xorg-libsm=1.2.3=hd9c2040_1000 + - zeromq=4.3.4=h9c3ff4c_1 + - zlib=1.2.13=hd590300_5 + - zstd=1.5.2=hfc55251_7 + - autoconf=2.71=pl5321h2b4cb7a_1 + - boost-cpp=1.82.0=he19a28c_1 + - brotli-bin=1.0.9=h166bdaf_9 + - bwidget=1.9.14=ha770c72_1 + - ecl=21.2.1=h9d73b02_2 + - fplll=5.4.4=h8780c30_0 + - freetype=2.12.1=hca18f0e_1 + - gap-core=4.12.2=he9a28a4_3 + - gcc=12.3.0=h8d2909c_1 + - gcc_linux-64=12.3.0=h76fc315_1 + - gfan=0.6.2=hb86e20a_1003 + - gfortran_impl_linux-64=12.3.0=hfcedea8_0 + - gxx_impl_linux-64=12.3.0=he2b93b0_0 + - igraph=0.7.1=0 + - krb5=1.20.1=h81ceb04_0 + - libcblas=3.9.0=17_linux64_openblas + - libflint=2.9.0=h2f819a4_ntl_100 + - libgcrypt=1.10.1=h166bdaf_0 + - libglib=2.76.4=hebfc3b9_0 + - libhwloc=2.9.1=nocuda_h7313eea_6 + - liblapack=3.9.0=17_linux64_openblas + - libllvm16=16.0.6=h5cf9203_0 + - libsndfile=1.2.0=hb75c966_0 + - libtiff=4.5.1=h8b53f26_0 + - llvm-openmp=16.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_2 + - nss=3.89=he45b914_0 + - pandoc=3.1.3=h32600fe_0 + - pari=2.15.4=h4d4ae9b_2_pthread + - ppl=1.2=h6ec01c2_1006 + - python=3.10.12=hd12c33a_0_cpython + - sqlite=3.42.0=h2c6b66d_0 + - tachyon=0.99b6=0 + - texinfo=7.0=pl5321h0f457ee_0 + - tktable=2.10=hb7b940f_3 + - 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.6=h8ee46fc_0 + - alabaster=0.7.13=pyhd8ed1ab_0 + - appdirs=1.4.4=pyh9f0ad1d_0 + - appnope=0.1.3=pyhd8ed1ab_0 + - arb=2.23.0=h44d021b_0 + - attrs=23.1.0=pyh71513ae_1 + - automake=1.16.5=pl5321ha770c72_0 + - backcall=0.2.0=pyh9f0ad1d_0 + - backports=1.0=pyhd8ed1ab_3 + - backports.zoneinfo=0.2.1=py310hff52083_7 + - brotli=1.0.9=h166bdaf_9 + - brotli-python=1.0.9=py310hd8f1fbe_9 + - c-compiler=1.6.0=hd590300_0 + - cachetools=5.3.1=pyhd8ed1ab_0 + - certifi=2023.5.7=pyhd8ed1ab_0 + - chardet=5.1.0=py310hff52083_0 + - charset-normalizer=3.2.0=pyhd8ed1ab_0 + - colorama=0.4.6=pyhd8ed1ab_0 + - cycler=0.11.0=pyhd8ed1ab_0 + - cysignals=1.11.2=py310h945e7c7_2 + - cython=0.29.36=py310hc6cd4ac_0 + - dbus=1.13.6=h5008d03_3 + - debugpy=1.6.7=py310heca2aa9_0 + - decorator=5.1.1=pyhd8ed1ab_0 + - defusedxml=0.7.1=pyhd8ed1ab_0 + - distlib=0.3.7=pyhd8ed1ab_0 + - docutils=0.19=py310hff52083_1 + - dsdp=5.8=hd9d9efa_1203 + - eclib=20230424=hdef1efb_0 + - editables=0.3=pyhd8ed1ab_0 + - entrypoints=0.4=pyhd8ed1ab_0 + - exceptiongroup=1.1.2=pyhd8ed1ab_0 + - executing=1.2.0=pyhd8ed1ab_0 + - fflas-ffpack=2.4.3=h912ac81_2 + - filelock=3.12.2=pyhd8ed1ab_0 + - flit-core=3.9.0=pyhd8ed1ab_0 + - fontconfig=2.14.2=h14ed4e7_0 + - gap-defaults=4.12.2=ha770c72_3 + - gast=0.5.4=pyhd8ed1ab_0 + - gfortran=12.3.0=h499e0f7_1 + - gfortran_linux-64=12.3.0=h7fe76b4_1 + - glib-tools=2.76.4=hfc55251_0 + - gmpy2=2.1.2=py310h3ec546c_1 + - gsl=2.7=he838d99_0 + - gxx=12.3.0=h8d2909c_1 + - gxx_linux-64=12.3.0=h8a814eb_1 + - idna=3.4=pyhd8ed1ab_0 + - imagesize=1.4.1=pyhd8ed1ab_0 + - iml=1.0.5=hd75c201_1003 + - ipython_genutils=0.2.0=py_1 + - json5=0.9.14=pyhd8ed1ab_0 + - jupyterlab_widgets=1.1.1=pyhd8ed1ab_0 + - kiwisolver=1.4.4=py310hbf28c38_1 + - lcalc=2.0.5=h6a8a7c6_1 + - lcms2=2.15=haa2dc70_1 + - libbrial=1.2.12=h138cd66_0 + - libclang13=16.0.6=default_h4d60ac6_0 + - libcups=2.3.3=h36d4200_3 + - libcurl=8.1.2=h409715c_0 + - liblapacke=3.9.0=17_linux64_openblas + - libpq=15.3=hbcd7760_1 + - libsystemd0=253=h8c4010b_1 + - libwebp=1.3.1=hbf2b3c1_0 + - m4rie=20150908=h7ca028e_1001 + - markupsafe=2.1.3=py310h2372a71_0 + - maxima=5.45.0=h9d73b02_3 + - mistune=3.0.0=pyhd8ed1ab_0 + - mpmath=1.3.0=pyhd8ed1ab_0 + - munkres=1.1.4=pyh9f0ad1d_0 + - nest-asyncio=1.5.6=pyhd8ed1ab_0 + - networkx=2.8.8=pyhd8ed1ab_0 + - numpy=1.25.1=py310ha4c1d20_0 + - openjpeg=2.5.0=hfec8fc6_2 + - packaging=23.1=pyhd8ed1ab_0 + - pandocfilters=1.5.0=pyhd8ed1ab_0 + - parso=0.8.3=pyhd8ed1ab_0 + - pathspec=0.11.1=pyhd8ed1ab_0 + - pickleshare=0.7.5=py_1003 + - pkgconfig=1.5.5=pyhd8ed1ab_4 + - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_0 + - pluggy=1.2.0=pyhd8ed1ab_0 + - ply=3.11=py_1 + - prometheus_client=0.17.1=pyhd8ed1ab_0 + - psutil=5.9.5=py310h1fa729e_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_0 + - pycparser=2.21=pyhd8ed1ab_0 + - pygments=2.15.1=pyhd8ed1ab_0 + - pyparsing=3.0.9=pyhd8ed1ab_0 + - pyrsistent=0.19.3=py310h1fa729e_0 + - pysocks=1.7.1=pyha2e5f31_6 + - python-fastjsonschema=2.17.1=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=pyhd8ed1ab_0 + - pyyaml=6.0=py310h5764c6d_5 + - pyzmq=25.1.0=py310h5bbb5d0_0 + - rfc3986-validator=0.1.1=pyh9f0ad1d_0 + - rpds-py=0.9.2=py310hcb5633a_0 + - rw=0.8=h516909a_1001 + - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 + - sagetex=3.6.1=pyhd8ed1ab_0 + - send2trash=1.8.2=pyh41d4057_0 + - setuptools=63.4.3=py310hff52083_0 + - simplegeneric=0.8.1=py_1 + - singular=4.2.1.p3=h1ea75ed_2 + - six=1.16.0=pyh6c4a22f_0 + - sniffio=1.3.0=pyhd8ed1ab_0 + - snowballstemmer=2.2.0=pyhd8ed1ab_0 + - soupsieve=2.3.2.post1=pyhd8ed1ab_0 + - sphinxcontrib-applehelp=1.0.4=pyhd8ed1ab_0 + - sphinxcontrib-devhelp=1.0.2=py_0 + - sphinxcontrib-htmlhelp=2.0.1=pyhd8ed1ab_0 + - sphinxcontrib-jsmath=1.0.1=py_0 + - sphinxcontrib-qthelp=1.0.3=py_0 + - sphinxcontrib-serializinghtml=1.1.5=pyhd8ed1ab_2 + - sympow=2.023.6=hc6ab17c_3 + - tbb=2021.9.0=hf52228f_0 + - toml=0.10.2=pyhd8ed1ab_0 + - tomli=2.0.1=pyhd8ed1ab_0 + - tomlkit=0.11.8=pyha770c72_0 + - tornado=6.3.2=py310h2372a71_0 + - traitlets=5.9.0=pyhd8ed1ab_0 + - trove-classifiers=2023.7.6=pyhd8ed1ab_0 + - typing_extensions=4.7.1=pyha770c72_0 + - typing_utils=0.1.0=pyhd8ed1ab_0 + - tzlocal=5.0.1=py310hff52083_0 + - unicodedata2=15.0.0=py310h5764c6d_0 + - vcversioner=2.16.0.0=py_1 + - webencodings=0.5.1=py_1 + - websocket-client=1.6.1=pyhd8ed1ab_0 + - wheel=0.40.0=pyhd8ed1ab_1 + - xcb-util-image=0.4.0=h8ee46fc_1 + - xkeyboard-config=2.39=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_0 + - zipp=3.16.2=pyhd8ed1ab_0 + - anyio=3.7.1=pyhd8ed1ab_0 + - asttokens=2.2.1=pyhd8ed1ab_0 + - async-lru=2.0.3=pyhd8ed1ab_0 + - babel=2.12.1=pyhd8ed1ab_1 + - backports.functools_lru_cache=1.6.5=pyhd8ed1ab_0 + - beautifulsoup4=4.12.2=pyha770c72_0 + - beniget=0.4.1=pyhd8ed1ab_0 + - blas-devel=3.9.0=17_linux64_openblas + - bleach=6.0.0=pyhd8ed1ab_0 + - brial=1.2.12=pyha3edaa6_0 + - cairo=1.16.0=hbbf8b49_1016 + - cffi=1.15.1=py310h255011f_3 + - cmake=3.26.4=hcfe8598_0 + - comm=0.1.3=pyhd8ed1ab_0 + - contourpy=1.1.0=py310hd41b1e2_0 + - cppy=1.2.1=pyhd8ed1ab_0 + - curl=8.1.2=h409715c_0 + - cxx-compiler=1.6.0=h00ab1b0_0 + - cypari2=2.1.3=py310h14ed79e_2 + - deprecation=2.1.0=pyh9f0ad1d_0 + - fonttools=4.41.0=py310h2372a71_0 + - fortran-compiler=1.6.0=heb67821_0 + - fpylll=0.5.9=py310h0dadf69_1 + - giac=1.9.0.21=h673759e_1 + - glib=2.76.4=hfc55251_0 + - html5lib=1.1=pyh9f0ad1d_0 + - importlib-metadata=6.8.0=pyha770c72_0 + - importlib_resources=6.0.0=pyhd8ed1ab_1 + - jedi=0.18.2=pyhd8ed1ab_0 + - jinja2=3.1.2=pyhd8ed1ab_1 + - jupyterlab_pygments=0.2.2=pyhd8ed1ab_0 + - libclang=16.0.6=default_h1cdf331_0 + - libgd=2.3.3=hfa28ad5_6 + - libxkbcommon=1.5.0=h5d7e998_3 + - linbox=1.6.3=h9d78c56_7 + - matplotlib-inline=0.1.6=pyhd8ed1ab_0 + - memory-allocator=0.1.2=py310h5764c6d_2 + - overrides=7.3.1=pyhd8ed1ab_0 + - pexpect=4.8.0=pyh1a96a4e_2 + - pillow=10.0.0=py310h582fbeb_0 + - pip=23.2=pyhd8ed1ab_0 + - pplpy=0.8.7=py310h28f6eb6_0 + - primecountpy=0.1.0=py310hd41b1e2_3 + - pulseaudio-client=16.1=hb77b528_4 + - pybind11=2.11.1=py310hd41b1e2_0 + - pyproject-api=1.5.3=pyhd8ed1ab_0 + - python-dateutil=2.8.2=pyhd8ed1ab_0 + - pytz-deprecation-shim=0.1.0.post0=py310hff52083_3 + - referencing=0.30.0=pyhd8ed1ab_0 + - rfc3339-validator=0.1.4=pyhd8ed1ab_0 + - sagemath-db-conway-polynomials=0.5.0=ha878542_1 + - sip=6.7.9=py310hc6cd4ac_0 + - suitesparse=5.10.1=h9e50725_1 + - sympy=1.12=pypyh9d50eac_103 + - terminado=0.17.1=pyh41d4057_0 + - tinycss2=1.2.1=pyhd8ed1ab_0 + - typing-extensions=4.7.1=hd8ed1ab_0 + - urllib3=2.0.4=pyhd8ed1ab_0 + - xorg-libxi=1.7.10=h7f98852_0 + - argon2-cffi-bindings=21.2.0=py310h5764c6d_3 + - blas=2.117=openblas + - compilers=1.6.0=ha770c72_0 + - cvxopt=1.3.1=py310h14a12bf_0 + - gstreamer=1.22.3=h977cf35_1 + - harfbuzz=7.3.0=hdb3a94d_0 + - hatchling=1.18.0=pyhd8ed1ab_0 + - importlib-resources=6.0.0=pyhd8ed1ab_1 + - importlib_metadata=6.8.0=hd8ed1ab_0 + - jsonschema-specifications=2023.7.1=pyhd8ed1ab_0 + - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1 + - matplotlib-base=3.7.2=py310hf38f957_0 + - platformdirs=3.9.1=pyhd8ed1ab_0 + - poetry-core=1.6.1=pyhd8ed1ab_0 + - pyqt5-sip=12.11.0=py310heca2aa9_3 + - pythran=0.13.1=py310hfb6f7a9_0 + - requests=2.31.0=pyhd8ed1ab_0 + - setuptools-scm=7.1.0=pyhd8ed1ab_0 + - stack_data=0.6.2=pyhd8ed1ab_0 + - wcwidth=0.2.6=pyhd8ed1ab_0 + - xorg-libxtst=1.2.3=h7f98852_1002 + - argon2-cffi=21.3.0=pyhd8ed1ab_0 + - gst-plugins-base=1.22.3=h938bd60_1 + - jsonschema=4.18.4=pyhd8ed1ab_0 + - jupyter_core=5.3.1=py310hff52083_0 + - openjdk=17.0.3=h19c1b89_7 + - pango=1.50.14=heaa33ce_1 + - pooch=1.7.0=pyha770c72_3 + - prompt-toolkit=3.0.39=pyha770c72_0 + - setuptools_scm=7.1.0=hd8ed1ab_0 + - sphinx=6.2.1=pyhd8ed1ab_0 + - virtualenv=20.24.1=pyhd8ed1ab_0 + - jmol=14.32.10=ha770c72_0 + - jupyter_client=8.3.0=pyhd8ed1ab_0 + - jupyter_events=0.6.3=pyhd8ed1ab_0 + - nbformat=5.9.1=pyhd8ed1ab_0 + - prompt_toolkit=3.0.39=hd8ed1ab_0 + - qt-main=5.15.8=h01ceb2d_12 + - r-base=4.3.1=hfabd6f2_1 + - scipy=1.10.1=py310ha4c1d20_3 + - sphinx-basic-ng=1.0.0b2=pyhd8ed1ab_0 + - sphinx-copybutton=0.5.2=pyhd8ed1ab_0 + - sphinxcontrib-websupport=1.2.4=pyhd8ed1ab_1 + - tox=4.6.4=pyhd8ed1ab_0 + - furo=2023.5.20=pyhd8ed1ab_1 + - ipython=8.14.0=pyh41d4057_0 + - nbclient=0.8.0=pyhd8ed1ab_0 + - pyqt=5.15.7=py310hab646b1_3 + - rpy2=3.5.11=py310r43h278f3c1_2 + - ipykernel=6.24.0=pyh71e2992_0 + - matplotlib=3.7.2=py310hff52083_0 + - nbconvert-core=7.7.2=pyhd8ed1ab_0 + - jupyter_server=2.7.0=pyhd8ed1ab_0 + - nbconvert-pandoc=7.7.2=pyhd8ed1ab_0 + - jupyter-lsp=2.2.0=pyhd8ed1ab_0 + - jupyterlab_server=2.23.0=pyhd8ed1ab_0 + - nbconvert=7.7.2=pyhd8ed1ab_0 + - notebook-shim=0.2.3=pyhd8ed1ab_0 + - jupyterlab=4.0.3=pyhd8ed1ab_0 + - notebook=7.0.0=pyhd8ed1ab_0 + - widgetsnbextension=3.6.4=pyhd8ed1ab_0 + - ipywidgets=7.7.5=pyhd8ed1ab_0 + - jupyter-jsmol=2022.1.0=pyhd8ed1ab_0 + - jupyter_sphinx=0.4.0=py310hff52083_1 diff --git a/src/environment-3.11-macos.yml b/src/environment-3.11-macos.yml new file mode 100644 index 00000000000..03f77b45f02 --- /dev/null +++ b/src/environment-3.11-macos.yml @@ -0,0 +1,398 @@ +# Generated by conda-lock. +# platform: osx-64 +# input_hash: 7056c18e920401fcf44f349c629cbeb7f2f00f1271eeeb3827d27907e8c4ee24 + +channels: + - conda-forge +dependencies: + - _r-mutex=1.0.1=anacondar_1 + - bc=1.07.1=h0d85af4_0 + - bzip2=1.0.8=h0d85af4_4 + - c-ares=1.19.1=h0dc2134_0 + - ca-certificates=2023.5.7=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=hab24e00_0 + - fribidi=1.0.10=hbcb3906_0 + - giflib=5.2.1=hb7f2c08_3 + - icu=72.1=h7336db1_0 + - libatomic_ops=7.6.14=hb7f2c08_0 + - libbrotlicommon=1.0.9=hb7f2c08_9 + - libcxx=16.0.6=hd57cbcb_0 + - libdeflate=1.18=hac1461d_0 + - libev=4.33=haf1e3a3_1 + - libexpat=2.5.0=hf0c8a7f_1 + - libffi=3.4.2=h0d85af4_5 + - libgfortran-devel_osx-64=12.2.0=hf0fd499_32 + - libiconv=1.17=hac89ed1_0 + - libjpeg-turbo=2.1.5.1=hb7f2c08_0 + - libsodium=1.0.18=hbcb3906_1 + - libtool=2.4.7=hf0c8a7f_0 + - libuv=1.44.2=hac89ed1_0 + - libwebp-base=1.3.1=h0dc2134_0 + - libzlib=1.2.13=h8a1eda9_5 + - llvm-openmp=16.0.6=hff08bdf_0 + - m4=1.4.18=haf1e3a3_1001 + - make=4.3=h22f3db7_1 + - mathjax=3.2.2=h694c41f_0 + - metis=5.1.1=he965462_0 + - nauty=2.7.2=h0d85af4_0 + - ncurses=6.4=hf0c8a7f_0 + - 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 + - pixman=0.40.0=hbcb3906_0 + - planarity=3.0.0.5=hbcb3906_1002 + - pthread-stubs=0.4=hc929b4f_1001 + - python_abi=3.10=3_cp310 + - rhash=1.4.3=hac89ed1_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 + - 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.2.1=h2e338ed_0 + - graphite2=1.3.13=h2e338ed_1001 + - isl=0.25=hb486fe8_0 + - lerc=4.0.0=hb486fe8_0 + - libbraiding=1.1=h2e338ed_0 + - libbrotlidec=1.0.9=hb7f2c08_9 + - libbrotlienc=1.0.9=hb7f2c08_9 + - libedit=3.1.20191231=h0678c8f_2 + - libgfortran5=12.2.0=he409387_32 + - libpng=1.6.39=ha978bb4_0 + - libsqlite=3.42.0=h58db7d2_0 + - libxcb=1.15=hb7f2c08_0 + - libxml2=2.10.4=h554bb67_0 + - lrcalc=2.1=hf0c8a7f_5 + - ninja=1.11.1=hb8565cd_0 + - openjdk=20.0.0=h7d26f99_0 + - openssl=3.1.1=h8a1eda9_1 + - pandoc=3.1.3=h9d075a6_0 + - pari-seadata=0.0.20090618=0 + - pcre2=10.40=h1c4e4bc_0 + - pkg-config=0.29.2=ha3d46e9_1008 + - primesieve=11.0=hf0c8a7f_0 + - qhull=2020.2=h940c156_2 + - readline=8.2=h9e318b2_1 + - symmetrica=3.0.1=hf0c8a7f_0 + - tapi=1100.0.11=h9ce4665_0 + - tar=1.34=hcb2f6ea_1 + - tbb=2021.9.0=hb8565cd_0 + - texinfo=7.0=pl5321hc47821c_0 + - threejs-sage=122=hd8ed1ab_2 + - tk=8.6.12=h5dbffcc_0 + - zeromq=4.3.4=he49afe7_1 + - zlib=1.2.13=h8a1eda9_5 + - zstd=1.5.2=h829000d_7 + - automake=1.16.5=pl5321h694c41f_0 + - boost-cpp=1.82.0=hd754db5_1 + - brotli-bin=1.0.9=hb7f2c08_9 + - bwidget=1.9.14=h694c41f_1 + - cddlib=1!0.94m=h0f52abe_0 + - ecl=21.2.1=hd029580_2 + - ecm=7.0.4=h343d7f2_1002 + - fonts-conda-ecosystem=1=0 + - freetype=2.12.1=h3f81eb7_1 + - gap-core=4.12.2=hc16eb5f_3 + - givaro=4.1.1=h0a799c6_3 + - glpk=5.0=h3cb5acd_0 + - jmol=14.32.9=h694c41f_0 + - krb5=1.20.1=h049b76e_0 + - libgfortran=5.0.0=11_3_0_h97931a8_32 + - libglib=2.76.4=hc62aa5d_0 + - libhomfly=1.02r6=hc929b4f_0 + - libllvm15=15.0.7=h7001e86_1 + - libnghttp2=1.52.0=he2ab024_0 + - libssh2=1.11.0=hd019ec5_0 + - libtiff=4.5.1=hf955e92_0 + - m4ri=20140914=h3f75d11_1005 + - mpfr=4.2.0=h4f9bd69_0 + - ntl=11.4.3=h0ab3c2f_1 + - pari=2.15.4=h93f793c_2_pthread + - primecount=7.6=ha894c9a_0 + - python=3.10.12=had23ca6_0_cpython + - sigtool=0.1.3=h88f4db0_0 + - sqlite=3.42.0=h2b0dec6_0 + - tachyon=0.99b6=0 + - tktable=2.10=h49f0cf7_3 + - alabaster=0.7.13=pyhd8ed1ab_0 + - appdirs=1.4.4=pyh9f0ad1d_0 + - appnope=0.1.3=pyhd8ed1ab_0 + - attrs=23.1.0=pyh71513ae_1 + - backcall=0.2.0=pyh9f0ad1d_0 + - backports=1.0=pyhd8ed1ab_3 + - backports.zoneinfo=0.2.1=py310h2ec42d9_7 + - brotli=1.0.9=hb7f2c08_9 + - brotli-python=1.0.9=py310h7a76584_9 + - cachetools=5.3.1=pyhd8ed1ab_0 + - certifi=2023.5.7=pyhd8ed1ab_0 + - chardet=5.1.0=py310h2ec42d9_0 + - charset-normalizer=3.2.0=pyhd8ed1ab_0 + - colorama=0.4.6=pyhd8ed1ab_0 + - cycler=0.11.0=pyhd8ed1ab_0 + - cysignals=1.11.2=py310h8c82e65_2 + - cython=0.29.36=py310h9e9d8ca_0 + - debugpy=1.6.7=py310h7a76584_0 + - decorator=5.1.1=pyhd8ed1ab_0 + - defusedxml=0.7.1=pyhd8ed1ab_0 + - distlib=0.3.7=pyhd8ed1ab_0 + - docutils=0.19=py310h2ec42d9_1 + - editables=0.3=pyhd8ed1ab_0 + - entrypoints=0.4=pyhd8ed1ab_0 + - exceptiongroup=1.1.2=pyhd8ed1ab_0 + - executing=1.2.0=pyhd8ed1ab_0 + - fftw=3.3.10=nompi_h4fa670e_108 + - filelock=3.12.2=pyhd8ed1ab_0 + - flit-core=3.9.0=pyhd8ed1ab_0 + - fontconfig=2.14.2=h5bb23bf_0 + - gap-defaults=4.12.2=h694c41f_3 + - gast=0.5.4=pyhd8ed1ab_0 + - gfan=0.6.2=hd793b56_1003 + - idna=3.4=pyhd8ed1ab_0 + - imagesize=1.4.1=pyhd8ed1ab_0 + - ipython_genutils=0.2.0=py_1 + - json5=0.9.14=pyhd8ed1ab_0 + - jupyterlab_widgets=1.1.1=pyhd8ed1ab_0 + - kiwisolver=1.4.4=py310ha23aa8a_1 + - lcalc=2.0.5=h3a941db_1 + - lcms2=2.15=h2dcdeff_1 + - ld64_osx-64=609=h8ce0179_13 + - libbrial=1.2.12=h8f704d5_0 + - libclang-cpp15=15.0.7=default_hdb78580_2 + - libcurl=8.1.2=hbee3ae8_0 + - libflint=2.9.0=hfd2f71f_ntl_100 + - libopenblas=0.3.23=openmp_h429af6e_0 + - libwebp=1.3.1=hc961f54_0 + - llvm-tools=15.0.7=h7001e86_1 + - m4rie=20150908=h3f75d11_1001 + - markupsafe=2.1.3=py310h6729b98_0 + - maxima=5.45.0=hd029580_3 + - mistune=3.0.0=pyhd8ed1ab_0 + - mpc=1.3.1=h81bd1dd_0 + - mpfi=1.5.4=h52b28e3_1001 + - mpmath=1.3.0=pyhd8ed1ab_0 + - munkres=1.1.4=pyh9f0ad1d_0 + - nest-asyncio=1.5.6=pyhd8ed1ab_0 + - networkx=2.8.8=pyhd8ed1ab_0 + - openjpeg=2.5.0=h13ac156_2 + - packaging=23.1=pyhd8ed1ab_0 + - pandocfilters=1.5.0=pyhd8ed1ab_0 + - parso=0.8.3=pyhd8ed1ab_0 + - pathspec=0.11.1=pyhd8ed1ab_0 + - pickleshare=0.7.5=py_1003 + - pkgconfig=1.5.5=pyhd8ed1ab_4 + - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_0 + - pluggy=1.2.0=pyhd8ed1ab_0 + - ply=3.11=py_1 + - ppl=1.2=ha60d53e_1006 + - prometheus_client=0.17.1=pyhd8ed1ab_0 + - psutil=5.9.5=py310h90acd4f_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_0 + - pycparser=2.21=pyhd8ed1ab_0 + - pygments=2.15.1=pyhd8ed1ab_0 + - pyparsing=3.0.9=pyhd8ed1ab_0 + - pyrsistent=0.19.3=py310h90acd4f_0 + - pysocks=1.7.1=pyha2e5f31_6 + - python-fastjsonschema=2.17.1=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=pyhd8ed1ab_0 + - pyyaml=6.0=py310h90acd4f_5 + - pyzmq=25.1.0=py310h998be00_0 + - qd=2.3.22=h2beb688_1004 + - rfc3986-validator=0.1.1=pyh9f0ad1d_0 + - rpds-py=0.9.2=py310h3461e44_0 + - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 + - sagetex=3.6.1=pyhd8ed1ab_0 + - send2trash=1.8.2=pyh41d4057_0 + - setuptools=63.4.3=py310h2ec42d9_0 + - simplegeneric=0.8.1=py_1 + - six=1.16.0=pyh6c4a22f_0 + - sniffio=1.3.0=pyhd8ed1ab_0 + - snowballstemmer=2.2.0=pyhd8ed1ab_0 + - soupsieve=2.3.2.post1=pyhd8ed1ab_0 + - sphinxcontrib-applehelp=1.0.4=pyhd8ed1ab_0 + - sphinxcontrib-devhelp=1.0.2=py_0 + - sphinxcontrib-htmlhelp=2.0.1=pyhd8ed1ab_0 + - sphinxcontrib-jsmath=1.0.1=py_0 + - sphinxcontrib-qthelp=1.0.3=py_0 + - sphinxcontrib-serializinghtml=1.1.5=pyhd8ed1ab_2 + - sympow=2.023.6=h115ba6a_3 + - toml=0.10.2=pyhd8ed1ab_0 + - tomli=2.0.1=pyhd8ed1ab_0 + - tomlkit=0.11.8=pyha770c72_0 + - tornado=6.3.2=py310h6729b98_0 + - traitlets=5.9.0=pyhd8ed1ab_0 + - trove-classifiers=2023.7.6=pyhd8ed1ab_0 + - typing_extensions=4.7.1=pyha770c72_0 + - typing_utils=0.1.0=pyhd8ed1ab_0 + - tzlocal=5.0.1=py310h2ec42d9_0 + - unicodedata2=15.0.0=py310h90acd4f_0 + - vcversioner=2.16.0.0=py_1 + - webencodings=0.5.1=py_1 + - websocket-client=1.6.1=pyhd8ed1ab_0 + - wheel=0.40.0=pyhd8ed1ab_1 + - zipp=3.16.2=pyhd8ed1ab_0 + - anyio=3.7.1=pyhd8ed1ab_0 + - arb=2.23.0=h905a977_0 + - asttokens=2.2.1=pyhd8ed1ab_0 + - async-lru=2.0.3=pyhd8ed1ab_0 + - babel=2.12.1=pyhd8ed1ab_1 + - backports.functools_lru_cache=1.6.5=pyhd8ed1ab_0 + - beautifulsoup4=4.12.2=pyha770c72_0 + - beniget=0.4.1=pyhd8ed1ab_0 + - bleach=6.0.0=pyhd8ed1ab_0 + - brial=1.2.12=pyha3edaa6_0 + - cairo=1.16.0=h09dd18c_1016 + - cctools_osx-64=973.0.1=h48a5a9d_13 + - cffi=1.15.1=py310ha78151a_3 + - clang-15=15.0.7=default_hdb78580_2 + - cmake=3.26.4=hf40c264_0 + - comm=0.1.3=pyhd8ed1ab_0 + - cppy=1.2.1=pyhd8ed1ab_0 + - curl=8.1.2=hbee3ae8_0 + - cypari2=2.1.3=py310hb5d31c9_2 + - deprecation=2.1.0=pyh9f0ad1d_0 + - eclib=20230424=hd00e801_0 + - fonttools=4.41.0=py310h6729b98_0 + - fplll=5.4.4=hdfdc905_0 + - gfortran_impl_osx-64=12.2.0=hdfd80ef_32 + - gmpy2=2.1.2=py310hb691cb2_1 + - html5lib=1.1=pyh9f0ad1d_0 + - importlib-metadata=6.8.0=pyha770c72_0 + - importlib_resources=6.0.0=pyhd8ed1ab_1 + - jedi=0.18.2=pyhd8ed1ab_0 + - jinja2=3.1.2=pyhd8ed1ab_1 + - jupyterlab_pygments=0.2.2=pyhd8ed1ab_0 + - ld64=609=ha91a046_13 + - libblas=3.9.0=17_osx64_openblas + - libgd=2.3.3=h3d994df_6 + - matplotlib-inline=0.1.6=pyhd8ed1ab_0 + - memory-allocator=0.1.2=py310h90acd4f_2 + - openblas=0.3.23=openmp_hbefa662_0 + - overrides=7.3.1=pyhd8ed1ab_0 + - pexpect=4.8.0=pyh1a96a4e_2 + - pillow=10.0.0=py310hd63a8c7_0 + - pip=23.2=pyhd8ed1ab_0 + - primecountpy=0.1.0=py310h88cfcbd_3 + - pybind11=2.11.1=py310h88cfcbd_0 + - pyproject-api=1.5.3=pyhd8ed1ab_0 + - python-dateutil=2.8.2=pyhd8ed1ab_0 + - pytz-deprecation-shim=0.1.0.post0=py310h2ec42d9_3 + - referencing=0.30.0=pyhd8ed1ab_0 + - rfc3339-validator=0.1.4=pyhd8ed1ab_0 + - sagemath-db-conway-polynomials=0.5.0=h033912b_1 + - singular=4.2.1.p3=hac851df_2 + - terminado=0.17.1=pyhd1c38e8_0 + - tinycss2=1.2.1=pyhd8ed1ab_0 + - typing-extensions=4.7.1=hd8ed1ab_0 + - urllib3=2.0.4=pyhd8ed1ab_0 + - argon2-cffi-bindings=21.2.0=py310h90acd4f_3 + - cctools=973.0.1=hd9ad811_13 + - clang=15.0.7=h694c41f_2 + - harfbuzz=7.3.0=h413ba03_0 + - hatchling=1.18.0=pyhd8ed1ab_0 + - importlib-resources=6.0.0=pyhd8ed1ab_1 + - importlib_metadata=6.8.0=hd8ed1ab_0 + - jsonschema-specifications=2023.7.1=pyhd8ed1ab_0 + - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1 + - libcblas=3.9.0=17_osx64_openblas + - liblapack=3.9.0=17_osx64_openblas + - platformdirs=3.9.1=pyhd8ed1ab_0 + - poetry-core=1.6.1=pyhd8ed1ab_0 + - pplpy=0.8.7=py310h190f582_0 + - requests=2.31.0=pyhd8ed1ab_0 + - setuptools-scm=7.1.0=pyhd8ed1ab_0 + - stack_data=0.6.2=pyhd8ed1ab_0 + - sympy=1.12=pypyh9d50eac_103 + - wcwidth=0.2.6=pyhd8ed1ab_0 + - argon2-cffi=21.3.0=pyhd8ed1ab_0 + - arpack=3.7.0=hefb7bc6_2 + - clangxx=15.0.7=default_hdb78580_2 + - dsdp=5.8=h6e329d1_1203 + - fflas-ffpack=2.4.3=h026fd7e_2 + - gsl=2.7=h93259b0_0 + - iml=1.0.5=h64b42ca_1003 + - jsonschema=4.18.4=pyhd8ed1ab_0 + - jupyter_core=5.3.1=py310h2ec42d9_0 + - liblapacke=3.9.0=17_osx64_openblas + - numpy=1.25.1=py310h7451ae0_0 + - pango=1.50.14=hbce5e75_1 + - pooch=1.7.0=pyha770c72_3 + - prompt-toolkit=3.0.39=pyha770c72_0 + - setuptools_scm=7.1.0=hd8ed1ab_0 + - sphinx=6.2.1=pyhd8ed1ab_0 + - suitesparse=5.10.1=h7aff33d_1 + - virtualenv=20.24.1=pyhd8ed1ab_0 + - blas-devel=3.9.0=17_osx64_openblas + - compiler-rt_osx-64=15.0.7=he1888fc_1 + - contourpy=1.1.0=py310h88cfcbd_0 + - cvxopt=1.3.1=py310ha550498_0 + - fpylll=0.5.9=py310h0d1ef73_1 + - giac=1.9.0.21=h92f3f65_1 + - igraph=0.9.10=h6560ca6_1 + - jupyter_client=8.3.0=pyhd8ed1ab_0 + - jupyter_events=0.6.3=pyhd8ed1ab_0 + - linbox=1.6.3=hdde8d14_7 + - nbformat=5.9.1=pyhd8ed1ab_0 + - prompt_toolkit=3.0.39=hd8ed1ab_0 + - scipy=1.10.1=py310h3900cf1_3 + - sphinx-basic-ng=1.0.0b2=pyhd8ed1ab_0 + - sphinx-copybutton=0.5.2=pyhd8ed1ab_0 + - sphinxcontrib-websupport=1.2.4=pyhd8ed1ab_1 + - tox=4.6.4=pyhd8ed1ab_0 + - blas=2.117=openblas + - compiler-rt=15.0.7=he1888fc_1 + - furo=2023.5.20=pyhd8ed1ab_1 + - ipython=8.14.0=pyhd1c38e8_0 + - matplotlib-base=3.7.2=py310h475a17b_0 + - nbclient=0.8.0=pyhd8ed1ab_0 + - rw=0.9=h0d85af4_0 + - clang_osx-64=15.0.7=h03d6864_3 + - ipykernel=6.24.0=pyh5fb750a_0 + - matplotlib=3.7.2=py310h2ec42d9_0 + - nbconvert-core=7.7.2=pyhd8ed1ab_0 + - c-compiler=1.6.0=h63c33a9_0 + - clangxx_osx-64=15.0.7=h2133e9c_3 + - gfortran_osx-64=12.2.0=h18f7dce_1 + - jupyter_server=2.7.0=pyhd8ed1ab_0 + - nbconvert-pandoc=7.7.2=pyhd8ed1ab_0 + - cxx-compiler=1.6.0=h1c7c39f_0 + - gfortran=12.2.0=h2c809b3_1 + - jupyter-lsp=2.2.0=pyhd8ed1ab_0 + - jupyterlab_server=2.23.0=pyhd8ed1ab_0 + - nbconvert=7.7.2=pyhd8ed1ab_0 + - notebook-shim=0.2.3=pyhd8ed1ab_0 + - pythran=0.13.1=py310h9209b79_0 + - r-base=4.3.0=h7a6543b_0 + - fortran-compiler=1.6.0=h932d759_0 + - jupyterlab=4.0.3=pyhd8ed1ab_0 + - rpy2=3.5.11=py310r43hc1335a1_2 + - compilers=1.6.0=h694c41f_0 + - notebook=7.0.0=pyhd8ed1ab_0 + - widgetsnbextension=3.6.4=pyhd8ed1ab_0 + - ipywidgets=7.7.5=pyhd8ed1ab_0 + - jupyter-jsmol=2022.1.0=pyhd8ed1ab_0 + - jupyter_sphinx=0.4.0=py310h2ec42d9_1 diff --git a/src/environment-3.9-linux.yml b/src/environment-3.9-linux.yml new file mode 100644 index 00000000000..8d7492d9fb7 --- /dev/null +++ b/src/environment-3.9-linux.yml @@ -0,0 +1,461 @@ +# Generated by conda-lock. +# platform: linux-64 +# input_hash: 2fe7099c1d98ec324541bba0b769acbac35931b084f7e5640f0437a1ced9c5d2 + +channels: + - conda-forge +dependencies: + - _libgcc_mutex=0.1=conda_forge + - _r-mutex=1.0.1=anacondar_1 + - ca-certificates=2023.7.22=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=hab24e00_0 + - kernel-headers_linux-64=2.6.32=he073ed8_16 + - ld_impl_linux-64=2.40=h41732ed_0 + - libgcc-devel_linux-64=12.3.0=h8bca6fd_0 + - libgfortran5=13.1.0=h15d22d2_0 + - libstdcxx-devel_linux-64=12.3.0=h8bca6fd_0 + - libstdcxx-ng=13.1.0=hfd8a6a1_0 + - mathjax=3.2.2=ha770c72_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 + - python_abi=3.10=3_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 + - fonts-conda-forge=1=0 + - libgfortran-ng=13.1.0=h69a702a_0 + - libgomp=13.1.0=he5830b7_0 + - pari-seadata=0.0.20090618=0 + - sysroot_linux-64=2.12=he073ed8_16 + - threejs-sage=122=hd8ed1ab_2 + - binutils_impl_linux-64=2.40=hf600244_0 + - fonts-conda-ecosystem=1=0 + - binutils=2.40=hdd6e379_0 + - binutils_linux-64=2.40=hbdbef99_1 + - _openmp_mutex=4.5=2_kmp_llvm + - libgcc-ng=13.1.0=he5830b7_0 + - alsa-lib=1.2.8=h166bdaf_0 + - attr=2.5.1=h166bdaf_1 + - bc=1.07.1=h7f98852_0 + - bdw-gc=8.0.6=h4bd325d_0 + - bzip2=1.0.8=h7f98852_4 + - c-ares=1.19.1=hd590300_0 + - cliquer=1.22=h36c2ea0_0 + - fftw=3.3.10=nompi_hc118613_108 + - 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.2.1=h58526e2_0 + - graphite2=1.3.13=h58526e2_1001 + - icu=72.1=hcb278e6_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.1=h58526e2_0 + - libbrotlicommon=1.0.9=h166bdaf_9 + - libdeflate=1.18=h0b41bf4_0 + - libev=4.33=h516909a_1 + - libexpat=2.5.0=hcb278e6_1 + - libffi=3.4.2=h7f98852_5 + - libiconv=1.17=h166bdaf_0 + - libjpeg-turbo=2.1.5.1=h0b41bf4_0 + - libnsl=2.0.0=h7f98852_0 + - libogg=1.3.4=h7f98852_1 + - libopenblas=0.3.23=pthreads_h80387f5_0 + - libopus=1.3.1=h7f98852_1 + - libsanitizer=12.3.0=h0f45ef3_0 + - libsodium=1.0.18=h36c2ea0_1 + - libtool=2.4.7=h27087fc_0 + - libuuid=2.38.1=h0b41bf4_0 + - libuv=1.44.2=h166bdaf_0 + - libwebp-base=1.3.1=hd590300_0 + - 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_0 + - mpg123=1.31.3=hcb278e6_0 + - nauty=2.7.2=h7f98852_0 + - ncurses=6.4=hcb278e6_0 + - ninja=1.11.1=h924138e_0 + - nspr=4.35=h27087fc_0 + - openssl=3.1.1=hd590300_1 + - palp=2.20=h36c2ea0_0 + - patch=2.7.6=h7f98852_1002 + - pixman=0.40.0=h36c2ea0_0 + - pkg-config=0.29.2=h36c2ea0_1008 + - planarity=3.0.0.5=h36c2ea0_1002 + - primesieve=11.0=hcb278e6_0 + - pthread-stubs=0.4=h36c2ea0_1001 + - qd=2.3.22=h2cc385e_1004 + - qhull=2020.2=h4bd325d_2 + - rhash=1.4.3=h166bdaf_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.0.10=h7f98852_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_0 + - givaro=4.1.1=h192cbe9_1 + - glpk=5.0=h445213a_0 + - libblas=3.9.0=17_linux64_openblas + - libbrotlidec=1.0.9=h166bdaf_9 + - libbrotlienc=1.0.9=h166bdaf_9 + - libcap=2.67=he9d0100_0 + - libedit=3.1.20191231=he28a2e2_2 + - libevent=2.1.12=hf998b51_1 + - libflac=1.4.3=h59595ed_0 + - libgpg-error=1.47=h71f35ed_0 + - libhomfly=1.02r6=h36c2ea0_0 + - libnghttp2=1.52.0=h61bc06f_0 + - libpng=1.6.39=h753d276_0 + - libsqlite=3.42.0=h2797004_0 + - libssh2=1.11.0=h0841786_0 + - libvorbis=1.3.7=h9c3ff4c_0 + - libxcb=1.15=h0b41bf4_0 + - libxml2=2.11.4=h0d562d8_0 + - mpfr=4.2.0=hb012696_0 + - mysql-common=8.0.33=hf1915f5_2 + - ntl=11.4.3=hef3c4d3_1 + - openblas=0.3.23=pthreads_h855a84d_0 + - pcre2=10.40=hc3806b6_0 + - perl=5.32.1=4_hd590300_perl5 + - primecount=7.6=hcb278e6_0 + - readline=8.2=h8228510_1 + - tar=1.34=hb2e2bae_1 + - tk=8.6.12=h27826a3_0 + - xorg-fixesproto=5.0=h7f98852_1002 + - xorg-libsm=1.2.3=hd9c2040_1000 + - zeromq=4.3.4=h9c3ff4c_1 + - zlib=1.2.13=hd590300_5 + - zstd=1.5.2=hfc55251_7 + - autoconf=2.71=pl5321h2b4cb7a_1 + - boost-cpp=1.82.0=he19a28c_1 + - brotli-bin=1.0.9=h166bdaf_9 + - bwidget=1.9.14=ha770c72_1 + - ecl=21.2.1=h9d73b02_2 + - fplll=5.4.4=h8780c30_0 + - freetype=2.12.1=hca18f0e_1 + - gap-core=4.12.2=he9a28a4_3 + - gcc=12.3.0=h8d2909c_1 + - gcc_linux-64=12.3.0=h76fc315_1 + - gfan=0.6.2=hb86e20a_1003 + - gfortran_impl_linux-64=12.3.0=hfcedea8_0 + - gxx_impl_linux-64=12.3.0=he2b93b0_0 + - igraph=0.7.1=0 + - krb5=1.20.1=h81ceb04_0 + - libcblas=3.9.0=17_linux64_openblas + - libflint=2.9.0=h2f819a4_ntl_100 + - libgcrypt=1.10.1=h166bdaf_0 + - libglib=2.76.4=hebfc3b9_0 + - libhwloc=2.9.1=nocuda_h7313eea_6 + - liblapack=3.9.0=17_linux64_openblas + - libllvm16=16.0.6=h5cf9203_1 + - libsndfile=1.2.0=hb75c966_0 + - libtiff=4.5.1=h8b53f26_0 + - llvm-openmp=16.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_2 + - nss=3.89=he45b914_0 + - pandoc=3.1.3=h32600fe_0 + - pari=2.15.4=h4d4ae9b_2_pthread + - ppl=1.2=h6ec01c2_1006 + - python=3.10.12=hd12c33a_0_cpython + - sqlite=3.42.0=h2c6b66d_0 + - tachyon=0.99b6=0 + - texinfo=7.0=pl5321h0f457ee_0 + - tktable=2.10=hb7b940f_3 + - 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.6=h8ee46fc_0 + - alabaster=0.7.13=pyhd8ed1ab_0 + - appdirs=1.4.4=pyh9f0ad1d_0 + - appnope=0.1.3=pyhd8ed1ab_0 + - arb=2.23.0=h44d021b_0 + - attrs=23.1.0=pyh71513ae_1 + - automake=1.16.5=pl5321ha770c72_0 + - backcall=0.2.0=pyh9f0ad1d_0 + - backports=1.0=pyhd8ed1ab_3 + - backports.zoneinfo=0.2.1=py310hff52083_7 + - brotli=1.0.9=h166bdaf_9 + - brotli-python=1.0.9=py310hd8f1fbe_9 + - c-compiler=1.6.0=hd590300_0 + - cachetools=5.3.1=pyhd8ed1ab_0 + - certifi=2023.7.22=pyhd8ed1ab_0 + - chardet=5.1.0=py310hff52083_0 + - charset-normalizer=3.2.0=pyhd8ed1ab_0 + - colorama=0.4.6=pyhd8ed1ab_0 + - cycler=0.11.0=pyhd8ed1ab_0 + - cysignals=1.11.2=py310h945e7c7_2 + - cython=0.29.36=py310hc6cd4ac_0 + - dbus=1.13.6=h5008d03_3 + - debugpy=1.6.7=py310heca2aa9_0 + - decorator=5.1.1=pyhd8ed1ab_0 + - defusedxml=0.7.1=pyhd8ed1ab_0 + - distlib=0.3.7=pyhd8ed1ab_0 + - docutils=0.19=py310hff52083_1 + - dsdp=5.8=hd9d9efa_1203 + - eclib=20230424=hdef1efb_0 + - editables=0.3=pyhd8ed1ab_0 + - entrypoints=0.4=pyhd8ed1ab_0 + - exceptiongroup=1.1.2=pyhd8ed1ab_0 + - executing=1.2.0=pyhd8ed1ab_0 + - fflas-ffpack=2.4.3=h912ac81_2 + - filelock=3.12.2=pyhd8ed1ab_0 + - flit-core=3.9.0=pyhd8ed1ab_0 + - fontconfig=2.14.2=h14ed4e7_0 + - gap-defaults=4.12.2=ha770c72_3 + - gast=0.5.4=pyhd8ed1ab_0 + - gfortran=12.3.0=h499e0f7_1 + - gfortran_linux-64=12.3.0=h7fe76b4_1 + - glib-tools=2.76.4=hfc55251_0 + - gmpy2=2.1.2=py310h3ec546c_1 + - gsl=2.7=he838d99_0 + - gxx=12.3.0=h8d2909c_1 + - gxx_linux-64=12.3.0=h8a814eb_1 + - idna=3.4=pyhd8ed1ab_0 + - imagesize=1.4.1=pyhd8ed1ab_0 + - iml=1.0.5=hd75c201_1003 + - ipython_genutils=0.2.0=py_1 + - json5=0.9.14=pyhd8ed1ab_0 + - jupyterlab_widgets=1.1.1=pyhd8ed1ab_0 + - kiwisolver=1.4.4=py310hbf28c38_1 + - lcalc=2.0.5=h6a8a7c6_1 + - lcms2=2.15=haa2dc70_1 + - libbrial=1.2.12=h138cd66_0 + - libclang13=16.0.6=default_h4d60ac6_1 + - libcups=2.3.3=h36d4200_3 + - libcurl=8.1.2=h409715c_0 + - liblapacke=3.9.0=17_linux64_openblas + - libpq=15.3=hbcd7760_1 + - libsystemd0=253=h8c4010b_1 + - libwebp=1.3.1=hbf2b3c1_0 + - m4rie=20150908=h7ca028e_1001 + - markupsafe=2.1.3=py310h2372a71_0 + - maxima=5.45.0=h9d73b02_3 + - mistune=3.0.0=pyhd8ed1ab_0 + - mpmath=1.3.0=pyhd8ed1ab_0 + - munkres=1.1.4=pyh9f0ad1d_0 + - nest-asyncio=1.5.6=pyhd8ed1ab_0 + - networkx=2.8.8=pyhd8ed1ab_0 + - numpy=1.25.1=py310ha4c1d20_0 + - openjpeg=2.5.0=hfec8fc6_2 + - packaging=23.1=pyhd8ed1ab_0 + - pandocfilters=1.5.0=pyhd8ed1ab_0 + - parso=0.8.3=pyhd8ed1ab_0 + - pathspec=0.11.1=pyhd8ed1ab_0 + - pickleshare=0.7.5=py_1003 + - pkgconfig=1.5.5=pyhd8ed1ab_4 + - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_0 + - pluggy=1.2.0=pyhd8ed1ab_0 + - ply=3.11=py_1 + - prometheus_client=0.17.1=pyhd8ed1ab_0 + - psutil=5.9.5=py310h1fa729e_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_0 + - pycparser=2.21=pyhd8ed1ab_0 + - pygments=2.15.1=pyhd8ed1ab_0 + - pyparsing=3.0.9=pyhd8ed1ab_0 + - pyrsistent=0.19.3=py310h1fa729e_0 + - pysocks=1.7.1=pyha2e5f31_6 + - python-fastjsonschema=2.18.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=pyhd8ed1ab_0 + - pyyaml=6.0=py310h5764c6d_5 + - pyzmq=25.1.0=py310h5bbb5d0_0 + - rfc3986-validator=0.1.1=pyh9f0ad1d_0 + - rpds-py=0.9.2=py310hcb5633a_0 + - rw=0.8=h516909a_1001 + - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 + - sagetex=3.6.1=pyhd8ed1ab_0 + - send2trash=1.8.2=pyh41d4057_0 + - setuptools=63.4.3=py310hff52083_0 + - simplegeneric=0.8.1=py_1 + - singular=4.2.1.p3=h1ea75ed_2 + - six=1.16.0=pyh6c4a22f_0 + - sniffio=1.3.0=pyhd8ed1ab_0 + - snowballstemmer=2.2.0=pyhd8ed1ab_0 + - soupsieve=2.3.2.post1=pyhd8ed1ab_0 + - sphinxcontrib-applehelp=1.0.4=pyhd8ed1ab_0 + - sphinxcontrib-devhelp=1.0.2=py_0 + - sphinxcontrib-htmlhelp=2.0.1=pyhd8ed1ab_0 + - sphinxcontrib-jsmath=1.0.1=py_0 + - sphinxcontrib-qthelp=1.0.3=py_0 + - sphinxcontrib-serializinghtml=1.1.5=pyhd8ed1ab_2 + - sympow=2.023.6=hc6ab17c_3 + - tbb=2021.9.0=hf52228f_0 + - toml=0.10.2=pyhd8ed1ab_0 + - tomli=2.0.1=pyhd8ed1ab_0 + - tomlkit=0.11.8=pyha770c72_0 + - tornado=6.3.2=py310h2372a71_0 + - traitlets=5.9.0=pyhd8ed1ab_0 + - trove-classifiers=2023.7.6=pyhd8ed1ab_0 + - typing_extensions=4.7.1=pyha770c72_0 + - typing_utils=0.1.0=pyhd8ed1ab_0 + - tzlocal=5.0.1=py310hff52083_0 + - unicodedata2=15.0.0=py310h5764c6d_0 + - vcversioner=2.16.0.0=py_1 + - webencodings=0.5.1=py_1 + - websocket-client=1.6.1=pyhd8ed1ab_0 + - wheel=0.41.0=pyhd8ed1ab_0 + - xcb-util-image=0.4.0=h8ee46fc_1 + - xkeyboard-config=2.39=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_0 + - zipp=3.16.2=pyhd8ed1ab_0 + - anyio=3.7.1=pyhd8ed1ab_0 + - asttokens=2.2.1=pyhd8ed1ab_0 + - async-lru=2.0.3=pyhd8ed1ab_0 + - babel=2.12.1=pyhd8ed1ab_1 + - backports.functools_lru_cache=1.6.5=pyhd8ed1ab_0 + - beautifulsoup4=4.12.2=pyha770c72_0 + - beniget=0.4.1=pyhd8ed1ab_0 + - blas-devel=3.9.0=17_linux64_openblas + - bleach=6.0.0=pyhd8ed1ab_0 + - brial=1.2.12=pyha3edaa6_0 + - cairo=1.16.0=hbbf8b49_1016 + - cffi=1.15.1=py310h255011f_3 + - cmake=3.26.4=hcfe8598_0 + - comm=0.1.3=pyhd8ed1ab_0 + - contourpy=1.1.0=py310hd41b1e2_0 + - cppy=1.2.1=pyhd8ed1ab_0 + - curl=8.1.2=h409715c_0 + - cxx-compiler=1.6.0=h00ab1b0_0 + - cypari2=2.1.3=py310h14ed79e_2 + - deprecation=2.1.0=pyh9f0ad1d_0 + - fonttools=4.41.1=py310h2372a71_0 + - fortran-compiler=1.6.0=heb67821_0 + - fpylll=0.5.9=py310h0dadf69_1 + - giac=1.9.0.21=h673759e_1 + - glib=2.76.4=hfc55251_0 + - html5lib=1.1=pyh9f0ad1d_0 + - importlib-metadata=6.8.0=pyha770c72_0 + - importlib_resources=6.0.0=pyhd8ed1ab_1 + - jedi=0.18.2=pyhd8ed1ab_0 + - jinja2=3.1.2=pyhd8ed1ab_1 + - jupyterlab_pygments=0.2.2=pyhd8ed1ab_0 + - libclang=16.0.6=default_h1cdf331_1 + - libgd=2.3.3=hfa28ad5_6 + - libxkbcommon=1.5.0=h5d7e998_3 + - linbox=1.6.3=h9d78c56_7 + - matplotlib-inline=0.1.6=pyhd8ed1ab_0 + - memory-allocator=0.1.2=py310h5764c6d_2 + - overrides=7.3.1=pyhd8ed1ab_0 + - pexpect=4.8.0=pyh1a96a4e_2 + - pillow=10.0.0=py310h582fbeb_0 + - pip=23.2.1=pyhd8ed1ab_0 + - pplpy=0.8.7=py310h28f6eb6_0 + - primecountpy=0.1.0=py310hd41b1e2_3 + - pulseaudio-client=16.1=hb77b528_4 + - pybind11=2.11.1=py310hd41b1e2_0 + - pyproject-api=1.5.3=pyhd8ed1ab_0 + - python-dateutil=2.8.2=pyhd8ed1ab_0 + - pytz-deprecation-shim=0.1.0.post0=py310hff52083_3 + - referencing=0.30.0=pyhd8ed1ab_0 + - rfc3339-validator=0.1.4=pyhd8ed1ab_0 + - sagemath-db-conway-polynomials=0.5.0=ha878542_1 + - sip=6.7.9=py310hc6cd4ac_0 + - suitesparse=5.10.1=h9e50725_1 + - sympy=1.12=pypyh9d50eac_103 + - terminado=0.17.1=pyh41d4057_0 + - tinycss2=1.2.1=pyhd8ed1ab_0 + - typing-extensions=4.7.1=hd8ed1ab_0 + - urllib3=2.0.4=pyhd8ed1ab_0 + - xorg-libxi=1.7.10=h7f98852_0 + - argon2-cffi-bindings=21.2.0=py310h5764c6d_3 + - blas=2.117=openblas + - compilers=1.6.0=ha770c72_0 + - cvxopt=1.3.1=py310h14a12bf_0 + - gstreamer=1.22.3=h977cf35_1 + - harfbuzz=7.3.0=hdb3a94d_0 + - hatchling=1.18.0=pyhd8ed1ab_0 + - importlib-resources=6.0.0=pyhd8ed1ab_1 + - importlib_metadata=6.8.0=hd8ed1ab_0 + - jsonschema-specifications=2023.7.1=pyhd8ed1ab_0 + - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1 + - matplotlib-base=3.7.2=py310hf38f957_0 + - platformdirs=3.9.1=pyhd8ed1ab_0 + - poetry-core=1.6.1=pyhd8ed1ab_0 + - pyqt5-sip=12.11.0=py310heca2aa9_3 + - pythran=0.13.1=py310hfb6f7a9_0 + - requests=2.31.0=pyhd8ed1ab_0 + - setuptools-scm=7.1.0=pyhd8ed1ab_0 + - stack_data=0.6.2=pyhd8ed1ab_0 + - wcwidth=0.2.6=pyhd8ed1ab_0 + - xorg-libxtst=1.2.3=h7f98852_1002 + - argon2-cffi=21.3.0=pyhd8ed1ab_0 + - gst-plugins-base=1.22.3=h938bd60_1 + - jsonschema=4.18.4=pyhd8ed1ab_0 + - jupyter_core=5.3.1=py310hff52083_0 + - openjdk=17.0.3=h19c1b89_7 + - pango=1.50.14=heaa33ce_1 + - pooch=1.7.0=pyha770c72_3 + - prompt-toolkit=3.0.39=pyha770c72_0 + - setuptools_scm=7.1.0=hd8ed1ab_0 + - sphinx=6.2.1=pyhd8ed1ab_0 + - virtualenv=20.24.1=pyhd8ed1ab_0 + - jmol=14.32.10=ha770c72_0 + - jupyter_client=8.3.0=pyhd8ed1ab_0 + - jupyter_events=0.6.3=pyhd8ed1ab_0 + - nbformat=5.9.1=pyhd8ed1ab_0 + - prompt_toolkit=3.0.39=hd8ed1ab_0 + - qt-main=5.15.8=h01ceb2d_12 + - r-base=4.3.1=hfabd6f2_1 + - scipy=1.10.1=py310ha4c1d20_3 + - sphinx-basic-ng=1.0.0b2=pyhd8ed1ab_0 + - sphinx-copybutton=0.5.2=pyhd8ed1ab_0 + - sphinxcontrib-websupport=1.2.4=pyhd8ed1ab_1 + - tox=4.6.4=pyhd8ed1ab_0 + - furo=2023.5.20=pyhd8ed1ab_1 + - ipython=8.14.0=pyh41d4057_0 + - nbclient=0.8.0=pyhd8ed1ab_0 + - pyqt=5.15.7=py310hab646b1_3 + - rpy2=3.5.11=py310r43h278f3c1_2 + - ipykernel=6.24.0=pyh71e2992_0 + - matplotlib=3.7.2=py310hff52083_0 + - nbconvert-core=7.7.2=pyhd8ed1ab_0 + - jupyter_server=2.7.0=pyhd8ed1ab_0 + - nbconvert-pandoc=7.7.2=pyhd8ed1ab_0 + - jupyter-lsp=2.2.0=pyhd8ed1ab_0 + - jupyterlab_server=2.24.0=pyhd8ed1ab_0 + - nbconvert=7.7.2=pyhd8ed1ab_0 + - notebook-shim=0.2.3=pyhd8ed1ab_0 + - jupyterlab=4.0.3=pyhd8ed1ab_0 + - notebook=7.0.0=pyhd8ed1ab_0 + - widgetsnbextension=3.6.4=pyhd8ed1ab_0 + - ipywidgets=7.7.5=pyhd8ed1ab_0 + - jupyter-jsmol=2022.1.0=pyhd8ed1ab_0 + - jupyter_sphinx=0.4.0=py310hff52083_1 diff --git a/src/environment-3.9-macos.yml b/src/environment-3.9-macos.yml new file mode 100644 index 00000000000..8267177de39 --- /dev/null +++ b/src/environment-3.9-macos.yml @@ -0,0 +1,398 @@ +# Generated by conda-lock. +# platform: osx-64 +# input_hash: 7056c18e920401fcf44f349c629cbeb7f2f00f1271eeeb3827d27907e8c4ee24 + +channels: + - conda-forge +dependencies: + - _r-mutex=1.0.1=anacondar_1 + - bc=1.07.1=h0d85af4_0 + - bzip2=1.0.8=h0d85af4_4 + - c-ares=1.19.1=h0dc2134_0 + - ca-certificates=2023.7.22=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=hab24e00_0 + - fribidi=1.0.10=hbcb3906_0 + - giflib=5.2.1=hb7f2c08_3 + - icu=72.1=h7336db1_0 + - libatomic_ops=7.6.14=hb7f2c08_0 + - libbrotlicommon=1.0.9=hb7f2c08_9 + - libcxx=16.0.6=hd57cbcb_0 + - libdeflate=1.18=hac1461d_0 + - libev=4.33=haf1e3a3_1 + - libexpat=2.5.0=hf0c8a7f_1 + - libffi=3.4.2=h0d85af4_5 + - libgfortran-devel_osx-64=12.2.0=hf0fd499_32 + - libiconv=1.17=hac89ed1_0 + - libjpeg-turbo=2.1.5.1=hb7f2c08_0 + - libsodium=1.0.18=hbcb3906_1 + - libtool=2.4.7=hf0c8a7f_0 + - libuv=1.44.2=hac89ed1_0 + - libwebp-base=1.3.1=h0dc2134_0 + - libzlib=1.2.13=h8a1eda9_5 + - llvm-openmp=16.0.6=hff08bdf_0 + - m4=1.4.18=haf1e3a3_1001 + - make=4.3=h22f3db7_1 + - mathjax=3.2.2=h694c41f_0 + - metis=5.1.1=he965462_0 + - nauty=2.7.2=h0d85af4_0 + - ncurses=6.4=hf0c8a7f_0 + - 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 + - pixman=0.40.0=hbcb3906_0 + - planarity=3.0.0.5=hbcb3906_1002 + - pthread-stubs=0.4=hc929b4f_1001 + - python_abi=3.10=3_cp310 + - rhash=1.4.3=hac89ed1_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 + - 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.2.1=h2e338ed_0 + - graphite2=1.3.13=h2e338ed_1001 + - isl=0.25=hb486fe8_0 + - lerc=4.0.0=hb486fe8_0 + - libbraiding=1.1=h2e338ed_0 + - libbrotlidec=1.0.9=hb7f2c08_9 + - libbrotlienc=1.0.9=hb7f2c08_9 + - libedit=3.1.20191231=h0678c8f_2 + - libgfortran5=12.3.0=hbd3c1fe_1 + - libpng=1.6.39=ha978bb4_0 + - libsqlite=3.42.0=h58db7d2_0 + - libxcb=1.15=hb7f2c08_0 + - libxml2=2.10.4=h554bb67_0 + - lrcalc=2.1=hf0c8a7f_5 + - ninja=1.11.1=hb8565cd_0 + - openjdk=20.0.0=h7d26f99_0 + - openssl=3.1.1=h8a1eda9_1 + - pandoc=3.1.3=h9d075a6_0 + - pari-seadata=0.0.20090618=0 + - pcre2=10.40=h1c4e4bc_0 + - pkg-config=0.29.2=ha3d46e9_1008 + - primesieve=11.0=hf0c8a7f_0 + - qhull=2020.2=h940c156_2 + - readline=8.2=h9e318b2_1 + - symmetrica=3.0.1=hf0c8a7f_0 + - tapi=1100.0.11=h9ce4665_0 + - tar=1.34=hcb2f6ea_1 + - tbb=2021.9.0=hb8565cd_0 + - texinfo=7.0=pl5321hc47821c_0 + - threejs-sage=122=hd8ed1ab_2 + - tk=8.6.12=h5dbffcc_0 + - zeromq=4.3.4=he49afe7_1 + - zlib=1.2.13=h8a1eda9_5 + - zstd=1.5.2=h829000d_7 + - automake=1.16.5=pl5321h694c41f_0 + - boost-cpp=1.82.0=hd754db5_1 + - brotli-bin=1.0.9=hb7f2c08_9 + - bwidget=1.9.14=h694c41f_1 + - cddlib=1!0.94m=h0f52abe_0 + - ecl=21.2.1=hd029580_2 + - ecm=7.0.4=h343d7f2_1002 + - fonts-conda-ecosystem=1=0 + - freetype=2.12.1=h3f81eb7_1 + - gap-core=4.12.2=hc16eb5f_3 + - givaro=4.1.1=h0a799c6_3 + - glpk=5.0=h3cb5acd_0 + - jmol=14.32.9=h694c41f_0 + - krb5=1.20.1=h049b76e_0 + - libgfortran=5.0.0=12_3_0_h97931a8_1 + - libglib=2.76.4=hc62aa5d_0 + - libhomfly=1.02r6=hc929b4f_0 + - libllvm15=15.0.7=h7001e86_1 + - libnghttp2=1.52.0=he2ab024_0 + - libssh2=1.11.0=hd019ec5_0 + - libtiff=4.5.1=hf955e92_0 + - m4ri=20140914=h3f75d11_1005 + - mpfr=4.2.0=h4f9bd69_0 + - ntl=11.4.3=h0ab3c2f_1 + - pari=2.15.4=h93f793c_2_pthread + - primecount=7.6=ha894c9a_0 + - python=3.10.12=had23ca6_0_cpython + - sigtool=0.1.3=h88f4db0_0 + - sqlite=3.42.0=h2b0dec6_0 + - tachyon=0.99b6=0 + - tktable=2.10=h49f0cf7_3 + - alabaster=0.7.13=pyhd8ed1ab_0 + - appdirs=1.4.4=pyh9f0ad1d_0 + - appnope=0.1.3=pyhd8ed1ab_0 + - attrs=23.1.0=pyh71513ae_1 + - backcall=0.2.0=pyh9f0ad1d_0 + - backports=1.0=pyhd8ed1ab_3 + - backports.zoneinfo=0.2.1=py310h2ec42d9_7 + - brotli=1.0.9=hb7f2c08_9 + - brotli-python=1.0.9=py310h7a76584_9 + - cachetools=5.3.1=pyhd8ed1ab_0 + - certifi=2023.7.22=pyhd8ed1ab_0 + - chardet=5.1.0=py310h2ec42d9_0 + - charset-normalizer=3.2.0=pyhd8ed1ab_0 + - colorama=0.4.6=pyhd8ed1ab_0 + - cycler=0.11.0=pyhd8ed1ab_0 + - cysignals=1.11.2=py310h8c82e65_2 + - cython=0.29.36=py310h9e9d8ca_0 + - debugpy=1.6.7=py310h7a76584_0 + - decorator=5.1.1=pyhd8ed1ab_0 + - defusedxml=0.7.1=pyhd8ed1ab_0 + - distlib=0.3.7=pyhd8ed1ab_0 + - docutils=0.19=py310h2ec42d9_1 + - editables=0.3=pyhd8ed1ab_0 + - entrypoints=0.4=pyhd8ed1ab_0 + - exceptiongroup=1.1.2=pyhd8ed1ab_0 + - executing=1.2.0=pyhd8ed1ab_0 + - fftw=3.3.10=nompi_h4fa670e_108 + - filelock=3.12.2=pyhd8ed1ab_0 + - flit-core=3.9.0=pyhd8ed1ab_0 + - fontconfig=2.14.2=h5bb23bf_0 + - gap-defaults=4.12.2=h694c41f_3 + - gast=0.5.4=pyhd8ed1ab_0 + - gfan=0.6.2=hd793b56_1003 + - idna=3.4=pyhd8ed1ab_0 + - imagesize=1.4.1=pyhd8ed1ab_0 + - ipython_genutils=0.2.0=py_1 + - json5=0.9.14=pyhd8ed1ab_0 + - jupyterlab_widgets=1.1.1=pyhd8ed1ab_0 + - kiwisolver=1.4.4=py310ha23aa8a_1 + - lcalc=2.0.5=h3a941db_1 + - lcms2=2.15=h2dcdeff_1 + - ld64_osx-64=609=h8ce0179_13 + - libbrial=1.2.12=h8f704d5_0 + - libclang-cpp15=15.0.7=default_hdb78580_2 + - libcurl=8.1.2=hbee3ae8_0 + - libflint=2.9.0=hfd2f71f_ntl_100 + - libopenblas=0.3.23=openmp_h429af6e_0 + - libwebp=1.3.1=hc961f54_0 + - llvm-tools=15.0.7=h7001e86_1 + - m4rie=20150908=h3f75d11_1001 + - markupsafe=2.1.3=py310h6729b98_0 + - maxima=5.45.0=hd029580_3 + - mistune=3.0.0=pyhd8ed1ab_0 + - mpc=1.3.1=h81bd1dd_0 + - mpfi=1.5.4=h52b28e3_1001 + - mpmath=1.3.0=pyhd8ed1ab_0 + - munkres=1.1.4=pyh9f0ad1d_0 + - nest-asyncio=1.5.6=pyhd8ed1ab_0 + - networkx=2.8.8=pyhd8ed1ab_0 + - openjpeg=2.5.0=h13ac156_2 + - packaging=23.1=pyhd8ed1ab_0 + - pandocfilters=1.5.0=pyhd8ed1ab_0 + - parso=0.8.3=pyhd8ed1ab_0 + - pathspec=0.11.1=pyhd8ed1ab_0 + - pickleshare=0.7.5=py_1003 + - pkgconfig=1.5.5=pyhd8ed1ab_4 + - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_0 + - pluggy=1.2.0=pyhd8ed1ab_0 + - ply=3.11=py_1 + - ppl=1.2=ha60d53e_1006 + - prometheus_client=0.17.1=pyhd8ed1ab_0 + - psutil=5.9.5=py310h90acd4f_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_0 + - pycparser=2.21=pyhd8ed1ab_0 + - pygments=2.15.1=pyhd8ed1ab_0 + - pyparsing=3.0.9=pyhd8ed1ab_0 + - pyrsistent=0.19.3=py310h90acd4f_0 + - pysocks=1.7.1=pyha2e5f31_6 + - python-fastjsonschema=2.18.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=pyhd8ed1ab_0 + - pyyaml=6.0=py310h90acd4f_5 + - pyzmq=25.1.0=py310h998be00_0 + - qd=2.3.22=h2beb688_1004 + - rfc3986-validator=0.1.1=pyh9f0ad1d_0 + - rpds-py=0.9.2=py310h3461e44_0 + - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 + - sagetex=3.6.1=pyhd8ed1ab_0 + - send2trash=1.8.2=pyh41d4057_0 + - setuptools=63.4.3=py310h2ec42d9_0 + - simplegeneric=0.8.1=py_1 + - six=1.16.0=pyh6c4a22f_0 + - sniffio=1.3.0=pyhd8ed1ab_0 + - snowballstemmer=2.2.0=pyhd8ed1ab_0 + - soupsieve=2.3.2.post1=pyhd8ed1ab_0 + - sphinxcontrib-applehelp=1.0.4=pyhd8ed1ab_0 + - sphinxcontrib-devhelp=1.0.2=py_0 + - sphinxcontrib-htmlhelp=2.0.1=pyhd8ed1ab_0 + - sphinxcontrib-jsmath=1.0.1=py_0 + - sphinxcontrib-qthelp=1.0.3=py_0 + - sphinxcontrib-serializinghtml=1.1.5=pyhd8ed1ab_2 + - sympow=2.023.6=h115ba6a_3 + - toml=0.10.2=pyhd8ed1ab_0 + - tomli=2.0.1=pyhd8ed1ab_0 + - tomlkit=0.11.8=pyha770c72_0 + - tornado=6.3.2=py310h6729b98_0 + - traitlets=5.9.0=pyhd8ed1ab_0 + - trove-classifiers=2023.7.6=pyhd8ed1ab_0 + - typing_extensions=4.7.1=pyha770c72_0 + - typing_utils=0.1.0=pyhd8ed1ab_0 + - tzlocal=5.0.1=py310h2ec42d9_0 + - unicodedata2=15.0.0=py310h90acd4f_0 + - vcversioner=2.16.0.0=py_1 + - webencodings=0.5.1=py_1 + - websocket-client=1.6.1=pyhd8ed1ab_0 + - wheel=0.41.0=pyhd8ed1ab_0 + - zipp=3.16.2=pyhd8ed1ab_0 + - anyio=3.7.1=pyhd8ed1ab_0 + - arb=2.23.0=h905a977_0 + - asttokens=2.2.1=pyhd8ed1ab_0 + - async-lru=2.0.3=pyhd8ed1ab_0 + - babel=2.12.1=pyhd8ed1ab_1 + - backports.functools_lru_cache=1.6.5=pyhd8ed1ab_0 + - beautifulsoup4=4.12.2=pyha770c72_0 + - beniget=0.4.1=pyhd8ed1ab_0 + - bleach=6.0.0=pyhd8ed1ab_0 + - brial=1.2.12=pyha3edaa6_0 + - cairo=1.16.0=h09dd18c_1016 + - cctools_osx-64=973.0.1=h48a5a9d_13 + - cffi=1.15.1=py310ha78151a_3 + - clang-15=15.0.7=default_hdb78580_2 + - cmake=3.26.4=hf40c264_0 + - comm=0.1.3=pyhd8ed1ab_0 + - cppy=1.2.1=pyhd8ed1ab_0 + - curl=8.1.2=hbee3ae8_0 + - cypari2=2.1.3=py310hb5d31c9_2 + - deprecation=2.1.0=pyh9f0ad1d_0 + - eclib=20230424=hd00e801_0 + - fonttools=4.41.1=py310h6729b98_0 + - fplll=5.4.4=hdfdc905_0 + - gfortran_impl_osx-64=12.2.0=hdfd80ef_32 + - gmpy2=2.1.2=py310hb691cb2_1 + - html5lib=1.1=pyh9f0ad1d_0 + - importlib-metadata=6.8.0=pyha770c72_0 + - importlib_resources=6.0.0=pyhd8ed1ab_1 + - jedi=0.18.2=pyhd8ed1ab_0 + - jinja2=3.1.2=pyhd8ed1ab_1 + - jupyterlab_pygments=0.2.2=pyhd8ed1ab_0 + - ld64=609=ha91a046_13 + - libblas=3.9.0=17_osx64_openblas + - libgd=2.3.3=h3d994df_6 + - matplotlib-inline=0.1.6=pyhd8ed1ab_0 + - memory-allocator=0.1.2=py310h90acd4f_2 + - openblas=0.3.23=openmp_hbefa662_0 + - overrides=7.3.1=pyhd8ed1ab_0 + - pexpect=4.8.0=pyh1a96a4e_2 + - pillow=10.0.0=py310hd63a8c7_0 + - pip=23.2.1=pyhd8ed1ab_0 + - primecountpy=0.1.0=py310h88cfcbd_3 + - pybind11=2.11.1=py310h88cfcbd_0 + - pyproject-api=1.5.3=pyhd8ed1ab_0 + - python-dateutil=2.8.2=pyhd8ed1ab_0 + - pytz-deprecation-shim=0.1.0.post0=py310h2ec42d9_3 + - referencing=0.30.0=pyhd8ed1ab_0 + - rfc3339-validator=0.1.4=pyhd8ed1ab_0 + - sagemath-db-conway-polynomials=0.5.0=h033912b_1 + - singular=4.2.1.p3=hac851df_2 + - terminado=0.17.1=pyhd1c38e8_0 + - tinycss2=1.2.1=pyhd8ed1ab_0 + - typing-extensions=4.7.1=hd8ed1ab_0 + - urllib3=2.0.4=pyhd8ed1ab_0 + - argon2-cffi-bindings=21.2.0=py310h90acd4f_3 + - cctools=973.0.1=hd9ad811_13 + - clang=15.0.7=h694c41f_2 + - harfbuzz=7.3.0=h413ba03_0 + - hatchling=1.18.0=pyhd8ed1ab_0 + - importlib-resources=6.0.0=pyhd8ed1ab_1 + - importlib_metadata=6.8.0=hd8ed1ab_0 + - jsonschema-specifications=2023.7.1=pyhd8ed1ab_0 + - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1 + - libcblas=3.9.0=17_osx64_openblas + - liblapack=3.9.0=17_osx64_openblas + - platformdirs=3.9.1=pyhd8ed1ab_0 + - poetry-core=1.6.1=pyhd8ed1ab_0 + - pplpy=0.8.7=py310h190f582_0 + - requests=2.31.0=pyhd8ed1ab_0 + - setuptools-scm=7.1.0=pyhd8ed1ab_0 + - stack_data=0.6.2=pyhd8ed1ab_0 + - sympy=1.12=pypyh9d50eac_103 + - wcwidth=0.2.6=pyhd8ed1ab_0 + - argon2-cffi=21.3.0=pyhd8ed1ab_0 + - arpack=3.7.0=hefb7bc6_2 + - clangxx=15.0.7=default_hdb78580_2 + - dsdp=5.8=h6e329d1_1203 + - fflas-ffpack=2.4.3=h026fd7e_2 + - gsl=2.7=h93259b0_0 + - iml=1.0.5=h64b42ca_1003 + - jsonschema=4.18.4=pyhd8ed1ab_0 + - jupyter_core=5.3.1=py310h2ec42d9_0 + - liblapacke=3.9.0=17_osx64_openblas + - numpy=1.25.1=py310h7451ae0_0 + - pango=1.50.14=hbce5e75_1 + - pooch=1.7.0=pyha770c72_3 + - prompt-toolkit=3.0.39=pyha770c72_0 + - setuptools_scm=7.1.0=hd8ed1ab_0 + - sphinx=6.2.1=pyhd8ed1ab_0 + - suitesparse=5.10.1=h7aff33d_1 + - virtualenv=20.24.1=pyhd8ed1ab_0 + - blas-devel=3.9.0=17_osx64_openblas + - compiler-rt_osx-64=15.0.7=he1888fc_1 + - contourpy=1.1.0=py310h88cfcbd_0 + - cvxopt=1.3.1=py310ha550498_0 + - fpylll=0.5.9=py310h0d1ef73_1 + - giac=1.9.0.21=h92f3f65_1 + - igraph=0.9.10=h6560ca6_1 + - jupyter_client=8.3.0=pyhd8ed1ab_0 + - jupyter_events=0.6.3=pyhd8ed1ab_0 + - linbox=1.6.3=hdde8d14_7 + - nbformat=5.9.1=pyhd8ed1ab_0 + - prompt_toolkit=3.0.39=hd8ed1ab_0 + - scipy=1.10.1=py310h3900cf1_3 + - sphinx-basic-ng=1.0.0b2=pyhd8ed1ab_0 + - sphinx-copybutton=0.5.2=pyhd8ed1ab_0 + - sphinxcontrib-websupport=1.2.4=pyhd8ed1ab_1 + - tox=4.6.4=pyhd8ed1ab_0 + - blas=2.117=openblas + - compiler-rt=15.0.7=he1888fc_1 + - furo=2023.5.20=pyhd8ed1ab_1 + - ipython=8.14.0=pyhd1c38e8_0 + - matplotlib-base=3.7.2=py310h475a17b_0 + - nbclient=0.8.0=pyhd8ed1ab_0 + - rw=0.9=h0d85af4_0 + - clang_osx-64=15.0.7=h03d6864_3 + - ipykernel=6.24.0=pyh5fb750a_0 + - matplotlib=3.7.2=py310h2ec42d9_0 + - nbconvert-core=7.7.2=pyhd8ed1ab_0 + - c-compiler=1.6.0=h63c33a9_0 + - clangxx_osx-64=15.0.7=h2133e9c_3 + - gfortran_osx-64=12.2.0=h18f7dce_1 + - jupyter_server=2.7.0=pyhd8ed1ab_0 + - nbconvert-pandoc=7.7.2=pyhd8ed1ab_0 + - cxx-compiler=1.6.0=h1c7c39f_0 + - gfortran=12.2.0=h2c809b3_1 + - jupyter-lsp=2.2.0=pyhd8ed1ab_0 + - jupyterlab_server=2.24.0=pyhd8ed1ab_0 + - nbconvert=7.7.2=pyhd8ed1ab_0 + - notebook-shim=0.2.3=pyhd8ed1ab_0 + - pythran=0.13.1=py310h9209b79_0 + - r-base=4.3.0=h7a6543b_0 + - fortran-compiler=1.6.0=h932d759_0 + - jupyterlab=4.0.3=pyhd8ed1ab_0 + - rpy2=3.5.11=py310r43hc1335a1_2 + - compilers=1.6.0=h694c41f_0 + - notebook=7.0.0=pyhd8ed1ab_0 + - widgetsnbextension=3.6.4=pyhd8ed1ab_0 + - ipywidgets=7.7.5=pyhd8ed1ab_0 + - jupyter-jsmol=2022.1.0=pyhd8ed1ab_0 + - jupyter_sphinx=0.4.0=py310h2ec42d9_1 diff --git a/src/environment-dev-3.11-linux.yml b/src/environment-dev-3.11-linux.yml new file mode 100644 index 00000000000..53ba3ea40af --- /dev/null +++ b/src/environment-dev-3.11-linux.yml @@ -0,0 +1,478 @@ +# Generated by conda-lock. +# platform: linux-64 +# input_hash: f0eef6aeafe7239ecbb9479957b227d93d976f7154c46e509083c6ef793567fb + +channels: + - conda-forge +dependencies: + - _libgcc_mutex=0.1=conda_forge + - _r-mutex=1.0.1=anacondar_1 + - ca-certificates=2023.7.22=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=hab24e00_0 + - gh=2.32.0=ha8f183a_0 + - kernel-headers_linux-64=2.6.32=he073ed8_16 + - ld_impl_linux-64=2.40=h41732ed_0 + - libgcc-devel_linux-64=12.3.0=h8bca6fd_0 + - libgfortran5=13.1.0=h15d22d2_0 + - libstdcxx-devel_linux-64=12.3.0=h8bca6fd_0 + - libstdcxx-ng=13.1.0=hfd8a6a1_0 + - mathjax=3.2.2=ha770c72_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 + - python_abi=3.10=3_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 + - fonts-conda-forge=1=0 + - libgfortran-ng=13.1.0=h69a702a_0 + - libgomp=13.1.0=he5830b7_0 + - pari-seadata=0.0.20090618=0 + - sysroot_linux-64=2.12=he073ed8_16 + - threejs-sage=122=hd8ed1ab_2 + - binutils_impl_linux-64=2.40=hf600244_0 + - fonts-conda-ecosystem=1=0 + - binutils=2.40=hdd6e379_0 + - binutils_linux-64=2.40=hbdbef99_1 + - _openmp_mutex=4.5=2_kmp_llvm + - libgcc-ng=13.1.0=he5830b7_0 + - alsa-lib=1.2.8=h166bdaf_0 + - attr=2.5.1=h166bdaf_1 + - bc=1.07.1=h7f98852_0 + - bdw-gc=8.0.6=h4bd325d_0 + - bzip2=1.0.8=h7f98852_4 + - c-ares=1.19.1=hd590300_0 + - cliquer=1.22=h36c2ea0_0 + - fftw=3.3.10=nompi_hc118613_108 + - 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.2.1=h58526e2_0 + - graphite2=1.3.13=h58526e2_1001 + - icu=72.1=hcb278e6_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.1=h58526e2_0 + - libbrotlicommon=1.0.9=h166bdaf_9 + - libcbor=0.10.2=hcb278e6_0 + - libdeflate=1.18=h0b41bf4_0 + - libev=4.33=h516909a_1 + - libexpat=2.5.0=hcb278e6_1 + - libffi=3.4.2=h7f98852_5 + - libiconv=1.17=h166bdaf_0 + - libjpeg-turbo=2.1.5.1=h0b41bf4_0 + - libnsl=2.0.0=h7f98852_0 + - libogg=1.3.4=h7f98852_1 + - libopenblas=0.3.23=pthreads_h80387f5_0 + - libopus=1.3.1=h7f98852_1 + - libsanitizer=12.3.0=h0f45ef3_0 + - libsodium=1.0.18=h36c2ea0_1 + - libtool=2.4.7=h27087fc_0 + - libuuid=2.38.1=h0b41bf4_0 + - libuv=1.44.2=h166bdaf_0 + - libwebp-base=1.3.1=hd590300_0 + - 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_0 + - mpg123=1.31.3=hcb278e6_0 + - nauty=2.7.2=h7f98852_0 + - ncurses=6.4=hcb278e6_0 + - ninja=1.11.1=h924138e_0 + - nspr=4.35=h27087fc_0 + - openssl=3.1.1=hd590300_1 + - palp=2.20=h36c2ea0_0 + - patch=2.7.6=h7f98852_1002 + - pixman=0.40.0=h36c2ea0_0 + - pkg-config=0.29.2=h36c2ea0_1008 + - planarity=3.0.0.5=h36c2ea0_1002 + - primesieve=11.0=hcb278e6_0 + - pthread-stubs=0.4=h36c2ea0_1001 + - qd=2.3.22=h2cc385e_1004 + - qhull=2020.2=h4bd325d_2 + - rhash=1.4.3=h166bdaf_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.0.10=h7f98852_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_0 + - givaro=4.1.1=h192cbe9_1 + - glpk=5.0=h445213a_0 + - libblas=3.9.0=17_linux64_openblas + - libbrotlidec=1.0.9=h166bdaf_9 + - libbrotlienc=1.0.9=h166bdaf_9 + - libcap=2.67=he9d0100_0 + - libedit=3.1.20191231=he28a2e2_2 + - libevent=2.1.12=hf998b51_1 + - libflac=1.4.3=h59595ed_0 + - libgpg-error=1.47=h71f35ed_0 + - libhomfly=1.02r6=h36c2ea0_0 + - libnghttp2=1.52.0=h61bc06f_0 + - libpng=1.6.39=h753d276_0 + - libsqlite=3.42.0=h2797004_0 + - libssh2=1.11.0=h0841786_0 + - libvorbis=1.3.7=h9c3ff4c_0 + - libxcb=1.15=h0b41bf4_0 + - libxml2=2.11.4=h0d562d8_0 + - mpfr=4.2.0=hb012696_0 + - mysql-common=8.0.33=hf1915f5_2 + - ntl=11.4.3=hef3c4d3_1 + - openblas=0.3.23=pthreads_h855a84d_0 + - pcre2=10.40=hc3806b6_0 + - perl=5.32.1=4_hd590300_perl5 + - primecount=7.6=hcb278e6_0 + - readline=8.2=h8228510_1 + - tar=1.34=hb2e2bae_1 + - tk=8.6.12=h27826a3_0 + - xorg-fixesproto=5.0=h7f98852_1002 + - xorg-libsm=1.2.3=hd9c2040_1000 + - zeromq=4.3.4=h9c3ff4c_1 + - zlib=1.2.13=hd590300_5 + - zstd=1.5.2=hfc55251_7 + - autoconf=2.71=pl5321h2b4cb7a_1 + - boost-cpp=1.82.0=he19a28c_1 + - brotli-bin=1.0.9=h166bdaf_9 + - bwidget=1.9.14=ha770c72_1 + - ecl=21.2.1=h9d73b02_2 + - fplll=5.4.4=h8780c30_0 + - freetype=2.12.1=hca18f0e_1 + - gap-core=4.12.2=he9a28a4_3 + - gcc=12.3.0=h8d2909c_1 + - gcc_linux-64=12.3.0=h76fc315_1 + - gfan=0.6.2=hb86e20a_1003 + - gfortran_impl_linux-64=12.3.0=hfcedea8_0 + - gxx_impl_linux-64=12.3.0=he2b93b0_0 + - igraph=0.7.1=0 + - krb5=1.20.1=h81ceb04_0 + - libcblas=3.9.0=17_linux64_openblas + - libflint=2.9.0=h2f819a4_ntl_100 + - libgcrypt=1.10.1=h166bdaf_0 + - libglib=2.76.4=hebfc3b9_0 + - libhwloc=2.9.1=nocuda_h7313eea_6 + - liblapack=3.9.0=17_linux64_openblas + - libllvm16=16.0.6=h5cf9203_1 + - libsndfile=1.2.0=hb75c966_0 + - libtiff=4.5.1=h8b53f26_0 + - libudev1=253=h0b41bf4_1 + - llvm-openmp=16.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_2 + - nss=3.89=he45b914_0 + - pandoc=3.1.3=h32600fe_0 + - pari=2.15.4=h4d4ae9b_2_pthread + - ppl=1.2=h6ec01c2_1006 + - python=3.10.12=hd12c33a_0_cpython + - sqlite=3.42.0=h2c6b66d_0 + - tachyon=0.99b6=0 + - texinfo=7.0=pl5321h0f457ee_0 + - tktable=2.10=hb7b940f_3 + - 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.6=h8ee46fc_0 + - alabaster=0.7.13=pyhd8ed1ab_0 + - appdirs=1.4.4=pyh9f0ad1d_0 + - appnope=0.1.3=pyhd8ed1ab_0 + - arb=2.23.0=h44d021b_0 + - attrs=23.1.0=pyh71513ae_1 + - automake=1.16.5=pl5321ha770c72_0 + - backcall=0.2.0=pyh9f0ad1d_0 + - backports=1.0=pyhd8ed1ab_3 + - backports.zoneinfo=0.2.1=py310hff52083_7 + - brotli=1.0.9=h166bdaf_9 + - brotli-python=1.0.9=py310hd8f1fbe_9 + - c-compiler=1.6.0=hd590300_0 + - cachetools=5.3.1=pyhd8ed1ab_0 + - certifi=2023.7.22=pyhd8ed1ab_0 + - chardet=5.1.0=py310hff52083_0 + - charset-normalizer=3.2.0=pyhd8ed1ab_0 + - colorama=0.4.6=pyhd8ed1ab_0 + - cycler=0.11.0=pyhd8ed1ab_0 + - cysignals=1.11.2=py310h945e7c7_2 + - cython=0.29.36=py310hc6cd4ac_0 + - dbus=1.13.6=h5008d03_3 + - debugpy=1.6.7=py310heca2aa9_0 + - decorator=5.1.1=pyhd8ed1ab_0 + - defusedxml=0.7.1=pyhd8ed1ab_0 + - distlib=0.3.7=pyhd8ed1ab_0 + - docutils=0.19=py310hff52083_1 + - dsdp=5.8=hd9d9efa_1203 + - eclib=20230424=hdef1efb_0 + - editables=0.3=pyhd8ed1ab_0 + - entrypoints=0.4=pyhd8ed1ab_0 + - exceptiongroup=1.1.2=pyhd8ed1ab_0 + - execnet=2.0.2=pyhd8ed1ab_0 + - executing=1.2.0=pyhd8ed1ab_0 + - fflas-ffpack=2.4.3=h912ac81_2 + - filelock=3.12.2=pyhd8ed1ab_0 + - flit-core=3.9.0=pyhd8ed1ab_0 + - fontconfig=2.14.2=h14ed4e7_0 + - gap-defaults=4.12.2=ha770c72_3 + - gast=0.5.4=pyhd8ed1ab_0 + - gfortran=12.3.0=h499e0f7_1 + - gfortran_linux-64=12.3.0=h7fe76b4_1 + - glib-tools=2.76.4=hfc55251_0 + - gmpy2=2.1.2=py310h3ec546c_1 + - gsl=2.7=he838d99_0 + - gxx=12.3.0=h8d2909c_1 + - gxx_linux-64=12.3.0=h8a814eb_1 + - idna=3.4=pyhd8ed1ab_0 + - imagesize=1.4.1=pyhd8ed1ab_0 + - iml=1.0.5=hd75c201_1003 + - iniconfig=2.0.0=pyhd8ed1ab_0 + - ipython_genutils=0.2.0=py_1 + - json5=0.9.14=pyhd8ed1ab_0 + - jupyterlab_widgets=1.1.1=pyhd8ed1ab_0 + - kiwisolver=1.4.4=py310hbf28c38_1 + - lcalc=2.0.5=h6a8a7c6_1 + - lcms2=2.15=haa2dc70_1 + - libbrial=1.2.12=h138cd66_0 + - libclang13=16.0.6=default_h4d60ac6_1 + - libcups=2.3.3=h36d4200_3 + - libcurl=8.1.2=h409715c_0 + - libfido2=1.13.0=h2e5b2a7_0 + - liblapacke=3.9.0=17_linux64_openblas + - libpq=15.3=hbcd7760_1 + - libsystemd0=253=h8c4010b_1 + - libwebp=1.3.1=hbf2b3c1_0 + - m4rie=20150908=h7ca028e_1001 + - markupsafe=2.1.3=py310h2372a71_0 + - maxima=5.45.0=h9d73b02_3 + - mistune=3.0.0=pyhd8ed1ab_0 + - mpmath=1.3.0=pyhd8ed1ab_0 + - munkres=1.1.4=pyh9f0ad1d_0 + - nest-asyncio=1.5.6=pyhd8ed1ab_0 + - networkx=2.8.8=pyhd8ed1ab_0 + - numpy=1.25.1=py310ha4c1d20_0 + - openjpeg=2.5.0=hfec8fc6_2 + - packaging=23.1=pyhd8ed1ab_0 + - pandocfilters=1.5.0=pyhd8ed1ab_0 + - parso=0.8.3=pyhd8ed1ab_0 + - pathspec=0.11.1=pyhd8ed1ab_0 + - pickleshare=0.7.5=py_1003 + - pkgconfig=1.5.5=pyhd8ed1ab_4 + - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_0 + - pluggy=1.2.0=pyhd8ed1ab_0 + - ply=3.11=py_1 + - prometheus_client=0.17.1=pyhd8ed1ab_0 + - psutil=5.9.5=py310h1fa729e_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_0 + - pycodestyle=2.10.0=pyhd8ed1ab_0 + - pycparser=2.21=pyhd8ed1ab_0 + - pygments=2.15.1=pyhd8ed1ab_0 + - pyparsing=3.0.9=pyhd8ed1ab_0 + - pyrsistent=0.19.3=py310h1fa729e_0 + - pysocks=1.7.1=pyha2e5f31_6 + - pyspellchecker=0.7.2=pyhd8ed1ab_0 + - python-fastjsonschema=2.18.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=pyhd8ed1ab_0 + - pyyaml=6.0=py310h5764c6d_5 + - pyzmq=25.1.0=py310h5bbb5d0_0 + - rfc3986-validator=0.1.1=pyh9f0ad1d_0 + - rpds-py=0.9.2=py310hcb5633a_0 + - rw=0.8=h516909a_1001 + - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 + - sagetex=3.6.1=pyhd8ed1ab_0 + - send2trash=1.8.2=pyh41d4057_0 + - setuptools=63.4.3=py310hff52083_0 + - simplegeneric=0.8.1=py_1 + - singular=4.2.1.p3=h1ea75ed_2 + - six=1.16.0=pyh6c4a22f_0 + - sniffio=1.3.0=pyhd8ed1ab_0 + - snowballstemmer=2.2.0=pyhd8ed1ab_0 + - soupsieve=2.3.2.post1=pyhd8ed1ab_0 + - sphinxcontrib-applehelp=1.0.4=pyhd8ed1ab_0 + - sphinxcontrib-devhelp=1.0.2=py_0 + - sphinxcontrib-htmlhelp=2.0.1=pyhd8ed1ab_0 + - sphinxcontrib-jsmath=1.0.1=py_0 + - sphinxcontrib-qthelp=1.0.3=py_0 + - sphinxcontrib-serializinghtml=1.1.5=pyhd8ed1ab_2 + - sympow=2.023.6=hc6ab17c_3 + - tbb=2021.9.0=hf52228f_0 + - toml=0.10.2=pyhd8ed1ab_0 + - tomli=2.0.1=pyhd8ed1ab_0 + - tomlkit=0.11.8=pyha770c72_0 + - tornado=6.3.2=py310h2372a71_0 + - traitlets=5.9.0=pyhd8ed1ab_0 + - trove-classifiers=2023.7.6=pyhd8ed1ab_0 + - typing_extensions=4.7.1=pyha770c72_0 + - typing_utils=0.1.0=pyhd8ed1ab_0 + - tzlocal=5.0.1=py310hff52083_0 + - unicodedata2=15.0.0=py310h5764c6d_0 + - vcversioner=2.16.0.0=py_1 + - webencodings=0.5.1=py_1 + - websocket-client=1.6.1=pyhd8ed1ab_0 + - wheel=0.41.0=pyhd8ed1ab_0 + - xcb-util-image=0.4.0=h8ee46fc_1 + - xkeyboard-config=2.39=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_0 + - zipp=3.16.2=pyhd8ed1ab_0 + - anyio=3.7.1=pyhd8ed1ab_0 + - asttokens=2.2.1=pyhd8ed1ab_0 + - async-lru=2.0.3=pyhd8ed1ab_0 + - babel=2.12.1=pyhd8ed1ab_1 + - backports.functools_lru_cache=1.6.5=pyhd8ed1ab_0 + - beautifulsoup4=4.12.2=pyha770c72_0 + - beniget=0.4.1=pyhd8ed1ab_0 + - blas-devel=3.9.0=17_linux64_openblas + - bleach=6.0.0=pyhd8ed1ab_0 + - brial=1.2.12=pyha3edaa6_0 + - cairo=1.16.0=hbbf8b49_1016 + - cattrs=23.1.2=pyhd8ed1ab_0 + - cffi=1.15.1=py310h255011f_3 + - cmake=3.26.4=hcfe8598_0 + - comm=0.1.3=pyhd8ed1ab_0 + - contourpy=1.1.0=py310hd41b1e2_0 + - cppy=1.2.1=pyhd8ed1ab_0 + - curl=8.1.2=h409715c_0 + - cxx-compiler=1.6.0=h00ab1b0_0 + - cypari2=2.1.3=py310h14ed79e_2 + - deprecation=2.1.0=pyh9f0ad1d_0 + - fonttools=4.41.1=py310h2372a71_0 + - fortran-compiler=1.6.0=heb67821_0 + - fpylll=0.5.9=py310h0dadf69_1 + - giac=1.9.0.21=h673759e_1 + - glib=2.76.4=hfc55251_0 + - html5lib=1.1=pyh9f0ad1d_0 + - importlib-metadata=6.8.0=pyha770c72_0 + - importlib_resources=6.0.0=pyhd8ed1ab_1 + - jedi=0.18.2=pyhd8ed1ab_0 + - jinja2=3.1.2=pyhd8ed1ab_1 + - jupyterlab_pygments=0.2.2=pyhd8ed1ab_0 + - libclang=16.0.6=default_h1cdf331_1 + - libgd=2.3.3=hfa28ad5_6 + - libxkbcommon=1.5.0=h5d7e998_3 + - linbox=1.6.3=h9d78c56_7 + - matplotlib-inline=0.1.6=pyhd8ed1ab_0 + - memory-allocator=0.1.2=py310h5764c6d_2 + - openssh=9.3p1=hbcd7760_1 + - overrides=7.3.1=pyhd8ed1ab_0 + - pexpect=4.8.0=pyh1a96a4e_2 + - pillow=10.0.0=py310h582fbeb_0 + - pip=23.2.1=pyhd8ed1ab_0 + - pplpy=0.8.7=py310h28f6eb6_0 + - primecountpy=0.1.0=py310hd41b1e2_3 + - pulseaudio-client=16.1=hb77b528_4 + - pybind11=2.11.1=py310hd41b1e2_0 + - pyproject-api=1.5.3=pyhd8ed1ab_0 + - pytest=7.4.0=pyhd8ed1ab_0 + - python-dateutil=2.8.2=pyhd8ed1ab_0 + - pytz-deprecation-shim=0.1.0.post0=py310hff52083_3 + - referencing=0.30.0=pyhd8ed1ab_0 + - rfc3339-validator=0.1.4=pyhd8ed1ab_0 + - sagemath-db-conway-polynomials=0.5.0=ha878542_1 + - sip=6.7.9=py310hc6cd4ac_0 + - suitesparse=5.10.1=h9e50725_1 + - sympy=1.12=pypyh9d50eac_103 + - terminado=0.17.1=pyh41d4057_0 + - tinycss2=1.2.1=pyhd8ed1ab_0 + - typing-extensions=4.7.1=hd8ed1ab_0 + - urllib3=2.0.4=pyhd8ed1ab_0 + - xorg-libxi=1.7.10=h7f98852_0 + - argon2-cffi-bindings=21.2.0=py310h5764c6d_3 + - blas=2.117=openblas + - compilers=1.6.0=ha770c72_0 + - cvxopt=1.3.1=py310h14a12bf_0 + - git=2.41.0=pl5321h86e50cf_0 + - gstreamer=1.22.3=h977cf35_1 + - harfbuzz=7.3.0=hdb3a94d_0 + - hatchling=1.18.0=pyhd8ed1ab_0 + - importlib-resources=6.0.0=pyhd8ed1ab_1 + - importlib_metadata=6.8.0=hd8ed1ab_0 + - jsonschema-specifications=2023.7.1=pyhd8ed1ab_0 + - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1 + - lsprotocol=2023.0.0a2=pyhd8ed1ab_0 + - matplotlib-base=3.7.2=py310hf38f957_0 + - platformdirs=3.9.1=pyhd8ed1ab_0 + - poetry-core=1.6.1=pyhd8ed1ab_0 + - pyqt5-sip=12.11.0=py310heca2aa9_3 + - pytest-xdist=3.3.1=pyhd8ed1ab_0 + - pythran=0.13.1=py310hfb6f7a9_0 + - requests=2.31.0=pyhd8ed1ab_0 + - setuptools-scm=7.1.0=pyhd8ed1ab_0 + - stack_data=0.6.2=pyhd8ed1ab_0 + - wcwidth=0.2.6=pyhd8ed1ab_0 + - xorg-libxtst=1.2.3=h7f98852_1002 + - argon2-cffi=21.3.0=pyhd8ed1ab_0 + - gst-plugins-base=1.22.3=h938bd60_1 + - jsonschema=4.18.4=pyhd8ed1ab_0 + - jupyter_core=5.3.1=py310hff52083_0 + - openjdk=17.0.3=h19c1b89_7 + - pango=1.50.14=heaa33ce_1 + - pooch=1.7.0=pyha770c72_3 + - prompt-toolkit=3.0.39=pyha770c72_0 + - setuptools_scm=7.1.0=hd8ed1ab_0 + - sphinx=6.2.1=pyhd8ed1ab_0 + - typeguard=3.0.2=pyhd8ed1ab_0 + - virtualenv=20.24.1=pyhd8ed1ab_0 + - jmol=14.32.10=ha770c72_0 + - jupyter_client=8.3.0=pyhd8ed1ab_0 + - jupyter_events=0.6.3=pyhd8ed1ab_0 + - nbformat=5.9.1=pyhd8ed1ab_0 + - prompt_toolkit=3.0.39=hd8ed1ab_0 + - pygls=1.0.2=pyhd8ed1ab_0 + - qt-main=5.15.8=h01ceb2d_12 + - r-base=4.3.1=hfabd6f2_1 + - scipy=1.10.1=py310ha4c1d20_3 + - sphinx-basic-ng=1.0.0b2=pyhd8ed1ab_0 + - sphinx-copybutton=0.5.2=pyhd8ed1ab_0 + - sphinxcontrib-websupport=1.2.4=pyhd8ed1ab_1 + - tox=4.6.4=pyhd8ed1ab_0 + - esbonio=0.16.1=pyhd8ed1ab_0 + - furo=2023.5.20=pyhd8ed1ab_1 + - ipython=8.14.0=pyh41d4057_0 + - nbclient=0.8.0=pyhd8ed1ab_0 + - pyqt=5.15.7=py310hab646b1_3 + - rpy2=3.5.11=py310r43h278f3c1_2 + - ipykernel=6.24.0=pyh71e2992_0 + - matplotlib=3.7.2=py310hff52083_0 + - nbconvert-core=7.7.2=pyhd8ed1ab_0 + - jupyter_server=2.7.0=pyhd8ed1ab_0 + - nbconvert-pandoc=7.7.2=pyhd8ed1ab_0 + - jupyter-lsp=2.2.0=pyhd8ed1ab_0 + - jupyterlab_server=2.24.0=pyhd8ed1ab_0 + - nbconvert=7.7.2=pyhd8ed1ab_0 + - notebook-shim=0.2.3=pyhd8ed1ab_0 + - jupyterlab=4.0.3=pyhd8ed1ab_0 + - notebook=7.0.0=pyhd8ed1ab_0 + - widgetsnbextension=3.6.4=pyhd8ed1ab_0 + - ipywidgets=7.7.5=pyhd8ed1ab_0 + - jupyter-jsmol=2022.1.0=pyhd8ed1ab_0 + - jupyter_sphinx=0.4.0=py310hff52083_1 diff --git a/src/environment-dev-3.11-macos.yml b/src/environment-dev-3.11-macos.yml new file mode 100644 index 00000000000..e83ea7b265e --- /dev/null +++ b/src/environment-dev-3.11-macos.yml @@ -0,0 +1,414 @@ +# Generated by conda-lock. +# platform: osx-64 +# input_hash: 0b14fa06d655e7683981c27f658f33c24850625df4dd94351391308bebc4acf1 + +channels: + - conda-forge +dependencies: + - _r-mutex=1.0.1=anacondar_1 + - bc=1.07.1=h0d85af4_0 + - bzip2=1.0.8=h0d85af4_4 + - c-ares=1.19.1=h0dc2134_0 + - ca-certificates=2023.7.22=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=hab24e00_0 + - fribidi=1.0.10=hbcb3906_0 + - gh=2.32.1=h990441c_0 + - giflib=5.2.1=hb7f2c08_3 + - icu=72.1=h7336db1_0 + - libatomic_ops=7.6.14=hb7f2c08_0 + - libbrotlicommon=1.0.9=hb7f2c08_9 + - libcxx=16.0.6=hd57cbcb_0 + - libdeflate=1.18=hac1461d_0 + - libev=4.33=haf1e3a3_1 + - libexpat=2.5.0=hf0c8a7f_1 + - libffi=3.4.2=h0d85af4_5 + - libgfortran-devel_osx-64=12.2.0=hf0fd499_32 + - libiconv=1.17=hac89ed1_0 + - libjpeg-turbo=2.1.5.1=hb7f2c08_0 + - libsodium=1.0.18=hbcb3906_1 + - libtool=2.4.7=hf0c8a7f_0 + - libuv=1.44.2=hac89ed1_0 + - libwebp-base=1.3.1=h0dc2134_0 + - libzlib=1.2.13=h8a1eda9_5 + - llvm-openmp=16.0.6=hff08bdf_0 + - m4=1.4.18=haf1e3a3_1001 + - make=4.3=h22f3db7_1 + - mathjax=3.2.2=h694c41f_0 + - metis=5.1.1=he965462_0 + - nauty=2.7.2=h0d85af4_0 + - ncurses=6.4=hf0c8a7f_0 + - 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 + - pixman=0.40.0=hbcb3906_0 + - planarity=3.0.0.5=hbcb3906_1002 + - pthread-stubs=0.4=hc929b4f_1001 + - python_abi=3.10=3_cp310 + - rhash=1.4.3=hac89ed1_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 + - 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.2.1=h2e338ed_0 + - graphite2=1.3.13=h2e338ed_1001 + - isl=0.25=hb486fe8_0 + - lerc=4.0.0=hb486fe8_0 + - libbraiding=1.1=h2e338ed_0 + - libbrotlidec=1.0.9=hb7f2c08_9 + - libbrotlienc=1.0.9=hb7f2c08_9 + - libcbor=0.10.2=hf0c8a7f_0 + - libedit=3.1.20191231=h0678c8f_2 + - libgfortran5=12.3.0=hbd3c1fe_1 + - libpng=1.6.39=ha978bb4_0 + - libsqlite=3.42.0=h58db7d2_0 + - libxcb=1.15=hb7f2c08_0 + - libxml2=2.10.4=h554bb67_0 + - lrcalc=2.1=hf0c8a7f_5 + - ninja=1.11.1=hb8565cd_0 + - openjdk=20.0.0=h7d26f99_0 + - openssl=3.1.1=h8a1eda9_1 + - pandoc=3.1.3=h9d075a6_0 + - pari-seadata=0.0.20090618=0 + - pcre2=10.40=h1c4e4bc_0 + - pkg-config=0.29.2=ha3d46e9_1008 + - primesieve=11.0=hf0c8a7f_0 + - qhull=2020.2=h940c156_2 + - readline=8.2=h9e318b2_1 + - symmetrica=3.0.1=hf0c8a7f_0 + - tapi=1100.0.11=h9ce4665_0 + - tar=1.34=hcb2f6ea_1 + - tbb=2021.9.0=hb8565cd_0 + - texinfo=7.0=pl5321hc47821c_0 + - threejs-sage=122=hd8ed1ab_2 + - tk=8.6.12=h5dbffcc_0 + - zeromq=4.3.4=he49afe7_1 + - zlib=1.2.13=h8a1eda9_5 + - zstd=1.5.2=h829000d_7 + - automake=1.16.5=pl5321h694c41f_0 + - boost-cpp=1.82.0=hd754db5_1 + - brotli-bin=1.0.9=hb7f2c08_9 + - bwidget=1.9.14=h694c41f_1 + - cddlib=1!0.94m=h0f52abe_0 + - ecl=21.2.1=hd029580_2 + - ecm=7.0.4=h343d7f2_1002 + - fonts-conda-ecosystem=1=0 + - freetype=2.12.1=h3f81eb7_1 + - gap-core=4.12.2=hc16eb5f_3 + - givaro=4.1.1=h0a799c6_3 + - glpk=5.0=h3cb5acd_0 + - jmol=14.32.9=h694c41f_0 + - krb5=1.20.1=h049b76e_0 + - libfido2=1.13.0=h14e1388_0 + - libgfortran=5.0.0=12_3_0_h97931a8_1 + - libglib=2.76.4=hc62aa5d_0 + - libhomfly=1.02r6=hc929b4f_0 + - libllvm15=15.0.7=h7001e86_1 + - libnghttp2=1.52.0=he2ab024_0 + - libssh2=1.11.0=hd019ec5_0 + - libtiff=4.5.1=hf955e92_0 + - m4ri=20140914=h3f75d11_1005 + - mpfr=4.2.0=h4f9bd69_0 + - ntl=11.4.3=h0ab3c2f_1 + - pari=2.15.4=h93f793c_2_pthread + - primecount=7.6=ha894c9a_0 + - python=3.10.12=had23ca6_0_cpython + - sigtool=0.1.3=h88f4db0_0 + - sqlite=3.42.0=h2b0dec6_0 + - tachyon=0.99b6=0 + - tktable=2.10=h49f0cf7_3 + - alabaster=0.7.13=pyhd8ed1ab_0 + - appdirs=1.4.4=pyh9f0ad1d_0 + - appnope=0.1.3=pyhd8ed1ab_0 + - attrs=23.1.0=pyh71513ae_1 + - backcall=0.2.0=pyh9f0ad1d_0 + - backports=1.0=pyhd8ed1ab_3 + - backports.zoneinfo=0.2.1=py310h2ec42d9_7 + - brotli=1.0.9=hb7f2c08_9 + - brotli-python=1.0.9=py310h7a76584_9 + - cachetools=5.3.1=pyhd8ed1ab_0 + - certifi=2023.7.22=pyhd8ed1ab_0 + - chardet=5.1.0=py310h2ec42d9_0 + - charset-normalizer=3.2.0=pyhd8ed1ab_0 + - colorama=0.4.6=pyhd8ed1ab_0 + - cycler=0.11.0=pyhd8ed1ab_0 + - cysignals=1.11.2=py310h8c82e65_2 + - cython=0.29.36=py310h9e9d8ca_0 + - debugpy=1.6.7=py310h7a76584_0 + - decorator=5.1.1=pyhd8ed1ab_0 + - defusedxml=0.7.1=pyhd8ed1ab_0 + - distlib=0.3.7=pyhd8ed1ab_0 + - docutils=0.19=py310h2ec42d9_1 + - editables=0.3=pyhd8ed1ab_0 + - entrypoints=0.4=pyhd8ed1ab_0 + - exceptiongroup=1.1.2=pyhd8ed1ab_0 + - execnet=2.0.2=pyhd8ed1ab_0 + - executing=1.2.0=pyhd8ed1ab_0 + - fftw=3.3.10=nompi_h4fa670e_108 + - filelock=3.12.2=pyhd8ed1ab_0 + - flit-core=3.9.0=pyhd8ed1ab_0 + - fontconfig=2.14.2=h5bb23bf_0 + - gap-defaults=4.12.2=h694c41f_3 + - gast=0.5.4=pyhd8ed1ab_0 + - gfan=0.6.2=hd793b56_1003 + - idna=3.4=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 + - jupyterlab_widgets=1.1.1=pyhd8ed1ab_0 + - kiwisolver=1.4.4=py310ha23aa8a_1 + - lcalc=2.0.5=h3a941db_1 + - lcms2=2.15=h2dcdeff_1 + - ld64_osx-64=609=h8ce0179_13 + - libbrial=1.2.12=h8f704d5_0 + - libclang-cpp15=15.0.7=default_hdb78580_2 + - libcurl=8.1.2=hbee3ae8_0 + - libflint=2.9.0=hfd2f71f_ntl_100 + - libopenblas=0.3.23=openmp_h429af6e_0 + - libwebp=1.3.1=hc961f54_0 + - llvm-tools=15.0.7=h7001e86_1 + - m4rie=20150908=h3f75d11_1001 + - markupsafe=2.1.3=py310h6729b98_0 + - maxima=5.45.0=hd029580_3 + - mistune=3.0.0=pyhd8ed1ab_0 + - mpc=1.3.1=h81bd1dd_0 + - mpfi=1.5.4=h52b28e3_1001 + - mpmath=1.3.0=pyhd8ed1ab_0 + - munkres=1.1.4=pyh9f0ad1d_0 + - nest-asyncio=1.5.6=pyhd8ed1ab_0 + - networkx=2.8.8=pyhd8ed1ab_0 + - openjpeg=2.5.0=h13ac156_2 + - openssh=9.3p1=h9dc22bb_1 + - packaging=23.1=pyhd8ed1ab_0 + - pandocfilters=1.5.0=pyhd8ed1ab_0 + - parso=0.8.3=pyhd8ed1ab_0 + - pathspec=0.11.1=pyhd8ed1ab_0 + - pickleshare=0.7.5=py_1003 + - pkgconfig=1.5.5=pyhd8ed1ab_4 + - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_0 + - pluggy=1.2.0=pyhd8ed1ab_0 + - ply=3.11=py_1 + - ppl=1.2=ha60d53e_1006 + - prometheus_client=0.17.1=pyhd8ed1ab_0 + - psutil=5.9.5=py310h90acd4f_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_0 + - pycodestyle=2.10.0=pyhd8ed1ab_0 + - pycparser=2.21=pyhd8ed1ab_0 + - pygments=2.15.1=pyhd8ed1ab_0 + - pyparsing=3.0.9=pyhd8ed1ab_0 + - pyrsistent=0.19.3=py310h90acd4f_0 + - pysocks=1.7.1=pyha2e5f31_6 + - pyspellchecker=0.7.2=pyhd8ed1ab_0 + - python-fastjsonschema=2.18.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=pyhd8ed1ab_0 + - pyyaml=6.0=py310h90acd4f_5 + - pyzmq=25.1.0=py310h998be00_0 + - qd=2.3.22=h2beb688_1004 + - rfc3986-validator=0.1.1=pyh9f0ad1d_0 + - rpds-py=0.9.2=py310h3461e44_0 + - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 + - sagetex=3.6.1=pyhd8ed1ab_0 + - send2trash=1.8.2=pyh41d4057_0 + - setuptools=63.4.3=py310h2ec42d9_0 + - simplegeneric=0.8.1=py_1 + - six=1.16.0=pyh6c4a22f_0 + - sniffio=1.3.0=pyhd8ed1ab_0 + - snowballstemmer=2.2.0=pyhd8ed1ab_0 + - soupsieve=2.3.2.post1=pyhd8ed1ab_0 + - sphinxcontrib-applehelp=1.0.4=pyhd8ed1ab_0 + - sphinxcontrib-devhelp=1.0.2=py_0 + - sphinxcontrib-htmlhelp=2.0.1=pyhd8ed1ab_0 + - sphinxcontrib-jsmath=1.0.1=py_0 + - sphinxcontrib-qthelp=1.0.3=py_0 + - sphinxcontrib-serializinghtml=1.1.5=pyhd8ed1ab_2 + - sympow=2.023.6=h115ba6a_3 + - toml=0.10.2=pyhd8ed1ab_0 + - tomli=2.0.1=pyhd8ed1ab_0 + - tomlkit=0.11.8=pyha770c72_0 + - tornado=6.3.2=py310h6729b98_0 + - traitlets=5.9.0=pyhd8ed1ab_0 + - trove-classifiers=2023.7.6=pyhd8ed1ab_0 + - typing_extensions=4.7.1=pyha770c72_0 + - typing_utils=0.1.0=pyhd8ed1ab_0 + - tzlocal=5.0.1=py310h2ec42d9_0 + - unicodedata2=15.0.0=py310h90acd4f_0 + - vcversioner=2.16.0.0=py_1 + - webencodings=0.5.1=py_1 + - websocket-client=1.6.1=pyhd8ed1ab_0 + - wheel=0.41.0=pyhd8ed1ab_0 + - zipp=3.16.2=pyhd8ed1ab_0 + - anyio=3.7.1=pyhd8ed1ab_0 + - arb=2.23.0=h905a977_0 + - asttokens=2.2.1=pyhd8ed1ab_0 + - async-lru=2.0.3=pyhd8ed1ab_0 + - babel=2.12.1=pyhd8ed1ab_1 + - backports.functools_lru_cache=1.6.5=pyhd8ed1ab_0 + - beautifulsoup4=4.12.2=pyha770c72_0 + - beniget=0.4.1=pyhd8ed1ab_0 + - bleach=6.0.0=pyhd8ed1ab_0 + - brial=1.2.12=pyha3edaa6_0 + - cairo=1.16.0=h09dd18c_1016 + - cattrs=23.1.2=pyhd8ed1ab_0 + - cctools_osx-64=973.0.1=h48a5a9d_13 + - cffi=1.15.1=py310ha78151a_3 + - clang-15=15.0.7=default_hdb78580_2 + - cmake=3.26.4=hf40c264_0 + - comm=0.1.3=pyhd8ed1ab_0 + - cppy=1.2.1=pyhd8ed1ab_0 + - curl=8.1.2=hbee3ae8_0 + - cypari2=2.1.3=py310hb5d31c9_2 + - deprecation=2.1.0=pyh9f0ad1d_0 + - eclib=20230424=hd00e801_0 + - fonttools=4.41.1=py310h6729b98_0 + - fplll=5.4.4=hdfdc905_0 + - gfortran_impl_osx-64=12.2.0=hdfd80ef_32 + - gmpy2=2.1.2=py310hb691cb2_1 + - html5lib=1.1=pyh9f0ad1d_0 + - importlib-metadata=6.8.0=pyha770c72_0 + - importlib_resources=6.0.0=pyhd8ed1ab_1 + - jedi=0.18.2=pyhd8ed1ab_0 + - jinja2=3.1.2=pyhd8ed1ab_1 + - jupyterlab_pygments=0.2.2=pyhd8ed1ab_0 + - ld64=609=ha91a046_13 + - libblas=3.9.0=17_osx64_openblas + - libgd=2.3.3=h3d994df_6 + - matplotlib-inline=0.1.6=pyhd8ed1ab_0 + - memory-allocator=0.1.2=py310h90acd4f_2 + - openblas=0.3.23=openmp_hbefa662_0 + - overrides=7.3.1=pyhd8ed1ab_0 + - pexpect=4.8.0=pyh1a96a4e_2 + - pillow=10.0.0=py310hd63a8c7_0 + - pip=23.2.1=pyhd8ed1ab_0 + - primecountpy=0.1.0=py310h88cfcbd_3 + - pybind11=2.11.1=py310h88cfcbd_0 + - pyproject-api=1.5.3=pyhd8ed1ab_0 + - pytest=7.4.0=pyhd8ed1ab_0 + - python-dateutil=2.8.2=pyhd8ed1ab_0 + - pytz-deprecation-shim=0.1.0.post0=py310h2ec42d9_3 + - referencing=0.30.0=pyhd8ed1ab_0 + - rfc3339-validator=0.1.4=pyhd8ed1ab_0 + - sagemath-db-conway-polynomials=0.5.0=h033912b_1 + - singular=4.2.1.p3=hac851df_2 + - terminado=0.17.1=pyhd1c38e8_0 + - tinycss2=1.2.1=pyhd8ed1ab_0 + - typing-extensions=4.7.1=hd8ed1ab_0 + - urllib3=2.0.4=pyhd8ed1ab_0 + - argon2-cffi-bindings=21.2.0=py310h90acd4f_3 + - cctools=973.0.1=hd9ad811_13 + - clang=15.0.7=h694c41f_2 + - git=2.41.0=pl5321h5c607e1_0 + - harfbuzz=7.3.0=h413ba03_0 + - hatchling=1.18.0=pyhd8ed1ab_0 + - importlib-resources=6.0.0=pyhd8ed1ab_1 + - importlib_metadata=6.8.0=hd8ed1ab_0 + - jsonschema-specifications=2023.7.1=pyhd8ed1ab_0 + - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1 + - libcblas=3.9.0=17_osx64_openblas + - liblapack=3.9.0=17_osx64_openblas + - lsprotocol=2023.0.0a2=pyhd8ed1ab_0 + - platformdirs=3.9.1=pyhd8ed1ab_0 + - poetry-core=1.6.1=pyhd8ed1ab_0 + - pplpy=0.8.7=py310h190f582_0 + - pytest-xdist=3.3.1=pyhd8ed1ab_0 + - requests=2.31.0=pyhd8ed1ab_0 + - setuptools-scm=7.1.0=pyhd8ed1ab_0 + - stack_data=0.6.2=pyhd8ed1ab_0 + - sympy=1.12=pypyh9d50eac_103 + - wcwidth=0.2.6=pyhd8ed1ab_0 + - argon2-cffi=21.3.0=pyhd8ed1ab_0 + - arpack=3.7.0=hefb7bc6_2 + - clangxx=15.0.7=default_hdb78580_2 + - dsdp=5.8=h6e329d1_1203 + - fflas-ffpack=2.4.3=h026fd7e_2 + - gsl=2.7=h93259b0_0 + - iml=1.0.5=h64b42ca_1003 + - jsonschema=4.18.4=pyhd8ed1ab_0 + - jupyter_core=5.3.1=py310h2ec42d9_0 + - liblapacke=3.9.0=17_osx64_openblas + - numpy=1.25.1=py310h7451ae0_0 + - pango=1.50.14=hbce5e75_1 + - pooch=1.7.0=pyha770c72_3 + - prompt-toolkit=3.0.39=pyha770c72_0 + - setuptools_scm=7.1.0=hd8ed1ab_0 + - sphinx=6.2.1=pyhd8ed1ab_0 + - suitesparse=5.10.1=h7aff33d_1 + - typeguard=3.0.2=pyhd8ed1ab_0 + - virtualenv=20.24.1=pyhd8ed1ab_0 + - blas-devel=3.9.0=17_osx64_openblas + - compiler-rt_osx-64=15.0.7=he1888fc_1 + - contourpy=1.1.0=py310h88cfcbd_0 + - cvxopt=1.3.1=py310ha550498_0 + - fpylll=0.5.9=py310h0d1ef73_1 + - giac=1.9.0.21=h92f3f65_1 + - igraph=0.9.10=h6560ca6_1 + - jupyter_client=8.3.0=pyhd8ed1ab_0 + - jupyter_events=0.6.3=pyhd8ed1ab_0 + - linbox=1.6.3=hdde8d14_7 + - nbformat=5.9.1=pyhd8ed1ab_0 + - prompt_toolkit=3.0.39=hd8ed1ab_0 + - pygls=1.0.2=pyhd8ed1ab_0 + - scipy=1.10.1=py310h3900cf1_3 + - sphinx-basic-ng=1.0.0b2=pyhd8ed1ab_0 + - sphinx-copybutton=0.5.2=pyhd8ed1ab_0 + - sphinxcontrib-websupport=1.2.4=pyhd8ed1ab_1 + - tox=4.6.4=pyhd8ed1ab_0 + - blas=2.117=openblas + - compiler-rt=15.0.7=he1888fc_1 + - esbonio=0.16.1=pyhd8ed1ab_0 + - furo=2023.5.20=pyhd8ed1ab_1 + - ipython=8.14.0=pyhd1c38e8_0 + - matplotlib-base=3.7.2=py310h475a17b_0 + - nbclient=0.8.0=pyhd8ed1ab_0 + - rw=0.9=h0d85af4_0 + - clang_osx-64=15.0.7=h03d6864_3 + - ipykernel=6.24.0=pyh5fb750a_0 + - matplotlib=3.7.2=py310h2ec42d9_0 + - nbconvert-core=7.7.2=pyhd8ed1ab_0 + - c-compiler=1.6.0=h63c33a9_0 + - clangxx_osx-64=15.0.7=h2133e9c_3 + - gfortran_osx-64=12.2.0=h18f7dce_1 + - jupyter_server=2.7.0=pyhd8ed1ab_0 + - nbconvert-pandoc=7.7.2=pyhd8ed1ab_0 + - cxx-compiler=1.6.0=h1c7c39f_0 + - gfortran=12.2.0=h2c809b3_1 + - jupyter-lsp=2.2.0=pyhd8ed1ab_0 + - jupyterlab_server=2.24.0=pyhd8ed1ab_0 + - nbconvert=7.7.2=pyhd8ed1ab_0 + - notebook-shim=0.2.3=pyhd8ed1ab_0 + - pythran=0.13.1=py310h9209b79_0 + - r-base=4.3.0=h7a6543b_0 + - fortran-compiler=1.6.0=h932d759_0 + - jupyterlab=4.0.3=pyhd8ed1ab_0 + - rpy2=3.5.11=py310r43hc1335a1_2 + - compilers=1.6.0=h694c41f_0 + - notebook=7.0.0=pyhd8ed1ab_0 + - widgetsnbextension=3.6.4=pyhd8ed1ab_0 + - ipywidgets=7.7.5=pyhd8ed1ab_0 + - jupyter-jsmol=2022.1.0=pyhd8ed1ab_0 + - jupyter_sphinx=0.4.0=py310h2ec42d9_1 diff --git a/src/pyproject.toml.m4 b/src/pyproject.toml.m4 index 56f1b2b03ab..82d683d55a0 100644 --- a/src/pyproject.toml.m4 +++ b/src/pyproject.toml.m4 @@ -21,3 +21,8 @@ requires = [ memory_allocator \ ')] build-backend = "setuptools.build_meta" + +[tool.conda-lock] +platforms = [ + 'osx-64', 'linux-64' +] From 1860af64524bf16abc6649c1eed9666757c223b9 Mon Sep 17 00:00:00 2001 From: Tobias Diez Date: Tue, 25 Jul 2023 00:11:11 +0200 Subject: [PATCH 02/33] fix env file name --- .github/workflows/ci-conda.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci-conda.yml b/.github/workflows/ci-conda.yml index f35fe985a9a..0f01bbc478a 100644 --- a/.github/workflows/ci-conda.yml +++ b/.github/workflows/ci-conda.yml @@ -68,7 +68,7 @@ jobs: channels: conda-forge,defaults channel-priority: true activate-environment: sage-build - environment-file: src/${{ matrix.conda-env }}-${{ matrix.python }}-${{ matrix.os }}.yml + environment-file: src/${{ matrix.conda-env }}-${{ matrix.python }}-${{ startsWith(matrix.os, 'macos') && 'macos' || 'linux' }}.yml - name: Print Conda environment shell: bash -l {0} From 1e3b1db9018e6ba4e63397ac39eb7f4d3dc29a82 Mon Sep 17 00:00:00 2001 From: Tobias Diez Date: Tue, 25 Jul 2023 00:42:49 +0200 Subject: [PATCH 03/33] add more lock files --- src/environment-3.11-linux.yml | 150 ++++----- src/environment-3.11-macos.yml | 125 ++++---- src/environment-dev-3.10-linux.yml | 478 +++++++++++++++++++++++++++++ src/environment-dev-3.10-macos.yml | 414 +++++++++++++++++++++++++ src/environment-dev-3.9-linux.yml | 478 +++++++++++++++++++++++++++++ src/environment-dev-3.9-macos.yml | 416 +++++++++++++++++++++++++ 6 files changed, 1923 insertions(+), 138 deletions(-) create mode 100644 src/environment-dev-3.10-linux.yml create mode 100644 src/environment-dev-3.10-macos.yml create mode 100644 src/environment-dev-3.9-linux.yml create mode 100644 src/environment-dev-3.9-macos.yml diff --git a/src/environment-3.11-linux.yml b/src/environment-3.11-linux.yml index 47095e822c0..5119fc6fd31 100644 --- a/src/environment-3.11-linux.yml +++ b/src/environment-3.11-linux.yml @@ -7,7 +7,7 @@ channels: dependencies: - _libgcc_mutex=0.1=conda_forge - _r-mutex=1.0.1=anacondar_1 - - ca-certificates=2023.5.7=hbcca054_0 + - ca-certificates=2023.7.22=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 @@ -23,7 +23,7 @@ dependencies: - pari-galdata=0.0.20180411=0 - pari-galpol=0.0.20180625=0 - pari-seadata-small=0.0.20090618=0 - - python_abi=3.10=3_cp310 + - python_abi=3.11=3_cp311 - sagemath-db-combinatorial-designs=20140630=1 - sagemath-db-graphs=20210214=hd8ed1ab_0 - sagemath-db-polytopes=20170220=1 @@ -103,6 +103,7 @@ dependencies: - rhash=1.4.3=h166bdaf_0 - sed=4.8=he412f7d_0 - symmetrica=3.0.1=hcb278e6_0 + - xkeyboard-config=2.38=h0b41bf4_0 - xorg-inputproto=2.3.2=h7f98852_1002 - xorg-kbproto=1.0.7=h7f98852_1002 - xorg-libice=1.0.10=h7f98852_0 @@ -135,8 +136,8 @@ dependencies: - libsqlite=3.42.0=h2797004_0 - libssh2=1.11.0=h0841786_0 - libvorbis=1.3.7=h9c3ff4c_0 - - libxcb=1.15=h0b41bf4_0 - - libxml2=2.11.4=h0d562d8_0 + - libxcb=1.13=h7f98852_1004 + - libxml2=2.10.4=hfdac1af_0 - mpfr=4.2.0=hb012696_0 - mysql-common=8.0.33=hf1915f5_2 - ntl=11.4.3=hef3c4d3_1 @@ -165,17 +166,17 @@ dependencies: - gfan=0.6.2=hb86e20a_1003 - gfortran_impl_linux-64=12.3.0=hfcedea8_0 - gxx_impl_linux-64=12.3.0=he2b93b0_0 - - igraph=0.7.1=0 - krb5=1.20.1=h81ceb04_0 - libcblas=3.9.0=17_linux64_openblas - libflint=2.9.0=h2f819a4_ntl_100 - libgcrypt=1.10.1=h166bdaf_0 - libglib=2.76.4=hebfc3b9_0 - - libhwloc=2.9.1=nocuda_h7313eea_6 + - libhwloc=2.9.1=hd6dc26d_0 - liblapack=3.9.0=17_linux64_openblas - - libllvm16=16.0.6=h5cf9203_0 + - libllvm16=16.0.3=hbf9e925_1 - libsndfile=1.2.0=hb75c966_0 - libtiff=4.5.1=h8b53f26_0 + - libxkbcommon=1.5.0=h79f4944_1 - llvm-openmp=16.0.6=h4dfa4b3_0 - m4ri=20140914=h7ca028e_1005 - mpc=1.3.1=hfe3b2da_0 @@ -185,42 +186,43 @@ dependencies: - pandoc=3.1.3=h32600fe_0 - pari=2.15.4=h4d4ae9b_2_pthread - ppl=1.2=h6ec01c2_1006 - - python=3.10.12=hd12c33a_0_cpython + - python=3.11.4=hab00c5b_0_cpython - sqlite=3.42.0=h2c6b66d_0 - tachyon=0.99b6=0 - texinfo=7.0=pl5321h0f457ee_0 - tktable=2.10=hb7b940f_3 - - 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.6=h8ee46fc_0 + - xcb-util=0.4.0=h516909a_0 + - xcb-util-keysyms=0.4.0=h516909a_0 + - xcb-util-renderutil=0.3.9=h166bdaf_0 + - xcb-util-wm=0.4.1=h516909a_0 + - xorg-libx11=1.8.4=h0b41bf4_0 - alabaster=0.7.13=pyhd8ed1ab_0 - appdirs=1.4.4=pyh9f0ad1d_0 - appnope=0.1.3=pyhd8ed1ab_0 - arb=2.23.0=h44d021b_0 + - arpack=3.7.0=hdefa2d7_2 - attrs=23.1.0=pyh71513ae_1 - automake=1.16.5=pl5321ha770c72_0 - backcall=0.2.0=pyh9f0ad1d_0 - backports=1.0=pyhd8ed1ab_3 - - backports.zoneinfo=0.2.1=py310hff52083_7 + - backports.zoneinfo=0.2.1=py311h38be061_7 - brotli=1.0.9=h166bdaf_9 - - brotli-python=1.0.9=py310hd8f1fbe_9 + - brotli-python=1.0.9=py311ha362b79_9 - c-compiler=1.6.0=hd590300_0 - cachetools=5.3.1=pyhd8ed1ab_0 - - certifi=2023.5.7=pyhd8ed1ab_0 - - chardet=5.1.0=py310hff52083_0 + - certifi=2023.7.22=pyhd8ed1ab_0 + - chardet=5.1.0=py311h38be061_0 - charset-normalizer=3.2.0=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_0 - cycler=0.11.0=pyhd8ed1ab_0 - - cysignals=1.11.2=py310h945e7c7_2 - - cython=0.29.36=py310hc6cd4ac_0 + - cysignals=1.11.2=py311h82528dc_2 + - cython=0.29.36=py311hb755f60_0 - dbus=1.13.6=h5008d03_3 - - debugpy=1.6.7=py310heca2aa9_0 + - debugpy=1.6.7=py311hcafe171_0 - decorator=5.1.1=pyhd8ed1ab_0 - defusedxml=0.7.1=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - - docutils=0.19=py310hff52083_1 + - docutils=0.19=py311h38be061_1 - dsdp=5.8=hd9d9efa_1203 - eclib=20230424=hdef1efb_0 - editables=0.3=pyhd8ed1ab_0 @@ -236,7 +238,7 @@ dependencies: - gfortran=12.3.0=h499e0f7_1 - gfortran_linux-64=12.3.0=h7fe76b4_1 - glib-tools=2.76.4=hfc55251_0 - - gmpy2=2.1.2=py310h3ec546c_1 + - gmpy2=2.1.2=py311h6a5fa03_1 - gsl=2.7=he838d99_0 - gxx=12.3.0=h8d2909c_1 - gxx_linux-64=12.3.0=h8a814eb_1 @@ -246,11 +248,11 @@ dependencies: - ipython_genutils=0.2.0=py_1 - json5=0.9.14=pyhd8ed1ab_0 - jupyterlab_widgets=1.1.1=pyhd8ed1ab_0 - - kiwisolver=1.4.4=py310hbf28c38_1 + - kiwisolver=1.4.4=py311h4dd048b_1 - lcalc=2.0.5=h6a8a7c6_1 - lcms2=2.15=haa2dc70_1 - libbrial=1.2.12=h138cd66_0 - - libclang13=16.0.6=default_h4d60ac6_0 + - libclang13=16.0.3=default_h4d60ac6_2 - libcups=2.3.3=h36d4200_3 - libcurl=8.1.2=h409715c_0 - liblapacke=3.9.0=17_linux64_openblas @@ -258,14 +260,14 @@ dependencies: - libsystemd0=253=h8c4010b_1 - libwebp=1.3.1=hbf2b3c1_0 - m4rie=20150908=h7ca028e_1001 - - markupsafe=2.1.3=py310h2372a71_0 + - markupsafe=2.1.3=py311h459d7ec_0 - maxima=5.45.0=h9d73b02_3 - mistune=3.0.0=pyhd8ed1ab_0 - mpmath=1.3.0=pyhd8ed1ab_0 - munkres=1.1.4=pyh9f0ad1d_0 - nest-asyncio=1.5.6=pyhd8ed1ab_0 - networkx=2.8.8=pyhd8ed1ab_0 - - numpy=1.25.1=py310ha4c1d20_0 + - numpy=1.25.1=py311h64a7726_0 - openjpeg=2.5.0=hfec8fc6_2 - packaging=23.1=pyhd8ed1ab_0 - pandocfilters=1.5.0=pyhd8ed1ab_0 @@ -277,30 +279,29 @@ dependencies: - pluggy=1.2.0=pyhd8ed1ab_0 - ply=3.11=py_1 - prometheus_client=0.17.1=pyhd8ed1ab_0 - - psutil=5.9.5=py310h1fa729e_0 + - psutil=5.9.5=py311h2582759_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_0 + - pybind11-global=2.11.1=py311h9547e67_0 - pycparser=2.21=pyhd8ed1ab_0 - pygments=2.15.1=pyhd8ed1ab_0 - pyparsing=3.0.9=pyhd8ed1ab_0 - - pyrsistent=0.19.3=py310h1fa729e_0 + - pyrsistent=0.19.3=py311h2582759_0 - pysocks=1.7.1=pyha2e5f31_6 - - python-fastjsonschema=2.17.1=pyhd8ed1ab_0 + - python-fastjsonschema=2.18.0=pyhd8ed1ab_0 - python-json-logger=2.0.7=pyhd8ed1ab_0 - - python-lrcalc=2.1=py310hd8f1fbe_5 + - python-lrcalc=2.1=py311ha362b79_5 - python-tzdata=2023.3=pyhd8ed1ab_0 - pytz=2023.3=pyhd8ed1ab_0 - - pyyaml=6.0=py310h5764c6d_5 - - pyzmq=25.1.0=py310h5bbb5d0_0 + - pyyaml=6.0=py311hd4cff14_5 + - pyzmq=25.1.0=py311h75c88c4_0 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.9.2=py310hcb5633a_0 - - rw=0.8=h516909a_1001 + - rpds-py=0.9.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=63.4.3=py310hff52083_0 + - setuptools=59.8.0=py311h38be061_1 - simplegeneric=0.8.1=py_1 - singular=4.2.1.p3=h1ea75ed_2 - six=1.16.0=pyh6c4a22f_0 @@ -318,22 +319,20 @@ dependencies: - toml=0.10.2=pyhd8ed1ab_0 - tomli=2.0.1=pyhd8ed1ab_0 - tomlkit=0.11.8=pyha770c72_0 - - tornado=6.3.2=py310h2372a71_0 + - tornado=6.3.2=py311h459d7ec_0 - traitlets=5.9.0=pyhd8ed1ab_0 - trove-classifiers=2023.7.6=pyhd8ed1ab_0 - typing_extensions=4.7.1=pyha770c72_0 - typing_utils=0.1.0=pyhd8ed1ab_0 - - tzlocal=5.0.1=py310hff52083_0 - - unicodedata2=15.0.0=py310h5764c6d_0 + - tzlocal=5.0.1=py311h38be061_0 - vcversioner=2.16.0.0=py_1 - webencodings=0.5.1=py_1 - websocket-client=1.6.1=pyhd8ed1ab_0 - - wheel=0.40.0=pyhd8ed1ab_1 - - xcb-util-image=0.4.0=h8ee46fc_1 - - xkeyboard-config=2.39=hd590300_0 + - wheel=0.41.0=pyhd8ed1ab_0 + - xcb-util-image=0.4.0=h166bdaf_0 - xorg-libxext=1.3.4=h0b41bf4_2 - xorg-libxfixes=5.0.3=h7f98852_1004 - - xorg-libxrender=0.9.11=hd590300_0 + - xorg-libxrender=0.9.10=h7f98852_1003 - xorg-libxt=1.3.0=hd590300_0 - zipp=3.16.2=pyhd8ed1ab_0 - anyio=3.7.1=pyhd8ed1ab_0 @@ -346,19 +345,19 @@ dependencies: - blas-devel=3.9.0=17_linux64_openblas - bleach=6.0.0=pyhd8ed1ab_0 - brial=1.2.12=pyha3edaa6_0 - - cairo=1.16.0=hbbf8b49_1016 - - cffi=1.15.1=py310h255011f_3 + - cairo=1.16.0=h35add3b_1015 + - cffi=1.15.1=py311h409f033_3 - cmake=3.26.4=hcfe8598_0 - comm=0.1.3=pyhd8ed1ab_0 - - contourpy=1.1.0=py310hd41b1e2_0 + - contourpy=1.1.0=py311h9547e67_0 - cppy=1.2.1=pyhd8ed1ab_0 - curl=8.1.2=h409715c_0 - cxx-compiler=1.6.0=h00ab1b0_0 - - cypari2=2.1.3=py310h14ed79e_2 + - cypari2=2.1.3=py311hd2352ae_2 - deprecation=2.1.0=pyh9f0ad1d_0 - - fonttools=4.41.0=py310h2372a71_0 + - fonttools=4.41.1=py311h459d7ec_0 - fortran-compiler=1.6.0=heb67821_0 - - fpylll=0.5.9=py310h0dadf69_1 + - fpylll=0.5.9=py311hcfae7cf_1 - giac=1.9.0.21=h673759e_1 - glib=2.76.4=hfc55251_0 - html5lib=1.1=pyh9f0ad1d_0 @@ -367,27 +366,26 @@ dependencies: - jedi=0.18.2=pyhd8ed1ab_0 - jinja2=3.1.2=pyhd8ed1ab_1 - jupyterlab_pygments=0.2.2=pyhd8ed1ab_0 - - libclang=16.0.6=default_h1cdf331_0 + - libclang=16.0.3=default_h1cdf331_2 - libgd=2.3.3=hfa28ad5_6 - - libxkbcommon=1.5.0=h5d7e998_3 - linbox=1.6.3=h9d78c56_7 - matplotlib-inline=0.1.6=pyhd8ed1ab_0 - - memory-allocator=0.1.2=py310h5764c6d_2 + - memory-allocator=0.1.2=py311hd4cff14_2 - overrides=7.3.1=pyhd8ed1ab_0 - pexpect=4.8.0=pyh1a96a4e_2 - - pillow=10.0.0=py310h582fbeb_0 - - pip=23.2=pyhd8ed1ab_0 - - pplpy=0.8.7=py310h28f6eb6_0 - - primecountpy=0.1.0=py310hd41b1e2_3 + - pillow=9.5.0=py311h573f0d3_0 + - pip=23.2.1=pyhd8ed1ab_0 + - pplpy=0.8.7=py311h85abca9_0 + - primecountpy=0.1.0=py311h9547e67_3 - pulseaudio-client=16.1=hb77b528_4 - - pybind11=2.11.1=py310hd41b1e2_0 + - pybind11=2.11.1=py311h9547e67_0 - pyproject-api=1.5.3=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - - pytz-deprecation-shim=0.1.0.post0=py310hff52083_3 + - pytz-deprecation-shim=0.1.0.post0=py311h38be061_3 - referencing=0.30.0=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - sagemath-db-conway-polynomials=0.5.0=ha878542_1 - - sip=6.7.9=py310hc6cd4ac_0 + - sip=6.7.10=py311hb755f60_0 - suitesparse=5.10.1=h9e50725_1 - sympy=1.12=pypyh9d50eac_103 - terminado=0.17.1=pyh41d4057_0 @@ -395,35 +393,37 @@ dependencies: - typing-extensions=4.7.1=hd8ed1ab_0 - urllib3=2.0.4=pyhd8ed1ab_0 - xorg-libxi=1.7.10=h7f98852_0 - - argon2-cffi-bindings=21.2.0=py310h5764c6d_3 + - argon2-cffi-bindings=21.2.0=py311hd4cff14_3 - blas=2.117=openblas - compilers=1.6.0=ha770c72_0 - - cvxopt=1.3.1=py310h14a12bf_0 - - gstreamer=1.22.3=h977cf35_1 + - cvxopt=1.3.1=py311h2b3fd1d_0 + - gstreamer=1.22.0=h25f0c4b_2 - harfbuzz=7.3.0=hdb3a94d_0 - hatchling=1.18.0=pyhd8ed1ab_0 + - igraph=0.9.10=ha1f048c_1 - importlib-resources=6.0.0=pyhd8ed1ab_1 - importlib_metadata=6.8.0=hd8ed1ab_0 - jsonschema-specifications=2023.7.1=pyhd8ed1ab_0 - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1 - - matplotlib-base=3.7.2=py310hf38f957_0 + - matplotlib-base=3.7.2=py311h54ef318_0 - platformdirs=3.9.1=pyhd8ed1ab_0 - poetry-core=1.6.1=pyhd8ed1ab_0 - - pyqt5-sip=12.11.0=py310heca2aa9_3 - - pythran=0.13.1=py310hfb6f7a9_0 + - pyqt5-sip=12.11.0=py311hcafe171_3 + - pythran=0.13.1=py311h92ebd52_0 - requests=2.31.0=pyhd8ed1ab_0 - setuptools-scm=7.1.0=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 - wcwidth=0.2.6=pyhd8ed1ab_0 - xorg-libxtst=1.2.3=h7f98852_1002 - argon2-cffi=21.3.0=pyhd8ed1ab_0 - - gst-plugins-base=1.22.3=h938bd60_1 + - gst-plugins-base=1.22.0=h4243ec0_2 - jsonschema=4.18.4=pyhd8ed1ab_0 - - jupyter_core=5.3.1=py310hff52083_0 + - jupyter_core=5.3.1=py311h38be061_0 - openjdk=17.0.3=h19c1b89_7 - pango=1.50.14=heaa33ce_1 - pooch=1.7.0=pyha770c72_3 - prompt-toolkit=3.0.39=pyha770c72_0 + - rw=0.9=h7f98852_0 - setuptools_scm=7.1.0=hd8ed1ab_0 - sphinx=6.2.1=pyhd8ed1ab_0 - virtualenv=20.24.1=pyhd8ed1ab_0 @@ -432,9 +432,9 @@ dependencies: - jupyter_events=0.6.3=pyhd8ed1ab_0 - nbformat=5.9.1=pyhd8ed1ab_0 - prompt_toolkit=3.0.39=hd8ed1ab_0 - - qt-main=5.15.8=h01ceb2d_12 - - r-base=4.3.1=hfabd6f2_1 - - scipy=1.10.1=py310ha4c1d20_3 + - qt-main=5.15.8=haa3a1c2_11 + - r-base=4.3.0=h0fc540b_0 + - scipy=1.10.1=py311h64a7726_3 - sphinx-basic-ng=1.0.0b2=pyhd8ed1ab_0 - sphinx-copybutton=0.5.2=pyhd8ed1ab_0 - sphinxcontrib-websupport=1.2.4=pyhd8ed1ab_1 @@ -442,15 +442,15 @@ dependencies: - furo=2023.5.20=pyhd8ed1ab_1 - ipython=8.14.0=pyh41d4057_0 - nbclient=0.8.0=pyhd8ed1ab_0 - - pyqt=5.15.7=py310hab646b1_3 - - rpy2=3.5.11=py310r43h278f3c1_2 + - pyqt=5.15.7=py311ha74522f_3 + - rpy2=3.5.11=py311r43h1f0f07a_2 - ipykernel=6.24.0=pyh71e2992_0 - - matplotlib=3.7.2=py310hff52083_0 + - matplotlib=3.7.2=py311h38be061_0 - nbconvert-core=7.7.2=pyhd8ed1ab_0 - jupyter_server=2.7.0=pyhd8ed1ab_0 - nbconvert-pandoc=7.7.2=pyhd8ed1ab_0 - jupyter-lsp=2.2.0=pyhd8ed1ab_0 - - jupyterlab_server=2.23.0=pyhd8ed1ab_0 + - jupyterlab_server=2.24.0=pyhd8ed1ab_0 - nbconvert=7.7.2=pyhd8ed1ab_0 - notebook-shim=0.2.3=pyhd8ed1ab_0 - jupyterlab=4.0.3=pyhd8ed1ab_0 @@ -458,4 +458,4 @@ dependencies: - widgetsnbextension=3.6.4=pyhd8ed1ab_0 - ipywidgets=7.7.5=pyhd8ed1ab_0 - jupyter-jsmol=2022.1.0=pyhd8ed1ab_0 - - jupyter_sphinx=0.4.0=py310hff52083_1 + - jupyter_sphinx=0.4.0=py311h38be061_1 diff --git a/src/environment-3.11-macos.yml b/src/environment-3.11-macos.yml index 03f77b45f02..601dfa6f504 100644 --- a/src/environment-3.11-macos.yml +++ b/src/environment-3.11-macos.yml @@ -9,7 +9,7 @@ dependencies: - bc=1.07.1=h0d85af4_0 - bzip2=1.0.8=h0d85af4_4 - c-ares=1.19.1=h0dc2134_0 - - ca-certificates=2023.5.7=h8857fd0_0 + - ca-certificates=2023.7.22=h8857fd0_0 - cliquer=1.22=hbcb3906_0 - font-ttf-dejavu-sans-mono=2.37=hab24e00_0 - font-ttf-inconsolata=3.000=h77eed37_0 @@ -50,8 +50,9 @@ dependencies: - pixman=0.40.0=hbcb3906_0 - planarity=3.0.0.5=hbcb3906_1002 - pthread-stubs=0.4=hc929b4f_1001 - - python_abi=3.10=3_cp310 + - python_abi=3.11=3_cp311 - rhash=1.4.3=hac89ed1_0 + - rw=0.7=1 - sagemath-db-combinatorial-designs=20140630=1 - sagemath-db-graphs=20210214=hd8ed1ab_0 - sagemath-db-polytopes=20170220=1 @@ -76,11 +77,11 @@ dependencies: - libbrotlidec=1.0.9=hb7f2c08_9 - libbrotlienc=1.0.9=hb7f2c08_9 - libedit=3.1.20191231=h0678c8f_2 - - libgfortran5=12.2.0=he409387_32 + - libgfortran5=12.3.0=hbd3c1fe_1 - libpng=1.6.39=ha978bb4_0 - libsqlite=3.42.0=h58db7d2_0 - libxcb=1.15=hb7f2c08_0 - - libxml2=2.10.4=h554bb67_0 + - libxml2=2.11.4=hd95e348_0 - lrcalc=2.1=hf0c8a7f_5 - ninja=1.11.1=hb8565cd_0 - openjdk=20.0.0=h7d26f99_0 @@ -115,11 +116,11 @@ dependencies: - givaro=4.1.1=h0a799c6_3 - glpk=5.0=h3cb5acd_0 - jmol=14.32.9=h694c41f_0 - - krb5=1.20.1=h049b76e_0 - - libgfortran=5.0.0=11_3_0_h97931a8_32 + - krb5=1.21.1=hb884880_0 + - libgfortran=5.0.0=12_3_0_h97931a8_1 - libglib=2.76.4=hc62aa5d_0 - libhomfly=1.02r6=hc929b4f_0 - - libllvm15=15.0.7=h7001e86_1 + - libllvm15=15.0.7=he4b1e75_2 - libnghttp2=1.52.0=he2ab024_0 - libssh2=1.11.0=hd019ec5_0 - libtiff=4.5.1=hf955e92_0 @@ -128,7 +129,7 @@ dependencies: - ntl=11.4.3=h0ab3c2f_1 - pari=2.15.4=h93f793c_2_pthread - primecount=7.6=ha894c9a_0 - - python=3.10.12=had23ca6_0_cpython + - python=3.11.4=h30d4d87_0_cpython - sigtool=0.1.3=h88f4db0_0 - sqlite=3.42.0=h2b0dec6_0 - tachyon=0.99b6=0 @@ -139,22 +140,22 @@ dependencies: - attrs=23.1.0=pyh71513ae_1 - backcall=0.2.0=pyh9f0ad1d_0 - backports=1.0=pyhd8ed1ab_3 - - backports.zoneinfo=0.2.1=py310h2ec42d9_7 + - backports.zoneinfo=0.2.1=py311h6eed73b_7 - brotli=1.0.9=hb7f2c08_9 - - brotli-python=1.0.9=py310h7a76584_9 + - brotli-python=1.0.9=py311h814d153_9 - cachetools=5.3.1=pyhd8ed1ab_0 - - certifi=2023.5.7=pyhd8ed1ab_0 - - chardet=5.1.0=py310h2ec42d9_0 + - certifi=2023.7.22=pyhd8ed1ab_0 + - chardet=5.1.0=py311h6eed73b_0 - charset-normalizer=3.2.0=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_0 - cycler=0.11.0=pyhd8ed1ab_0 - - cysignals=1.11.2=py310h8c82e65_2 - - cython=0.29.36=py310h9e9d8ca_0 - - debugpy=1.6.7=py310h7a76584_0 + - cysignals=1.11.2=py311h8a58447_2 + - cython=0.29.36=py311hdf8f085_0 + - debugpy=1.6.7=py311h814d153_0 - decorator=5.1.1=pyhd8ed1ab_0 - defusedxml=0.7.1=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - - docutils=0.19=py310h2ec42d9_1 + - docutils=0.19=py311h6eed73b_1 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 - exceptiongroup=1.1.2=pyhd8ed1ab_0 @@ -171,19 +172,19 @@ dependencies: - ipython_genutils=0.2.0=py_1 - json5=0.9.14=pyhd8ed1ab_0 - jupyterlab_widgets=1.1.1=pyhd8ed1ab_0 - - kiwisolver=1.4.4=py310ha23aa8a_1 + - kiwisolver=1.4.4=py311hd2070f0_1 - lcalc=2.0.5=h3a941db_1 - lcms2=2.15=h2dcdeff_1 - ld64_osx-64=609=h8ce0179_13 - libbrial=1.2.12=h8f704d5_0 - libclang-cpp15=15.0.7=default_hdb78580_2 - - libcurl=8.1.2=hbee3ae8_0 + - libcurl=8.2.0=h5f667d7_0 - libflint=2.9.0=hfd2f71f_ntl_100 - libopenblas=0.3.23=openmp_h429af6e_0 - libwebp=1.3.1=hc961f54_0 - - llvm-tools=15.0.7=h7001e86_1 + - llvm-tools=15.0.7=he4b1e75_2 - m4rie=20150908=h3f75d11_1001 - - markupsafe=2.1.3=py310h6729b98_0 + - markupsafe=2.1.3=py311h2725bcf_0 - maxima=5.45.0=hd029580_3 - mistune=3.0.0=pyhd8ed1ab_0 - mpc=1.3.1=h81bd1dd_0 @@ -204,30 +205,29 @@ dependencies: - ply=3.11=py_1 - ppl=1.2=ha60d53e_1006 - prometheus_client=0.17.1=pyhd8ed1ab_0 - - psutil=5.9.5=py310h90acd4f_0 + - psutil=5.9.5=py311h5547dcb_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_0 + - pybind11-global=2.11.1=py311h5fe6e05_0 - pycparser=2.21=pyhd8ed1ab_0 - pygments=2.15.1=pyhd8ed1ab_0 - pyparsing=3.0.9=pyhd8ed1ab_0 - - pyrsistent=0.19.3=py310h90acd4f_0 + - pyrsistent=0.19.3=py311h5547dcb_0 - pysocks=1.7.1=pyha2e5f31_6 - - python-fastjsonschema=2.17.1=pyhd8ed1ab_0 + - python-fastjsonschema=2.18.0=pyhd8ed1ab_0 - python-json-logger=2.0.7=pyhd8ed1ab_0 - - python-lrcalc=2.1=py310h7a76584_5 + - python-lrcalc=2.1=py311h814d153_5 - python-tzdata=2023.3=pyhd8ed1ab_0 - pytz=2023.3=pyhd8ed1ab_0 - - pyyaml=6.0=py310h90acd4f_5 - - pyzmq=25.1.0=py310h998be00_0 + - pyyaml=6.0=py311h5547dcb_5 + - pyzmq=25.1.0=py311h5dacc12_0 - qd=2.3.22=h2beb688_1004 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.9.2=py310h3461e44_0 + - rpds-py=0.9.2=py311h299eb51_0 - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 - sagetex=3.6.1=pyhd8ed1ab_0 - - send2trash=1.8.2=pyh41d4057_0 - - setuptools=63.4.3=py310h2ec42d9_0 + - setuptools=59.8.0=py311h6eed73b_1 - simplegeneric=0.8.1=py_1 - six=1.16.0=pyh6c4a22f_0 - sniffio=1.3.0=pyhd8ed1ab_0 @@ -243,17 +243,16 @@ dependencies: - toml=0.10.2=pyhd8ed1ab_0 - tomli=2.0.1=pyhd8ed1ab_0 - tomlkit=0.11.8=pyha770c72_0 - - tornado=6.3.2=py310h6729b98_0 + - tornado=6.3.2=py311h2725bcf_0 - traitlets=5.9.0=pyhd8ed1ab_0 - trove-classifiers=2023.7.6=pyhd8ed1ab_0 - typing_extensions=4.7.1=pyha770c72_0 - typing_utils=0.1.0=pyhd8ed1ab_0 - - tzlocal=5.0.1=py310h2ec42d9_0 - - unicodedata2=15.0.0=py310h90acd4f_0 + - tzlocal=5.0.1=py311h6eed73b_0 - vcversioner=2.16.0.0=py_1 - webencodings=0.5.1=py_1 - websocket-client=1.6.1=pyhd8ed1ab_0 - - wheel=0.40.0=pyhd8ed1ab_1 + - wheel=0.41.0=pyhd8ed1ab_0 - zipp=3.16.2=pyhd8ed1ab_0 - anyio=3.7.1=pyhd8ed1ab_0 - arb=2.23.0=h905a977_0 @@ -267,19 +266,19 @@ dependencies: - brial=1.2.12=pyha3edaa6_0 - cairo=1.16.0=h09dd18c_1016 - cctools_osx-64=973.0.1=h48a5a9d_13 - - cffi=1.15.1=py310ha78151a_3 + - cffi=1.15.1=py311ha86e640_3 - clang-15=15.0.7=default_hdb78580_2 - cmake=3.26.4=hf40c264_0 - comm=0.1.3=pyhd8ed1ab_0 - cppy=1.2.1=pyhd8ed1ab_0 - - curl=8.1.2=hbee3ae8_0 - - cypari2=2.1.3=py310hb5d31c9_2 + - curl=8.2.0=h5f667d7_0 + - cypari2=2.1.3=py311h7d823c7_2 - deprecation=2.1.0=pyh9f0ad1d_0 - eclib=20230424=hd00e801_0 - - fonttools=4.41.0=py310h6729b98_0 + - fonttools=4.41.1=py311h2725bcf_0 - fplll=5.4.4=hdfdc905_0 - gfortran_impl_osx-64=12.2.0=hdfd80ef_32 - - gmpy2=2.1.2=py310hb691cb2_1 + - gmpy2=2.1.2=py311hc5b4402_1 - html5lib=1.1=pyh9f0ad1d_0 - importlib-metadata=6.8.0=pyha770c72_0 - importlib_resources=6.0.0=pyhd8ed1ab_1 @@ -290,17 +289,18 @@ dependencies: - libblas=3.9.0=17_osx64_openblas - libgd=2.3.3=h3d994df_6 - matplotlib-inline=0.1.6=pyhd8ed1ab_0 - - memory-allocator=0.1.2=py310h90acd4f_2 + - memory-allocator=0.1.2=py311h5547dcb_2 - openblas=0.3.23=openmp_hbefa662_0 - overrides=7.3.1=pyhd8ed1ab_0 - pexpect=4.8.0=pyh1a96a4e_2 - - pillow=10.0.0=py310hd63a8c7_0 - - pip=23.2=pyhd8ed1ab_0 - - primecountpy=0.1.0=py310h88cfcbd_3 - - pybind11=2.11.1=py310h88cfcbd_0 + - pillow=10.0.0=py311h7cb0e2d_0 + - pip=23.2.1=pyhd8ed1ab_0 + - primecountpy=0.1.0=py311h5fe6e05_3 + - pybind11=2.11.1=py311h5fe6e05_0 + - pyobjc-core=9.2=py311hf110eff_0 - pyproject-api=1.5.3=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - - pytz-deprecation-shim=0.1.0.post0=py310h2ec42d9_3 + - pytz-deprecation-shim=0.1.0.post0=py311h6eed73b_3 - referencing=0.30.0=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - sagemath-db-conway-polynomials=0.5.0=h033912b_1 @@ -309,7 +309,7 @@ dependencies: - tinycss2=1.2.1=pyhd8ed1ab_0 - typing-extensions=4.7.1=hd8ed1ab_0 - urllib3=2.0.4=pyhd8ed1ab_0 - - argon2-cffi-bindings=21.2.0=py310h90acd4f_3 + - argon2-cffi-bindings=21.2.0=py311h5547dcb_3 - cctools=973.0.1=hd9ad811_13 - clang=15.0.7=h694c41f_2 - harfbuzz=7.3.0=h413ba03_0 @@ -322,43 +322,43 @@ dependencies: - liblapack=3.9.0=17_osx64_openblas - platformdirs=3.9.1=pyhd8ed1ab_0 - poetry-core=1.6.1=pyhd8ed1ab_0 - - pplpy=0.8.7=py310h190f582_0 + - pplpy=0.8.7=py311h47e80fe_0 + - pyobjc-framework-cocoa=9.2=py311hf110eff_0 - requests=2.31.0=pyhd8ed1ab_0 - setuptools-scm=7.1.0=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 - sympy=1.12=pypyh9d50eac_103 - wcwidth=0.2.6=pyhd8ed1ab_0 - argon2-cffi=21.3.0=pyhd8ed1ab_0 - - arpack=3.7.0=hefb7bc6_2 - clangxx=15.0.7=default_hdb78580_2 - dsdp=5.8=h6e329d1_1203 - fflas-ffpack=2.4.3=h026fd7e_2 - gsl=2.7=h93259b0_0 - iml=1.0.5=h64b42ca_1003 - jsonschema=4.18.4=pyhd8ed1ab_0 - - jupyter_core=5.3.1=py310h2ec42d9_0 + - jupyter_core=5.3.1=py311h6eed73b_0 - liblapacke=3.9.0=17_osx64_openblas - - numpy=1.25.1=py310h7451ae0_0 + - numpy=1.25.1=py311hc44ba51_0 - pango=1.50.14=hbce5e75_1 - pooch=1.7.0=pyha770c72_3 - prompt-toolkit=3.0.39=pyha770c72_0 + - send2trash=1.8.2=pyhd1c38e8_0 - setuptools_scm=7.1.0=hd8ed1ab_0 - sphinx=6.2.1=pyhd8ed1ab_0 - suitesparse=5.10.1=h7aff33d_1 - virtualenv=20.24.1=pyhd8ed1ab_0 - blas-devel=3.9.0=17_osx64_openblas - compiler-rt_osx-64=15.0.7=he1888fc_1 - - contourpy=1.1.0=py310h88cfcbd_0 - - cvxopt=1.3.1=py310ha550498_0 - - fpylll=0.5.9=py310h0d1ef73_1 + - contourpy=1.1.0=py311h5fe6e05_0 + - cvxopt=1.3.1=py311ha4c19de_0 + - fpylll=0.5.9=py311ha75317a_1 - giac=1.9.0.21=h92f3f65_1 - - igraph=0.9.10=h6560ca6_1 - jupyter_client=8.3.0=pyhd8ed1ab_0 - jupyter_events=0.6.3=pyhd8ed1ab_0 - linbox=1.6.3=hdde8d14_7 - nbformat=5.9.1=pyhd8ed1ab_0 - prompt_toolkit=3.0.39=hd8ed1ab_0 - - scipy=1.10.1=py310h3900cf1_3 + - scipy=1.10.1=py311h16c3c4d_3 - sphinx-basic-ng=1.0.0b2=pyhd8ed1ab_0 - sphinx-copybutton=0.5.2=pyhd8ed1ab_0 - sphinxcontrib-websupport=1.2.4=pyhd8ed1ab_1 @@ -367,12 +367,11 @@ dependencies: - compiler-rt=15.0.7=he1888fc_1 - furo=2023.5.20=pyhd8ed1ab_1 - ipython=8.14.0=pyhd1c38e8_0 - - matplotlib-base=3.7.2=py310h475a17b_0 + - matplotlib-base=3.7.2=py311haff9b01_0 - nbclient=0.8.0=pyhd8ed1ab_0 - - rw=0.9=h0d85af4_0 - clang_osx-64=15.0.7=h03d6864_3 - ipykernel=6.24.0=pyh5fb750a_0 - - matplotlib=3.7.2=py310h2ec42d9_0 + - matplotlib=3.7.2=py311h6eed73b_0 - nbconvert-core=7.7.2=pyhd8ed1ab_0 - c-compiler=1.6.0=h63c33a9_0 - clangxx_osx-64=15.0.7=h2133e9c_3 @@ -382,17 +381,17 @@ dependencies: - cxx-compiler=1.6.0=h1c7c39f_0 - gfortran=12.2.0=h2c809b3_1 - jupyter-lsp=2.2.0=pyhd8ed1ab_0 - - jupyterlab_server=2.23.0=pyhd8ed1ab_0 + - jupyterlab_server=2.24.0=pyhd8ed1ab_0 - nbconvert=7.7.2=pyhd8ed1ab_0 - notebook-shim=0.2.3=pyhd8ed1ab_0 - - pythran=0.13.1=py310h9209b79_0 - - r-base=4.3.0=h7a6543b_0 + - pythran=0.13.1=py311hd5c4f45_0 + - r-base=4.3.1=had2b78c_3 - fortran-compiler=1.6.0=h932d759_0 - jupyterlab=4.0.3=pyhd8ed1ab_0 - - rpy2=3.5.11=py310r43hc1335a1_2 + - rpy2=3.5.11=py311r43h4a70a88_2 - compilers=1.6.0=h694c41f_0 - notebook=7.0.0=pyhd8ed1ab_0 - widgetsnbextension=3.6.4=pyhd8ed1ab_0 - ipywidgets=7.7.5=pyhd8ed1ab_0 - jupyter-jsmol=2022.1.0=pyhd8ed1ab_0 - - jupyter_sphinx=0.4.0=py310h2ec42d9_1 + - jupyter_sphinx=0.4.0=py311h6eed73b_1 diff --git a/src/environment-dev-3.10-linux.yml b/src/environment-dev-3.10-linux.yml new file mode 100644 index 00000000000..880b139dadd --- /dev/null +++ b/src/environment-dev-3.10-linux.yml @@ -0,0 +1,478 @@ +# Generated by conda-lock. +# platform: linux-64 +# input_hash: f0eef6aeafe7239ecbb9479957b227d93d976f7154c46e509083c6ef793567fb + +channels: + - conda-forge +dependencies: + - _libgcc_mutex=0.1=conda_forge + - _r-mutex=1.0.1=anacondar_1 + - ca-certificates=2023.7.22=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=hab24e00_0 + - gh=2.32.1=ha8f183a_0 + - kernel-headers_linux-64=2.6.32=he073ed8_16 + - ld_impl_linux-64=2.40=h41732ed_0 + - libgcc-devel_linux-64=12.3.0=h8bca6fd_0 + - libgfortran5=13.1.0=h15d22d2_0 + - libstdcxx-devel_linux-64=12.3.0=h8bca6fd_0 + - libstdcxx-ng=13.1.0=hfd8a6a1_0 + - mathjax=3.2.2=ha770c72_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 + - python_abi=3.10=3_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 + - fonts-conda-forge=1=0 + - libgfortran-ng=13.1.0=h69a702a_0 + - libgomp=13.1.0=he5830b7_0 + - pari-seadata=0.0.20090618=0 + - sysroot_linux-64=2.12=he073ed8_16 + - threejs-sage=122=hd8ed1ab_2 + - binutils_impl_linux-64=2.40=hf600244_0 + - fonts-conda-ecosystem=1=0 + - binutils=2.40=hdd6e379_0 + - binutils_linux-64=2.40=hbdbef99_1 + - _openmp_mutex=4.5=2_kmp_llvm + - libgcc-ng=13.1.0=he5830b7_0 + - alsa-lib=1.2.8=h166bdaf_0 + - attr=2.5.1=h166bdaf_1 + - bc=1.07.1=h7f98852_0 + - bdw-gc=8.0.6=h4bd325d_0 + - bzip2=1.0.8=h7f98852_4 + - c-ares=1.19.1=hd590300_0 + - cliquer=1.22=h36c2ea0_0 + - fftw=3.3.10=nompi_hc118613_108 + - 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.2.1=h58526e2_0 + - graphite2=1.3.13=h58526e2_1001 + - icu=72.1=hcb278e6_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.1=h58526e2_0 + - libbrotlicommon=1.0.9=h166bdaf_9 + - libcbor=0.10.2=hcb278e6_0 + - libdeflate=1.18=h0b41bf4_0 + - libev=4.33=h516909a_1 + - libexpat=2.5.0=hcb278e6_1 + - libffi=3.4.2=h7f98852_5 + - libiconv=1.17=h166bdaf_0 + - libjpeg-turbo=2.1.5.1=h0b41bf4_0 + - libnsl=2.0.0=h7f98852_0 + - libogg=1.3.4=h7f98852_1 + - libopenblas=0.3.23=pthreads_h80387f5_0 + - libopus=1.3.1=h7f98852_1 + - libsanitizer=12.3.0=h0f45ef3_0 + - libsodium=1.0.18=h36c2ea0_1 + - libtool=2.4.7=h27087fc_0 + - libuuid=2.38.1=h0b41bf4_0 + - libuv=1.44.2=h166bdaf_0 + - libwebp-base=1.3.1=hd590300_0 + - 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_0 + - mpg123=1.31.3=hcb278e6_0 + - nauty=2.7.2=h7f98852_0 + - ncurses=6.4=hcb278e6_0 + - ninja=1.11.1=h924138e_0 + - nspr=4.35=h27087fc_0 + - openssl=3.1.1=hd590300_1 + - palp=2.20=h36c2ea0_0 + - patch=2.7.6=h7f98852_1002 + - pixman=0.40.0=h36c2ea0_0 + - pkg-config=0.29.2=h36c2ea0_1008 + - planarity=3.0.0.5=h36c2ea0_1002 + - primesieve=11.0=hcb278e6_0 + - pthread-stubs=0.4=h36c2ea0_1001 + - qd=2.3.22=h2cc385e_1004 + - qhull=2020.2=h4bd325d_2 + - rhash=1.4.3=h166bdaf_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.0.10=h7f98852_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_0 + - givaro=4.1.1=h192cbe9_1 + - glpk=5.0=h445213a_0 + - libblas=3.9.0=17_linux64_openblas + - libbrotlidec=1.0.9=h166bdaf_9 + - libbrotlienc=1.0.9=h166bdaf_9 + - libcap=2.67=he9d0100_0 + - libedit=3.1.20191231=he28a2e2_2 + - libevent=2.1.12=hf998b51_1 + - libflac=1.4.3=h59595ed_0 + - libgpg-error=1.47=h71f35ed_0 + - libhomfly=1.02r6=h36c2ea0_0 + - libnghttp2=1.52.0=h61bc06f_0 + - libpng=1.6.39=h753d276_0 + - libsqlite=3.42.0=h2797004_0 + - libssh2=1.11.0=h0841786_0 + - libvorbis=1.3.7=h9c3ff4c_0 + - libxcb=1.15=h0b41bf4_0 + - libxml2=2.11.4=h0d562d8_0 + - mpfr=4.2.0=hb012696_0 + - mysql-common=8.0.33=hf1915f5_2 + - ntl=11.4.3=hef3c4d3_1 + - openblas=0.3.23=pthreads_h855a84d_0 + - pcre2=10.40=hc3806b6_0 + - perl=5.32.1=4_hd590300_perl5 + - primecount=7.6=hcb278e6_0 + - readline=8.2=h8228510_1 + - tar=1.34=hb2e2bae_1 + - tk=8.6.12=h27826a3_0 + - xorg-fixesproto=5.0=h7f98852_1002 + - xorg-libsm=1.2.3=hd9c2040_1000 + - zeromq=4.3.4=h9c3ff4c_1 + - zlib=1.2.13=hd590300_5 + - zstd=1.5.2=hfc55251_7 + - autoconf=2.71=pl5321h2b4cb7a_1 + - boost-cpp=1.82.0=he19a28c_1 + - brotli-bin=1.0.9=h166bdaf_9 + - bwidget=1.9.14=ha770c72_1 + - ecl=21.2.1=h9d73b02_2 + - fplll=5.4.4=h8780c30_0 + - freetype=2.12.1=hca18f0e_1 + - gap-core=4.12.2=he9a28a4_3 + - gcc=12.3.0=h8d2909c_1 + - gcc_linux-64=12.3.0=h76fc315_1 + - gfan=0.6.2=hb86e20a_1003 + - gfortran_impl_linux-64=12.3.0=hfcedea8_0 + - gxx_impl_linux-64=12.3.0=he2b93b0_0 + - igraph=0.7.1=0 + - krb5=1.20.1=h81ceb04_0 + - libcblas=3.9.0=17_linux64_openblas + - libflint=2.9.0=h2f819a4_ntl_100 + - libgcrypt=1.10.1=h166bdaf_0 + - libglib=2.76.4=hebfc3b9_0 + - libhwloc=2.9.1=nocuda_h7313eea_6 + - liblapack=3.9.0=17_linux64_openblas + - libllvm16=16.0.6=h5cf9203_1 + - libsndfile=1.2.0=hb75c966_0 + - libtiff=4.5.1=h8b53f26_0 + - libudev1=253=h0b41bf4_1 + - llvm-openmp=16.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_2 + - nss=3.89=he45b914_0 + - pandoc=3.1.3=h32600fe_0 + - pari=2.15.4=h4d4ae9b_2_pthread + - ppl=1.2=h6ec01c2_1006 + - python=3.10.12=hd12c33a_0_cpython + - sqlite=3.42.0=h2c6b66d_0 + - tachyon=0.99b6=0 + - texinfo=7.0=pl5321h0f457ee_0 + - tktable=2.10=hb7b940f_3 + - 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.6=h8ee46fc_0 + - alabaster=0.7.13=pyhd8ed1ab_0 + - appdirs=1.4.4=pyh9f0ad1d_0 + - appnope=0.1.3=pyhd8ed1ab_0 + - arb=2.23.0=h44d021b_0 + - attrs=23.1.0=pyh71513ae_1 + - automake=1.16.5=pl5321ha770c72_0 + - backcall=0.2.0=pyh9f0ad1d_0 + - backports=1.0=pyhd8ed1ab_3 + - backports.zoneinfo=0.2.1=py310hff52083_7 + - brotli=1.0.9=h166bdaf_9 + - brotli-python=1.0.9=py310hd8f1fbe_9 + - c-compiler=1.6.0=hd590300_0 + - cachetools=5.3.1=pyhd8ed1ab_0 + - certifi=2023.7.22=pyhd8ed1ab_0 + - chardet=5.1.0=py310hff52083_0 + - charset-normalizer=3.2.0=pyhd8ed1ab_0 + - colorama=0.4.6=pyhd8ed1ab_0 + - cycler=0.11.0=pyhd8ed1ab_0 + - cysignals=1.11.2=py310h945e7c7_2 + - cython=0.29.36=py310hc6cd4ac_0 + - dbus=1.13.6=h5008d03_3 + - debugpy=1.6.7=py310heca2aa9_0 + - decorator=5.1.1=pyhd8ed1ab_0 + - defusedxml=0.7.1=pyhd8ed1ab_0 + - distlib=0.3.7=pyhd8ed1ab_0 + - docutils=0.19=py310hff52083_1 + - dsdp=5.8=hd9d9efa_1203 + - eclib=20230424=hdef1efb_0 + - editables=0.3=pyhd8ed1ab_0 + - entrypoints=0.4=pyhd8ed1ab_0 + - exceptiongroup=1.1.2=pyhd8ed1ab_0 + - execnet=2.0.2=pyhd8ed1ab_0 + - executing=1.2.0=pyhd8ed1ab_0 + - fflas-ffpack=2.4.3=h912ac81_2 + - filelock=3.12.2=pyhd8ed1ab_0 + - flit-core=3.9.0=pyhd8ed1ab_0 + - fontconfig=2.14.2=h14ed4e7_0 + - gap-defaults=4.12.2=ha770c72_3 + - gast=0.5.4=pyhd8ed1ab_0 + - gfortran=12.3.0=h499e0f7_1 + - gfortran_linux-64=12.3.0=h7fe76b4_1 + - glib-tools=2.76.4=hfc55251_0 + - gmpy2=2.1.2=py310h3ec546c_1 + - gsl=2.7=he838d99_0 + - gxx=12.3.0=h8d2909c_1 + - gxx_linux-64=12.3.0=h8a814eb_1 + - idna=3.4=pyhd8ed1ab_0 + - imagesize=1.4.1=pyhd8ed1ab_0 + - iml=1.0.5=hd75c201_1003 + - iniconfig=2.0.0=pyhd8ed1ab_0 + - ipython_genutils=0.2.0=py_1 + - json5=0.9.14=pyhd8ed1ab_0 + - jupyterlab_widgets=1.1.1=pyhd8ed1ab_0 + - kiwisolver=1.4.4=py310hbf28c38_1 + - lcalc=2.0.5=h6a8a7c6_1 + - lcms2=2.15=haa2dc70_1 + - libbrial=1.2.12=h138cd66_0 + - libclang13=16.0.6=default_h4d60ac6_1 + - libcups=2.3.3=h36d4200_3 + - libcurl=8.1.2=h409715c_0 + - libfido2=1.13.0=h2e5b2a7_0 + - liblapacke=3.9.0=17_linux64_openblas + - libpq=15.3=hbcd7760_1 + - libsystemd0=253=h8c4010b_1 + - libwebp=1.3.1=hbf2b3c1_0 + - m4rie=20150908=h7ca028e_1001 + - markupsafe=2.1.3=py310h2372a71_0 + - maxima=5.45.0=h9d73b02_3 + - mistune=3.0.0=pyhd8ed1ab_0 + - mpmath=1.3.0=pyhd8ed1ab_0 + - munkres=1.1.4=pyh9f0ad1d_0 + - nest-asyncio=1.5.6=pyhd8ed1ab_0 + - networkx=2.8.8=pyhd8ed1ab_0 + - numpy=1.25.1=py310ha4c1d20_0 + - openjpeg=2.5.0=hfec8fc6_2 + - packaging=23.1=pyhd8ed1ab_0 + - pandocfilters=1.5.0=pyhd8ed1ab_0 + - parso=0.8.3=pyhd8ed1ab_0 + - pathspec=0.11.1=pyhd8ed1ab_0 + - pickleshare=0.7.5=py_1003 + - pkgconfig=1.5.5=pyhd8ed1ab_4 + - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_0 + - pluggy=1.2.0=pyhd8ed1ab_0 + - ply=3.11=py_1 + - prometheus_client=0.17.1=pyhd8ed1ab_0 + - psutil=5.9.5=py310h1fa729e_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_0 + - pycodestyle=2.10.0=pyhd8ed1ab_0 + - pycparser=2.21=pyhd8ed1ab_0 + - pygments=2.15.1=pyhd8ed1ab_0 + - pyparsing=3.0.9=pyhd8ed1ab_0 + - pyrsistent=0.19.3=py310h1fa729e_0 + - pysocks=1.7.1=pyha2e5f31_6 + - pyspellchecker=0.7.2=pyhd8ed1ab_0 + - python-fastjsonschema=2.18.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=pyhd8ed1ab_0 + - pyyaml=6.0=py310h5764c6d_5 + - pyzmq=25.1.0=py310h5bbb5d0_0 + - rfc3986-validator=0.1.1=pyh9f0ad1d_0 + - rpds-py=0.9.2=py310hcb5633a_0 + - rw=0.8=h516909a_1001 + - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 + - sagetex=3.6.1=pyhd8ed1ab_0 + - send2trash=1.8.2=pyh41d4057_0 + - setuptools=63.4.3=py310hff52083_0 + - simplegeneric=0.8.1=py_1 + - singular=4.2.1.p3=h1ea75ed_2 + - six=1.16.0=pyh6c4a22f_0 + - sniffio=1.3.0=pyhd8ed1ab_0 + - snowballstemmer=2.2.0=pyhd8ed1ab_0 + - soupsieve=2.3.2.post1=pyhd8ed1ab_0 + - sphinxcontrib-applehelp=1.0.4=pyhd8ed1ab_0 + - sphinxcontrib-devhelp=1.0.2=py_0 + - sphinxcontrib-htmlhelp=2.0.1=pyhd8ed1ab_0 + - sphinxcontrib-jsmath=1.0.1=py_0 + - sphinxcontrib-qthelp=1.0.3=py_0 + - sphinxcontrib-serializinghtml=1.1.5=pyhd8ed1ab_2 + - sympow=2.023.6=hc6ab17c_3 + - tbb=2021.9.0=hf52228f_0 + - toml=0.10.2=pyhd8ed1ab_0 + - tomli=2.0.1=pyhd8ed1ab_0 + - tomlkit=0.11.8=pyha770c72_0 + - tornado=6.3.2=py310h2372a71_0 + - traitlets=5.9.0=pyhd8ed1ab_0 + - trove-classifiers=2023.7.6=pyhd8ed1ab_0 + - typing_extensions=4.7.1=pyha770c72_0 + - typing_utils=0.1.0=pyhd8ed1ab_0 + - tzlocal=5.0.1=py310hff52083_0 + - unicodedata2=15.0.0=py310h5764c6d_0 + - vcversioner=2.16.0.0=py_1 + - webencodings=0.5.1=py_1 + - websocket-client=1.6.1=pyhd8ed1ab_0 + - wheel=0.41.0=pyhd8ed1ab_0 + - xcb-util-image=0.4.0=h8ee46fc_1 + - xkeyboard-config=2.39=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_0 + - zipp=3.16.2=pyhd8ed1ab_0 + - anyio=3.7.1=pyhd8ed1ab_0 + - asttokens=2.2.1=pyhd8ed1ab_0 + - async-lru=2.0.3=pyhd8ed1ab_0 + - babel=2.12.1=pyhd8ed1ab_1 + - backports.functools_lru_cache=1.6.5=pyhd8ed1ab_0 + - beautifulsoup4=4.12.2=pyha770c72_0 + - beniget=0.4.1=pyhd8ed1ab_0 + - blas-devel=3.9.0=17_linux64_openblas + - bleach=6.0.0=pyhd8ed1ab_0 + - brial=1.2.12=pyha3edaa6_0 + - cairo=1.16.0=hbbf8b49_1016 + - cattrs=23.1.2=pyhd8ed1ab_0 + - cffi=1.15.1=py310h255011f_3 + - cmake=3.26.4=hcfe8598_0 + - comm=0.1.3=pyhd8ed1ab_0 + - contourpy=1.1.0=py310hd41b1e2_0 + - cppy=1.2.1=pyhd8ed1ab_0 + - curl=8.1.2=h409715c_0 + - cxx-compiler=1.6.0=h00ab1b0_0 + - cypari2=2.1.3=py310h14ed79e_2 + - deprecation=2.1.0=pyh9f0ad1d_0 + - fonttools=4.41.1=py310h2372a71_0 + - fortran-compiler=1.6.0=heb67821_0 + - fpylll=0.5.9=py310h0dadf69_1 + - giac=1.9.0.21=h673759e_1 + - glib=2.76.4=hfc55251_0 + - html5lib=1.1=pyh9f0ad1d_0 + - importlib-metadata=6.8.0=pyha770c72_0 + - importlib_resources=6.0.0=pyhd8ed1ab_1 + - jedi=0.18.2=pyhd8ed1ab_0 + - jinja2=3.1.2=pyhd8ed1ab_1 + - jupyterlab_pygments=0.2.2=pyhd8ed1ab_0 + - libclang=16.0.6=default_h1cdf331_1 + - libgd=2.3.3=hfa28ad5_6 + - libxkbcommon=1.5.0=h5d7e998_3 + - linbox=1.6.3=h9d78c56_7 + - matplotlib-inline=0.1.6=pyhd8ed1ab_0 + - memory-allocator=0.1.2=py310h5764c6d_2 + - openssh=9.3p1=hbcd7760_1 + - overrides=7.3.1=pyhd8ed1ab_0 + - pexpect=4.8.0=pyh1a96a4e_2 + - pillow=10.0.0=py310h582fbeb_0 + - pip=23.2.1=pyhd8ed1ab_0 + - pplpy=0.8.7=py310h28f6eb6_0 + - primecountpy=0.1.0=py310hd41b1e2_3 + - pulseaudio-client=16.1=hb77b528_4 + - pybind11=2.11.1=py310hd41b1e2_0 + - pyproject-api=1.5.3=pyhd8ed1ab_0 + - pytest=7.4.0=pyhd8ed1ab_0 + - python-dateutil=2.8.2=pyhd8ed1ab_0 + - pytz-deprecation-shim=0.1.0.post0=py310hff52083_3 + - referencing=0.30.0=pyhd8ed1ab_0 + - rfc3339-validator=0.1.4=pyhd8ed1ab_0 + - sagemath-db-conway-polynomials=0.5.0=ha878542_1 + - sip=6.7.9=py310hc6cd4ac_0 + - suitesparse=5.10.1=h9e50725_1 + - sympy=1.12=pypyh9d50eac_103 + - terminado=0.17.1=pyh41d4057_0 + - tinycss2=1.2.1=pyhd8ed1ab_0 + - typing-extensions=4.7.1=hd8ed1ab_0 + - urllib3=2.0.4=pyhd8ed1ab_0 + - xorg-libxi=1.7.10=h7f98852_0 + - argon2-cffi-bindings=21.2.0=py310h5764c6d_3 + - blas=2.117=openblas + - compilers=1.6.0=ha770c72_0 + - cvxopt=1.3.1=py310h14a12bf_0 + - git=2.41.0=pl5321h86e50cf_0 + - gstreamer=1.22.3=h977cf35_1 + - harfbuzz=7.3.0=hdb3a94d_0 + - hatchling=1.18.0=pyhd8ed1ab_0 + - importlib-resources=6.0.0=pyhd8ed1ab_1 + - importlib_metadata=6.8.0=hd8ed1ab_0 + - jsonschema-specifications=2023.7.1=pyhd8ed1ab_0 + - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1 + - lsprotocol=2023.0.0a2=pyhd8ed1ab_0 + - matplotlib-base=3.7.2=py310hf38f957_0 + - platformdirs=3.9.1=pyhd8ed1ab_0 + - poetry-core=1.6.1=pyhd8ed1ab_0 + - pyqt5-sip=12.11.0=py310heca2aa9_3 + - pytest-xdist=3.3.1=pyhd8ed1ab_0 + - pythran=0.13.1=py310hfb6f7a9_0 + - requests=2.31.0=pyhd8ed1ab_0 + - setuptools-scm=7.1.0=pyhd8ed1ab_0 + - stack_data=0.6.2=pyhd8ed1ab_0 + - wcwidth=0.2.6=pyhd8ed1ab_0 + - xorg-libxtst=1.2.3=h7f98852_1002 + - argon2-cffi=21.3.0=pyhd8ed1ab_0 + - gst-plugins-base=1.22.3=h938bd60_1 + - jsonschema=4.18.4=pyhd8ed1ab_0 + - jupyter_core=5.3.1=py310hff52083_0 + - openjdk=17.0.3=h19c1b89_7 + - pango=1.50.14=heaa33ce_1 + - pooch=1.7.0=pyha770c72_3 + - prompt-toolkit=3.0.39=pyha770c72_0 + - setuptools_scm=7.1.0=hd8ed1ab_0 + - sphinx=6.2.1=pyhd8ed1ab_0 + - typeguard=3.0.2=pyhd8ed1ab_0 + - virtualenv=20.24.1=pyhd8ed1ab_0 + - jmol=14.32.10=ha770c72_0 + - jupyter_client=8.3.0=pyhd8ed1ab_0 + - jupyter_events=0.6.3=pyhd8ed1ab_0 + - nbformat=5.9.1=pyhd8ed1ab_0 + - prompt_toolkit=3.0.39=hd8ed1ab_0 + - pygls=1.0.2=pyhd8ed1ab_0 + - qt-main=5.15.8=h01ceb2d_12 + - r-base=4.3.1=hfabd6f2_1 + - scipy=1.10.1=py310ha4c1d20_3 + - sphinx-basic-ng=1.0.0b2=pyhd8ed1ab_0 + - sphinx-copybutton=0.5.2=pyhd8ed1ab_0 + - sphinxcontrib-websupport=1.2.4=pyhd8ed1ab_1 + - tox=4.6.4=pyhd8ed1ab_0 + - esbonio=0.16.1=pyhd8ed1ab_0 + - furo=2023.5.20=pyhd8ed1ab_1 + - ipython=8.14.0=pyh41d4057_0 + - nbclient=0.8.0=pyhd8ed1ab_0 + - pyqt=5.15.7=py310hab646b1_3 + - rpy2=3.5.11=py310r43h278f3c1_2 + - ipykernel=6.24.0=pyh71e2992_0 + - matplotlib=3.7.2=py310hff52083_0 + - nbconvert-core=7.7.2=pyhd8ed1ab_0 + - jupyter_server=2.7.0=pyhd8ed1ab_0 + - nbconvert-pandoc=7.7.2=pyhd8ed1ab_0 + - jupyter-lsp=2.2.0=pyhd8ed1ab_0 + - jupyterlab_server=2.24.0=pyhd8ed1ab_0 + - nbconvert=7.7.2=pyhd8ed1ab_0 + - notebook-shim=0.2.3=pyhd8ed1ab_0 + - jupyterlab=4.0.3=pyhd8ed1ab_0 + - notebook=7.0.0=pyhd8ed1ab_0 + - widgetsnbextension=3.6.4=pyhd8ed1ab_0 + - ipywidgets=7.7.5=pyhd8ed1ab_0 + - jupyter-jsmol=2022.1.0=pyhd8ed1ab_0 + - jupyter_sphinx=0.4.0=py310hff52083_1 diff --git a/src/environment-dev-3.10-macos.yml b/src/environment-dev-3.10-macos.yml new file mode 100644 index 00000000000..e83ea7b265e --- /dev/null +++ b/src/environment-dev-3.10-macos.yml @@ -0,0 +1,414 @@ +# Generated by conda-lock. +# platform: osx-64 +# input_hash: 0b14fa06d655e7683981c27f658f33c24850625df4dd94351391308bebc4acf1 + +channels: + - conda-forge +dependencies: + - _r-mutex=1.0.1=anacondar_1 + - bc=1.07.1=h0d85af4_0 + - bzip2=1.0.8=h0d85af4_4 + - c-ares=1.19.1=h0dc2134_0 + - ca-certificates=2023.7.22=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=hab24e00_0 + - fribidi=1.0.10=hbcb3906_0 + - gh=2.32.1=h990441c_0 + - giflib=5.2.1=hb7f2c08_3 + - icu=72.1=h7336db1_0 + - libatomic_ops=7.6.14=hb7f2c08_0 + - libbrotlicommon=1.0.9=hb7f2c08_9 + - libcxx=16.0.6=hd57cbcb_0 + - libdeflate=1.18=hac1461d_0 + - libev=4.33=haf1e3a3_1 + - libexpat=2.5.0=hf0c8a7f_1 + - libffi=3.4.2=h0d85af4_5 + - libgfortran-devel_osx-64=12.2.0=hf0fd499_32 + - libiconv=1.17=hac89ed1_0 + - libjpeg-turbo=2.1.5.1=hb7f2c08_0 + - libsodium=1.0.18=hbcb3906_1 + - libtool=2.4.7=hf0c8a7f_0 + - libuv=1.44.2=hac89ed1_0 + - libwebp-base=1.3.1=h0dc2134_0 + - libzlib=1.2.13=h8a1eda9_5 + - llvm-openmp=16.0.6=hff08bdf_0 + - m4=1.4.18=haf1e3a3_1001 + - make=4.3=h22f3db7_1 + - mathjax=3.2.2=h694c41f_0 + - metis=5.1.1=he965462_0 + - nauty=2.7.2=h0d85af4_0 + - ncurses=6.4=hf0c8a7f_0 + - 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 + - pixman=0.40.0=hbcb3906_0 + - planarity=3.0.0.5=hbcb3906_1002 + - pthread-stubs=0.4=hc929b4f_1001 + - python_abi=3.10=3_cp310 + - rhash=1.4.3=hac89ed1_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 + - 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.2.1=h2e338ed_0 + - graphite2=1.3.13=h2e338ed_1001 + - isl=0.25=hb486fe8_0 + - lerc=4.0.0=hb486fe8_0 + - libbraiding=1.1=h2e338ed_0 + - libbrotlidec=1.0.9=hb7f2c08_9 + - libbrotlienc=1.0.9=hb7f2c08_9 + - libcbor=0.10.2=hf0c8a7f_0 + - libedit=3.1.20191231=h0678c8f_2 + - libgfortran5=12.3.0=hbd3c1fe_1 + - libpng=1.6.39=ha978bb4_0 + - libsqlite=3.42.0=h58db7d2_0 + - libxcb=1.15=hb7f2c08_0 + - libxml2=2.10.4=h554bb67_0 + - lrcalc=2.1=hf0c8a7f_5 + - ninja=1.11.1=hb8565cd_0 + - openjdk=20.0.0=h7d26f99_0 + - openssl=3.1.1=h8a1eda9_1 + - pandoc=3.1.3=h9d075a6_0 + - pari-seadata=0.0.20090618=0 + - pcre2=10.40=h1c4e4bc_0 + - pkg-config=0.29.2=ha3d46e9_1008 + - primesieve=11.0=hf0c8a7f_0 + - qhull=2020.2=h940c156_2 + - readline=8.2=h9e318b2_1 + - symmetrica=3.0.1=hf0c8a7f_0 + - tapi=1100.0.11=h9ce4665_0 + - tar=1.34=hcb2f6ea_1 + - tbb=2021.9.0=hb8565cd_0 + - texinfo=7.0=pl5321hc47821c_0 + - threejs-sage=122=hd8ed1ab_2 + - tk=8.6.12=h5dbffcc_0 + - zeromq=4.3.4=he49afe7_1 + - zlib=1.2.13=h8a1eda9_5 + - zstd=1.5.2=h829000d_7 + - automake=1.16.5=pl5321h694c41f_0 + - boost-cpp=1.82.0=hd754db5_1 + - brotli-bin=1.0.9=hb7f2c08_9 + - bwidget=1.9.14=h694c41f_1 + - cddlib=1!0.94m=h0f52abe_0 + - ecl=21.2.1=hd029580_2 + - ecm=7.0.4=h343d7f2_1002 + - fonts-conda-ecosystem=1=0 + - freetype=2.12.1=h3f81eb7_1 + - gap-core=4.12.2=hc16eb5f_3 + - givaro=4.1.1=h0a799c6_3 + - glpk=5.0=h3cb5acd_0 + - jmol=14.32.9=h694c41f_0 + - krb5=1.20.1=h049b76e_0 + - libfido2=1.13.0=h14e1388_0 + - libgfortran=5.0.0=12_3_0_h97931a8_1 + - libglib=2.76.4=hc62aa5d_0 + - libhomfly=1.02r6=hc929b4f_0 + - libllvm15=15.0.7=h7001e86_1 + - libnghttp2=1.52.0=he2ab024_0 + - libssh2=1.11.0=hd019ec5_0 + - libtiff=4.5.1=hf955e92_0 + - m4ri=20140914=h3f75d11_1005 + - mpfr=4.2.0=h4f9bd69_0 + - ntl=11.4.3=h0ab3c2f_1 + - pari=2.15.4=h93f793c_2_pthread + - primecount=7.6=ha894c9a_0 + - python=3.10.12=had23ca6_0_cpython + - sigtool=0.1.3=h88f4db0_0 + - sqlite=3.42.0=h2b0dec6_0 + - tachyon=0.99b6=0 + - tktable=2.10=h49f0cf7_3 + - alabaster=0.7.13=pyhd8ed1ab_0 + - appdirs=1.4.4=pyh9f0ad1d_0 + - appnope=0.1.3=pyhd8ed1ab_0 + - attrs=23.1.0=pyh71513ae_1 + - backcall=0.2.0=pyh9f0ad1d_0 + - backports=1.0=pyhd8ed1ab_3 + - backports.zoneinfo=0.2.1=py310h2ec42d9_7 + - brotli=1.0.9=hb7f2c08_9 + - brotli-python=1.0.9=py310h7a76584_9 + - cachetools=5.3.1=pyhd8ed1ab_0 + - certifi=2023.7.22=pyhd8ed1ab_0 + - chardet=5.1.0=py310h2ec42d9_0 + - charset-normalizer=3.2.0=pyhd8ed1ab_0 + - colorama=0.4.6=pyhd8ed1ab_0 + - cycler=0.11.0=pyhd8ed1ab_0 + - cysignals=1.11.2=py310h8c82e65_2 + - cython=0.29.36=py310h9e9d8ca_0 + - debugpy=1.6.7=py310h7a76584_0 + - decorator=5.1.1=pyhd8ed1ab_0 + - defusedxml=0.7.1=pyhd8ed1ab_0 + - distlib=0.3.7=pyhd8ed1ab_0 + - docutils=0.19=py310h2ec42d9_1 + - editables=0.3=pyhd8ed1ab_0 + - entrypoints=0.4=pyhd8ed1ab_0 + - exceptiongroup=1.1.2=pyhd8ed1ab_0 + - execnet=2.0.2=pyhd8ed1ab_0 + - executing=1.2.0=pyhd8ed1ab_0 + - fftw=3.3.10=nompi_h4fa670e_108 + - filelock=3.12.2=pyhd8ed1ab_0 + - flit-core=3.9.0=pyhd8ed1ab_0 + - fontconfig=2.14.2=h5bb23bf_0 + - gap-defaults=4.12.2=h694c41f_3 + - gast=0.5.4=pyhd8ed1ab_0 + - gfan=0.6.2=hd793b56_1003 + - idna=3.4=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 + - jupyterlab_widgets=1.1.1=pyhd8ed1ab_0 + - kiwisolver=1.4.4=py310ha23aa8a_1 + - lcalc=2.0.5=h3a941db_1 + - lcms2=2.15=h2dcdeff_1 + - ld64_osx-64=609=h8ce0179_13 + - libbrial=1.2.12=h8f704d5_0 + - libclang-cpp15=15.0.7=default_hdb78580_2 + - libcurl=8.1.2=hbee3ae8_0 + - libflint=2.9.0=hfd2f71f_ntl_100 + - libopenblas=0.3.23=openmp_h429af6e_0 + - libwebp=1.3.1=hc961f54_0 + - llvm-tools=15.0.7=h7001e86_1 + - m4rie=20150908=h3f75d11_1001 + - markupsafe=2.1.3=py310h6729b98_0 + - maxima=5.45.0=hd029580_3 + - mistune=3.0.0=pyhd8ed1ab_0 + - mpc=1.3.1=h81bd1dd_0 + - mpfi=1.5.4=h52b28e3_1001 + - mpmath=1.3.0=pyhd8ed1ab_0 + - munkres=1.1.4=pyh9f0ad1d_0 + - nest-asyncio=1.5.6=pyhd8ed1ab_0 + - networkx=2.8.8=pyhd8ed1ab_0 + - openjpeg=2.5.0=h13ac156_2 + - openssh=9.3p1=h9dc22bb_1 + - packaging=23.1=pyhd8ed1ab_0 + - pandocfilters=1.5.0=pyhd8ed1ab_0 + - parso=0.8.3=pyhd8ed1ab_0 + - pathspec=0.11.1=pyhd8ed1ab_0 + - pickleshare=0.7.5=py_1003 + - pkgconfig=1.5.5=pyhd8ed1ab_4 + - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_0 + - pluggy=1.2.0=pyhd8ed1ab_0 + - ply=3.11=py_1 + - ppl=1.2=ha60d53e_1006 + - prometheus_client=0.17.1=pyhd8ed1ab_0 + - psutil=5.9.5=py310h90acd4f_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_0 + - pycodestyle=2.10.0=pyhd8ed1ab_0 + - pycparser=2.21=pyhd8ed1ab_0 + - pygments=2.15.1=pyhd8ed1ab_0 + - pyparsing=3.0.9=pyhd8ed1ab_0 + - pyrsistent=0.19.3=py310h90acd4f_0 + - pysocks=1.7.1=pyha2e5f31_6 + - pyspellchecker=0.7.2=pyhd8ed1ab_0 + - python-fastjsonschema=2.18.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=pyhd8ed1ab_0 + - pyyaml=6.0=py310h90acd4f_5 + - pyzmq=25.1.0=py310h998be00_0 + - qd=2.3.22=h2beb688_1004 + - rfc3986-validator=0.1.1=pyh9f0ad1d_0 + - rpds-py=0.9.2=py310h3461e44_0 + - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 + - sagetex=3.6.1=pyhd8ed1ab_0 + - send2trash=1.8.2=pyh41d4057_0 + - setuptools=63.4.3=py310h2ec42d9_0 + - simplegeneric=0.8.1=py_1 + - six=1.16.0=pyh6c4a22f_0 + - sniffio=1.3.0=pyhd8ed1ab_0 + - snowballstemmer=2.2.0=pyhd8ed1ab_0 + - soupsieve=2.3.2.post1=pyhd8ed1ab_0 + - sphinxcontrib-applehelp=1.0.4=pyhd8ed1ab_0 + - sphinxcontrib-devhelp=1.0.2=py_0 + - sphinxcontrib-htmlhelp=2.0.1=pyhd8ed1ab_0 + - sphinxcontrib-jsmath=1.0.1=py_0 + - sphinxcontrib-qthelp=1.0.3=py_0 + - sphinxcontrib-serializinghtml=1.1.5=pyhd8ed1ab_2 + - sympow=2.023.6=h115ba6a_3 + - toml=0.10.2=pyhd8ed1ab_0 + - tomli=2.0.1=pyhd8ed1ab_0 + - tomlkit=0.11.8=pyha770c72_0 + - tornado=6.3.2=py310h6729b98_0 + - traitlets=5.9.0=pyhd8ed1ab_0 + - trove-classifiers=2023.7.6=pyhd8ed1ab_0 + - typing_extensions=4.7.1=pyha770c72_0 + - typing_utils=0.1.0=pyhd8ed1ab_0 + - tzlocal=5.0.1=py310h2ec42d9_0 + - unicodedata2=15.0.0=py310h90acd4f_0 + - vcversioner=2.16.0.0=py_1 + - webencodings=0.5.1=py_1 + - websocket-client=1.6.1=pyhd8ed1ab_0 + - wheel=0.41.0=pyhd8ed1ab_0 + - zipp=3.16.2=pyhd8ed1ab_0 + - anyio=3.7.1=pyhd8ed1ab_0 + - arb=2.23.0=h905a977_0 + - asttokens=2.2.1=pyhd8ed1ab_0 + - async-lru=2.0.3=pyhd8ed1ab_0 + - babel=2.12.1=pyhd8ed1ab_1 + - backports.functools_lru_cache=1.6.5=pyhd8ed1ab_0 + - beautifulsoup4=4.12.2=pyha770c72_0 + - beniget=0.4.1=pyhd8ed1ab_0 + - bleach=6.0.0=pyhd8ed1ab_0 + - brial=1.2.12=pyha3edaa6_0 + - cairo=1.16.0=h09dd18c_1016 + - cattrs=23.1.2=pyhd8ed1ab_0 + - cctools_osx-64=973.0.1=h48a5a9d_13 + - cffi=1.15.1=py310ha78151a_3 + - clang-15=15.0.7=default_hdb78580_2 + - cmake=3.26.4=hf40c264_0 + - comm=0.1.3=pyhd8ed1ab_0 + - cppy=1.2.1=pyhd8ed1ab_0 + - curl=8.1.2=hbee3ae8_0 + - cypari2=2.1.3=py310hb5d31c9_2 + - deprecation=2.1.0=pyh9f0ad1d_0 + - eclib=20230424=hd00e801_0 + - fonttools=4.41.1=py310h6729b98_0 + - fplll=5.4.4=hdfdc905_0 + - gfortran_impl_osx-64=12.2.0=hdfd80ef_32 + - gmpy2=2.1.2=py310hb691cb2_1 + - html5lib=1.1=pyh9f0ad1d_0 + - importlib-metadata=6.8.0=pyha770c72_0 + - importlib_resources=6.0.0=pyhd8ed1ab_1 + - jedi=0.18.2=pyhd8ed1ab_0 + - jinja2=3.1.2=pyhd8ed1ab_1 + - jupyterlab_pygments=0.2.2=pyhd8ed1ab_0 + - ld64=609=ha91a046_13 + - libblas=3.9.0=17_osx64_openblas + - libgd=2.3.3=h3d994df_6 + - matplotlib-inline=0.1.6=pyhd8ed1ab_0 + - memory-allocator=0.1.2=py310h90acd4f_2 + - openblas=0.3.23=openmp_hbefa662_0 + - overrides=7.3.1=pyhd8ed1ab_0 + - pexpect=4.8.0=pyh1a96a4e_2 + - pillow=10.0.0=py310hd63a8c7_0 + - pip=23.2.1=pyhd8ed1ab_0 + - primecountpy=0.1.0=py310h88cfcbd_3 + - pybind11=2.11.1=py310h88cfcbd_0 + - pyproject-api=1.5.3=pyhd8ed1ab_0 + - pytest=7.4.0=pyhd8ed1ab_0 + - python-dateutil=2.8.2=pyhd8ed1ab_0 + - pytz-deprecation-shim=0.1.0.post0=py310h2ec42d9_3 + - referencing=0.30.0=pyhd8ed1ab_0 + - rfc3339-validator=0.1.4=pyhd8ed1ab_0 + - sagemath-db-conway-polynomials=0.5.0=h033912b_1 + - singular=4.2.1.p3=hac851df_2 + - terminado=0.17.1=pyhd1c38e8_0 + - tinycss2=1.2.1=pyhd8ed1ab_0 + - typing-extensions=4.7.1=hd8ed1ab_0 + - urllib3=2.0.4=pyhd8ed1ab_0 + - argon2-cffi-bindings=21.2.0=py310h90acd4f_3 + - cctools=973.0.1=hd9ad811_13 + - clang=15.0.7=h694c41f_2 + - git=2.41.0=pl5321h5c607e1_0 + - harfbuzz=7.3.0=h413ba03_0 + - hatchling=1.18.0=pyhd8ed1ab_0 + - importlib-resources=6.0.0=pyhd8ed1ab_1 + - importlib_metadata=6.8.0=hd8ed1ab_0 + - jsonschema-specifications=2023.7.1=pyhd8ed1ab_0 + - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1 + - libcblas=3.9.0=17_osx64_openblas + - liblapack=3.9.0=17_osx64_openblas + - lsprotocol=2023.0.0a2=pyhd8ed1ab_0 + - platformdirs=3.9.1=pyhd8ed1ab_0 + - poetry-core=1.6.1=pyhd8ed1ab_0 + - pplpy=0.8.7=py310h190f582_0 + - pytest-xdist=3.3.1=pyhd8ed1ab_0 + - requests=2.31.0=pyhd8ed1ab_0 + - setuptools-scm=7.1.0=pyhd8ed1ab_0 + - stack_data=0.6.2=pyhd8ed1ab_0 + - sympy=1.12=pypyh9d50eac_103 + - wcwidth=0.2.6=pyhd8ed1ab_0 + - argon2-cffi=21.3.0=pyhd8ed1ab_0 + - arpack=3.7.0=hefb7bc6_2 + - clangxx=15.0.7=default_hdb78580_2 + - dsdp=5.8=h6e329d1_1203 + - fflas-ffpack=2.4.3=h026fd7e_2 + - gsl=2.7=h93259b0_0 + - iml=1.0.5=h64b42ca_1003 + - jsonschema=4.18.4=pyhd8ed1ab_0 + - jupyter_core=5.3.1=py310h2ec42d9_0 + - liblapacke=3.9.0=17_osx64_openblas + - numpy=1.25.1=py310h7451ae0_0 + - pango=1.50.14=hbce5e75_1 + - pooch=1.7.0=pyha770c72_3 + - prompt-toolkit=3.0.39=pyha770c72_0 + - setuptools_scm=7.1.0=hd8ed1ab_0 + - sphinx=6.2.1=pyhd8ed1ab_0 + - suitesparse=5.10.1=h7aff33d_1 + - typeguard=3.0.2=pyhd8ed1ab_0 + - virtualenv=20.24.1=pyhd8ed1ab_0 + - blas-devel=3.9.0=17_osx64_openblas + - compiler-rt_osx-64=15.0.7=he1888fc_1 + - contourpy=1.1.0=py310h88cfcbd_0 + - cvxopt=1.3.1=py310ha550498_0 + - fpylll=0.5.9=py310h0d1ef73_1 + - giac=1.9.0.21=h92f3f65_1 + - igraph=0.9.10=h6560ca6_1 + - jupyter_client=8.3.0=pyhd8ed1ab_0 + - jupyter_events=0.6.3=pyhd8ed1ab_0 + - linbox=1.6.3=hdde8d14_7 + - nbformat=5.9.1=pyhd8ed1ab_0 + - prompt_toolkit=3.0.39=hd8ed1ab_0 + - pygls=1.0.2=pyhd8ed1ab_0 + - scipy=1.10.1=py310h3900cf1_3 + - sphinx-basic-ng=1.0.0b2=pyhd8ed1ab_0 + - sphinx-copybutton=0.5.2=pyhd8ed1ab_0 + - sphinxcontrib-websupport=1.2.4=pyhd8ed1ab_1 + - tox=4.6.4=pyhd8ed1ab_0 + - blas=2.117=openblas + - compiler-rt=15.0.7=he1888fc_1 + - esbonio=0.16.1=pyhd8ed1ab_0 + - furo=2023.5.20=pyhd8ed1ab_1 + - ipython=8.14.0=pyhd1c38e8_0 + - matplotlib-base=3.7.2=py310h475a17b_0 + - nbclient=0.8.0=pyhd8ed1ab_0 + - rw=0.9=h0d85af4_0 + - clang_osx-64=15.0.7=h03d6864_3 + - ipykernel=6.24.0=pyh5fb750a_0 + - matplotlib=3.7.2=py310h2ec42d9_0 + - nbconvert-core=7.7.2=pyhd8ed1ab_0 + - c-compiler=1.6.0=h63c33a9_0 + - clangxx_osx-64=15.0.7=h2133e9c_3 + - gfortran_osx-64=12.2.0=h18f7dce_1 + - jupyter_server=2.7.0=pyhd8ed1ab_0 + - nbconvert-pandoc=7.7.2=pyhd8ed1ab_0 + - cxx-compiler=1.6.0=h1c7c39f_0 + - gfortran=12.2.0=h2c809b3_1 + - jupyter-lsp=2.2.0=pyhd8ed1ab_0 + - jupyterlab_server=2.24.0=pyhd8ed1ab_0 + - nbconvert=7.7.2=pyhd8ed1ab_0 + - notebook-shim=0.2.3=pyhd8ed1ab_0 + - pythran=0.13.1=py310h9209b79_0 + - r-base=4.3.0=h7a6543b_0 + - fortran-compiler=1.6.0=h932d759_0 + - jupyterlab=4.0.3=pyhd8ed1ab_0 + - rpy2=3.5.11=py310r43hc1335a1_2 + - compilers=1.6.0=h694c41f_0 + - notebook=7.0.0=pyhd8ed1ab_0 + - widgetsnbextension=3.6.4=pyhd8ed1ab_0 + - ipywidgets=7.7.5=pyhd8ed1ab_0 + - jupyter-jsmol=2022.1.0=pyhd8ed1ab_0 + - jupyter_sphinx=0.4.0=py310h2ec42d9_1 diff --git a/src/environment-dev-3.9-linux.yml b/src/environment-dev-3.9-linux.yml new file mode 100644 index 00000000000..880b139dadd --- /dev/null +++ b/src/environment-dev-3.9-linux.yml @@ -0,0 +1,478 @@ +# Generated by conda-lock. +# platform: linux-64 +# input_hash: f0eef6aeafe7239ecbb9479957b227d93d976f7154c46e509083c6ef793567fb + +channels: + - conda-forge +dependencies: + - _libgcc_mutex=0.1=conda_forge + - _r-mutex=1.0.1=anacondar_1 + - ca-certificates=2023.7.22=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=hab24e00_0 + - gh=2.32.1=ha8f183a_0 + - kernel-headers_linux-64=2.6.32=he073ed8_16 + - ld_impl_linux-64=2.40=h41732ed_0 + - libgcc-devel_linux-64=12.3.0=h8bca6fd_0 + - libgfortran5=13.1.0=h15d22d2_0 + - libstdcxx-devel_linux-64=12.3.0=h8bca6fd_0 + - libstdcxx-ng=13.1.0=hfd8a6a1_0 + - mathjax=3.2.2=ha770c72_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 + - python_abi=3.10=3_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 + - fonts-conda-forge=1=0 + - libgfortran-ng=13.1.0=h69a702a_0 + - libgomp=13.1.0=he5830b7_0 + - pari-seadata=0.0.20090618=0 + - sysroot_linux-64=2.12=he073ed8_16 + - threejs-sage=122=hd8ed1ab_2 + - binutils_impl_linux-64=2.40=hf600244_0 + - fonts-conda-ecosystem=1=0 + - binutils=2.40=hdd6e379_0 + - binutils_linux-64=2.40=hbdbef99_1 + - _openmp_mutex=4.5=2_kmp_llvm + - libgcc-ng=13.1.0=he5830b7_0 + - alsa-lib=1.2.8=h166bdaf_0 + - attr=2.5.1=h166bdaf_1 + - bc=1.07.1=h7f98852_0 + - bdw-gc=8.0.6=h4bd325d_0 + - bzip2=1.0.8=h7f98852_4 + - c-ares=1.19.1=hd590300_0 + - cliquer=1.22=h36c2ea0_0 + - fftw=3.3.10=nompi_hc118613_108 + - 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.2.1=h58526e2_0 + - graphite2=1.3.13=h58526e2_1001 + - icu=72.1=hcb278e6_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.1=h58526e2_0 + - libbrotlicommon=1.0.9=h166bdaf_9 + - libcbor=0.10.2=hcb278e6_0 + - libdeflate=1.18=h0b41bf4_0 + - libev=4.33=h516909a_1 + - libexpat=2.5.0=hcb278e6_1 + - libffi=3.4.2=h7f98852_5 + - libiconv=1.17=h166bdaf_0 + - libjpeg-turbo=2.1.5.1=h0b41bf4_0 + - libnsl=2.0.0=h7f98852_0 + - libogg=1.3.4=h7f98852_1 + - libopenblas=0.3.23=pthreads_h80387f5_0 + - libopus=1.3.1=h7f98852_1 + - libsanitizer=12.3.0=h0f45ef3_0 + - libsodium=1.0.18=h36c2ea0_1 + - libtool=2.4.7=h27087fc_0 + - libuuid=2.38.1=h0b41bf4_0 + - libuv=1.44.2=h166bdaf_0 + - libwebp-base=1.3.1=hd590300_0 + - 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_0 + - mpg123=1.31.3=hcb278e6_0 + - nauty=2.7.2=h7f98852_0 + - ncurses=6.4=hcb278e6_0 + - ninja=1.11.1=h924138e_0 + - nspr=4.35=h27087fc_0 + - openssl=3.1.1=hd590300_1 + - palp=2.20=h36c2ea0_0 + - patch=2.7.6=h7f98852_1002 + - pixman=0.40.0=h36c2ea0_0 + - pkg-config=0.29.2=h36c2ea0_1008 + - planarity=3.0.0.5=h36c2ea0_1002 + - primesieve=11.0=hcb278e6_0 + - pthread-stubs=0.4=h36c2ea0_1001 + - qd=2.3.22=h2cc385e_1004 + - qhull=2020.2=h4bd325d_2 + - rhash=1.4.3=h166bdaf_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.0.10=h7f98852_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_0 + - givaro=4.1.1=h192cbe9_1 + - glpk=5.0=h445213a_0 + - libblas=3.9.0=17_linux64_openblas + - libbrotlidec=1.0.9=h166bdaf_9 + - libbrotlienc=1.0.9=h166bdaf_9 + - libcap=2.67=he9d0100_0 + - libedit=3.1.20191231=he28a2e2_2 + - libevent=2.1.12=hf998b51_1 + - libflac=1.4.3=h59595ed_0 + - libgpg-error=1.47=h71f35ed_0 + - libhomfly=1.02r6=h36c2ea0_0 + - libnghttp2=1.52.0=h61bc06f_0 + - libpng=1.6.39=h753d276_0 + - libsqlite=3.42.0=h2797004_0 + - libssh2=1.11.0=h0841786_0 + - libvorbis=1.3.7=h9c3ff4c_0 + - libxcb=1.15=h0b41bf4_0 + - libxml2=2.11.4=h0d562d8_0 + - mpfr=4.2.0=hb012696_0 + - mysql-common=8.0.33=hf1915f5_2 + - ntl=11.4.3=hef3c4d3_1 + - openblas=0.3.23=pthreads_h855a84d_0 + - pcre2=10.40=hc3806b6_0 + - perl=5.32.1=4_hd590300_perl5 + - primecount=7.6=hcb278e6_0 + - readline=8.2=h8228510_1 + - tar=1.34=hb2e2bae_1 + - tk=8.6.12=h27826a3_0 + - xorg-fixesproto=5.0=h7f98852_1002 + - xorg-libsm=1.2.3=hd9c2040_1000 + - zeromq=4.3.4=h9c3ff4c_1 + - zlib=1.2.13=hd590300_5 + - zstd=1.5.2=hfc55251_7 + - autoconf=2.71=pl5321h2b4cb7a_1 + - boost-cpp=1.82.0=he19a28c_1 + - brotli-bin=1.0.9=h166bdaf_9 + - bwidget=1.9.14=ha770c72_1 + - ecl=21.2.1=h9d73b02_2 + - fplll=5.4.4=h8780c30_0 + - freetype=2.12.1=hca18f0e_1 + - gap-core=4.12.2=he9a28a4_3 + - gcc=12.3.0=h8d2909c_1 + - gcc_linux-64=12.3.0=h76fc315_1 + - gfan=0.6.2=hb86e20a_1003 + - gfortran_impl_linux-64=12.3.0=hfcedea8_0 + - gxx_impl_linux-64=12.3.0=he2b93b0_0 + - igraph=0.7.1=0 + - krb5=1.20.1=h81ceb04_0 + - libcblas=3.9.0=17_linux64_openblas + - libflint=2.9.0=h2f819a4_ntl_100 + - libgcrypt=1.10.1=h166bdaf_0 + - libglib=2.76.4=hebfc3b9_0 + - libhwloc=2.9.1=nocuda_h7313eea_6 + - liblapack=3.9.0=17_linux64_openblas + - libllvm16=16.0.6=h5cf9203_1 + - libsndfile=1.2.0=hb75c966_0 + - libtiff=4.5.1=h8b53f26_0 + - libudev1=253=h0b41bf4_1 + - llvm-openmp=16.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_2 + - nss=3.89=he45b914_0 + - pandoc=3.1.3=h32600fe_0 + - pari=2.15.4=h4d4ae9b_2_pthread + - ppl=1.2=h6ec01c2_1006 + - python=3.10.12=hd12c33a_0_cpython + - sqlite=3.42.0=h2c6b66d_0 + - tachyon=0.99b6=0 + - texinfo=7.0=pl5321h0f457ee_0 + - tktable=2.10=hb7b940f_3 + - 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.6=h8ee46fc_0 + - alabaster=0.7.13=pyhd8ed1ab_0 + - appdirs=1.4.4=pyh9f0ad1d_0 + - appnope=0.1.3=pyhd8ed1ab_0 + - arb=2.23.0=h44d021b_0 + - attrs=23.1.0=pyh71513ae_1 + - automake=1.16.5=pl5321ha770c72_0 + - backcall=0.2.0=pyh9f0ad1d_0 + - backports=1.0=pyhd8ed1ab_3 + - backports.zoneinfo=0.2.1=py310hff52083_7 + - brotli=1.0.9=h166bdaf_9 + - brotli-python=1.0.9=py310hd8f1fbe_9 + - c-compiler=1.6.0=hd590300_0 + - cachetools=5.3.1=pyhd8ed1ab_0 + - certifi=2023.7.22=pyhd8ed1ab_0 + - chardet=5.1.0=py310hff52083_0 + - charset-normalizer=3.2.0=pyhd8ed1ab_0 + - colorama=0.4.6=pyhd8ed1ab_0 + - cycler=0.11.0=pyhd8ed1ab_0 + - cysignals=1.11.2=py310h945e7c7_2 + - cython=0.29.36=py310hc6cd4ac_0 + - dbus=1.13.6=h5008d03_3 + - debugpy=1.6.7=py310heca2aa9_0 + - decorator=5.1.1=pyhd8ed1ab_0 + - defusedxml=0.7.1=pyhd8ed1ab_0 + - distlib=0.3.7=pyhd8ed1ab_0 + - docutils=0.19=py310hff52083_1 + - dsdp=5.8=hd9d9efa_1203 + - eclib=20230424=hdef1efb_0 + - editables=0.3=pyhd8ed1ab_0 + - entrypoints=0.4=pyhd8ed1ab_0 + - exceptiongroup=1.1.2=pyhd8ed1ab_0 + - execnet=2.0.2=pyhd8ed1ab_0 + - executing=1.2.0=pyhd8ed1ab_0 + - fflas-ffpack=2.4.3=h912ac81_2 + - filelock=3.12.2=pyhd8ed1ab_0 + - flit-core=3.9.0=pyhd8ed1ab_0 + - fontconfig=2.14.2=h14ed4e7_0 + - gap-defaults=4.12.2=ha770c72_3 + - gast=0.5.4=pyhd8ed1ab_0 + - gfortran=12.3.0=h499e0f7_1 + - gfortran_linux-64=12.3.0=h7fe76b4_1 + - glib-tools=2.76.4=hfc55251_0 + - gmpy2=2.1.2=py310h3ec546c_1 + - gsl=2.7=he838d99_0 + - gxx=12.3.0=h8d2909c_1 + - gxx_linux-64=12.3.0=h8a814eb_1 + - idna=3.4=pyhd8ed1ab_0 + - imagesize=1.4.1=pyhd8ed1ab_0 + - iml=1.0.5=hd75c201_1003 + - iniconfig=2.0.0=pyhd8ed1ab_0 + - ipython_genutils=0.2.0=py_1 + - json5=0.9.14=pyhd8ed1ab_0 + - jupyterlab_widgets=1.1.1=pyhd8ed1ab_0 + - kiwisolver=1.4.4=py310hbf28c38_1 + - lcalc=2.0.5=h6a8a7c6_1 + - lcms2=2.15=haa2dc70_1 + - libbrial=1.2.12=h138cd66_0 + - libclang13=16.0.6=default_h4d60ac6_1 + - libcups=2.3.3=h36d4200_3 + - libcurl=8.1.2=h409715c_0 + - libfido2=1.13.0=h2e5b2a7_0 + - liblapacke=3.9.0=17_linux64_openblas + - libpq=15.3=hbcd7760_1 + - libsystemd0=253=h8c4010b_1 + - libwebp=1.3.1=hbf2b3c1_0 + - m4rie=20150908=h7ca028e_1001 + - markupsafe=2.1.3=py310h2372a71_0 + - maxima=5.45.0=h9d73b02_3 + - mistune=3.0.0=pyhd8ed1ab_0 + - mpmath=1.3.0=pyhd8ed1ab_0 + - munkres=1.1.4=pyh9f0ad1d_0 + - nest-asyncio=1.5.6=pyhd8ed1ab_0 + - networkx=2.8.8=pyhd8ed1ab_0 + - numpy=1.25.1=py310ha4c1d20_0 + - openjpeg=2.5.0=hfec8fc6_2 + - packaging=23.1=pyhd8ed1ab_0 + - pandocfilters=1.5.0=pyhd8ed1ab_0 + - parso=0.8.3=pyhd8ed1ab_0 + - pathspec=0.11.1=pyhd8ed1ab_0 + - pickleshare=0.7.5=py_1003 + - pkgconfig=1.5.5=pyhd8ed1ab_4 + - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_0 + - pluggy=1.2.0=pyhd8ed1ab_0 + - ply=3.11=py_1 + - prometheus_client=0.17.1=pyhd8ed1ab_0 + - psutil=5.9.5=py310h1fa729e_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_0 + - pycodestyle=2.10.0=pyhd8ed1ab_0 + - pycparser=2.21=pyhd8ed1ab_0 + - pygments=2.15.1=pyhd8ed1ab_0 + - pyparsing=3.0.9=pyhd8ed1ab_0 + - pyrsistent=0.19.3=py310h1fa729e_0 + - pysocks=1.7.1=pyha2e5f31_6 + - pyspellchecker=0.7.2=pyhd8ed1ab_0 + - python-fastjsonschema=2.18.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=pyhd8ed1ab_0 + - pyyaml=6.0=py310h5764c6d_5 + - pyzmq=25.1.0=py310h5bbb5d0_0 + - rfc3986-validator=0.1.1=pyh9f0ad1d_0 + - rpds-py=0.9.2=py310hcb5633a_0 + - rw=0.8=h516909a_1001 + - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 + - sagetex=3.6.1=pyhd8ed1ab_0 + - send2trash=1.8.2=pyh41d4057_0 + - setuptools=63.4.3=py310hff52083_0 + - simplegeneric=0.8.1=py_1 + - singular=4.2.1.p3=h1ea75ed_2 + - six=1.16.0=pyh6c4a22f_0 + - sniffio=1.3.0=pyhd8ed1ab_0 + - snowballstemmer=2.2.0=pyhd8ed1ab_0 + - soupsieve=2.3.2.post1=pyhd8ed1ab_0 + - sphinxcontrib-applehelp=1.0.4=pyhd8ed1ab_0 + - sphinxcontrib-devhelp=1.0.2=py_0 + - sphinxcontrib-htmlhelp=2.0.1=pyhd8ed1ab_0 + - sphinxcontrib-jsmath=1.0.1=py_0 + - sphinxcontrib-qthelp=1.0.3=py_0 + - sphinxcontrib-serializinghtml=1.1.5=pyhd8ed1ab_2 + - sympow=2.023.6=hc6ab17c_3 + - tbb=2021.9.0=hf52228f_0 + - toml=0.10.2=pyhd8ed1ab_0 + - tomli=2.0.1=pyhd8ed1ab_0 + - tomlkit=0.11.8=pyha770c72_0 + - tornado=6.3.2=py310h2372a71_0 + - traitlets=5.9.0=pyhd8ed1ab_0 + - trove-classifiers=2023.7.6=pyhd8ed1ab_0 + - typing_extensions=4.7.1=pyha770c72_0 + - typing_utils=0.1.0=pyhd8ed1ab_0 + - tzlocal=5.0.1=py310hff52083_0 + - unicodedata2=15.0.0=py310h5764c6d_0 + - vcversioner=2.16.0.0=py_1 + - webencodings=0.5.1=py_1 + - websocket-client=1.6.1=pyhd8ed1ab_0 + - wheel=0.41.0=pyhd8ed1ab_0 + - xcb-util-image=0.4.0=h8ee46fc_1 + - xkeyboard-config=2.39=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_0 + - zipp=3.16.2=pyhd8ed1ab_0 + - anyio=3.7.1=pyhd8ed1ab_0 + - asttokens=2.2.1=pyhd8ed1ab_0 + - async-lru=2.0.3=pyhd8ed1ab_0 + - babel=2.12.1=pyhd8ed1ab_1 + - backports.functools_lru_cache=1.6.5=pyhd8ed1ab_0 + - beautifulsoup4=4.12.2=pyha770c72_0 + - beniget=0.4.1=pyhd8ed1ab_0 + - blas-devel=3.9.0=17_linux64_openblas + - bleach=6.0.0=pyhd8ed1ab_0 + - brial=1.2.12=pyha3edaa6_0 + - cairo=1.16.0=hbbf8b49_1016 + - cattrs=23.1.2=pyhd8ed1ab_0 + - cffi=1.15.1=py310h255011f_3 + - cmake=3.26.4=hcfe8598_0 + - comm=0.1.3=pyhd8ed1ab_0 + - contourpy=1.1.0=py310hd41b1e2_0 + - cppy=1.2.1=pyhd8ed1ab_0 + - curl=8.1.2=h409715c_0 + - cxx-compiler=1.6.0=h00ab1b0_0 + - cypari2=2.1.3=py310h14ed79e_2 + - deprecation=2.1.0=pyh9f0ad1d_0 + - fonttools=4.41.1=py310h2372a71_0 + - fortran-compiler=1.6.0=heb67821_0 + - fpylll=0.5.9=py310h0dadf69_1 + - giac=1.9.0.21=h673759e_1 + - glib=2.76.4=hfc55251_0 + - html5lib=1.1=pyh9f0ad1d_0 + - importlib-metadata=6.8.0=pyha770c72_0 + - importlib_resources=6.0.0=pyhd8ed1ab_1 + - jedi=0.18.2=pyhd8ed1ab_0 + - jinja2=3.1.2=pyhd8ed1ab_1 + - jupyterlab_pygments=0.2.2=pyhd8ed1ab_0 + - libclang=16.0.6=default_h1cdf331_1 + - libgd=2.3.3=hfa28ad5_6 + - libxkbcommon=1.5.0=h5d7e998_3 + - linbox=1.6.3=h9d78c56_7 + - matplotlib-inline=0.1.6=pyhd8ed1ab_0 + - memory-allocator=0.1.2=py310h5764c6d_2 + - openssh=9.3p1=hbcd7760_1 + - overrides=7.3.1=pyhd8ed1ab_0 + - pexpect=4.8.0=pyh1a96a4e_2 + - pillow=10.0.0=py310h582fbeb_0 + - pip=23.2.1=pyhd8ed1ab_0 + - pplpy=0.8.7=py310h28f6eb6_0 + - primecountpy=0.1.0=py310hd41b1e2_3 + - pulseaudio-client=16.1=hb77b528_4 + - pybind11=2.11.1=py310hd41b1e2_0 + - pyproject-api=1.5.3=pyhd8ed1ab_0 + - pytest=7.4.0=pyhd8ed1ab_0 + - python-dateutil=2.8.2=pyhd8ed1ab_0 + - pytz-deprecation-shim=0.1.0.post0=py310hff52083_3 + - referencing=0.30.0=pyhd8ed1ab_0 + - rfc3339-validator=0.1.4=pyhd8ed1ab_0 + - sagemath-db-conway-polynomials=0.5.0=ha878542_1 + - sip=6.7.9=py310hc6cd4ac_0 + - suitesparse=5.10.1=h9e50725_1 + - sympy=1.12=pypyh9d50eac_103 + - terminado=0.17.1=pyh41d4057_0 + - tinycss2=1.2.1=pyhd8ed1ab_0 + - typing-extensions=4.7.1=hd8ed1ab_0 + - urllib3=2.0.4=pyhd8ed1ab_0 + - xorg-libxi=1.7.10=h7f98852_0 + - argon2-cffi-bindings=21.2.0=py310h5764c6d_3 + - blas=2.117=openblas + - compilers=1.6.0=ha770c72_0 + - cvxopt=1.3.1=py310h14a12bf_0 + - git=2.41.0=pl5321h86e50cf_0 + - gstreamer=1.22.3=h977cf35_1 + - harfbuzz=7.3.0=hdb3a94d_0 + - hatchling=1.18.0=pyhd8ed1ab_0 + - importlib-resources=6.0.0=pyhd8ed1ab_1 + - importlib_metadata=6.8.0=hd8ed1ab_0 + - jsonschema-specifications=2023.7.1=pyhd8ed1ab_0 + - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1 + - lsprotocol=2023.0.0a2=pyhd8ed1ab_0 + - matplotlib-base=3.7.2=py310hf38f957_0 + - platformdirs=3.9.1=pyhd8ed1ab_0 + - poetry-core=1.6.1=pyhd8ed1ab_0 + - pyqt5-sip=12.11.0=py310heca2aa9_3 + - pytest-xdist=3.3.1=pyhd8ed1ab_0 + - pythran=0.13.1=py310hfb6f7a9_0 + - requests=2.31.0=pyhd8ed1ab_0 + - setuptools-scm=7.1.0=pyhd8ed1ab_0 + - stack_data=0.6.2=pyhd8ed1ab_0 + - wcwidth=0.2.6=pyhd8ed1ab_0 + - xorg-libxtst=1.2.3=h7f98852_1002 + - argon2-cffi=21.3.0=pyhd8ed1ab_0 + - gst-plugins-base=1.22.3=h938bd60_1 + - jsonschema=4.18.4=pyhd8ed1ab_0 + - jupyter_core=5.3.1=py310hff52083_0 + - openjdk=17.0.3=h19c1b89_7 + - pango=1.50.14=heaa33ce_1 + - pooch=1.7.0=pyha770c72_3 + - prompt-toolkit=3.0.39=pyha770c72_0 + - setuptools_scm=7.1.0=hd8ed1ab_0 + - sphinx=6.2.1=pyhd8ed1ab_0 + - typeguard=3.0.2=pyhd8ed1ab_0 + - virtualenv=20.24.1=pyhd8ed1ab_0 + - jmol=14.32.10=ha770c72_0 + - jupyter_client=8.3.0=pyhd8ed1ab_0 + - jupyter_events=0.6.3=pyhd8ed1ab_0 + - nbformat=5.9.1=pyhd8ed1ab_0 + - prompt_toolkit=3.0.39=hd8ed1ab_0 + - pygls=1.0.2=pyhd8ed1ab_0 + - qt-main=5.15.8=h01ceb2d_12 + - r-base=4.3.1=hfabd6f2_1 + - scipy=1.10.1=py310ha4c1d20_3 + - sphinx-basic-ng=1.0.0b2=pyhd8ed1ab_0 + - sphinx-copybutton=0.5.2=pyhd8ed1ab_0 + - sphinxcontrib-websupport=1.2.4=pyhd8ed1ab_1 + - tox=4.6.4=pyhd8ed1ab_0 + - esbonio=0.16.1=pyhd8ed1ab_0 + - furo=2023.5.20=pyhd8ed1ab_1 + - ipython=8.14.0=pyh41d4057_0 + - nbclient=0.8.0=pyhd8ed1ab_0 + - pyqt=5.15.7=py310hab646b1_3 + - rpy2=3.5.11=py310r43h278f3c1_2 + - ipykernel=6.24.0=pyh71e2992_0 + - matplotlib=3.7.2=py310hff52083_0 + - nbconvert-core=7.7.2=pyhd8ed1ab_0 + - jupyter_server=2.7.0=pyhd8ed1ab_0 + - nbconvert-pandoc=7.7.2=pyhd8ed1ab_0 + - jupyter-lsp=2.2.0=pyhd8ed1ab_0 + - jupyterlab_server=2.24.0=pyhd8ed1ab_0 + - nbconvert=7.7.2=pyhd8ed1ab_0 + - notebook-shim=0.2.3=pyhd8ed1ab_0 + - jupyterlab=4.0.3=pyhd8ed1ab_0 + - notebook=7.0.0=pyhd8ed1ab_0 + - widgetsnbextension=3.6.4=pyhd8ed1ab_0 + - ipywidgets=7.7.5=pyhd8ed1ab_0 + - jupyter-jsmol=2022.1.0=pyhd8ed1ab_0 + - jupyter_sphinx=0.4.0=py310hff52083_1 diff --git a/src/environment-dev-3.9-macos.yml b/src/environment-dev-3.9-macos.yml new file mode 100644 index 00000000000..e9bbfd8d10a --- /dev/null +++ b/src/environment-dev-3.9-macos.yml @@ -0,0 +1,416 @@ +# Generated by conda-lock. +# platform: osx-64 +# input_hash: 0b14fa06d655e7683981c27f658f33c24850625df4dd94351391308bebc4acf1 + +channels: + - conda-forge +dependencies: + - _r-mutex=1.0.1=anacondar_1 + - bc=1.07.1=h0d85af4_0 + - bzip2=1.0.8=h0d85af4_4 + - c-ares=1.19.1=h0dc2134_0 + - ca-certificates=2023.7.22=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=hab24e00_0 + - fribidi=1.0.10=hbcb3906_0 + - gh=2.32.1=h990441c_0 + - giflib=5.2.1=hb7f2c08_3 + - icu=72.1=h7336db1_0 + - libatomic_ops=7.6.14=hb7f2c08_0 + - libbrotlicommon=1.0.9=hb7f2c08_9 + - libcxx=16.0.6=hd57cbcb_0 + - libdeflate=1.18=hac1461d_0 + - libev=4.33=haf1e3a3_1 + - libexpat=2.5.0=hf0c8a7f_1 + - libffi=3.4.2=h0d85af4_5 + - libgfortran-devel_osx-64=12.2.0=hf0fd499_32 + - libiconv=1.17=hac89ed1_0 + - libjpeg-turbo=2.1.5.1=hb7f2c08_0 + - libsodium=1.0.18=hbcb3906_1 + - libtool=2.4.7=hf0c8a7f_0 + - libuv=1.44.2=hac89ed1_0 + - libwebp-base=1.3.1=h0dc2134_0 + - libzlib=1.2.13=h8a1eda9_5 + - llvm-openmp=16.0.6=hff08bdf_0 + - m4=1.4.18=haf1e3a3_1001 + - make=4.3=h22f3db7_1 + - mathjax=3.2.2=h694c41f_0 + - metis=5.1.1=he965462_0 + - nauty=2.7.2=h0d85af4_0 + - ncurses=6.4=hf0c8a7f_0 + - 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 + - pixman=0.40.0=hbcb3906_0 + - planarity=3.0.0.5=hbcb3906_1002 + - pthread-stubs=0.4=hc929b4f_1001 + - python_abi=3.10=3_cp310 + - rhash=1.4.3=hac89ed1_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 + - 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.2.1=h2e338ed_0 + - graphite2=1.3.13=h2e338ed_1001 + - isl=0.25=hb486fe8_0 + - lerc=4.0.0=hb486fe8_0 + - libbraiding=1.1=h2e338ed_0 + - libbrotlidec=1.0.9=hb7f2c08_9 + - libbrotlienc=1.0.9=hb7f2c08_9 + - libcbor=0.10.2=hf0c8a7f_0 + - libedit=3.1.20191231=h0678c8f_2 + - libgfortran5=12.3.0=hbd3c1fe_1 + - libpng=1.6.39=ha978bb4_0 + - libsqlite=3.42.0=h58db7d2_0 + - libxcb=1.15=hb7f2c08_0 + - libxml2=2.10.4=h554bb67_0 + - lrcalc=2.1=hf0c8a7f_5 + - ninja=1.11.1=hb8565cd_0 + - openjdk=20.0.0=h7d26f99_0 + - openssl=3.1.1=h8a1eda9_1 + - pandoc=3.1.3=h9d075a6_0 + - pari-seadata=0.0.20090618=0 + - pcre2=10.40=h1c4e4bc_0 + - pkg-config=0.29.2=ha3d46e9_1008 + - primesieve=11.0=hf0c8a7f_0 + - qhull=2020.2=h940c156_2 + - readline=8.2=h9e318b2_1 + - symmetrica=3.0.1=hf0c8a7f_0 + - tapi=1100.0.11=h9ce4665_0 + - tar=1.34=hcb2f6ea_1 + - tbb=2021.9.0=hb8565cd_0 + - texinfo=7.0=pl5321hc47821c_0 + - threejs-sage=122=hd8ed1ab_2 + - tk=8.6.12=h5dbffcc_0 + - zeromq=4.3.4=he49afe7_1 + - zlib=1.2.13=h8a1eda9_5 + - zstd=1.5.2=h829000d_7 + - automake=1.16.5=pl5321h694c41f_0 + - boost-cpp=1.82.0=hd754db5_1 + - brotli-bin=1.0.9=hb7f2c08_9 + - bwidget=1.9.14=h694c41f_1 + - cddlib=1!0.94m=h0f52abe_0 + - ecl=21.2.1=hd029580_2 + - ecm=7.0.4=h343d7f2_1002 + - fonts-conda-ecosystem=1=0 + - freetype=2.12.1=h3f81eb7_1 + - gap-core=4.12.2=hc16eb5f_3 + - givaro=4.1.1=h0a799c6_3 + - glpk=5.0=h3cb5acd_0 + - jmol=14.32.9=h694c41f_0 + - krb5=1.20.1=h049b76e_0 + - libfido2=1.13.0=h14e1388_0 + - libgfortran=5.0.0=12_3_0_h97931a8_1 + - libglib=2.76.4=hc62aa5d_0 + - libhomfly=1.02r6=hc929b4f_0 + - libllvm15=15.0.7=h7001e86_1 + - libnghttp2=1.52.0=he2ab024_0 + - libssh2=1.11.0=hd019ec5_0 + - libtiff=4.5.1=hf955e92_0 + - m4ri=20140914=h3f75d11_1005 + - mpfr=4.2.0=h4f9bd69_0 + - ntl=11.4.3=h0ab3c2f_1 + - pari=2.15.4=h93f793c_2_pthread + - primecount=7.6=ha894c9a_0 + - python=3.10.12=had23ca6_0_cpython + - sigtool=0.1.3=h88f4db0_0 + - sqlite=3.42.0=h2b0dec6_0 + - tachyon=0.99b6=0 + - tktable=2.10=h49f0cf7_3 + - alabaster=0.7.13=pyhd8ed1ab_0 + - appdirs=1.4.4=pyh9f0ad1d_0 + - appnope=0.1.3=pyhd8ed1ab_0 + - attrs=23.1.0=pyh71513ae_1 + - backcall=0.2.0=pyh9f0ad1d_0 + - backports=1.0=pyhd8ed1ab_3 + - backports.zoneinfo=0.2.1=py310h2ec42d9_7 + - brotli=1.0.9=hb7f2c08_9 + - brotli-python=1.0.9=py310h7a76584_9 + - cachetools=5.3.1=pyhd8ed1ab_0 + - certifi=2023.7.22=pyhd8ed1ab_0 + - chardet=5.1.0=py310h2ec42d9_0 + - charset-normalizer=3.2.0=pyhd8ed1ab_0 + - colorama=0.4.6=pyhd8ed1ab_0 + - cycler=0.11.0=pyhd8ed1ab_0 + - cysignals=1.11.2=py310h8c82e65_2 + - cython=0.29.36=py310h9e9d8ca_0 + - debugpy=1.6.7=py310h7a76584_0 + - decorator=5.1.1=pyhd8ed1ab_0 + - defusedxml=0.7.1=pyhd8ed1ab_0 + - distlib=0.3.7=pyhd8ed1ab_0 + - docutils=0.19=py310h2ec42d9_1 + - editables=0.3=pyhd8ed1ab_0 + - entrypoints=0.4=pyhd8ed1ab_0 + - exceptiongroup=1.1.2=pyhd8ed1ab_0 + - execnet=2.0.2=pyhd8ed1ab_0 + - executing=1.2.0=pyhd8ed1ab_0 + - fftw=3.3.10=nompi_h4fa670e_108 + - filelock=3.12.2=pyhd8ed1ab_0 + - flit-core=3.9.0=pyhd8ed1ab_0 + - fontconfig=2.14.2=h5bb23bf_0 + - gap-defaults=4.12.2=h694c41f_3 + - gast=0.5.4=pyhd8ed1ab_0 + - gfan=0.6.2=hd793b56_1003 + - idna=3.4=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 + - jupyterlab_widgets=1.1.1=pyhd8ed1ab_0 + - kiwisolver=1.4.4=py310ha23aa8a_1 + - lcalc=2.0.5=h3a941db_1 + - lcms2=2.15=h2dcdeff_1 + - ld64_osx-64=609=h8ce0179_13 + - libbrial=1.2.12=h8f704d5_0 + - libclang-cpp15=15.0.7=default_hdb78580_2 + - libcurl=8.1.2=hbee3ae8_0 + - libflint=2.9.0=hfd2f71f_ntl_100 + - libopenblas=0.3.23=openmp_h429af6e_0 + - libwebp=1.3.1=hc961f54_0 + - llvm-tools=15.0.7=h7001e86_1 + - m4rie=20150908=h3f75d11_1001 + - markupsafe=2.1.3=py310h6729b98_0 + - maxima=5.45.0=hd029580_3 + - mistune=3.0.0=pyhd8ed1ab_0 + - mpc=1.3.1=h81bd1dd_0 + - mpfi=1.5.4=h52b28e3_1001 + - mpmath=1.3.0=pyhd8ed1ab_0 + - munkres=1.1.4=pyh9f0ad1d_0 + - nest-asyncio=1.5.6=pyhd8ed1ab_0 + - networkx=2.8.8=pyhd8ed1ab_0 + - openjpeg=2.5.0=h13ac156_2 + - openssh=9.3p1=h9dc22bb_1 + - packaging=23.1=pyhd8ed1ab_0 + - pandocfilters=1.5.0=pyhd8ed1ab_0 + - parso=0.8.3=pyhd8ed1ab_0 + - pathspec=0.11.1=pyhd8ed1ab_0 + - pickleshare=0.7.5=py_1003 + - pkgconfig=1.5.5=pyhd8ed1ab_4 + - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_0 + - pluggy=1.2.0=pyhd8ed1ab_0 + - ply=3.11=py_1 + - ppl=1.2=ha60d53e_1006 + - prometheus_client=0.17.1=pyhd8ed1ab_0 + - psutil=5.9.5=py310h90acd4f_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_0 + - pycodestyle=2.10.0=pyhd8ed1ab_0 + - pycparser=2.21=pyhd8ed1ab_0 + - pygments=2.15.1=pyhd8ed1ab_0 + - pyparsing=3.0.9=pyhd8ed1ab_0 + - pyrsistent=0.19.3=py310h90acd4f_0 + - pysocks=1.7.1=pyha2e5f31_6 + - pyspellchecker=0.7.2=pyhd8ed1ab_0 + - python-fastjsonschema=2.18.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=pyhd8ed1ab_0 + - pyyaml=6.0=py310h90acd4f_5 + - pyzmq=25.1.0=py310h998be00_0 + - qd=2.3.22=h2beb688_1004 + - rfc3986-validator=0.1.1=pyh9f0ad1d_0 + - rpds-py=0.9.2=py310h3461e44_0 + - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 + - sagetex=3.6.1=pyhd8ed1ab_0 + - setuptools=63.4.3=py310h2ec42d9_0 + - simplegeneric=0.8.1=py_1 + - six=1.16.0=pyh6c4a22f_0 + - sniffio=1.3.0=pyhd8ed1ab_0 + - snowballstemmer=2.2.0=pyhd8ed1ab_0 + - soupsieve=2.3.2.post1=pyhd8ed1ab_0 + - sphinxcontrib-applehelp=1.0.4=pyhd8ed1ab_0 + - sphinxcontrib-devhelp=1.0.2=py_0 + - sphinxcontrib-htmlhelp=2.0.1=pyhd8ed1ab_0 + - sphinxcontrib-jsmath=1.0.1=py_0 + - sphinxcontrib-qthelp=1.0.3=py_0 + - sphinxcontrib-serializinghtml=1.1.5=pyhd8ed1ab_2 + - sympow=2.023.6=h115ba6a_3 + - toml=0.10.2=pyhd8ed1ab_0 + - tomli=2.0.1=pyhd8ed1ab_0 + - tomlkit=0.11.8=pyha770c72_0 + - tornado=6.3.2=py310h6729b98_0 + - traitlets=5.9.0=pyhd8ed1ab_0 + - trove-classifiers=2023.7.6=pyhd8ed1ab_0 + - typing_extensions=4.7.1=pyha770c72_0 + - typing_utils=0.1.0=pyhd8ed1ab_0 + - tzlocal=5.0.1=py310h2ec42d9_0 + - unicodedata2=15.0.0=py310h90acd4f_0 + - vcversioner=2.16.0.0=py_1 + - webencodings=0.5.1=py_1 + - websocket-client=1.6.1=pyhd8ed1ab_0 + - wheel=0.41.0=pyhd8ed1ab_0 + - zipp=3.16.2=pyhd8ed1ab_0 + - anyio=3.7.1=pyhd8ed1ab_0 + - arb=2.23.0=h905a977_0 + - asttokens=2.2.1=pyhd8ed1ab_0 + - async-lru=2.0.3=pyhd8ed1ab_0 + - babel=2.12.1=pyhd8ed1ab_1 + - backports.functools_lru_cache=1.6.5=pyhd8ed1ab_0 + - beautifulsoup4=4.12.2=pyha770c72_0 + - beniget=0.4.1=pyhd8ed1ab_0 + - bleach=6.0.0=pyhd8ed1ab_0 + - brial=1.2.12=pyha3edaa6_0 + - cairo=1.16.0=h09dd18c_1016 + - cattrs=23.1.2=pyhd8ed1ab_0 + - cctools_osx-64=973.0.1=h48a5a9d_13 + - cffi=1.15.1=py310ha78151a_3 + - clang-15=15.0.7=default_hdb78580_2 + - cmake=3.26.4=hf40c264_0 + - comm=0.1.3=pyhd8ed1ab_0 + - cppy=1.2.1=pyhd8ed1ab_0 + - curl=8.1.2=hbee3ae8_0 + - cypari2=2.1.3=py310hb5d31c9_2 + - deprecation=2.1.0=pyh9f0ad1d_0 + - eclib=20230424=hd00e801_0 + - fonttools=4.41.1=py310h6729b98_0 + - fplll=5.4.4=hdfdc905_0 + - gfortran_impl_osx-64=12.2.0=hdfd80ef_32 + - gmpy2=2.1.2=py310hb691cb2_1 + - html5lib=1.1=pyh9f0ad1d_0 + - importlib-metadata=6.8.0=pyha770c72_0 + - importlib_resources=6.0.0=pyhd8ed1ab_1 + - jedi=0.18.2=pyhd8ed1ab_0 + - jinja2=3.1.2=pyhd8ed1ab_1 + - jupyterlab_pygments=0.2.2=pyhd8ed1ab_0 + - ld64=609=ha91a046_13 + - libblas=3.9.0=17_osx64_openblas + - libgd=2.3.3=h3d994df_6 + - matplotlib-inline=0.1.6=pyhd8ed1ab_0 + - memory-allocator=0.1.2=py310h90acd4f_2 + - openblas=0.3.23=openmp_hbefa662_0 + - overrides=7.3.1=pyhd8ed1ab_0 + - pexpect=4.8.0=pyh1a96a4e_2 + - pillow=10.0.0=py310hd63a8c7_0 + - pip=23.2.1=pyhd8ed1ab_0 + - primecountpy=0.1.0=py310h88cfcbd_3 + - pybind11=2.11.1=py310h88cfcbd_0 + - pyobjc-core=9.2=py310hef2d279_0 + - pyproject-api=1.5.3=pyhd8ed1ab_0 + - pytest=7.4.0=pyhd8ed1ab_0 + - python-dateutil=2.8.2=pyhd8ed1ab_0 + - pytz-deprecation-shim=0.1.0.post0=py310h2ec42d9_3 + - referencing=0.30.0=pyhd8ed1ab_0 + - rfc3339-validator=0.1.4=pyhd8ed1ab_0 + - sagemath-db-conway-polynomials=0.5.0=h033912b_1 + - singular=4.2.1.p3=hac851df_2 + - terminado=0.17.1=pyhd1c38e8_0 + - tinycss2=1.2.1=pyhd8ed1ab_0 + - typing-extensions=4.7.1=hd8ed1ab_0 + - urllib3=2.0.4=pyhd8ed1ab_0 + - argon2-cffi-bindings=21.2.0=py310h90acd4f_3 + - cctools=973.0.1=hd9ad811_13 + - clang=15.0.7=h694c41f_2 + - git=2.41.0=pl5321h5c607e1_0 + - harfbuzz=7.3.0=h413ba03_0 + - hatchling=1.18.0=pyhd8ed1ab_0 + - importlib-resources=6.0.0=pyhd8ed1ab_1 + - importlib_metadata=6.8.0=hd8ed1ab_0 + - jsonschema-specifications=2023.7.1=pyhd8ed1ab_0 + - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1 + - libcblas=3.9.0=17_osx64_openblas + - liblapack=3.9.0=17_osx64_openblas + - lsprotocol=2023.0.0a2=pyhd8ed1ab_0 + - platformdirs=3.9.1=pyhd8ed1ab_0 + - poetry-core=1.6.1=pyhd8ed1ab_0 + - pplpy=0.8.7=py310h190f582_0 + - pyobjc-framework-cocoa=9.2=py310hef2d279_0 + - pytest-xdist=3.3.1=pyhd8ed1ab_0 + - requests=2.31.0=pyhd8ed1ab_0 + - setuptools-scm=7.1.0=pyhd8ed1ab_0 + - stack_data=0.6.2=pyhd8ed1ab_0 + - sympy=1.12=pypyh9d50eac_103 + - wcwidth=0.2.6=pyhd8ed1ab_0 + - argon2-cffi=21.3.0=pyhd8ed1ab_0 + - arpack=3.7.0=hefb7bc6_2 + - clangxx=15.0.7=default_hdb78580_2 + - dsdp=5.8=h6e329d1_1203 + - fflas-ffpack=2.4.3=h026fd7e_2 + - gsl=2.7=h93259b0_0 + - iml=1.0.5=h64b42ca_1003 + - jsonschema=4.18.4=pyhd8ed1ab_0 + - jupyter_core=5.3.1=py310h2ec42d9_0 + - liblapacke=3.9.0=17_osx64_openblas + - numpy=1.25.1=py310h7451ae0_0 + - pango=1.50.14=hbce5e75_1 + - pooch=1.7.0=pyha770c72_3 + - prompt-toolkit=3.0.39=pyha770c72_0 + - send2trash=1.8.2=pyhd1c38e8_0 + - setuptools_scm=7.1.0=hd8ed1ab_0 + - sphinx=6.2.1=pyhd8ed1ab_0 + - suitesparse=5.10.1=h7aff33d_1 + - typeguard=3.0.2=pyhd8ed1ab_0 + - virtualenv=20.24.1=pyhd8ed1ab_0 + - blas-devel=3.9.0=17_osx64_openblas + - compiler-rt_osx-64=15.0.7=he1888fc_1 + - contourpy=1.1.0=py310h88cfcbd_0 + - cvxopt=1.3.1=py310ha550498_0 + - fpylll=0.5.9=py310h0d1ef73_1 + - giac=1.9.0.21=h92f3f65_1 + - igraph=0.9.10=h6560ca6_1 + - jupyter_client=8.3.0=pyhd8ed1ab_0 + - jupyter_events=0.6.3=pyhd8ed1ab_0 + - linbox=1.6.3=hdde8d14_7 + - nbformat=5.9.1=pyhd8ed1ab_0 + - prompt_toolkit=3.0.39=hd8ed1ab_0 + - pygls=1.0.2=pyhd8ed1ab_0 + - scipy=1.10.1=py310h3900cf1_3 + - sphinx-basic-ng=1.0.0b2=pyhd8ed1ab_0 + - sphinx-copybutton=0.5.2=pyhd8ed1ab_0 + - sphinxcontrib-websupport=1.2.4=pyhd8ed1ab_1 + - tox=4.6.4=pyhd8ed1ab_0 + - blas=2.117=openblas + - compiler-rt=15.0.7=he1888fc_1 + - esbonio=0.16.1=pyhd8ed1ab_0 + - furo=2023.5.20=pyhd8ed1ab_1 + - ipython=8.14.0=pyhd1c38e8_0 + - matplotlib-base=3.7.2=py310h475a17b_0 + - nbclient=0.8.0=pyhd8ed1ab_0 + - rw=0.9=h0d85af4_0 + - clang_osx-64=15.0.7=h03d6864_3 + - ipykernel=6.24.0=pyh5fb750a_0 + - matplotlib=3.7.2=py310h2ec42d9_0 + - nbconvert-core=7.7.2=pyhd8ed1ab_0 + - c-compiler=1.6.0=h63c33a9_0 + - clangxx_osx-64=15.0.7=h2133e9c_3 + - gfortran_osx-64=12.2.0=h18f7dce_1 + - jupyter_server=2.7.0=pyhd8ed1ab_0 + - nbconvert-pandoc=7.7.2=pyhd8ed1ab_0 + - cxx-compiler=1.6.0=h1c7c39f_0 + - gfortran=12.2.0=h2c809b3_1 + - jupyter-lsp=2.2.0=pyhd8ed1ab_0 + - jupyterlab_server=2.24.0=pyhd8ed1ab_0 + - nbconvert=7.7.2=pyhd8ed1ab_0 + - notebook-shim=0.2.3=pyhd8ed1ab_0 + - pythran=0.13.1=py310h9209b79_0 + - r-base=4.3.0=h7a6543b_0 + - fortran-compiler=1.6.0=h932d759_0 + - jupyterlab=4.0.3=pyhd8ed1ab_0 + - rpy2=3.5.11=py310r43hc1335a1_2 + - compilers=1.6.0=h694c41f_0 + - notebook=7.0.0=pyhd8ed1ab_0 + - widgetsnbextension=3.6.4=pyhd8ed1ab_0 + - ipywidgets=7.7.5=pyhd8ed1ab_0 + - jupyter-jsmol=2022.1.0=pyhd8ed1ab_0 + - jupyter_sphinx=0.4.0=py310h2ec42d9_1 From b7f655738dc5e7d28675130c749d019b70df70da Mon Sep 17 00:00:00 2001 From: Tobias Diez Date: Tue, 25 Jul 2023 06:46:52 +0800 Subject: [PATCH 04/33] Add more supported architectures Co-authored-by: Isuru Fernando --- src/pyproject.toml.m4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pyproject.toml.m4 b/src/pyproject.toml.m4 index 82d683d55a0..6d2ec303c09 100644 --- a/src/pyproject.toml.m4 +++ b/src/pyproject.toml.m4 @@ -24,5 +24,5 @@ build-backend = "setuptools.build_meta" [tool.conda-lock] platforms = [ - 'osx-64', 'linux-64' + 'osx-64', 'linux-64', 'linux-aarch64', 'osx-arm64' ] From ee7e3c0296d9a5920e96c3b3e352660f585dc1c7 Mon Sep 17 00:00:00 2001 From: Tobias Diez Date: Tue, 25 Jul 2023 11:18:06 +0200 Subject: [PATCH 05/33] fix lock files --- src/environment-3.10-macos.yml | 28 +++---- src/environment-3.9-linux.yml | 143 +++++++++++++++++---------------- src/environment-3.9-macos.yml | 114 +++++++++++++------------- 3 files changed, 143 insertions(+), 142 deletions(-) diff --git a/src/environment-3.10-macos.yml b/src/environment-3.10-macos.yml index e7414bef1b8..ec359de71dd 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: 7056c18e920401fcf44f349c629cbeb7f2f00f1271eeeb3827d27907e8c4ee24 +# input_hash: a1b87af4950ce2799a289ce2cde303817187f205d9bf28061a801fd0a6963f94 channels: - conda-forge @@ -52,6 +52,7 @@ dependencies: - pthread-stubs=0.4=hc929b4f_1001 - python_abi=3.10=3_cp310 - rhash=1.4.3=hac89ed1_0 + - rw=0.7=1 - sagemath-db-combinatorial-designs=20140630=1 - sagemath-db-graphs=20210214=hd8ed1ab_0 - sagemath-db-polytopes=20170220=1 @@ -80,7 +81,7 @@ dependencies: - libpng=1.6.39=ha978bb4_0 - libsqlite=3.42.0=h58db7d2_0 - libxcb=1.15=hb7f2c08_0 - - libxml2=2.10.4=h554bb67_0 + - libxml2=2.11.4=hd95e348_0 - lrcalc=2.1=hf0c8a7f_5 - ninja=1.11.1=hb8565cd_0 - openjdk=20.0.0=h7d26f99_0 @@ -115,11 +116,11 @@ dependencies: - givaro=4.1.1=h0a799c6_3 - glpk=5.0=h3cb5acd_0 - jmol=14.32.9=h694c41f_0 - - krb5=1.20.1=h049b76e_0 + - krb5=1.21.1=hb884880_0 - libgfortran=5.0.0=12_3_0_h97931a8_1 - libglib=2.76.4=hc62aa5d_0 - libhomfly=1.02r6=hc929b4f_0 - - libllvm15=15.0.7=h7001e86_1 + - libllvm15=15.0.7=he4b1e75_2 - libnghttp2=1.52.0=he2ab024_0 - libssh2=1.11.0=hd019ec5_0 - libtiff=4.5.1=hf955e92_0 @@ -177,11 +178,11 @@ dependencies: - ld64_osx-64=609=h8ce0179_13 - libbrial=1.2.12=h8f704d5_0 - libclang-cpp15=15.0.7=default_hdb78580_2 - - libcurl=8.1.2=hbee3ae8_0 + - libcurl=8.2.0=h5f667d7_0 - libflint=2.9.0=hfd2f71f_ntl_100 - libopenblas=0.3.23=openmp_h429af6e_0 - libwebp=1.3.1=hc961f54_0 - - llvm-tools=15.0.7=h7001e86_1 + - llvm-tools=15.0.7=he4b1e75_2 - m4rie=20150908=h3f75d11_1001 - markupsafe=2.1.3=py310h6729b98_0 - maxima=5.45.0=hd029580_3 @@ -226,7 +227,6 @@ dependencies: - rpds-py=0.9.2=py310h3461e44_0 - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 - sagetex=3.6.1=pyhd8ed1ab_0 - - send2trash=1.8.2=pyh41d4057_0 - setuptools=63.4.3=py310h2ec42d9_0 - simplegeneric=0.8.1=py_1 - six=1.16.0=pyh6c4a22f_0 @@ -272,7 +272,7 @@ dependencies: - cmake=3.26.4=hf40c264_0 - comm=0.1.3=pyhd8ed1ab_0 - cppy=1.2.1=pyhd8ed1ab_0 - - curl=8.1.2=hbee3ae8_0 + - curl=8.2.0=h5f667d7_0 - cypari2=2.1.3=py310hb5d31c9_2 - deprecation=2.1.0=pyh9f0ad1d_0 - eclib=20230424=hd00e801_0 @@ -298,6 +298,7 @@ dependencies: - pip=23.2.1=pyhd8ed1ab_0 - primecountpy=0.1.0=py310h88cfcbd_3 - pybind11=2.11.1=py310h88cfcbd_0 + - pyobjc-core=9.2=py310hef2d279_0 - pyproject-api=1.5.3=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - pytz-deprecation-shim=0.1.0.post0=py310h2ec42d9_3 @@ -323,13 +324,13 @@ dependencies: - platformdirs=3.9.1=pyhd8ed1ab_0 - poetry-core=1.6.1=pyhd8ed1ab_0 - pplpy=0.8.7=py310h190f582_0 + - pyobjc-framework-cocoa=9.2=py310hef2d279_0 - requests=2.31.0=pyhd8ed1ab_0 - setuptools-scm=7.1.0=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 - sympy=1.12=pypyh9d50eac_103 - wcwidth=0.2.6=pyhd8ed1ab_0 - argon2-cffi=21.3.0=pyhd8ed1ab_0 - - arpack=3.7.0=hefb7bc6_2 - clangxx=15.0.7=default_hdb78580_2 - dsdp=5.8=h6e329d1_1203 - fflas-ffpack=2.4.3=h026fd7e_2 @@ -342,17 +343,17 @@ dependencies: - pango=1.50.14=hbce5e75_1 - pooch=1.7.0=pyha770c72_3 - prompt-toolkit=3.0.39=pyha770c72_0 + - send2trash=1.8.2=pyhd1c38e8_0 - setuptools_scm=7.1.0=hd8ed1ab_0 - sphinx=6.2.1=pyhd8ed1ab_0 - suitesparse=5.10.1=h7aff33d_1 - - virtualenv=20.24.1=pyhd8ed1ab_0 + - virtualenv=20.24.2=pyhd8ed1ab_0 - blas-devel=3.9.0=17_osx64_openblas - compiler-rt_osx-64=15.0.7=he1888fc_1 - contourpy=1.1.0=py310h88cfcbd_0 - cvxopt=1.3.1=py310ha550498_0 - fpylll=0.5.9=py310h0d1ef73_1 - giac=1.9.0.21=h92f3f65_1 - - igraph=0.9.10=h6560ca6_1 - jupyter_client=8.3.0=pyhd8ed1ab_0 - jupyter_events=0.6.3=pyhd8ed1ab_0 - linbox=1.6.3=hdde8d14_7 @@ -369,7 +370,6 @@ dependencies: - ipython=8.14.0=pyhd1c38e8_0 - matplotlib-base=3.7.2=py310h475a17b_0 - nbclient=0.8.0=pyhd8ed1ab_0 - - rw=0.9=h0d85af4_0 - clang_osx-64=15.0.7=h03d6864_3 - ipykernel=6.24.0=pyh5fb750a_0 - matplotlib=3.7.2=py310h2ec42d9_0 @@ -382,11 +382,11 @@ dependencies: - cxx-compiler=1.6.0=h1c7c39f_0 - gfortran=12.2.0=h2c809b3_1 - jupyter-lsp=2.2.0=pyhd8ed1ab_0 - - jupyterlab_server=2.23.0=pyhd8ed1ab_0 + - jupyterlab_server=2.24.0=pyhd8ed1ab_0 - nbconvert=7.7.2=pyhd8ed1ab_0 - notebook-shim=0.2.3=pyhd8ed1ab_0 - pythran=0.13.1=py310h9209b79_0 - - r-base=4.3.0=h7a6543b_0 + - r-base=4.3.1=had2b78c_3 - fortran-compiler=1.6.0=h932d759_0 - jupyterlab=4.0.3=pyhd8ed1ab_0 - rpy2=3.5.11=py310r43hc1335a1_2 diff --git a/src/environment-3.9-linux.yml b/src/environment-3.9-linux.yml index 8d7492d9fb7..4a177aa9cd5 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: 2fe7099c1d98ec324541bba0b769acbac35931b084f7e5640f0437a1ced9c5d2 +# input_hash: ab1db99fadd311cf79b0f592eaa1104f93279e5beedbc3661c62e72843d04b41 channels: - conda-forge @@ -23,7 +23,7 @@ dependencies: - pari-galdata=0.0.20180411=0 - pari-galpol=0.0.20180625=0 - pari-seadata-small=0.0.20090618=0 - - python_abi=3.10=3_cp310 + - python_abi=3.9=3_cp39 - sagemath-db-combinatorial-designs=20140630=1 - sagemath-db-graphs=20210214=hd8ed1ab_0 - sagemath-db-polytopes=20170220=1 @@ -103,6 +103,7 @@ dependencies: - rhash=1.4.3=h166bdaf_0 - sed=4.8=he412f7d_0 - symmetrica=3.0.1=hcb278e6_0 + - xkeyboard-config=2.38=h0b41bf4_0 - xorg-inputproto=2.3.2=h7f98852_1002 - xorg-kbproto=1.0.7=h7f98852_1002 - xorg-libice=1.0.10=h7f98852_0 @@ -135,8 +136,8 @@ dependencies: - libsqlite=3.42.0=h2797004_0 - libssh2=1.11.0=h0841786_0 - libvorbis=1.3.7=h9c3ff4c_0 - - libxcb=1.15=h0b41bf4_0 - - libxml2=2.11.4=h0d562d8_0 + - libxcb=1.13=h7f98852_1004 + - libxml2=2.10.4=hfdac1af_0 - mpfr=4.2.0=hb012696_0 - mysql-common=8.0.33=hf1915f5_2 - ntl=11.4.3=hef3c4d3_1 @@ -165,17 +166,17 @@ dependencies: - gfan=0.6.2=hb86e20a_1003 - gfortran_impl_linux-64=12.3.0=hfcedea8_0 - gxx_impl_linux-64=12.3.0=he2b93b0_0 - - igraph=0.7.1=0 - krb5=1.20.1=h81ceb04_0 - libcblas=3.9.0=17_linux64_openblas - libflint=2.9.0=h2f819a4_ntl_100 - libgcrypt=1.10.1=h166bdaf_0 - libglib=2.76.4=hebfc3b9_0 - - libhwloc=2.9.1=nocuda_h7313eea_6 + - libhwloc=2.9.1=hd6dc26d_0 - liblapack=3.9.0=17_linux64_openblas - - libllvm16=16.0.6=h5cf9203_1 + - libllvm16=16.0.3=hbf9e925_1 - libsndfile=1.2.0=hb75c966_0 - libtiff=4.5.1=h8b53f26_0 + - libxkbcommon=1.5.0=h79f4944_1 - llvm-openmp=16.0.6=h4dfa4b3_0 - m4ri=20140914=h7ca028e_1005 - mpc=1.3.1=hfe3b2da_0 @@ -185,42 +186,43 @@ dependencies: - pandoc=3.1.3=h32600fe_0 - pari=2.15.4=h4d4ae9b_2_pthread - ppl=1.2=h6ec01c2_1006 - - python=3.10.12=hd12c33a_0_cpython + - python=3.9.16=h2782a2a_0_cpython - sqlite=3.42.0=h2c6b66d_0 - tachyon=0.99b6=0 - texinfo=7.0=pl5321h0f457ee_0 - tktable=2.10=hb7b940f_3 - - 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.6=h8ee46fc_0 + - xcb-util=0.4.0=h516909a_0 + - xcb-util-keysyms=0.4.0=h516909a_0 + - xcb-util-renderutil=0.3.9=h166bdaf_0 + - xcb-util-wm=0.4.1=h516909a_0 + - xorg-libx11=1.8.4=h0b41bf4_0 - alabaster=0.7.13=pyhd8ed1ab_0 - appdirs=1.4.4=pyh9f0ad1d_0 - appnope=0.1.3=pyhd8ed1ab_0 - arb=2.23.0=h44d021b_0 + - arpack=3.7.0=hdefa2d7_2 - attrs=23.1.0=pyh71513ae_1 - automake=1.16.5=pl5321ha770c72_0 - backcall=0.2.0=pyh9f0ad1d_0 - backports=1.0=pyhd8ed1ab_3 - - backports.zoneinfo=0.2.1=py310hff52083_7 + - backports.zoneinfo=0.2.1=py39hf3d152e_7 - brotli=1.0.9=h166bdaf_9 - - brotli-python=1.0.9=py310hd8f1fbe_9 + - brotli-python=1.0.9=py39h5a03fae_9 - c-compiler=1.6.0=hd590300_0 - cachetools=5.3.1=pyhd8ed1ab_0 - certifi=2023.7.22=pyhd8ed1ab_0 - - chardet=5.1.0=py310hff52083_0 + - chardet=5.1.0=py39hf3d152e_0 - charset-normalizer=3.2.0=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_0 - cycler=0.11.0=pyhd8ed1ab_0 - - cysignals=1.11.2=py310h945e7c7_2 - - cython=0.29.36=py310hc6cd4ac_0 + - cysignals=1.11.2=py39h1ce0973_2 + - cython=0.29.36=py39h3d6467e_0 - dbus=1.13.6=h5008d03_3 - - debugpy=1.6.7=py310heca2aa9_0 + - debugpy=1.6.7=py39h227be39_0 - decorator=5.1.1=pyhd8ed1ab_0 - defusedxml=0.7.1=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - - docutils=0.19=py310hff52083_1 + - docutils=0.19=py39hf3d152e_1 - dsdp=5.8=hd9d9efa_1203 - eclib=20230424=hdef1efb_0 - editables=0.3=pyhd8ed1ab_0 @@ -236,7 +238,7 @@ dependencies: - gfortran=12.3.0=h499e0f7_1 - gfortran_linux-64=12.3.0=h7fe76b4_1 - glib-tools=2.76.4=hfc55251_0 - - gmpy2=2.1.2=py310h3ec546c_1 + - gmpy2=2.1.2=py39h376b7d2_1 - gsl=2.7=he838d99_0 - gxx=12.3.0=h8d2909c_1 - gxx_linux-64=12.3.0=h8a814eb_1 @@ -246,11 +248,11 @@ dependencies: - ipython_genutils=0.2.0=py_1 - json5=0.9.14=pyhd8ed1ab_0 - jupyterlab_widgets=1.1.1=pyhd8ed1ab_0 - - kiwisolver=1.4.4=py310hbf28c38_1 + - kiwisolver=1.4.4=py39hf939315_1 - lcalc=2.0.5=h6a8a7c6_1 - lcms2=2.15=haa2dc70_1 - libbrial=1.2.12=h138cd66_0 - - libclang13=16.0.6=default_h4d60ac6_1 + - libclang13=16.0.3=default_h4d60ac6_2 - libcups=2.3.3=h36d4200_3 - libcurl=8.1.2=h409715c_0 - liblapacke=3.9.0=17_linux64_openblas @@ -258,14 +260,14 @@ dependencies: - libsystemd0=253=h8c4010b_1 - libwebp=1.3.1=hbf2b3c1_0 - m4rie=20150908=h7ca028e_1001 - - markupsafe=2.1.3=py310h2372a71_0 + - markupsafe=2.1.3=py39hd1e30aa_0 - maxima=5.45.0=h9d73b02_3 - mistune=3.0.0=pyhd8ed1ab_0 - mpmath=1.3.0=pyhd8ed1ab_0 - munkres=1.1.4=pyh9f0ad1d_0 - nest-asyncio=1.5.6=pyhd8ed1ab_0 - networkx=2.8.8=pyhd8ed1ab_0 - - numpy=1.25.1=py310ha4c1d20_0 + - numpy=1.25.1=py39h6183b62_0 - openjpeg=2.5.0=hfec8fc6_2 - packaging=23.1=pyhd8ed1ab_0 - pandocfilters=1.5.0=pyhd8ed1ab_0 @@ -277,30 +279,29 @@ dependencies: - pluggy=1.2.0=pyhd8ed1ab_0 - ply=3.11=py_1 - prometheus_client=0.17.1=pyhd8ed1ab_0 - - psutil=5.9.5=py310h1fa729e_0 + - psutil=5.9.5=py39h72bdee0_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_0 + - pybind11-global=2.11.1=py39h7633fee_0 - pycparser=2.21=pyhd8ed1ab_0 - pygments=2.15.1=pyhd8ed1ab_0 - pyparsing=3.0.9=pyhd8ed1ab_0 - - pyrsistent=0.19.3=py310h1fa729e_0 + - pyrsistent=0.19.3=py39h72bdee0_0 - pysocks=1.7.1=pyha2e5f31_6 - python-fastjsonschema=2.18.0=pyhd8ed1ab_0 - python-json-logger=2.0.7=pyhd8ed1ab_0 - - python-lrcalc=2.1=py310hd8f1fbe_5 + - python-lrcalc=2.1=py39h5a03fae_5 - python-tzdata=2023.3=pyhd8ed1ab_0 - pytz=2023.3=pyhd8ed1ab_0 - - pyyaml=6.0=py310h5764c6d_5 - - pyzmq=25.1.0=py310h5bbb5d0_0 + - pyyaml=6.0=py39hb9d737c_5 + - pyzmq=25.1.0=py39hb257651_0 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.9.2=py310hcb5633a_0 - - rw=0.8=h516909a_1001 + - rpds-py=0.9.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=63.4.3=py310hff52083_0 + - setuptools=63.4.3=py39hf3d152e_0 - simplegeneric=0.8.1=py_1 - singular=4.2.1.p3=h1ea75ed_2 - six=1.16.0=pyh6c4a22f_0 @@ -318,22 +319,21 @@ dependencies: - toml=0.10.2=pyhd8ed1ab_0 - tomli=2.0.1=pyhd8ed1ab_0 - tomlkit=0.11.8=pyha770c72_0 - - tornado=6.3.2=py310h2372a71_0 + - tornado=6.3.2=py39hd1e30aa_0 - traitlets=5.9.0=pyhd8ed1ab_0 - trove-classifiers=2023.7.6=pyhd8ed1ab_0 - typing_extensions=4.7.1=pyha770c72_0 - typing_utils=0.1.0=pyhd8ed1ab_0 - - tzlocal=5.0.1=py310hff52083_0 - - unicodedata2=15.0.0=py310h5764c6d_0 + - tzlocal=5.0.1=py39hf3d152e_0 + - unicodedata2=15.0.0=py39hb9d737c_0 - vcversioner=2.16.0.0=py_1 - webencodings=0.5.1=py_1 - websocket-client=1.6.1=pyhd8ed1ab_0 - wheel=0.41.0=pyhd8ed1ab_0 - - xcb-util-image=0.4.0=h8ee46fc_1 - - xkeyboard-config=2.39=hd590300_0 + - xcb-util-image=0.4.0=h166bdaf_0 - xorg-libxext=1.3.4=h0b41bf4_2 - xorg-libxfixes=5.0.3=h7f98852_1004 - - xorg-libxrender=0.9.11=hd590300_0 + - xorg-libxrender=0.9.10=h7f98852_1003 - xorg-libxt=1.3.0=hd590300_0 - zipp=3.16.2=pyhd8ed1ab_0 - anyio=3.7.1=pyhd8ed1ab_0 @@ -346,19 +346,19 @@ dependencies: - blas-devel=3.9.0=17_linux64_openblas - bleach=6.0.0=pyhd8ed1ab_0 - brial=1.2.12=pyha3edaa6_0 - - cairo=1.16.0=hbbf8b49_1016 - - cffi=1.15.1=py310h255011f_3 + - cairo=1.16.0=h35add3b_1015 + - cffi=1.15.1=py39he91dace_3 - cmake=3.26.4=hcfe8598_0 - comm=0.1.3=pyhd8ed1ab_0 - - contourpy=1.1.0=py310hd41b1e2_0 + - contourpy=1.1.0=py39h7633fee_0 - cppy=1.2.1=pyhd8ed1ab_0 - curl=8.1.2=h409715c_0 - cxx-compiler=1.6.0=h00ab1b0_0 - - cypari2=2.1.3=py310h14ed79e_2 + - cypari2=2.1.3=py39h1698a45_2 - deprecation=2.1.0=pyh9f0ad1d_0 - - fonttools=4.41.1=py310h2372a71_0 + - fonttools=4.41.1=py39hd1e30aa_0 - fortran-compiler=1.6.0=heb67821_0 - - fpylll=0.5.9=py310h0dadf69_1 + - fpylll=0.5.9=py39hf60ab73_1 - giac=1.9.0.21=h673759e_1 - glib=2.76.4=hfc55251_0 - html5lib=1.1=pyh9f0ad1d_0 @@ -367,27 +367,26 @@ dependencies: - jedi=0.18.2=pyhd8ed1ab_0 - jinja2=3.1.2=pyhd8ed1ab_1 - jupyterlab_pygments=0.2.2=pyhd8ed1ab_0 - - libclang=16.0.6=default_h1cdf331_1 + - libclang=16.0.3=default_h1cdf331_2 - libgd=2.3.3=hfa28ad5_6 - - libxkbcommon=1.5.0=h5d7e998_3 - linbox=1.6.3=h9d78c56_7 - matplotlib-inline=0.1.6=pyhd8ed1ab_0 - - memory-allocator=0.1.2=py310h5764c6d_2 + - memory-allocator=0.1.2=py39hb9d737c_2 - overrides=7.3.1=pyhd8ed1ab_0 - pexpect=4.8.0=pyh1a96a4e_2 - - pillow=10.0.0=py310h582fbeb_0 + - pillow=9.5.0=py39h7207d5c_0 - pip=23.2.1=pyhd8ed1ab_0 - - pplpy=0.8.7=py310h28f6eb6_0 - - primecountpy=0.1.0=py310hd41b1e2_3 + - pplpy=0.8.7=py39hba3e9e5_0 + - primecountpy=0.1.0=py39h7633fee_3 - pulseaudio-client=16.1=hb77b528_4 - - pybind11=2.11.1=py310hd41b1e2_0 + - pybind11=2.11.1=py39h7633fee_0 - pyproject-api=1.5.3=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - - pytz-deprecation-shim=0.1.0.post0=py310hff52083_3 + - pytz-deprecation-shim=0.1.0.post0=py39hf3d152e_3 - referencing=0.30.0=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - sagemath-db-conway-polynomials=0.5.0=ha878542_1 - - sip=6.7.9=py310hc6cd4ac_0 + - sip=6.7.10=py39h3d6467e_0 - suitesparse=5.10.1=h9e50725_1 - sympy=1.12=pypyh9d50eac_103 - terminado=0.17.1=pyh41d4057_0 @@ -395,46 +394,48 @@ dependencies: - typing-extensions=4.7.1=hd8ed1ab_0 - urllib3=2.0.4=pyhd8ed1ab_0 - xorg-libxi=1.7.10=h7f98852_0 - - argon2-cffi-bindings=21.2.0=py310h5764c6d_3 + - argon2-cffi-bindings=21.2.0=py39hb9d737c_3 - blas=2.117=openblas - compilers=1.6.0=ha770c72_0 - - cvxopt=1.3.1=py310h14a12bf_0 - - gstreamer=1.22.3=h977cf35_1 + - cvxopt=1.3.1=py39hef4d4b4_0 + - gstreamer=1.22.0=h25f0c4b_2 - harfbuzz=7.3.0=hdb3a94d_0 - hatchling=1.18.0=pyhd8ed1ab_0 + - igraph=0.9.10=ha1f048c_1 - importlib-resources=6.0.0=pyhd8ed1ab_1 - importlib_metadata=6.8.0=hd8ed1ab_0 - jsonschema-specifications=2023.7.1=pyhd8ed1ab_0 - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1 - - matplotlib-base=3.7.2=py310hf38f957_0 - platformdirs=3.9.1=pyhd8ed1ab_0 - poetry-core=1.6.1=pyhd8ed1ab_0 - - pyqt5-sip=12.11.0=py310heca2aa9_3 - - pythran=0.13.1=py310hfb6f7a9_0 + - pyqt5-sip=12.11.0=py39h227be39_3 + - pythran=0.13.1=py39hf86192f_0 - requests=2.31.0=pyhd8ed1ab_0 - setuptools-scm=7.1.0=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 - wcwidth=0.2.6=pyhd8ed1ab_0 - xorg-libxtst=1.2.3=h7f98852_1002 - argon2-cffi=21.3.0=pyhd8ed1ab_0 - - gst-plugins-base=1.22.3=h938bd60_1 + - gst-plugins-base=1.22.0=h4243ec0_2 - jsonschema=4.18.4=pyhd8ed1ab_0 - - jupyter_core=5.3.1=py310hff52083_0 + - jupyter_core=5.3.1=py39hf3d152e_0 + - matplotlib-base=3.7.2=py39h0126182_0 - openjdk=17.0.3=h19c1b89_7 - pango=1.50.14=heaa33ce_1 - pooch=1.7.0=pyha770c72_3 - prompt-toolkit=3.0.39=pyha770c72_0 + - rw=0.9=h7f98852_0 - setuptools_scm=7.1.0=hd8ed1ab_0 - sphinx=6.2.1=pyhd8ed1ab_0 - - virtualenv=20.24.1=pyhd8ed1ab_0 + - virtualenv=20.24.2=pyhd8ed1ab_0 - jmol=14.32.10=ha770c72_0 - jupyter_client=8.3.0=pyhd8ed1ab_0 - jupyter_events=0.6.3=pyhd8ed1ab_0 - nbformat=5.9.1=pyhd8ed1ab_0 - prompt_toolkit=3.0.39=hd8ed1ab_0 - - qt-main=5.15.8=h01ceb2d_12 - - r-base=4.3.1=hfabd6f2_1 - - scipy=1.10.1=py310ha4c1d20_3 + - qt-main=5.15.8=haa3a1c2_11 + - r-base=4.3.0=h0fc540b_0 + - scipy=1.10.1=py39h6183b62_3 - sphinx-basic-ng=1.0.0b2=pyhd8ed1ab_0 - sphinx-copybutton=0.5.2=pyhd8ed1ab_0 - sphinxcontrib-websupport=1.2.4=pyhd8ed1ab_1 @@ -442,10 +443,10 @@ dependencies: - furo=2023.5.20=pyhd8ed1ab_1 - ipython=8.14.0=pyh41d4057_0 - nbclient=0.8.0=pyhd8ed1ab_0 - - pyqt=5.15.7=py310hab646b1_3 - - rpy2=3.5.11=py310r43h278f3c1_2 + - pyqt=5.15.7=py39h5c7b992_3 + - rpy2=3.5.11=py39r43h0f8d45d_2 - ipykernel=6.24.0=pyh71e2992_0 - - matplotlib=3.7.2=py310hff52083_0 + - matplotlib=3.7.2=py39hf3d152e_0 - nbconvert-core=7.7.2=pyhd8ed1ab_0 - jupyter_server=2.7.0=pyhd8ed1ab_0 - nbconvert-pandoc=7.7.2=pyhd8ed1ab_0 @@ -458,4 +459,4 @@ dependencies: - widgetsnbextension=3.6.4=pyhd8ed1ab_0 - ipywidgets=7.7.5=pyhd8ed1ab_0 - jupyter-jsmol=2022.1.0=pyhd8ed1ab_0 - - jupyter_sphinx=0.4.0=py310hff52083_1 + - jupyter_sphinx=0.4.0=py39hf3d152e_1 diff --git a/src/environment-3.9-macos.yml b/src/environment-3.9-macos.yml index 8267177de39..699cae8cd7d 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: 7056c18e920401fcf44f349c629cbeb7f2f00f1271eeeb3827d27907e8c4ee24 +# input_hash: 8c63ac3706fab6b3a6d50a09a4ebb30894eb1aad278330e283069e0aa71b607a channels: - conda-forge @@ -50,8 +50,9 @@ dependencies: - pixman=0.40.0=hbcb3906_0 - planarity=3.0.0.5=hbcb3906_1002 - pthread-stubs=0.4=hc929b4f_1001 - - python_abi=3.10=3_cp310 + - python_abi=3.9=3_cp39 - rhash=1.4.3=hac89ed1_0 + - rw=0.7=1 - sagemath-db-combinatorial-designs=20140630=1 - sagemath-db-graphs=20210214=hd8ed1ab_0 - sagemath-db-polytopes=20170220=1 @@ -80,7 +81,7 @@ dependencies: - libpng=1.6.39=ha978bb4_0 - libsqlite=3.42.0=h58db7d2_0 - libxcb=1.15=hb7f2c08_0 - - libxml2=2.10.4=h554bb67_0 + - libxml2=2.11.4=hd95e348_0 - lrcalc=2.1=hf0c8a7f_5 - ninja=1.11.1=hb8565cd_0 - openjdk=20.0.0=h7d26f99_0 @@ -115,11 +116,11 @@ dependencies: - givaro=4.1.1=h0a799c6_3 - glpk=5.0=h3cb5acd_0 - jmol=14.32.9=h694c41f_0 - - krb5=1.20.1=h049b76e_0 + - krb5=1.21.1=hb884880_0 - libgfortran=5.0.0=12_3_0_h97931a8_1 - libglib=2.76.4=hc62aa5d_0 - libhomfly=1.02r6=hc929b4f_0 - - libllvm15=15.0.7=h7001e86_1 + - libllvm15=15.0.7=he4b1e75_2 - libnghttp2=1.52.0=he2ab024_0 - libssh2=1.11.0=hd019ec5_0 - libtiff=4.5.1=hf955e92_0 @@ -128,7 +129,7 @@ dependencies: - ntl=11.4.3=h0ab3c2f_1 - pari=2.15.4=h93f793c_2_pthread - primecount=7.6=ha894c9a_0 - - python=3.10.12=had23ca6_0_cpython + - python=3.9.16=h709bd14_0_cpython - sigtool=0.1.3=h88f4db0_0 - sqlite=3.42.0=h2b0dec6_0 - tachyon=0.99b6=0 @@ -139,22 +140,22 @@ dependencies: - attrs=23.1.0=pyh71513ae_1 - backcall=0.2.0=pyh9f0ad1d_0 - backports=1.0=pyhd8ed1ab_3 - - backports.zoneinfo=0.2.1=py310h2ec42d9_7 + - backports.zoneinfo=0.2.1=py39h6e9494a_7 - brotli=1.0.9=hb7f2c08_9 - - brotli-python=1.0.9=py310h7a76584_9 + - brotli-python=1.0.9=py39h7a8716b_9 - cachetools=5.3.1=pyhd8ed1ab_0 - certifi=2023.7.22=pyhd8ed1ab_0 - - chardet=5.1.0=py310h2ec42d9_0 + - chardet=5.1.0=py39h6e9494a_0 - charset-normalizer=3.2.0=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_0 - cycler=0.11.0=pyhd8ed1ab_0 - - cysignals=1.11.2=py310h8c82e65_2 - - cython=0.29.36=py310h9e9d8ca_0 - - debugpy=1.6.7=py310h7a76584_0 + - cysignals=1.11.2=py39hf6ae30e_2 + - cython=0.29.36=py39h840bb9f_0 + - debugpy=1.6.7=py39h7a8716b_0 - decorator=5.1.1=pyhd8ed1ab_0 - defusedxml=0.7.1=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - - docutils=0.19=py310h2ec42d9_1 + - docutils=0.19=py39h6e9494a_1 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 - exceptiongroup=1.1.2=pyhd8ed1ab_0 @@ -171,19 +172,19 @@ dependencies: - ipython_genutils=0.2.0=py_1 - json5=0.9.14=pyhd8ed1ab_0 - jupyterlab_widgets=1.1.1=pyhd8ed1ab_0 - - kiwisolver=1.4.4=py310ha23aa8a_1 + - kiwisolver=1.4.4=py39h92daf61_1 - lcalc=2.0.5=h3a941db_1 - lcms2=2.15=h2dcdeff_1 - ld64_osx-64=609=h8ce0179_13 - libbrial=1.2.12=h8f704d5_0 - libclang-cpp15=15.0.7=default_hdb78580_2 - - libcurl=8.1.2=hbee3ae8_0 + - libcurl=8.2.0=h5f667d7_0 - libflint=2.9.0=hfd2f71f_ntl_100 - libopenblas=0.3.23=openmp_h429af6e_0 - libwebp=1.3.1=hc961f54_0 - - llvm-tools=15.0.7=h7001e86_1 + - llvm-tools=15.0.7=he4b1e75_2 - m4rie=20150908=h3f75d11_1001 - - markupsafe=2.1.3=py310h6729b98_0 + - markupsafe=2.1.3=py39hdc70f33_0 - maxima=5.45.0=hd029580_3 - mistune=3.0.0=pyhd8ed1ab_0 - mpc=1.3.1=h81bd1dd_0 @@ -204,30 +205,29 @@ dependencies: - ply=3.11=py_1 - ppl=1.2=ha60d53e_1006 - prometheus_client=0.17.1=pyhd8ed1ab_0 - - psutil=5.9.5=py310h90acd4f_0 + - psutil=5.9.5=py39ha30fb19_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_0 + - pybind11-global=2.11.1=py39h8ee36c8_0 - pycparser=2.21=pyhd8ed1ab_0 - pygments=2.15.1=pyhd8ed1ab_0 - pyparsing=3.0.9=pyhd8ed1ab_0 - - pyrsistent=0.19.3=py310h90acd4f_0 + - pyrsistent=0.19.3=py39ha30fb19_0 - pysocks=1.7.1=pyha2e5f31_6 - python-fastjsonschema=2.18.0=pyhd8ed1ab_0 - python-json-logger=2.0.7=pyhd8ed1ab_0 - - python-lrcalc=2.1=py310h7a76584_5 + - python-lrcalc=2.1=py39h7a8716b_5 - python-tzdata=2023.3=pyhd8ed1ab_0 - pytz=2023.3=pyhd8ed1ab_0 - - pyyaml=6.0=py310h90acd4f_5 - - pyzmq=25.1.0=py310h998be00_0 + - pyyaml=6.0=py39ha30fb19_5 + - pyzmq=25.1.0=py39hdac9eea_0 - qd=2.3.22=h2beb688_1004 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.9.2=py310h3461e44_0 + - rpds-py=0.9.2=py39hf33989b_0 - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 - sagetex=3.6.1=pyhd8ed1ab_0 - - send2trash=1.8.2=pyh41d4057_0 - - setuptools=63.4.3=py310h2ec42d9_0 + - setuptools=63.4.3=py39h6e9494a_0 - simplegeneric=0.8.1=py_1 - six=1.16.0=pyh6c4a22f_0 - sniffio=1.3.0=pyhd8ed1ab_0 @@ -243,13 +243,13 @@ dependencies: - toml=0.10.2=pyhd8ed1ab_0 - tomli=2.0.1=pyhd8ed1ab_0 - tomlkit=0.11.8=pyha770c72_0 - - tornado=6.3.2=py310h6729b98_0 + - tornado=6.3.2=py39hdc70f33_0 - traitlets=5.9.0=pyhd8ed1ab_0 - trove-classifiers=2023.7.6=pyhd8ed1ab_0 - typing_extensions=4.7.1=pyha770c72_0 - typing_utils=0.1.0=pyhd8ed1ab_0 - - tzlocal=5.0.1=py310h2ec42d9_0 - - unicodedata2=15.0.0=py310h90acd4f_0 + - tzlocal=5.0.1=py39h6e9494a_0 + - unicodedata2=15.0.0=py39ha30fb19_0 - vcversioner=2.16.0.0=py_1 - webencodings=0.5.1=py_1 - websocket-client=1.6.1=pyhd8ed1ab_0 @@ -267,19 +267,19 @@ dependencies: - brial=1.2.12=pyha3edaa6_0 - cairo=1.16.0=h09dd18c_1016 - cctools_osx-64=973.0.1=h48a5a9d_13 - - cffi=1.15.1=py310ha78151a_3 + - cffi=1.15.1=py39h131948b_3 - clang-15=15.0.7=default_hdb78580_2 - cmake=3.26.4=hf40c264_0 - comm=0.1.3=pyhd8ed1ab_0 - cppy=1.2.1=pyhd8ed1ab_0 - - curl=8.1.2=hbee3ae8_0 - - cypari2=2.1.3=py310hb5d31c9_2 + - curl=8.2.0=h5f667d7_0 + - cypari2=2.1.3=py39he2cb11e_2 - deprecation=2.1.0=pyh9f0ad1d_0 - eclib=20230424=hd00e801_0 - - fonttools=4.41.1=py310h6729b98_0 + - fonttools=4.41.1=py39hdc70f33_0 - fplll=5.4.4=hdfdc905_0 - gfortran_impl_osx-64=12.2.0=hdfd80ef_32 - - gmpy2=2.1.2=py310hb691cb2_1 + - gmpy2=2.1.2=py39h2da61ea_1 - html5lib=1.1=pyh9f0ad1d_0 - importlib-metadata=6.8.0=pyha770c72_0 - importlib_resources=6.0.0=pyhd8ed1ab_1 @@ -290,17 +290,18 @@ dependencies: - libblas=3.9.0=17_osx64_openblas - libgd=2.3.3=h3d994df_6 - matplotlib-inline=0.1.6=pyhd8ed1ab_0 - - memory-allocator=0.1.2=py310h90acd4f_2 + - memory-allocator=0.1.2=py39ha30fb19_2 - openblas=0.3.23=openmp_hbefa662_0 - overrides=7.3.1=pyhd8ed1ab_0 - pexpect=4.8.0=pyh1a96a4e_2 - - pillow=10.0.0=py310hd63a8c7_0 + - pillow=10.0.0=py39he6683de_0 - pip=23.2.1=pyhd8ed1ab_0 - - primecountpy=0.1.0=py310h88cfcbd_3 - - pybind11=2.11.1=py310h88cfcbd_0 + - primecountpy=0.1.0=py39h8ee36c8_3 + - pybind11=2.11.1=py39h8ee36c8_0 + - pyobjc-core=9.2=py39head00df_0 - pyproject-api=1.5.3=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - - pytz-deprecation-shim=0.1.0.post0=py310h2ec42d9_3 + - pytz-deprecation-shim=0.1.0.post0=py39h6e9494a_3 - referencing=0.30.0=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - sagemath-db-conway-polynomials=0.5.0=h033912b_1 @@ -309,7 +310,7 @@ dependencies: - tinycss2=1.2.1=pyhd8ed1ab_0 - typing-extensions=4.7.1=hd8ed1ab_0 - urllib3=2.0.4=pyhd8ed1ab_0 - - argon2-cffi-bindings=21.2.0=py310h90acd4f_3 + - argon2-cffi-bindings=21.2.0=py39ha30fb19_3 - cctools=973.0.1=hd9ad811_13 - clang=15.0.7=h694c41f_2 - harfbuzz=7.3.0=h413ba03_0 @@ -322,43 +323,43 @@ dependencies: - liblapack=3.9.0=17_osx64_openblas - platformdirs=3.9.1=pyhd8ed1ab_0 - poetry-core=1.6.1=pyhd8ed1ab_0 - - pplpy=0.8.7=py310h190f582_0 + - pplpy=0.8.7=py39hb3e8af0_0 + - pyobjc-framework-cocoa=9.2=py39head00df_0 - requests=2.31.0=pyhd8ed1ab_0 - setuptools-scm=7.1.0=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 - sympy=1.12=pypyh9d50eac_103 - wcwidth=0.2.6=pyhd8ed1ab_0 - argon2-cffi=21.3.0=pyhd8ed1ab_0 - - arpack=3.7.0=hefb7bc6_2 - clangxx=15.0.7=default_hdb78580_2 - dsdp=5.8=h6e329d1_1203 - fflas-ffpack=2.4.3=h026fd7e_2 - gsl=2.7=h93259b0_0 - iml=1.0.5=h64b42ca_1003 - jsonschema=4.18.4=pyhd8ed1ab_0 - - jupyter_core=5.3.1=py310h2ec42d9_0 + - jupyter_core=5.3.1=py39h6e9494a_0 - liblapacke=3.9.0=17_osx64_openblas - - numpy=1.25.1=py310h7451ae0_0 + - numpy=1.25.1=py39h892e69a_0 - pango=1.50.14=hbce5e75_1 - pooch=1.7.0=pyha770c72_3 - prompt-toolkit=3.0.39=pyha770c72_0 + - send2trash=1.8.2=pyhd1c38e8_0 - setuptools_scm=7.1.0=hd8ed1ab_0 - sphinx=6.2.1=pyhd8ed1ab_0 - suitesparse=5.10.1=h7aff33d_1 - - virtualenv=20.24.1=pyhd8ed1ab_0 + - virtualenv=20.24.2=pyhd8ed1ab_0 - blas-devel=3.9.0=17_osx64_openblas - compiler-rt_osx-64=15.0.7=he1888fc_1 - - contourpy=1.1.0=py310h88cfcbd_0 - - cvxopt=1.3.1=py310ha550498_0 - - fpylll=0.5.9=py310h0d1ef73_1 + - contourpy=1.1.0=py39h8ee36c8_0 + - cvxopt=1.3.1=py39h2a3e123_0 + - fpylll=0.5.9=py39hb8d1c6e_1 - giac=1.9.0.21=h92f3f65_1 - - igraph=0.9.10=h6560ca6_1 - jupyter_client=8.3.0=pyhd8ed1ab_0 - jupyter_events=0.6.3=pyhd8ed1ab_0 - linbox=1.6.3=hdde8d14_7 - nbformat=5.9.1=pyhd8ed1ab_0 - prompt_toolkit=3.0.39=hd8ed1ab_0 - - scipy=1.10.1=py310h3900cf1_3 + - scipy=1.10.1=py39hded996c_3 - sphinx-basic-ng=1.0.0b2=pyhd8ed1ab_0 - sphinx-copybutton=0.5.2=pyhd8ed1ab_0 - sphinxcontrib-websupport=1.2.4=pyhd8ed1ab_1 @@ -367,12 +368,11 @@ dependencies: - compiler-rt=15.0.7=he1888fc_1 - furo=2023.5.20=pyhd8ed1ab_1 - ipython=8.14.0=pyhd1c38e8_0 - - matplotlib-base=3.7.2=py310h475a17b_0 + - matplotlib-base=3.7.2=py39h6e39af2_0 - nbclient=0.8.0=pyhd8ed1ab_0 - - rw=0.9=h0d85af4_0 - clang_osx-64=15.0.7=h03d6864_3 - ipykernel=6.24.0=pyh5fb750a_0 - - matplotlib=3.7.2=py310h2ec42d9_0 + - matplotlib=3.7.2=py39h6e9494a_0 - nbconvert-core=7.7.2=pyhd8ed1ab_0 - c-compiler=1.6.0=h63c33a9_0 - clangxx_osx-64=15.0.7=h2133e9c_3 @@ -385,14 +385,14 @@ dependencies: - jupyterlab_server=2.24.0=pyhd8ed1ab_0 - nbconvert=7.7.2=pyhd8ed1ab_0 - notebook-shim=0.2.3=pyhd8ed1ab_0 - - pythran=0.13.1=py310h9209b79_0 - - r-base=4.3.0=h7a6543b_0 + - pythran=0.13.1=py39h204a2a1_0 + - r-base=4.3.1=had2b78c_3 - fortran-compiler=1.6.0=h932d759_0 - jupyterlab=4.0.3=pyhd8ed1ab_0 - - rpy2=3.5.11=py310r43hc1335a1_2 + - rpy2=3.5.11=py39r43h57e1da4_2 - compilers=1.6.0=h694c41f_0 - notebook=7.0.0=pyhd8ed1ab_0 - widgetsnbextension=3.6.4=pyhd8ed1ab_0 - ipywidgets=7.7.5=pyhd8ed1ab_0 - jupyter-jsmol=2022.1.0=pyhd8ed1ab_0 - - jupyter_sphinx=0.4.0=py310h2ec42d9_1 + - jupyter_sphinx=0.4.0=py39h6e9494a_1 From 50f8845ac94cc471aa6161326ce3a09365237047 Mon Sep 17 00:00:00 2001 From: Matthias Koeppe Date: Wed, 4 Oct 2023 21:23:47 -0700 Subject: [PATCH 06/33] bootstrap-conda: Generate environment files with hard-coded Python minor versions (environment-3.9.yml etc.) This is convenient for conda-lock. Partial cherry-pick from "Use conda-lock for reproducible conda env" --- .devcontainer/onCreate-conda.sh | 2 +- .gitignore | 18 ++++ .gitpod.yml | 2 +- bootstrap-conda | 134 ++++++++++++------------ build/pkgs/matplotlib/distros/conda.txt | 2 +- 5 files changed, 89 insertions(+), 69 deletions(-) diff --git a/.devcontainer/onCreate-conda.sh b/.devcontainer/onCreate-conda.sh index eaa045cd27b..2cbb94e3492 100755 --- a/.devcontainer/onCreate-conda.sh +++ b/.devcontainer/onCreate-conda.sh @@ -4,7 +4,7 @@ set -e # Create conda environment ./bootstrap-conda conda install mamba -n base -c conda-forge -y -mamba env create --file src/environment-dev.yml || mamba env update --file src/environment-dev.yml +mamba env create --file src/environment-dev-3.11.yml || mamba env update --file src/environment-dev-3.11.yml conda init bash # Build sage diff --git a/.gitignore b/.gitignore index efdbfa8f616..3048ed76c1f 100644 --- a/.gitignore +++ b/.gitignore @@ -27,11 +27,29 @@ # no longer generated, but may still be in user worktrees /src/lib/pkgconfig +# Environment files generated by bootstrap-conda. +# The files without Python version are no longer generated +# but may still be in users' directories. /environment.yml +/environment-3.9.yml +/environment-3.10.yml +/environment-3.11.yml /environment-optional.yml +/environment-optional-3.9.yml +/environment-optional-3.10.yml +/environment-optional-3.11.yml /src/environment.yml +/src/environment-3.9.yml +/src/environment-3.10.yml +/src/environment-3.11.yml /src/environment-dev.yml +/src/environment-dev-3.9.yml +/src/environment-dev-3.10.yml +/src/environment-dev-3.11.yml /src/environment-optional.yml +/src/environment-optional-3.9.yml +/src/environment-optional-3.10.yml +/src/environment-optional-3.11.yml /src/setup.cfg /src/requirements.txt diff --git a/.gitpod.yml b/.gitpod.yml index 52ac8d7184c..51c2687c5d3 100644 --- a/.gitpod.yml +++ b/.gitpod.yml @@ -8,7 +8,7 @@ tasks: # Create conda environment, then configure and build sage init: >- ./bootstrap-conda - && mamba env create --file src/environment-dev.yml --prefix venv + && mamba env create --file src/environment-dev-3.11.yml --prefix venv && conda config --append envs_dirs $(pwd) && conda activate $(pwd)/venv && ./bootstrap diff --git a/bootstrap-conda b/bootstrap-conda index ed4bb9e0d08..811dcbf43b0 100755 --- a/bootstrap-conda +++ b/bootstrap-conda @@ -51,72 +51,74 @@ for PKG_BASE in $(sage-package list --has-file distros/conda.txt --exclude _sage fi done echo >&2 $0:$LINENO: generate conda environment files -( - echo "name: sage-build" - echo "channels:" - echo " - conda-forge" - echo " - nodefaults" - echo "dependencies:" - for pkg in $SYSTEM_PACKAGES; do - echo " - $pkg" - done - echo " # Packages needed for ./bootstrap" - for pkg in $BOOTSTRAP_PACKAGES; do - echo " - $pkg" - done -) > environment.yml +for python_version in 3.9 3.10 3.11; do + ( + echo "name: sage-build" + echo "channels:" + echo " - conda-forge" + echo " - nodefaults" + echo "dependencies:" + echo " - python=$python_version" + for pkg in $SYSTEM_PACKAGES; do + echo " - $pkg" + done + echo " # Packages needed for ./bootstrap" + for pkg in $BOOTSTRAP_PACKAGES; do + echo " - $pkg" + done + ) > environment-$python_version.yml + ( + sed 's/name: sage-build/name: sage/' environment-$python_version.yml + echo " # Additional packages providing all dependencies for the Sage library" + for pkg in $SAGELIB_SYSTEM_PACKAGES; do + echo " - $pkg" + done + ) > src/environment-$python_version.yml -( - sed 's/name: sage-build/name: sage/' environment.yml - echo " # Additional packages providing all dependencies for the Sage library" - for pkg in $SAGELIB_SYSTEM_PACKAGES; do - echo " - $pkg" - done -) > src/environment.yml + ( + cat environment-$python_version.yml + echo " # optional packages" + for pkg in $OPTIONAL_SYSTEM_PACKAGES; do + echo " - $pkg" + done + ) > environment-optional-$python_version.yml -( - sed 's/name: sage/name: sage-dev/' src/environment.yml - echo " # Additional dev tools" - for pkg in $DEVELOP_SYSTEM_PACKAGES; do - echo " - $pkg" - done -) > src/environment-dev.yml - -( - cat environment.yml - echo " # optional packages" - for pkg in $OPTIONAL_SYSTEM_PACKAGES; do - echo " - $pkg" - done -) > environment-optional.yml - -( - cat src/environment.yml - echo " # optional packages" - for pkg in $OPTIONAL_SYSTEM_PACKAGES $SAGELIB_OPTIONAL_SYSTEM_PACKAGES; do - echo " - $pkg" - done -) > src/environment-optional.yml -( - echo >&4 " - pip:" - echo >&5 " - pip:" - for PKG_BASE in $((sage-package list :standard: :optional: --has-file requirements.txt --no-file distros/conda.txt --no-file src; sage-package list :standard: :optional: --has-file install-requires.txt --no-file requirements.txt --no-file distros/conda.txt --no-file src) | sort); do - PKG_SCRIPTS=build/pkgs/$PKG_BASE - SYSTEM_PACKAGES_FILE=$PKG_SCRIPTS/requirements.txt - if [ ! -f $SYSTEM_PACKAGES_FILE ]; then - SYSTEM_PACKAGES_FILE=$PKG_SCRIPTS/install-requires.txt - fi - PKG_TYPE=$(cat $PKG_SCRIPTS/type) - if grep -q SAGERUNTIME $PKG_SCRIPTS/dependencies $PKG_SCRIPTS/dependencies_order_only 2>/dev/null; then - : # cannot install packages that depend on the Sage library - else - case "$PKG_BASE:$PKG_TYPE" in - $DEVELOP_SPKG_PATTERN:*) FD=4;; - *) FD=5;; - esac - ${STRIP_COMMENTS} $SYSTEM_PACKAGES_FILE | while read -r line; do - [ -n "$line" ] && echo >&$FD " - $line" + ( + ( + sed 's/name: sage/name: sage-dev/' src/environment-$python_version.yml + echo " # Additional dev tools" + for pkg in $DEVELOP_SYSTEM_PACKAGES; do + echo " - $pkg" done - fi - done -) 4>> src/environment-dev.yml 5>> src/environment-optional.yml + ) >&4 + ( + cat src/environment-$python_version.yml + echo " # optional packages" + for pkg in $OPTIONAL_SYSTEM_PACKAGES $SAGELIB_OPTIONAL_SYSTEM_PACKAGES; do + echo " - $pkg" + done + ) >&5 + echo >&4 " - pip:" + echo >&5 " - pip:" + for PKG_BASE in $((sage-package list :standard: :optional: --has-file requirements.txt --no-file distros/conda.txt --no-file src; sage-package list :standard: :optional: --has-file install-requires.txt --no-file requirements.txt --no-file distros/conda.txt --no-file src) | sort); do + PKG_SCRIPTS=build/pkgs/$PKG_BASE + SYSTEM_PACKAGES_FILE=$PKG_SCRIPTS/requirements.txt + if [ ! -f $SYSTEM_PACKAGES_FILE ]; then + SYSTEM_PACKAGES_FILE=$PKG_SCRIPTS/install-requires.txt + fi + PKG_TYPE=$(cat $PKG_SCRIPTS/type) + if grep -q SAGERUNTIME $PKG_SCRIPTS/dependencies $PKG_SCRIPTS/dependencies_order_only 2>/dev/null; then + : # cannot install packages that depend on the Sage library + else + case "$PKG_BASE:$PKG_TYPE" in + $DEVELOP_SPKG_PATTERN:*) FD=4;; + *:standard) FD="4 5";; + *) FD=5;; + esac + ${STRIP_COMMENTS} $SYSTEM_PACKAGES_FILE | while read -r line; do + [ -n "$line" ] && for fd in $FD; do echo >&$fd " - $line"; done + done + fi + done + ) 4>> src/environment-dev-$python_version.yml 5>> src/environment-optional-$python_version.yml +done diff --git a/build/pkgs/matplotlib/distros/conda.txt b/build/pkgs/matplotlib/distros/conda.txt index 8b3901c7c9a..9fdcdfeb47f 100644 --- a/build/pkgs/matplotlib/distros/conda.txt +++ b/build/pkgs/matplotlib/distros/conda.txt @@ -1,2 +1,2 @@ # Trac #33642: For unknown reasons, without the version constraint, conda installs only 3.3.2 -"matplotlib>=3.5.1" +matplotlib>=3.5.1 From 549a30341d97882bd8ad06a9d2a2a054f2efc866 Mon Sep 17 00:00:00 2001 From: Matthias Koeppe Date: Wed, 27 Sep 2023 12:30:03 -0700 Subject: [PATCH 07/33] src/doc/en/installation/conda.rst: Update for versioned environment-... files --- src/doc/en/installation/conda.rst | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/src/doc/en/installation/conda.rst b/src/doc/en/installation/conda.rst index 5228611de3b..15137d6b745 100644 --- a/src/doc/en/installation/conda.rst +++ b/src/doc/en/installation/conda.rst @@ -75,13 +75,16 @@ from source as follows: - Create a new conda environment including all standard packages recognized by sage, and activate it:: - $ conda env create --file environment.yml --name sage-build + $ conda env create --file environment-3.11.yml --name sage-build $ conda activate sage-build - Alternatively, use ``environment-optional.yml`` in place of + Alternatively, use ``environment-optional-3.11.yml`` in place of ``environment.yml`` to create an environment with all standard and optional packages recognized by sage. + A different Python version can be selected by replacing ``3.11`` by ``3.9`` + or ``3.10`` in these commands. + - Then the SageMath distribution will be built using the compilers provided by Conda and using many packages installed by Conda:: @@ -126,16 +129,15 @@ Here we assume that you are using a git checkout. - Create and activate a new conda environment with the dependencies of Sage and a few additional developer tools:: - $ mamba env create --file src/environment-dev.yml --name sage-dev + $ mamba env create --file src/environment-dev-3.11.yml --name sage-dev $ conda activate sage-dev - Alternatively, you can use ``src/environment.yml`` or - ``src/environment-optional.yml``, which will only install standard + Alternatively, you can use ``src/environment-3.11.yml`` or + ``src/environment-optional-3.11.yml``, which will only install standard (and optional) packages without any additional developer tools. - By default, the most recent version of Python supported by Sage is - installed. You can use the additional option ``python=3.9`` in the above - ``env create`` command to select another Python version (here 3.9). + A different Python version can be selected by replacing ``3.11`` by ``3.9`` + or ``3.10`` in these commands. - Run the ``configure`` script:: @@ -157,7 +159,7 @@ Here we assume that you are using a git checkout. - Verify that Sage has been installed:: $ sage -c 'print(version())' - SageMath version 9.6.beta5, Release Date: 2022-03-12 + SageMath version 10.2.beta4, Release Date: 2023-09-24 Note that ``make`` is not used at all. All dependencies (including all Python packages) are provided by conda. @@ -177,7 +179,7 @@ After editing any Cython files, rebuild the Sage library using:: In order to update the conda environment later, you can run:: - $ mamba env update --file src/environment-dev.yml --name sage-dev + $ mamba env update --file src/environment-dev-3.11.yml --name sage-dev To build the documentation, use:: From 22174da9ae3f2fef7531237b6b11dd1330613f18 Mon Sep 17 00:00:00 2001 From: Matthias Koeppe Date: Wed, 27 Sep 2023 12:37:35 -0700 Subject: [PATCH 08/33] bootstrap, Makefile (bootstrap-clean): Update for versioned environment-... files --- Makefile | 6 +----- bootstrap | 8 ++++---- 2 files changed, 5 insertions(+), 9 deletions(-) diff --git a/Makefile b/Makefile index 11a7b77665a..ae90db4e9e2 100644 --- a/Makefile +++ b/Makefile @@ -158,11 +158,7 @@ bootstrap-clean: rm -rf config/install-sh config/compile config/config.guess config/config.sub config/missing configure build/make/Makefile-auto.in rm -f src/doc/en/installation/*.txt rm -rf src/doc/en/reference/spkg/*.rst - rm -f environment.yml - rm -f src/environment.yml - rm -f src/environment-dev.yml - rm -f environment-optional.yml - rm -f src/environment-optional.yml + for a in environment environment-optional src/environment src/environment-dev src/environment-optional; do rm -f $$a.yml $$a-3.[89].yml $$a-3.1[0-9].yml; done rm -f src/Pipfile rm -f src/pyproject.toml rm -f src/requirements.txt diff --git a/bootstrap b/bootstrap index aa5755cfc63..a139ca2f503 100755 --- a/bootstrap +++ b/bootstrap @@ -216,10 +216,10 @@ save () { build/make/Makefile-auto.in \ src/doc/en/installation/*.txt \ src/doc/en/reference/spkg/*.rst \ - environment.yml \ - src/environment.yml \ - environment-optional.yml \ - src/environment-optional.yml \ + environment-3.[89].yml environment-3.1[0-9].yml \ + src/environment-3.[89].yml src/environment-3.1[0-9].yml \ + environment-optional-3.[89].yml environment-optional-3.1[0-9].yml \ + src/environment-optional-3.[89].yml src/environment-optional-3.1[0-9].yml \ src/Pipfile \ src/pyproject.toml \ src/requirements.txt \ From 997e5fad1ff6b732b0649b80666c62bbc3c7d2be Mon Sep 17 00:00:00 2001 From: Matthias Koeppe Date: Wed, 27 Sep 2023 12:43:59 -0700 Subject: [PATCH 09/33] tox.ini (local-conda-environment): Update for versioned environment-... files --- tox.ini | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/tox.ini b/tox.ini index 39a087c1062..4b54c13fe41 100644 --- a/tox.ini +++ b/tox.ini @@ -518,9 +518,14 @@ setenv = local-conda-miniconda: CONDA_INSTALLER_FILE=Miniconda3-latest-{env:CONDA_OS}-x86_64.sh local-conda: SETENV=. {env:CONDA_PREFIX}/bin/activate base local-conda-environment: CONDA_SAGE_ENVIRONMENT=sage-build - local-conda-environment: CONDA_SAGE_ENVIRONMENT_FILE=environment.yml - local-conda-environment-optional: CONDA_SAGE_ENVIRONMENT_FILE=environment-optional.yml + local-conda-environment: CONDA_SAGE_ENVIRONMENT_DIR= + local-conda-environment-src: CONDA_SAGE_ENVIRONMENT=sage local-conda-environment-src: CONDA_SAGE_ENVIRONMENT_DIR=src/ + local-conda-environment: CONDA_SAGE_ENVIRONMENT_FILE=environment-{env:PYTHON_MAJOR}.{env:PYTHON_MINOR}.yml + local-conda-environment-optional: CONDA_SAGE_ENVIRONMENT_FILE=environment-optional-{env:PYTHON_MAJOR}.{env:PYTHON_MINOR}.yml + local-conda-environment-dev: CONDA_SAGE_ENVIRONMENT=sage-dev + local-conda-environment-dev: CONDA_SAGE_ENVIRONMENT_DIR=src/ + local-conda-environment-dev: CONDA_SAGE_ENVIRONMENT_FILE=environment-dev-{env:PYTHON_MAJOR}.{env:PYTHON_MINOR}.yml local-conda-environment: SETENV_CONFIGURE=( {env:CONDA_PREFIX}/bin/conda env create -n {env:CONDA_SAGE_ENVIRONMENT} --file {env:CONDA_SAGE_ENVIRONMENT_DIR:}{env:CONDA_SAGE_ENVIRONMENT_FILE} || {env:CONDA_PREFIX}/bin/conda env update -n {env:CONDA_SAGE_ENVIRONMENT} --file {env:CONDA_SAGE_ENVIRONMENT_DIR:}{env:CONDA_SAGE_ENVIRONMENT_FILE} ) && . {env:CONDA_PREFIX}/bin/activate {env:CONDA_SAGE_ENVIRONMENT} # # Configuration factors From a21f5381edb6b3a0bf404b7774f7dc98ef7336ae Mon Sep 17 00:00:00 2001 From: Matthias Koeppe Date: Wed, 27 Sep 2023 13:17:26 -0700 Subject: [PATCH 10/33] .github/workflows/ci-conda.yml: Update for versioned environment*.yml --- .github/workflows/ci-conda.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-conda.yml b/.github/workflows/ci-conda.yml index 9695dc7ef9a..2ab79de07a4 100644 --- a/.github/workflows/ci-conda.yml +++ b/.github/workflows/ci-conda.yml @@ -77,7 +77,7 @@ jobs: with: path: ~/conda_pkgs_dir key: - ${{ runner.os }}-conda-${{ hashFiles('src/environment.yml') }} + ${{ runner.os }}-conda-${{ hashFiles('src/environment-3.11.yml') }} - name: Setup Conda uses: conda-incubator/setup-miniconda@v2 @@ -87,7 +87,7 @@ jobs: channels: conda-forge,defaults channel-priority: true activate-environment: sage-build - environment-file: src/${{ matrix.conda-env }}.yml + environment-file: src/${{ matrix.conda-env }}-${{ matrix.python }}.yml - name: Print Conda environment shell: bash -l {0} From 1366c83146f5f0499fcf1118387db875951aeb4e Mon Sep 17 00:00:00 2001 From: Matthias Koeppe Date: Tue, 3 Oct 2023 15:47:29 -0700 Subject: [PATCH 11/33] .github/workflows/ci-conda.yml: Fix environment name --- .github/workflows/ci-conda.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci-conda.yml b/.github/workflows/ci-conda.yml index 2ab79de07a4..1b5bbd4dc44 100644 --- a/.github/workflows/ci-conda.yml +++ b/.github/workflows/ci-conda.yml @@ -86,7 +86,7 @@ jobs: mamba-version: "*" channels: conda-forge,defaults channel-priority: true - activate-environment: sage-build + activate-environment: sage environment-file: src/${{ matrix.conda-env }}-${{ matrix.python }}.yml - name: Print Conda environment From b6458d3d4af3351fc8e7a8c5ca791e9e46d21fc9 Mon Sep 17 00:00:00 2001 From: Matthias Koeppe Date: Wed, 27 Sep 2023 14:01:14 -0700 Subject: [PATCH 12/33] tox.ini (conda-environment-{src,dev}), .github/workflows/ci-conda.yml: Use configure --enable-system-site-packages --- .github/workflows/ci-conda.yml | 2 +- tox.ini | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci-conda.yml b/.github/workflows/ci-conda.yml index 1b5bbd4dc44..aaa4feb3595 100644 --- a/.github/workflows/ci-conda.yml +++ b/.github/workflows/ci-conda.yml @@ -101,7 +101,7 @@ jobs: 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 $(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) + ./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::" diff --git a/tox.ini b/tox.ini index 4b54c13fe41..3ecc8b19c02 100644 --- a/tox.ini +++ b/tox.ini @@ -190,6 +190,7 @@ setenv = sitepackages: ENABLE_SYSTEM_SITE_PACKAGES=yes sitepackages: CONFIG_CONFIGURE_ARGS_SITEPACKAGES=--enable-system-site-packages conda-environment: SAGE_PACKAGE_LIST_ARGS=_prereq + conda-environment-{src,dev}: CONFIG_CONFIGURE_ARGS_SITEPACKAGES=--enable-system-site-packages # Whether to add the system packages needed for bootstrapping EXTRA_SAGE_PACKAGES_0=_bootstrap nobootstrap: EXTRA_SAGE_PACKAGES_0= From fdeb0f158e9fdfd02d7a346c7ece32b556ba80c5 Mon Sep 17 00:00:00 2001 From: Matthias Koeppe Date: Wed, 4 Oct 2023 21:24:22 -0700 Subject: [PATCH 13/33] bootstrap-conda: Refactor using sage-get-system-packages --- bootstrap-conda | 90 +++++++++++++++++++++++++++++++++---------------- 1 file changed, 61 insertions(+), 29 deletions(-) diff --git a/bootstrap-conda b/bootstrap-conda index 811dcbf43b0..90d27ab7be7 100755 --- a/bootstrap-conda +++ b/bootstrap-conda @@ -11,45 +11,75 @@ STRIP_COMMENTS="sed s/#.*//;" shopt -s extglob DEVELOP_SPKG_PATTERN="@(_develop$(for a in $(head -n 1 build/pkgs/_develop/dependencies); do echo -n "|"$a; done))" -BOOTSTRAP_PACKAGES=$(echo $(${STRIP_COMMENTS} build/pkgs/_bootstrap/distros/conda.txt)) -SYSTEM_PACKAGES= -OPTIONAL_SYSTEM_PACKAGES= -SAGELIB_SYSTEM_PACKAGES= -SAGELIB_OPTIONAL_SYSTEM_PACKAGES= -DEVELOP_SYSTEM_PACKAGES= +BOOTSTRAP_PACKAGES=_bootstrap +PACKAGES= +OPTIONAL_PACKAGES= +SAGELIB_PACKAGES= +SAGELIB_OPTIONAL_PACKAGES= +DEVELOP_PACKAGES= + for PKG_BASE in $(sage-package list --has-file distros/conda.txt --exclude _sagemath); do PKG_SCRIPTS=build/pkgs/$PKG_BASE SYSTEM_PACKAGES_FILE=$PKG_SCRIPTS/distros/conda.txt PKG_TYPE=$(cat $PKG_SCRIPTS/type) PKG_SYSTEM_PACKAGES=$(echo $(${STRIP_COMMENTS} $SYSTEM_PACKAGES_FILE)) - if [ -n "PKG_SYSTEM_PACKAGES" ]; then + if [ -n "$PKG_SYSTEM_PACKAGES" ]; then if [ -f $PKG_SCRIPTS/spkg-configure.m4 ]; then + if grep -q SAGE_PYTHON_PACKAGE_CHECK $PKG_SCRIPTS/spkg-configure.m4; then + # Python package that would need --enable-system-site-packages to be used + # with the Sage distribution, but we do not recommend that for conda. + PKG_SAGELIB_ONLY=yes + else + PKG_SAGELIB_ONLY=no + fi + else + # No spkg-configure, so the Sage distribution is not able to make use of this package. + PKG_SAGELIB_ONLY=yes + fi + [ -n "$BOOTSTRAP_VERBOSE" ] && echo "$PKG_BASE:$PKG_TYPE:$PKG_SAGELIB_ONLY" + if [ $PKG_SAGELIB_ONLY = no ]; then case "$PKG_BASE:$PKG_TYPE" in *:standard) - SYSTEM_PACKAGES+=" $PKG_SYSTEM_PACKAGES" + PACKAGES+=" $PKG_BASE" ;; $DEVELOP_SPKG_PATTERN:*) - DEVELOP_SYSTEM_PACKAGES+=" $PKG_SYSTEM_PACKAGES" + DEVELOP_PACKAGES+=" $PKG_BASE" ;; *) - OPTIONAL_SYSTEM_PACKAGES+=" $PKG_SYSTEM_PACKAGES" + OPTIONAL_PACKAGES+=" $PKG_BASE" ;; esac else case "$PKG_BASE:$PKG_TYPE" in *:standard) - SAGELIB_SYSTEM_PACKAGES+=" $PKG_SYSTEM_PACKAGES" + SAGELIB_PACKAGES+=" $PKG_BASE" ;; $DEVELOP_SPKG_PATTERN:*) - DEVELOP_SYSTEM_PACKAGES+=" $PKG_SYSTEM_PACKAGES" + DEVELOP_PACKAGES+=" $PKG_BASE" ;; *) - SAGELIB_OPTIONAL_SYSTEM_PACKAGES+=" $PKG_SYSTEM_PACKAGES" + SAGELIB_OPTIONAL_PACKAGES+=" $PKG_BASE" ;; esac fi fi done +unset PKG_SYSTEM_PACKAGES + +[ -n "$BOOTSTRAP_VERBOSE" ] && echo "## Collected:" && set | grep PACKAGES= + +# Translate to system packages +export ENABLE_SYSTEM_SITE_PACKAGES=yes # Disable filtering in sage-get-system-packages +SYSTEM_PACKAGES=$(sage-get-system-packages conda $PACKAGES) +BOOTSTRAP_SYSTEM_PACKAGES=$(sage-get-system-packages conda $BOOTSTRAP_PACKAGES) +OPTIONAL_SYSTEM_PACKAGES=$(sage-get-system-packages conda $OPTIONAL_PACKAGES) +SAGELIB_SYSTEM_PACKAGES=$(sage-get-system-packages conda $SAGELIB_PACKAGES) +SAGELIB_OPTIONAL_SYSTEM_PACKAGES=$(sage-get-system-packages conda $SAGELIB_OPTIONAL_PACKAGES) +DEVELOP_SYSTEM_PACKAGES=$(sage-get-system-packages conda $DEVELOP_PACKAGES) +unset ENABLE_SYSTEM_SITE_PACKAGES + +[ -n "$BOOTSTRAP_VERBOSE" ] && echo "## Translated to system:" && set | grep SYSTEM_PACKAGES= + echo >&2 $0:$LINENO: generate conda environment files for python_version in 3.9 3.10 3.11; do ( @@ -63,7 +93,7 @@ for python_version in 3.9 3.10 3.11; do echo " - $pkg" done echo " # Packages needed for ./bootstrap" - for pkg in $BOOTSTRAP_PACKAGES; do + for pkg in $BOOTSTRAP_SYSTEM_PACKAGES; do echo " - $pkg" done ) > environment-$python_version.yml @@ -84,23 +114,25 @@ for python_version in 3.9 3.10 3.11; do ) > environment-optional-$python_version.yml ( - ( - sed 's/name: sage/name: sage-dev/' src/environment-$python_version.yml - echo " # Additional dev tools" - for pkg in $DEVELOP_SYSTEM_PACKAGES; do - echo " - $pkg" - done - ) >&4 - ( - cat src/environment-$python_version.yml - echo " # optional packages" - for pkg in $OPTIONAL_SYSTEM_PACKAGES $SAGELIB_OPTIONAL_SYSTEM_PACKAGES; do - echo " - $pkg" - done - ) >&5 + sed 's/name: sage/name: sage-dev/' src/environment-$python_version.yml + echo " # Additional dev tools" + for pkg in $DEVELOP_SYSTEM_PACKAGES; do + echo " - $pkg" + done + ) > src/environment-dev-$python_version.yml + + ( + cat src/environment-$python_version.yml + echo " # optional packages" + for pkg in $OPTIONAL_SYSTEM_PACKAGES $SAGELIB_OPTIONAL_SYSTEM_PACKAGES; do + echo " - $pkg" + done + ) > src/environment-optional-$python_version.yml + + ( echo >&4 " - pip:" echo >&5 " - pip:" - for PKG_BASE in $((sage-package list :standard: :optional: --has-file requirements.txt --no-file distros/conda.txt --no-file src; sage-package list :standard: :optional: --has-file install-requires.txt --no-file requirements.txt --no-file distros/conda.txt --no-file src) | sort); do + for PKG_BASE in $(sage-package list :standard: :optional: --has-file requirements.txt --no-file distros/conda.txt --no-file src; sage-package list :standard: :optional: --has-file install-requires.txt --no-file requirements.txt --no-file distros/conda.txt --no-file src); do PKG_SCRIPTS=build/pkgs/$PKG_BASE SYSTEM_PACKAGES_FILE=$PKG_SCRIPTS/requirements.txt if [ ! -f $SYSTEM_PACKAGES_FILE ]; then From df35c92fca9f4aef067e7f085be5badd71fbc4f5 Mon Sep 17 00:00:00 2001 From: Tobias Diez Date: Mon, 9 Oct 2023 05:24:57 +0000 Subject: [PATCH 14/33] update lock files --- .devcontainer/devcontainer.json | 2 +- .github/workflows/conda-lock-update.ps1 | 32 ++ .vscode/settings.json | 3 +- bootstrap-conda | 3 +- build/pkgs/_prereq/distros/conda.txt | 15 +- build/pkgs/patchelf/distros/conda.txt | 3 +- environment-3.10-linux.yml | 183 ++++------ environment-3.10-macos.yml | 164 ++++----- environment-3.11-linux.yml | 183 ++++------ environment-3.11-macos.yml | 164 ++++----- environment-3.9-linux.yml | 183 ++++------ environment-3.9-macos.yml | 164 ++++----- src/doc/en/installation/conda.rst | 7 + src/environment-3.10-linux.yml | 444 +++++++++++----------- src/environment-3.10-macos.yml | 371 +++++++++---------- src/environment-3.11-macos.yml | 371 +++++++++---------- src/environment-3.9-linux.yml | 467 ++++++++++++------------ src/environment-3.9-macos.yml | 373 +++++++++---------- 18 files changed, 1495 insertions(+), 1637 deletions(-) create mode 100755 .github/workflows/conda-lock-update.ps1 diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 91c31923f2e..c9b3aeb71a6 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -8,7 +8,7 @@ "remoteUser": "vscode", // Setup conda environment - "onCreateCommand": ".devcontainer/onCreate-conda.sh", + "onCreateCommand": ".devcontainer/onCreate-conda.sh || true", // Install additional features. "features": { diff --git a/.github/workflows/conda-lock-update.ps1 b/.github/workflows/conda-lock-update.ps1 new file mode 100755 index 00000000000..9b2f1a3a4ac --- /dev/null +++ b/.github/workflows/conda-lock-update.ps1 @@ -0,0 +1,32 @@ +#!/usr/bin/env pwsh + +$scriptDir = Split-Path -Parent $MyInvocation.MyCommand.Path +$rootDir = Join-Path -Path $scriptDir -ChildPath ..\..\ + +& "$rootDir/bootstrap-conda" + +$platforms = @{ + "linux-64" = "linux" + "osx-64" = "macos" +} +$pythons = "3.9", "3.10", "3.11" +$tags = "", "-dev" +$sources = "", "src" + +foreach ($platform in $platforms.GetEnumerator()) { + foreach ($python in $pythons) { + foreach ($tag in $tags) { + foreach ($src in $sources) { + $envFile = Join-Path -Path $rootDir -ChildPath "$src\environment$tag-$python.yml" + $lockFile = Join-Path -Path $rootDir -ChildPath "$src\environment$tag-$python-$($platform.Value)" + + if (-not (Test-Path $envFile)) { + continue + } + + echo "Updating lock file for $envFile at $lockFile" + & "conda-lock" --channel conda-forge --kind env --platform $platform.Key --file $envFile --lockfile $lockFile --filename-template $lockFile + } + } + } +} diff --git a/.vscode/settings.json b/.vscode/settings.json index b3079a7c4ee..fc6789fe0e6 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -34,5 +34,6 @@ "sagemath", "Cython" ], - "editor.formatOnType": true + "editor.formatOnType": true, + "esbonio.sphinx.confDir": "" } diff --git a/bootstrap-conda b/bootstrap-conda index 90d27ab7be7..5cdc74fcadd 100755 --- a/bootstrap-conda +++ b/bootstrap-conda @@ -152,5 +152,6 @@ for python_version in 3.9 3.10 3.11; do done fi done - ) 4>> src/environment-dev-$python_version.yml 5>> src/environment-optional-$python_version.yml + #) 4>> src/environment-dev-$python_version.yml 5>> src/environment-optional-$python_version.yml + ) 4>> /dev/null 5>> src/environment-optional-$python_version.yml done diff --git a/build/pkgs/_prereq/distros/conda.txt b/build/pkgs/_prereq/distros/conda.txt index d76388ce7bb..509e6363141 100644 --- a/build/pkgs/_prereq/distros/conda.txt +++ b/build/pkgs/_prereq/distros/conda.txt @@ -1,7 +1,8 @@ -compilers -make -m4 -perl -python -tar -bc +# Not needed on conda +#compilers +#make +#m4 +#perl +#python +#tar +#bc diff --git a/build/pkgs/patchelf/distros/conda.txt b/build/pkgs/patchelf/distros/conda.txt index fca4680084f..53d323f7180 100644 --- a/build/pkgs/patchelf/distros/conda.txt +++ b/build/pkgs/patchelf/distros/conda.txt @@ -1 +1,2 @@ -patchelf +# Not available on macos +# patchelf diff --git a/environment-3.10-linux.yml b/environment-3.10-linux.yml index a4e0f79b00d..dae9d8ed5f7 100644 --- a/environment-3.10-linux.yml +++ b/environment-3.10-linux.yml @@ -1,12 +1,11 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: 3e531235a513060f63b991c223aa35c0cb0c16aef417e93c3df677572197bc24 +# input_hash: 722f5cecf921eb12ba9c645f0b616fed4ffaff10b7e29c286b3a70f8df40a036 channels: - conda-forge dependencies: - _libgcc_mutex=0.1=conda_forge - - _r-mutex=1.0.1=anacondar_1 - ca-certificates=2023.7.22=hbcca054_0 - font-ttf-dejavu-sans-mono=2.37=hab24e00_0 - font-ttf-inconsolata=3.000=h77eed37_0 @@ -14,39 +13,34 @@ dependencies: - font-ttf-ubuntu=0.83=hab24e00_0 - kernel-headers_linux-64=2.6.32=he073ed8_16 - ld_impl_linux-64=2.40=h41732ed_0 - - libgcc-devel_linux-64=12.3.0=h8bca6fd_0 - - libgfortran5=13.1.0=h15d22d2_0 - - libstdcxx-devel_linux-64=12.3.0=h8bca6fd_0 - - libstdcxx-ng=13.1.0=hfd8a6a1_0 + - libboost-headers=1.82.0=ha770c72_2 + - libgcc-devel_linux-64=12.3.0=h8bca6fd_2 + - libstdcxx-ng=13.2.0=h7e041cc_2 + - mathjax=3.2.2=ha770c72_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 - - python_abi=3.11=3_cp311 + - python_abi=3.10=4_cp310 - tzdata=2023c=h71feb2d_0 - fonts-conda-forge=1=0 - - libgfortran-ng=13.1.0=h69a702a_0 - - libgomp=13.1.0=he5830b7_0 + - libgomp=13.2.0=h807b86a_2 - pari-seadata=0.0.20090618=0 - sysroot_linux-64=2.12=he073ed8_16 - binutils_impl_linux-64=2.40=hf600244_0 - fonts-conda-ecosystem=1=0 - binutils=2.40=hdd6e379_0 - - binutils_linux-64=2.40=hbdbef99_1 + - binutils_linux-64=2.40=hbdbef99_2 - _openmp_mutex=4.5=2_kmp_llvm - - libgcc-ng=13.1.0=he5830b7_0 - - bc=1.07.1=h7f98852_0 + - libgcc-ng=13.2.0=h807b86a_2 - bdw-gc=8.0.6=h4bd325d_0 - bzip2=1.0.8=h7f98852_4 - c-ares=1.19.1=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.2.1=h58526e2_0 - - graphite2=1.3.13=h58526e2_1001 - icu=72.1=hcb278e6_0 - keyutils=1.6.1=h166bdaf_0 - lerc=4.0.0=h27087fc_0 @@ -56,171 +50,134 @@ dependencies: - libev=4.33=h516909a_1 - libexpat=2.5.0=hcb278e6_1 - libffi=3.4.2=h7f98852_5 + - libgfortran5=13.2.0=ha4646dd_2 - libiconv=1.17=h166bdaf_0 - - libjpeg-turbo=2.1.5.1=h0b41bf4_0 - - libnsl=2.0.0=h7f98852_0 - - libopenblas=0.3.23=pthreads_h80387f5_0 - - libsanitizer=12.3.0=h0f45ef3_0 + - libjpeg-turbo=2.1.5.1=hd590300_1 + - libnsl=2.0.0=hd590300_1 + - libsanitizer=12.3.0=h0f45ef3_2 - libsodium=1.0.18=h36c2ea0_1 - libtool=2.4.7=h27087fc_0 - libuuid=2.38.1=h0b41bf4_0 - - libuv=1.44.2=h166bdaf_0 + - libuv=1.46.0=hd590300_0 - libwebp-base=1.3.1=hd590300_0 - libzlib=1.2.13=hd590300_5 - lrcalc=2.1=h27087fc_5 - m4=1.4.18=h516909a_1001 - - make=4.3=hd18ef5c_1 - - metis=5.1.1=h59595ed_0 + - metis=5.1.0=h59595ed_1007 - nauty=2.7.2=h7f98852_0 - ncurses=6.4=hcb278e6_0 - ninja=1.11.1=h924138e_0 - - openssl=3.1.1=hd590300_1 + - openssl=3.1.3=hd590300_0 - palp=2.20=h36c2ea0_0 - patch=2.7.6=h7f98852_1002 - - pixman=0.40.0=h36c2ea0_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 - - qd=2.3.22=h2cc385e_1004 - qhull=2020.2=h4bd325d_2 - - rhash=1.4.3=h166bdaf_0 - - sed=4.8=he412f7d_0 + - rhash=1.4.4=hd590300_0 - symmetrica=3.0.1=hcb278e6_0 - - xorg-kbproto=1.0.7=h7f98852_1002 - - xorg-libice=1.0.10=h7f98852_0 - - xorg-libxau=1.0.11=hd590300_0 - - xorg-libxdmcp=1.1.3=h7f98852_0 - - xorg-renderproto=0.11.1=h7f98852_1002 - - xorg-xextproto=7.3.0=h0b41bf4_1003 - - xorg-xproto=7.0.31=h7f98852_1007 + - tbb=2021.7.0=h924138e_0 - xz=5.2.6=h166bdaf_0 - 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_0 + - gcc_impl_linux-64=12.3.0=he2b93b0_2 - givaro=4.1.1=h192cbe9_1 - glpk=5.0=h445213a_0 - - libblas=3.9.0=17_linux64_openblas - libedit=3.1.20191231=he28a2e2_2 + - libgfortran-ng=13.2.0=h69a702a_2 - libhomfly=1.02r6=h36c2ea0_0 - libnghttp2=1.52.0=h61bc06f_0 - libpng=1.6.39=h753d276_0 - - libsqlite=3.42.0=h2797004_0 + - libsqlite=3.43.0=h2797004_0 - libssh2=1.11.0=h0841786_0 - - libxcb=1.15=h0b41bf4_0 - libxml2=2.10.4=hfdac1af_0 - mpfr=4.2.0=hb012696_0 - ntl=11.4.3=hef3c4d3_1 - - openblas=0.3.23=pthreads_h855a84d_0 - - pcre2=10.40=hc3806b6_0 - perl=5.32.1=4_hd590300_perl5 - primecount=7.9=hcb278e6_0 - readline=8.2=h8228510_1 - - tar=1.34=hb2e2bae_1 - - tk=8.6.12=h27826a3_0 - - xorg-libsm=1.2.3=hd9c2040_1000 + - tk=8.6.13=h2797004_0 - zeromq=4.3.4=h9c3ff4c_1 - zlib=1.2.13=hd590300_5 - - zstd=1.5.2=hfc55251_7 + - zstd=1.5.5=hfc55251_0 - autoconf=2.71=pl5321h2b4cb7a_1 - - boost-cpp=1.82.0=he19a28c_1 - - bwidget=1.9.14=ha770c72_1 - ecl=21.2.1=h9d73b02_2 - - fplll=5.4.4=h8780c30_0 - - freetype=2.12.1=hca18f0e_1 - - gcc=12.3.0=h8d2909c_1 - - gcc_linux-64=12.3.0=h76fc315_1 + - freetype=2.12.1=h267a509_2 + - 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_0 - - gxx_impl_linux-64=12.3.0=he2b93b0_0 - - krb5=1.20.1=h81ceb04_0 - - libcblas=3.9.0=17_linux64_openblas + - gfortran_impl_linux-64=12.3.0=hfcedea8_2 + - krb5=1.21.2=h659d440_0 + - libboost=1.82.0=h1bacd13_2 - libflint=2.9.0=h2f819a4_ntl_100 - - libglib=2.76.4=hebfc3b9_0 - - libhwloc=2.9.1=hd6dc26d_0 - - liblapack=3.9.0=17_linux64_openblas - - libtiff=4.5.1=h8b53f26_0 - - llvm-openmp=16.0.6=h4dfa4b3_0 + - libopenblas=0.3.24=pthreads_h413a1c8_0 + - libtiff=4.5.1=h8b53f26_1 + - llvm-openmp=17.0.2=h4dfa4b3_0 - m4ri=20140914=h7ca028e_1005 - mpc=1.3.1=hfe3b2da_0 - mpfi=1.5.4=h9f54685_1001 - pari=2.15.4=h4d4ae9b_2_pthread - ppl=1.2=h6ec01c2_1006 - - python=3.11.4=hab00c5b_0_cpython - - sqlite=3.42.0=h2c6b66d_0 + - python=3.10.12=hd12c33a_0_cpython + - qd=2.3.22=h2cc385e_1004 + - sqlite=3.43.0=h2c6b66d_0 - tachyon=0.99b6=0 - texinfo=7.0=pl5321h0f457ee_0 - - tktable=2.10=hb7b940f_3 - - xorg-libx11=1.8.6=h8ee46fc_0 - appdirs=1.4.4=pyh9f0ad1d_0 - arb=2.23.0=h44d021b_0 - - arpack=3.7.0=hdefa2d7_2 - automake=1.16.5=pl5321ha770c72_0 - c-compiler=1.6.0=hd590300_0 - cachetools=5.3.1=pyhd8ed1ab_0 - - chardet=5.1.0=py311h38be061_0 + - chardet=5.2.0=py310hff52083_1 - colorama=0.4.6=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - eclib=20230424=hdef1efb_0 - - fflas-ffpack=2.4.3=h912ac81_2 - - filelock=3.12.2=pyhd8ed1ab_0 + - filelock=3.12.4=pyhd8ed1ab_0 - fontconfig=2.14.2=h14ed4e7_0 - - gfortran=12.3.0=h499e0f7_1 - - gfortran_linux-64=12.3.0=h7fe76b4_1 - - gsl=2.7=he838d99_0 - - gxx=12.3.0=h8d2909c_1 - - gxx_linux-64=12.3.0=h8a814eb_1 - - iml=1.0.5=hd75c201_1003 + - fplll=5.4.4=h8780c30_0 + - gfortran=12.3.0=h499e0f7_2 + - gfortran_linux-64=12.3.0=h7fe76b4_2 - lcalc=2.0.5=h6a8a7c6_1 - - libbrial=1.2.12=h138cd66_0 - - libcurl=8.1.2=h409715c_0 - - liblapacke=3.9.0=17_linux64_openblas + - libblas=3.9.0=18_linux64_openblas + - libboost-devel=1.82.0=h00ab1b0_2 + - libbrial=1.2.12=h3155cbd_1 + - libcurl=8.3.0=hca28451_0 - libwebp=1.3.1=hbf2b3c1_0 - m4rie=20150908=h7ca028e_1001 - - markupsafe=2.1.3=py311h459d7ec_0 - maxima=5.45.0=h9d73b02_3 - - packaging=23.1=pyhd8ed1ab_0 - - pluggy=1.2.0=pyhd8ed1ab_0 - - pycparser=2.21=pyhd8ed1ab_0 - - pytz=2023.3=pyhd8ed1ab_0 - - simplegeneric=0.8.1=py_1 + - openblas=0.3.24=pthreads_h7a3da1a_0 + - packaging=23.2=pyhd8ed1ab_0 + - pluggy=1.3.0=pyhd8ed1ab_0 - singular=4.2.1.p3=h1ea75ed_2 - sympow=2.023.6=hc6ab17c_3 - - tbb=2021.9.0=hf52228f_0 - - toml=0.10.2=pyhd8ed1ab_0 - tomli=2.0.1=pyhd8ed1ab_0 - - typing_extensions=4.7.1=pyha770c72_0 - - tzlocal=5.0.1=py311h38be061_0 - - xorg-libxext=1.3.4=h0b41bf4_2 - - xorg-libxrender=0.9.11=hd590300_0 - - xorg-libxt=1.3.0=hd590300_0 - - zipp=3.16.2=pyhd8ed1ab_0 - - blas-devel=3.9.0=17_linux64_openblas - - brial=1.2.12=pyha3edaa6_0 - - cairo=1.16.0=hbbf8b49_1016 - - cffi=1.15.1=py311h409f033_3 - - cmake=3.26.4=hcfe8598_0 - - curl=8.1.2=h409715c_0 - - cxx-compiler=1.6.0=h00ab1b0_0 + - typing_extensions=4.8.0=pyha770c72_0 + - zipp=3.17.0=pyhd8ed1ab_0 + - boost-cpp=1.82.0=h789c474_2 + - brial=1.2.12=pyh694c41f_1 + - cmake=3.27.6=hcfe8598_0 + - curl=8.3.0=hca28451_0 - fortran-compiler=1.6.0=heb67821_0 - - giac=1.9.0.21=h673759e_1 - importlib-metadata=6.8.0=pyha770c72_0 - - jinja2=3.1.2=pyhd8ed1ab_1 + - libcblas=3.9.0=18_linux64_openblas - libgd=2.3.3=hfa28ad5_6 - - linbox=1.6.3=h9d78c56_7 - - pyproject-api=1.5.3=pyhd8ed1ab_0 + - liblapack=3.9.0=18_linux64_openblas + - pyproject-api=1.6.1=pyhd8ed1ab_0 + - typing-extensions=4.8.0=hd8ed1ab_0 + - arpack=3.7.0=hdefa2d7_2 + - fflas-ffpack=2.4.3=h912ac81_2 + - gsl=2.7=he838d99_0 + - iml=1.0.5=hd75c201_1003 + - importlib_metadata=6.8.0=hd8ed1ab_0 + - liblapacke=3.9.0=18_linux64_openblas + - platformdirs=3.11.0=pyhd8ed1ab_0 - suitesparse=5.10.1=h9e50725_1 - - typing-extensions=4.7.1=hd8ed1ab_0 - - blas=2.117=openblas - - compilers=1.6.0=ha770c72_0 - - harfbuzz=7.3.0=hdb3a94d_0 + - blas-devel=3.9.0=18_linux64_openblas + - giac=1.9.0.21=h673759e_1 - igraph=0.9.10=ha1f048c_1 - - importlib_metadata=6.8.0=hd8ed1ab_0 - - platformdirs=3.9.1=pyhd8ed1ab_0 - - pango=1.50.14=heaa33ce_1 + - linbox=1.6.3=h9d78c56_7 + - virtualenv=20.24.4=pyhd8ed1ab_0 + - blas=2.118=openblas - rw=0.9=h7f98852_0 - - virtualenv=20.24.1=pyhd8ed1ab_0 - - r-base=4.3.0=h0fc540b_0 - - tox=4.6.4=pyhd8ed1ab_0 - - rpy2=3.5.11=py311r43h1f0f07a_2 + - tox=4.11.3=pyhd8ed1ab_0 diff --git a/environment-3.10-macos.yml b/environment-3.10-macos.yml index 87cdcdc9a17..204f8440e2d 100644 --- a/environment-3.10-macos.yml +++ b/environment-3.10-macos.yml @@ -1,12 +1,10 @@ # Generated by conda-lock. # platform: osx-64 -# input_hash: 93b5ca84f839c4b1632c0eb98e3f5baa34ea1e607c329e9f4863fd87ae507dbe +# input_hash: ad1863c4c234387e342663b8a7b1b3b9d462975583ba7826c37c0c8ff03598a5 channels: - conda-forge dependencies: - - _r-mutex=1.0.1=anacondar_1 - - bc=1.07.1=h0d85af4_0 - bzip2=1.0.8=h0d85af4_4 - c-ares=1.19.1=h0dc2134_0 - ca-certificates=2023.7.22=h8857fd0_0 @@ -15,27 +13,27 @@ dependencies: - font-ttf-inconsolata=3.000=h77eed37_0 - font-ttf-source-code-pro=2.038=h77eed37_0 - font-ttf-ubuntu=0.83=hab24e00_0 - - fribidi=1.0.10=hbcb3906_0 - giflib=5.2.1=hb7f2c08_3 - icu=72.1=h7336db1_0 + - jpeg=9e=hb7f2c08_3 - libatomic_ops=7.6.14=hb7f2c08_0 + - libboost-headers=1.82.0=h694c41f_2 - libcxx=16.0.6=hd57cbcb_0 - - libdeflate=1.18=hac1461d_0 + - libdeflate=1.17=hac1461d_0 - libev=4.33=haf1e3a3_1 - libexpat=2.5.0=hf0c8a7f_1 - libffi=3.4.2=h0d85af4_5 - - libgfortran-devel_osx-64=12.2.0=hf0fd499_32 + - libgfortran-devel_osx-64=12.3.0=h0b6f5ec_1 - libiconv=1.17=hac89ed1_0 - - libjpeg-turbo=2.1.5.1=hb7f2c08_0 - libsodium=1.0.18=hbcb3906_1 - libtool=2.4.7=hf0c8a7f_0 - - libuv=1.44.2=hac89ed1_0 - - libwebp-base=1.3.1=h0dc2134_0 + - libuv=1.46.0=h0c2f820_0 + - libwebp-base=1.2.4=h775f41a_0 - libzlib=1.2.13=h8a1eda9_5 - - llvm-openmp=16.0.6=hff08bdf_0 + - llvm-openmp=17.0.2=hff08bdf_0 - m4=1.4.18=haf1e3a3_1001 - - make=4.3=h22f3db7_1 - - metis=5.1.1=he965462_0 + - mathjax=3.2.2=h694c41f_0 + - metis=5.1.0=he965462_1007 - nauty=2.7.2=h0d85af4_0 - ncurses=6.4=hf0c8a7f_0 - palp=2.20=hbcb3906_0 @@ -45,10 +43,9 @@ dependencies: - pari-seadata-small=0.0.20090618=0 - patch=2.7.6=hbcf498f_1002 - perl=5.32.1=4_h0dc2134_perl5 - - pixman=0.40.0=hbcb3906_0 - planarity=3.0.0.5=hbcb3906_1002 - - python_abi=3.11=3_cp311 - - rhash=1.4.3=hac89ed1_0 + - python_abi=3.10=4_cp310 + - rhash=1.4.4=h0dc2134_0 - tzdata=2023c=h71feb2d_0 - xz=5.2.6=h775f41a_0 - autoconf=2.71=pl5321hed12c24_1 @@ -59,148 +56,127 @@ dependencies: - gettext=0.21.1=h8a4c099_0 - gf2x=1.3.0=hb2a7efb_2 - gmp=6.2.1=h2e338ed_0 - - graphite2=1.3.13=h2e338ed_1001 - isl=0.25=hb486fe8_0 - lerc=4.0.0=hb486fe8_0 - libbraiding=1.1=h2e338ed_0 - libedit=3.1.20191231=h0678c8f_2 - - libgfortran5=12.3.0=hbd3c1fe_1 + - libgfortran5=13.2.0=h2873a65_1 - libpng=1.6.39=ha978bb4_0 - - libsqlite=3.42.0=h58db7d2_0 + - libsqlite=3.43.0=h58db7d2_0 - libxml2=2.10.4=h554bb67_0 - lrcalc=2.1=hf0c8a7f_5 - ninja=1.11.1=hb8565cd_0 - - openssl=3.1.1=h8a1eda9_1 + - openssl=3.1.3=h8a1eda9_0 - pari-seadata=0.0.20090618=0 - - pcre2=10.40=h1c4e4bc_0 - pkg-config=0.29.2=ha3d46e9_1008 - primesieve=11.0=hf0c8a7f_0 - qhull=2020.2=h940c156_2 - readline=8.2=h9e318b2_1 - symmetrica=3.0.1=hf0c8a7f_0 - tapi=1100.0.11=h9ce4665_0 - - tar=1.34=hcb2f6ea_1 - - tbb=2021.9.0=hb8565cd_0 + - tbb=2021.10.0=h1c7c39f_1 - texinfo=7.0=pl5321hc47821c_0 - - tk=8.6.12=h5dbffcc_0 + - tk=8.6.13=hef22860_0 - zeromq=4.3.4=he49afe7_1 - zlib=1.2.13=h8a1eda9_5 - - zstd=1.5.2=h829000d_7 + - zstd=1.5.5=h829000d_0 - automake=1.16.5=pl5321h694c41f_0 - - boost-cpp=1.82.0=hd754db5_1 - - bwidget=1.9.14=h694c41f_1 - cddlib=1!0.94m=h0f52abe_0 - ecl=21.2.1=hd029580_2 - ecm=7.0.4=h343d7f2_1002 - fonts-conda-ecosystem=1=0 - - freetype=2.12.1=h3f81eb7_1 + - freetype=2.12.1=h60636b9_2 - givaro=4.1.1=h0a799c6_3 - glpk=5.0=h3cb5acd_0 - - krb5=1.20.1=h049b76e_0 - - libgfortran=5.0.0=12_3_0_h97931a8_1 - - libglib=2.76.4=hc62aa5d_0 + - krb5=1.21.2=hb884880_0 + - libboost=1.82.0=h4d4a22d_2 + - libgfortran=5.0.0=13_2_0_h97931a8_1 - libhomfly=1.02r6=hc929b4f_0 - - libllvm15=15.0.7=h7001e86_1 + - libllvm16=16.0.3=hf646ca0_1 - libnghttp2=1.52.0=he2ab024_0 - libssh2=1.11.0=hd019ec5_0 - - libtiff=4.5.1=hf955e92_0 + - libtiff=4.5.0=hee9004a_2 - m4ri=20140914=h3f75d11_1005 - mpfr=4.2.0=h4f9bd69_0 - ntl=11.4.3=h0ab3c2f_1 - pari=2.15.4=h93f793c_2_pthread - primecount=7.6=ha894c9a_0 - - python=3.11.4=h30d4d87_0_cpython + - python=3.10.12=had23ca6_0_cpython - sigtool=0.1.3=h88f4db0_0 - - sqlite=3.42.0=h2b0dec6_0 - - tachyon=0.99b6=0 - - tktable=2.10=h49f0cf7_3 + - sqlite=3.43.0=h2b0dec6_0 + - tachyon=0.99b6=h2e86ede_1001 - appdirs=1.4.4=pyh9f0ad1d_0 - cachetools=5.3.1=pyhd8ed1ab_0 - - chardet=5.1.0=py311h6eed73b_0 + - chardet=5.2.0=py310h2ec42d9_1 - colorama=0.4.6=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - - filelock=3.12.2=pyhd8ed1ab_0 + - filelock=3.12.4=pyhd8ed1ab_0 - fontconfig=2.14.2=h5bb23bf_0 - gfan=0.6.2=hd793b56_1003 - lcalc=2.0.5=h3a941db_1 - - ld64_osx-64=609=h8ce0179_13 - - libbrial=1.2.12=h8f704d5_0 - - libclang-cpp15=15.0.7=default_hdb78580_2 - - libcurl=8.1.2=hbee3ae8_0 + - ld64_osx-64=609=hbfe4790_13 + - libboost-devel=1.82.0=h1c7c39f_2 + - libbrial=1.2.12=h8d08345_1 + - libclang-cpp16=16.0.3=default_h762fdd7_2 + - libcurl=8.3.0=h5f667d7_0 - libflint=2.9.0=hfd2f71f_ntl_100 - - libopenblas=0.3.23=openmp_h429af6e_0 - - libwebp=1.3.1=hc961f54_0 - - llvm-tools=15.0.7=h7001e86_1 + - libopenblas=0.3.24=openmp_h48a4ad5_0 + - libwebp=1.2.4=h70a068d_1 + - llvm-tools=16.0.3=hf646ca0_1 - m4rie=20150908=h3f75d11_1001 - - markupsafe=2.1.3=py311h2725bcf_0 - maxima=5.45.0=hd029580_3 - mpc=1.3.1=h81bd1dd_0 - mpfi=1.5.4=h52b28e3_1001 - - packaging=23.1=pyhd8ed1ab_0 - - pluggy=1.2.0=pyhd8ed1ab_0 + - packaging=23.2=pyhd8ed1ab_0 + - pluggy=1.3.0=pyhd8ed1ab_0 - ppl=1.2=ha60d53e_1006 - - pycparser=2.21=pyhd8ed1ab_0 - - pytz=2023.3=pyhd8ed1ab_0 - qd=2.3.22=h2beb688_1004 - - simplegeneric=0.8.1=py_1 - sympow=2.023.6=h115ba6a_3 - - toml=0.10.2=pyhd8ed1ab_0 - tomli=2.0.1=pyhd8ed1ab_0 - - typing_extensions=4.7.1=pyha770c72_0 - - tzlocal=5.0.1=py311h6eed73b_0 - - zipp=3.16.2=pyhd8ed1ab_0 + - typing_extensions=4.8.0=pyha770c72_0 + - zipp=3.17.0=pyhd8ed1ab_0 - arb=2.23.0=h905a977_0 - - brial=1.2.12=pyha3edaa6_0 - - cairo=1.16.0=h09dd18c_1016 - - cctools_osx-64=973.0.1=h48a5a9d_13 - - cffi=1.15.1=py311ha86e640_3 - - clang-15=15.0.7=default_hdb78580_2 - - cmake=3.26.4=hf40c264_0 - - curl=8.1.2=hbee3ae8_0 + - boost-cpp=1.82.0=h94d02bd_2 + - brial=1.2.12=pyh694c41f_1 + - cctools_osx-64=973.0.1=h5676edf_13 + - clang-16=16.0.3=default_h762fdd7_2 + - cmake=3.27.6=hf40c264_0 + - curl=8.3.0=h5f667d7_0 - eclib=20230424=hd00e801_0 - fplll=5.4.4=hdfdc905_0 - - gfortran_impl_osx-64=12.2.0=hdfd80ef_32 + - gfortran_impl_osx-64=12.3.0=h54fd467_1 - importlib-metadata=6.8.0=pyha770c72_0 - - jinja2=3.1.2=pyhd8ed1ab_1 - - ld64=609=ha91a046_13 - - libblas=3.9.0=17_osx64_openblas - - libgd=2.3.3=h3d994df_6 - - openblas=0.3.23=openmp_hbefa662_0 - - pyproject-api=1.5.3=pyhd8ed1ab_0 + - ld64=609=ha02d983_13 + - libblas=3.9.0=18_osx64_openblas + - libgd=2.3.3=h8823a56_5 + - openblas=0.3.24=openmp_hd7704e8_0 + - pyproject-api=1.6.1=pyhd8ed1ab_0 - singular=4.2.1.p3=hac851df_2 - - typing-extensions=4.7.1=hd8ed1ab_0 - - cctools=973.0.1=hd9ad811_13 - - clang=15.0.7=h694c41f_2 - - harfbuzz=7.3.0=h413ba03_0 + - typing-extensions=4.8.0=hd8ed1ab_0 + - cctools=973.0.1=h40f6528_13 + - clang=16.0.3=hc177806_2 - importlib_metadata=6.8.0=hd8ed1ab_0 - - libcblas=3.9.0=17_osx64_openblas - - liblapack=3.9.0=17_osx64_openblas - - platformdirs=3.9.1=pyhd8ed1ab_0 + - libcblas=3.9.0=18_osx64_openblas + - liblapack=3.9.0=18_osx64_openblas + - platformdirs=3.11.0=pyhd8ed1ab_0 - arpack=3.7.0=hefb7bc6_2 - - clangxx=15.0.7=default_hdb78580_2 + - clangxx=16.0.3=default_h762fdd7_2 - fflas-ffpack=2.4.3=h026fd7e_2 - gsl=2.7=h93259b0_0 - iml=1.0.5=h64b42ca_1003 - - liblapacke=3.9.0=17_osx64_openblas - - pango=1.50.14=hbce5e75_1 + - liblapacke=3.9.0=18_osx64_openblas - suitesparse=5.10.1=h7aff33d_1 - - virtualenv=20.24.1=pyhd8ed1ab_0 - - blas-devel=3.9.0=17_osx64_openblas - - compiler-rt_osx-64=15.0.7=he1888fc_1 + - virtualenv=20.24.4=pyhd8ed1ab_0 + - blas-devel=3.9.0=18_osx64_openblas + - compiler-rt_osx-64=16.0.3=he1888fc_1 - giac=1.9.0.21=h92f3f65_1 - igraph=0.9.10=h6560ca6_1 - linbox=1.6.3=hdde8d14_7 - - tox=4.6.4=pyhd8ed1ab_0 - - blas=2.117=openblas - - compiler-rt=15.0.7=he1888fc_1 + - tox=4.11.3=pyhd8ed1ab_0 + - blas=2.118=openblas + - compiler-rt=16.0.3=he1888fc_1 - rw=0.9=h0d85af4_0 - - clang_osx-64=15.0.7=h03d6864_3 - - c-compiler=1.6.0=h63c33a9_0 - - clangxx_osx-64=15.0.7=h2133e9c_3 - - gfortran_osx-64=12.2.0=h18f7dce_1 - - cxx-compiler=1.6.0=h1c7c39f_0 - - gfortran=12.2.0=h2c809b3_1 - - r-base=4.3.0=h7a6543b_0 + - clang_osx-64=16.0.3=h51755a5_2 + - gfortran_osx-64=12.3.0=h18f7dce_1 + - gfortran=12.3.0=h2c809b3_1 - fortran-compiler=1.6.0=h932d759_0 - - rpy2=3.5.11=py311r43h4a70a88_2 - - compilers=1.6.0=h694c41f_0 diff --git a/environment-3.11-linux.yml b/environment-3.11-linux.yml index a4e0f79b00d..d156bd5469a 100644 --- a/environment-3.11-linux.yml +++ b/environment-3.11-linux.yml @@ -1,12 +1,11 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: 3e531235a513060f63b991c223aa35c0cb0c16aef417e93c3df677572197bc24 +# input_hash: fc529502a5b958b2cb03ef381b882ec2ecf7eee4b33d67c64f4ffb192391cc63 channels: - conda-forge dependencies: - _libgcc_mutex=0.1=conda_forge - - _r-mutex=1.0.1=anacondar_1 - ca-certificates=2023.7.22=hbcca054_0 - font-ttf-dejavu-sans-mono=2.37=hab24e00_0 - font-ttf-inconsolata=3.000=h77eed37_0 @@ -14,39 +13,34 @@ dependencies: - font-ttf-ubuntu=0.83=hab24e00_0 - kernel-headers_linux-64=2.6.32=he073ed8_16 - ld_impl_linux-64=2.40=h41732ed_0 - - libgcc-devel_linux-64=12.3.0=h8bca6fd_0 - - libgfortran5=13.1.0=h15d22d2_0 - - libstdcxx-devel_linux-64=12.3.0=h8bca6fd_0 - - libstdcxx-ng=13.1.0=hfd8a6a1_0 + - libboost-headers=1.82.0=ha770c72_2 + - libgcc-devel_linux-64=12.3.0=h8bca6fd_2 + - libstdcxx-ng=13.2.0=h7e041cc_2 + - mathjax=3.2.2=ha770c72_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 - - python_abi=3.11=3_cp311 + - python_abi=3.11=4_cp311 - tzdata=2023c=h71feb2d_0 - fonts-conda-forge=1=0 - - libgfortran-ng=13.1.0=h69a702a_0 - - libgomp=13.1.0=he5830b7_0 + - libgomp=13.2.0=h807b86a_2 - pari-seadata=0.0.20090618=0 - sysroot_linux-64=2.12=he073ed8_16 - binutils_impl_linux-64=2.40=hf600244_0 - fonts-conda-ecosystem=1=0 - binutils=2.40=hdd6e379_0 - - binutils_linux-64=2.40=hbdbef99_1 + - binutils_linux-64=2.40=hbdbef99_2 - _openmp_mutex=4.5=2_kmp_llvm - - libgcc-ng=13.1.0=he5830b7_0 - - bc=1.07.1=h7f98852_0 + - libgcc-ng=13.2.0=h807b86a_2 - bdw-gc=8.0.6=h4bd325d_0 - bzip2=1.0.8=h7f98852_4 - c-ares=1.19.1=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.2.1=h58526e2_0 - - graphite2=1.3.13=h58526e2_1001 - icu=72.1=hcb278e6_0 - keyutils=1.6.1=h166bdaf_0 - lerc=4.0.0=h27087fc_0 @@ -56,171 +50,134 @@ dependencies: - libev=4.33=h516909a_1 - libexpat=2.5.0=hcb278e6_1 - libffi=3.4.2=h7f98852_5 + - libgfortran5=13.2.0=ha4646dd_2 - libiconv=1.17=h166bdaf_0 - - libjpeg-turbo=2.1.5.1=h0b41bf4_0 - - libnsl=2.0.0=h7f98852_0 - - libopenblas=0.3.23=pthreads_h80387f5_0 - - libsanitizer=12.3.0=h0f45ef3_0 + - libjpeg-turbo=2.1.5.1=hd590300_1 + - libnsl=2.0.0=hd590300_1 + - libsanitizer=12.3.0=h0f45ef3_2 - libsodium=1.0.18=h36c2ea0_1 - libtool=2.4.7=h27087fc_0 - libuuid=2.38.1=h0b41bf4_0 - - libuv=1.44.2=h166bdaf_0 + - libuv=1.46.0=hd590300_0 - libwebp-base=1.3.1=hd590300_0 - libzlib=1.2.13=hd590300_5 - lrcalc=2.1=h27087fc_5 - m4=1.4.18=h516909a_1001 - - make=4.3=hd18ef5c_1 - - metis=5.1.1=h59595ed_0 + - metis=5.1.0=h59595ed_1007 - nauty=2.7.2=h7f98852_0 - ncurses=6.4=hcb278e6_0 - ninja=1.11.1=h924138e_0 - - openssl=3.1.1=hd590300_1 + - openssl=3.1.3=hd590300_0 - palp=2.20=h36c2ea0_0 - patch=2.7.6=h7f98852_1002 - - pixman=0.40.0=h36c2ea0_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 - - qd=2.3.22=h2cc385e_1004 - qhull=2020.2=h4bd325d_2 - - rhash=1.4.3=h166bdaf_0 - - sed=4.8=he412f7d_0 + - rhash=1.4.4=hd590300_0 - symmetrica=3.0.1=hcb278e6_0 - - xorg-kbproto=1.0.7=h7f98852_1002 - - xorg-libice=1.0.10=h7f98852_0 - - xorg-libxau=1.0.11=hd590300_0 - - xorg-libxdmcp=1.1.3=h7f98852_0 - - xorg-renderproto=0.11.1=h7f98852_1002 - - xorg-xextproto=7.3.0=h0b41bf4_1003 - - xorg-xproto=7.0.31=h7f98852_1007 + - tbb=2021.7.0=h924138e_0 - xz=5.2.6=h166bdaf_0 - 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_0 + - gcc_impl_linux-64=12.3.0=he2b93b0_2 - givaro=4.1.1=h192cbe9_1 - glpk=5.0=h445213a_0 - - libblas=3.9.0=17_linux64_openblas - libedit=3.1.20191231=he28a2e2_2 + - libgfortran-ng=13.2.0=h69a702a_2 - libhomfly=1.02r6=h36c2ea0_0 - libnghttp2=1.52.0=h61bc06f_0 - libpng=1.6.39=h753d276_0 - - libsqlite=3.42.0=h2797004_0 + - libsqlite=3.43.0=h2797004_0 - libssh2=1.11.0=h0841786_0 - - libxcb=1.15=h0b41bf4_0 - libxml2=2.10.4=hfdac1af_0 - mpfr=4.2.0=hb012696_0 - ntl=11.4.3=hef3c4d3_1 - - openblas=0.3.23=pthreads_h855a84d_0 - - pcre2=10.40=hc3806b6_0 - perl=5.32.1=4_hd590300_perl5 - primecount=7.9=hcb278e6_0 - readline=8.2=h8228510_1 - - tar=1.34=hb2e2bae_1 - - tk=8.6.12=h27826a3_0 - - xorg-libsm=1.2.3=hd9c2040_1000 + - tk=8.6.13=h2797004_0 - zeromq=4.3.4=h9c3ff4c_1 - zlib=1.2.13=hd590300_5 - - zstd=1.5.2=hfc55251_7 + - zstd=1.5.5=hfc55251_0 - autoconf=2.71=pl5321h2b4cb7a_1 - - boost-cpp=1.82.0=he19a28c_1 - - bwidget=1.9.14=ha770c72_1 - ecl=21.2.1=h9d73b02_2 - - fplll=5.4.4=h8780c30_0 - - freetype=2.12.1=hca18f0e_1 - - gcc=12.3.0=h8d2909c_1 - - gcc_linux-64=12.3.0=h76fc315_1 + - freetype=2.12.1=h267a509_2 + - 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_0 - - gxx_impl_linux-64=12.3.0=he2b93b0_0 - - krb5=1.20.1=h81ceb04_0 - - libcblas=3.9.0=17_linux64_openblas + - gfortran_impl_linux-64=12.3.0=hfcedea8_2 + - krb5=1.21.2=h659d440_0 + - libboost=1.82.0=h1bacd13_2 - libflint=2.9.0=h2f819a4_ntl_100 - - libglib=2.76.4=hebfc3b9_0 - - libhwloc=2.9.1=hd6dc26d_0 - - liblapack=3.9.0=17_linux64_openblas - - libtiff=4.5.1=h8b53f26_0 - - llvm-openmp=16.0.6=h4dfa4b3_0 + - libopenblas=0.3.24=pthreads_h413a1c8_0 + - libtiff=4.5.1=h8b53f26_1 + - llvm-openmp=17.0.2=h4dfa4b3_0 - m4ri=20140914=h7ca028e_1005 - mpc=1.3.1=hfe3b2da_0 - mpfi=1.5.4=h9f54685_1001 - pari=2.15.4=h4d4ae9b_2_pthread - ppl=1.2=h6ec01c2_1006 - - python=3.11.4=hab00c5b_0_cpython - - sqlite=3.42.0=h2c6b66d_0 + - python=3.11.6=hab00c5b_0_cpython + - qd=2.3.22=h2cc385e_1004 + - sqlite=3.43.0=h2c6b66d_0 - tachyon=0.99b6=0 - texinfo=7.0=pl5321h0f457ee_0 - - tktable=2.10=hb7b940f_3 - - xorg-libx11=1.8.6=h8ee46fc_0 - appdirs=1.4.4=pyh9f0ad1d_0 - arb=2.23.0=h44d021b_0 - - arpack=3.7.0=hdefa2d7_2 - automake=1.16.5=pl5321ha770c72_0 - c-compiler=1.6.0=hd590300_0 - cachetools=5.3.1=pyhd8ed1ab_0 - - chardet=5.1.0=py311h38be061_0 + - chardet=5.2.0=py311h38be061_1 - colorama=0.4.6=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - eclib=20230424=hdef1efb_0 - - fflas-ffpack=2.4.3=h912ac81_2 - - filelock=3.12.2=pyhd8ed1ab_0 + - filelock=3.12.4=pyhd8ed1ab_0 - fontconfig=2.14.2=h14ed4e7_0 - - gfortran=12.3.0=h499e0f7_1 - - gfortran_linux-64=12.3.0=h7fe76b4_1 - - gsl=2.7=he838d99_0 - - gxx=12.3.0=h8d2909c_1 - - gxx_linux-64=12.3.0=h8a814eb_1 - - iml=1.0.5=hd75c201_1003 + - fplll=5.4.4=h8780c30_0 + - gfortran=12.3.0=h499e0f7_2 + - gfortran_linux-64=12.3.0=h7fe76b4_2 - lcalc=2.0.5=h6a8a7c6_1 - - libbrial=1.2.12=h138cd66_0 - - libcurl=8.1.2=h409715c_0 - - liblapacke=3.9.0=17_linux64_openblas + - libblas=3.9.0=18_linux64_openblas + - libboost-devel=1.82.0=h00ab1b0_2 + - libbrial=1.2.12=h3155cbd_1 + - libcurl=8.3.0=hca28451_0 - libwebp=1.3.1=hbf2b3c1_0 - m4rie=20150908=h7ca028e_1001 - - markupsafe=2.1.3=py311h459d7ec_0 - maxima=5.45.0=h9d73b02_3 - - packaging=23.1=pyhd8ed1ab_0 - - pluggy=1.2.0=pyhd8ed1ab_0 - - pycparser=2.21=pyhd8ed1ab_0 - - pytz=2023.3=pyhd8ed1ab_0 - - simplegeneric=0.8.1=py_1 + - openblas=0.3.24=pthreads_h7a3da1a_0 + - packaging=23.2=pyhd8ed1ab_0 + - pluggy=1.3.0=pyhd8ed1ab_0 - singular=4.2.1.p3=h1ea75ed_2 - sympow=2.023.6=hc6ab17c_3 - - tbb=2021.9.0=hf52228f_0 - - toml=0.10.2=pyhd8ed1ab_0 - tomli=2.0.1=pyhd8ed1ab_0 - - typing_extensions=4.7.1=pyha770c72_0 - - tzlocal=5.0.1=py311h38be061_0 - - xorg-libxext=1.3.4=h0b41bf4_2 - - xorg-libxrender=0.9.11=hd590300_0 - - xorg-libxt=1.3.0=hd590300_0 - - zipp=3.16.2=pyhd8ed1ab_0 - - blas-devel=3.9.0=17_linux64_openblas - - brial=1.2.12=pyha3edaa6_0 - - cairo=1.16.0=hbbf8b49_1016 - - cffi=1.15.1=py311h409f033_3 - - cmake=3.26.4=hcfe8598_0 - - curl=8.1.2=h409715c_0 - - cxx-compiler=1.6.0=h00ab1b0_0 + - typing_extensions=4.8.0=pyha770c72_0 + - zipp=3.17.0=pyhd8ed1ab_0 + - boost-cpp=1.82.0=h789c474_2 + - brial=1.2.12=pyh694c41f_1 + - cmake=3.27.6=hcfe8598_0 + - curl=8.3.0=hca28451_0 - fortran-compiler=1.6.0=heb67821_0 - - giac=1.9.0.21=h673759e_1 - importlib-metadata=6.8.0=pyha770c72_0 - - jinja2=3.1.2=pyhd8ed1ab_1 + - libcblas=3.9.0=18_linux64_openblas - libgd=2.3.3=hfa28ad5_6 - - linbox=1.6.3=h9d78c56_7 - - pyproject-api=1.5.3=pyhd8ed1ab_0 + - liblapack=3.9.0=18_linux64_openblas + - pyproject-api=1.6.1=pyhd8ed1ab_0 + - typing-extensions=4.8.0=hd8ed1ab_0 + - arpack=3.7.0=hdefa2d7_2 + - fflas-ffpack=2.4.3=h912ac81_2 + - gsl=2.7=he838d99_0 + - iml=1.0.5=hd75c201_1003 + - importlib_metadata=6.8.0=hd8ed1ab_0 + - liblapacke=3.9.0=18_linux64_openblas + - platformdirs=3.11.0=pyhd8ed1ab_0 - suitesparse=5.10.1=h9e50725_1 - - typing-extensions=4.7.1=hd8ed1ab_0 - - blas=2.117=openblas - - compilers=1.6.0=ha770c72_0 - - harfbuzz=7.3.0=hdb3a94d_0 + - blas-devel=3.9.0=18_linux64_openblas + - giac=1.9.0.21=h673759e_1 - igraph=0.9.10=ha1f048c_1 - - importlib_metadata=6.8.0=hd8ed1ab_0 - - platformdirs=3.9.1=pyhd8ed1ab_0 - - pango=1.50.14=heaa33ce_1 + - linbox=1.6.3=h9d78c56_7 + - virtualenv=20.24.4=pyhd8ed1ab_0 + - blas=2.118=openblas - rw=0.9=h7f98852_0 - - virtualenv=20.24.1=pyhd8ed1ab_0 - - r-base=4.3.0=h0fc540b_0 - - tox=4.6.4=pyhd8ed1ab_0 - - rpy2=3.5.11=py311r43h1f0f07a_2 + - tox=4.11.3=pyhd8ed1ab_0 diff --git a/environment-3.11-macos.yml b/environment-3.11-macos.yml index 87cdcdc9a17..ba7b7d9d292 100644 --- a/environment-3.11-macos.yml +++ b/environment-3.11-macos.yml @@ -1,12 +1,10 @@ # Generated by conda-lock. # platform: osx-64 -# input_hash: 93b5ca84f839c4b1632c0eb98e3f5baa34ea1e607c329e9f4863fd87ae507dbe +# input_hash: 6e980c8c1348c68b8f6ed19f5da964dea4576b3bba4061b3baf4f46f0e4e72d7 channels: - conda-forge dependencies: - - _r-mutex=1.0.1=anacondar_1 - - bc=1.07.1=h0d85af4_0 - bzip2=1.0.8=h0d85af4_4 - c-ares=1.19.1=h0dc2134_0 - ca-certificates=2023.7.22=h8857fd0_0 @@ -15,27 +13,27 @@ dependencies: - font-ttf-inconsolata=3.000=h77eed37_0 - font-ttf-source-code-pro=2.038=h77eed37_0 - font-ttf-ubuntu=0.83=hab24e00_0 - - fribidi=1.0.10=hbcb3906_0 - giflib=5.2.1=hb7f2c08_3 - icu=72.1=h7336db1_0 + - jpeg=9e=hb7f2c08_3 - libatomic_ops=7.6.14=hb7f2c08_0 + - libboost-headers=1.82.0=h694c41f_2 - libcxx=16.0.6=hd57cbcb_0 - - libdeflate=1.18=hac1461d_0 + - libdeflate=1.17=hac1461d_0 - libev=4.33=haf1e3a3_1 - libexpat=2.5.0=hf0c8a7f_1 - libffi=3.4.2=h0d85af4_5 - - libgfortran-devel_osx-64=12.2.0=hf0fd499_32 + - libgfortran-devel_osx-64=12.3.0=h0b6f5ec_1 - libiconv=1.17=hac89ed1_0 - - libjpeg-turbo=2.1.5.1=hb7f2c08_0 - libsodium=1.0.18=hbcb3906_1 - libtool=2.4.7=hf0c8a7f_0 - - libuv=1.44.2=hac89ed1_0 - - libwebp-base=1.3.1=h0dc2134_0 + - libuv=1.46.0=h0c2f820_0 + - libwebp-base=1.2.4=h775f41a_0 - libzlib=1.2.13=h8a1eda9_5 - - llvm-openmp=16.0.6=hff08bdf_0 + - llvm-openmp=17.0.2=hff08bdf_0 - m4=1.4.18=haf1e3a3_1001 - - make=4.3=h22f3db7_1 - - metis=5.1.1=he965462_0 + - mathjax=3.2.2=h694c41f_0 + - metis=5.1.0=he965462_1007 - nauty=2.7.2=h0d85af4_0 - ncurses=6.4=hf0c8a7f_0 - palp=2.20=hbcb3906_0 @@ -45,10 +43,9 @@ dependencies: - pari-seadata-small=0.0.20090618=0 - patch=2.7.6=hbcf498f_1002 - perl=5.32.1=4_h0dc2134_perl5 - - pixman=0.40.0=hbcb3906_0 - planarity=3.0.0.5=hbcb3906_1002 - - python_abi=3.11=3_cp311 - - rhash=1.4.3=hac89ed1_0 + - python_abi=3.11=4_cp311 + - rhash=1.4.4=h0dc2134_0 - tzdata=2023c=h71feb2d_0 - xz=5.2.6=h775f41a_0 - autoconf=2.71=pl5321hed12c24_1 @@ -59,148 +56,127 @@ dependencies: - gettext=0.21.1=h8a4c099_0 - gf2x=1.3.0=hb2a7efb_2 - gmp=6.2.1=h2e338ed_0 - - graphite2=1.3.13=h2e338ed_1001 - isl=0.25=hb486fe8_0 - lerc=4.0.0=hb486fe8_0 - libbraiding=1.1=h2e338ed_0 - libedit=3.1.20191231=h0678c8f_2 - - libgfortran5=12.3.0=hbd3c1fe_1 + - libgfortran5=13.2.0=h2873a65_1 - libpng=1.6.39=ha978bb4_0 - - libsqlite=3.42.0=h58db7d2_0 + - libsqlite=3.43.0=h58db7d2_0 - libxml2=2.10.4=h554bb67_0 - lrcalc=2.1=hf0c8a7f_5 - ninja=1.11.1=hb8565cd_0 - - openssl=3.1.1=h8a1eda9_1 + - openssl=3.1.3=h8a1eda9_0 - pari-seadata=0.0.20090618=0 - - pcre2=10.40=h1c4e4bc_0 - pkg-config=0.29.2=ha3d46e9_1008 - primesieve=11.0=hf0c8a7f_0 - qhull=2020.2=h940c156_2 - readline=8.2=h9e318b2_1 - symmetrica=3.0.1=hf0c8a7f_0 - tapi=1100.0.11=h9ce4665_0 - - tar=1.34=hcb2f6ea_1 - - tbb=2021.9.0=hb8565cd_0 + - tbb=2021.10.0=h1c7c39f_1 - texinfo=7.0=pl5321hc47821c_0 - - tk=8.6.12=h5dbffcc_0 + - tk=8.6.13=hef22860_0 - zeromq=4.3.4=he49afe7_1 - zlib=1.2.13=h8a1eda9_5 - - zstd=1.5.2=h829000d_7 + - zstd=1.5.5=h829000d_0 - automake=1.16.5=pl5321h694c41f_0 - - boost-cpp=1.82.0=hd754db5_1 - - bwidget=1.9.14=h694c41f_1 - cddlib=1!0.94m=h0f52abe_0 - ecl=21.2.1=hd029580_2 - ecm=7.0.4=h343d7f2_1002 - fonts-conda-ecosystem=1=0 - - freetype=2.12.1=h3f81eb7_1 + - freetype=2.12.1=h60636b9_2 - givaro=4.1.1=h0a799c6_3 - glpk=5.0=h3cb5acd_0 - - krb5=1.20.1=h049b76e_0 - - libgfortran=5.0.0=12_3_0_h97931a8_1 - - libglib=2.76.4=hc62aa5d_0 + - krb5=1.21.2=hb884880_0 + - libboost=1.82.0=h4d4a22d_2 + - libgfortran=5.0.0=13_2_0_h97931a8_1 - libhomfly=1.02r6=hc929b4f_0 - - libllvm15=15.0.7=h7001e86_1 + - libllvm16=16.0.3=hf646ca0_1 - libnghttp2=1.52.0=he2ab024_0 - libssh2=1.11.0=hd019ec5_0 - - libtiff=4.5.1=hf955e92_0 + - libtiff=4.5.0=hee9004a_2 - m4ri=20140914=h3f75d11_1005 - mpfr=4.2.0=h4f9bd69_0 - ntl=11.4.3=h0ab3c2f_1 - pari=2.15.4=h93f793c_2_pthread - primecount=7.6=ha894c9a_0 - - python=3.11.4=h30d4d87_0_cpython + - python=3.11.6=h30d4d87_0_cpython - sigtool=0.1.3=h88f4db0_0 - - sqlite=3.42.0=h2b0dec6_0 - - tachyon=0.99b6=0 - - tktable=2.10=h49f0cf7_3 + - sqlite=3.43.0=h2b0dec6_0 + - tachyon=0.99b6=h2e86ede_1001 - appdirs=1.4.4=pyh9f0ad1d_0 - cachetools=5.3.1=pyhd8ed1ab_0 - - chardet=5.1.0=py311h6eed73b_0 + - chardet=5.2.0=py311h6eed73b_1 - colorama=0.4.6=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - - filelock=3.12.2=pyhd8ed1ab_0 + - filelock=3.12.4=pyhd8ed1ab_0 - fontconfig=2.14.2=h5bb23bf_0 - gfan=0.6.2=hd793b56_1003 - lcalc=2.0.5=h3a941db_1 - - ld64_osx-64=609=h8ce0179_13 - - libbrial=1.2.12=h8f704d5_0 - - libclang-cpp15=15.0.7=default_hdb78580_2 - - libcurl=8.1.2=hbee3ae8_0 + - ld64_osx-64=609=hbfe4790_13 + - libboost-devel=1.82.0=h1c7c39f_2 + - libbrial=1.2.12=h8d08345_1 + - libclang-cpp16=16.0.3=default_h762fdd7_2 + - libcurl=8.3.0=h5f667d7_0 - libflint=2.9.0=hfd2f71f_ntl_100 - - libopenblas=0.3.23=openmp_h429af6e_0 - - libwebp=1.3.1=hc961f54_0 - - llvm-tools=15.0.7=h7001e86_1 + - libopenblas=0.3.24=openmp_h48a4ad5_0 + - libwebp=1.2.4=h70a068d_1 + - llvm-tools=16.0.3=hf646ca0_1 - m4rie=20150908=h3f75d11_1001 - - markupsafe=2.1.3=py311h2725bcf_0 - maxima=5.45.0=hd029580_3 - mpc=1.3.1=h81bd1dd_0 - mpfi=1.5.4=h52b28e3_1001 - - packaging=23.1=pyhd8ed1ab_0 - - pluggy=1.2.0=pyhd8ed1ab_0 + - packaging=23.2=pyhd8ed1ab_0 + - pluggy=1.3.0=pyhd8ed1ab_0 - ppl=1.2=ha60d53e_1006 - - pycparser=2.21=pyhd8ed1ab_0 - - pytz=2023.3=pyhd8ed1ab_0 - qd=2.3.22=h2beb688_1004 - - simplegeneric=0.8.1=py_1 - sympow=2.023.6=h115ba6a_3 - - toml=0.10.2=pyhd8ed1ab_0 - tomli=2.0.1=pyhd8ed1ab_0 - - typing_extensions=4.7.1=pyha770c72_0 - - tzlocal=5.0.1=py311h6eed73b_0 - - zipp=3.16.2=pyhd8ed1ab_0 + - typing_extensions=4.8.0=pyha770c72_0 + - zipp=3.17.0=pyhd8ed1ab_0 - arb=2.23.0=h905a977_0 - - brial=1.2.12=pyha3edaa6_0 - - cairo=1.16.0=h09dd18c_1016 - - cctools_osx-64=973.0.1=h48a5a9d_13 - - cffi=1.15.1=py311ha86e640_3 - - clang-15=15.0.7=default_hdb78580_2 - - cmake=3.26.4=hf40c264_0 - - curl=8.1.2=hbee3ae8_0 + - boost-cpp=1.82.0=h94d02bd_2 + - brial=1.2.12=pyh694c41f_1 + - cctools_osx-64=973.0.1=h5676edf_13 + - clang-16=16.0.3=default_h762fdd7_2 + - cmake=3.27.6=hf40c264_0 + - curl=8.3.0=h5f667d7_0 - eclib=20230424=hd00e801_0 - fplll=5.4.4=hdfdc905_0 - - gfortran_impl_osx-64=12.2.0=hdfd80ef_32 + - gfortran_impl_osx-64=12.3.0=h54fd467_1 - importlib-metadata=6.8.0=pyha770c72_0 - - jinja2=3.1.2=pyhd8ed1ab_1 - - ld64=609=ha91a046_13 - - libblas=3.9.0=17_osx64_openblas - - libgd=2.3.3=h3d994df_6 - - openblas=0.3.23=openmp_hbefa662_0 - - pyproject-api=1.5.3=pyhd8ed1ab_0 + - ld64=609=ha02d983_13 + - libblas=3.9.0=18_osx64_openblas + - libgd=2.3.3=h8823a56_5 + - openblas=0.3.24=openmp_hd7704e8_0 + - pyproject-api=1.6.1=pyhd8ed1ab_0 - singular=4.2.1.p3=hac851df_2 - - typing-extensions=4.7.1=hd8ed1ab_0 - - cctools=973.0.1=hd9ad811_13 - - clang=15.0.7=h694c41f_2 - - harfbuzz=7.3.0=h413ba03_0 + - typing-extensions=4.8.0=hd8ed1ab_0 + - cctools=973.0.1=h40f6528_13 + - clang=16.0.3=hc177806_2 - importlib_metadata=6.8.0=hd8ed1ab_0 - - libcblas=3.9.0=17_osx64_openblas - - liblapack=3.9.0=17_osx64_openblas - - platformdirs=3.9.1=pyhd8ed1ab_0 + - libcblas=3.9.0=18_osx64_openblas + - liblapack=3.9.0=18_osx64_openblas + - platformdirs=3.11.0=pyhd8ed1ab_0 - arpack=3.7.0=hefb7bc6_2 - - clangxx=15.0.7=default_hdb78580_2 + - clangxx=16.0.3=default_h762fdd7_2 - fflas-ffpack=2.4.3=h026fd7e_2 - gsl=2.7=h93259b0_0 - iml=1.0.5=h64b42ca_1003 - - liblapacke=3.9.0=17_osx64_openblas - - pango=1.50.14=hbce5e75_1 + - liblapacke=3.9.0=18_osx64_openblas - suitesparse=5.10.1=h7aff33d_1 - - virtualenv=20.24.1=pyhd8ed1ab_0 - - blas-devel=3.9.0=17_osx64_openblas - - compiler-rt_osx-64=15.0.7=he1888fc_1 + - virtualenv=20.24.4=pyhd8ed1ab_0 + - blas-devel=3.9.0=18_osx64_openblas + - compiler-rt_osx-64=16.0.3=he1888fc_1 - giac=1.9.0.21=h92f3f65_1 - igraph=0.9.10=h6560ca6_1 - linbox=1.6.3=hdde8d14_7 - - tox=4.6.4=pyhd8ed1ab_0 - - blas=2.117=openblas - - compiler-rt=15.0.7=he1888fc_1 + - tox=4.11.3=pyhd8ed1ab_0 + - blas=2.118=openblas + - compiler-rt=16.0.3=he1888fc_1 - rw=0.9=h0d85af4_0 - - clang_osx-64=15.0.7=h03d6864_3 - - c-compiler=1.6.0=h63c33a9_0 - - clangxx_osx-64=15.0.7=h2133e9c_3 - - gfortran_osx-64=12.2.0=h18f7dce_1 - - cxx-compiler=1.6.0=h1c7c39f_0 - - gfortran=12.2.0=h2c809b3_1 - - r-base=4.3.0=h7a6543b_0 + - clang_osx-64=16.0.3=h51755a5_2 + - gfortran_osx-64=12.3.0=h18f7dce_1 + - gfortran=12.3.0=h2c809b3_1 - fortran-compiler=1.6.0=h932d759_0 - - rpy2=3.5.11=py311r43h4a70a88_2 - - compilers=1.6.0=h694c41f_0 diff --git a/environment-3.9-linux.yml b/environment-3.9-linux.yml index a4e0f79b00d..9b1282e073e 100644 --- a/environment-3.9-linux.yml +++ b/environment-3.9-linux.yml @@ -1,12 +1,11 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: 3e531235a513060f63b991c223aa35c0cb0c16aef417e93c3df677572197bc24 +# input_hash: f33930103d5fd6d2387e86192a02abc6ed30ddf0ecbd5551d3caefe9f1bd57a9 channels: - conda-forge dependencies: - _libgcc_mutex=0.1=conda_forge - - _r-mutex=1.0.1=anacondar_1 - ca-certificates=2023.7.22=hbcca054_0 - font-ttf-dejavu-sans-mono=2.37=hab24e00_0 - font-ttf-inconsolata=3.000=h77eed37_0 @@ -14,39 +13,34 @@ dependencies: - font-ttf-ubuntu=0.83=hab24e00_0 - kernel-headers_linux-64=2.6.32=he073ed8_16 - ld_impl_linux-64=2.40=h41732ed_0 - - libgcc-devel_linux-64=12.3.0=h8bca6fd_0 - - libgfortran5=13.1.0=h15d22d2_0 - - libstdcxx-devel_linux-64=12.3.0=h8bca6fd_0 - - libstdcxx-ng=13.1.0=hfd8a6a1_0 + - libboost-headers=1.82.0=ha770c72_2 + - libgcc-devel_linux-64=12.3.0=h8bca6fd_2 + - libstdcxx-ng=13.2.0=h7e041cc_2 + - mathjax=3.2.2=ha770c72_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 - - python_abi=3.11=3_cp311 + - python_abi=3.9=4_cp39 - tzdata=2023c=h71feb2d_0 - fonts-conda-forge=1=0 - - libgfortran-ng=13.1.0=h69a702a_0 - - libgomp=13.1.0=he5830b7_0 + - libgomp=13.2.0=h807b86a_2 - pari-seadata=0.0.20090618=0 - sysroot_linux-64=2.12=he073ed8_16 - binutils_impl_linux-64=2.40=hf600244_0 - fonts-conda-ecosystem=1=0 - binutils=2.40=hdd6e379_0 - - binutils_linux-64=2.40=hbdbef99_1 + - binutils_linux-64=2.40=hbdbef99_2 - _openmp_mutex=4.5=2_kmp_llvm - - libgcc-ng=13.1.0=he5830b7_0 - - bc=1.07.1=h7f98852_0 + - libgcc-ng=13.2.0=h807b86a_2 - bdw-gc=8.0.6=h4bd325d_0 - bzip2=1.0.8=h7f98852_4 - c-ares=1.19.1=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.2.1=h58526e2_0 - - graphite2=1.3.13=h58526e2_1001 - icu=72.1=hcb278e6_0 - keyutils=1.6.1=h166bdaf_0 - lerc=4.0.0=h27087fc_0 @@ -56,171 +50,134 @@ dependencies: - libev=4.33=h516909a_1 - libexpat=2.5.0=hcb278e6_1 - libffi=3.4.2=h7f98852_5 + - libgfortran5=13.2.0=ha4646dd_2 - libiconv=1.17=h166bdaf_0 - - libjpeg-turbo=2.1.5.1=h0b41bf4_0 - - libnsl=2.0.0=h7f98852_0 - - libopenblas=0.3.23=pthreads_h80387f5_0 - - libsanitizer=12.3.0=h0f45ef3_0 + - libjpeg-turbo=2.1.5.1=hd590300_1 + - libnsl=2.0.0=hd590300_1 + - libsanitizer=12.3.0=h0f45ef3_2 - libsodium=1.0.18=h36c2ea0_1 - libtool=2.4.7=h27087fc_0 - libuuid=2.38.1=h0b41bf4_0 - - libuv=1.44.2=h166bdaf_0 + - libuv=1.46.0=hd590300_0 - libwebp-base=1.3.1=hd590300_0 - libzlib=1.2.13=hd590300_5 - lrcalc=2.1=h27087fc_5 - m4=1.4.18=h516909a_1001 - - make=4.3=hd18ef5c_1 - - metis=5.1.1=h59595ed_0 + - metis=5.1.0=h59595ed_1007 - nauty=2.7.2=h7f98852_0 - ncurses=6.4=hcb278e6_0 - ninja=1.11.1=h924138e_0 - - openssl=3.1.1=hd590300_1 + - openssl=3.1.3=hd590300_0 - palp=2.20=h36c2ea0_0 - patch=2.7.6=h7f98852_1002 - - pixman=0.40.0=h36c2ea0_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 - - qd=2.3.22=h2cc385e_1004 - qhull=2020.2=h4bd325d_2 - - rhash=1.4.3=h166bdaf_0 - - sed=4.8=he412f7d_0 + - rhash=1.4.4=hd590300_0 - symmetrica=3.0.1=hcb278e6_0 - - xorg-kbproto=1.0.7=h7f98852_1002 - - xorg-libice=1.0.10=h7f98852_0 - - xorg-libxau=1.0.11=hd590300_0 - - xorg-libxdmcp=1.1.3=h7f98852_0 - - xorg-renderproto=0.11.1=h7f98852_1002 - - xorg-xextproto=7.3.0=h0b41bf4_1003 - - xorg-xproto=7.0.31=h7f98852_1007 + - tbb=2021.7.0=h924138e_0 - xz=5.2.6=h166bdaf_0 - 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_0 + - gcc_impl_linux-64=12.3.0=he2b93b0_2 - givaro=4.1.1=h192cbe9_1 - glpk=5.0=h445213a_0 - - libblas=3.9.0=17_linux64_openblas - libedit=3.1.20191231=he28a2e2_2 + - libgfortran-ng=13.2.0=h69a702a_2 - libhomfly=1.02r6=h36c2ea0_0 - libnghttp2=1.52.0=h61bc06f_0 - libpng=1.6.39=h753d276_0 - - libsqlite=3.42.0=h2797004_0 + - libsqlite=3.43.0=h2797004_0 - libssh2=1.11.0=h0841786_0 - - libxcb=1.15=h0b41bf4_0 - libxml2=2.10.4=hfdac1af_0 - mpfr=4.2.0=hb012696_0 - ntl=11.4.3=hef3c4d3_1 - - openblas=0.3.23=pthreads_h855a84d_0 - - pcre2=10.40=hc3806b6_0 - perl=5.32.1=4_hd590300_perl5 - primecount=7.9=hcb278e6_0 - readline=8.2=h8228510_1 - - tar=1.34=hb2e2bae_1 - - tk=8.6.12=h27826a3_0 - - xorg-libsm=1.2.3=hd9c2040_1000 + - tk=8.6.13=h2797004_0 - zeromq=4.3.4=h9c3ff4c_1 - zlib=1.2.13=hd590300_5 - - zstd=1.5.2=hfc55251_7 + - zstd=1.5.5=hfc55251_0 - autoconf=2.71=pl5321h2b4cb7a_1 - - boost-cpp=1.82.0=he19a28c_1 - - bwidget=1.9.14=ha770c72_1 - ecl=21.2.1=h9d73b02_2 - - fplll=5.4.4=h8780c30_0 - - freetype=2.12.1=hca18f0e_1 - - gcc=12.3.0=h8d2909c_1 - - gcc_linux-64=12.3.0=h76fc315_1 + - freetype=2.12.1=h267a509_2 + - 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_0 - - gxx_impl_linux-64=12.3.0=he2b93b0_0 - - krb5=1.20.1=h81ceb04_0 - - libcblas=3.9.0=17_linux64_openblas + - gfortran_impl_linux-64=12.3.0=hfcedea8_2 + - krb5=1.21.2=h659d440_0 + - libboost=1.82.0=h1bacd13_2 - libflint=2.9.0=h2f819a4_ntl_100 - - libglib=2.76.4=hebfc3b9_0 - - libhwloc=2.9.1=hd6dc26d_0 - - liblapack=3.9.0=17_linux64_openblas - - libtiff=4.5.1=h8b53f26_0 - - llvm-openmp=16.0.6=h4dfa4b3_0 + - libopenblas=0.3.24=pthreads_h413a1c8_0 + - libtiff=4.5.1=h8b53f26_1 + - llvm-openmp=17.0.2=h4dfa4b3_0 - m4ri=20140914=h7ca028e_1005 - mpc=1.3.1=hfe3b2da_0 - mpfi=1.5.4=h9f54685_1001 - pari=2.15.4=h4d4ae9b_2_pthread - ppl=1.2=h6ec01c2_1006 - - python=3.11.4=hab00c5b_0_cpython - - sqlite=3.42.0=h2c6b66d_0 + - python=3.9.18=h0755675_0_cpython + - qd=2.3.22=h2cc385e_1004 + - sqlite=3.43.0=h2c6b66d_0 - tachyon=0.99b6=0 - texinfo=7.0=pl5321h0f457ee_0 - - tktable=2.10=hb7b940f_3 - - xorg-libx11=1.8.6=h8ee46fc_0 - appdirs=1.4.4=pyh9f0ad1d_0 - arb=2.23.0=h44d021b_0 - - arpack=3.7.0=hdefa2d7_2 - automake=1.16.5=pl5321ha770c72_0 - c-compiler=1.6.0=hd590300_0 - cachetools=5.3.1=pyhd8ed1ab_0 - - chardet=5.1.0=py311h38be061_0 + - chardet=5.2.0=py39hf3d152e_1 - colorama=0.4.6=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - eclib=20230424=hdef1efb_0 - - fflas-ffpack=2.4.3=h912ac81_2 - - filelock=3.12.2=pyhd8ed1ab_0 + - filelock=3.12.4=pyhd8ed1ab_0 - fontconfig=2.14.2=h14ed4e7_0 - - gfortran=12.3.0=h499e0f7_1 - - gfortran_linux-64=12.3.0=h7fe76b4_1 - - gsl=2.7=he838d99_0 - - gxx=12.3.0=h8d2909c_1 - - gxx_linux-64=12.3.0=h8a814eb_1 - - iml=1.0.5=hd75c201_1003 + - fplll=5.4.4=h8780c30_0 + - gfortran=12.3.0=h499e0f7_2 + - gfortran_linux-64=12.3.0=h7fe76b4_2 - lcalc=2.0.5=h6a8a7c6_1 - - libbrial=1.2.12=h138cd66_0 - - libcurl=8.1.2=h409715c_0 - - liblapacke=3.9.0=17_linux64_openblas + - libblas=3.9.0=18_linux64_openblas + - libboost-devel=1.82.0=h00ab1b0_2 + - libbrial=1.2.12=h3155cbd_1 + - libcurl=8.3.0=hca28451_0 - libwebp=1.3.1=hbf2b3c1_0 - m4rie=20150908=h7ca028e_1001 - - markupsafe=2.1.3=py311h459d7ec_0 - maxima=5.45.0=h9d73b02_3 - - packaging=23.1=pyhd8ed1ab_0 - - pluggy=1.2.0=pyhd8ed1ab_0 - - pycparser=2.21=pyhd8ed1ab_0 - - pytz=2023.3=pyhd8ed1ab_0 - - simplegeneric=0.8.1=py_1 + - openblas=0.3.24=pthreads_h7a3da1a_0 + - packaging=23.2=pyhd8ed1ab_0 + - pluggy=1.3.0=pyhd8ed1ab_0 - singular=4.2.1.p3=h1ea75ed_2 - sympow=2.023.6=hc6ab17c_3 - - tbb=2021.9.0=hf52228f_0 - - toml=0.10.2=pyhd8ed1ab_0 - tomli=2.0.1=pyhd8ed1ab_0 - - typing_extensions=4.7.1=pyha770c72_0 - - tzlocal=5.0.1=py311h38be061_0 - - xorg-libxext=1.3.4=h0b41bf4_2 - - xorg-libxrender=0.9.11=hd590300_0 - - xorg-libxt=1.3.0=hd590300_0 - - zipp=3.16.2=pyhd8ed1ab_0 - - blas-devel=3.9.0=17_linux64_openblas - - brial=1.2.12=pyha3edaa6_0 - - cairo=1.16.0=hbbf8b49_1016 - - cffi=1.15.1=py311h409f033_3 - - cmake=3.26.4=hcfe8598_0 - - curl=8.1.2=h409715c_0 - - cxx-compiler=1.6.0=h00ab1b0_0 + - typing_extensions=4.8.0=pyha770c72_0 + - zipp=3.17.0=pyhd8ed1ab_0 + - boost-cpp=1.82.0=h789c474_2 + - brial=1.2.12=pyh694c41f_1 + - cmake=3.27.6=hcfe8598_0 + - curl=8.3.0=hca28451_0 - fortran-compiler=1.6.0=heb67821_0 - - giac=1.9.0.21=h673759e_1 - importlib-metadata=6.8.0=pyha770c72_0 - - jinja2=3.1.2=pyhd8ed1ab_1 + - libcblas=3.9.0=18_linux64_openblas - libgd=2.3.3=hfa28ad5_6 - - linbox=1.6.3=h9d78c56_7 - - pyproject-api=1.5.3=pyhd8ed1ab_0 + - liblapack=3.9.0=18_linux64_openblas + - pyproject-api=1.6.1=pyhd8ed1ab_0 + - typing-extensions=4.8.0=hd8ed1ab_0 + - arpack=3.7.0=hdefa2d7_2 + - fflas-ffpack=2.4.3=h912ac81_2 + - gsl=2.7=he838d99_0 + - iml=1.0.5=hd75c201_1003 + - importlib_metadata=6.8.0=hd8ed1ab_0 + - liblapacke=3.9.0=18_linux64_openblas + - platformdirs=3.11.0=pyhd8ed1ab_0 - suitesparse=5.10.1=h9e50725_1 - - typing-extensions=4.7.1=hd8ed1ab_0 - - blas=2.117=openblas - - compilers=1.6.0=ha770c72_0 - - harfbuzz=7.3.0=hdb3a94d_0 + - blas-devel=3.9.0=18_linux64_openblas + - giac=1.9.0.21=h673759e_1 - igraph=0.9.10=ha1f048c_1 - - importlib_metadata=6.8.0=hd8ed1ab_0 - - platformdirs=3.9.1=pyhd8ed1ab_0 - - pango=1.50.14=heaa33ce_1 + - linbox=1.6.3=h9d78c56_7 + - virtualenv=20.24.4=pyhd8ed1ab_0 + - blas=2.118=openblas - rw=0.9=h7f98852_0 - - virtualenv=20.24.1=pyhd8ed1ab_0 - - r-base=4.3.0=h0fc540b_0 - - tox=4.6.4=pyhd8ed1ab_0 - - rpy2=3.5.11=py311r43h1f0f07a_2 + - tox=4.11.3=pyhd8ed1ab_0 diff --git a/environment-3.9-macos.yml b/environment-3.9-macos.yml index 87cdcdc9a17..ba891b22a78 100644 --- a/environment-3.9-macos.yml +++ b/environment-3.9-macos.yml @@ -1,12 +1,10 @@ # Generated by conda-lock. # platform: osx-64 -# input_hash: 93b5ca84f839c4b1632c0eb98e3f5baa34ea1e607c329e9f4863fd87ae507dbe +# input_hash: 9c80846c49ff1d646e5a0eeec9eb4c7b2495fe3a5e4b8a0b1ea8673ae89a3bac channels: - conda-forge dependencies: - - _r-mutex=1.0.1=anacondar_1 - - bc=1.07.1=h0d85af4_0 - bzip2=1.0.8=h0d85af4_4 - c-ares=1.19.1=h0dc2134_0 - ca-certificates=2023.7.22=h8857fd0_0 @@ -15,27 +13,27 @@ dependencies: - font-ttf-inconsolata=3.000=h77eed37_0 - font-ttf-source-code-pro=2.038=h77eed37_0 - font-ttf-ubuntu=0.83=hab24e00_0 - - fribidi=1.0.10=hbcb3906_0 - giflib=5.2.1=hb7f2c08_3 - icu=72.1=h7336db1_0 + - jpeg=9e=hb7f2c08_3 - libatomic_ops=7.6.14=hb7f2c08_0 + - libboost-headers=1.82.0=h694c41f_2 - libcxx=16.0.6=hd57cbcb_0 - - libdeflate=1.18=hac1461d_0 + - libdeflate=1.17=hac1461d_0 - libev=4.33=haf1e3a3_1 - libexpat=2.5.0=hf0c8a7f_1 - libffi=3.4.2=h0d85af4_5 - - libgfortran-devel_osx-64=12.2.0=hf0fd499_32 + - libgfortran-devel_osx-64=12.3.0=h0b6f5ec_1 - libiconv=1.17=hac89ed1_0 - - libjpeg-turbo=2.1.5.1=hb7f2c08_0 - libsodium=1.0.18=hbcb3906_1 - libtool=2.4.7=hf0c8a7f_0 - - libuv=1.44.2=hac89ed1_0 - - libwebp-base=1.3.1=h0dc2134_0 + - libuv=1.46.0=h0c2f820_0 + - libwebp-base=1.2.4=h775f41a_0 - libzlib=1.2.13=h8a1eda9_5 - - llvm-openmp=16.0.6=hff08bdf_0 + - llvm-openmp=17.0.2=hff08bdf_0 - m4=1.4.18=haf1e3a3_1001 - - make=4.3=h22f3db7_1 - - metis=5.1.1=he965462_0 + - mathjax=3.2.2=h694c41f_0 + - metis=5.1.0=he965462_1007 - nauty=2.7.2=h0d85af4_0 - ncurses=6.4=hf0c8a7f_0 - palp=2.20=hbcb3906_0 @@ -45,10 +43,9 @@ dependencies: - pari-seadata-small=0.0.20090618=0 - patch=2.7.6=hbcf498f_1002 - perl=5.32.1=4_h0dc2134_perl5 - - pixman=0.40.0=hbcb3906_0 - planarity=3.0.0.5=hbcb3906_1002 - - python_abi=3.11=3_cp311 - - rhash=1.4.3=hac89ed1_0 + - python_abi=3.9=4_cp39 + - rhash=1.4.4=h0dc2134_0 - tzdata=2023c=h71feb2d_0 - xz=5.2.6=h775f41a_0 - autoconf=2.71=pl5321hed12c24_1 @@ -59,148 +56,127 @@ dependencies: - gettext=0.21.1=h8a4c099_0 - gf2x=1.3.0=hb2a7efb_2 - gmp=6.2.1=h2e338ed_0 - - graphite2=1.3.13=h2e338ed_1001 - isl=0.25=hb486fe8_0 - lerc=4.0.0=hb486fe8_0 - libbraiding=1.1=h2e338ed_0 - libedit=3.1.20191231=h0678c8f_2 - - libgfortran5=12.3.0=hbd3c1fe_1 + - libgfortran5=13.2.0=h2873a65_1 - libpng=1.6.39=ha978bb4_0 - - libsqlite=3.42.0=h58db7d2_0 + - libsqlite=3.43.0=h58db7d2_0 - libxml2=2.10.4=h554bb67_0 - lrcalc=2.1=hf0c8a7f_5 - ninja=1.11.1=hb8565cd_0 - - openssl=3.1.1=h8a1eda9_1 + - openssl=3.1.3=h8a1eda9_0 - pari-seadata=0.0.20090618=0 - - pcre2=10.40=h1c4e4bc_0 - pkg-config=0.29.2=ha3d46e9_1008 - primesieve=11.0=hf0c8a7f_0 - qhull=2020.2=h940c156_2 - readline=8.2=h9e318b2_1 - symmetrica=3.0.1=hf0c8a7f_0 - tapi=1100.0.11=h9ce4665_0 - - tar=1.34=hcb2f6ea_1 - - tbb=2021.9.0=hb8565cd_0 + - tbb=2021.10.0=h1c7c39f_1 - texinfo=7.0=pl5321hc47821c_0 - - tk=8.6.12=h5dbffcc_0 + - tk=8.6.13=hef22860_0 - zeromq=4.3.4=he49afe7_1 - zlib=1.2.13=h8a1eda9_5 - - zstd=1.5.2=h829000d_7 + - zstd=1.5.5=h829000d_0 - automake=1.16.5=pl5321h694c41f_0 - - boost-cpp=1.82.0=hd754db5_1 - - bwidget=1.9.14=h694c41f_1 - cddlib=1!0.94m=h0f52abe_0 - ecl=21.2.1=hd029580_2 - ecm=7.0.4=h343d7f2_1002 - fonts-conda-ecosystem=1=0 - - freetype=2.12.1=h3f81eb7_1 + - freetype=2.12.1=h60636b9_2 - givaro=4.1.1=h0a799c6_3 - glpk=5.0=h3cb5acd_0 - - krb5=1.20.1=h049b76e_0 - - libgfortran=5.0.0=12_3_0_h97931a8_1 - - libglib=2.76.4=hc62aa5d_0 + - krb5=1.21.2=hb884880_0 + - libboost=1.82.0=h4d4a22d_2 + - libgfortran=5.0.0=13_2_0_h97931a8_1 - libhomfly=1.02r6=hc929b4f_0 - - libllvm15=15.0.7=h7001e86_1 + - libllvm16=16.0.3=hf646ca0_1 - libnghttp2=1.52.0=he2ab024_0 - libssh2=1.11.0=hd019ec5_0 - - libtiff=4.5.1=hf955e92_0 + - libtiff=4.5.0=hee9004a_2 - m4ri=20140914=h3f75d11_1005 - mpfr=4.2.0=h4f9bd69_0 - ntl=11.4.3=h0ab3c2f_1 - pari=2.15.4=h93f793c_2_pthread - primecount=7.6=ha894c9a_0 - - python=3.11.4=h30d4d87_0_cpython + - python=3.9.18=h07e1443_0_cpython - sigtool=0.1.3=h88f4db0_0 - - sqlite=3.42.0=h2b0dec6_0 - - tachyon=0.99b6=0 - - tktable=2.10=h49f0cf7_3 + - sqlite=3.43.0=h2b0dec6_0 + - tachyon=0.99b6=h2e86ede_1001 - appdirs=1.4.4=pyh9f0ad1d_0 - cachetools=5.3.1=pyhd8ed1ab_0 - - chardet=5.1.0=py311h6eed73b_0 + - chardet=5.2.0=py39h6e9494a_1 - colorama=0.4.6=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - - filelock=3.12.2=pyhd8ed1ab_0 + - filelock=3.12.4=pyhd8ed1ab_0 - fontconfig=2.14.2=h5bb23bf_0 - gfan=0.6.2=hd793b56_1003 - lcalc=2.0.5=h3a941db_1 - - ld64_osx-64=609=h8ce0179_13 - - libbrial=1.2.12=h8f704d5_0 - - libclang-cpp15=15.0.7=default_hdb78580_2 - - libcurl=8.1.2=hbee3ae8_0 + - ld64_osx-64=609=hbfe4790_13 + - libboost-devel=1.82.0=h1c7c39f_2 + - libbrial=1.2.12=h8d08345_1 + - libclang-cpp16=16.0.3=default_h762fdd7_2 + - libcurl=8.3.0=h5f667d7_0 - libflint=2.9.0=hfd2f71f_ntl_100 - - libopenblas=0.3.23=openmp_h429af6e_0 - - libwebp=1.3.1=hc961f54_0 - - llvm-tools=15.0.7=h7001e86_1 + - libopenblas=0.3.24=openmp_h48a4ad5_0 + - libwebp=1.2.4=h70a068d_1 + - llvm-tools=16.0.3=hf646ca0_1 - m4rie=20150908=h3f75d11_1001 - - markupsafe=2.1.3=py311h2725bcf_0 - maxima=5.45.0=hd029580_3 - mpc=1.3.1=h81bd1dd_0 - mpfi=1.5.4=h52b28e3_1001 - - packaging=23.1=pyhd8ed1ab_0 - - pluggy=1.2.0=pyhd8ed1ab_0 + - packaging=23.2=pyhd8ed1ab_0 + - pluggy=1.3.0=pyhd8ed1ab_0 - ppl=1.2=ha60d53e_1006 - - pycparser=2.21=pyhd8ed1ab_0 - - pytz=2023.3=pyhd8ed1ab_0 - qd=2.3.22=h2beb688_1004 - - simplegeneric=0.8.1=py_1 - sympow=2.023.6=h115ba6a_3 - - toml=0.10.2=pyhd8ed1ab_0 - tomli=2.0.1=pyhd8ed1ab_0 - - typing_extensions=4.7.1=pyha770c72_0 - - tzlocal=5.0.1=py311h6eed73b_0 - - zipp=3.16.2=pyhd8ed1ab_0 + - typing_extensions=4.8.0=pyha770c72_0 + - zipp=3.17.0=pyhd8ed1ab_0 - arb=2.23.0=h905a977_0 - - brial=1.2.12=pyha3edaa6_0 - - cairo=1.16.0=h09dd18c_1016 - - cctools_osx-64=973.0.1=h48a5a9d_13 - - cffi=1.15.1=py311ha86e640_3 - - clang-15=15.0.7=default_hdb78580_2 - - cmake=3.26.4=hf40c264_0 - - curl=8.1.2=hbee3ae8_0 + - boost-cpp=1.82.0=h94d02bd_2 + - brial=1.2.12=pyh694c41f_1 + - cctools_osx-64=973.0.1=h5676edf_13 + - clang-16=16.0.3=default_h762fdd7_2 + - cmake=3.27.6=hf40c264_0 + - curl=8.3.0=h5f667d7_0 - eclib=20230424=hd00e801_0 - fplll=5.4.4=hdfdc905_0 - - gfortran_impl_osx-64=12.2.0=hdfd80ef_32 + - gfortran_impl_osx-64=12.3.0=h54fd467_1 - importlib-metadata=6.8.0=pyha770c72_0 - - jinja2=3.1.2=pyhd8ed1ab_1 - - ld64=609=ha91a046_13 - - libblas=3.9.0=17_osx64_openblas - - libgd=2.3.3=h3d994df_6 - - openblas=0.3.23=openmp_hbefa662_0 - - pyproject-api=1.5.3=pyhd8ed1ab_0 + - ld64=609=ha02d983_13 + - libblas=3.9.0=18_osx64_openblas + - libgd=2.3.3=h8823a56_5 + - openblas=0.3.24=openmp_hd7704e8_0 + - pyproject-api=1.6.1=pyhd8ed1ab_0 - singular=4.2.1.p3=hac851df_2 - - typing-extensions=4.7.1=hd8ed1ab_0 - - cctools=973.0.1=hd9ad811_13 - - clang=15.0.7=h694c41f_2 - - harfbuzz=7.3.0=h413ba03_0 + - typing-extensions=4.8.0=hd8ed1ab_0 + - cctools=973.0.1=h40f6528_13 + - clang=16.0.3=hc177806_2 - importlib_metadata=6.8.0=hd8ed1ab_0 - - libcblas=3.9.0=17_osx64_openblas - - liblapack=3.9.0=17_osx64_openblas - - platformdirs=3.9.1=pyhd8ed1ab_0 + - libcblas=3.9.0=18_osx64_openblas + - liblapack=3.9.0=18_osx64_openblas + - platformdirs=3.11.0=pyhd8ed1ab_0 - arpack=3.7.0=hefb7bc6_2 - - clangxx=15.0.7=default_hdb78580_2 + - clangxx=16.0.3=default_h762fdd7_2 - fflas-ffpack=2.4.3=h026fd7e_2 - gsl=2.7=h93259b0_0 - iml=1.0.5=h64b42ca_1003 - - liblapacke=3.9.0=17_osx64_openblas - - pango=1.50.14=hbce5e75_1 + - liblapacke=3.9.0=18_osx64_openblas - suitesparse=5.10.1=h7aff33d_1 - - virtualenv=20.24.1=pyhd8ed1ab_0 - - blas-devel=3.9.0=17_osx64_openblas - - compiler-rt_osx-64=15.0.7=he1888fc_1 + - virtualenv=20.24.4=pyhd8ed1ab_0 + - blas-devel=3.9.0=18_osx64_openblas + - compiler-rt_osx-64=16.0.3=he1888fc_1 - giac=1.9.0.21=h92f3f65_1 - igraph=0.9.10=h6560ca6_1 - linbox=1.6.3=hdde8d14_7 - - tox=4.6.4=pyhd8ed1ab_0 - - blas=2.117=openblas - - compiler-rt=15.0.7=he1888fc_1 + - tox=4.11.3=pyhd8ed1ab_0 + - blas=2.118=openblas + - compiler-rt=16.0.3=he1888fc_1 - rw=0.9=h0d85af4_0 - - clang_osx-64=15.0.7=h03d6864_3 - - c-compiler=1.6.0=h63c33a9_0 - - clangxx_osx-64=15.0.7=h2133e9c_3 - - gfortran_osx-64=12.2.0=h18f7dce_1 - - cxx-compiler=1.6.0=h1c7c39f_0 - - gfortran=12.2.0=h2c809b3_1 - - r-base=4.3.0=h7a6543b_0 + - clang_osx-64=16.0.3=h51755a5_2 + - gfortran_osx-64=12.3.0=h18f7dce_1 + - gfortran=12.3.0=h2c809b3_1 - fortran-compiler=1.6.0=h932d759_0 - - rpy2=3.5.11=py311r43h4a70a88_2 - - compilers=1.6.0=h694c41f_0 diff --git a/src/doc/en/installation/conda.rst b/src/doc/en/installation/conda.rst index 9347be5c3b9..67f777667b9 100644 --- a/src/doc/en/installation/conda.rst +++ b/src/doc/en/installation/conda.rst @@ -170,3 +170,10 @@ To build the documentation, use:: `_. Adventurous developers may omit this switch to try the modern, PEP-660 implementation of editable installations, see :issue:`34209`. + +.. NOTE:: + + You can update the conda lock files by running + ``.github/workflows/conda-lock-update.ps1`` or by running + ``conda-lock --platform linux-64 --filename src/environment-dev-3.11-linux.yml --lockfile src/environment-dev-3.11-linux.lock`` + manually. diff --git a/src/environment-3.10-linux.yml b/src/environment-3.10-linux.yml index fff15536047..fb735cfbb6a 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: 2fe7099c1d98ec324541bba0b769acbac35931b084f7e5640f0437a1ced9c5d2 +# input_hash: e56af388fcc542ad2cf1710631fe8a785b4b89558dfeb7d0cd87f3d26923ebd0 channels: - conda-forge @@ -14,41 +14,38 @@ dependencies: - font-ttf-ubuntu=0.83=hab24e00_0 - kernel-headers_linux-64=2.6.32=he073ed8_16 - ld_impl_linux-64=2.40=h41732ed_0 - - libgcc-devel_linux-64=12.3.0=h8bca6fd_0 - - libgfortran5=13.1.0=h15d22d2_0 - - libstdcxx-devel_linux-64=12.3.0=h8bca6fd_0 - - libstdcxx-ng=13.1.0=hfd8a6a1_0 + - libboost-headers=1.82.0=ha770c72_6 + - libgcc-devel_linux-64=12.3.0=h8bca6fd_2 + - libstdcxx-devel_linux-64=12.3.0=h8bca6fd_2 + - libstdcxx-ng=13.2.0=h7e041cc_2 - mathjax=3.2.2=ha770c72_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 - - python_abi=3.10=3_cp310 + - 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 - fonts-conda-forge=1=0 - - libgfortran-ng=13.1.0=h69a702a_0 - - libgomp=13.1.0=he5830b7_0 + - libgomp=13.2.0=h807b86a_2 - pari-seadata=0.0.20090618=0 - sysroot_linux-64=2.12=he073ed8_16 - threejs-sage=122=hd8ed1ab_2 - binutils_impl_linux-64=2.40=hf600244_0 - fonts-conda-ecosystem=1=0 - binutils=2.40=hdd6e379_0 - - binutils_linux-64=2.40=hbdbef99_1 + - binutils_linux-64=2.40=hbdbef99_2 - _openmp_mutex=4.5=2_kmp_llvm - - libgcc-ng=13.1.0=he5830b7_0 - - alsa-lib=1.2.8=h166bdaf_0 + - libgcc-ng=13.2.0=h807b86a_2 + - alsa-lib=1.2.10=hd590300_0 - attr=2.5.1=h166bdaf_1 - - bc=1.07.1=h7f98852_0 - bdw-gc=8.0.6=h4bd325d_0 - bzip2=1.0.8=h7f98852_4 - c-ares=1.19.1=hd590300_0 - cliquer=1.22=h36c2ea0_0 - - fftw=3.3.10=nompi_hc118613_108 - fribidi=1.0.10=h36c2ea0_0 - gengetopt=2.23=h9c3ff4c_0 - gettext=0.21.1=h27087fc_0 @@ -56,56 +53,55 @@ dependencies: - giflib=5.2.1=h0b41bf4_3 - gmp=6.2.1=h58526e2_0 - graphite2=1.3.13=h58526e2_1001 - - icu=72.1=hcb278e6_0 + - 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.1=h58526e2_0 - - libbrotlicommon=1.0.9=h166bdaf_9 - - libdeflate=1.18=h0b41bf4_0 + - libbrotlicommon=1.1.0=hd590300_1 + - libdeflate=1.19=hd590300_0 - libev=4.33=h516909a_1 - libexpat=2.5.0=hcb278e6_1 - libffi=3.4.2=h7f98852_5 + - libgfortran5=13.2.0=ha4646dd_2 - libiconv=1.17=h166bdaf_0 - - libjpeg-turbo=2.1.5.1=h0b41bf4_0 - - libnsl=2.0.0=h7f98852_0 + - libjpeg-turbo=2.1.5.1=hd590300_1 + - libnsl=2.0.0=hd590300_1 - libogg=1.3.4=h7f98852_1 - - libopenblas=0.3.23=pthreads_h80387f5_0 - libopus=1.3.1=h7f98852_1 - - libsanitizer=12.3.0=h0f45ef3_0 + - libsanitizer=12.3.0=h0f45ef3_2 - libsodium=1.0.18=h36c2ea0_1 - libtool=2.4.7=h27087fc_0 - libuuid=2.38.1=h0b41bf4_0 - - libuv=1.44.2=h166bdaf_0 - - libwebp-base=1.3.1=hd590300_0 + - libuv=1.46.0=hd590300_0 + - libwebp-base=1.3.2=hd590300_0 - 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_0 - - mpg123=1.31.3=hcb278e6_0 + - metis=5.1.0=h59595ed_1007 + - mpg123=1.32.3=h59595ed_0 - nauty=2.7.2=h7f98852_0 - ncurses=6.4=hcb278e6_0 - ninja=1.11.1=h924138e_0 - nspr=4.35=h27087fc_0 - - openssl=3.1.1=hd590300_1 + - openssl=3.1.3=hd590300_0 - palp=2.20=h36c2ea0_0 - patch=2.7.6=h7f98852_1002 - - pixman=0.40.0=h36c2ea0_0 + - pixman=0.42.2=h59595ed_0 - pkg-config=0.29.2=h36c2ea0_1008 - planarity=3.0.0.5=h36c2ea0_1002 - - primesieve=11.0=hcb278e6_0 + - primesieve=11.1=h59595ed_0 - pthread-stubs=0.4=h36c2ea0_1001 - - qd=2.3.22=h2cc385e_1004 - qhull=2020.2=h4bd325d_2 - - rhash=1.4.3=h166bdaf_0 + - 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.0.10=h7f98852_0 + - 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 @@ -118,78 +114,76 @@ dependencies: - 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_0 + - gcc_impl_linux-64=12.3.0=he2b93b0_2 - givaro=4.1.1=h192cbe9_1 - glpk=5.0=h445213a_0 - - libblas=3.9.0=17_linux64_openblas - - libbrotlidec=1.0.9=h166bdaf_9 - - libbrotlienc=1.0.9=h166bdaf_9 - - libcap=2.67=he9d0100_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_2 - libgpg-error=1.47=h71f35ed_0 - libhomfly=1.02r6=h36c2ea0_0 - libnghttp2=1.52.0=h61bc06f_0 - libpng=1.6.39=h753d276_0 - - libsqlite=3.42.0=h2797004_0 + - libsqlite=3.43.0=h2797004_0 - libssh2=1.11.0=h0841786_0 - libvorbis=1.3.7=h9c3ff4c_0 - libxcb=1.15=h0b41bf4_0 - - libxml2=2.11.4=h0d562d8_0 + - libxml2=2.11.5=h232c23b_1 - mpfr=4.2.0=hb012696_0 - - mysql-common=8.0.33=hf1915f5_2 + - mysql-common=8.0.33=hf1915f5_5 - ntl=11.4.3=hef3c4d3_1 - - openblas=0.3.23=pthreads_h855a84d_0 - pcre2=10.40=hc3806b6_0 - perl=5.32.1=4_hd590300_perl5 - - primecount=7.6=hcb278e6_0 + - primecount=7.9=hcb278e6_0 - readline=8.2=h8228510_1 - - tar=1.34=hb2e2bae_1 - - tk=8.6.12=h27826a3_0 + - tk=8.6.13=h2797004_0 - xorg-fixesproto=5.0=h7f98852_1002 - - xorg-libsm=1.2.3=hd9c2040_1000 + - xorg-libsm=1.2.4=h7391055_0 - zeromq=4.3.4=h9c3ff4c_1 - zlib=1.2.13=hd590300_5 - - zstd=1.5.2=hfc55251_7 + - zstd=1.5.5=hfc55251_0 - autoconf=2.71=pl5321h2b4cb7a_1 - - boost-cpp=1.82.0=he19a28c_1 - - brotli-bin=1.0.9=h166bdaf_9 + - brotli-bin=1.1.0=hd590300_1 - bwidget=1.9.14=ha770c72_1 - ecl=21.2.1=h9d73b02_2 - - fplll=5.4.4=h8780c30_0 - - freetype=2.12.1=hca18f0e_1 + - 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_1 - - gcc_linux-64=12.3.0=h76fc315_1 + - 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_0 - - gxx_impl_linux-64=12.3.0=he2b93b0_0 + - gfortran_impl_linux-64=12.3.0=hfcedea8_2 + - gxx_impl_linux-64=12.3.0=he2b93b0_2 - igraph=0.7.1=0 - - krb5=1.20.1=h81ceb04_0 - - libcblas=3.9.0=17_linux64_openblas + - krb5=1.21.2=h659d440_0 + - libboost=1.82.0=h6fcfa73_6 - libflint=2.9.0=h2f819a4_ntl_100 - libgcrypt=1.10.1=h166bdaf_0 - - libglib=2.76.4=hebfc3b9_0 - - libhwloc=2.9.1=nocuda_h7313eea_6 - - liblapack=3.9.0=17_linux64_openblas - - libllvm16=16.0.6=h5cf9203_1 - - libsndfile=1.2.0=hb75c966_0 - - libtiff=4.5.1=h8b53f26_0 - - llvm-openmp=16.0.6=h4dfa4b3_0 + - libglib=2.78.0=hebfc3b9_0 + - libhwloc=2.9.3=default_h554bfaf_1009 + - libllvm15=15.0.7=h5cf9203_3 + - libopenblas=0.3.24=pthreads_h413a1c8_0 + - libsndfile=1.2.2=hc60ed4a_1 + - libtiff=4.6.0=h29866fb_1 + - llvm-openmp=17.0.2=h4dfa4b3_0 - m4ri=20140914=h7ca028e_1005 - mpc=1.3.1=hfe3b2da_0 - mpfi=1.5.4=h9f54685_1001 - - mysql-libs=8.0.33=hca2cd23_2 - - nss=3.89=he45b914_0 + - mysql-libs=8.0.33=hca2cd23_5 + - nss=3.94=h1d7d5a4_0 - pandoc=3.1.3=h32600fe_0 - pari=2.15.4=h4d4ae9b_2_pthread - ppl=1.2=h6ec01c2_1006 - python=3.10.12=hd12c33a_0_cpython - - sqlite=3.42.0=h2c6b66d_0 + - qd=2.3.22=h2cc385e_1004 + - sqlite=3.43.0=h2c6b66d_0 - tachyon=0.99b6=0 - texinfo=7.0=pl5321h0f457ee_0 - - tktable=2.10=hb7b940f_3 + - 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 @@ -203,99 +197,97 @@ dependencies: - automake=1.16.5=pl5321ha770c72_0 - backcall=0.2.0=pyh9f0ad1d_0 - backports=1.0=pyhd8ed1ab_3 - - backports.zoneinfo=0.2.1=py310hff52083_7 - - brotli=1.0.9=h166bdaf_9 - - brotli-python=1.0.9=py310hd8f1fbe_9 + - 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.1=pyhd8ed1ab_0 - certifi=2023.7.22=pyhd8ed1ab_0 - - chardet=5.1.0=py310hff52083_0 - - charset-normalizer=3.2.0=pyhd8ed1ab_0 + - chardet=5.2.0=py310hff52083_1 + - charset-normalizer=3.3.0=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_0 - - cycler=0.11.0=pyhd8ed1ab_0 - - cysignals=1.11.2=py310h945e7c7_2 - - cython=0.29.36=py310hc6cd4ac_0 + - cycler=0.12.1=pyhd8ed1ab_0 + - cysignals=1.11.2=py310h945e7c7_3 + - cython=0.29.36=py310hc6cd4ac_1 - dbus=1.13.6=h5008d03_3 - - debugpy=1.6.7=py310heca2aa9_0 + - debugpy=1.8.0=py310hc6cd4ac_1 - decorator=5.1.1=pyhd8ed1ab_0 - defusedxml=0.7.1=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - - docutils=0.19=py310hff52083_1 - - dsdp=5.8=hd9d9efa_1203 + - docutils=0.20.1=py310hff52083_2 - eclib=20230424=hdef1efb_0 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 - - exceptiongroup=1.1.2=pyhd8ed1ab_0 + - exceptiongroup=1.1.3=pyhd8ed1ab_0 - executing=1.2.0=pyhd8ed1ab_0 - - fflas-ffpack=2.4.3=h912ac81_2 - - filelock=3.12.2=pyhd8ed1ab_0 + - filelock=3.12.4=pyhd8ed1ab_0 - flit-core=3.9.0=pyhd8ed1ab_0 - fontconfig=2.14.2=h14ed4e7_0 + - fplll=5.4.4=h8780c30_0 - gap-defaults=4.12.2=ha770c72_3 - gast=0.5.4=pyhd8ed1ab_0 - - gfortran=12.3.0=h499e0f7_1 - - gfortran_linux-64=12.3.0=h7fe76b4_1 - - glib-tools=2.76.4=hfc55251_0 + - gfortran=12.3.0=h499e0f7_2 + - gfortran_linux-64=12.3.0=h7fe76b4_2 + - glib-tools=2.78.0=hfc55251_0 - gmpy2=2.1.2=py310h3ec546c_1 - - gsl=2.7=he838d99_0 - - gxx=12.3.0=h8d2909c_1 - - gxx_linux-64=12.3.0=h8a814eb_1 + - gxx_linux-64=12.3.0=h8a814eb_2 - idna=3.4=pyhd8ed1ab_0 - imagesize=1.4.1=pyhd8ed1ab_0 - - iml=1.0.5=hd75c201_1003 - ipython_genutils=0.2.0=py_1 - json5=0.9.14=pyhd8ed1ab_0 - - jupyterlab_widgets=1.1.1=pyhd8ed1ab_0 - - kiwisolver=1.4.4=py310hbf28c38_1 + - jsonpointer=2.4=py310hff52083_3 + - jupyterlab_widgets=1.1.7=pyhd8ed1ab_0 + - kiwisolver=1.4.5=py310hd41b1e2_1 - lcalc=2.0.5=h6a8a7c6_1 - - lcms2=2.15=haa2dc70_1 - - libbrial=1.2.12=h138cd66_0 - - libclang13=16.0.6=default_h4d60ac6_1 - - libcups=2.3.3=h36d4200_3 - - libcurl=8.1.2=h409715c_0 - - liblapacke=3.9.0=17_linux64_openblas - - libpq=15.3=hbcd7760_1 - - libsystemd0=253=h8c4010b_1 - - libwebp=1.3.1=hbf2b3c1_0 + - lcms2=2.15=h7f713cb_2 + - libblas=3.9.0=18_linux64_openblas + - libboost-devel=1.82.0=h00ab1b0_6 + - libbrial=1.2.12=h3155cbd_1 + - libclang13=15.0.7=default_h9986a30_3 + - libcups=2.3.3=h4637d8d_4 + - libcurl=8.3.0=hca28451_0 + - libpq=15.4=hfc447b1_2 + - libsystemd0=254=h3516f8a_0 + - libwebp=1.3.2=hdffd6e0_0 - m4rie=20150908=h7ca028e_1001 - - markupsafe=2.1.3=py310h2372a71_0 + - markupsafe=2.1.3=py310h2372a71_1 - maxima=5.45.0=h9d73b02_3 - - mistune=3.0.0=pyhd8ed1ab_0 + - mistune=3.0.1=pyhd8ed1ab_0 - mpmath=1.3.0=pyhd8ed1ab_0 - munkres=1.1.4=pyh9f0ad1d_0 - nest-asyncio=1.5.6=pyhd8ed1ab_0 - networkx=2.8.8=pyhd8ed1ab_0 - - numpy=1.25.1=py310ha4c1d20_0 - - openjpeg=2.5.0=hfec8fc6_2 - - packaging=23.1=pyhd8ed1ab_0 + - openblas=0.3.24=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.11.1=pyhd8ed1ab_0 + - pathspec=0.11.2=pyhd8ed1ab_0 - pickleshare=0.7.5=py_1003 - pkgconfig=1.5.5=pyhd8ed1ab_4 - - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_0 - - pluggy=1.2.0=pyhd8ed1ab_0 + - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 + - pluggy=1.3.0=pyhd8ed1ab_0 - ply=3.11=py_1 - prometheus_client=0.17.1=pyhd8ed1ab_0 - - psutil=5.9.5=py310h1fa729e_0 + - psutil=5.9.5=py310h2372a71_1 - 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_0 + - pybind11-global=2.11.1=py310hd41b1e2_2 - pycparser=2.21=pyhd8ed1ab_0 - - pygments=2.15.1=pyhd8ed1ab_0 - - pyparsing=3.0.9=pyhd8ed1ab_0 - - pyrsistent=0.19.3=py310h1fa729e_0 + - pygments=2.16.1=pyhd8ed1ab_0 + - pyparsing=3.1.1=pyhd8ed1ab_0 + - pyrsistent=0.19.3=py310h2372a71_1 - pysocks=1.7.1=pyha2e5f31_6 - - python-fastjsonschema=2.18.0=pyhd8ed1ab_0 + - python-fastjsonschema=2.18.1=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=pyhd8ed1ab_0 - - pyyaml=6.0=py310h5764c6d_5 - - pyzmq=25.1.0=py310h5bbb5d0_0 + - pytz=2023.3.post1=pyhd8ed1ab_0 + - pyyaml=6.0.1=py310h2372a71_1 + - pyzmq=25.1.1=py310h5bbb5d0_1 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.9.2=py310hcb5633a_0 + - rpds-py=0.10.4=py310hcb5633a_0 - rw=0.8=h516909a_1001 - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 - sagetex=3.6.1=pyhd8ed1ab_0 @@ -306,156 +298,168 @@ dependencies: - six=1.16.0=pyh6c4a22f_0 - sniffio=1.3.0=pyhd8ed1ab_0 - snowballstemmer=2.2.0=pyhd8ed1ab_0 - - soupsieve=2.3.2.post1=pyhd8ed1ab_0 - - sphinxcontrib-applehelp=1.0.4=pyhd8ed1ab_0 - - sphinxcontrib-devhelp=1.0.2=py_0 - - sphinxcontrib-htmlhelp=2.0.1=pyhd8ed1ab_0 - - sphinxcontrib-jsmath=1.0.1=py_0 - - sphinxcontrib-qthelp=1.0.3=py_0 - - sphinxcontrib-serializinghtml=1.1.5=pyhd8ed1ab_2 + - soupsieve=2.5=pyhd8ed1ab_1 + - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_0 - sympow=2.023.6=hc6ab17c_3 - - tbb=2021.9.0=hf52228f_0 + - tbb=2021.10.0=h00ab1b0_1 - toml=0.10.2=pyhd8ed1ab_0 - tomli=2.0.1=pyhd8ed1ab_0 - - tomlkit=0.11.8=pyha770c72_0 - - tornado=6.3.2=py310h2372a71_0 - - traitlets=5.9.0=pyhd8ed1ab_0 - - trove-classifiers=2023.7.6=pyhd8ed1ab_0 - - typing_extensions=4.7.1=pyha770c72_0 + - tornado=6.3.3=py310h2372a71_1 + - traitlets=5.11.2=pyhd8ed1ab_0 + - trove-classifiers=2023.9.19=pyhd8ed1ab_0 + - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 + - typing_extensions=4.8.0=pyha770c72_0 - typing_utils=0.1.0=pyhd8ed1ab_0 - - tzlocal=5.0.1=py310hff52083_0 - - unicodedata2=15.0.0=py310h5764c6d_0 + - tzlocal=5.1=py310hff52083_0 + - unicodedata2=15.1.0=py310h2372a71_0 + - uri-template=1.3.0=pyhd8ed1ab_0 - vcversioner=2.16.0.0=py_1 - - webencodings=0.5.1=py_1 - - websocket-client=1.6.1=pyhd8ed1ab_0 - - wheel=0.41.0=pyhd8ed1ab_0 + - webcolors=1.13=pyhd8ed1ab_0 + - webencodings=0.5.1=pyhd8ed1ab_2 + - websocket-client=1.6.4=pyhd8ed1ab_0 + - wheel=0.41.2=pyhd8ed1ab_0 - xcb-util-image=0.4.0=h8ee46fc_1 - - xkeyboard-config=2.39=hd590300_0 + - 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_0 - - zipp=3.16.2=pyhd8ed1ab_0 - - anyio=3.7.1=pyhd8ed1ab_0 - - asttokens=2.2.1=pyhd8ed1ab_0 - - async-lru=2.0.3=pyhd8ed1ab_0 + - xorg-libxt=1.3.0=hd590300_1 + - zipp=3.17.0=pyhd8ed1ab_0 + - anyio=4.0.0=pyhd8ed1ab_0 + - asttokens=2.4.0=pyhd8ed1ab_0 + - async-lru=2.0.4=pyhd8ed1ab_0 - babel=2.12.1=pyhd8ed1ab_1 - backports.functools_lru_cache=1.6.5=pyhd8ed1ab_0 - beautifulsoup4=4.12.2=pyha770c72_0 - beniget=0.4.1=pyhd8ed1ab_0 - - blas-devel=3.9.0=17_linux64_openblas - - bleach=6.0.0=pyhd8ed1ab_0 - - brial=1.2.12=pyha3edaa6_0 - - cairo=1.16.0=hbbf8b49_1016 - - cffi=1.15.1=py310h255011f_3 - - cmake=3.26.4=hcfe8598_0 - - comm=0.1.3=pyhd8ed1ab_0 - - contourpy=1.1.0=py310hd41b1e2_0 + - bleach=6.1.0=pyhd8ed1ab_0 + - boost-cpp=1.82.0=h44aadfe_6 + - brial=1.2.12=pyh694c41f_1 + - cached-property=1.5.2=hd8ed1ab_1 + - cairo=1.16.0=h0c91306_1017 + - cffi=1.16.0=py310h2fee648_0 + - cmake=3.27.6=hcfe8598_0 + - comm=0.1.4=pyhd8ed1ab_0 - cppy=1.2.1=pyhd8ed1ab_0 - - curl=8.1.2=h409715c_0 - - cxx-compiler=1.6.0=h00ab1b0_0 + - curl=8.3.0=hca28451_0 - cypari2=2.1.3=py310h14ed79e_2 - deprecation=2.1.0=pyh9f0ad1d_0 - - fonttools=4.41.1=py310h2372a71_0 + - fonttools=4.43.1=py310h2372a71_0 - fortran-compiler=1.6.0=heb67821_0 - - fpylll=0.5.9=py310h0dadf69_1 - - giac=1.9.0.21=h673759e_1 - - glib=2.76.4=hfc55251_0 - - html5lib=1.1=pyh9f0ad1d_0 + - glib=2.78.0=hfc55251_0 - importlib-metadata=6.8.0=pyha770c72_0 - - importlib_resources=6.0.0=pyhd8ed1ab_1 - - jedi=0.18.2=pyhd8ed1ab_0 + - importlib_resources=6.1.0=pyhd8ed1ab_0 + - jedi=0.19.1=pyhd8ed1ab_0 - jinja2=3.1.2=pyhd8ed1ab_1 - jupyterlab_pygments=0.2.2=pyhd8ed1ab_0 - - libclang=16.0.6=default_h1cdf331_1 - - libgd=2.3.3=hfa28ad5_6 - - libxkbcommon=1.5.0=h5d7e998_3 - - linbox=1.6.3=h9d78c56_7 + - libcblas=3.9.0=18_linux64_openblas + - libclang=15.0.7=default_h7634d5b_3 + - libgd=2.3.3=he9388d3_8 + - liblapack=3.9.0=18_linux64_openblas + - libxkbcommon=1.6.0=h5d7e998_0 - matplotlib-inline=0.1.6=pyhd8ed1ab_0 - memory-allocator=0.1.2=py310h5764c6d_2 - - overrides=7.3.1=pyhd8ed1ab_0 + - overrides=7.4.0=pyhd8ed1ab_0 - pexpect=4.8.0=pyh1a96a4e_2 - - pillow=10.0.0=py310h582fbeb_0 + - pillow=10.0.1=py310h29da1c1_1 - pip=23.2.1=pyhd8ed1ab_0 - pplpy=0.8.7=py310h28f6eb6_0 - - primecountpy=0.1.0=py310hd41b1e2_3 - - pulseaudio-client=16.1=hb77b528_4 - - pybind11=2.11.1=py310hd41b1e2_0 - - pyproject-api=1.5.3=pyhd8ed1ab_0 + - primecountpy=0.1.0=py310hd41b1e2_4 + - pulseaudio-client=16.1=hb77b528_5 + - pybind11=2.11.1=py310hd41b1e2_2 + - pyproject-api=1.6.1=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - - pytz-deprecation-shim=0.1.0.post0=py310hff52083_3 - - referencing=0.30.0=pyhd8ed1ab_0 + - pytz-deprecation-shim=0.1.0.post0=py310hff52083_4 + - referencing=0.30.2=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - sagemath-db-conway-polynomials=0.5.0=ha878542_1 - - sip=6.7.9=py310hc6cd4ac_0 - - suitesparse=5.10.1=h9e50725_1 + - sip=6.7.11=py310hc6cd4ac_1 - sympy=1.12=pypyh9d50eac_103 - terminado=0.17.1=pyh41d4057_0 - tinycss2=1.2.1=pyhd8ed1ab_0 - - typing-extensions=4.7.1=hd8ed1ab_0 - - urllib3=2.0.4=pyhd8ed1ab_0 + - typing-extensions=4.8.0=hd8ed1ab_0 + - urllib3=2.0.6=pyhd8ed1ab_0 - xorg-libxi=1.7.10=h7f98852_0 - - argon2-cffi-bindings=21.2.0=py310h5764c6d_3 - - blas=2.117=openblas - - compilers=1.6.0=ha770c72_0 - - cvxopt=1.3.1=py310h14a12bf_0 - - gstreamer=1.22.3=h977cf35_1 - - harfbuzz=7.3.0=hdb3a94d_0 + - argon2-cffi-bindings=21.2.0=py310h2372a71_4 + - arrow=1.3.0=pyhd8ed1ab_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.6=h98fc4e7_2 + - harfbuzz=8.2.1=h3d44ed6_0 - hatchling=1.18.0=pyhd8ed1ab_0 - - importlib-resources=6.0.0=pyhd8ed1ab_1 + - iml=1.0.5=hd75c201_1003 + - importlib-resources=6.1.0=pyhd8ed1ab_0 - importlib_metadata=6.8.0=hd8ed1ab_0 - jsonschema-specifications=2023.7.1=pyhd8ed1ab_0 - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1 - - matplotlib-base=3.7.2=py310hf38f957_0 - - platformdirs=3.9.1=pyhd8ed1ab_0 - - poetry-core=1.6.1=pyhd8ed1ab_0 - - pyqt5-sip=12.11.0=py310heca2aa9_3 - - pythran=0.13.1=py310hfb6f7a9_0 + - liblapacke=3.9.0=18_linux64_openblas + - numpy=1.26.0=py310hb13e2d6_0 + - platformdirs=3.11.0=pyhd8ed1ab_0 + - pyqt5-sip=12.12.2=py310hc6cd4ac_5 - requests=2.31.0=pyhd8ed1ab_0 - - setuptools-scm=7.1.0=pyhd8ed1ab_0 + - setuptools-scm=8.0.4=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 - - wcwidth=0.2.6=pyhd8ed1ab_0 + - suitesparse=5.10.1=h9e50725_1 + - wcwidth=0.2.8=pyhd8ed1ab_0 - xorg-libxtst=1.2.3=h7f98852_1002 - - argon2-cffi=21.3.0=pyhd8ed1ab_0 - - gst-plugins-base=1.22.3=h938bd60_1 - - jsonschema=4.18.4=pyhd8ed1ab_0 - - jupyter_core=5.3.1=py310hff52083_0 - - openjdk=17.0.3=h19c1b89_7 - - pango=1.50.14=heaa33ce_1 - - pooch=1.7.0=pyha770c72_3 + - argon2-cffi=23.1.0=pyhd8ed1ab_0 + - blas-devel=3.9.0=18_linux64_openblas + - contourpy=1.1.1=py310hd41b1e2_1 + - cvxopt=1.3.2=py310h14a12bf_1 + - fpylll=0.5.9=py310h0dadf69_1 + - giac=1.9.0.21=h673759e_1 + - gst-plugins-base=1.22.6=h8e1006c_2 + - isoduration=20.11.0=pyhd8ed1ab_0 + - jsonschema=4.19.1=pyhd8ed1ab_0 + - jupyter_core=5.3.2=py310hff52083_0 + - linbox=1.6.3=h9d78c56_7 + - openjdk=20.0.2=hfea2f88_1 + - pango=1.50.14=ha41ecd1_2 + - pooch=1.7.0=pyhd8ed1ab_4 - prompt-toolkit=3.0.39=pyha770c72_0 - - setuptools_scm=7.1.0=hd8ed1ab_0 - - sphinx=6.2.1=pyhd8ed1ab_0 - - virtualenv=20.24.1=pyhd8ed1ab_0 + - pythran=0.14.0=py310hcb52e73_1 + - setuptools_scm=8.0.4=hd8ed1ab_0 + - virtualenv=20.24.4=pyhd8ed1ab_0 + - blas=2.118=openblas - jmol=14.32.10=ha770c72_0 - - jupyter_client=8.3.0=pyhd8ed1ab_0 - - jupyter_events=0.6.3=pyhd8ed1ab_0 - - nbformat=5.9.1=pyhd8ed1ab_0 + - jsonschema-with-format-nongpl=4.19.1=pyhd8ed1ab_0 + - jupyter_client=8.3.1=pyhd8ed1ab_0 + - matplotlib-base=3.8.0=py310h62c0568_1 + - nbformat=5.9.2=pyhd8ed1ab_0 - prompt_toolkit=3.0.39=hd8ed1ab_0 - - qt-main=5.15.8=h01ceb2d_12 - - r-base=4.3.1=hfabd6f2_1 + - qt-main=5.15.8=hc47bfe8_16 + - r-base=4.3.1=h639d9d3_5 - scipy=1.10.1=py310ha4c1d20_3 - - sphinx-basic-ng=1.0.0b2=pyhd8ed1ab_0 - - sphinx-copybutton=0.5.2=pyhd8ed1ab_0 - - sphinxcontrib-websupport=1.2.4=pyhd8ed1ab_1 - - tox=4.6.4=pyhd8ed1ab_0 - - furo=2023.5.20=pyhd8ed1ab_1 - - ipython=8.14.0=pyh41d4057_0 + - tox=4.11.3=pyhd8ed1ab_0 + - ipython=8.16.1=pyh0d859eb_0 + - jupyter_events=0.7.0=pyhd8ed1ab_2 - nbclient=0.8.0=pyhd8ed1ab_0 - - pyqt=5.15.7=py310hab646b1_3 - - rpy2=3.5.11=py310r43h278f3c1_2 - - ipykernel=6.24.0=pyh71e2992_0 - - matplotlib=3.7.2=py310hff52083_0 - - nbconvert-core=7.7.2=pyhd8ed1ab_0 - - jupyter_server=2.7.0=pyhd8ed1ab_0 - - nbconvert-pandoc=7.7.2=pyhd8ed1ab_0 + - pyqt=5.15.9=py310h04931ad_5 + - rpy2=3.5.11=py310r43h1f7b6fc_3 + - ipykernel=6.25.2=pyh2140261_0 + - matplotlib=3.8.0=py310hff52083_1 + - nbconvert-core=7.9.2=pyhd8ed1ab_0 + - jupyter_server=2.7.3=pyhd8ed1ab_1 + - nbconvert-pandoc=7.9.2=pyhd8ed1ab_0 - jupyter-lsp=2.2.0=pyhd8ed1ab_0 - - jupyterlab_server=2.23.0=pyhd8ed1ab_0 - - nbconvert=7.7.2=pyhd8ed1ab_0 + - jupyterlab_server=2.25.0=pyhd8ed1ab_0 + - nbconvert=7.9.2=pyhd8ed1ab_0 - notebook-shim=0.2.3=pyhd8ed1ab_0 - - jupyterlab=4.0.3=pyhd8ed1ab_0 - - notebook=7.0.0=pyhd8ed1ab_0 - - widgetsnbextension=3.6.4=pyhd8ed1ab_0 - - ipywidgets=7.7.5=pyhd8ed1ab_0 + - jupyterlab=4.0.6=pyhd8ed1ab_0 + - notebook=7.0.4=pyhd8ed1ab_0 + - widgetsnbextension=3.6.6=pyhd8ed1ab_0 + - ipywidgets=7.8.0=pyhd8ed1ab_0 - jupyter-jsmol=2022.1.0=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.yml b/src/environment-3.10-macos.yml index ec359de71dd..bf86da2b397 100644 --- a/src/environment-3.10-macos.yml +++ b/src/environment-3.10-macos.yml @@ -1,12 +1,11 @@ # Generated by conda-lock. # platform: osx-64 -# input_hash: a1b87af4950ce2799a289ce2cde303817187f205d9bf28061a801fd0a6963f94 +# input_hash: 3d89db019f3a2f3683f85c3e83e8c0ac7132bdd8790cb238b276c7426d5aa784 channels: - conda-forge dependencies: - _r-mutex=1.0.1=anacondar_1 - - bc=1.07.1=h0d85af4_0 - bzip2=1.0.8=h0d85af4_4 - c-ares=1.19.1=h0dc2134_0 - ca-certificates=2023.7.22=h8857fd0_0 @@ -17,27 +16,28 @@ dependencies: - font-ttf-ubuntu=0.83=hab24e00_0 - fribidi=1.0.10=hbcb3906_0 - giflib=5.2.1=hb7f2c08_3 - - icu=72.1=h7336db1_0 + - icu=73.2=hf5e326d_0 - libatomic_ops=7.6.14=hb7f2c08_0 - - libbrotlicommon=1.0.9=hb7f2c08_9 + - libboost-headers=1.82.0=h694c41f_6 + - libbrotlicommon=1.1.0=h0dc2134_1 - libcxx=16.0.6=hd57cbcb_0 - - libdeflate=1.18=hac1461d_0 + - libdeflate=1.19=ha4e1b8e_0 - libev=4.33=haf1e3a3_1 - libexpat=2.5.0=hf0c8a7f_1 - libffi=3.4.2=h0d85af4_5 - - libgfortran-devel_osx-64=12.2.0=hf0fd499_32 + - libgfortran-devel_osx-64=12.3.0=h0b6f5ec_1 - libiconv=1.17=hac89ed1_0 - - libjpeg-turbo=2.1.5.1=hb7f2c08_0 + - libjpeg-turbo=3.0.0=h0dc2134_1 - libsodium=1.0.18=hbcb3906_1 - libtool=2.4.7=hf0c8a7f_0 - - libuv=1.44.2=hac89ed1_0 - - libwebp-base=1.3.1=h0dc2134_0 + - libuv=1.46.0=h0c2f820_0 + - libwebp-base=1.3.2=h0dc2134_0 - libzlib=1.2.13=h8a1eda9_5 - - llvm-openmp=16.0.6=hff08bdf_0 + - llvm-openmp=17.0.2=hff08bdf_0 - m4=1.4.18=haf1e3a3_1001 - make=4.3=h22f3db7_1 - mathjax=3.2.2=h694c41f_0 - - metis=5.1.1=he965462_0 + - metis=5.1.0=he965462_1007 - nauty=2.7.2=h0d85af4_0 - ncurses=6.4=hf0c8a7f_0 - palp=2.20=hbcb3906_0 @@ -47,11 +47,10 @@ dependencies: - pari-seadata-small=0.0.20090618=0 - patch=2.7.6=hbcf498f_1002 - perl=5.32.1=4_h0dc2134_perl5 - - pixman=0.40.0=hbcb3906_0 - planarity=3.0.0.5=hbcb3906_1002 - pthread-stubs=0.4=hc929b4f_1001 - - python_abi=3.10=3_cp310 - - rhash=1.4.3=hac89ed1_0 + - python_abi=3.10=4_cp310 + - rhash=1.4.4=h0dc2134_0 - rw=0.7=1 - sagemath-db-combinatorial-designs=20140630=1 - sagemath-db-graphs=20210214=hd8ed1ab_0 @@ -74,56 +73,56 @@ dependencies: - isl=0.25=hb486fe8_0 - lerc=4.0.0=hb486fe8_0 - libbraiding=1.1=h2e338ed_0 - - libbrotlidec=1.0.9=hb7f2c08_9 - - libbrotlienc=1.0.9=hb7f2c08_9 + - libbrotlidec=1.1.0=h0dc2134_1 + - libbrotlienc=1.1.0=h0dc2134_1 - libedit=3.1.20191231=h0678c8f_2 - - libgfortran5=12.3.0=hbd3c1fe_1 + - libgfortran5=13.2.0=h2873a65_1 - libpng=1.6.39=ha978bb4_0 - - libsqlite=3.42.0=h58db7d2_0 + - libsqlite=3.43.0=h58db7d2_0 - libxcb=1.15=hb7f2c08_0 - - libxml2=2.11.4=hd95e348_0 + - libxml2=2.11.5=h3346baf_1 - lrcalc=2.1=hf0c8a7f_5 - ninja=1.11.1=hb8565cd_0 - - openjdk=20.0.0=h7d26f99_0 - - openssl=3.1.1=h8a1eda9_1 + - openjdk=20.0.2=h7d26f99_2 + - openssl=3.1.3=h8a1eda9_0 - pandoc=3.1.3=h9d075a6_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 - readline=8.2=h9e318b2_1 - symmetrica=3.0.1=hf0c8a7f_0 - tapi=1100.0.11=h9ce4665_0 - - tar=1.34=hcb2f6ea_1 - - tbb=2021.9.0=hb8565cd_0 + - tbb=2021.10.0=h1c7c39f_1 - texinfo=7.0=pl5321hc47821c_0 - threejs-sage=122=hd8ed1ab_2 - - tk=8.6.12=h5dbffcc_0 + - tk=8.6.13=hef22860_0 - zeromq=4.3.4=he49afe7_1 - zlib=1.2.13=h8a1eda9_5 - - zstd=1.5.2=h829000d_7 + - zstd=1.5.5=h829000d_0 - automake=1.16.5=pl5321h694c41f_0 - - boost-cpp=1.82.0=hd754db5_1 - - brotli-bin=1.0.9=hb7f2c08_9 + - brotli-bin=1.1.0=h0dc2134_1 - bwidget=1.9.14=h694c41f_1 - cddlib=1!0.94m=h0f52abe_0 - ecl=21.2.1=hd029580_2 - ecm=7.0.4=h343d7f2_1002 - fonts-conda-ecosystem=1=0 - - freetype=2.12.1=h3f81eb7_1 + - freetype=2.12.1=h60636b9_2 - gap-core=4.12.2=hc16eb5f_3 - givaro=4.1.1=h0a799c6_3 - glpk=5.0=h3cb5acd_0 - jmol=14.32.9=h694c41f_0 - - krb5=1.21.1=hb884880_0 - - libgfortran=5.0.0=12_3_0_h97931a8_1 - - libglib=2.76.4=hc62aa5d_0 + - krb5=1.21.2=hb884880_0 + - libboost=1.82.0=hf0c313a_6 + - libgfortran=5.0.0=13_2_0_h97931a8_1 + - libglib=2.78.0=hc62aa5d_0 - libhomfly=1.02r6=hc929b4f_0 - - libllvm15=15.0.7=he4b1e75_2 + - libllvm16=16.0.6=he4b1e75_2 - libnghttp2=1.52.0=he2ab024_0 - libssh2=1.11.0=hd019ec5_0 - - libtiff=4.5.1=hf955e92_0 + - libtiff=4.6.0=h684deea_2 - m4ri=20140914=h3f75d11_1005 - mpfr=4.2.0=h4f9bd69_0 - ntl=11.4.3=h0ab3c2f_1 @@ -131,37 +130,37 @@ dependencies: - primecount=7.6=ha894c9a_0 - python=3.10.12=had23ca6_0_cpython - sigtool=0.1.3=h88f4db0_0 - - sqlite=3.42.0=h2b0dec6_0 + - sqlite=3.43.0=h2b0dec6_0 - tachyon=0.99b6=0 - - tktable=2.10=h49f0cf7_3 + - tktable=2.10=ha166976_5 - alabaster=0.7.13=pyhd8ed1ab_0 - appdirs=1.4.4=pyh9f0ad1d_0 - appnope=0.1.3=pyhd8ed1ab_0 - attrs=23.1.0=pyh71513ae_1 - backcall=0.2.0=pyh9f0ad1d_0 - backports=1.0=pyhd8ed1ab_3 - - backports.zoneinfo=0.2.1=py310h2ec42d9_7 - - brotli=1.0.9=hb7f2c08_9 - - brotli-python=1.0.9=py310h7a76584_9 + - brotli=1.1.0=h0dc2134_1 + - brotli-python=1.1.0=py310h9e9d8ca_1 + - cached_property=1.5.2=pyha770c72_1 - cachetools=5.3.1=pyhd8ed1ab_0 - certifi=2023.7.22=pyhd8ed1ab_0 - - chardet=5.1.0=py310h2ec42d9_0 - - charset-normalizer=3.2.0=pyhd8ed1ab_0 + - chardet=5.2.0=py310h2ec42d9_1 + - charset-normalizer=3.3.0=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_0 - - cycler=0.11.0=pyhd8ed1ab_0 - - cysignals=1.11.2=py310h8c82e65_2 - - cython=0.29.36=py310h9e9d8ca_0 - - debugpy=1.6.7=py310h7a76584_0 + - cycler=0.12.1=pyhd8ed1ab_0 + - cysignals=1.11.2=py310h8c82e65_3 + - cython=0.29.36=py310h9e9d8ca_1 + - debugpy=1.8.0=py310h9e9d8ca_1 - decorator=5.1.1=pyhd8ed1ab_0 - defusedxml=0.7.1=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - - docutils=0.19=py310h2ec42d9_1 + - docutils=0.20.1=py310h2ec42d9_2 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 - - exceptiongroup=1.1.2=pyhd8ed1ab_0 + - exceptiongroup=1.1.3=pyhd8ed1ab_0 - executing=1.2.0=pyhd8ed1ab_0 - fftw=3.3.10=nompi_h4fa670e_108 - - filelock=3.12.2=pyhd8ed1ab_0 + - filelock=3.12.4=pyhd8ed1ab_0 - flit-core=3.9.0=pyhd8ed1ab_0 - fontconfig=2.14.2=h5bb23bf_0 - gap-defaults=4.12.2=h694c41f_3 @@ -171,60 +170,62 @@ dependencies: - imagesize=1.4.1=pyhd8ed1ab_0 - ipython_genutils=0.2.0=py_1 - json5=0.9.14=pyhd8ed1ab_0 - - jupyterlab_widgets=1.1.1=pyhd8ed1ab_0 - - kiwisolver=1.4.4=py310ha23aa8a_1 + - jsonpointer=2.4=py310h2ec42d9_3 + - jupyterlab_widgets=1.1.7=pyhd8ed1ab_0 + - kiwisolver=1.4.5=py310h88cfcbd_1 - lcalc=2.0.5=h3a941db_1 - - lcms2=2.15=h2dcdeff_1 - - ld64_osx-64=609=h8ce0179_13 - - libbrial=1.2.12=h8f704d5_0 - - libclang-cpp15=15.0.7=default_hdb78580_2 - - libcurl=8.2.0=h5f667d7_0 + - lcms2=2.15=hd6ba6f3_3 + - ld64_osx-64=609=ha20a434_14 + - libboost-devel=1.82.0=h1c7c39f_6 + - libbrial=1.2.12=h8d08345_1 + - libclang-cpp16=16.0.6=default_h762fdd7_1 + - libcurl=8.3.0=h5f667d7_0 - libflint=2.9.0=hfd2f71f_ntl_100 - - libopenblas=0.3.23=openmp_h429af6e_0 - - libwebp=1.3.1=hc961f54_0 - - llvm-tools=15.0.7=he4b1e75_2 + - libopenblas=0.3.24=openmp_h48a4ad5_0 + - libwebp=1.3.2=h44782d1_1 + - llvm-tools=16.0.6=he4b1e75_2 - m4rie=20150908=h3f75d11_1001 - - markupsafe=2.1.3=py310h6729b98_0 + - markupsafe=2.1.3=py310h6729b98_1 - maxima=5.45.0=hd029580_3 - - mistune=3.0.0=pyhd8ed1ab_0 + - mistune=3.0.1=pyhd8ed1ab_0 - mpc=1.3.1=h81bd1dd_0 - mpfi=1.5.4=h52b28e3_1001 - mpmath=1.3.0=pyhd8ed1ab_0 - munkres=1.1.4=pyh9f0ad1d_0 - nest-asyncio=1.5.6=pyhd8ed1ab_0 - networkx=2.8.8=pyhd8ed1ab_0 - - openjpeg=2.5.0=h13ac156_2 - - packaging=23.1=pyhd8ed1ab_0 + - openjpeg=2.5.0=ha4da562_3 + - packaging=23.2=pyhd8ed1ab_0 - pandocfilters=1.5.0=pyhd8ed1ab_0 - parso=0.8.3=pyhd8ed1ab_0 - - pathspec=0.11.1=pyhd8ed1ab_0 + - pathspec=0.11.2=pyhd8ed1ab_0 - pickleshare=0.7.5=py_1003 - pkgconfig=1.5.5=pyhd8ed1ab_4 - - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_0 - - pluggy=1.2.0=pyhd8ed1ab_0 + - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 + - pluggy=1.3.0=pyhd8ed1ab_0 - ply=3.11=py_1 - ppl=1.2=ha60d53e_1006 - prometheus_client=0.17.1=pyhd8ed1ab_0 - - psutil=5.9.5=py310h90acd4f_0 + - psutil=5.9.5=py310h6729b98_1 - 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_0 + - pybind11-global=2.11.1=py310h88cfcbd_2 - pycparser=2.21=pyhd8ed1ab_0 - - pygments=2.15.1=pyhd8ed1ab_0 - - pyparsing=3.0.9=pyhd8ed1ab_0 - - pyrsistent=0.19.3=py310h90acd4f_0 + - pygments=2.16.1=pyhd8ed1ab_0 + - pyparsing=3.1.1=pyhd8ed1ab_0 + - pyrsistent=0.19.3=py310h6729b98_1 - pysocks=1.7.1=pyha2e5f31_6 - - python-fastjsonschema=2.18.0=pyhd8ed1ab_0 + - python-fastjsonschema=2.18.1=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=pyhd8ed1ab_0 - - pyyaml=6.0=py310h90acd4f_5 - - pyzmq=25.1.0=py310h998be00_0 + - pytz=2023.3.post1=pyhd8ed1ab_0 + - pyyaml=6.0.1=py310h6729b98_1 + - pyzmq=25.1.1=py310h998be00_1 - qd=2.3.22=h2beb688_1004 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.9.2=py310h3461e44_0 + - rpds-py=0.10.4=py310h0e083fb_0 - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 - sagetex=3.6.1=pyhd8ed1ab_0 - setuptools=63.4.3=py310h2ec42d9_0 @@ -232,167 +233,169 @@ dependencies: - six=1.16.0=pyh6c4a22f_0 - sniffio=1.3.0=pyhd8ed1ab_0 - snowballstemmer=2.2.0=pyhd8ed1ab_0 - - soupsieve=2.3.2.post1=pyhd8ed1ab_0 - - sphinxcontrib-applehelp=1.0.4=pyhd8ed1ab_0 - - sphinxcontrib-devhelp=1.0.2=py_0 - - sphinxcontrib-htmlhelp=2.0.1=pyhd8ed1ab_0 - - sphinxcontrib-jsmath=1.0.1=py_0 - - sphinxcontrib-qthelp=1.0.3=py_0 - - sphinxcontrib-serializinghtml=1.1.5=pyhd8ed1ab_2 + - soupsieve=2.5=pyhd8ed1ab_1 + - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_0 - sympow=2.023.6=h115ba6a_3 - - toml=0.10.2=pyhd8ed1ab_0 - tomli=2.0.1=pyhd8ed1ab_0 - - tomlkit=0.11.8=pyha770c72_0 - - tornado=6.3.2=py310h6729b98_0 - - traitlets=5.9.0=pyhd8ed1ab_0 - - trove-classifiers=2023.7.6=pyhd8ed1ab_0 - - typing_extensions=4.7.1=pyha770c72_0 + - tornado=6.3.3=py310h6729b98_1 + - traitlets=5.11.2=pyhd8ed1ab_0 + - trove-classifiers=2023.9.19=pyhd8ed1ab_0 + - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 + - typing_extensions=4.8.0=pyha770c72_0 - typing_utils=0.1.0=pyhd8ed1ab_0 - - tzlocal=5.0.1=py310h2ec42d9_0 - - unicodedata2=15.0.0=py310h90acd4f_0 + - tzlocal=5.1=py310h2ec42d9_0 + - unicodedata2=15.1.0=py310h6729b98_0 + - uri-template=1.3.0=pyhd8ed1ab_0 - vcversioner=2.16.0.0=py_1 - - webencodings=0.5.1=py_1 - - websocket-client=1.6.1=pyhd8ed1ab_0 - - wheel=0.41.0=pyhd8ed1ab_0 - - zipp=3.16.2=pyhd8ed1ab_0 - - anyio=3.7.1=pyhd8ed1ab_0 + - webcolors=1.13=pyhd8ed1ab_0 + - webencodings=0.5.1=pyhd8ed1ab_2 + - websocket-client=1.6.4=pyhd8ed1ab_0 + - wheel=0.41.2=pyhd8ed1ab_0 + - zipp=3.17.0=pyhd8ed1ab_0 + - anyio=4.0.0=pyhd8ed1ab_0 - arb=2.23.0=h905a977_0 - - asttokens=2.2.1=pyhd8ed1ab_0 - - async-lru=2.0.3=pyhd8ed1ab_0 + - asttokens=2.4.0=pyhd8ed1ab_0 + - async-lru=2.0.4=pyhd8ed1ab_0 - babel=2.12.1=pyhd8ed1ab_1 - backports.functools_lru_cache=1.6.5=pyhd8ed1ab_0 - beautifulsoup4=4.12.2=pyha770c72_0 - beniget=0.4.1=pyhd8ed1ab_0 - - bleach=6.0.0=pyhd8ed1ab_0 - - brial=1.2.12=pyha3edaa6_0 - - cairo=1.16.0=h09dd18c_1016 - - cctools_osx-64=973.0.1=h48a5a9d_13 - - cffi=1.15.1=py310ha78151a_3 - - clang-15=15.0.7=default_hdb78580_2 - - cmake=3.26.4=hf40c264_0 - - comm=0.1.3=pyhd8ed1ab_0 + - bleach=6.1.0=pyhd8ed1ab_0 + - boost-cpp=1.82.0=h07eb623_6 + - brial=1.2.12=pyh694c41f_1 + - cached-property=1.5.2=hd8ed1ab_1 + - cairo=1.16.0=hfdb49f2_1017 + - cctools_osx-64=973.0.1=ha1c5b94_14 + - cffi=1.16.0=py310hdca579f_0 + - clang-16=16.0.6=default_h762fdd7_1 + - cmake=3.27.6=hf40c264_0 + - comm=0.1.4=pyhd8ed1ab_0 - cppy=1.2.1=pyhd8ed1ab_0 - - curl=8.2.0=h5f667d7_0 + - curl=8.3.0=h5f667d7_0 - cypari2=2.1.3=py310hb5d31c9_2 - deprecation=2.1.0=pyh9f0ad1d_0 - eclib=20230424=hd00e801_0 - - fonttools=4.41.1=py310h6729b98_0 + - fonttools=4.43.1=py310hb372a2b_0 - fplll=5.4.4=hdfdc905_0 - - gfortran_impl_osx-64=12.2.0=hdfd80ef_32 + - gfortran_impl_osx-64=12.3.0=h54fd467_1 - gmpy2=2.1.2=py310hb691cb2_1 - - html5lib=1.1=pyh9f0ad1d_0 - importlib-metadata=6.8.0=pyha770c72_0 - - importlib_resources=6.0.0=pyhd8ed1ab_1 - - jedi=0.18.2=pyhd8ed1ab_0 + - importlib_resources=6.1.0=pyhd8ed1ab_0 + - jedi=0.19.1=pyhd8ed1ab_0 - jinja2=3.1.2=pyhd8ed1ab_1 - jupyterlab_pygments=0.2.2=pyhd8ed1ab_0 - - ld64=609=ha91a046_13 - - libblas=3.9.0=17_osx64_openblas - - libgd=2.3.3=h3d994df_6 + - ld64=609=ha02d983_14 + - libblas=3.9.0=18_osx64_openblas + - libgd=2.3.3=h0dceb68_9 - matplotlib-inline=0.1.6=pyhd8ed1ab_0 - memory-allocator=0.1.2=py310h90acd4f_2 - - openblas=0.3.23=openmp_hbefa662_0 - - overrides=7.3.1=pyhd8ed1ab_0 + - openblas=0.3.24=openmp_hd7704e8_0 + - overrides=7.4.0=pyhd8ed1ab_0 - pexpect=4.8.0=pyh1a96a4e_2 - - pillow=10.0.0=py310hd63a8c7_0 + - pillow=10.0.1=py310hf317a87_2 - pip=23.2.1=pyhd8ed1ab_0 - - primecountpy=0.1.0=py310h88cfcbd_3 - - pybind11=2.11.1=py310h88cfcbd_0 - - pyobjc-core=9.2=py310hef2d279_0 - - pyproject-api=1.5.3=pyhd8ed1ab_0 + - primecountpy=0.1.0=py310h88cfcbd_4 + - pybind11=2.11.1=py310h88cfcbd_2 + - pyobjc-core=10.0=py310hef2d279_0 + - pyproject-api=1.6.1=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - - pytz-deprecation-shim=0.1.0.post0=py310h2ec42d9_3 - - referencing=0.30.0=pyhd8ed1ab_0 + - pytz-deprecation-shim=0.1.0.post0=py310h2ec42d9_4 + - referencing=0.30.2=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - sagemath-db-conway-polynomials=0.5.0=h033912b_1 - singular=4.2.1.p3=hac851df_2 - terminado=0.17.1=pyhd1c38e8_0 - tinycss2=1.2.1=pyhd8ed1ab_0 - - typing-extensions=4.7.1=hd8ed1ab_0 - - urllib3=2.0.4=pyhd8ed1ab_0 - - argon2-cffi-bindings=21.2.0=py310h90acd4f_3 - - cctools=973.0.1=hd9ad811_13 - - clang=15.0.7=h694c41f_2 - - harfbuzz=7.3.0=h413ba03_0 + - typing-extensions=4.8.0=hd8ed1ab_0 + - urllib3=2.0.6=pyhd8ed1ab_0 + - argon2-cffi-bindings=21.2.0=py310h6729b98_4 + - arrow=1.3.0=pyhd8ed1ab_0 + - cctools=973.0.1=h40f6528_14 + - clang=16.0.6=hc177806_1 + - fqdn=1.5.1=pyhd8ed1ab_0 + - harfbuzz=8.2.1=h7666e2a_0 - hatchling=1.18.0=pyhd8ed1ab_0 - - importlib-resources=6.0.0=pyhd8ed1ab_1 + - importlib-resources=6.1.0=pyhd8ed1ab_0 - importlib_metadata=6.8.0=hd8ed1ab_0 - jsonschema-specifications=2023.7.1=pyhd8ed1ab_0 - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1 - - libcblas=3.9.0=17_osx64_openblas - - liblapack=3.9.0=17_osx64_openblas - - platformdirs=3.9.1=pyhd8ed1ab_0 - - poetry-core=1.6.1=pyhd8ed1ab_0 + - libcblas=3.9.0=18_osx64_openblas + - liblapack=3.9.0=18_osx64_openblas + - platformdirs=3.11.0=pyhd8ed1ab_0 - pplpy=0.8.7=py310h190f582_0 - - pyobjc-framework-cocoa=9.2=py310hef2d279_0 + - pyobjc-framework-cocoa=10.0=py310hef2d279_1 - requests=2.31.0=pyhd8ed1ab_0 - - setuptools-scm=7.1.0=pyhd8ed1ab_0 + - setuptools-scm=8.0.4=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 - sympy=1.12=pypyh9d50eac_103 - - wcwidth=0.2.6=pyhd8ed1ab_0 - - argon2-cffi=21.3.0=pyhd8ed1ab_0 - - clangxx=15.0.7=default_hdb78580_2 + - wcwidth=0.2.8=pyhd8ed1ab_0 + - argon2-cffi=23.1.0=pyhd8ed1ab_0 + - clangxx=16.0.6=default_h762fdd7_1 - dsdp=5.8=h6e329d1_1203 - fflas-ffpack=2.4.3=h026fd7e_2 - gsl=2.7=h93259b0_0 - iml=1.0.5=h64b42ca_1003 - - jsonschema=4.18.4=pyhd8ed1ab_0 - - jupyter_core=5.3.1=py310h2ec42d9_0 - - liblapacke=3.9.0=17_osx64_openblas - - numpy=1.25.1=py310h7451ae0_0 - - pango=1.50.14=hbce5e75_1 - - pooch=1.7.0=pyha770c72_3 + - isoduration=20.11.0=pyhd8ed1ab_0 + - jsonschema=4.19.1=pyhd8ed1ab_0 + - jupyter_core=5.3.2=py310h2ec42d9_0 + - liblapacke=3.9.0=18_osx64_openblas + - numpy=1.26.0=py310h0171094_0 + - pango=1.50.14=h19c1c8a_2 + - pooch=1.7.0=pyhd8ed1ab_4 - prompt-toolkit=3.0.39=pyha770c72_0 - send2trash=1.8.2=pyhd1c38e8_0 - - setuptools_scm=7.1.0=hd8ed1ab_0 - - sphinx=6.2.1=pyhd8ed1ab_0 + - setuptools_scm=8.0.4=hd8ed1ab_0 - suitesparse=5.10.1=h7aff33d_1 - - virtualenv=20.24.2=pyhd8ed1ab_0 - - blas-devel=3.9.0=17_osx64_openblas - - compiler-rt_osx-64=15.0.7=he1888fc_1 - - contourpy=1.1.0=py310h88cfcbd_0 - - cvxopt=1.3.1=py310ha550498_0 + - virtualenv=20.24.4=pyhd8ed1ab_0 + - blas-devel=3.9.0=18_osx64_openblas + - compiler-rt_osx-64=16.0.6=he1888fc_0 + - contourpy=1.1.1=py310h88cfcbd_1 + - cvxopt=1.3.2=py310ha550498_1 - fpylll=0.5.9=py310h0d1ef73_1 - giac=1.9.0.21=h92f3f65_1 - - jupyter_client=8.3.0=pyhd8ed1ab_0 - - jupyter_events=0.6.3=pyhd8ed1ab_0 + - jsonschema-with-format-nongpl=4.19.1=pyhd8ed1ab_0 + - jupyter_client=8.3.1=pyhd8ed1ab_0 - linbox=1.6.3=hdde8d14_7 - - nbformat=5.9.1=pyhd8ed1ab_0 + - nbformat=5.9.2=pyhd8ed1ab_0 - prompt_toolkit=3.0.39=hd8ed1ab_0 - scipy=1.10.1=py310h3900cf1_3 - - sphinx-basic-ng=1.0.0b2=pyhd8ed1ab_0 - - sphinx-copybutton=0.5.2=pyhd8ed1ab_0 - - sphinxcontrib-websupport=1.2.4=pyhd8ed1ab_1 - - tox=4.6.4=pyhd8ed1ab_0 - - blas=2.117=openblas - - compiler-rt=15.0.7=he1888fc_1 - - furo=2023.5.20=pyhd8ed1ab_1 - - ipython=8.14.0=pyhd1c38e8_0 - - matplotlib-base=3.7.2=py310h475a17b_0 + - tox=4.11.3=pyhd8ed1ab_0 + - blas=2.118=openblas + - compiler-rt=16.0.6=he1888fc_0 + - ipython=8.16.1=pyh31c8845_0 + - jupyter_events=0.7.0=pyhd8ed1ab_2 + - matplotlib-base=3.8.0=py310hf92ae1b_1 - nbclient=0.8.0=pyhd8ed1ab_0 - - clang_osx-64=15.0.7=h03d6864_3 - - ipykernel=6.24.0=pyh5fb750a_0 - - matplotlib=3.7.2=py310h2ec42d9_0 - - nbconvert-core=7.7.2=pyhd8ed1ab_0 - - c-compiler=1.6.0=h63c33a9_0 - - clangxx_osx-64=15.0.7=h2133e9c_3 - - gfortran_osx-64=12.2.0=h18f7dce_1 - - jupyter_server=2.7.0=pyhd8ed1ab_0 - - nbconvert-pandoc=7.7.2=pyhd8ed1ab_0 - - cxx-compiler=1.6.0=h1c7c39f_0 - - gfortran=12.2.0=h2c809b3_1 + - clang_osx-64=16.0.6=h8787910_1 + - ipykernel=6.25.2=pyh1050b4e_0 + - matplotlib=3.8.0=py310h2ec42d9_1 + - nbconvert-core=7.9.2=pyhd8ed1ab_0 + - clangxx_osx-64=16.0.6=h1b7723c_1 + - gfortran_osx-64=12.3.0=h18f7dce_1 + - jupyter_server=2.7.3=pyhd8ed1ab_1 + - nbconvert-pandoc=7.9.2=pyhd8ed1ab_0 + - gfortran=12.3.0=h2c809b3_1 - jupyter-lsp=2.2.0=pyhd8ed1ab_0 - - jupyterlab_server=2.24.0=pyhd8ed1ab_0 - - nbconvert=7.7.2=pyhd8ed1ab_0 + - jupyterlab_server=2.25.0=pyhd8ed1ab_0 + - nbconvert=7.9.2=pyhd8ed1ab_0 - notebook-shim=0.2.3=pyhd8ed1ab_0 - - pythran=0.13.1=py310h9209b79_0 - - r-base=4.3.1=had2b78c_3 + - pythran=0.14.0=py310h92ebccd_1 + - r-base=4.3.1=h0ff45fa_6 - fortran-compiler=1.6.0=h932d759_0 - - jupyterlab=4.0.3=pyhd8ed1ab_0 - - rpy2=3.5.11=py310r43hc1335a1_2 - - compilers=1.6.0=h694c41f_0 - - notebook=7.0.0=pyhd8ed1ab_0 - - widgetsnbextension=3.6.4=pyhd8ed1ab_0 - - ipywidgets=7.7.5=pyhd8ed1ab_0 + - jupyterlab=4.0.6=pyhd8ed1ab_0 + - rpy2=3.5.11=py310r43hf0b6da5_3 + - notebook=7.0.4=pyhd8ed1ab_0 + - widgetsnbextension=3.6.6=pyhd8ed1ab_0 + - ipywidgets=7.8.0=pyhd8ed1ab_0 - jupyter-jsmol=2022.1.0=pyhd8ed1ab_0 - 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 diff --git a/src/environment-3.11-macos.yml b/src/environment-3.11-macos.yml index 601dfa6f504..e0844add23c 100644 --- a/src/environment-3.11-macos.yml +++ b/src/environment-3.11-macos.yml @@ -1,12 +1,11 @@ # Generated by conda-lock. # platform: osx-64 -# input_hash: 7056c18e920401fcf44f349c629cbeb7f2f00f1271eeeb3827d27907e8c4ee24 +# input_hash: 4cd6f667b9fb8a34b94f5b68b200d11bc041a8b0f36c9218847ad1964dbb8cb4 channels: - conda-forge dependencies: - _r-mutex=1.0.1=anacondar_1 - - bc=1.07.1=h0d85af4_0 - bzip2=1.0.8=h0d85af4_4 - c-ares=1.19.1=h0dc2134_0 - ca-certificates=2023.7.22=h8857fd0_0 @@ -17,27 +16,28 @@ dependencies: - font-ttf-ubuntu=0.83=hab24e00_0 - fribidi=1.0.10=hbcb3906_0 - giflib=5.2.1=hb7f2c08_3 - - icu=72.1=h7336db1_0 + - icu=73.2=hf5e326d_0 - libatomic_ops=7.6.14=hb7f2c08_0 - - libbrotlicommon=1.0.9=hb7f2c08_9 + - libboost-headers=1.82.0=h694c41f_6 + - libbrotlicommon=1.1.0=h0dc2134_1 - libcxx=16.0.6=hd57cbcb_0 - - libdeflate=1.18=hac1461d_0 + - libdeflate=1.19=ha4e1b8e_0 - libev=4.33=haf1e3a3_1 - libexpat=2.5.0=hf0c8a7f_1 - libffi=3.4.2=h0d85af4_5 - - libgfortran-devel_osx-64=12.2.0=hf0fd499_32 + - libgfortran-devel_osx-64=12.3.0=h0b6f5ec_1 - libiconv=1.17=hac89ed1_0 - - libjpeg-turbo=2.1.5.1=hb7f2c08_0 + - libjpeg-turbo=3.0.0=h0dc2134_1 - libsodium=1.0.18=hbcb3906_1 - libtool=2.4.7=hf0c8a7f_0 - - libuv=1.44.2=hac89ed1_0 - - libwebp-base=1.3.1=h0dc2134_0 + - libuv=1.46.0=h0c2f820_0 + - libwebp-base=1.3.2=h0dc2134_0 - libzlib=1.2.13=h8a1eda9_5 - - llvm-openmp=16.0.6=hff08bdf_0 + - llvm-openmp=17.0.2=hff08bdf_0 - m4=1.4.18=haf1e3a3_1001 - make=4.3=h22f3db7_1 - mathjax=3.2.2=h694c41f_0 - - metis=5.1.1=he965462_0 + - metis=5.1.0=he965462_1007 - nauty=2.7.2=h0d85af4_0 - ncurses=6.4=hf0c8a7f_0 - palp=2.20=hbcb3906_0 @@ -47,11 +47,10 @@ dependencies: - pari-seadata-small=0.0.20090618=0 - patch=2.7.6=hbcf498f_1002 - perl=5.32.1=4_h0dc2134_perl5 - - pixman=0.40.0=hbcb3906_0 - planarity=3.0.0.5=hbcb3906_1002 - pthread-stubs=0.4=hc929b4f_1001 - - python_abi=3.11=3_cp311 - - rhash=1.4.3=hac89ed1_0 + - python_abi=3.11=4_cp311 + - rhash=1.4.4=h0dc2134_0 - rw=0.7=1 - sagemath-db-combinatorial-designs=20140630=1 - sagemath-db-graphs=20210214=hd8ed1ab_0 @@ -74,94 +73,94 @@ dependencies: - isl=0.25=hb486fe8_0 - lerc=4.0.0=hb486fe8_0 - libbraiding=1.1=h2e338ed_0 - - libbrotlidec=1.0.9=hb7f2c08_9 - - libbrotlienc=1.0.9=hb7f2c08_9 + - libbrotlidec=1.1.0=h0dc2134_1 + - libbrotlienc=1.1.0=h0dc2134_1 - libedit=3.1.20191231=h0678c8f_2 - - libgfortran5=12.3.0=hbd3c1fe_1 + - libgfortran5=13.2.0=h2873a65_1 - libpng=1.6.39=ha978bb4_0 - - libsqlite=3.42.0=h58db7d2_0 + - libsqlite=3.43.0=h58db7d2_0 - libxcb=1.15=hb7f2c08_0 - - libxml2=2.11.4=hd95e348_0 + - libxml2=2.11.5=h3346baf_1 - lrcalc=2.1=hf0c8a7f_5 - ninja=1.11.1=hb8565cd_0 - - openjdk=20.0.0=h7d26f99_0 - - openssl=3.1.1=h8a1eda9_1 + - openjdk=20.0.2=h7d26f99_2 + - openssl=3.1.3=h8a1eda9_0 - pandoc=3.1.3=h9d075a6_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 - readline=8.2=h9e318b2_1 - symmetrica=3.0.1=hf0c8a7f_0 - tapi=1100.0.11=h9ce4665_0 - - tar=1.34=hcb2f6ea_1 - - tbb=2021.9.0=hb8565cd_0 + - tbb=2021.10.0=h1c7c39f_1 - texinfo=7.0=pl5321hc47821c_0 - threejs-sage=122=hd8ed1ab_2 - - tk=8.6.12=h5dbffcc_0 + - tk=8.6.13=hef22860_0 - zeromq=4.3.4=he49afe7_1 - zlib=1.2.13=h8a1eda9_5 - - zstd=1.5.2=h829000d_7 + - zstd=1.5.5=h829000d_0 - automake=1.16.5=pl5321h694c41f_0 - - boost-cpp=1.82.0=hd754db5_1 - - brotli-bin=1.0.9=hb7f2c08_9 + - brotli-bin=1.1.0=h0dc2134_1 - bwidget=1.9.14=h694c41f_1 - cddlib=1!0.94m=h0f52abe_0 - ecl=21.2.1=hd029580_2 - ecm=7.0.4=h343d7f2_1002 - fonts-conda-ecosystem=1=0 - - freetype=2.12.1=h3f81eb7_1 + - freetype=2.12.1=h60636b9_2 - gap-core=4.12.2=hc16eb5f_3 - givaro=4.1.1=h0a799c6_3 - glpk=5.0=h3cb5acd_0 - jmol=14.32.9=h694c41f_0 - - krb5=1.21.1=hb884880_0 - - libgfortran=5.0.0=12_3_0_h97931a8_1 - - libglib=2.76.4=hc62aa5d_0 + - krb5=1.21.2=hb884880_0 + - libboost=1.82.0=hf0c313a_6 + - libgfortran=5.0.0=13_2_0_h97931a8_1 + - libglib=2.78.0=hc62aa5d_0 - libhomfly=1.02r6=hc929b4f_0 - - libllvm15=15.0.7=he4b1e75_2 + - libllvm16=16.0.6=he4b1e75_2 - libnghttp2=1.52.0=he2ab024_0 - libssh2=1.11.0=hd019ec5_0 - - libtiff=4.5.1=hf955e92_0 + - libtiff=4.6.0=h684deea_2 - m4ri=20140914=h3f75d11_1005 - mpfr=4.2.0=h4f9bd69_0 - ntl=11.4.3=h0ab3c2f_1 - pari=2.15.4=h93f793c_2_pthread - primecount=7.6=ha894c9a_0 - - python=3.11.4=h30d4d87_0_cpython + - python=3.11.6=h30d4d87_0_cpython - sigtool=0.1.3=h88f4db0_0 - - sqlite=3.42.0=h2b0dec6_0 + - sqlite=3.43.0=h2b0dec6_0 - tachyon=0.99b6=0 - - tktable=2.10=h49f0cf7_3 + - tktable=2.10=ha166976_5 - alabaster=0.7.13=pyhd8ed1ab_0 - appdirs=1.4.4=pyh9f0ad1d_0 - appnope=0.1.3=pyhd8ed1ab_0 - attrs=23.1.0=pyh71513ae_1 - backcall=0.2.0=pyh9f0ad1d_0 - backports=1.0=pyhd8ed1ab_3 - - backports.zoneinfo=0.2.1=py311h6eed73b_7 - - brotli=1.0.9=hb7f2c08_9 - - brotli-python=1.0.9=py311h814d153_9 + - brotli=1.1.0=h0dc2134_1 + - brotli-python=1.1.0=py311hdf8f085_1 + - cached_property=1.5.2=pyha770c72_1 - cachetools=5.3.1=pyhd8ed1ab_0 - certifi=2023.7.22=pyhd8ed1ab_0 - - chardet=5.1.0=py311h6eed73b_0 - - charset-normalizer=3.2.0=pyhd8ed1ab_0 + - chardet=5.2.0=py311h6eed73b_1 + - charset-normalizer=3.3.0=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_0 - - cycler=0.11.0=pyhd8ed1ab_0 - - cysignals=1.11.2=py311h8a58447_2 - - cython=0.29.36=py311hdf8f085_0 - - debugpy=1.6.7=py311h814d153_0 + - cycler=0.12.1=pyhd8ed1ab_0 + - cysignals=1.11.2=py311h8a58447_3 + - cython=0.29.36=py311hdf8f085_1 + - debugpy=1.8.0=py311hdf8f085_1 - decorator=5.1.1=pyhd8ed1ab_0 - defusedxml=0.7.1=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - - docutils=0.19=py311h6eed73b_1 + - docutils=0.20.1=py311h6eed73b_2 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 - - exceptiongroup=1.1.2=pyhd8ed1ab_0 + - exceptiongroup=1.1.3=pyhd8ed1ab_0 - executing=1.2.0=pyhd8ed1ab_0 - fftw=3.3.10=nompi_h4fa670e_108 - - filelock=3.12.2=pyhd8ed1ab_0 + - filelock=3.12.4=pyhd8ed1ab_0 - flit-core=3.9.0=pyhd8ed1ab_0 - fontconfig=2.14.2=h5bb23bf_0 - gap-defaults=4.12.2=h694c41f_3 @@ -171,60 +170,62 @@ dependencies: - imagesize=1.4.1=pyhd8ed1ab_0 - ipython_genutils=0.2.0=py_1 - json5=0.9.14=pyhd8ed1ab_0 - - jupyterlab_widgets=1.1.1=pyhd8ed1ab_0 - - kiwisolver=1.4.4=py311hd2070f0_1 + - jsonpointer=2.4=py311h6eed73b_3 + - jupyterlab_widgets=1.1.7=pyhd8ed1ab_0 + - kiwisolver=1.4.5=py311h5fe6e05_1 - lcalc=2.0.5=h3a941db_1 - - lcms2=2.15=h2dcdeff_1 - - ld64_osx-64=609=h8ce0179_13 - - libbrial=1.2.12=h8f704d5_0 - - libclang-cpp15=15.0.7=default_hdb78580_2 - - libcurl=8.2.0=h5f667d7_0 + - lcms2=2.15=hd6ba6f3_3 + - ld64_osx-64=609=ha20a434_14 + - libboost-devel=1.82.0=h1c7c39f_6 + - libbrial=1.2.12=h8d08345_1 + - libclang-cpp16=16.0.6=default_h762fdd7_1 + - libcurl=8.3.0=h5f667d7_0 - libflint=2.9.0=hfd2f71f_ntl_100 - - libopenblas=0.3.23=openmp_h429af6e_0 - - libwebp=1.3.1=hc961f54_0 - - llvm-tools=15.0.7=he4b1e75_2 + - libopenblas=0.3.24=openmp_h48a4ad5_0 + - libwebp=1.3.2=h44782d1_1 + - llvm-tools=16.0.6=he4b1e75_2 - m4rie=20150908=h3f75d11_1001 - - markupsafe=2.1.3=py311h2725bcf_0 + - markupsafe=2.1.3=py311h2725bcf_1 - maxima=5.45.0=hd029580_3 - - mistune=3.0.0=pyhd8ed1ab_0 + - mistune=3.0.1=pyhd8ed1ab_0 - mpc=1.3.1=h81bd1dd_0 - mpfi=1.5.4=h52b28e3_1001 - mpmath=1.3.0=pyhd8ed1ab_0 - munkres=1.1.4=pyh9f0ad1d_0 - nest-asyncio=1.5.6=pyhd8ed1ab_0 - networkx=2.8.8=pyhd8ed1ab_0 - - openjpeg=2.5.0=h13ac156_2 - - packaging=23.1=pyhd8ed1ab_0 + - openjpeg=2.5.0=ha4da562_3 + - packaging=23.2=pyhd8ed1ab_0 - pandocfilters=1.5.0=pyhd8ed1ab_0 - parso=0.8.3=pyhd8ed1ab_0 - - pathspec=0.11.1=pyhd8ed1ab_0 + - pathspec=0.11.2=pyhd8ed1ab_0 - pickleshare=0.7.5=py_1003 - pkgconfig=1.5.5=pyhd8ed1ab_4 - - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_0 - - pluggy=1.2.0=pyhd8ed1ab_0 + - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 + - pluggy=1.3.0=pyhd8ed1ab_0 - ply=3.11=py_1 - ppl=1.2=ha60d53e_1006 - prometheus_client=0.17.1=pyhd8ed1ab_0 - - psutil=5.9.5=py311h5547dcb_0 + - psutil=5.9.5=py311h2725bcf_1 - 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_0 + - pybind11-global=2.11.1=py311h5fe6e05_2 - pycparser=2.21=pyhd8ed1ab_0 - - pygments=2.15.1=pyhd8ed1ab_0 - - pyparsing=3.0.9=pyhd8ed1ab_0 - - pyrsistent=0.19.3=py311h5547dcb_0 + - pygments=2.16.1=pyhd8ed1ab_0 + - pyparsing=3.1.1=pyhd8ed1ab_0 + - pyrsistent=0.19.3=py311h2725bcf_1 - pysocks=1.7.1=pyha2e5f31_6 - - python-fastjsonschema=2.18.0=pyhd8ed1ab_0 + - python-fastjsonschema=2.18.1=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=pyhd8ed1ab_0 - - pyyaml=6.0=py311h5547dcb_5 - - pyzmq=25.1.0=py311h5dacc12_0 + - pytz=2023.3.post1=pyhd8ed1ab_0 + - pyyaml=6.0.1=py311h2725bcf_1 + - pyzmq=25.1.1=py311h5dacc12_1 - qd=2.3.22=h2beb688_1004 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.9.2=py311h299eb51_0 + - rpds-py=0.10.4=py311h5e0f0e4_0 - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 - sagetex=3.6.1=pyhd8ed1ab_0 - setuptools=59.8.0=py311h6eed73b_1 @@ -232,166 +233,168 @@ dependencies: - six=1.16.0=pyh6c4a22f_0 - sniffio=1.3.0=pyhd8ed1ab_0 - snowballstemmer=2.2.0=pyhd8ed1ab_0 - - soupsieve=2.3.2.post1=pyhd8ed1ab_0 - - sphinxcontrib-applehelp=1.0.4=pyhd8ed1ab_0 - - sphinxcontrib-devhelp=1.0.2=py_0 - - sphinxcontrib-htmlhelp=2.0.1=pyhd8ed1ab_0 - - sphinxcontrib-jsmath=1.0.1=py_0 - - sphinxcontrib-qthelp=1.0.3=py_0 - - sphinxcontrib-serializinghtml=1.1.5=pyhd8ed1ab_2 + - soupsieve=2.5=pyhd8ed1ab_1 + - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_0 - sympow=2.023.6=h115ba6a_3 - - toml=0.10.2=pyhd8ed1ab_0 - tomli=2.0.1=pyhd8ed1ab_0 - - tomlkit=0.11.8=pyha770c72_0 - - tornado=6.3.2=py311h2725bcf_0 - - traitlets=5.9.0=pyhd8ed1ab_0 - - trove-classifiers=2023.7.6=pyhd8ed1ab_0 - - typing_extensions=4.7.1=pyha770c72_0 + - tornado=6.3.3=py311h2725bcf_1 + - traitlets=5.11.2=pyhd8ed1ab_0 + - trove-classifiers=2023.9.19=pyhd8ed1ab_0 + - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 + - typing_extensions=4.8.0=pyha770c72_0 - typing_utils=0.1.0=pyhd8ed1ab_0 - - tzlocal=5.0.1=py311h6eed73b_0 + - tzlocal=5.1=py311h6eed73b_0 + - uri-template=1.3.0=pyhd8ed1ab_0 - vcversioner=2.16.0.0=py_1 - - webencodings=0.5.1=py_1 - - websocket-client=1.6.1=pyhd8ed1ab_0 - - wheel=0.41.0=pyhd8ed1ab_0 - - zipp=3.16.2=pyhd8ed1ab_0 - - anyio=3.7.1=pyhd8ed1ab_0 + - webcolors=1.13=pyhd8ed1ab_0 + - webencodings=0.5.1=pyhd8ed1ab_2 + - websocket-client=1.6.4=pyhd8ed1ab_0 + - wheel=0.41.2=pyhd8ed1ab_0 + - zipp=3.17.0=pyhd8ed1ab_0 + - anyio=4.0.0=pyhd8ed1ab_0 - arb=2.23.0=h905a977_0 - - asttokens=2.2.1=pyhd8ed1ab_0 - - async-lru=2.0.3=pyhd8ed1ab_0 + - asttokens=2.4.0=pyhd8ed1ab_0 + - async-lru=2.0.4=pyhd8ed1ab_0 - babel=2.12.1=pyhd8ed1ab_1 - backports.functools_lru_cache=1.6.5=pyhd8ed1ab_0 - beautifulsoup4=4.12.2=pyha770c72_0 - beniget=0.4.1=pyhd8ed1ab_0 - - bleach=6.0.0=pyhd8ed1ab_0 - - brial=1.2.12=pyha3edaa6_0 - - cairo=1.16.0=h09dd18c_1016 - - cctools_osx-64=973.0.1=h48a5a9d_13 - - cffi=1.15.1=py311ha86e640_3 - - clang-15=15.0.7=default_hdb78580_2 - - cmake=3.26.4=hf40c264_0 - - comm=0.1.3=pyhd8ed1ab_0 + - bleach=6.1.0=pyhd8ed1ab_0 + - boost-cpp=1.82.0=h07eb623_6 + - brial=1.2.12=pyh694c41f_1 + - cached-property=1.5.2=hd8ed1ab_1 + - cairo=1.16.0=hfdb49f2_1017 + - cctools_osx-64=973.0.1=ha1c5b94_14 + - cffi=1.16.0=py311hc0b63fd_0 + - clang-16=16.0.6=default_h762fdd7_1 + - cmake=3.27.6=hf40c264_0 + - comm=0.1.4=pyhd8ed1ab_0 - cppy=1.2.1=pyhd8ed1ab_0 - - curl=8.2.0=h5f667d7_0 + - curl=8.3.0=h5f667d7_0 - cypari2=2.1.3=py311h7d823c7_2 - deprecation=2.1.0=pyh9f0ad1d_0 - eclib=20230424=hd00e801_0 - - fonttools=4.41.1=py311h2725bcf_0 + - fonttools=4.43.1=py311he705e18_0 - fplll=5.4.4=hdfdc905_0 - - gfortran_impl_osx-64=12.2.0=hdfd80ef_32 + - gfortran_impl_osx-64=12.3.0=h54fd467_1 - gmpy2=2.1.2=py311hc5b4402_1 - - html5lib=1.1=pyh9f0ad1d_0 - importlib-metadata=6.8.0=pyha770c72_0 - - importlib_resources=6.0.0=pyhd8ed1ab_1 - - jedi=0.18.2=pyhd8ed1ab_0 + - importlib_resources=6.1.0=pyhd8ed1ab_0 + - jedi=0.19.1=pyhd8ed1ab_0 - jinja2=3.1.2=pyhd8ed1ab_1 - jupyterlab_pygments=0.2.2=pyhd8ed1ab_0 - - ld64=609=ha91a046_13 - - libblas=3.9.0=17_osx64_openblas - - libgd=2.3.3=h3d994df_6 + - ld64=609=ha02d983_14 + - libblas=3.9.0=18_osx64_openblas + - libgd=2.3.3=h0dceb68_9 - matplotlib-inline=0.1.6=pyhd8ed1ab_0 - memory-allocator=0.1.2=py311h5547dcb_2 - - openblas=0.3.23=openmp_hbefa662_0 - - overrides=7.3.1=pyhd8ed1ab_0 + - openblas=0.3.24=openmp_hd7704e8_0 + - overrides=7.4.0=pyhd8ed1ab_0 - pexpect=4.8.0=pyh1a96a4e_2 - - pillow=10.0.0=py311h7cb0e2d_0 + - pillow=10.0.1=py311h0beca62_2 - pip=23.2.1=pyhd8ed1ab_0 - - primecountpy=0.1.0=py311h5fe6e05_3 - - pybind11=2.11.1=py311h5fe6e05_0 - - pyobjc-core=9.2=py311hf110eff_0 - - pyproject-api=1.5.3=pyhd8ed1ab_0 + - primecountpy=0.1.0=py311h5fe6e05_4 + - pybind11=2.11.1=py311h5fe6e05_2 + - pyobjc-core=10.0=py311hf110eff_0 + - pyproject-api=1.6.1=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - - pytz-deprecation-shim=0.1.0.post0=py311h6eed73b_3 - - referencing=0.30.0=pyhd8ed1ab_0 + - pytz-deprecation-shim=0.1.0.post0=py311h6eed73b_4 + - referencing=0.30.2=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - sagemath-db-conway-polynomials=0.5.0=h033912b_1 - singular=4.2.1.p3=hac851df_2 - terminado=0.17.1=pyhd1c38e8_0 - tinycss2=1.2.1=pyhd8ed1ab_0 - - typing-extensions=4.7.1=hd8ed1ab_0 - - urllib3=2.0.4=pyhd8ed1ab_0 - - argon2-cffi-bindings=21.2.0=py311h5547dcb_3 - - cctools=973.0.1=hd9ad811_13 - - clang=15.0.7=h694c41f_2 - - harfbuzz=7.3.0=h413ba03_0 + - typing-extensions=4.8.0=hd8ed1ab_0 + - urllib3=2.0.6=pyhd8ed1ab_0 + - argon2-cffi-bindings=21.2.0=py311h2725bcf_4 + - arrow=1.3.0=pyhd8ed1ab_0 + - cctools=973.0.1=h40f6528_14 + - clang=16.0.6=hc177806_1 + - fqdn=1.5.1=pyhd8ed1ab_0 + - harfbuzz=8.2.1=h7666e2a_0 - hatchling=1.18.0=pyhd8ed1ab_0 - - importlib-resources=6.0.0=pyhd8ed1ab_1 + - importlib-resources=6.1.0=pyhd8ed1ab_0 - importlib_metadata=6.8.0=hd8ed1ab_0 - jsonschema-specifications=2023.7.1=pyhd8ed1ab_0 - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1 - - libcblas=3.9.0=17_osx64_openblas - - liblapack=3.9.0=17_osx64_openblas - - platformdirs=3.9.1=pyhd8ed1ab_0 - - poetry-core=1.6.1=pyhd8ed1ab_0 + - libcblas=3.9.0=18_osx64_openblas + - liblapack=3.9.0=18_osx64_openblas + - platformdirs=3.11.0=pyhd8ed1ab_0 - pplpy=0.8.7=py311h47e80fe_0 - - pyobjc-framework-cocoa=9.2=py311hf110eff_0 + - pyobjc-framework-cocoa=10.0=py311hf110eff_1 - requests=2.31.0=pyhd8ed1ab_0 - - setuptools-scm=7.1.0=pyhd8ed1ab_0 + - setuptools-scm=8.0.4=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 - sympy=1.12=pypyh9d50eac_103 - - wcwidth=0.2.6=pyhd8ed1ab_0 - - argon2-cffi=21.3.0=pyhd8ed1ab_0 - - clangxx=15.0.7=default_hdb78580_2 + - wcwidth=0.2.8=pyhd8ed1ab_0 + - argon2-cffi=23.1.0=pyhd8ed1ab_0 + - clangxx=16.0.6=default_h762fdd7_1 - dsdp=5.8=h6e329d1_1203 - fflas-ffpack=2.4.3=h026fd7e_2 - gsl=2.7=h93259b0_0 - iml=1.0.5=h64b42ca_1003 - - jsonschema=4.18.4=pyhd8ed1ab_0 - - jupyter_core=5.3.1=py311h6eed73b_0 - - liblapacke=3.9.0=17_osx64_openblas - - numpy=1.25.1=py311hc44ba51_0 - - pango=1.50.14=hbce5e75_1 - - pooch=1.7.0=pyha770c72_3 + - isoduration=20.11.0=pyhd8ed1ab_0 + - jsonschema=4.19.1=pyhd8ed1ab_0 + - jupyter_core=5.3.2=py311h6eed73b_0 + - liblapacke=3.9.0=18_osx64_openblas + - numpy=1.26.0=py311hc44ba51_0 + - pango=1.50.14=h19c1c8a_2 + - pooch=1.7.0=pyhd8ed1ab_4 - prompt-toolkit=3.0.39=pyha770c72_0 - send2trash=1.8.2=pyhd1c38e8_0 - - setuptools_scm=7.1.0=hd8ed1ab_0 - - sphinx=6.2.1=pyhd8ed1ab_0 + - setuptools_scm=8.0.4=hd8ed1ab_0 - suitesparse=5.10.1=h7aff33d_1 - - virtualenv=20.24.1=pyhd8ed1ab_0 - - blas-devel=3.9.0=17_osx64_openblas - - compiler-rt_osx-64=15.0.7=he1888fc_1 - - contourpy=1.1.0=py311h5fe6e05_0 - - cvxopt=1.3.1=py311ha4c19de_0 + - virtualenv=20.24.4=pyhd8ed1ab_0 + - blas-devel=3.9.0=18_osx64_openblas + - compiler-rt_osx-64=16.0.6=he1888fc_0 + - contourpy=1.1.1=py311h5fe6e05_1 + - cvxopt=1.3.2=py311ha4c19de_1 - fpylll=0.5.9=py311ha75317a_1 - giac=1.9.0.21=h92f3f65_1 - - jupyter_client=8.3.0=pyhd8ed1ab_0 - - jupyter_events=0.6.3=pyhd8ed1ab_0 + - jsonschema-with-format-nongpl=4.19.1=pyhd8ed1ab_0 + - jupyter_client=8.3.1=pyhd8ed1ab_0 - linbox=1.6.3=hdde8d14_7 - - nbformat=5.9.1=pyhd8ed1ab_0 + - nbformat=5.9.2=pyhd8ed1ab_0 - prompt_toolkit=3.0.39=hd8ed1ab_0 - scipy=1.10.1=py311h16c3c4d_3 - - sphinx-basic-ng=1.0.0b2=pyhd8ed1ab_0 - - sphinx-copybutton=0.5.2=pyhd8ed1ab_0 - - sphinxcontrib-websupport=1.2.4=pyhd8ed1ab_1 - - tox=4.6.4=pyhd8ed1ab_0 - - blas=2.117=openblas - - compiler-rt=15.0.7=he1888fc_1 - - furo=2023.5.20=pyhd8ed1ab_1 - - ipython=8.14.0=pyhd1c38e8_0 - - matplotlib-base=3.7.2=py311haff9b01_0 + - tox=4.11.3=pyhd8ed1ab_0 + - blas=2.118=openblas + - compiler-rt=16.0.6=he1888fc_0 + - ipython=8.16.1=pyh31c8845_0 + - jupyter_events=0.7.0=pyhd8ed1ab_2 + - matplotlib-base=3.8.0=py311haff9b01_0 - nbclient=0.8.0=pyhd8ed1ab_0 - - clang_osx-64=15.0.7=h03d6864_3 - - ipykernel=6.24.0=pyh5fb750a_0 - - matplotlib=3.7.2=py311h6eed73b_0 - - nbconvert-core=7.7.2=pyhd8ed1ab_0 - - c-compiler=1.6.0=h63c33a9_0 - - clangxx_osx-64=15.0.7=h2133e9c_3 - - gfortran_osx-64=12.2.0=h18f7dce_1 - - jupyter_server=2.7.0=pyhd8ed1ab_0 - - nbconvert-pandoc=7.7.2=pyhd8ed1ab_0 - - cxx-compiler=1.6.0=h1c7c39f_0 - - gfortran=12.2.0=h2c809b3_1 + - clang_osx-64=16.0.6=h8787910_1 + - ipykernel=6.25.2=pyh1050b4e_0 + - matplotlib=3.8.0=py311h6eed73b_0 + - nbconvert-core=7.9.2=pyhd8ed1ab_0 + - clangxx_osx-64=16.0.6=h1b7723c_1 + - gfortran_osx-64=12.3.0=h18f7dce_1 + - jupyter_server=2.7.3=pyhd8ed1ab_1 + - nbconvert-pandoc=7.9.2=pyhd8ed1ab_0 + - gfortran=12.3.0=h2c809b3_1 - jupyter-lsp=2.2.0=pyhd8ed1ab_0 - - jupyterlab_server=2.24.0=pyhd8ed1ab_0 - - nbconvert=7.7.2=pyhd8ed1ab_0 + - jupyterlab_server=2.25.0=pyhd8ed1ab_0 + - nbconvert=7.9.2=pyhd8ed1ab_0 - notebook-shim=0.2.3=pyhd8ed1ab_0 - - pythran=0.13.1=py311hd5c4f45_0 - - r-base=4.3.1=had2b78c_3 + - pythran=0.14.0=py311hd5c4f45_1 + - r-base=4.3.1=h0ff45fa_6 - fortran-compiler=1.6.0=h932d759_0 - - jupyterlab=4.0.3=pyhd8ed1ab_0 - - rpy2=3.5.11=py311r43h4a70a88_2 - - compilers=1.6.0=h694c41f_0 - - notebook=7.0.0=pyhd8ed1ab_0 - - widgetsnbextension=3.6.4=pyhd8ed1ab_0 - - ipywidgets=7.7.5=pyhd8ed1ab_0 + - jupyterlab=4.0.6=pyhd8ed1ab_0 + - rpy2=3.5.11=py311r43h4a70a88_3 + - notebook=7.0.4=pyhd8ed1ab_0 + - widgetsnbextension=3.6.6=pyhd8ed1ab_0 + - ipywidgets=7.8.0=pyhd8ed1ab_0 - jupyter-jsmol=2022.1.0=pyhd8ed1ab_0 - 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 diff --git a/src/environment-3.9-linux.yml b/src/environment-3.9-linux.yml index 4a177aa9cd5..e47d25e27fa 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: ab1db99fadd311cf79b0f592eaa1104f93279e5beedbc3661c62e72843d04b41 +# input_hash: e041645ebae12638f8678ee36d506c791f19fb30c711e055eaafa87040212d2f channels: - conda-forge @@ -14,41 +14,38 @@ dependencies: - font-ttf-ubuntu=0.83=hab24e00_0 - kernel-headers_linux-64=2.6.32=he073ed8_16 - ld_impl_linux-64=2.40=h41732ed_0 - - libgcc-devel_linux-64=12.3.0=h8bca6fd_0 - - libgfortran5=13.1.0=h15d22d2_0 - - libstdcxx-devel_linux-64=12.3.0=h8bca6fd_0 - - libstdcxx-ng=13.1.0=hfd8a6a1_0 + - libboost-headers=1.82.0=ha770c72_6 + - libgcc-devel_linux-64=12.3.0=h8bca6fd_2 + - libstdcxx-devel_linux-64=12.3.0=h8bca6fd_2 + - libstdcxx-ng=13.2.0=h7e041cc_2 - mathjax=3.2.2=ha770c72_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 - - python_abi=3.9=3_cp39 + - 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 - fonts-conda-forge=1=0 - - libgfortran-ng=13.1.0=h69a702a_0 - - libgomp=13.1.0=he5830b7_0 + - libgomp=13.2.0=h807b86a_2 - pari-seadata=0.0.20090618=0 - sysroot_linux-64=2.12=he073ed8_16 - threejs-sage=122=hd8ed1ab_2 - binutils_impl_linux-64=2.40=hf600244_0 - fonts-conda-ecosystem=1=0 - binutils=2.40=hdd6e379_0 - - binutils_linux-64=2.40=hbdbef99_1 + - binutils_linux-64=2.40=hbdbef99_2 - _openmp_mutex=4.5=2_kmp_llvm - - libgcc-ng=13.1.0=he5830b7_0 - - alsa-lib=1.2.8=h166bdaf_0 + - libgcc-ng=13.2.0=h807b86a_2 + - alsa-lib=1.2.10=hd590300_0 - attr=2.5.1=h166bdaf_1 - - bc=1.07.1=h7f98852_0 - bdw-gc=8.0.6=h4bd325d_0 - bzip2=1.0.8=h7f98852_4 - c-ares=1.19.1=hd590300_0 - cliquer=1.22=h36c2ea0_0 - - fftw=3.3.10=nompi_hc118613_108 - fribidi=1.0.10=h36c2ea0_0 - gengetopt=2.23=h9c3ff4c_0 - gettext=0.21.1=h27087fc_0 @@ -56,57 +53,55 @@ dependencies: - giflib=5.2.1=h0b41bf4_3 - gmp=6.2.1=h58526e2_0 - graphite2=1.3.13=h58526e2_1001 - - icu=72.1=hcb278e6_0 + - 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.1=h58526e2_0 - - libbrotlicommon=1.0.9=h166bdaf_9 - - libdeflate=1.18=h0b41bf4_0 + - libbrotlicommon=1.1.0=hd590300_1 + - libdeflate=1.19=hd590300_0 - libev=4.33=h516909a_1 - libexpat=2.5.0=hcb278e6_1 - libffi=3.4.2=h7f98852_5 + - libgfortran5=13.2.0=ha4646dd_2 - libiconv=1.17=h166bdaf_0 - - libjpeg-turbo=2.1.5.1=h0b41bf4_0 - - libnsl=2.0.0=h7f98852_0 + - libjpeg-turbo=2.1.5.1=hd590300_1 + - libnsl=2.0.0=hd590300_1 - libogg=1.3.4=h7f98852_1 - - libopenblas=0.3.23=pthreads_h80387f5_0 - libopus=1.3.1=h7f98852_1 - - libsanitizer=12.3.0=h0f45ef3_0 + - libsanitizer=12.3.0=h0f45ef3_2 - libsodium=1.0.18=h36c2ea0_1 - libtool=2.4.7=h27087fc_0 - libuuid=2.38.1=h0b41bf4_0 - - libuv=1.44.2=h166bdaf_0 - - libwebp-base=1.3.1=hd590300_0 + - libuv=1.46.0=hd590300_0 + - libwebp-base=1.3.2=hd590300_0 - 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_0 - - mpg123=1.31.3=hcb278e6_0 + - metis=5.1.0=h59595ed_1007 + - mpg123=1.32.3=h59595ed_0 - nauty=2.7.2=h7f98852_0 - ncurses=6.4=hcb278e6_0 - ninja=1.11.1=h924138e_0 - nspr=4.35=h27087fc_0 - - openssl=3.1.1=hd590300_1 + - openssl=3.1.3=hd590300_0 - palp=2.20=h36c2ea0_0 - patch=2.7.6=h7f98852_1002 - - pixman=0.40.0=h36c2ea0_0 + - pixman=0.42.2=h59595ed_0 - pkg-config=0.29.2=h36c2ea0_1008 - planarity=3.0.0.5=h36c2ea0_1002 - - primesieve=11.0=hcb278e6_0 + - primesieve=11.1=h59595ed_0 - pthread-stubs=0.4=h36c2ea0_1001 - - qd=2.3.22=h2cc385e_1004 - qhull=2020.2=h4bd325d_2 - - rhash=1.4.3=h166bdaf_0 + - rhash=1.4.4=hd590300_0 - sed=4.8=he412f7d_0 - symmetrica=3.0.1=hcb278e6_0 - - xkeyboard-config=2.38=h0b41bf4_0 - xorg-inputproto=2.3.2=h7f98852_1002 - xorg-kbproto=1.0.7=h7f98852_1002 - - xorg-libice=1.0.10=h7f98852_0 + - 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 @@ -119,185 +114,181 @@ dependencies: - 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_0 + - gcc_impl_linux-64=12.3.0=he2b93b0_2 - givaro=4.1.1=h192cbe9_1 - glpk=5.0=h445213a_0 - - libblas=3.9.0=17_linux64_openblas - - libbrotlidec=1.0.9=h166bdaf_9 - - libbrotlienc=1.0.9=h166bdaf_9 - - libcap=2.67=he9d0100_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_2 - libgpg-error=1.47=h71f35ed_0 - libhomfly=1.02r6=h36c2ea0_0 - libnghttp2=1.52.0=h61bc06f_0 - libpng=1.6.39=h753d276_0 - - libsqlite=3.42.0=h2797004_0 + - libsqlite=3.43.0=h2797004_0 - libssh2=1.11.0=h0841786_0 - libvorbis=1.3.7=h9c3ff4c_0 - - libxcb=1.13=h7f98852_1004 - - libxml2=2.10.4=hfdac1af_0 + - libxcb=1.15=h0b41bf4_0 + - libxml2=2.11.5=h232c23b_1 - mpfr=4.2.0=hb012696_0 - - mysql-common=8.0.33=hf1915f5_2 + - mysql-common=8.0.33=hf1915f5_5 - ntl=11.4.3=hef3c4d3_1 - - openblas=0.3.23=pthreads_h855a84d_0 - pcre2=10.40=hc3806b6_0 - perl=5.32.1=4_hd590300_perl5 - - primecount=7.6=hcb278e6_0 + - primecount=7.9=hcb278e6_0 - readline=8.2=h8228510_1 - - tar=1.34=hb2e2bae_1 - - tk=8.6.12=h27826a3_0 + - tk=8.6.13=h2797004_0 - xorg-fixesproto=5.0=h7f98852_1002 - - xorg-libsm=1.2.3=hd9c2040_1000 + - xorg-libsm=1.2.4=h7391055_0 - zeromq=4.3.4=h9c3ff4c_1 - zlib=1.2.13=hd590300_5 - - zstd=1.5.2=hfc55251_7 + - zstd=1.5.5=hfc55251_0 - autoconf=2.71=pl5321h2b4cb7a_1 - - boost-cpp=1.82.0=he19a28c_1 - - brotli-bin=1.0.9=h166bdaf_9 + - brotli-bin=1.1.0=hd590300_1 - bwidget=1.9.14=ha770c72_1 - ecl=21.2.1=h9d73b02_2 - - fplll=5.4.4=h8780c30_0 - - freetype=2.12.1=hca18f0e_1 + - 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_1 - - gcc_linux-64=12.3.0=h76fc315_1 + - 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_0 - - gxx_impl_linux-64=12.3.0=he2b93b0_0 - - krb5=1.20.1=h81ceb04_0 - - libcblas=3.9.0=17_linux64_openblas + - gfortran_impl_linux-64=12.3.0=hfcedea8_2 + - gxx_impl_linux-64=12.3.0=he2b93b0_2 + - igraph=0.7.1=0 + - krb5=1.21.2=h659d440_0 + - libboost=1.82.0=h6fcfa73_6 - libflint=2.9.0=h2f819a4_ntl_100 - libgcrypt=1.10.1=h166bdaf_0 - - libglib=2.76.4=hebfc3b9_0 - - libhwloc=2.9.1=hd6dc26d_0 - - liblapack=3.9.0=17_linux64_openblas - - libllvm16=16.0.3=hbf9e925_1 - - libsndfile=1.2.0=hb75c966_0 - - libtiff=4.5.1=h8b53f26_0 - - libxkbcommon=1.5.0=h79f4944_1 - - llvm-openmp=16.0.6=h4dfa4b3_0 + - libglib=2.78.0=hebfc3b9_0 + - libhwloc=2.9.3=default_h554bfaf_1009 + - libllvm15=15.0.7=h5cf9203_3 + - libopenblas=0.3.24=pthreads_h413a1c8_0 + - libsndfile=1.2.2=hc60ed4a_1 + - libtiff=4.6.0=h29866fb_1 + - llvm-openmp=17.0.2=h4dfa4b3_0 - m4ri=20140914=h7ca028e_1005 - mpc=1.3.1=hfe3b2da_0 - mpfi=1.5.4=h9f54685_1001 - - mysql-libs=8.0.33=hca2cd23_2 - - nss=3.89=he45b914_0 + - mysql-libs=8.0.33=hca2cd23_5 + - nss=3.94=h1d7d5a4_0 - pandoc=3.1.3=h32600fe_0 - pari=2.15.4=h4d4ae9b_2_pthread - ppl=1.2=h6ec01c2_1006 - - python=3.9.16=h2782a2a_0_cpython - - sqlite=3.42.0=h2c6b66d_0 + - python=3.9.18=h0755675_0_cpython + - qd=2.3.22=h2cc385e_1004 + - sqlite=3.43.0=h2c6b66d_0 - tachyon=0.99b6=0 - texinfo=7.0=pl5321h0f457ee_0 - - tktable=2.10=hb7b940f_3 - - xcb-util=0.4.0=h516909a_0 - - xcb-util-keysyms=0.4.0=h516909a_0 - - xcb-util-renderutil=0.3.9=h166bdaf_0 - - xcb-util-wm=0.4.1=h516909a_0 - - xorg-libx11=1.8.4=h0b41bf4_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.6=h8ee46fc_0 - alabaster=0.7.13=pyhd8ed1ab_0 - appdirs=1.4.4=pyh9f0ad1d_0 - appnope=0.1.3=pyhd8ed1ab_0 - arb=2.23.0=h44d021b_0 - - arpack=3.7.0=hdefa2d7_2 - attrs=23.1.0=pyh71513ae_1 - automake=1.16.5=pl5321ha770c72_0 - backcall=0.2.0=pyh9f0ad1d_0 - backports=1.0=pyhd8ed1ab_3 - - backports.zoneinfo=0.2.1=py39hf3d152e_7 - - brotli=1.0.9=h166bdaf_9 - - brotli-python=1.0.9=py39h5a03fae_9 + - 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.1=pyhd8ed1ab_0 - certifi=2023.7.22=pyhd8ed1ab_0 - - chardet=5.1.0=py39hf3d152e_0 - - charset-normalizer=3.2.0=pyhd8ed1ab_0 + - chardet=5.2.0=py39hf3d152e_1 + - charset-normalizer=3.3.0=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_0 - - cycler=0.11.0=pyhd8ed1ab_0 - - cysignals=1.11.2=py39h1ce0973_2 - - cython=0.29.36=py39h3d6467e_0 + - cycler=0.12.1=pyhd8ed1ab_0 + - cysignals=1.11.2=py39h1ce0973_3 + - cython=0.29.36=py39h3d6467e_1 - dbus=1.13.6=h5008d03_3 - - debugpy=1.6.7=py39h227be39_0 + - debugpy=1.8.0=py39h3d6467e_1 - decorator=5.1.1=pyhd8ed1ab_0 - defusedxml=0.7.1=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - - docutils=0.19=py39hf3d152e_1 - - dsdp=5.8=hd9d9efa_1203 + - docutils=0.20.1=py39hf3d152e_2 - eclib=20230424=hdef1efb_0 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 - - exceptiongroup=1.1.2=pyhd8ed1ab_0 + - exceptiongroup=1.1.3=pyhd8ed1ab_0 - executing=1.2.0=pyhd8ed1ab_0 - - fflas-ffpack=2.4.3=h912ac81_2 - - filelock=3.12.2=pyhd8ed1ab_0 + - filelock=3.12.4=pyhd8ed1ab_0 - flit-core=3.9.0=pyhd8ed1ab_0 - fontconfig=2.14.2=h14ed4e7_0 + - fplll=5.4.4=h8780c30_0 - gap-defaults=4.12.2=ha770c72_3 - gast=0.5.4=pyhd8ed1ab_0 - - gfortran=12.3.0=h499e0f7_1 - - gfortran_linux-64=12.3.0=h7fe76b4_1 - - glib-tools=2.76.4=hfc55251_0 + - gfortran=12.3.0=h499e0f7_2 + - gfortran_linux-64=12.3.0=h7fe76b4_2 + - glib-tools=2.78.0=hfc55251_0 - gmpy2=2.1.2=py39h376b7d2_1 - - gsl=2.7=he838d99_0 - - gxx=12.3.0=h8d2909c_1 - - gxx_linux-64=12.3.0=h8a814eb_1 + - gxx_linux-64=12.3.0=h8a814eb_2 - idna=3.4=pyhd8ed1ab_0 - imagesize=1.4.1=pyhd8ed1ab_0 - - iml=1.0.5=hd75c201_1003 - ipython_genutils=0.2.0=py_1 - json5=0.9.14=pyhd8ed1ab_0 - - jupyterlab_widgets=1.1.1=pyhd8ed1ab_0 - - kiwisolver=1.4.4=py39hf939315_1 + - jsonpointer=2.4=py39hf3d152e_3 + - jupyterlab_widgets=1.1.7=pyhd8ed1ab_0 + - kiwisolver=1.4.5=py39h7633fee_1 - lcalc=2.0.5=h6a8a7c6_1 - - lcms2=2.15=haa2dc70_1 - - libbrial=1.2.12=h138cd66_0 - - libclang13=16.0.3=default_h4d60ac6_2 - - libcups=2.3.3=h36d4200_3 - - libcurl=8.1.2=h409715c_0 - - liblapacke=3.9.0=17_linux64_openblas - - libpq=15.3=hbcd7760_1 - - libsystemd0=253=h8c4010b_1 - - libwebp=1.3.1=hbf2b3c1_0 + - lcms2=2.15=h7f713cb_2 + - libblas=3.9.0=18_linux64_openblas + - libboost-devel=1.82.0=h00ab1b0_6 + - libbrial=1.2.12=h3155cbd_1 + - libclang13=15.0.7=default_h9986a30_3 + - libcups=2.3.3=h4637d8d_4 + - libcurl=8.3.0=hca28451_0 + - libpq=15.4=hfc447b1_2 + - libsystemd0=254=h3516f8a_0 + - libwebp=1.3.2=hdffd6e0_0 - m4rie=20150908=h7ca028e_1001 - - markupsafe=2.1.3=py39hd1e30aa_0 + - markupsafe=2.1.3=py39hd1e30aa_1 - maxima=5.45.0=h9d73b02_3 - - mistune=3.0.0=pyhd8ed1ab_0 + - mistune=3.0.1=pyhd8ed1ab_0 - mpmath=1.3.0=pyhd8ed1ab_0 - munkres=1.1.4=pyh9f0ad1d_0 - nest-asyncio=1.5.6=pyhd8ed1ab_0 - networkx=2.8.8=pyhd8ed1ab_0 - - numpy=1.25.1=py39h6183b62_0 - - openjpeg=2.5.0=hfec8fc6_2 - - packaging=23.1=pyhd8ed1ab_0 + - openblas=0.3.24=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.11.1=pyhd8ed1ab_0 + - pathspec=0.11.2=pyhd8ed1ab_0 - pickleshare=0.7.5=py_1003 - pkgconfig=1.5.5=pyhd8ed1ab_4 - - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_0 - - pluggy=1.2.0=pyhd8ed1ab_0 + - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 + - pluggy=1.3.0=pyhd8ed1ab_0 - ply=3.11=py_1 - prometheus_client=0.17.1=pyhd8ed1ab_0 - - psutil=5.9.5=py39h72bdee0_0 + - psutil=5.9.5=py39hd1e30aa_1 - 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_0 + - pybind11-global=2.11.1=py39h7633fee_2 - pycparser=2.21=pyhd8ed1ab_0 - - pygments=2.15.1=pyhd8ed1ab_0 - - pyparsing=3.0.9=pyhd8ed1ab_0 - - pyrsistent=0.19.3=py39h72bdee0_0 + - pygments=2.16.1=pyhd8ed1ab_0 + - pyparsing=3.1.1=pyhd8ed1ab_0 + - pyrsistent=0.19.3=py39hd1e30aa_1 - pysocks=1.7.1=pyha2e5f31_6 - - python-fastjsonschema=2.18.0=pyhd8ed1ab_0 + - python-fastjsonschema=2.18.1=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=pyhd8ed1ab_0 - - pyyaml=6.0=py39hb9d737c_5 - - pyzmq=25.1.0=py39hb257651_0 + - pytz=2023.3.post1=pyhd8ed1ab_0 + - pyyaml=6.0.1=py39hd1e30aa_1 + - pyzmq=25.1.1=py39hb257651_1 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.9.2=py39h9fdd4d6_0 + - rpds-py=0.10.4=py39h9fdd4d6_0 + - rw=0.8=h516909a_1001 - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 - sagetex=3.6.1=pyhd8ed1ab_0 - send2trash=1.8.2=pyh41d4057_0 @@ -307,156 +298,168 @@ dependencies: - six=1.16.0=pyh6c4a22f_0 - sniffio=1.3.0=pyhd8ed1ab_0 - snowballstemmer=2.2.0=pyhd8ed1ab_0 - - soupsieve=2.3.2.post1=pyhd8ed1ab_0 - - sphinxcontrib-applehelp=1.0.4=pyhd8ed1ab_0 - - sphinxcontrib-devhelp=1.0.2=py_0 - - sphinxcontrib-htmlhelp=2.0.1=pyhd8ed1ab_0 - - sphinxcontrib-jsmath=1.0.1=py_0 - - sphinxcontrib-qthelp=1.0.3=py_0 - - sphinxcontrib-serializinghtml=1.1.5=pyhd8ed1ab_2 + - soupsieve=2.5=pyhd8ed1ab_1 + - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_0 - sympow=2.023.6=hc6ab17c_3 - - tbb=2021.9.0=hf52228f_0 + - tbb=2021.10.0=h00ab1b0_1 - toml=0.10.2=pyhd8ed1ab_0 - tomli=2.0.1=pyhd8ed1ab_0 - - tomlkit=0.11.8=pyha770c72_0 - - tornado=6.3.2=py39hd1e30aa_0 - - traitlets=5.9.0=pyhd8ed1ab_0 - - trove-classifiers=2023.7.6=pyhd8ed1ab_0 - - typing_extensions=4.7.1=pyha770c72_0 + - tornado=6.3.3=py39hd1e30aa_1 + - traitlets=5.11.2=pyhd8ed1ab_0 + - trove-classifiers=2023.9.19=pyhd8ed1ab_0 + - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 + - typing_extensions=4.8.0=pyha770c72_0 - typing_utils=0.1.0=pyhd8ed1ab_0 - - tzlocal=5.0.1=py39hf3d152e_0 - - unicodedata2=15.0.0=py39hb9d737c_0 + - tzlocal=5.1=py39hf3d152e_0 + - unicodedata2=15.1.0=py39hd1e30aa_0 + - uri-template=1.3.0=pyhd8ed1ab_0 - vcversioner=2.16.0.0=py_1 - - webencodings=0.5.1=py_1 - - websocket-client=1.6.1=pyhd8ed1ab_0 - - wheel=0.41.0=pyhd8ed1ab_0 - - xcb-util-image=0.4.0=h166bdaf_0 + - webcolors=1.13=pyhd8ed1ab_0 + - webencodings=0.5.1=pyhd8ed1ab_2 + - websocket-client=1.6.4=pyhd8ed1ab_0 + - wheel=0.41.2=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.10=h7f98852_1003 - - xorg-libxt=1.3.0=hd590300_0 - - zipp=3.16.2=pyhd8ed1ab_0 - - anyio=3.7.1=pyhd8ed1ab_0 - - asttokens=2.2.1=pyhd8ed1ab_0 - - async-lru=2.0.3=pyhd8ed1ab_0 + - xorg-libxrender=0.9.11=hd590300_0 + - xorg-libxt=1.3.0=hd590300_1 + - zipp=3.17.0=pyhd8ed1ab_0 + - anyio=4.0.0=pyhd8ed1ab_0 + - asttokens=2.4.0=pyhd8ed1ab_0 + - async-lru=2.0.4=pyhd8ed1ab_0 - babel=2.12.1=pyhd8ed1ab_1 - backports.functools_lru_cache=1.6.5=pyhd8ed1ab_0 - beautifulsoup4=4.12.2=pyha770c72_0 - beniget=0.4.1=pyhd8ed1ab_0 - - blas-devel=3.9.0=17_linux64_openblas - - bleach=6.0.0=pyhd8ed1ab_0 - - brial=1.2.12=pyha3edaa6_0 - - cairo=1.16.0=h35add3b_1015 - - cffi=1.15.1=py39he91dace_3 - - cmake=3.26.4=hcfe8598_0 - - comm=0.1.3=pyhd8ed1ab_0 - - contourpy=1.1.0=py39h7633fee_0 + - bleach=6.1.0=pyhd8ed1ab_0 + - boost-cpp=1.82.0=h44aadfe_6 + - brial=1.2.12=pyh694c41f_1 + - cached-property=1.5.2=hd8ed1ab_1 + - cairo=1.16.0=h0c91306_1017 + - cffi=1.16.0=py39h7a31438_0 + - cmake=3.27.6=hcfe8598_0 + - comm=0.1.4=pyhd8ed1ab_0 - cppy=1.2.1=pyhd8ed1ab_0 - - curl=8.1.2=h409715c_0 - - cxx-compiler=1.6.0=h00ab1b0_0 + - curl=8.3.0=hca28451_0 - cypari2=2.1.3=py39h1698a45_2 - deprecation=2.1.0=pyh9f0ad1d_0 - - fonttools=4.41.1=py39hd1e30aa_0 + - fonttools=4.43.1=py39hd1e30aa_0 - fortran-compiler=1.6.0=heb67821_0 - - fpylll=0.5.9=py39hf60ab73_1 - - giac=1.9.0.21=h673759e_1 - - glib=2.76.4=hfc55251_0 - - html5lib=1.1=pyh9f0ad1d_0 + - glib=2.78.0=hfc55251_0 - importlib-metadata=6.8.0=pyha770c72_0 - - importlib_resources=6.0.0=pyhd8ed1ab_1 - - jedi=0.18.2=pyhd8ed1ab_0 + - importlib_resources=6.1.0=pyhd8ed1ab_0 + - jedi=0.19.1=pyhd8ed1ab_0 - jinja2=3.1.2=pyhd8ed1ab_1 - jupyterlab_pygments=0.2.2=pyhd8ed1ab_0 - - libclang=16.0.3=default_h1cdf331_2 - - libgd=2.3.3=hfa28ad5_6 - - linbox=1.6.3=h9d78c56_7 + - libcblas=3.9.0=18_linux64_openblas + - libclang=15.0.7=default_h7634d5b_3 + - libgd=2.3.3=he9388d3_8 + - liblapack=3.9.0=18_linux64_openblas + - libxkbcommon=1.6.0=h5d7e998_0 - matplotlib-inline=0.1.6=pyhd8ed1ab_0 - memory-allocator=0.1.2=py39hb9d737c_2 - - overrides=7.3.1=pyhd8ed1ab_0 + - overrides=7.4.0=pyhd8ed1ab_0 - pexpect=4.8.0=pyh1a96a4e_2 - - pillow=9.5.0=py39h7207d5c_0 + - pillow=10.0.1=py39h444a776_1 - pip=23.2.1=pyhd8ed1ab_0 - pplpy=0.8.7=py39hba3e9e5_0 - - primecountpy=0.1.0=py39h7633fee_3 - - pulseaudio-client=16.1=hb77b528_4 - - pybind11=2.11.1=py39h7633fee_0 - - pyproject-api=1.5.3=pyhd8ed1ab_0 + - primecountpy=0.1.0=py39h7633fee_4 + - pulseaudio-client=16.1=hb77b528_5 + - pybind11=2.11.1=py39h7633fee_2 + - pyproject-api=1.6.1=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - - pytz-deprecation-shim=0.1.0.post0=py39hf3d152e_3 - - referencing=0.30.0=pyhd8ed1ab_0 + - pytz-deprecation-shim=0.1.0.post0=py39hf3d152e_4 + - referencing=0.30.2=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - sagemath-db-conway-polynomials=0.5.0=ha878542_1 - - sip=6.7.10=py39h3d6467e_0 - - suitesparse=5.10.1=h9e50725_1 + - sip=6.7.11=py39h3d6467e_1 - sympy=1.12=pypyh9d50eac_103 - terminado=0.17.1=pyh41d4057_0 - tinycss2=1.2.1=pyhd8ed1ab_0 - - typing-extensions=4.7.1=hd8ed1ab_0 - - urllib3=2.0.4=pyhd8ed1ab_0 + - typing-extensions=4.8.0=hd8ed1ab_0 + - urllib3=2.0.6=pyhd8ed1ab_0 - xorg-libxi=1.7.10=h7f98852_0 - - argon2-cffi-bindings=21.2.0=py39hb9d737c_3 - - blas=2.117=openblas - - compilers=1.6.0=ha770c72_0 - - cvxopt=1.3.1=py39hef4d4b4_0 - - gstreamer=1.22.0=h25f0c4b_2 - - harfbuzz=7.3.0=hdb3a94d_0 + - argon2-cffi-bindings=21.2.0=py39hd1e30aa_4 + - arrow=1.3.0=pyhd8ed1ab_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.6=h98fc4e7_2 + - harfbuzz=8.2.1=h3d44ed6_0 - hatchling=1.18.0=pyhd8ed1ab_0 - - igraph=0.9.10=ha1f048c_1 - - importlib-resources=6.0.0=pyhd8ed1ab_1 + - iml=1.0.5=hd75c201_1003 + - importlib-resources=6.1.0=pyhd8ed1ab_0 - importlib_metadata=6.8.0=hd8ed1ab_0 - jsonschema-specifications=2023.7.1=pyhd8ed1ab_0 - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1 - - platformdirs=3.9.1=pyhd8ed1ab_0 - - poetry-core=1.6.1=pyhd8ed1ab_0 - - pyqt5-sip=12.11.0=py39h227be39_3 - - pythran=0.13.1=py39hf86192f_0 + - liblapacke=3.9.0=18_linux64_openblas + - numpy=1.26.0=py39h474f0d3_0 + - platformdirs=3.11.0=pyhd8ed1ab_0 + - pyqt5-sip=12.12.2=py39h3d6467e_5 - requests=2.31.0=pyhd8ed1ab_0 - - setuptools-scm=7.1.0=pyhd8ed1ab_0 + - setuptools-scm=8.0.4=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 - - wcwidth=0.2.6=pyhd8ed1ab_0 + - suitesparse=5.10.1=h9e50725_1 + - wcwidth=0.2.8=pyhd8ed1ab_0 - xorg-libxtst=1.2.3=h7f98852_1002 - - argon2-cffi=21.3.0=pyhd8ed1ab_0 - - gst-plugins-base=1.22.0=h4243ec0_2 - - jsonschema=4.18.4=pyhd8ed1ab_0 - - jupyter_core=5.3.1=py39hf3d152e_0 - - matplotlib-base=3.7.2=py39h0126182_0 - - openjdk=17.0.3=h19c1b89_7 - - pango=1.50.14=heaa33ce_1 - - pooch=1.7.0=pyha770c72_3 + - argon2-cffi=23.1.0=pyhd8ed1ab_0 + - blas-devel=3.9.0=18_linux64_openblas + - contourpy=1.1.1=py39h7633fee_1 + - cvxopt=1.3.2=py39hef4d4b4_1 + - fpylll=0.5.9=py39hf60ab73_1 + - giac=1.9.0.21=h673759e_1 + - gst-plugins-base=1.22.6=h8e1006c_2 + - isoduration=20.11.0=pyhd8ed1ab_0 + - jsonschema=4.19.1=pyhd8ed1ab_0 + - jupyter_core=5.3.2=py39hf3d152e_0 + - linbox=1.6.3=h9d78c56_7 + - openjdk=20.0.2=hfea2f88_1 + - pango=1.50.14=ha41ecd1_2 + - pooch=1.7.0=pyhd8ed1ab_4 - prompt-toolkit=3.0.39=pyha770c72_0 - - rw=0.9=h7f98852_0 - - setuptools_scm=7.1.0=hd8ed1ab_0 - - sphinx=6.2.1=pyhd8ed1ab_0 - - virtualenv=20.24.2=pyhd8ed1ab_0 + - pythran=0.14.0=py39hda80f44_1 + - setuptools_scm=8.0.4=hd8ed1ab_0 + - virtualenv=20.24.4=pyhd8ed1ab_0 + - blas=2.118=openblas - jmol=14.32.10=ha770c72_0 - - jupyter_client=8.3.0=pyhd8ed1ab_0 - - jupyter_events=0.6.3=pyhd8ed1ab_0 - - nbformat=5.9.1=pyhd8ed1ab_0 + - jsonschema-with-format-nongpl=4.19.1=pyhd8ed1ab_0 + - jupyter_client=8.3.1=pyhd8ed1ab_0 + - matplotlib-base=3.8.0=py39he9076e7_1 + - nbformat=5.9.2=pyhd8ed1ab_0 - prompt_toolkit=3.0.39=hd8ed1ab_0 - - qt-main=5.15.8=haa3a1c2_11 - - r-base=4.3.0=h0fc540b_0 + - qt-main=5.15.8=hc47bfe8_16 + - r-base=4.3.1=h639d9d3_5 - scipy=1.10.1=py39h6183b62_3 - - sphinx-basic-ng=1.0.0b2=pyhd8ed1ab_0 - - sphinx-copybutton=0.5.2=pyhd8ed1ab_0 - - sphinxcontrib-websupport=1.2.4=pyhd8ed1ab_1 - - tox=4.6.4=pyhd8ed1ab_0 - - furo=2023.5.20=pyhd8ed1ab_1 - - ipython=8.14.0=pyh41d4057_0 + - tox=4.11.3=pyhd8ed1ab_0 + - ipython=8.16.1=pyh0d859eb_0 + - jupyter_events=0.7.0=pyhd8ed1ab_2 - nbclient=0.8.0=pyhd8ed1ab_0 - - pyqt=5.15.7=py39h5c7b992_3 - - rpy2=3.5.11=py39r43h0f8d45d_2 - - ipykernel=6.24.0=pyh71e2992_0 - - matplotlib=3.7.2=py39hf3d152e_0 - - nbconvert-core=7.7.2=pyhd8ed1ab_0 - - jupyter_server=2.7.0=pyhd8ed1ab_0 - - nbconvert-pandoc=7.7.2=pyhd8ed1ab_0 + - pyqt=5.15.9=py39h52134e7_5 + - rpy2=3.5.11=py39r43h44dd56e_3 + - ipykernel=6.25.2=pyh2140261_0 + - matplotlib=3.8.0=py39hf3d152e_1 + - nbconvert-core=7.9.2=pyhd8ed1ab_0 + - jupyter_server=2.7.3=pyhd8ed1ab_1 + - nbconvert-pandoc=7.9.2=pyhd8ed1ab_0 - jupyter-lsp=2.2.0=pyhd8ed1ab_0 - - jupyterlab_server=2.24.0=pyhd8ed1ab_0 - - nbconvert=7.7.2=pyhd8ed1ab_0 + - jupyterlab_server=2.25.0=pyhd8ed1ab_0 + - nbconvert=7.9.2=pyhd8ed1ab_0 - notebook-shim=0.2.3=pyhd8ed1ab_0 - - jupyterlab=4.0.3=pyhd8ed1ab_0 - - notebook=7.0.0=pyhd8ed1ab_0 - - widgetsnbextension=3.6.4=pyhd8ed1ab_0 - - ipywidgets=7.7.5=pyhd8ed1ab_0 + - jupyterlab=4.0.6=pyhd8ed1ab_0 + - notebook=7.0.4=pyhd8ed1ab_0 + - widgetsnbextension=3.6.6=pyhd8ed1ab_0 + - ipywidgets=7.8.0=pyhd8ed1ab_0 - jupyter-jsmol=2022.1.0=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.yml b/src/environment-3.9-macos.yml index 699cae8cd7d..965af71e3e8 100644 --- a/src/environment-3.9-macos.yml +++ b/src/environment-3.9-macos.yml @@ -1,12 +1,11 @@ # Generated by conda-lock. # platform: osx-64 -# input_hash: 8c63ac3706fab6b3a6d50a09a4ebb30894eb1aad278330e283069e0aa71b607a +# input_hash: e317c97c2c45f0e931b5e55936c1ed828e13490a0988d2ef4cb51a895532c1a4 channels: - conda-forge dependencies: - _r-mutex=1.0.1=anacondar_1 - - bc=1.07.1=h0d85af4_0 - bzip2=1.0.8=h0d85af4_4 - c-ares=1.19.1=h0dc2134_0 - ca-certificates=2023.7.22=h8857fd0_0 @@ -17,27 +16,28 @@ dependencies: - font-ttf-ubuntu=0.83=hab24e00_0 - fribidi=1.0.10=hbcb3906_0 - giflib=5.2.1=hb7f2c08_3 - - icu=72.1=h7336db1_0 + - icu=73.2=hf5e326d_0 - libatomic_ops=7.6.14=hb7f2c08_0 - - libbrotlicommon=1.0.9=hb7f2c08_9 + - libboost-headers=1.82.0=h694c41f_6 + - libbrotlicommon=1.1.0=h0dc2134_1 - libcxx=16.0.6=hd57cbcb_0 - - libdeflate=1.18=hac1461d_0 + - libdeflate=1.19=ha4e1b8e_0 - libev=4.33=haf1e3a3_1 - libexpat=2.5.0=hf0c8a7f_1 - libffi=3.4.2=h0d85af4_5 - - libgfortran-devel_osx-64=12.2.0=hf0fd499_32 + - libgfortran-devel_osx-64=12.3.0=h0b6f5ec_1 - libiconv=1.17=hac89ed1_0 - - libjpeg-turbo=2.1.5.1=hb7f2c08_0 + - libjpeg-turbo=3.0.0=h0dc2134_1 - libsodium=1.0.18=hbcb3906_1 - libtool=2.4.7=hf0c8a7f_0 - - libuv=1.44.2=hac89ed1_0 - - libwebp-base=1.3.1=h0dc2134_0 + - libuv=1.46.0=h0c2f820_0 + - libwebp-base=1.3.2=h0dc2134_0 - libzlib=1.2.13=h8a1eda9_5 - - llvm-openmp=16.0.6=hff08bdf_0 + - llvm-openmp=17.0.2=hff08bdf_0 - m4=1.4.18=haf1e3a3_1001 - make=4.3=h22f3db7_1 - mathjax=3.2.2=h694c41f_0 - - metis=5.1.1=he965462_0 + - metis=5.1.0=he965462_1007 - nauty=2.7.2=h0d85af4_0 - ncurses=6.4=hf0c8a7f_0 - palp=2.20=hbcb3906_0 @@ -47,11 +47,10 @@ dependencies: - pari-seadata-small=0.0.20090618=0 - patch=2.7.6=hbcf498f_1002 - perl=5.32.1=4_h0dc2134_perl5 - - pixman=0.40.0=hbcb3906_0 - planarity=3.0.0.5=hbcb3906_1002 - pthread-stubs=0.4=hc929b4f_1001 - - python_abi=3.9=3_cp39 - - rhash=1.4.3=hac89ed1_0 + - python_abi=3.9=4_cp39 + - rhash=1.4.4=h0dc2134_0 - rw=0.7=1 - sagemath-db-combinatorial-designs=20140630=1 - sagemath-db-graphs=20210214=hd8ed1ab_0 @@ -74,94 +73,94 @@ dependencies: - isl=0.25=hb486fe8_0 - lerc=4.0.0=hb486fe8_0 - libbraiding=1.1=h2e338ed_0 - - libbrotlidec=1.0.9=hb7f2c08_9 - - libbrotlienc=1.0.9=hb7f2c08_9 + - libbrotlidec=1.1.0=h0dc2134_1 + - libbrotlienc=1.1.0=h0dc2134_1 - libedit=3.1.20191231=h0678c8f_2 - - libgfortran5=12.3.0=hbd3c1fe_1 + - libgfortran5=13.2.0=h2873a65_1 - libpng=1.6.39=ha978bb4_0 - - libsqlite=3.42.0=h58db7d2_0 + - libsqlite=3.43.0=h58db7d2_0 - libxcb=1.15=hb7f2c08_0 - - libxml2=2.11.4=hd95e348_0 + - libxml2=2.11.5=h3346baf_1 - lrcalc=2.1=hf0c8a7f_5 - ninja=1.11.1=hb8565cd_0 - - openjdk=20.0.0=h7d26f99_0 - - openssl=3.1.1=h8a1eda9_1 + - openjdk=20.0.2=h7d26f99_2 + - openssl=3.1.3=h8a1eda9_0 - pandoc=3.1.3=h9d075a6_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 - readline=8.2=h9e318b2_1 - symmetrica=3.0.1=hf0c8a7f_0 - tapi=1100.0.11=h9ce4665_0 - - tar=1.34=hcb2f6ea_1 - - tbb=2021.9.0=hb8565cd_0 + - tbb=2021.10.0=h1c7c39f_1 - texinfo=7.0=pl5321hc47821c_0 - threejs-sage=122=hd8ed1ab_2 - - tk=8.6.12=h5dbffcc_0 + - tk=8.6.13=hef22860_0 - zeromq=4.3.4=he49afe7_1 - zlib=1.2.13=h8a1eda9_5 - - zstd=1.5.2=h829000d_7 + - zstd=1.5.5=h829000d_0 - automake=1.16.5=pl5321h694c41f_0 - - boost-cpp=1.82.0=hd754db5_1 - - brotli-bin=1.0.9=hb7f2c08_9 + - brotli-bin=1.1.0=h0dc2134_1 - bwidget=1.9.14=h694c41f_1 - cddlib=1!0.94m=h0f52abe_0 - ecl=21.2.1=hd029580_2 - ecm=7.0.4=h343d7f2_1002 - fonts-conda-ecosystem=1=0 - - freetype=2.12.1=h3f81eb7_1 + - freetype=2.12.1=h60636b9_2 - gap-core=4.12.2=hc16eb5f_3 - givaro=4.1.1=h0a799c6_3 - glpk=5.0=h3cb5acd_0 - jmol=14.32.9=h694c41f_0 - - krb5=1.21.1=hb884880_0 - - libgfortran=5.0.0=12_3_0_h97931a8_1 - - libglib=2.76.4=hc62aa5d_0 + - krb5=1.21.2=hb884880_0 + - libboost=1.82.0=hf0c313a_6 + - libgfortran=5.0.0=13_2_0_h97931a8_1 + - libglib=2.78.0=hc62aa5d_0 - libhomfly=1.02r6=hc929b4f_0 - - libllvm15=15.0.7=he4b1e75_2 + - libllvm16=16.0.6=he4b1e75_2 - libnghttp2=1.52.0=he2ab024_0 - libssh2=1.11.0=hd019ec5_0 - - libtiff=4.5.1=hf955e92_0 + - libtiff=4.6.0=h684deea_2 - m4ri=20140914=h3f75d11_1005 - mpfr=4.2.0=h4f9bd69_0 - ntl=11.4.3=h0ab3c2f_1 - pari=2.15.4=h93f793c_2_pthread - primecount=7.6=ha894c9a_0 - - python=3.9.16=h709bd14_0_cpython + - python=3.9.18=h07e1443_0_cpython - sigtool=0.1.3=h88f4db0_0 - - sqlite=3.42.0=h2b0dec6_0 + - sqlite=3.43.0=h2b0dec6_0 - tachyon=0.99b6=0 - - tktable=2.10=h49f0cf7_3 + - tktable=2.10=ha166976_5 - alabaster=0.7.13=pyhd8ed1ab_0 - appdirs=1.4.4=pyh9f0ad1d_0 - appnope=0.1.3=pyhd8ed1ab_0 - attrs=23.1.0=pyh71513ae_1 - backcall=0.2.0=pyh9f0ad1d_0 - backports=1.0=pyhd8ed1ab_3 - - backports.zoneinfo=0.2.1=py39h6e9494a_7 - - brotli=1.0.9=hb7f2c08_9 - - brotli-python=1.0.9=py39h7a8716b_9 + - brotli=1.1.0=h0dc2134_1 + - brotli-python=1.1.0=py39h840bb9f_1 + - cached_property=1.5.2=pyha770c72_1 - cachetools=5.3.1=pyhd8ed1ab_0 - certifi=2023.7.22=pyhd8ed1ab_0 - - chardet=5.1.0=py39h6e9494a_0 - - charset-normalizer=3.2.0=pyhd8ed1ab_0 + - chardet=5.2.0=py39h6e9494a_1 + - charset-normalizer=3.3.0=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_0 - - cycler=0.11.0=pyhd8ed1ab_0 - - cysignals=1.11.2=py39hf6ae30e_2 - - cython=0.29.36=py39h840bb9f_0 - - debugpy=1.6.7=py39h7a8716b_0 + - cycler=0.12.1=pyhd8ed1ab_0 + - cysignals=1.11.2=py39hf6ae30e_3 + - cython=0.29.36=py39h840bb9f_1 + - debugpy=1.8.0=py39h840bb9f_1 - decorator=5.1.1=pyhd8ed1ab_0 - defusedxml=0.7.1=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - - docutils=0.19=py39h6e9494a_1 + - docutils=0.20.1=py39h6e9494a_2 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 - - exceptiongroup=1.1.2=pyhd8ed1ab_0 + - exceptiongroup=1.1.3=pyhd8ed1ab_0 - executing=1.2.0=pyhd8ed1ab_0 - fftw=3.3.10=nompi_h4fa670e_108 - - filelock=3.12.2=pyhd8ed1ab_0 + - filelock=3.12.4=pyhd8ed1ab_0 - flit-core=3.9.0=pyhd8ed1ab_0 - fontconfig=2.14.2=h5bb23bf_0 - gap-defaults=4.12.2=h694c41f_3 @@ -171,60 +170,62 @@ dependencies: - imagesize=1.4.1=pyhd8ed1ab_0 - ipython_genutils=0.2.0=py_1 - json5=0.9.14=pyhd8ed1ab_0 - - jupyterlab_widgets=1.1.1=pyhd8ed1ab_0 - - kiwisolver=1.4.4=py39h92daf61_1 + - jsonpointer=2.4=py39h6e9494a_3 + - jupyterlab_widgets=1.1.7=pyhd8ed1ab_0 + - kiwisolver=1.4.5=py39h8ee36c8_1 - lcalc=2.0.5=h3a941db_1 - - lcms2=2.15=h2dcdeff_1 - - ld64_osx-64=609=h8ce0179_13 - - libbrial=1.2.12=h8f704d5_0 - - libclang-cpp15=15.0.7=default_hdb78580_2 - - libcurl=8.2.0=h5f667d7_0 + - lcms2=2.15=hd6ba6f3_3 + - ld64_osx-64=609=ha20a434_14 + - libboost-devel=1.82.0=h1c7c39f_6 + - libbrial=1.2.12=h8d08345_1 + - libclang-cpp16=16.0.6=default_h762fdd7_1 + - libcurl=8.3.0=h5f667d7_0 - libflint=2.9.0=hfd2f71f_ntl_100 - - libopenblas=0.3.23=openmp_h429af6e_0 - - libwebp=1.3.1=hc961f54_0 - - llvm-tools=15.0.7=he4b1e75_2 + - libopenblas=0.3.24=openmp_h48a4ad5_0 + - libwebp=1.3.2=h44782d1_1 + - llvm-tools=16.0.6=he4b1e75_2 - m4rie=20150908=h3f75d11_1001 - - markupsafe=2.1.3=py39hdc70f33_0 + - markupsafe=2.1.3=py39hdc70f33_1 - maxima=5.45.0=hd029580_3 - - mistune=3.0.0=pyhd8ed1ab_0 + - mistune=3.0.1=pyhd8ed1ab_0 - mpc=1.3.1=h81bd1dd_0 - mpfi=1.5.4=h52b28e3_1001 - mpmath=1.3.0=pyhd8ed1ab_0 - munkres=1.1.4=pyh9f0ad1d_0 - nest-asyncio=1.5.6=pyhd8ed1ab_0 - networkx=2.8.8=pyhd8ed1ab_0 - - openjpeg=2.5.0=h13ac156_2 - - packaging=23.1=pyhd8ed1ab_0 + - openjpeg=2.5.0=ha4da562_3 + - packaging=23.2=pyhd8ed1ab_0 - pandocfilters=1.5.0=pyhd8ed1ab_0 - parso=0.8.3=pyhd8ed1ab_0 - - pathspec=0.11.1=pyhd8ed1ab_0 + - pathspec=0.11.2=pyhd8ed1ab_0 - pickleshare=0.7.5=py_1003 - pkgconfig=1.5.5=pyhd8ed1ab_4 - - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_0 - - pluggy=1.2.0=pyhd8ed1ab_0 + - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 + - pluggy=1.3.0=pyhd8ed1ab_0 - ply=3.11=py_1 - ppl=1.2=ha60d53e_1006 - prometheus_client=0.17.1=pyhd8ed1ab_0 - - psutil=5.9.5=py39ha30fb19_0 + - psutil=5.9.5=py39hdc70f33_1 - 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_0 + - pybind11-global=2.11.1=py39h8ee36c8_2 - pycparser=2.21=pyhd8ed1ab_0 - - pygments=2.15.1=pyhd8ed1ab_0 - - pyparsing=3.0.9=pyhd8ed1ab_0 - - pyrsistent=0.19.3=py39ha30fb19_0 + - pygments=2.16.1=pyhd8ed1ab_0 + - pyparsing=3.1.1=pyhd8ed1ab_0 + - pyrsistent=0.19.3=py39hdc70f33_1 - pysocks=1.7.1=pyha2e5f31_6 - - python-fastjsonschema=2.18.0=pyhd8ed1ab_0 + - python-fastjsonschema=2.18.1=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=pyhd8ed1ab_0 - - pyyaml=6.0=py39ha30fb19_5 - - pyzmq=25.1.0=py39hdac9eea_0 + - pytz=2023.3.post1=pyhd8ed1ab_0 + - pyyaml=6.0.1=py39hdc70f33_1 + - pyzmq=25.1.1=py39hdac9eea_1 - qd=2.3.22=h2beb688_1004 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.9.2=py39hf33989b_0 + - rpds-py=0.10.4=py39h3f9c672_0 - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 - sagetex=3.6.1=pyhd8ed1ab_0 - setuptools=63.4.3=py39h6e9494a_0 @@ -232,167 +233,169 @@ dependencies: - six=1.16.0=pyh6c4a22f_0 - sniffio=1.3.0=pyhd8ed1ab_0 - snowballstemmer=2.2.0=pyhd8ed1ab_0 - - soupsieve=2.3.2.post1=pyhd8ed1ab_0 - - sphinxcontrib-applehelp=1.0.4=pyhd8ed1ab_0 - - sphinxcontrib-devhelp=1.0.2=py_0 - - sphinxcontrib-htmlhelp=2.0.1=pyhd8ed1ab_0 - - sphinxcontrib-jsmath=1.0.1=py_0 - - sphinxcontrib-qthelp=1.0.3=py_0 - - sphinxcontrib-serializinghtml=1.1.5=pyhd8ed1ab_2 + - soupsieve=2.5=pyhd8ed1ab_1 + - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_0 - sympow=2.023.6=h115ba6a_3 - - toml=0.10.2=pyhd8ed1ab_0 - tomli=2.0.1=pyhd8ed1ab_0 - - tomlkit=0.11.8=pyha770c72_0 - - tornado=6.3.2=py39hdc70f33_0 - - traitlets=5.9.0=pyhd8ed1ab_0 - - trove-classifiers=2023.7.6=pyhd8ed1ab_0 - - typing_extensions=4.7.1=pyha770c72_0 + - tornado=6.3.3=py39hdc70f33_1 + - traitlets=5.11.2=pyhd8ed1ab_0 + - trove-classifiers=2023.9.19=pyhd8ed1ab_0 + - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 + - typing_extensions=4.8.0=pyha770c72_0 - typing_utils=0.1.0=pyhd8ed1ab_0 - - tzlocal=5.0.1=py39h6e9494a_0 - - unicodedata2=15.0.0=py39ha30fb19_0 + - tzlocal=5.1=py39h6e9494a_0 + - unicodedata2=15.1.0=py39hdc70f33_0 + - uri-template=1.3.0=pyhd8ed1ab_0 - vcversioner=2.16.0.0=py_1 - - webencodings=0.5.1=py_1 - - websocket-client=1.6.1=pyhd8ed1ab_0 - - wheel=0.41.0=pyhd8ed1ab_0 - - zipp=3.16.2=pyhd8ed1ab_0 - - anyio=3.7.1=pyhd8ed1ab_0 + - webcolors=1.13=pyhd8ed1ab_0 + - webencodings=0.5.1=pyhd8ed1ab_2 + - websocket-client=1.6.4=pyhd8ed1ab_0 + - wheel=0.41.2=pyhd8ed1ab_0 + - zipp=3.17.0=pyhd8ed1ab_0 + - anyio=4.0.0=pyhd8ed1ab_0 - arb=2.23.0=h905a977_0 - - asttokens=2.2.1=pyhd8ed1ab_0 - - async-lru=2.0.3=pyhd8ed1ab_0 + - asttokens=2.4.0=pyhd8ed1ab_0 + - async-lru=2.0.4=pyhd8ed1ab_0 - babel=2.12.1=pyhd8ed1ab_1 - backports.functools_lru_cache=1.6.5=pyhd8ed1ab_0 - beautifulsoup4=4.12.2=pyha770c72_0 - beniget=0.4.1=pyhd8ed1ab_0 - - bleach=6.0.0=pyhd8ed1ab_0 - - brial=1.2.12=pyha3edaa6_0 - - cairo=1.16.0=h09dd18c_1016 - - cctools_osx-64=973.0.1=h48a5a9d_13 - - cffi=1.15.1=py39h131948b_3 - - clang-15=15.0.7=default_hdb78580_2 - - cmake=3.26.4=hf40c264_0 - - comm=0.1.3=pyhd8ed1ab_0 + - bleach=6.1.0=pyhd8ed1ab_0 + - boost-cpp=1.82.0=h07eb623_6 + - brial=1.2.12=pyh694c41f_1 + - cached-property=1.5.2=hd8ed1ab_1 + - cairo=1.16.0=hfdb49f2_1017 + - cctools_osx-64=973.0.1=ha1c5b94_14 + - cffi=1.16.0=py39h18ef598_0 + - clang-16=16.0.6=default_h762fdd7_1 + - cmake=3.27.6=hf40c264_0 + - comm=0.1.4=pyhd8ed1ab_0 - cppy=1.2.1=pyhd8ed1ab_0 - - curl=8.2.0=h5f667d7_0 + - curl=8.3.0=h5f667d7_0 - cypari2=2.1.3=py39he2cb11e_2 - deprecation=2.1.0=pyh9f0ad1d_0 - eclib=20230424=hd00e801_0 - - fonttools=4.41.1=py39hdc70f33_0 + - fonttools=4.43.1=py39ha09f3b3_0 - fplll=5.4.4=hdfdc905_0 - - gfortran_impl_osx-64=12.2.0=hdfd80ef_32 + - gfortran_impl_osx-64=12.3.0=h54fd467_1 - gmpy2=2.1.2=py39h2da61ea_1 - - html5lib=1.1=pyh9f0ad1d_0 - importlib-metadata=6.8.0=pyha770c72_0 - - importlib_resources=6.0.0=pyhd8ed1ab_1 - - jedi=0.18.2=pyhd8ed1ab_0 + - importlib_resources=6.1.0=pyhd8ed1ab_0 + - jedi=0.19.1=pyhd8ed1ab_0 - jinja2=3.1.2=pyhd8ed1ab_1 - jupyterlab_pygments=0.2.2=pyhd8ed1ab_0 - - ld64=609=ha91a046_13 - - libblas=3.9.0=17_osx64_openblas - - libgd=2.3.3=h3d994df_6 + - ld64=609=ha02d983_14 + - libblas=3.9.0=18_osx64_openblas + - libgd=2.3.3=h0dceb68_9 - matplotlib-inline=0.1.6=pyhd8ed1ab_0 - memory-allocator=0.1.2=py39ha30fb19_2 - - openblas=0.3.23=openmp_hbefa662_0 - - overrides=7.3.1=pyhd8ed1ab_0 + - openblas=0.3.24=openmp_hd7704e8_0 + - overrides=7.4.0=pyhd8ed1ab_0 - pexpect=4.8.0=pyh1a96a4e_2 - - pillow=10.0.0=py39he6683de_0 + - pillow=10.0.1=py39h877a9eb_2 - pip=23.2.1=pyhd8ed1ab_0 - - primecountpy=0.1.0=py39h8ee36c8_3 - - pybind11=2.11.1=py39h8ee36c8_0 - - pyobjc-core=9.2=py39head00df_0 - - pyproject-api=1.5.3=pyhd8ed1ab_0 + - primecountpy=0.1.0=py39h8ee36c8_4 + - pybind11=2.11.1=py39h8ee36c8_2 + - pyobjc-core=10.0=py39head00df_0 + - pyproject-api=1.6.1=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - - pytz-deprecation-shim=0.1.0.post0=py39h6e9494a_3 - - referencing=0.30.0=pyhd8ed1ab_0 + - pytz-deprecation-shim=0.1.0.post0=py39h6e9494a_4 + - referencing=0.30.2=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - sagemath-db-conway-polynomials=0.5.0=h033912b_1 - singular=4.2.1.p3=hac851df_2 - terminado=0.17.1=pyhd1c38e8_0 - tinycss2=1.2.1=pyhd8ed1ab_0 - - typing-extensions=4.7.1=hd8ed1ab_0 - - urllib3=2.0.4=pyhd8ed1ab_0 - - argon2-cffi-bindings=21.2.0=py39ha30fb19_3 - - cctools=973.0.1=hd9ad811_13 - - clang=15.0.7=h694c41f_2 - - harfbuzz=7.3.0=h413ba03_0 + - typing-extensions=4.8.0=hd8ed1ab_0 + - urllib3=2.0.6=pyhd8ed1ab_0 + - argon2-cffi-bindings=21.2.0=py39hdc70f33_4 + - arrow=1.3.0=pyhd8ed1ab_0 + - cctools=973.0.1=h40f6528_14 + - clang=16.0.6=hc177806_1 + - fqdn=1.5.1=pyhd8ed1ab_0 + - harfbuzz=8.2.1=h7666e2a_0 - hatchling=1.18.0=pyhd8ed1ab_0 - - importlib-resources=6.0.0=pyhd8ed1ab_1 + - importlib-resources=6.1.0=pyhd8ed1ab_0 - importlib_metadata=6.8.0=hd8ed1ab_0 - jsonschema-specifications=2023.7.1=pyhd8ed1ab_0 - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1 - - libcblas=3.9.0=17_osx64_openblas - - liblapack=3.9.0=17_osx64_openblas - - platformdirs=3.9.1=pyhd8ed1ab_0 - - poetry-core=1.6.1=pyhd8ed1ab_0 + - libcblas=3.9.0=18_osx64_openblas + - liblapack=3.9.0=18_osx64_openblas + - platformdirs=3.11.0=pyhd8ed1ab_0 - pplpy=0.8.7=py39hb3e8af0_0 - - pyobjc-framework-cocoa=9.2=py39head00df_0 + - pyobjc-framework-cocoa=10.0=py39head00df_1 - requests=2.31.0=pyhd8ed1ab_0 - - setuptools-scm=7.1.0=pyhd8ed1ab_0 + - setuptools-scm=8.0.4=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 - sympy=1.12=pypyh9d50eac_103 - - wcwidth=0.2.6=pyhd8ed1ab_0 - - argon2-cffi=21.3.0=pyhd8ed1ab_0 - - clangxx=15.0.7=default_hdb78580_2 + - wcwidth=0.2.8=pyhd8ed1ab_0 + - argon2-cffi=23.1.0=pyhd8ed1ab_0 + - clangxx=16.0.6=default_h762fdd7_1 - dsdp=5.8=h6e329d1_1203 - fflas-ffpack=2.4.3=h026fd7e_2 - gsl=2.7=h93259b0_0 - iml=1.0.5=h64b42ca_1003 - - jsonschema=4.18.4=pyhd8ed1ab_0 - - jupyter_core=5.3.1=py39h6e9494a_0 - - liblapacke=3.9.0=17_osx64_openblas - - numpy=1.25.1=py39h892e69a_0 - - pango=1.50.14=hbce5e75_1 - - pooch=1.7.0=pyha770c72_3 + - isoduration=20.11.0=pyhd8ed1ab_0 + - jsonschema=4.19.1=pyhd8ed1ab_0 + - jupyter_core=5.3.2=py39h6e9494a_0 + - liblapacke=3.9.0=18_osx64_openblas + - numpy=1.26.0=py39h5c76802_0 + - pango=1.50.14=h19c1c8a_2 + - pooch=1.7.0=pyhd8ed1ab_4 - prompt-toolkit=3.0.39=pyha770c72_0 - send2trash=1.8.2=pyhd1c38e8_0 - - setuptools_scm=7.1.0=hd8ed1ab_0 - - sphinx=6.2.1=pyhd8ed1ab_0 + - setuptools_scm=8.0.4=hd8ed1ab_0 - suitesparse=5.10.1=h7aff33d_1 - - virtualenv=20.24.2=pyhd8ed1ab_0 - - blas-devel=3.9.0=17_osx64_openblas - - compiler-rt_osx-64=15.0.7=he1888fc_1 - - contourpy=1.1.0=py39h8ee36c8_0 - - cvxopt=1.3.1=py39h2a3e123_0 + - virtualenv=20.24.4=pyhd8ed1ab_0 + - blas-devel=3.9.0=18_osx64_openblas + - compiler-rt_osx-64=16.0.6=he1888fc_0 + - contourpy=1.1.1=py39h8ee36c8_1 + - cvxopt=1.3.2=py39h2a3e123_1 - fpylll=0.5.9=py39hb8d1c6e_1 - giac=1.9.0.21=h92f3f65_1 - - jupyter_client=8.3.0=pyhd8ed1ab_0 - - jupyter_events=0.6.3=pyhd8ed1ab_0 + - jsonschema-with-format-nongpl=4.19.1=pyhd8ed1ab_0 + - jupyter_client=8.3.1=pyhd8ed1ab_0 - linbox=1.6.3=hdde8d14_7 - - nbformat=5.9.1=pyhd8ed1ab_0 + - nbformat=5.9.2=pyhd8ed1ab_0 - prompt_toolkit=3.0.39=hd8ed1ab_0 - scipy=1.10.1=py39hded996c_3 - - sphinx-basic-ng=1.0.0b2=pyhd8ed1ab_0 - - sphinx-copybutton=0.5.2=pyhd8ed1ab_0 - - sphinxcontrib-websupport=1.2.4=pyhd8ed1ab_1 - - tox=4.6.4=pyhd8ed1ab_0 - - blas=2.117=openblas - - compiler-rt=15.0.7=he1888fc_1 - - furo=2023.5.20=pyhd8ed1ab_1 - - ipython=8.14.0=pyhd1c38e8_0 - - matplotlib-base=3.7.2=py39h6e39af2_0 + - tox=4.11.3=pyhd8ed1ab_0 + - blas=2.118=openblas + - compiler-rt=16.0.6=he1888fc_0 + - ipython=8.16.1=pyh31c8845_0 + - jupyter_events=0.7.0=pyhd8ed1ab_2 + - matplotlib-base=3.8.0=py39he57df45_1 - nbclient=0.8.0=pyhd8ed1ab_0 - - clang_osx-64=15.0.7=h03d6864_3 - - ipykernel=6.24.0=pyh5fb750a_0 - - matplotlib=3.7.2=py39h6e9494a_0 - - nbconvert-core=7.7.2=pyhd8ed1ab_0 - - c-compiler=1.6.0=h63c33a9_0 - - clangxx_osx-64=15.0.7=h2133e9c_3 - - gfortran_osx-64=12.2.0=h18f7dce_1 - - jupyter_server=2.7.0=pyhd8ed1ab_0 - - nbconvert-pandoc=7.7.2=pyhd8ed1ab_0 - - cxx-compiler=1.6.0=h1c7c39f_0 - - gfortran=12.2.0=h2c809b3_1 + - clang_osx-64=16.0.6=h8787910_1 + - ipykernel=6.25.2=pyh1050b4e_0 + - matplotlib=3.8.0=py39h6e9494a_1 + - nbconvert-core=7.9.2=pyhd8ed1ab_0 + - clangxx_osx-64=16.0.6=h1b7723c_1 + - gfortran_osx-64=12.3.0=h18f7dce_1 + - jupyter_server=2.7.3=pyhd8ed1ab_1 + - nbconvert-pandoc=7.9.2=pyhd8ed1ab_0 + - gfortran=12.3.0=h2c809b3_1 - jupyter-lsp=2.2.0=pyhd8ed1ab_0 - - jupyterlab_server=2.24.0=pyhd8ed1ab_0 - - nbconvert=7.7.2=pyhd8ed1ab_0 + - jupyterlab_server=2.25.0=pyhd8ed1ab_0 + - nbconvert=7.9.2=pyhd8ed1ab_0 - notebook-shim=0.2.3=pyhd8ed1ab_0 - - pythran=0.13.1=py39h204a2a1_0 - - r-base=4.3.1=had2b78c_3 + - pythran=0.14.0=py39h4aa56a1_1 + - r-base=4.3.1=h0ff45fa_6 - fortran-compiler=1.6.0=h932d759_0 - - jupyterlab=4.0.3=pyhd8ed1ab_0 - - rpy2=3.5.11=py39r43h57e1da4_2 - - compilers=1.6.0=h694c41f_0 - - notebook=7.0.0=pyhd8ed1ab_0 - - widgetsnbextension=3.6.4=pyhd8ed1ab_0 - - ipywidgets=7.7.5=pyhd8ed1ab_0 + - jupyterlab=4.0.6=pyhd8ed1ab_0 + - rpy2=3.5.11=py39r43hd01001f_3 + - notebook=7.0.4=pyhd8ed1ab_0 + - widgetsnbextension=3.6.6=pyhd8ed1ab_0 + - ipywidgets=7.8.0=pyhd8ed1ab_0 - jupyter-jsmol=2022.1.0=pyhd8ed1ab_0 - 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 From edcf7327631639458df0129083fc6bf36470bbfb Mon Sep 17 00:00:00 2001 From: Tobias Diez Date: Mon, 9 Oct 2023 05:27:06 +0000 Subject: [PATCH 15/33] exclude 3.0.3 --- build/pkgs/cython/distros/conda.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/build/pkgs/cython/distros/conda.txt b/build/pkgs/cython/distros/conda.txt index 3cb7796bded..5f073b65d30 100644 --- a/build/pkgs/cython/distros/conda.txt +++ b/build/pkgs/cython/distros/conda.txt @@ -1 +1,3 @@ -cython<3.0.0 +cython!=3.0.3 + +# https://github.com/cython/cython/issues/5748 From 85990ced20f988bcf44cd41a5fd728208e516943 Mon Sep 17 00:00:00 2001 From: Tobias Diez Date: Mon, 9 Oct 2023 06:48:57 +0000 Subject: [PATCH 16/33] update lock files --- src/environment-3.10-linux.yml | 4 +- src/environment-3.10-macos.yml | 4 +- src/environment-3.11-linux.yml | 465 ++++++++++++++-------------- src/environment-3.11-macos.yml | 4 +- src/environment-3.9-linux.yml | 4 +- src/environment-3.9-macos.yml | 4 +- src/environment-dev-3.10-linux.yml | 462 +++++++++++++-------------- src/environment-dev-3.10-macos.yml | 391 +++++++++++------------ src/environment-dev-3.11-linux.yml | 479 ++++++++++++++-------------- src/environment-dev-3.11-macos.yml | 410 ++++++++++++------------ src/environment-dev-3.9-linux.yml | 480 +++++++++++++++-------------- src/environment-dev-3.9-macos.yml | 411 ++++++++++++------------ 12 files changed, 1569 insertions(+), 1549 deletions(-) diff --git a/src/environment-3.10-linux.yml b/src/environment-3.10-linux.yml index fb735cfbb6a..ad418661b96 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: e56af388fcc542ad2cf1710631fe8a785b4b89558dfeb7d0cd87f3d26923ebd0 +# input_hash: 5f66672bf84b78a0906895b15392be9210c8addc4afcffec740babb8674dcf04 channels: - conda-forge @@ -208,7 +208,7 @@ dependencies: - colorama=0.4.6=pyhd8ed1ab_0 - cycler=0.12.1=pyhd8ed1ab_0 - cysignals=1.11.2=py310h945e7c7_3 - - cython=0.29.36=py310hc6cd4ac_1 + - cython=3.0.2=py310hc6cd4ac_2 - dbus=1.13.6=h5008d03_3 - debugpy=1.8.0=py310hc6cd4ac_1 - decorator=5.1.1=pyhd8ed1ab_0 diff --git a/src/environment-3.10-macos.yml b/src/environment-3.10-macos.yml index bf86da2b397..2cfef24e27a 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: 3d89db019f3a2f3683f85c3e83e8c0ac7132bdd8790cb238b276c7426d5aa784 +# input_hash: 6fae81a9deca7afa90a962d23acd38cd54ff898f0d473f1a52b6fe16bdaa4051 channels: - conda-forge @@ -149,7 +149,7 @@ dependencies: - colorama=0.4.6=pyhd8ed1ab_0 - cycler=0.12.1=pyhd8ed1ab_0 - cysignals=1.11.2=py310h8c82e65_3 - - cython=0.29.36=py310h9e9d8ca_1 + - cython=3.0.2=py310h9e9d8ca_2 - debugpy=1.8.0=py310h9e9d8ca_1 - decorator=5.1.1=pyhd8ed1ab_0 - defusedxml=0.7.1=pyhd8ed1ab_0 diff --git a/src/environment-3.11-linux.yml b/src/environment-3.11-linux.yml index 5119fc6fd31..c5e04a37ec4 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: 2fe7099c1d98ec324541bba0b769acbac35931b084f7e5640f0437a1ced9c5d2 +# input_hash: ed969b7a727bcd2a5f8f5803ccc2972de7d7f5149e25110265386c2b5c4da604 channels: - conda-forge @@ -14,41 +14,38 @@ dependencies: - font-ttf-ubuntu=0.83=hab24e00_0 - kernel-headers_linux-64=2.6.32=he073ed8_16 - ld_impl_linux-64=2.40=h41732ed_0 - - libgcc-devel_linux-64=12.3.0=h8bca6fd_0 - - libgfortran5=13.1.0=h15d22d2_0 - - libstdcxx-devel_linux-64=12.3.0=h8bca6fd_0 - - libstdcxx-ng=13.1.0=hfd8a6a1_0 + - libboost-headers=1.82.0=ha770c72_6 + - libgcc-devel_linux-64=12.3.0=h8bca6fd_2 + - libstdcxx-devel_linux-64=12.3.0=h8bca6fd_2 + - libstdcxx-ng=13.2.0=h7e041cc_2 - mathjax=3.2.2=ha770c72_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 - - python_abi=3.11=3_cp311 + - 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 - fonts-conda-forge=1=0 - - libgfortran-ng=13.1.0=h69a702a_0 - - libgomp=13.1.0=he5830b7_0 + - libgomp=13.2.0=h807b86a_2 - pari-seadata=0.0.20090618=0 - sysroot_linux-64=2.12=he073ed8_16 - threejs-sage=122=hd8ed1ab_2 - binutils_impl_linux-64=2.40=hf600244_0 - fonts-conda-ecosystem=1=0 - binutils=2.40=hdd6e379_0 - - binutils_linux-64=2.40=hbdbef99_1 + - binutils_linux-64=2.40=hbdbef99_2 - _openmp_mutex=4.5=2_kmp_llvm - - libgcc-ng=13.1.0=he5830b7_0 - - alsa-lib=1.2.8=h166bdaf_0 + - libgcc-ng=13.2.0=h807b86a_2 + - alsa-lib=1.2.10=hd590300_0 - attr=2.5.1=h166bdaf_1 - - bc=1.07.1=h7f98852_0 - bdw-gc=8.0.6=h4bd325d_0 - bzip2=1.0.8=h7f98852_4 - c-ares=1.19.1=hd590300_0 - cliquer=1.22=h36c2ea0_0 - - fftw=3.3.10=nompi_hc118613_108 - fribidi=1.0.10=h36c2ea0_0 - gengetopt=2.23=h9c3ff4c_0 - gettext=0.21.1=h27087fc_0 @@ -56,57 +53,55 @@ dependencies: - giflib=5.2.1=h0b41bf4_3 - gmp=6.2.1=h58526e2_0 - graphite2=1.3.13=h58526e2_1001 - - icu=72.1=hcb278e6_0 + - 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.1=h58526e2_0 - - libbrotlicommon=1.0.9=h166bdaf_9 - - libdeflate=1.18=h0b41bf4_0 + - libbrotlicommon=1.1.0=hd590300_1 + - libdeflate=1.19=hd590300_0 - libev=4.33=h516909a_1 - libexpat=2.5.0=hcb278e6_1 - libffi=3.4.2=h7f98852_5 + - libgfortran5=13.2.0=ha4646dd_2 - libiconv=1.17=h166bdaf_0 - - libjpeg-turbo=2.1.5.1=h0b41bf4_0 - - libnsl=2.0.0=h7f98852_0 + - libjpeg-turbo=2.1.5.1=hd590300_1 + - libnsl=2.0.0=hd590300_1 - libogg=1.3.4=h7f98852_1 - - libopenblas=0.3.23=pthreads_h80387f5_0 - libopus=1.3.1=h7f98852_1 - - libsanitizer=12.3.0=h0f45ef3_0 + - libsanitizer=12.3.0=h0f45ef3_2 - libsodium=1.0.18=h36c2ea0_1 - libtool=2.4.7=h27087fc_0 - libuuid=2.38.1=h0b41bf4_0 - - libuv=1.44.2=h166bdaf_0 - - libwebp-base=1.3.1=hd590300_0 + - libuv=1.46.0=hd590300_0 + - libwebp-base=1.3.2=hd590300_0 - 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_0 - - mpg123=1.31.3=hcb278e6_0 + - metis=5.1.0=h59595ed_1007 + - mpg123=1.32.3=h59595ed_0 - nauty=2.7.2=h7f98852_0 - ncurses=6.4=hcb278e6_0 - ninja=1.11.1=h924138e_0 - nspr=4.35=h27087fc_0 - - openssl=3.1.1=hd590300_1 + - openssl=3.1.3=hd590300_0 - palp=2.20=h36c2ea0_0 - patch=2.7.6=h7f98852_1002 - - pixman=0.40.0=h36c2ea0_0 + - pixman=0.42.2=h59595ed_0 - pkg-config=0.29.2=h36c2ea0_1008 - planarity=3.0.0.5=h36c2ea0_1002 - - primesieve=11.0=hcb278e6_0 + - primesieve=11.1=h59595ed_0 - pthread-stubs=0.4=h36c2ea0_1001 - - qd=2.3.22=h2cc385e_1004 - qhull=2020.2=h4bd325d_2 - - rhash=1.4.3=h166bdaf_0 + - rhash=1.4.4=hd590300_0 - sed=4.8=he412f7d_0 - symmetrica=3.0.1=hcb278e6_0 - - xkeyboard-config=2.38=h0b41bf4_0 - xorg-inputproto=2.3.2=h7f98852_1002 - xorg-kbproto=1.0.7=h7f98852_1002 - - xorg-libice=1.0.10=h7f98852_0 + - 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 @@ -119,185 +114,181 @@ dependencies: - 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_0 + - gcc_impl_linux-64=12.3.0=he2b93b0_2 - givaro=4.1.1=h192cbe9_1 - glpk=5.0=h445213a_0 - - libblas=3.9.0=17_linux64_openblas - - libbrotlidec=1.0.9=h166bdaf_9 - - libbrotlienc=1.0.9=h166bdaf_9 - - libcap=2.67=he9d0100_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_2 - libgpg-error=1.47=h71f35ed_0 - libhomfly=1.02r6=h36c2ea0_0 - libnghttp2=1.52.0=h61bc06f_0 - libpng=1.6.39=h753d276_0 - - libsqlite=3.42.0=h2797004_0 + - libsqlite=3.43.0=h2797004_0 - libssh2=1.11.0=h0841786_0 - libvorbis=1.3.7=h9c3ff4c_0 - - libxcb=1.13=h7f98852_1004 - - libxml2=2.10.4=hfdac1af_0 + - libxcb=1.15=h0b41bf4_0 + - libxml2=2.11.5=h232c23b_1 - mpfr=4.2.0=hb012696_0 - - mysql-common=8.0.33=hf1915f5_2 + - mysql-common=8.0.33=hf1915f5_5 - ntl=11.4.3=hef3c4d3_1 - - openblas=0.3.23=pthreads_h855a84d_0 - pcre2=10.40=hc3806b6_0 - perl=5.32.1=4_hd590300_perl5 - - primecount=7.6=hcb278e6_0 + - primecount=7.9=hcb278e6_0 - readline=8.2=h8228510_1 - - tar=1.34=hb2e2bae_1 - - tk=8.6.12=h27826a3_0 + - tk=8.6.13=h2797004_0 - xorg-fixesproto=5.0=h7f98852_1002 - - xorg-libsm=1.2.3=hd9c2040_1000 + - xorg-libsm=1.2.4=h7391055_0 - zeromq=4.3.4=h9c3ff4c_1 - zlib=1.2.13=hd590300_5 - - zstd=1.5.2=hfc55251_7 + - zstd=1.5.5=hfc55251_0 - autoconf=2.71=pl5321h2b4cb7a_1 - - boost-cpp=1.82.0=he19a28c_1 - - brotli-bin=1.0.9=h166bdaf_9 + - brotli-bin=1.1.0=hd590300_1 - bwidget=1.9.14=ha770c72_1 - ecl=21.2.1=h9d73b02_2 - - fplll=5.4.4=h8780c30_0 - - freetype=2.12.1=hca18f0e_1 + - 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_1 - - gcc_linux-64=12.3.0=h76fc315_1 + - 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_0 - - gxx_impl_linux-64=12.3.0=he2b93b0_0 - - krb5=1.20.1=h81ceb04_0 - - libcblas=3.9.0=17_linux64_openblas + - gfortran_impl_linux-64=12.3.0=hfcedea8_2 + - gxx_impl_linux-64=12.3.0=he2b93b0_2 + - igraph=0.7.1=0 + - krb5=1.21.2=h659d440_0 + - libboost=1.82.0=h6fcfa73_6 - libflint=2.9.0=h2f819a4_ntl_100 - libgcrypt=1.10.1=h166bdaf_0 - - libglib=2.76.4=hebfc3b9_0 - - libhwloc=2.9.1=hd6dc26d_0 - - liblapack=3.9.0=17_linux64_openblas - - libllvm16=16.0.3=hbf9e925_1 - - libsndfile=1.2.0=hb75c966_0 - - libtiff=4.5.1=h8b53f26_0 - - libxkbcommon=1.5.0=h79f4944_1 - - llvm-openmp=16.0.6=h4dfa4b3_0 + - libglib=2.78.0=hebfc3b9_0 + - libhwloc=2.9.3=default_h554bfaf_1009 + - libllvm15=15.0.7=h5cf9203_3 + - libopenblas=0.3.24=pthreads_h413a1c8_0 + - libsndfile=1.2.2=hc60ed4a_1 + - libtiff=4.6.0=h29866fb_1 + - llvm-openmp=17.0.2=h4dfa4b3_0 - m4ri=20140914=h7ca028e_1005 - mpc=1.3.1=hfe3b2da_0 - mpfi=1.5.4=h9f54685_1001 - - mysql-libs=8.0.33=hca2cd23_2 - - nss=3.89=he45b914_0 + - mysql-libs=8.0.33=hca2cd23_5 + - nss=3.94=h1d7d5a4_0 - pandoc=3.1.3=h32600fe_0 - pari=2.15.4=h4d4ae9b_2_pthread - ppl=1.2=h6ec01c2_1006 - - python=3.11.4=hab00c5b_0_cpython - - sqlite=3.42.0=h2c6b66d_0 + - python=3.11.6=hab00c5b_0_cpython + - qd=2.3.22=h2cc385e_1004 + - sqlite=3.43.0=h2c6b66d_0 - tachyon=0.99b6=0 - texinfo=7.0=pl5321h0f457ee_0 - - tktable=2.10=hb7b940f_3 - - xcb-util=0.4.0=h516909a_0 - - xcb-util-keysyms=0.4.0=h516909a_0 - - xcb-util-renderutil=0.3.9=h166bdaf_0 - - xcb-util-wm=0.4.1=h516909a_0 - - xorg-libx11=1.8.4=h0b41bf4_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.6=h8ee46fc_0 - alabaster=0.7.13=pyhd8ed1ab_0 - appdirs=1.4.4=pyh9f0ad1d_0 - appnope=0.1.3=pyhd8ed1ab_0 - arb=2.23.0=h44d021b_0 - - arpack=3.7.0=hdefa2d7_2 - attrs=23.1.0=pyh71513ae_1 - automake=1.16.5=pl5321ha770c72_0 - backcall=0.2.0=pyh9f0ad1d_0 - backports=1.0=pyhd8ed1ab_3 - - backports.zoneinfo=0.2.1=py311h38be061_7 - - brotli=1.0.9=h166bdaf_9 - - brotli-python=1.0.9=py311ha362b79_9 + - 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.1=pyhd8ed1ab_0 - certifi=2023.7.22=pyhd8ed1ab_0 - - chardet=5.1.0=py311h38be061_0 - - charset-normalizer=3.2.0=pyhd8ed1ab_0 + - chardet=5.2.0=py311h38be061_1 + - charset-normalizer=3.3.0=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_0 - - cycler=0.11.0=pyhd8ed1ab_0 - - cysignals=1.11.2=py311h82528dc_2 - - cython=0.29.36=py311hb755f60_0 + - cycler=0.12.1=pyhd8ed1ab_0 + - cysignals=1.11.2=py311h82528dc_3 + - cython=3.0.2=py311hb755f60_2 - dbus=1.13.6=h5008d03_3 - - debugpy=1.6.7=py311hcafe171_0 + - debugpy=1.8.0=py311hb755f60_1 - decorator=5.1.1=pyhd8ed1ab_0 - defusedxml=0.7.1=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - - docutils=0.19=py311h38be061_1 - - dsdp=5.8=hd9d9efa_1203 + - docutils=0.20.1=py311h38be061_2 - eclib=20230424=hdef1efb_0 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 - - exceptiongroup=1.1.2=pyhd8ed1ab_0 + - exceptiongroup=1.1.3=pyhd8ed1ab_0 - executing=1.2.0=pyhd8ed1ab_0 - - fflas-ffpack=2.4.3=h912ac81_2 - - filelock=3.12.2=pyhd8ed1ab_0 + - filelock=3.12.4=pyhd8ed1ab_0 - flit-core=3.9.0=pyhd8ed1ab_0 - fontconfig=2.14.2=h14ed4e7_0 + - fplll=5.4.4=h8780c30_0 - gap-defaults=4.12.2=ha770c72_3 - gast=0.5.4=pyhd8ed1ab_0 - - gfortran=12.3.0=h499e0f7_1 - - gfortran_linux-64=12.3.0=h7fe76b4_1 - - glib-tools=2.76.4=hfc55251_0 + - gfortran=12.3.0=h499e0f7_2 + - gfortran_linux-64=12.3.0=h7fe76b4_2 + - glib-tools=2.78.0=hfc55251_0 - gmpy2=2.1.2=py311h6a5fa03_1 - - gsl=2.7=he838d99_0 - - gxx=12.3.0=h8d2909c_1 - - gxx_linux-64=12.3.0=h8a814eb_1 + - gxx_linux-64=12.3.0=h8a814eb_2 - idna=3.4=pyhd8ed1ab_0 - imagesize=1.4.1=pyhd8ed1ab_0 - - iml=1.0.5=hd75c201_1003 - ipython_genutils=0.2.0=py_1 - json5=0.9.14=pyhd8ed1ab_0 - - jupyterlab_widgets=1.1.1=pyhd8ed1ab_0 - - kiwisolver=1.4.4=py311h4dd048b_1 + - jsonpointer=2.4=py311h38be061_3 + - jupyterlab_widgets=1.1.7=pyhd8ed1ab_0 + - kiwisolver=1.4.5=py311h9547e67_1 - lcalc=2.0.5=h6a8a7c6_1 - - lcms2=2.15=haa2dc70_1 - - libbrial=1.2.12=h138cd66_0 - - libclang13=16.0.3=default_h4d60ac6_2 - - libcups=2.3.3=h36d4200_3 - - libcurl=8.1.2=h409715c_0 - - liblapacke=3.9.0=17_linux64_openblas - - libpq=15.3=hbcd7760_1 - - libsystemd0=253=h8c4010b_1 - - libwebp=1.3.1=hbf2b3c1_0 + - lcms2=2.15=h7f713cb_2 + - libblas=3.9.0=18_linux64_openblas + - libboost-devel=1.82.0=h00ab1b0_6 + - libbrial=1.2.12=h3155cbd_1 + - libclang13=15.0.7=default_h9986a30_3 + - libcups=2.3.3=h4637d8d_4 + - libcurl=8.3.0=hca28451_0 + - libpq=15.4=hfc447b1_2 + - libsystemd0=254=h3516f8a_0 + - libwebp=1.3.2=hdffd6e0_0 - m4rie=20150908=h7ca028e_1001 - - markupsafe=2.1.3=py311h459d7ec_0 + - markupsafe=2.1.3=py311h459d7ec_1 - maxima=5.45.0=h9d73b02_3 - - mistune=3.0.0=pyhd8ed1ab_0 + - mistune=3.0.1=pyhd8ed1ab_0 - mpmath=1.3.0=pyhd8ed1ab_0 - munkres=1.1.4=pyh9f0ad1d_0 - nest-asyncio=1.5.6=pyhd8ed1ab_0 - networkx=2.8.8=pyhd8ed1ab_0 - - numpy=1.25.1=py311h64a7726_0 - - openjpeg=2.5.0=hfec8fc6_2 - - packaging=23.1=pyhd8ed1ab_0 + - openblas=0.3.24=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.11.1=pyhd8ed1ab_0 + - pathspec=0.11.2=pyhd8ed1ab_0 - pickleshare=0.7.5=py_1003 - pkgconfig=1.5.5=pyhd8ed1ab_4 - - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_0 - - pluggy=1.2.0=pyhd8ed1ab_0 + - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 + - pluggy=1.3.0=pyhd8ed1ab_0 - ply=3.11=py_1 - prometheus_client=0.17.1=pyhd8ed1ab_0 - - psutil=5.9.5=py311h2582759_0 + - psutil=5.9.5=py311h459d7ec_1 - 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_0 + - pybind11-global=2.11.1=py311h9547e67_2 - pycparser=2.21=pyhd8ed1ab_0 - - pygments=2.15.1=pyhd8ed1ab_0 - - pyparsing=3.0.9=pyhd8ed1ab_0 - - pyrsistent=0.19.3=py311h2582759_0 + - pygments=2.16.1=pyhd8ed1ab_0 + - pyparsing=3.1.1=pyhd8ed1ab_0 + - pyrsistent=0.19.3=py311h459d7ec_1 - pysocks=1.7.1=pyha2e5f31_6 - - python-fastjsonschema=2.18.0=pyhd8ed1ab_0 + - python-fastjsonschema=2.18.1=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=pyhd8ed1ab_0 - - pyyaml=6.0=py311hd4cff14_5 - - pyzmq=25.1.0=py311h75c88c4_0 + - pytz=2023.3.post1=pyhd8ed1ab_0 + - pyyaml=6.0.1=py311h459d7ec_1 + - pyzmq=25.1.1=py311h75c88c4_1 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.9.2=py311h46250e7_0 + - rpds-py=0.10.4=py311h46250e7_0 + - rw=0.8=h516909a_1001 - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 - sagetex=3.6.1=pyhd8ed1ab_0 - send2trash=1.8.2=pyh41d4057_0 @@ -307,155 +298,167 @@ dependencies: - six=1.16.0=pyh6c4a22f_0 - sniffio=1.3.0=pyhd8ed1ab_0 - snowballstemmer=2.2.0=pyhd8ed1ab_0 - - soupsieve=2.3.2.post1=pyhd8ed1ab_0 - - sphinxcontrib-applehelp=1.0.4=pyhd8ed1ab_0 - - sphinxcontrib-devhelp=1.0.2=py_0 - - sphinxcontrib-htmlhelp=2.0.1=pyhd8ed1ab_0 - - sphinxcontrib-jsmath=1.0.1=py_0 - - sphinxcontrib-qthelp=1.0.3=py_0 - - sphinxcontrib-serializinghtml=1.1.5=pyhd8ed1ab_2 + - soupsieve=2.5=pyhd8ed1ab_1 + - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_0 - sympow=2.023.6=hc6ab17c_3 - - tbb=2021.9.0=hf52228f_0 + - tbb=2021.10.0=h00ab1b0_1 - toml=0.10.2=pyhd8ed1ab_0 - tomli=2.0.1=pyhd8ed1ab_0 - - tomlkit=0.11.8=pyha770c72_0 - - tornado=6.3.2=py311h459d7ec_0 - - traitlets=5.9.0=pyhd8ed1ab_0 - - trove-classifiers=2023.7.6=pyhd8ed1ab_0 - - typing_extensions=4.7.1=pyha770c72_0 + - tornado=6.3.3=py311h459d7ec_1 + - traitlets=5.11.2=pyhd8ed1ab_0 + - trove-classifiers=2023.9.19=pyhd8ed1ab_0 + - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 + - typing_extensions=4.8.0=pyha770c72_0 - typing_utils=0.1.0=pyhd8ed1ab_0 - - tzlocal=5.0.1=py311h38be061_0 + - tzlocal=5.1=py311h38be061_0 + - uri-template=1.3.0=pyhd8ed1ab_0 - vcversioner=2.16.0.0=py_1 - - webencodings=0.5.1=py_1 - - websocket-client=1.6.1=pyhd8ed1ab_0 - - wheel=0.41.0=pyhd8ed1ab_0 - - xcb-util-image=0.4.0=h166bdaf_0 + - webcolors=1.13=pyhd8ed1ab_0 + - webencodings=0.5.1=pyhd8ed1ab_2 + - websocket-client=1.6.4=pyhd8ed1ab_0 + - wheel=0.41.2=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.10=h7f98852_1003 - - xorg-libxt=1.3.0=hd590300_0 - - zipp=3.16.2=pyhd8ed1ab_0 - - anyio=3.7.1=pyhd8ed1ab_0 - - asttokens=2.2.1=pyhd8ed1ab_0 - - async-lru=2.0.3=pyhd8ed1ab_0 + - xorg-libxrender=0.9.11=hd590300_0 + - xorg-libxt=1.3.0=hd590300_1 + - zipp=3.17.0=pyhd8ed1ab_0 + - anyio=4.0.0=pyhd8ed1ab_0 + - asttokens=2.4.0=pyhd8ed1ab_0 + - async-lru=2.0.4=pyhd8ed1ab_0 - babel=2.12.1=pyhd8ed1ab_1 - backports.functools_lru_cache=1.6.5=pyhd8ed1ab_0 - beautifulsoup4=4.12.2=pyha770c72_0 - beniget=0.4.1=pyhd8ed1ab_0 - - blas-devel=3.9.0=17_linux64_openblas - - bleach=6.0.0=pyhd8ed1ab_0 - - brial=1.2.12=pyha3edaa6_0 - - cairo=1.16.0=h35add3b_1015 - - cffi=1.15.1=py311h409f033_3 - - cmake=3.26.4=hcfe8598_0 - - comm=0.1.3=pyhd8ed1ab_0 - - contourpy=1.1.0=py311h9547e67_0 + - bleach=6.1.0=pyhd8ed1ab_0 + - boost-cpp=1.82.0=h44aadfe_6 + - brial=1.2.12=pyh694c41f_1 + - cached-property=1.5.2=hd8ed1ab_1 + - cairo=1.16.0=h0c91306_1017 + - cffi=1.16.0=py311hb3a22ac_0 + - cmake=3.27.6=hcfe8598_0 + - comm=0.1.4=pyhd8ed1ab_0 - cppy=1.2.1=pyhd8ed1ab_0 - - curl=8.1.2=h409715c_0 - - cxx-compiler=1.6.0=h00ab1b0_0 + - curl=8.3.0=hca28451_0 - cypari2=2.1.3=py311hd2352ae_2 - deprecation=2.1.0=pyh9f0ad1d_0 - - fonttools=4.41.1=py311h459d7ec_0 + - fonttools=4.43.1=py311h459d7ec_0 - fortran-compiler=1.6.0=heb67821_0 - - fpylll=0.5.9=py311hcfae7cf_1 - - giac=1.9.0.21=h673759e_1 - - glib=2.76.4=hfc55251_0 - - html5lib=1.1=pyh9f0ad1d_0 + - glib=2.78.0=hfc55251_0 - importlib-metadata=6.8.0=pyha770c72_0 - - importlib_resources=6.0.0=pyhd8ed1ab_1 - - jedi=0.18.2=pyhd8ed1ab_0 + - importlib_resources=6.1.0=pyhd8ed1ab_0 + - jedi=0.19.1=pyhd8ed1ab_0 - jinja2=3.1.2=pyhd8ed1ab_1 - jupyterlab_pygments=0.2.2=pyhd8ed1ab_0 - - libclang=16.0.3=default_h1cdf331_2 - - libgd=2.3.3=hfa28ad5_6 - - linbox=1.6.3=h9d78c56_7 + - libcblas=3.9.0=18_linux64_openblas + - libclang=15.0.7=default_h7634d5b_3 + - libgd=2.3.3=he9388d3_8 + - liblapack=3.9.0=18_linux64_openblas + - libxkbcommon=1.6.0=h5d7e998_0 - matplotlib-inline=0.1.6=pyhd8ed1ab_0 - memory-allocator=0.1.2=py311hd4cff14_2 - - overrides=7.3.1=pyhd8ed1ab_0 + - overrides=7.4.0=pyhd8ed1ab_0 - pexpect=4.8.0=pyh1a96a4e_2 - - pillow=9.5.0=py311h573f0d3_0 + - pillow=10.0.1=py311h8aef010_1 - pip=23.2.1=pyhd8ed1ab_0 - pplpy=0.8.7=py311h85abca9_0 - - primecountpy=0.1.0=py311h9547e67_3 - - pulseaudio-client=16.1=hb77b528_4 - - pybind11=2.11.1=py311h9547e67_0 - - pyproject-api=1.5.3=pyhd8ed1ab_0 + - primecountpy=0.1.0=py311h9547e67_4 + - pulseaudio-client=16.1=hb77b528_5 + - pybind11=2.11.1=py311h9547e67_2 + - pyproject-api=1.6.1=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - - pytz-deprecation-shim=0.1.0.post0=py311h38be061_3 - - referencing=0.30.0=pyhd8ed1ab_0 + - pytz-deprecation-shim=0.1.0.post0=py311h38be061_4 + - referencing=0.30.2=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - sagemath-db-conway-polynomials=0.5.0=ha878542_1 - - sip=6.7.10=py311hb755f60_0 - - suitesparse=5.10.1=h9e50725_1 + - sip=6.7.11=py311hb755f60_1 - sympy=1.12=pypyh9d50eac_103 - terminado=0.17.1=pyh41d4057_0 - tinycss2=1.2.1=pyhd8ed1ab_0 - - typing-extensions=4.7.1=hd8ed1ab_0 - - urllib3=2.0.4=pyhd8ed1ab_0 + - typing-extensions=4.8.0=hd8ed1ab_0 + - urllib3=2.0.6=pyhd8ed1ab_0 - xorg-libxi=1.7.10=h7f98852_0 - - argon2-cffi-bindings=21.2.0=py311hd4cff14_3 - - blas=2.117=openblas - - compilers=1.6.0=ha770c72_0 - - cvxopt=1.3.1=py311h2b3fd1d_0 - - gstreamer=1.22.0=h25f0c4b_2 - - harfbuzz=7.3.0=hdb3a94d_0 + - argon2-cffi-bindings=21.2.0=py311h459d7ec_4 + - arrow=1.3.0=pyhd8ed1ab_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.6=h98fc4e7_2 + - harfbuzz=8.2.1=h3d44ed6_0 - hatchling=1.18.0=pyhd8ed1ab_0 - - igraph=0.9.10=ha1f048c_1 - - importlib-resources=6.0.0=pyhd8ed1ab_1 + - iml=1.0.5=hd75c201_1003 + - importlib-resources=6.1.0=pyhd8ed1ab_0 - importlib_metadata=6.8.0=hd8ed1ab_0 - jsonschema-specifications=2023.7.1=pyhd8ed1ab_0 - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1 - - matplotlib-base=3.7.2=py311h54ef318_0 - - platformdirs=3.9.1=pyhd8ed1ab_0 - - poetry-core=1.6.1=pyhd8ed1ab_0 - - pyqt5-sip=12.11.0=py311hcafe171_3 - - pythran=0.13.1=py311h92ebd52_0 + - liblapacke=3.9.0=18_linux64_openblas + - numpy=1.26.0=py311h64a7726_0 + - platformdirs=3.11.0=pyhd8ed1ab_0 + - pyqt5-sip=12.12.2=py311hb755f60_5 - requests=2.31.0=pyhd8ed1ab_0 - - setuptools-scm=7.1.0=pyhd8ed1ab_0 + - setuptools-scm=8.0.4=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 - - wcwidth=0.2.6=pyhd8ed1ab_0 + - suitesparse=5.10.1=h9e50725_1 + - wcwidth=0.2.8=pyhd8ed1ab_0 - xorg-libxtst=1.2.3=h7f98852_1002 - - argon2-cffi=21.3.0=pyhd8ed1ab_0 - - gst-plugins-base=1.22.0=h4243ec0_2 - - jsonschema=4.18.4=pyhd8ed1ab_0 - - jupyter_core=5.3.1=py311h38be061_0 - - openjdk=17.0.3=h19c1b89_7 - - pango=1.50.14=heaa33ce_1 - - pooch=1.7.0=pyha770c72_3 + - argon2-cffi=23.1.0=pyhd8ed1ab_0 + - blas-devel=3.9.0=18_linux64_openblas + - contourpy=1.1.1=py311h9547e67_1 + - cvxopt=1.3.2=py311h2b3fd1d_1 + - fpylll=0.5.9=py311hcfae7cf_1 + - giac=1.9.0.21=h673759e_1 + - gst-plugins-base=1.22.6=h8e1006c_2 + - isoduration=20.11.0=pyhd8ed1ab_0 + - jsonschema=4.19.1=pyhd8ed1ab_0 + - jupyter_core=5.3.2=py311h38be061_0 + - linbox=1.6.3=h9d78c56_7 + - openjdk=20.0.2=hfea2f88_1 + - pango=1.50.14=ha41ecd1_2 + - pooch=1.7.0=pyhd8ed1ab_4 - prompt-toolkit=3.0.39=pyha770c72_0 - - rw=0.9=h7f98852_0 - - setuptools_scm=7.1.0=hd8ed1ab_0 - - sphinx=6.2.1=pyhd8ed1ab_0 - - virtualenv=20.24.1=pyhd8ed1ab_0 + - pythran=0.14.0=py311h92ebd52_1 + - setuptools_scm=8.0.4=hd8ed1ab_0 + - virtualenv=20.24.4=pyhd8ed1ab_0 + - blas=2.118=openblas - jmol=14.32.10=ha770c72_0 - - jupyter_client=8.3.0=pyhd8ed1ab_0 - - jupyter_events=0.6.3=pyhd8ed1ab_0 - - nbformat=5.9.1=pyhd8ed1ab_0 + - jsonschema-with-format-nongpl=4.19.1=pyhd8ed1ab_0 + - jupyter_client=8.3.1=pyhd8ed1ab_0 + - matplotlib-base=3.8.0=py311h54ef318_1 + - nbformat=5.9.2=pyhd8ed1ab_0 - prompt_toolkit=3.0.39=hd8ed1ab_0 - - qt-main=5.15.8=haa3a1c2_11 - - r-base=4.3.0=h0fc540b_0 + - qt-main=5.15.8=hc47bfe8_16 + - r-base=4.3.1=h639d9d3_5 - scipy=1.10.1=py311h64a7726_3 - - sphinx-basic-ng=1.0.0b2=pyhd8ed1ab_0 - - sphinx-copybutton=0.5.2=pyhd8ed1ab_0 - - sphinxcontrib-websupport=1.2.4=pyhd8ed1ab_1 - - tox=4.6.4=pyhd8ed1ab_0 - - furo=2023.5.20=pyhd8ed1ab_1 - - ipython=8.14.0=pyh41d4057_0 + - tox=4.11.3=pyhd8ed1ab_0 + - ipython=8.16.1=pyh0d859eb_0 + - jupyter_events=0.7.0=pyhd8ed1ab_2 - nbclient=0.8.0=pyhd8ed1ab_0 - - pyqt=5.15.7=py311ha74522f_3 - - rpy2=3.5.11=py311r43h1f0f07a_2 - - ipykernel=6.24.0=pyh71e2992_0 - - matplotlib=3.7.2=py311h38be061_0 - - nbconvert-core=7.7.2=pyhd8ed1ab_0 - - jupyter_server=2.7.0=pyhd8ed1ab_0 - - nbconvert-pandoc=7.7.2=pyhd8ed1ab_0 + - pyqt=5.15.9=py311hf0fb5b6_5 + - rpy2=3.5.11=py311r43h1f0f07a_3 + - ipykernel=6.25.2=pyh2140261_0 + - matplotlib=3.8.0=py311h38be061_1 + - nbconvert-core=7.9.2=pyhd8ed1ab_0 + - jupyter_server=2.7.3=pyhd8ed1ab_1 + - nbconvert-pandoc=7.9.2=pyhd8ed1ab_0 - jupyter-lsp=2.2.0=pyhd8ed1ab_0 - - jupyterlab_server=2.24.0=pyhd8ed1ab_0 - - nbconvert=7.7.2=pyhd8ed1ab_0 + - jupyterlab_server=2.25.0=pyhd8ed1ab_0 + - nbconvert=7.9.2=pyhd8ed1ab_0 - notebook-shim=0.2.3=pyhd8ed1ab_0 - - jupyterlab=4.0.3=pyhd8ed1ab_0 - - notebook=7.0.0=pyhd8ed1ab_0 - - widgetsnbextension=3.6.4=pyhd8ed1ab_0 - - ipywidgets=7.7.5=pyhd8ed1ab_0 + - jupyterlab=4.0.6=pyhd8ed1ab_0 + - notebook=7.0.4=pyhd8ed1ab_0 + - widgetsnbextension=3.6.6=pyhd8ed1ab_0 + - ipywidgets=7.8.0=pyhd8ed1ab_0 - jupyter-jsmol=2022.1.0=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.yml b/src/environment-3.11-macos.yml index e0844add23c..7c3945539ef 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: 4cd6f667b9fb8a34b94f5b68b200d11bc041a8b0f36c9218847ad1964dbb8cb4 +# input_hash: fbfee861def4f8ad644369faa85105ae96e28adc0decec926abcebb0ae4afc13 channels: - conda-forge @@ -149,7 +149,7 @@ dependencies: - colorama=0.4.6=pyhd8ed1ab_0 - cycler=0.12.1=pyhd8ed1ab_0 - cysignals=1.11.2=py311h8a58447_3 - - cython=0.29.36=py311hdf8f085_1 + - cython=3.0.2=py311hdf8f085_2 - debugpy=1.8.0=py311hdf8f085_1 - decorator=5.1.1=pyhd8ed1ab_0 - defusedxml=0.7.1=pyhd8ed1ab_0 diff --git a/src/environment-3.9-linux.yml b/src/environment-3.9-linux.yml index e47d25e27fa..d8f13976ac9 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: e041645ebae12638f8678ee36d506c791f19fb30c711e055eaafa87040212d2f +# input_hash: 3069b3e046727b04551dcd6240240679bf6adc611cf878cbd4acec6ff4e261cb channels: - conda-forge @@ -208,7 +208,7 @@ dependencies: - colorama=0.4.6=pyhd8ed1ab_0 - cycler=0.12.1=pyhd8ed1ab_0 - cysignals=1.11.2=py39h1ce0973_3 - - cython=0.29.36=py39h3d6467e_1 + - cython=3.0.2=py39h3d6467e_2 - dbus=1.13.6=h5008d03_3 - debugpy=1.8.0=py39h3d6467e_1 - decorator=5.1.1=pyhd8ed1ab_0 diff --git a/src/environment-3.9-macos.yml b/src/environment-3.9-macos.yml index 965af71e3e8..c5273aa81a2 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: e317c97c2c45f0e931b5e55936c1ed828e13490a0988d2ef4cb51a895532c1a4 +# input_hash: a4f0adc56e008b24c3e68f6a0f2b95e617f6c975b1cc93dc92512adad93d3512 channels: - conda-forge @@ -149,7 +149,7 @@ dependencies: - colorama=0.4.6=pyhd8ed1ab_0 - cycler=0.12.1=pyhd8ed1ab_0 - cysignals=1.11.2=py39hf6ae30e_3 - - cython=0.29.36=py39h840bb9f_1 + - cython=3.0.2=py39h840bb9f_2 - debugpy=1.8.0=py39h840bb9f_1 - decorator=5.1.1=pyhd8ed1ab_0 - defusedxml=0.7.1=pyhd8ed1ab_0 diff --git a/src/environment-dev-3.10-linux.yml b/src/environment-dev-3.10-linux.yml index 880b139dadd..1cb2dd87846 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: f0eef6aeafe7239ecbb9479957b227d93d976f7154c46e509083c6ef793567fb +# input_hash: 4bb403ecf86d8e54c90fb171f1ba16c8337bcef742e691a5ea15d0420a8e058a channels: - conda-forge @@ -12,44 +12,41 @@ dependencies: - font-ttf-inconsolata=3.000=h77eed37_0 - font-ttf-source-code-pro=2.038=h77eed37_0 - font-ttf-ubuntu=0.83=hab24e00_0 - - gh=2.32.1=ha8f183a_0 + - gh=2.36.0=ha8f183a_0 - kernel-headers_linux-64=2.6.32=he073ed8_16 - ld_impl_linux-64=2.40=h41732ed_0 - - libgcc-devel_linux-64=12.3.0=h8bca6fd_0 - - libgfortran5=13.1.0=h15d22d2_0 - - libstdcxx-devel_linux-64=12.3.0=h8bca6fd_0 - - libstdcxx-ng=13.1.0=hfd8a6a1_0 + - libboost-headers=1.82.0=ha770c72_6 + - libgcc-devel_linux-64=12.3.0=h8bca6fd_2 + - libstdcxx-devel_linux-64=12.3.0=h8bca6fd_2 + - libstdcxx-ng=13.2.0=h7e041cc_2 - mathjax=3.2.2=ha770c72_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 - - python_abi=3.10=3_cp310 + - 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 - fonts-conda-forge=1=0 - - libgfortran-ng=13.1.0=h69a702a_0 - - libgomp=13.1.0=he5830b7_0 + - libgomp=13.2.0=h807b86a_2 - pari-seadata=0.0.20090618=0 - sysroot_linux-64=2.12=he073ed8_16 - threejs-sage=122=hd8ed1ab_2 - binutils_impl_linux-64=2.40=hf600244_0 - fonts-conda-ecosystem=1=0 - binutils=2.40=hdd6e379_0 - - binutils_linux-64=2.40=hbdbef99_1 + - binutils_linux-64=2.40=hbdbef99_2 - _openmp_mutex=4.5=2_kmp_llvm - - libgcc-ng=13.1.0=he5830b7_0 - - alsa-lib=1.2.8=h166bdaf_0 + - libgcc-ng=13.2.0=h807b86a_2 + - alsa-lib=1.2.10=hd590300_0 - attr=2.5.1=h166bdaf_1 - - bc=1.07.1=h7f98852_0 - bdw-gc=8.0.6=h4bd325d_0 - bzip2=1.0.8=h7f98852_4 - c-ares=1.19.1=hd590300_0 - cliquer=1.22=h36c2ea0_0 - - fftw=3.3.10=nompi_hc118613_108 - fribidi=1.0.10=h36c2ea0_0 - gengetopt=2.23=h9c3ff4c_0 - gettext=0.21.1=h27087fc_0 @@ -57,57 +54,56 @@ dependencies: - giflib=5.2.1=h0b41bf4_3 - gmp=6.2.1=h58526e2_0 - graphite2=1.3.13=h58526e2_1001 - - icu=72.1=hcb278e6_0 + - 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.1=h58526e2_0 - - libbrotlicommon=1.0.9=h166bdaf_9 + - libbrotlicommon=1.1.0=hd590300_1 - libcbor=0.10.2=hcb278e6_0 - - libdeflate=1.18=h0b41bf4_0 + - libdeflate=1.19=hd590300_0 - libev=4.33=h516909a_1 - libexpat=2.5.0=hcb278e6_1 - libffi=3.4.2=h7f98852_5 + - libgfortran5=13.2.0=ha4646dd_2 - libiconv=1.17=h166bdaf_0 - - libjpeg-turbo=2.1.5.1=h0b41bf4_0 - - libnsl=2.0.0=h7f98852_0 + - libjpeg-turbo=2.1.5.1=hd590300_1 + - libnsl=2.0.0=hd590300_1 - libogg=1.3.4=h7f98852_1 - - libopenblas=0.3.23=pthreads_h80387f5_0 - libopus=1.3.1=h7f98852_1 - - libsanitizer=12.3.0=h0f45ef3_0 + - libsanitizer=12.3.0=h0f45ef3_2 - libsodium=1.0.18=h36c2ea0_1 - libtool=2.4.7=h27087fc_0 - libuuid=2.38.1=h0b41bf4_0 - - libuv=1.44.2=h166bdaf_0 - - libwebp-base=1.3.1=hd590300_0 + - libuv=1.46.0=hd590300_0 + - libwebp-base=1.3.2=hd590300_0 - 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_0 - - mpg123=1.31.3=hcb278e6_0 + - metis=5.1.0=h59595ed_1007 + - mpg123=1.32.3=h59595ed_0 - nauty=2.7.2=h7f98852_0 - ncurses=6.4=hcb278e6_0 - ninja=1.11.1=h924138e_0 - nspr=4.35=h27087fc_0 - - openssl=3.1.1=hd590300_1 + - openssl=3.1.3=hd590300_0 - palp=2.20=h36c2ea0_0 - patch=2.7.6=h7f98852_1002 - - pixman=0.40.0=h36c2ea0_0 + - pixman=0.42.2=h59595ed_0 - pkg-config=0.29.2=h36c2ea0_1008 - planarity=3.0.0.5=h36c2ea0_1002 - - primesieve=11.0=hcb278e6_0 + - primesieve=11.1=h59595ed_0 - pthread-stubs=0.4=h36c2ea0_1001 - - qd=2.3.22=h2cc385e_1004 - qhull=2020.2=h4bd325d_2 - - rhash=1.4.3=h166bdaf_0 + - 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.0.10=h7f98852_0 + - 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 @@ -120,79 +116,77 @@ dependencies: - 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_0 + - gcc_impl_linux-64=12.3.0=he2b93b0_2 - givaro=4.1.1=h192cbe9_1 - glpk=5.0=h445213a_0 - - libblas=3.9.0=17_linux64_openblas - - libbrotlidec=1.0.9=h166bdaf_9 - - libbrotlienc=1.0.9=h166bdaf_9 - - libcap=2.67=he9d0100_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_2 - libgpg-error=1.47=h71f35ed_0 - libhomfly=1.02r6=h36c2ea0_0 - libnghttp2=1.52.0=h61bc06f_0 - libpng=1.6.39=h753d276_0 - - libsqlite=3.42.0=h2797004_0 + - libsqlite=3.43.0=h2797004_0 - libssh2=1.11.0=h0841786_0 - libvorbis=1.3.7=h9c3ff4c_0 - libxcb=1.15=h0b41bf4_0 - - libxml2=2.11.4=h0d562d8_0 + - libxml2=2.11.5=h232c23b_1 - mpfr=4.2.0=hb012696_0 - - mysql-common=8.0.33=hf1915f5_2 + - mysql-common=8.0.33=hf1915f5_5 - ntl=11.4.3=hef3c4d3_1 - - openblas=0.3.23=pthreads_h855a84d_0 - pcre2=10.40=hc3806b6_0 - perl=5.32.1=4_hd590300_perl5 - - primecount=7.6=hcb278e6_0 + - primecount=7.9=hcb278e6_0 - readline=8.2=h8228510_1 - - tar=1.34=hb2e2bae_1 - - tk=8.6.12=h27826a3_0 + - tk=8.6.13=h2797004_0 - xorg-fixesproto=5.0=h7f98852_1002 - - xorg-libsm=1.2.3=hd9c2040_1000 + - xorg-libsm=1.2.4=h7391055_0 - zeromq=4.3.4=h9c3ff4c_1 - zlib=1.2.13=hd590300_5 - - zstd=1.5.2=hfc55251_7 + - zstd=1.5.5=hfc55251_0 - autoconf=2.71=pl5321h2b4cb7a_1 - - boost-cpp=1.82.0=he19a28c_1 - - brotli-bin=1.0.9=h166bdaf_9 + - brotli-bin=1.1.0=hd590300_1 - bwidget=1.9.14=ha770c72_1 - ecl=21.2.1=h9d73b02_2 - - fplll=5.4.4=h8780c30_0 - - freetype=2.12.1=hca18f0e_1 + - 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_1 - - gcc_linux-64=12.3.0=h76fc315_1 + - 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_0 - - gxx_impl_linux-64=12.3.0=he2b93b0_0 + - gfortran_impl_linux-64=12.3.0=hfcedea8_2 + - gxx_impl_linux-64=12.3.0=he2b93b0_2 - igraph=0.7.1=0 - - krb5=1.20.1=h81ceb04_0 - - libcblas=3.9.0=17_linux64_openblas + - krb5=1.21.2=h659d440_0 + - libboost=1.82.0=h6fcfa73_6 - libflint=2.9.0=h2f819a4_ntl_100 - libgcrypt=1.10.1=h166bdaf_0 - - libglib=2.76.4=hebfc3b9_0 - - libhwloc=2.9.1=nocuda_h7313eea_6 - - liblapack=3.9.0=17_linux64_openblas - - libllvm16=16.0.6=h5cf9203_1 - - libsndfile=1.2.0=hb75c966_0 - - libtiff=4.5.1=h8b53f26_0 - - libudev1=253=h0b41bf4_1 - - llvm-openmp=16.0.6=h4dfa4b3_0 + - libglib=2.78.0=hebfc3b9_0 + - libhwloc=2.9.3=default_h554bfaf_1009 + - libllvm15=15.0.7=h5cf9203_3 + - libopenblas=0.3.24=pthreads_h413a1c8_0 + - libsndfile=1.2.2=hc60ed4a_1 + - libtiff=4.6.0=h29866fb_1 + - libudev1=254=h3f72095_0 + - llvm-openmp=17.0.2=h4dfa4b3_0 - m4ri=20140914=h7ca028e_1005 - mpc=1.3.1=hfe3b2da_0 - mpfi=1.5.4=h9f54685_1001 - - mysql-libs=8.0.33=hca2cd23_2 - - nss=3.89=he45b914_0 + - mysql-libs=8.0.33=hca2cd23_5 + - nss=3.94=h1d7d5a4_0 - pandoc=3.1.3=h32600fe_0 - pari=2.15.4=h4d4ae9b_2_pthread - ppl=1.2=h6ec01c2_1006 - python=3.10.12=hd12c33a_0_cpython - - sqlite=3.42.0=h2c6b66d_0 + - qd=2.3.22=h2cc385e_1004 + - sqlite=3.43.0=h2c6b66d_0 - tachyon=0.99b6=0 - texinfo=7.0=pl5321h0f457ee_0 - - tktable=2.10=hb7b940f_3 + - 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 @@ -206,104 +200,102 @@ dependencies: - automake=1.16.5=pl5321ha770c72_0 - backcall=0.2.0=pyh9f0ad1d_0 - backports=1.0=pyhd8ed1ab_3 - - backports.zoneinfo=0.2.1=py310hff52083_7 - - brotli=1.0.9=h166bdaf_9 - - brotli-python=1.0.9=py310hd8f1fbe_9 + - 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.1=pyhd8ed1ab_0 - certifi=2023.7.22=pyhd8ed1ab_0 - - chardet=5.1.0=py310hff52083_0 - - charset-normalizer=3.2.0=pyhd8ed1ab_0 + - chardet=5.2.0=py310hff52083_1 + - charset-normalizer=3.3.0=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_0 - - cycler=0.11.0=pyhd8ed1ab_0 - - cysignals=1.11.2=py310h945e7c7_2 - - cython=0.29.36=py310hc6cd4ac_0 + - cycler=0.12.1=pyhd8ed1ab_0 + - cysignals=1.11.2=py310h945e7c7_3 + - cython=3.0.2=py310hc6cd4ac_2 - dbus=1.13.6=h5008d03_3 - - debugpy=1.6.7=py310heca2aa9_0 + - debugpy=1.8.0=py310hc6cd4ac_1 - decorator=5.1.1=pyhd8ed1ab_0 - defusedxml=0.7.1=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - - docutils=0.19=py310hff52083_1 - - dsdp=5.8=hd9d9efa_1203 + - docutils=0.20.1=py310hff52083_2 - eclib=20230424=hdef1efb_0 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 - - exceptiongroup=1.1.2=pyhd8ed1ab_0 + - exceptiongroup=1.1.3=pyhd8ed1ab_0 - execnet=2.0.2=pyhd8ed1ab_0 - executing=1.2.0=pyhd8ed1ab_0 - - fflas-ffpack=2.4.3=h912ac81_2 - - filelock=3.12.2=pyhd8ed1ab_0 + - filelock=3.12.4=pyhd8ed1ab_0 - flit-core=3.9.0=pyhd8ed1ab_0 - fontconfig=2.14.2=h14ed4e7_0 + - fplll=5.4.4=h8780c30_0 - gap-defaults=4.12.2=ha770c72_3 - gast=0.5.4=pyhd8ed1ab_0 - - gfortran=12.3.0=h499e0f7_1 - - gfortran_linux-64=12.3.0=h7fe76b4_1 - - glib-tools=2.76.4=hfc55251_0 + - gfortran=12.3.0=h499e0f7_2 + - gfortran_linux-64=12.3.0=h7fe76b4_2 + - glib-tools=2.78.0=hfc55251_0 - gmpy2=2.1.2=py310h3ec546c_1 - - gsl=2.7=he838d99_0 - - gxx=12.3.0=h8d2909c_1 - - gxx_linux-64=12.3.0=h8a814eb_1 + - gxx_linux-64=12.3.0=h8a814eb_2 - idna=3.4=pyhd8ed1ab_0 - imagesize=1.4.1=pyhd8ed1ab_0 - - iml=1.0.5=hd75c201_1003 - iniconfig=2.0.0=pyhd8ed1ab_0 - ipython_genutils=0.2.0=py_1 - json5=0.9.14=pyhd8ed1ab_0 - - jupyterlab_widgets=1.1.1=pyhd8ed1ab_0 - - kiwisolver=1.4.4=py310hbf28c38_1 + - jsonpointer=2.4=py310hff52083_3 + - jupyterlab_widgets=1.1.7=pyhd8ed1ab_0 + - kiwisolver=1.4.5=py310hd41b1e2_1 - lcalc=2.0.5=h6a8a7c6_1 - - lcms2=2.15=haa2dc70_1 - - libbrial=1.2.12=h138cd66_0 - - libclang13=16.0.6=default_h4d60ac6_1 - - libcups=2.3.3=h36d4200_3 - - libcurl=8.1.2=h409715c_0 + - lcms2=2.15=h7f713cb_2 + - libblas=3.9.0=18_linux64_openblas + - libboost-devel=1.82.0=h00ab1b0_6 + - libbrial=1.2.12=h3155cbd_1 + - libclang13=15.0.7=default_h9986a30_3 + - libcups=2.3.3=h4637d8d_4 + - libcurl=8.3.0=hca28451_0 - libfido2=1.13.0=h2e5b2a7_0 - - liblapacke=3.9.0=17_linux64_openblas - - libpq=15.3=hbcd7760_1 - - libsystemd0=253=h8c4010b_1 - - libwebp=1.3.1=hbf2b3c1_0 + - libpq=15.4=hfc447b1_2 + - libsystemd0=254=h3516f8a_0 + - libwebp=1.3.2=hdffd6e0_0 - m4rie=20150908=h7ca028e_1001 - - markupsafe=2.1.3=py310h2372a71_0 + - markupsafe=2.1.3=py310h2372a71_1 - maxima=5.45.0=h9d73b02_3 - - mistune=3.0.0=pyhd8ed1ab_0 + - mistune=3.0.1=pyhd8ed1ab_0 - mpmath=1.3.0=pyhd8ed1ab_0 - munkres=1.1.4=pyh9f0ad1d_0 - nest-asyncio=1.5.6=pyhd8ed1ab_0 - networkx=2.8.8=pyhd8ed1ab_0 - - numpy=1.25.1=py310ha4c1d20_0 - - openjpeg=2.5.0=hfec8fc6_2 - - packaging=23.1=pyhd8ed1ab_0 + - openblas=0.3.24=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.11.1=pyhd8ed1ab_0 + - pathspec=0.11.2=pyhd8ed1ab_0 - pickleshare=0.7.5=py_1003 - pkgconfig=1.5.5=pyhd8ed1ab_4 - - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_0 - - pluggy=1.2.0=pyhd8ed1ab_0 + - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 + - pluggy=1.3.0=pyhd8ed1ab_0 - ply=3.11=py_1 - prometheus_client=0.17.1=pyhd8ed1ab_0 - - psutil=5.9.5=py310h1fa729e_0 + - psutil=5.9.5=py310h2372a71_1 - 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_0 - - pycodestyle=2.10.0=pyhd8ed1ab_0 + - pybind11-global=2.11.1=py310hd41b1e2_2 + - pycodestyle=2.11.0=pyhd8ed1ab_0 - pycparser=2.21=pyhd8ed1ab_0 - - pygments=2.15.1=pyhd8ed1ab_0 - - pyparsing=3.0.9=pyhd8ed1ab_0 - - pyrsistent=0.19.3=py310h1fa729e_0 + - pygments=2.16.1=pyhd8ed1ab_0 + - pyparsing=3.1.1=pyhd8ed1ab_0 + - pyrsistent=0.19.3=py310h2372a71_1 - pysocks=1.7.1=pyha2e5f31_6 - pyspellchecker=0.7.2=pyhd8ed1ab_0 - - python-fastjsonschema=2.18.0=pyhd8ed1ab_0 + - python-fastjsonschema=2.18.1=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=pyhd8ed1ab_0 - - pyyaml=6.0=py310h5764c6d_5 - - pyzmq=25.1.0=py310h5bbb5d0_0 + - pytz=2023.3.post1=pyhd8ed1ab_0 + - pyyaml=6.0.1=py310h2372a71_1 + - pyzmq=25.1.1=py310h5bbb5d0_1 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.9.2=py310hcb5633a_0 + - rpds-py=0.10.4=py310hcb5633a_0 - rw=0.8=h516909a_1001 - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 - sagetex=3.6.1=pyhd8ed1ab_0 @@ -314,165 +306,177 @@ dependencies: - six=1.16.0=pyh6c4a22f_0 - sniffio=1.3.0=pyhd8ed1ab_0 - snowballstemmer=2.2.0=pyhd8ed1ab_0 - - soupsieve=2.3.2.post1=pyhd8ed1ab_0 - - sphinxcontrib-applehelp=1.0.4=pyhd8ed1ab_0 - - sphinxcontrib-devhelp=1.0.2=py_0 - - sphinxcontrib-htmlhelp=2.0.1=pyhd8ed1ab_0 - - sphinxcontrib-jsmath=1.0.1=py_0 - - sphinxcontrib-qthelp=1.0.3=py_0 - - sphinxcontrib-serializinghtml=1.1.5=pyhd8ed1ab_2 + - soupsieve=2.5=pyhd8ed1ab_1 + - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_0 - sympow=2.023.6=hc6ab17c_3 - - tbb=2021.9.0=hf52228f_0 + - tbb=2021.10.0=h00ab1b0_1 - toml=0.10.2=pyhd8ed1ab_0 - tomli=2.0.1=pyhd8ed1ab_0 - - tomlkit=0.11.8=pyha770c72_0 - - tornado=6.3.2=py310h2372a71_0 - - traitlets=5.9.0=pyhd8ed1ab_0 - - trove-classifiers=2023.7.6=pyhd8ed1ab_0 - - typing_extensions=4.7.1=pyha770c72_0 + - tornado=6.3.3=py310h2372a71_1 + - traitlets=5.11.2=pyhd8ed1ab_0 + - trove-classifiers=2023.9.19=pyhd8ed1ab_0 + - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 + - typing_extensions=4.8.0=pyha770c72_0 - typing_utils=0.1.0=pyhd8ed1ab_0 - - tzlocal=5.0.1=py310hff52083_0 - - unicodedata2=15.0.0=py310h5764c6d_0 + - tzlocal=5.1=py310hff52083_0 + - unicodedata2=15.1.0=py310h2372a71_0 + - uri-template=1.3.0=pyhd8ed1ab_0 - vcversioner=2.16.0.0=py_1 - - webencodings=0.5.1=py_1 - - websocket-client=1.6.1=pyhd8ed1ab_0 - - wheel=0.41.0=pyhd8ed1ab_0 + - webcolors=1.13=pyhd8ed1ab_0 + - webencodings=0.5.1=pyhd8ed1ab_2 + - websocket-client=1.6.4=pyhd8ed1ab_0 + - wheel=0.41.2=pyhd8ed1ab_0 - xcb-util-image=0.4.0=h8ee46fc_1 - - xkeyboard-config=2.39=hd590300_0 + - 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_0 - - zipp=3.16.2=pyhd8ed1ab_0 - - anyio=3.7.1=pyhd8ed1ab_0 - - asttokens=2.2.1=pyhd8ed1ab_0 - - async-lru=2.0.3=pyhd8ed1ab_0 + - xorg-libxt=1.3.0=hd590300_1 + - zipp=3.17.0=pyhd8ed1ab_0 + - anyio=4.0.0=pyhd8ed1ab_0 + - asttokens=2.4.0=pyhd8ed1ab_0 + - async-lru=2.0.4=pyhd8ed1ab_0 - babel=2.12.1=pyhd8ed1ab_1 - backports.functools_lru_cache=1.6.5=pyhd8ed1ab_0 - beautifulsoup4=4.12.2=pyha770c72_0 - beniget=0.4.1=pyhd8ed1ab_0 - - blas-devel=3.9.0=17_linux64_openblas - - bleach=6.0.0=pyhd8ed1ab_0 - - brial=1.2.12=pyha3edaa6_0 - - cairo=1.16.0=hbbf8b49_1016 + - bleach=6.1.0=pyhd8ed1ab_0 + - boost-cpp=1.82.0=h44aadfe_6 + - brial=1.2.12=pyh694c41f_1 + - cached-property=1.5.2=hd8ed1ab_1 + - cairo=1.16.0=h0c91306_1017 - cattrs=23.1.2=pyhd8ed1ab_0 - - cffi=1.15.1=py310h255011f_3 - - cmake=3.26.4=hcfe8598_0 - - comm=0.1.3=pyhd8ed1ab_0 - - contourpy=1.1.0=py310hd41b1e2_0 + - cffi=1.16.0=py310h2fee648_0 + - cmake=3.27.6=hcfe8598_0 + - comm=0.1.4=pyhd8ed1ab_0 - cppy=1.2.1=pyhd8ed1ab_0 - - curl=8.1.2=h409715c_0 - - cxx-compiler=1.6.0=h00ab1b0_0 + - curl=8.3.0=hca28451_0 - cypari2=2.1.3=py310h14ed79e_2 - deprecation=2.1.0=pyh9f0ad1d_0 - - fonttools=4.41.1=py310h2372a71_0 + - fonttools=4.43.1=py310h2372a71_0 - fortran-compiler=1.6.0=heb67821_0 - - fpylll=0.5.9=py310h0dadf69_1 - - giac=1.9.0.21=h673759e_1 - - glib=2.76.4=hfc55251_0 - - html5lib=1.1=pyh9f0ad1d_0 + - glib=2.78.0=hfc55251_0 - importlib-metadata=6.8.0=pyha770c72_0 - - importlib_resources=6.0.0=pyhd8ed1ab_1 - - jedi=0.18.2=pyhd8ed1ab_0 + - importlib_resources=6.1.0=pyhd8ed1ab_0 + - jedi=0.19.1=pyhd8ed1ab_0 - jinja2=3.1.2=pyhd8ed1ab_1 - jupyterlab_pygments=0.2.2=pyhd8ed1ab_0 - - libclang=16.0.6=default_h1cdf331_1 - - libgd=2.3.3=hfa28ad5_6 - - libxkbcommon=1.5.0=h5d7e998_3 - - linbox=1.6.3=h9d78c56_7 + - libcblas=3.9.0=18_linux64_openblas + - libclang=15.0.7=default_h7634d5b_3 + - libgd=2.3.3=he9388d3_8 + - liblapack=3.9.0=18_linux64_openblas + - libxkbcommon=1.6.0=h5d7e998_0 - matplotlib-inline=0.1.6=pyhd8ed1ab_0 - memory-allocator=0.1.2=py310h5764c6d_2 - - openssh=9.3p1=hbcd7760_1 - - overrides=7.3.1=pyhd8ed1ab_0 + - openssh=9.3p1=h2d3b35a_2 + - overrides=7.4.0=pyhd8ed1ab_0 - pexpect=4.8.0=pyh1a96a4e_2 - - pillow=10.0.0=py310h582fbeb_0 + - pillow=10.0.1=py310h29da1c1_1 - pip=23.2.1=pyhd8ed1ab_0 - pplpy=0.8.7=py310h28f6eb6_0 - - primecountpy=0.1.0=py310hd41b1e2_3 - - pulseaudio-client=16.1=hb77b528_4 - - pybind11=2.11.1=py310hd41b1e2_0 - - pyproject-api=1.5.3=pyhd8ed1ab_0 - - pytest=7.4.0=pyhd8ed1ab_0 + - primecountpy=0.1.0=py310hd41b1e2_4 + - pulseaudio-client=16.1=hb77b528_5 + - pybind11=2.11.1=py310hd41b1e2_2 + - pyproject-api=1.6.1=pyhd8ed1ab_0 + - pytest=7.4.2=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - - pytz-deprecation-shim=0.1.0.post0=py310hff52083_3 - - referencing=0.30.0=pyhd8ed1ab_0 + - pytz-deprecation-shim=0.1.0.post0=py310hff52083_4 + - referencing=0.30.2=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - sagemath-db-conway-polynomials=0.5.0=ha878542_1 - - sip=6.7.9=py310hc6cd4ac_0 - - suitesparse=5.10.1=h9e50725_1 + - sip=6.7.11=py310hc6cd4ac_1 - sympy=1.12=pypyh9d50eac_103 - terminado=0.17.1=pyh41d4057_0 - tinycss2=1.2.1=pyhd8ed1ab_0 - - typing-extensions=4.7.1=hd8ed1ab_0 - - urllib3=2.0.4=pyhd8ed1ab_0 + - typing-extensions=4.8.0=hd8ed1ab_0 + - urllib3=2.0.6=pyhd8ed1ab_0 - xorg-libxi=1.7.10=h7f98852_0 - - argon2-cffi-bindings=21.2.0=py310h5764c6d_3 - - blas=2.117=openblas - - compilers=1.6.0=ha770c72_0 - - cvxopt=1.3.1=py310h14a12bf_0 - - git=2.41.0=pl5321h86e50cf_0 - - gstreamer=1.22.3=h977cf35_1 - - harfbuzz=7.3.0=hdb3a94d_0 + - argon2-cffi-bindings=21.2.0=py310h2372a71_4 + - arrow=1.3.0=pyhd8ed1ab_0 + - dsdp=5.8=hd9d9efa_1203 + - fflas-ffpack=2.4.3=h912ac81_2 + - fqdn=1.5.1=pyhd8ed1ab_0 + - git=2.42.0=pl5321h86e50cf_0 + - gsl=2.7=he838d99_0 + - gstreamer=1.22.6=h98fc4e7_2 + - harfbuzz=8.2.1=h3d44ed6_0 - hatchling=1.18.0=pyhd8ed1ab_0 - - importlib-resources=6.0.0=pyhd8ed1ab_1 + - iml=1.0.5=hd75c201_1003 + - importlib-resources=6.1.0=pyhd8ed1ab_0 - importlib_metadata=6.8.0=hd8ed1ab_0 - jsonschema-specifications=2023.7.1=pyhd8ed1ab_0 - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1 - - lsprotocol=2023.0.0a2=pyhd8ed1ab_0 - - matplotlib-base=3.7.2=py310hf38f957_0 - - platformdirs=3.9.1=pyhd8ed1ab_0 - - poetry-core=1.6.1=pyhd8ed1ab_0 - - pyqt5-sip=12.11.0=py310heca2aa9_3 + - liblapacke=3.9.0=18_linux64_openblas + - lsprotocol=2023.0.0b1=pyhd8ed1ab_0 + - numpy=1.26.0=py310hb13e2d6_0 + - platformdirs=3.11.0=pyhd8ed1ab_0 + - pyqt5-sip=12.12.2=py310hc6cd4ac_5 - pytest-xdist=3.3.1=pyhd8ed1ab_0 - - pythran=0.13.1=py310hfb6f7a9_0 - requests=2.31.0=pyhd8ed1ab_0 - - setuptools-scm=7.1.0=pyhd8ed1ab_0 + - setuptools-scm=8.0.4=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 - - wcwidth=0.2.6=pyhd8ed1ab_0 + - suitesparse=5.10.1=h9e50725_1 + - wcwidth=0.2.8=pyhd8ed1ab_0 - xorg-libxtst=1.2.3=h7f98852_1002 - - argon2-cffi=21.3.0=pyhd8ed1ab_0 - - gst-plugins-base=1.22.3=h938bd60_1 - - jsonschema=4.18.4=pyhd8ed1ab_0 - - jupyter_core=5.3.1=py310hff52083_0 - - openjdk=17.0.3=h19c1b89_7 - - pango=1.50.14=heaa33ce_1 - - pooch=1.7.0=pyha770c72_3 + - argon2-cffi=23.1.0=pyhd8ed1ab_0 + - blas-devel=3.9.0=18_linux64_openblas + - contourpy=1.1.1=py310hd41b1e2_1 + - cvxopt=1.3.2=py310h14a12bf_1 + - fpylll=0.5.9=py310h0dadf69_1 + - giac=1.9.0.21=h673759e_1 + - gst-plugins-base=1.22.6=h8e1006c_2 + - isoduration=20.11.0=pyhd8ed1ab_0 + - jsonschema=4.19.1=pyhd8ed1ab_0 + - jupyter_core=5.3.2=py310hff52083_0 + - linbox=1.6.3=h9d78c56_7 + - openjdk=20.0.2=hfea2f88_1 + - pango=1.50.14=ha41ecd1_2 + - pooch=1.7.0=pyhd8ed1ab_4 - prompt-toolkit=3.0.39=pyha770c72_0 - - setuptools_scm=7.1.0=hd8ed1ab_0 - - sphinx=6.2.1=pyhd8ed1ab_0 + - pythran=0.14.0=py310hcb52e73_1 + - setuptools_scm=8.0.4=hd8ed1ab_0 - typeguard=3.0.2=pyhd8ed1ab_0 - - virtualenv=20.24.1=pyhd8ed1ab_0 + - virtualenv=20.24.4=pyhd8ed1ab_0 + - blas=2.118=openblas - jmol=14.32.10=ha770c72_0 - - jupyter_client=8.3.0=pyhd8ed1ab_0 - - jupyter_events=0.6.3=pyhd8ed1ab_0 - - nbformat=5.9.1=pyhd8ed1ab_0 + - jsonschema-with-format-nongpl=4.19.1=pyhd8ed1ab_0 + - jupyter_client=8.3.1=pyhd8ed1ab_0 + - matplotlib-base=3.8.0=py310h62c0568_1 + - nbformat=5.9.2=pyhd8ed1ab_0 - prompt_toolkit=3.0.39=hd8ed1ab_0 - - pygls=1.0.2=pyhd8ed1ab_0 - - qt-main=5.15.8=h01ceb2d_12 - - r-base=4.3.1=hfabd6f2_1 + - pygls=1.1.1=pyhd8ed1ab_0 + - qt-main=5.15.8=hc47bfe8_16 + - r-base=4.3.1=h639d9d3_5 - scipy=1.10.1=py310ha4c1d20_3 - - sphinx-basic-ng=1.0.0b2=pyhd8ed1ab_0 - - sphinx-copybutton=0.5.2=pyhd8ed1ab_0 - - sphinxcontrib-websupport=1.2.4=pyhd8ed1ab_1 - - tox=4.6.4=pyhd8ed1ab_0 - - esbonio=0.16.1=pyhd8ed1ab_0 - - furo=2023.5.20=pyhd8ed1ab_1 - - ipython=8.14.0=pyh41d4057_0 + - tox=4.11.3=pyhd8ed1ab_0 + - ipython=8.16.1=pyh0d859eb_0 + - jupyter_events=0.7.0=pyhd8ed1ab_2 - nbclient=0.8.0=pyhd8ed1ab_0 - - pyqt=5.15.7=py310hab646b1_3 - - rpy2=3.5.11=py310r43h278f3c1_2 - - ipykernel=6.24.0=pyh71e2992_0 - - matplotlib=3.7.2=py310hff52083_0 - - nbconvert-core=7.7.2=pyhd8ed1ab_0 - - jupyter_server=2.7.0=pyhd8ed1ab_0 - - nbconvert-pandoc=7.7.2=pyhd8ed1ab_0 + - pyqt=5.15.9=py310h04931ad_5 + - rpy2=3.5.11=py310r43h1f7b6fc_3 + - ipykernel=6.25.2=pyh2140261_0 + - matplotlib=3.8.0=py310hff52083_1 + - nbconvert-core=7.9.2=pyhd8ed1ab_0 + - jupyter_server=2.7.3=pyhd8ed1ab_1 + - nbconvert-pandoc=7.9.2=pyhd8ed1ab_0 - jupyter-lsp=2.2.0=pyhd8ed1ab_0 - - jupyterlab_server=2.24.0=pyhd8ed1ab_0 - - nbconvert=7.7.2=pyhd8ed1ab_0 + - jupyterlab_server=2.25.0=pyhd8ed1ab_0 + - nbconvert=7.9.2=pyhd8ed1ab_0 - notebook-shim=0.2.3=pyhd8ed1ab_0 - - jupyterlab=4.0.3=pyhd8ed1ab_0 - - notebook=7.0.0=pyhd8ed1ab_0 - - widgetsnbextension=3.6.4=pyhd8ed1ab_0 - - ipywidgets=7.7.5=pyhd8ed1ab_0 + - jupyterlab=4.0.6=pyhd8ed1ab_0 + - notebook=7.0.4=pyhd8ed1ab_0 + - widgetsnbextension=3.6.6=pyhd8ed1ab_0 + - ipywidgets=7.8.0=pyhd8ed1ab_0 - jupyter-jsmol=2022.1.0=pyhd8ed1ab_0 + - esbonio=0.16.1=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-dev-3.10-macos.yml b/src/environment-dev-3.10-macos.yml index e83ea7b265e..560be46bc2e 100644 --- a/src/environment-dev-3.10-macos.yml +++ b/src/environment-dev-3.10-macos.yml @@ -1,12 +1,11 @@ # Generated by conda-lock. # platform: osx-64 -# input_hash: 0b14fa06d655e7683981c27f658f33c24850625df4dd94351391308bebc4acf1 +# input_hash: 05606a8745ed0cd143799bea5403a785dbd500c0246a8f542d32ce40d95c7a40 channels: - conda-forge dependencies: - _r-mutex=1.0.1=anacondar_1 - - bc=1.07.1=h0d85af4_0 - bzip2=1.0.8=h0d85af4_4 - c-ares=1.19.1=h0dc2134_0 - ca-certificates=2023.7.22=h8857fd0_0 @@ -16,29 +15,30 @@ dependencies: - font-ttf-source-code-pro=2.038=h77eed37_0 - font-ttf-ubuntu=0.83=hab24e00_0 - fribidi=1.0.10=hbcb3906_0 - - gh=2.32.1=h990441c_0 + - gh=2.36.0=h990441c_0 - giflib=5.2.1=hb7f2c08_3 - - icu=72.1=h7336db1_0 + - icu=73.2=hf5e326d_0 - libatomic_ops=7.6.14=hb7f2c08_0 - - libbrotlicommon=1.0.9=hb7f2c08_9 + - libboost-headers=1.82.0=h694c41f_6 + - libbrotlicommon=1.1.0=h0dc2134_1 - libcxx=16.0.6=hd57cbcb_0 - - libdeflate=1.18=hac1461d_0 + - libdeflate=1.19=ha4e1b8e_0 - libev=4.33=haf1e3a3_1 - libexpat=2.5.0=hf0c8a7f_1 - libffi=3.4.2=h0d85af4_5 - - libgfortran-devel_osx-64=12.2.0=hf0fd499_32 + - libgfortran-devel_osx-64=12.3.0=h0b6f5ec_1 - libiconv=1.17=hac89ed1_0 - - libjpeg-turbo=2.1.5.1=hb7f2c08_0 + - libjpeg-turbo=3.0.0=h0dc2134_1 - libsodium=1.0.18=hbcb3906_1 - libtool=2.4.7=hf0c8a7f_0 - - libuv=1.44.2=hac89ed1_0 - - libwebp-base=1.3.1=h0dc2134_0 + - libuv=1.46.0=h0c2f820_0 + - libwebp-base=1.3.2=h0dc2134_0 - libzlib=1.2.13=h8a1eda9_5 - - llvm-openmp=16.0.6=hff08bdf_0 + - llvm-openmp=17.0.2=hff08bdf_0 - m4=1.4.18=haf1e3a3_1001 - make=4.3=h22f3db7_1 - mathjax=3.2.2=h694c41f_0 - - metis=5.1.1=he965462_0 + - metis=5.1.0=he965462_1007 - nauty=2.7.2=h0d85af4_0 - ncurses=6.4=hf0c8a7f_0 - palp=2.20=hbcb3906_0 @@ -48,11 +48,11 @@ dependencies: - pari-seadata-small=0.0.20090618=0 - patch=2.7.6=hbcf498f_1002 - perl=5.32.1=4_h0dc2134_perl5 - - pixman=0.40.0=hbcb3906_0 - planarity=3.0.0.5=hbcb3906_1002 - pthread-stubs=0.4=hc929b4f_1001 - - python_abi=3.10=3_cp310 - - rhash=1.4.3=hac89ed1_0 + - python_abi=3.10=4_cp310 + - rhash=1.4.4=h0dc2134_0 + - rw=0.7=1 - sagemath-db-combinatorial-designs=20140630=1 - sagemath-db-graphs=20210214=hd8ed1ab_0 - sagemath-db-polytopes=20170220=1 @@ -74,58 +74,58 @@ dependencies: - isl=0.25=hb486fe8_0 - lerc=4.0.0=hb486fe8_0 - libbraiding=1.1=h2e338ed_0 - - libbrotlidec=1.0.9=hb7f2c08_9 - - libbrotlienc=1.0.9=hb7f2c08_9 + - libbrotlidec=1.1.0=h0dc2134_1 + - libbrotlienc=1.1.0=h0dc2134_1 - libcbor=0.10.2=hf0c8a7f_0 - libedit=3.1.20191231=h0678c8f_2 - - libgfortran5=12.3.0=hbd3c1fe_1 + - libgfortran5=13.2.0=h2873a65_1 - libpng=1.6.39=ha978bb4_0 - - libsqlite=3.42.0=h58db7d2_0 + - libsqlite=3.43.0=h58db7d2_0 - libxcb=1.15=hb7f2c08_0 - - libxml2=2.10.4=h554bb67_0 + - libxml2=2.11.5=h3346baf_1 - lrcalc=2.1=hf0c8a7f_5 - ninja=1.11.1=hb8565cd_0 - - openjdk=20.0.0=h7d26f99_0 - - openssl=3.1.1=h8a1eda9_1 + - openjdk=20.0.2=h7d26f99_2 + - openssl=3.1.3=h8a1eda9_0 - pandoc=3.1.3=h9d075a6_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 - readline=8.2=h9e318b2_1 - symmetrica=3.0.1=hf0c8a7f_0 - tapi=1100.0.11=h9ce4665_0 - - tar=1.34=hcb2f6ea_1 - - tbb=2021.9.0=hb8565cd_0 + - tbb=2021.10.0=h1c7c39f_1 - texinfo=7.0=pl5321hc47821c_0 - threejs-sage=122=hd8ed1ab_2 - - tk=8.6.12=h5dbffcc_0 + - tk=8.6.13=hef22860_0 - zeromq=4.3.4=he49afe7_1 - zlib=1.2.13=h8a1eda9_5 - - zstd=1.5.2=h829000d_7 + - zstd=1.5.5=h829000d_0 - automake=1.16.5=pl5321h694c41f_0 - - boost-cpp=1.82.0=hd754db5_1 - - brotli-bin=1.0.9=hb7f2c08_9 + - brotli-bin=1.1.0=h0dc2134_1 - bwidget=1.9.14=h694c41f_1 - cddlib=1!0.94m=h0f52abe_0 - ecl=21.2.1=hd029580_2 - ecm=7.0.4=h343d7f2_1002 - fonts-conda-ecosystem=1=0 - - freetype=2.12.1=h3f81eb7_1 + - freetype=2.12.1=h60636b9_2 - gap-core=4.12.2=hc16eb5f_3 - givaro=4.1.1=h0a799c6_3 - glpk=5.0=h3cb5acd_0 - jmol=14.32.9=h694c41f_0 - - krb5=1.20.1=h049b76e_0 + - krb5=1.21.2=hb884880_0 + - libboost=1.82.0=hf0c313a_6 - libfido2=1.13.0=h14e1388_0 - - libgfortran=5.0.0=12_3_0_h97931a8_1 - - libglib=2.76.4=hc62aa5d_0 + - libgfortran=5.0.0=13_2_0_h97931a8_1 + - libglib=2.78.0=hc62aa5d_0 - libhomfly=1.02r6=hc929b4f_0 - - libllvm15=15.0.7=h7001e86_1 + - libllvm16=16.0.6=he4b1e75_2 - libnghttp2=1.52.0=he2ab024_0 - libssh2=1.11.0=hd019ec5_0 - - libtiff=4.5.1=hf955e92_0 + - libtiff=4.6.0=h684deea_2 - m4ri=20140914=h3f75d11_1005 - mpfr=4.2.0=h4f9bd69_0 - ntl=11.4.3=h0ab3c2f_1 @@ -133,38 +133,38 @@ dependencies: - primecount=7.6=ha894c9a_0 - python=3.10.12=had23ca6_0_cpython - sigtool=0.1.3=h88f4db0_0 - - sqlite=3.42.0=h2b0dec6_0 + - sqlite=3.43.0=h2b0dec6_0 - tachyon=0.99b6=0 - - tktable=2.10=h49f0cf7_3 + - tktable=2.10=ha166976_5 - alabaster=0.7.13=pyhd8ed1ab_0 - appdirs=1.4.4=pyh9f0ad1d_0 - appnope=0.1.3=pyhd8ed1ab_0 - attrs=23.1.0=pyh71513ae_1 - backcall=0.2.0=pyh9f0ad1d_0 - backports=1.0=pyhd8ed1ab_3 - - backports.zoneinfo=0.2.1=py310h2ec42d9_7 - - brotli=1.0.9=hb7f2c08_9 - - brotli-python=1.0.9=py310h7a76584_9 + - brotli=1.1.0=h0dc2134_1 + - brotli-python=1.1.0=py310h9e9d8ca_1 + - cached_property=1.5.2=pyha770c72_1 - cachetools=5.3.1=pyhd8ed1ab_0 - certifi=2023.7.22=pyhd8ed1ab_0 - - chardet=5.1.0=py310h2ec42d9_0 - - charset-normalizer=3.2.0=pyhd8ed1ab_0 + - chardet=5.2.0=py310h2ec42d9_1 + - charset-normalizer=3.3.0=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_0 - - cycler=0.11.0=pyhd8ed1ab_0 - - cysignals=1.11.2=py310h8c82e65_2 - - cython=0.29.36=py310h9e9d8ca_0 - - debugpy=1.6.7=py310h7a76584_0 + - cycler=0.12.1=pyhd8ed1ab_0 + - cysignals=1.11.2=py310h8c82e65_3 + - cython=3.0.2=py310h9e9d8ca_2 + - debugpy=1.8.0=py310h9e9d8ca_1 - decorator=5.1.1=pyhd8ed1ab_0 - defusedxml=0.7.1=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - - docutils=0.19=py310h2ec42d9_1 + - docutils=0.20.1=py310h2ec42d9_2 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 - - exceptiongroup=1.1.2=pyhd8ed1ab_0 + - exceptiongroup=1.1.3=pyhd8ed1ab_0 - execnet=2.0.2=pyhd8ed1ab_0 - executing=1.2.0=pyhd8ed1ab_0 - fftw=3.3.10=nompi_h4fa670e_108 - - filelock=3.12.2=pyhd8ed1ab_0 + - filelock=3.12.4=pyhd8ed1ab_0 - flit-core=3.9.0=pyhd8ed1ab_0 - fontconfig=2.14.2=h5bb23bf_0 - gap-defaults=4.12.2=h694c41f_3 @@ -175,240 +175,243 @@ dependencies: - iniconfig=2.0.0=pyhd8ed1ab_0 - ipython_genutils=0.2.0=py_1 - json5=0.9.14=pyhd8ed1ab_0 - - jupyterlab_widgets=1.1.1=pyhd8ed1ab_0 - - kiwisolver=1.4.4=py310ha23aa8a_1 + - jsonpointer=2.4=py310h2ec42d9_3 + - jupyterlab_widgets=1.1.7=pyhd8ed1ab_0 + - kiwisolver=1.4.5=py310h88cfcbd_1 - lcalc=2.0.5=h3a941db_1 - - lcms2=2.15=h2dcdeff_1 - - ld64_osx-64=609=h8ce0179_13 - - libbrial=1.2.12=h8f704d5_0 - - libclang-cpp15=15.0.7=default_hdb78580_2 - - libcurl=8.1.2=hbee3ae8_0 + - lcms2=2.15=hd6ba6f3_3 + - ld64_osx-64=609=ha20a434_14 + - libboost-devel=1.82.0=h1c7c39f_6 + - libbrial=1.2.12=h8d08345_1 + - libclang-cpp16=16.0.6=default_h762fdd7_1 + - libcurl=8.3.0=h5f667d7_0 - libflint=2.9.0=hfd2f71f_ntl_100 - - libopenblas=0.3.23=openmp_h429af6e_0 - - libwebp=1.3.1=hc961f54_0 - - llvm-tools=15.0.7=h7001e86_1 + - libopenblas=0.3.24=openmp_h48a4ad5_0 + - libwebp=1.3.2=h44782d1_1 + - llvm-tools=16.0.6=he4b1e75_2 - m4rie=20150908=h3f75d11_1001 - - markupsafe=2.1.3=py310h6729b98_0 + - markupsafe=2.1.3=py310h6729b98_1 - maxima=5.45.0=hd029580_3 - - mistune=3.0.0=pyhd8ed1ab_0 + - mistune=3.0.1=pyhd8ed1ab_0 - mpc=1.3.1=h81bd1dd_0 - mpfi=1.5.4=h52b28e3_1001 - mpmath=1.3.0=pyhd8ed1ab_0 - munkres=1.1.4=pyh9f0ad1d_0 - nest-asyncio=1.5.6=pyhd8ed1ab_0 - networkx=2.8.8=pyhd8ed1ab_0 - - openjpeg=2.5.0=h13ac156_2 - - openssh=9.3p1=h9dc22bb_1 - - packaging=23.1=pyhd8ed1ab_0 + - openjpeg=2.5.0=ha4da562_3 + - openssh=9.3p1=h3df487d_2 + - packaging=23.2=pyhd8ed1ab_0 - pandocfilters=1.5.0=pyhd8ed1ab_0 - parso=0.8.3=pyhd8ed1ab_0 - - pathspec=0.11.1=pyhd8ed1ab_0 + - pathspec=0.11.2=pyhd8ed1ab_0 - pickleshare=0.7.5=py_1003 - pkgconfig=1.5.5=pyhd8ed1ab_4 - - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_0 - - pluggy=1.2.0=pyhd8ed1ab_0 + - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 + - pluggy=1.3.0=pyhd8ed1ab_0 - ply=3.11=py_1 - ppl=1.2=ha60d53e_1006 - prometheus_client=0.17.1=pyhd8ed1ab_0 - - psutil=5.9.5=py310h90acd4f_0 + - psutil=5.9.5=py310h6729b98_1 - 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_0 - - pycodestyle=2.10.0=pyhd8ed1ab_0 + - pybind11-global=2.11.1=py310h88cfcbd_2 + - pycodestyle=2.11.0=pyhd8ed1ab_0 - pycparser=2.21=pyhd8ed1ab_0 - - pygments=2.15.1=pyhd8ed1ab_0 - - pyparsing=3.0.9=pyhd8ed1ab_0 - - pyrsistent=0.19.3=py310h90acd4f_0 + - pygments=2.16.1=pyhd8ed1ab_0 + - pyparsing=3.1.1=pyhd8ed1ab_0 + - pyrsistent=0.19.3=py310h6729b98_1 - pysocks=1.7.1=pyha2e5f31_6 - pyspellchecker=0.7.2=pyhd8ed1ab_0 - - python-fastjsonschema=2.18.0=pyhd8ed1ab_0 + - python-fastjsonschema=2.18.1=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=pyhd8ed1ab_0 - - pyyaml=6.0=py310h90acd4f_5 - - pyzmq=25.1.0=py310h998be00_0 + - pytz=2023.3.post1=pyhd8ed1ab_0 + - pyyaml=6.0.1=py310h6729b98_1 + - pyzmq=25.1.1=py310h998be00_1 - qd=2.3.22=h2beb688_1004 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.9.2=py310h3461e44_0 + - rpds-py=0.10.4=py310h0e083fb_0 - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 - sagetex=3.6.1=pyhd8ed1ab_0 - - send2trash=1.8.2=pyh41d4057_0 - setuptools=63.4.3=py310h2ec42d9_0 - simplegeneric=0.8.1=py_1 - six=1.16.0=pyh6c4a22f_0 - sniffio=1.3.0=pyhd8ed1ab_0 - snowballstemmer=2.2.0=pyhd8ed1ab_0 - - soupsieve=2.3.2.post1=pyhd8ed1ab_0 - - sphinxcontrib-applehelp=1.0.4=pyhd8ed1ab_0 - - sphinxcontrib-devhelp=1.0.2=py_0 - - sphinxcontrib-htmlhelp=2.0.1=pyhd8ed1ab_0 - - sphinxcontrib-jsmath=1.0.1=py_0 - - sphinxcontrib-qthelp=1.0.3=py_0 - - sphinxcontrib-serializinghtml=1.1.5=pyhd8ed1ab_2 + - soupsieve=2.5=pyhd8ed1ab_1 + - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_0 - sympow=2.023.6=h115ba6a_3 - - toml=0.10.2=pyhd8ed1ab_0 - tomli=2.0.1=pyhd8ed1ab_0 - - tomlkit=0.11.8=pyha770c72_0 - - tornado=6.3.2=py310h6729b98_0 - - traitlets=5.9.0=pyhd8ed1ab_0 - - trove-classifiers=2023.7.6=pyhd8ed1ab_0 - - typing_extensions=4.7.1=pyha770c72_0 + - tornado=6.3.3=py310h6729b98_1 + - traitlets=5.11.2=pyhd8ed1ab_0 + - trove-classifiers=2023.9.19=pyhd8ed1ab_0 + - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 + - typing_extensions=4.8.0=pyha770c72_0 - typing_utils=0.1.0=pyhd8ed1ab_0 - - tzlocal=5.0.1=py310h2ec42d9_0 - - unicodedata2=15.0.0=py310h90acd4f_0 + - tzlocal=5.1=py310h2ec42d9_0 + - unicodedata2=15.1.0=py310h6729b98_0 + - uri-template=1.3.0=pyhd8ed1ab_0 - vcversioner=2.16.0.0=py_1 - - webencodings=0.5.1=py_1 - - websocket-client=1.6.1=pyhd8ed1ab_0 - - wheel=0.41.0=pyhd8ed1ab_0 - - zipp=3.16.2=pyhd8ed1ab_0 - - anyio=3.7.1=pyhd8ed1ab_0 + - webcolors=1.13=pyhd8ed1ab_0 + - webencodings=0.5.1=pyhd8ed1ab_2 + - websocket-client=1.6.4=pyhd8ed1ab_0 + - wheel=0.41.2=pyhd8ed1ab_0 + - zipp=3.17.0=pyhd8ed1ab_0 + - anyio=4.0.0=pyhd8ed1ab_0 - arb=2.23.0=h905a977_0 - - asttokens=2.2.1=pyhd8ed1ab_0 - - async-lru=2.0.3=pyhd8ed1ab_0 + - asttokens=2.4.0=pyhd8ed1ab_0 + - async-lru=2.0.4=pyhd8ed1ab_0 - babel=2.12.1=pyhd8ed1ab_1 - backports.functools_lru_cache=1.6.5=pyhd8ed1ab_0 - beautifulsoup4=4.12.2=pyha770c72_0 - beniget=0.4.1=pyhd8ed1ab_0 - - bleach=6.0.0=pyhd8ed1ab_0 - - brial=1.2.12=pyha3edaa6_0 - - cairo=1.16.0=h09dd18c_1016 + - bleach=6.1.0=pyhd8ed1ab_0 + - boost-cpp=1.82.0=h07eb623_6 + - brial=1.2.12=pyh694c41f_1 + - cached-property=1.5.2=hd8ed1ab_1 + - cairo=1.16.0=hfdb49f2_1017 - cattrs=23.1.2=pyhd8ed1ab_0 - - cctools_osx-64=973.0.1=h48a5a9d_13 - - cffi=1.15.1=py310ha78151a_3 - - clang-15=15.0.7=default_hdb78580_2 - - cmake=3.26.4=hf40c264_0 - - comm=0.1.3=pyhd8ed1ab_0 + - cctools_osx-64=973.0.1=ha1c5b94_14 + - cffi=1.16.0=py310hdca579f_0 + - clang-16=16.0.6=default_h762fdd7_1 + - cmake=3.27.6=hf40c264_0 + - comm=0.1.4=pyhd8ed1ab_0 - cppy=1.2.1=pyhd8ed1ab_0 - - curl=8.1.2=hbee3ae8_0 + - curl=8.3.0=h5f667d7_0 - cypari2=2.1.3=py310hb5d31c9_2 - deprecation=2.1.0=pyh9f0ad1d_0 - eclib=20230424=hd00e801_0 - - fonttools=4.41.1=py310h6729b98_0 + - fonttools=4.43.1=py310hb372a2b_0 - fplll=5.4.4=hdfdc905_0 - - gfortran_impl_osx-64=12.2.0=hdfd80ef_32 + - gfortran_impl_osx-64=12.3.0=h54fd467_1 - gmpy2=2.1.2=py310hb691cb2_1 - - html5lib=1.1=pyh9f0ad1d_0 - importlib-metadata=6.8.0=pyha770c72_0 - - importlib_resources=6.0.0=pyhd8ed1ab_1 - - jedi=0.18.2=pyhd8ed1ab_0 + - importlib_resources=6.1.0=pyhd8ed1ab_0 + - jedi=0.19.1=pyhd8ed1ab_0 - jinja2=3.1.2=pyhd8ed1ab_1 - jupyterlab_pygments=0.2.2=pyhd8ed1ab_0 - - ld64=609=ha91a046_13 - - libblas=3.9.0=17_osx64_openblas - - libgd=2.3.3=h3d994df_6 + - ld64=609=ha02d983_14 + - libblas=3.9.0=18_osx64_openblas + - libgd=2.3.3=h0dceb68_9 - matplotlib-inline=0.1.6=pyhd8ed1ab_0 - memory-allocator=0.1.2=py310h90acd4f_2 - - openblas=0.3.23=openmp_hbefa662_0 - - overrides=7.3.1=pyhd8ed1ab_0 + - openblas=0.3.24=openmp_hd7704e8_0 + - overrides=7.4.0=pyhd8ed1ab_0 - pexpect=4.8.0=pyh1a96a4e_2 - - pillow=10.0.0=py310hd63a8c7_0 + - pillow=10.0.1=py310hf317a87_2 - pip=23.2.1=pyhd8ed1ab_0 - - primecountpy=0.1.0=py310h88cfcbd_3 - - pybind11=2.11.1=py310h88cfcbd_0 - - pyproject-api=1.5.3=pyhd8ed1ab_0 - - pytest=7.4.0=pyhd8ed1ab_0 + - primecountpy=0.1.0=py310h88cfcbd_4 + - pybind11=2.11.1=py310h88cfcbd_2 + - pyobjc-core=10.0=py310hef2d279_0 + - pyproject-api=1.6.1=pyhd8ed1ab_0 + - pytest=7.4.2=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - - pytz-deprecation-shim=0.1.0.post0=py310h2ec42d9_3 - - referencing=0.30.0=pyhd8ed1ab_0 + - pytz-deprecation-shim=0.1.0.post0=py310h2ec42d9_4 + - referencing=0.30.2=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - sagemath-db-conway-polynomials=0.5.0=h033912b_1 - singular=4.2.1.p3=hac851df_2 - terminado=0.17.1=pyhd1c38e8_0 - tinycss2=1.2.1=pyhd8ed1ab_0 - - typing-extensions=4.7.1=hd8ed1ab_0 - - urllib3=2.0.4=pyhd8ed1ab_0 - - argon2-cffi-bindings=21.2.0=py310h90acd4f_3 - - cctools=973.0.1=hd9ad811_13 - - clang=15.0.7=h694c41f_2 - - git=2.41.0=pl5321h5c607e1_0 - - harfbuzz=7.3.0=h413ba03_0 + - typing-extensions=4.8.0=hd8ed1ab_0 + - urllib3=2.0.6=pyhd8ed1ab_0 + - argon2-cffi-bindings=21.2.0=py310h6729b98_4 + - arrow=1.3.0=pyhd8ed1ab_0 + - cctools=973.0.1=h40f6528_14 + - clang=16.0.6=hc177806_1 + - fqdn=1.5.1=pyhd8ed1ab_0 + - git=2.42.0=pl5321hbb4c4ee_0 + - harfbuzz=8.2.1=h7666e2a_0 - hatchling=1.18.0=pyhd8ed1ab_0 - - importlib-resources=6.0.0=pyhd8ed1ab_1 + - importlib-resources=6.1.0=pyhd8ed1ab_0 - importlib_metadata=6.8.0=hd8ed1ab_0 - jsonschema-specifications=2023.7.1=pyhd8ed1ab_0 - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1 - - libcblas=3.9.0=17_osx64_openblas - - liblapack=3.9.0=17_osx64_openblas - - lsprotocol=2023.0.0a2=pyhd8ed1ab_0 - - platformdirs=3.9.1=pyhd8ed1ab_0 - - poetry-core=1.6.1=pyhd8ed1ab_0 + - libcblas=3.9.0=18_osx64_openblas + - liblapack=3.9.0=18_osx64_openblas + - lsprotocol=2023.0.0b1=pyhd8ed1ab_0 + - platformdirs=3.11.0=pyhd8ed1ab_0 - pplpy=0.8.7=py310h190f582_0 + - pyobjc-framework-cocoa=10.0=py310hef2d279_1 - pytest-xdist=3.3.1=pyhd8ed1ab_0 - requests=2.31.0=pyhd8ed1ab_0 - - setuptools-scm=7.1.0=pyhd8ed1ab_0 + - setuptools-scm=8.0.4=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 - sympy=1.12=pypyh9d50eac_103 - - wcwidth=0.2.6=pyhd8ed1ab_0 - - argon2-cffi=21.3.0=pyhd8ed1ab_0 - - arpack=3.7.0=hefb7bc6_2 - - clangxx=15.0.7=default_hdb78580_2 + - wcwidth=0.2.8=pyhd8ed1ab_0 + - argon2-cffi=23.1.0=pyhd8ed1ab_0 + - clangxx=16.0.6=default_h762fdd7_1 - dsdp=5.8=h6e329d1_1203 - fflas-ffpack=2.4.3=h026fd7e_2 - gsl=2.7=h93259b0_0 - iml=1.0.5=h64b42ca_1003 - - jsonschema=4.18.4=pyhd8ed1ab_0 - - jupyter_core=5.3.1=py310h2ec42d9_0 - - liblapacke=3.9.0=17_osx64_openblas - - numpy=1.25.1=py310h7451ae0_0 - - pango=1.50.14=hbce5e75_1 - - pooch=1.7.0=pyha770c72_3 + - isoduration=20.11.0=pyhd8ed1ab_0 + - jsonschema=4.19.1=pyhd8ed1ab_0 + - jupyter_core=5.3.2=py310h2ec42d9_0 + - liblapacke=3.9.0=18_osx64_openblas + - numpy=1.26.0=py310h0171094_0 + - pango=1.50.14=h19c1c8a_2 + - pooch=1.7.0=pyhd8ed1ab_4 - prompt-toolkit=3.0.39=pyha770c72_0 - - setuptools_scm=7.1.0=hd8ed1ab_0 - - sphinx=6.2.1=pyhd8ed1ab_0 + - send2trash=1.8.2=pyhd1c38e8_0 + - setuptools_scm=8.0.4=hd8ed1ab_0 - suitesparse=5.10.1=h7aff33d_1 - typeguard=3.0.2=pyhd8ed1ab_0 - - virtualenv=20.24.1=pyhd8ed1ab_0 - - blas-devel=3.9.0=17_osx64_openblas - - compiler-rt_osx-64=15.0.7=he1888fc_1 - - contourpy=1.1.0=py310h88cfcbd_0 - - cvxopt=1.3.1=py310ha550498_0 + - virtualenv=20.24.4=pyhd8ed1ab_0 + - blas-devel=3.9.0=18_osx64_openblas + - compiler-rt_osx-64=16.0.6=he1888fc_0 + - contourpy=1.1.1=py310h88cfcbd_1 + - cvxopt=1.3.2=py310ha550498_1 - fpylll=0.5.9=py310h0d1ef73_1 - giac=1.9.0.21=h92f3f65_1 - - igraph=0.9.10=h6560ca6_1 - - jupyter_client=8.3.0=pyhd8ed1ab_0 - - jupyter_events=0.6.3=pyhd8ed1ab_0 + - jsonschema-with-format-nongpl=4.19.1=pyhd8ed1ab_0 + - jupyter_client=8.3.1=pyhd8ed1ab_0 - linbox=1.6.3=hdde8d14_7 - - nbformat=5.9.1=pyhd8ed1ab_0 + - nbformat=5.9.2=pyhd8ed1ab_0 - prompt_toolkit=3.0.39=hd8ed1ab_0 - - pygls=1.0.2=pyhd8ed1ab_0 + - pygls=1.1.1=pyhd8ed1ab_0 - scipy=1.10.1=py310h3900cf1_3 - - sphinx-basic-ng=1.0.0b2=pyhd8ed1ab_0 - - sphinx-copybutton=0.5.2=pyhd8ed1ab_0 - - sphinxcontrib-websupport=1.2.4=pyhd8ed1ab_1 - - tox=4.6.4=pyhd8ed1ab_0 - - blas=2.117=openblas - - compiler-rt=15.0.7=he1888fc_1 - - esbonio=0.16.1=pyhd8ed1ab_0 - - furo=2023.5.20=pyhd8ed1ab_1 - - ipython=8.14.0=pyhd1c38e8_0 - - matplotlib-base=3.7.2=py310h475a17b_0 + - tox=4.11.3=pyhd8ed1ab_0 + - blas=2.118=openblas + - compiler-rt=16.0.6=he1888fc_0 + - ipython=8.16.1=pyh31c8845_0 + - jupyter_events=0.7.0=pyhd8ed1ab_2 + - matplotlib-base=3.8.0=py310hf92ae1b_1 - nbclient=0.8.0=pyhd8ed1ab_0 - - rw=0.9=h0d85af4_0 - - clang_osx-64=15.0.7=h03d6864_3 - - ipykernel=6.24.0=pyh5fb750a_0 - - matplotlib=3.7.2=py310h2ec42d9_0 - - nbconvert-core=7.7.2=pyhd8ed1ab_0 - - c-compiler=1.6.0=h63c33a9_0 - - clangxx_osx-64=15.0.7=h2133e9c_3 - - gfortran_osx-64=12.2.0=h18f7dce_1 - - jupyter_server=2.7.0=pyhd8ed1ab_0 - - nbconvert-pandoc=7.7.2=pyhd8ed1ab_0 - - cxx-compiler=1.6.0=h1c7c39f_0 - - gfortran=12.2.0=h2c809b3_1 + - clang_osx-64=16.0.6=h8787910_1 + - ipykernel=6.25.2=pyh1050b4e_0 + - matplotlib=3.8.0=py310h2ec42d9_1 + - nbconvert-core=7.9.2=pyhd8ed1ab_0 + - clangxx_osx-64=16.0.6=h1b7723c_1 + - gfortran_osx-64=12.3.0=h18f7dce_1 + - jupyter_server=2.7.3=pyhd8ed1ab_1 + - nbconvert-pandoc=7.9.2=pyhd8ed1ab_0 + - gfortran=12.3.0=h2c809b3_1 - jupyter-lsp=2.2.0=pyhd8ed1ab_0 - - jupyterlab_server=2.24.0=pyhd8ed1ab_0 - - nbconvert=7.7.2=pyhd8ed1ab_0 + - jupyterlab_server=2.25.0=pyhd8ed1ab_0 + - nbconvert=7.9.2=pyhd8ed1ab_0 - notebook-shim=0.2.3=pyhd8ed1ab_0 - - pythran=0.13.1=py310h9209b79_0 - - r-base=4.3.0=h7a6543b_0 + - pythran=0.14.0=py310h92ebccd_1 + - r-base=4.3.1=h0ff45fa_6 - fortran-compiler=1.6.0=h932d759_0 - - jupyterlab=4.0.3=pyhd8ed1ab_0 - - rpy2=3.5.11=py310r43hc1335a1_2 - - compilers=1.6.0=h694c41f_0 - - notebook=7.0.0=pyhd8ed1ab_0 - - widgetsnbextension=3.6.4=pyhd8ed1ab_0 - - ipywidgets=7.7.5=pyhd8ed1ab_0 + - jupyterlab=4.0.6=pyhd8ed1ab_0 + - rpy2=3.5.11=py310r43hf0b6da5_3 + - notebook=7.0.4=pyhd8ed1ab_0 + - widgetsnbextension=3.6.6=pyhd8ed1ab_0 + - ipywidgets=7.8.0=pyhd8ed1ab_0 - jupyter-jsmol=2022.1.0=pyhd8ed1ab_0 + - esbonio=0.16.1=pyhd8ed1ab_0 - 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 diff --git a/src/environment-dev-3.11-linux.yml b/src/environment-dev-3.11-linux.yml index 53ba3ea40af..dbcefcf1ced 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: f0eef6aeafe7239ecbb9479957b227d93d976f7154c46e509083c6ef793567fb +# input_hash: baf91f69e96e1239daa16487ac8938b2f529aa66bfe4bfbd884854fe3cad7474 channels: - conda-forge @@ -12,44 +12,41 @@ dependencies: - font-ttf-inconsolata=3.000=h77eed37_0 - font-ttf-source-code-pro=2.038=h77eed37_0 - font-ttf-ubuntu=0.83=hab24e00_0 - - gh=2.32.0=ha8f183a_0 + - gh=2.36.0=ha8f183a_0 - kernel-headers_linux-64=2.6.32=he073ed8_16 - ld_impl_linux-64=2.40=h41732ed_0 - - libgcc-devel_linux-64=12.3.0=h8bca6fd_0 - - libgfortran5=13.1.0=h15d22d2_0 - - libstdcxx-devel_linux-64=12.3.0=h8bca6fd_0 - - libstdcxx-ng=13.1.0=hfd8a6a1_0 + - libboost-headers=1.82.0=ha770c72_6 + - libgcc-devel_linux-64=12.3.0=h8bca6fd_2 + - libstdcxx-devel_linux-64=12.3.0=h8bca6fd_2 + - libstdcxx-ng=13.2.0=h7e041cc_2 - mathjax=3.2.2=ha770c72_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 - - python_abi=3.10=3_cp310 + - 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 - fonts-conda-forge=1=0 - - libgfortran-ng=13.1.0=h69a702a_0 - - libgomp=13.1.0=he5830b7_0 + - libgomp=13.2.0=h807b86a_2 - pari-seadata=0.0.20090618=0 - sysroot_linux-64=2.12=he073ed8_16 - threejs-sage=122=hd8ed1ab_2 - binutils_impl_linux-64=2.40=hf600244_0 - fonts-conda-ecosystem=1=0 - binutils=2.40=hdd6e379_0 - - binutils_linux-64=2.40=hbdbef99_1 + - binutils_linux-64=2.40=hbdbef99_2 - _openmp_mutex=4.5=2_kmp_llvm - - libgcc-ng=13.1.0=he5830b7_0 - - alsa-lib=1.2.8=h166bdaf_0 + - libgcc-ng=13.2.0=h807b86a_2 + - alsa-lib=1.2.10=hd590300_0 - attr=2.5.1=h166bdaf_1 - - bc=1.07.1=h7f98852_0 - bdw-gc=8.0.6=h4bd325d_0 - bzip2=1.0.8=h7f98852_4 - c-ares=1.19.1=hd590300_0 - cliquer=1.22=h36c2ea0_0 - - fftw=3.3.10=nompi_hc118613_108 - fribidi=1.0.10=h36c2ea0_0 - gengetopt=2.23=h9c3ff4c_0 - gettext=0.21.1=h27087fc_0 @@ -57,57 +54,56 @@ dependencies: - giflib=5.2.1=h0b41bf4_3 - gmp=6.2.1=h58526e2_0 - graphite2=1.3.13=h58526e2_1001 - - icu=72.1=hcb278e6_0 + - 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.1=h58526e2_0 - - libbrotlicommon=1.0.9=h166bdaf_9 + - libbrotlicommon=1.1.0=hd590300_1 - libcbor=0.10.2=hcb278e6_0 - - libdeflate=1.18=h0b41bf4_0 + - libdeflate=1.19=hd590300_0 - libev=4.33=h516909a_1 - libexpat=2.5.0=hcb278e6_1 - libffi=3.4.2=h7f98852_5 + - libgfortran5=13.2.0=ha4646dd_2 - libiconv=1.17=h166bdaf_0 - - libjpeg-turbo=2.1.5.1=h0b41bf4_0 - - libnsl=2.0.0=h7f98852_0 + - libjpeg-turbo=2.1.5.1=hd590300_1 + - libnsl=2.0.0=hd590300_1 - libogg=1.3.4=h7f98852_1 - - libopenblas=0.3.23=pthreads_h80387f5_0 - libopus=1.3.1=h7f98852_1 - - libsanitizer=12.3.0=h0f45ef3_0 + - libsanitizer=12.3.0=h0f45ef3_2 - libsodium=1.0.18=h36c2ea0_1 - libtool=2.4.7=h27087fc_0 - libuuid=2.38.1=h0b41bf4_0 - - libuv=1.44.2=h166bdaf_0 - - libwebp-base=1.3.1=hd590300_0 + - libuv=1.46.0=hd590300_0 + - libwebp-base=1.3.2=hd590300_0 - 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_0 - - mpg123=1.31.3=hcb278e6_0 + - metis=5.1.0=h59595ed_1007 + - mpg123=1.32.3=h59595ed_0 - nauty=2.7.2=h7f98852_0 - ncurses=6.4=hcb278e6_0 - ninja=1.11.1=h924138e_0 - nspr=4.35=h27087fc_0 - - openssl=3.1.1=hd590300_1 + - openssl=3.1.3=hd590300_0 - palp=2.20=h36c2ea0_0 - patch=2.7.6=h7f98852_1002 - - pixman=0.40.0=h36c2ea0_0 + - pixman=0.42.2=h59595ed_0 - pkg-config=0.29.2=h36c2ea0_1008 - planarity=3.0.0.5=h36c2ea0_1002 - - primesieve=11.0=hcb278e6_0 + - primesieve=11.1=h59595ed_0 - pthread-stubs=0.4=h36c2ea0_1001 - - qd=2.3.22=h2cc385e_1004 - qhull=2020.2=h4bd325d_2 - - rhash=1.4.3=h166bdaf_0 + - 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.0.10=h7f98852_0 + - 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 @@ -120,79 +116,77 @@ dependencies: - 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_0 + - gcc_impl_linux-64=12.3.0=he2b93b0_2 - givaro=4.1.1=h192cbe9_1 - glpk=5.0=h445213a_0 - - libblas=3.9.0=17_linux64_openblas - - libbrotlidec=1.0.9=h166bdaf_9 - - libbrotlienc=1.0.9=h166bdaf_9 - - libcap=2.67=he9d0100_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_2 - libgpg-error=1.47=h71f35ed_0 - libhomfly=1.02r6=h36c2ea0_0 - libnghttp2=1.52.0=h61bc06f_0 - libpng=1.6.39=h753d276_0 - - libsqlite=3.42.0=h2797004_0 + - libsqlite=3.43.0=h2797004_0 - libssh2=1.11.0=h0841786_0 - libvorbis=1.3.7=h9c3ff4c_0 - libxcb=1.15=h0b41bf4_0 - - libxml2=2.11.4=h0d562d8_0 + - libxml2=2.11.5=h232c23b_1 - mpfr=4.2.0=hb012696_0 - - mysql-common=8.0.33=hf1915f5_2 + - mysql-common=8.0.33=hf1915f5_5 - ntl=11.4.3=hef3c4d3_1 - - openblas=0.3.23=pthreads_h855a84d_0 - pcre2=10.40=hc3806b6_0 - perl=5.32.1=4_hd590300_perl5 - - primecount=7.6=hcb278e6_0 + - primecount=7.9=hcb278e6_0 - readline=8.2=h8228510_1 - - tar=1.34=hb2e2bae_1 - - tk=8.6.12=h27826a3_0 + - tk=8.6.13=h2797004_0 - xorg-fixesproto=5.0=h7f98852_1002 - - xorg-libsm=1.2.3=hd9c2040_1000 + - xorg-libsm=1.2.4=h7391055_0 - zeromq=4.3.4=h9c3ff4c_1 - zlib=1.2.13=hd590300_5 - - zstd=1.5.2=hfc55251_7 + - zstd=1.5.5=hfc55251_0 - autoconf=2.71=pl5321h2b4cb7a_1 - - boost-cpp=1.82.0=he19a28c_1 - - brotli-bin=1.0.9=h166bdaf_9 + - brotli-bin=1.1.0=hd590300_1 - bwidget=1.9.14=ha770c72_1 - ecl=21.2.1=h9d73b02_2 - - fplll=5.4.4=h8780c30_0 - - freetype=2.12.1=hca18f0e_1 + - 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_1 - - gcc_linux-64=12.3.0=h76fc315_1 + - 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_0 - - gxx_impl_linux-64=12.3.0=he2b93b0_0 + - gfortran_impl_linux-64=12.3.0=hfcedea8_2 + - gxx_impl_linux-64=12.3.0=he2b93b0_2 - igraph=0.7.1=0 - - krb5=1.20.1=h81ceb04_0 - - libcblas=3.9.0=17_linux64_openblas + - krb5=1.21.2=h659d440_0 + - libboost=1.82.0=h6fcfa73_6 - libflint=2.9.0=h2f819a4_ntl_100 - libgcrypt=1.10.1=h166bdaf_0 - - libglib=2.76.4=hebfc3b9_0 - - libhwloc=2.9.1=nocuda_h7313eea_6 - - liblapack=3.9.0=17_linux64_openblas - - libllvm16=16.0.6=h5cf9203_1 - - libsndfile=1.2.0=hb75c966_0 - - libtiff=4.5.1=h8b53f26_0 - - libudev1=253=h0b41bf4_1 - - llvm-openmp=16.0.6=h4dfa4b3_0 + - libglib=2.78.0=hebfc3b9_0 + - libhwloc=2.9.3=default_h554bfaf_1009 + - libllvm15=15.0.7=h5cf9203_3 + - libopenblas=0.3.24=pthreads_h413a1c8_0 + - libsndfile=1.2.2=hc60ed4a_1 + - libtiff=4.6.0=h29866fb_1 + - libudev1=254=h3f72095_0 + - llvm-openmp=17.0.2=h4dfa4b3_0 - m4ri=20140914=h7ca028e_1005 - mpc=1.3.1=hfe3b2da_0 - mpfi=1.5.4=h9f54685_1001 - - mysql-libs=8.0.33=hca2cd23_2 - - nss=3.89=he45b914_0 + - mysql-libs=8.0.33=hca2cd23_5 + - nss=3.94=h1d7d5a4_0 - pandoc=3.1.3=h32600fe_0 - pari=2.15.4=h4d4ae9b_2_pthread - ppl=1.2=h6ec01c2_1006 - - python=3.10.12=hd12c33a_0_cpython - - sqlite=3.42.0=h2c6b66d_0 + - python=3.11.6=hab00c5b_0_cpython + - qd=2.3.22=h2cc385e_1004 + - sqlite=3.43.0=h2c6b66d_0 - tachyon=0.99b6=0 - texinfo=7.0=pl5321h0f457ee_0 - - tktable=2.10=hb7b940f_3 + - 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 @@ -206,273 +200,282 @@ dependencies: - automake=1.16.5=pl5321ha770c72_0 - backcall=0.2.0=pyh9f0ad1d_0 - backports=1.0=pyhd8ed1ab_3 - - backports.zoneinfo=0.2.1=py310hff52083_7 - - brotli=1.0.9=h166bdaf_9 - - brotli-python=1.0.9=py310hd8f1fbe_9 + - 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.1=pyhd8ed1ab_0 - certifi=2023.7.22=pyhd8ed1ab_0 - - chardet=5.1.0=py310hff52083_0 - - charset-normalizer=3.2.0=pyhd8ed1ab_0 + - chardet=5.2.0=py311h38be061_1 + - charset-normalizer=3.3.0=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_0 - - cycler=0.11.0=pyhd8ed1ab_0 - - cysignals=1.11.2=py310h945e7c7_2 - - cython=0.29.36=py310hc6cd4ac_0 + - cycler=0.12.1=pyhd8ed1ab_0 + - cysignals=1.11.2=py311h82528dc_3 + - cython=3.0.2=py311hb755f60_2 - dbus=1.13.6=h5008d03_3 - - debugpy=1.6.7=py310heca2aa9_0 + - debugpy=1.8.0=py311hb755f60_1 - decorator=5.1.1=pyhd8ed1ab_0 - defusedxml=0.7.1=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - - docutils=0.19=py310hff52083_1 - - dsdp=5.8=hd9d9efa_1203 + - docutils=0.20.1=py311h38be061_2 - eclib=20230424=hdef1efb_0 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 - - exceptiongroup=1.1.2=pyhd8ed1ab_0 + - exceptiongroup=1.1.3=pyhd8ed1ab_0 - execnet=2.0.2=pyhd8ed1ab_0 - executing=1.2.0=pyhd8ed1ab_0 - - fflas-ffpack=2.4.3=h912ac81_2 - - filelock=3.12.2=pyhd8ed1ab_0 + - filelock=3.12.4=pyhd8ed1ab_0 - flit-core=3.9.0=pyhd8ed1ab_0 - fontconfig=2.14.2=h14ed4e7_0 + - fplll=5.4.4=h8780c30_0 - gap-defaults=4.12.2=ha770c72_3 - gast=0.5.4=pyhd8ed1ab_0 - - gfortran=12.3.0=h499e0f7_1 - - gfortran_linux-64=12.3.0=h7fe76b4_1 - - glib-tools=2.76.4=hfc55251_0 - - gmpy2=2.1.2=py310h3ec546c_1 - - gsl=2.7=he838d99_0 - - gxx=12.3.0=h8d2909c_1 - - gxx_linux-64=12.3.0=h8a814eb_1 + - gfortran=12.3.0=h499e0f7_2 + - gfortran_linux-64=12.3.0=h7fe76b4_2 + - glib-tools=2.78.0=hfc55251_0 + - gmpy2=2.1.2=py311h6a5fa03_1 + - gxx_linux-64=12.3.0=h8a814eb_2 - idna=3.4=pyhd8ed1ab_0 - imagesize=1.4.1=pyhd8ed1ab_0 - - iml=1.0.5=hd75c201_1003 - iniconfig=2.0.0=pyhd8ed1ab_0 - ipython_genutils=0.2.0=py_1 - json5=0.9.14=pyhd8ed1ab_0 - - jupyterlab_widgets=1.1.1=pyhd8ed1ab_0 - - kiwisolver=1.4.4=py310hbf28c38_1 + - jsonpointer=2.4=py311h38be061_3 + - jupyterlab_widgets=1.1.7=pyhd8ed1ab_0 + - kiwisolver=1.4.5=py311h9547e67_1 - lcalc=2.0.5=h6a8a7c6_1 - - lcms2=2.15=haa2dc70_1 - - libbrial=1.2.12=h138cd66_0 - - libclang13=16.0.6=default_h4d60ac6_1 - - libcups=2.3.3=h36d4200_3 - - libcurl=8.1.2=h409715c_0 + - lcms2=2.15=h7f713cb_2 + - libblas=3.9.0=18_linux64_openblas + - libboost-devel=1.82.0=h00ab1b0_6 + - libbrial=1.2.12=h3155cbd_1 + - libclang13=15.0.7=default_h9986a30_3 + - libcups=2.3.3=h4637d8d_4 + - libcurl=8.3.0=hca28451_0 - libfido2=1.13.0=h2e5b2a7_0 - - liblapacke=3.9.0=17_linux64_openblas - - libpq=15.3=hbcd7760_1 - - libsystemd0=253=h8c4010b_1 - - libwebp=1.3.1=hbf2b3c1_0 + - libpq=15.4=hfc447b1_2 + - libsystemd0=254=h3516f8a_0 + - libwebp=1.3.2=hdffd6e0_0 - m4rie=20150908=h7ca028e_1001 - - markupsafe=2.1.3=py310h2372a71_0 + - markupsafe=2.1.3=py311h459d7ec_1 - maxima=5.45.0=h9d73b02_3 - - mistune=3.0.0=pyhd8ed1ab_0 + - mistune=3.0.1=pyhd8ed1ab_0 - mpmath=1.3.0=pyhd8ed1ab_0 - munkres=1.1.4=pyh9f0ad1d_0 - nest-asyncio=1.5.6=pyhd8ed1ab_0 - networkx=2.8.8=pyhd8ed1ab_0 - - numpy=1.25.1=py310ha4c1d20_0 - - openjpeg=2.5.0=hfec8fc6_2 - - packaging=23.1=pyhd8ed1ab_0 + - openblas=0.3.24=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.11.1=pyhd8ed1ab_0 + - pathspec=0.11.2=pyhd8ed1ab_0 - pickleshare=0.7.5=py_1003 - pkgconfig=1.5.5=pyhd8ed1ab_4 - - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_0 - - pluggy=1.2.0=pyhd8ed1ab_0 + - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 + - pluggy=1.3.0=pyhd8ed1ab_0 - ply=3.11=py_1 - prometheus_client=0.17.1=pyhd8ed1ab_0 - - psutil=5.9.5=py310h1fa729e_0 + - psutil=5.9.5=py311h459d7ec_1 - 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_0 - - pycodestyle=2.10.0=pyhd8ed1ab_0 + - pybind11-global=2.11.1=py311h9547e67_2 + - pycodestyle=2.11.0=pyhd8ed1ab_0 - pycparser=2.21=pyhd8ed1ab_0 - - pygments=2.15.1=pyhd8ed1ab_0 - - pyparsing=3.0.9=pyhd8ed1ab_0 - - pyrsistent=0.19.3=py310h1fa729e_0 + - pygments=2.16.1=pyhd8ed1ab_0 + - pyparsing=3.1.1=pyhd8ed1ab_0 + - pyrsistent=0.19.3=py311h459d7ec_1 - pysocks=1.7.1=pyha2e5f31_6 - pyspellchecker=0.7.2=pyhd8ed1ab_0 - - python-fastjsonschema=2.18.0=pyhd8ed1ab_0 + - python-fastjsonschema=2.18.1=pyhd8ed1ab_0 - python-json-logger=2.0.7=pyhd8ed1ab_0 - - python-lrcalc=2.1=py310hd8f1fbe_5 + - python-lrcalc=2.1=py311ha362b79_5 - python-tzdata=2023.3=pyhd8ed1ab_0 - - pytz=2023.3=pyhd8ed1ab_0 - - pyyaml=6.0=py310h5764c6d_5 - - pyzmq=25.1.0=py310h5bbb5d0_0 + - pytz=2023.3.post1=pyhd8ed1ab_0 + - pyyaml=6.0.1=py311h459d7ec_1 + - pyzmq=25.1.1=py311h75c88c4_1 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.9.2=py310hcb5633a_0 + - rpds-py=0.10.4=py311h46250e7_0 - rw=0.8=h516909a_1001 - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 - sagetex=3.6.1=pyhd8ed1ab_0 - send2trash=1.8.2=pyh41d4057_0 - - setuptools=63.4.3=py310hff52083_0 + - setuptools=59.8.0=py311h38be061_1 - simplegeneric=0.8.1=py_1 - singular=4.2.1.p3=h1ea75ed_2 - six=1.16.0=pyh6c4a22f_0 - sniffio=1.3.0=pyhd8ed1ab_0 - snowballstemmer=2.2.0=pyhd8ed1ab_0 - - soupsieve=2.3.2.post1=pyhd8ed1ab_0 - - sphinxcontrib-applehelp=1.0.4=pyhd8ed1ab_0 - - sphinxcontrib-devhelp=1.0.2=py_0 - - sphinxcontrib-htmlhelp=2.0.1=pyhd8ed1ab_0 - - sphinxcontrib-jsmath=1.0.1=py_0 - - sphinxcontrib-qthelp=1.0.3=py_0 - - sphinxcontrib-serializinghtml=1.1.5=pyhd8ed1ab_2 + - soupsieve=2.5=pyhd8ed1ab_1 + - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_0 - sympow=2.023.6=hc6ab17c_3 - - tbb=2021.9.0=hf52228f_0 + - tbb=2021.10.0=h00ab1b0_1 - toml=0.10.2=pyhd8ed1ab_0 - tomli=2.0.1=pyhd8ed1ab_0 - - tomlkit=0.11.8=pyha770c72_0 - - tornado=6.3.2=py310h2372a71_0 - - traitlets=5.9.0=pyhd8ed1ab_0 - - trove-classifiers=2023.7.6=pyhd8ed1ab_0 - - typing_extensions=4.7.1=pyha770c72_0 + - tornado=6.3.3=py311h459d7ec_1 + - traitlets=5.11.2=pyhd8ed1ab_0 + - trove-classifiers=2023.9.19=pyhd8ed1ab_0 + - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 + - typing_extensions=4.8.0=pyha770c72_0 - typing_utils=0.1.0=pyhd8ed1ab_0 - - tzlocal=5.0.1=py310hff52083_0 - - unicodedata2=15.0.0=py310h5764c6d_0 + - tzlocal=5.1=py311h38be061_0 + - uri-template=1.3.0=pyhd8ed1ab_0 - vcversioner=2.16.0.0=py_1 - - webencodings=0.5.1=py_1 - - websocket-client=1.6.1=pyhd8ed1ab_0 - - wheel=0.41.0=pyhd8ed1ab_0 + - webcolors=1.13=pyhd8ed1ab_0 + - webencodings=0.5.1=pyhd8ed1ab_2 + - websocket-client=1.6.4=pyhd8ed1ab_0 + - wheel=0.41.2=pyhd8ed1ab_0 - xcb-util-image=0.4.0=h8ee46fc_1 - - xkeyboard-config=2.39=hd590300_0 + - 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_0 - - zipp=3.16.2=pyhd8ed1ab_0 - - anyio=3.7.1=pyhd8ed1ab_0 - - asttokens=2.2.1=pyhd8ed1ab_0 - - async-lru=2.0.3=pyhd8ed1ab_0 + - xorg-libxt=1.3.0=hd590300_1 + - zipp=3.17.0=pyhd8ed1ab_0 + - anyio=4.0.0=pyhd8ed1ab_0 + - asttokens=2.4.0=pyhd8ed1ab_0 + - async-lru=2.0.4=pyhd8ed1ab_0 - babel=2.12.1=pyhd8ed1ab_1 - backports.functools_lru_cache=1.6.5=pyhd8ed1ab_0 - beautifulsoup4=4.12.2=pyha770c72_0 - beniget=0.4.1=pyhd8ed1ab_0 - - blas-devel=3.9.0=17_linux64_openblas - - bleach=6.0.0=pyhd8ed1ab_0 - - brial=1.2.12=pyha3edaa6_0 - - cairo=1.16.0=hbbf8b49_1016 + - bleach=6.1.0=pyhd8ed1ab_0 + - boost-cpp=1.82.0=h44aadfe_6 + - brial=1.2.12=pyh694c41f_1 + - cached-property=1.5.2=hd8ed1ab_1 + - cairo=1.16.0=h0c91306_1017 - cattrs=23.1.2=pyhd8ed1ab_0 - - cffi=1.15.1=py310h255011f_3 - - cmake=3.26.4=hcfe8598_0 - - comm=0.1.3=pyhd8ed1ab_0 - - contourpy=1.1.0=py310hd41b1e2_0 + - cffi=1.16.0=py311hb3a22ac_0 + - cmake=3.27.6=hcfe8598_0 + - comm=0.1.4=pyhd8ed1ab_0 - cppy=1.2.1=pyhd8ed1ab_0 - - curl=8.1.2=h409715c_0 - - cxx-compiler=1.6.0=h00ab1b0_0 - - cypari2=2.1.3=py310h14ed79e_2 + - curl=8.3.0=hca28451_0 + - cypari2=2.1.3=py311hd2352ae_2 - deprecation=2.1.0=pyh9f0ad1d_0 - - fonttools=4.41.1=py310h2372a71_0 + - fonttools=4.43.1=py311h459d7ec_0 - fortran-compiler=1.6.0=heb67821_0 - - fpylll=0.5.9=py310h0dadf69_1 - - giac=1.9.0.21=h673759e_1 - - glib=2.76.4=hfc55251_0 - - html5lib=1.1=pyh9f0ad1d_0 + - glib=2.78.0=hfc55251_0 - importlib-metadata=6.8.0=pyha770c72_0 - - importlib_resources=6.0.0=pyhd8ed1ab_1 - - jedi=0.18.2=pyhd8ed1ab_0 + - importlib_resources=6.1.0=pyhd8ed1ab_0 + - jedi=0.19.1=pyhd8ed1ab_0 - jinja2=3.1.2=pyhd8ed1ab_1 - jupyterlab_pygments=0.2.2=pyhd8ed1ab_0 - - libclang=16.0.6=default_h1cdf331_1 - - libgd=2.3.3=hfa28ad5_6 - - libxkbcommon=1.5.0=h5d7e998_3 - - linbox=1.6.3=h9d78c56_7 + - libcblas=3.9.0=18_linux64_openblas + - libclang=15.0.7=default_h7634d5b_3 + - libgd=2.3.3=he9388d3_8 + - liblapack=3.9.0=18_linux64_openblas + - libxkbcommon=1.6.0=h5d7e998_0 - matplotlib-inline=0.1.6=pyhd8ed1ab_0 - - memory-allocator=0.1.2=py310h5764c6d_2 - - openssh=9.3p1=hbcd7760_1 - - overrides=7.3.1=pyhd8ed1ab_0 + - memory-allocator=0.1.2=py311hd4cff14_2 + - openssh=9.3p1=h2d3b35a_2 + - overrides=7.4.0=pyhd8ed1ab_0 - pexpect=4.8.0=pyh1a96a4e_2 - - pillow=10.0.0=py310h582fbeb_0 + - pillow=10.0.1=py311h8aef010_1 - pip=23.2.1=pyhd8ed1ab_0 - - pplpy=0.8.7=py310h28f6eb6_0 - - primecountpy=0.1.0=py310hd41b1e2_3 - - pulseaudio-client=16.1=hb77b528_4 - - pybind11=2.11.1=py310hd41b1e2_0 - - pyproject-api=1.5.3=pyhd8ed1ab_0 - - pytest=7.4.0=pyhd8ed1ab_0 + - pplpy=0.8.7=py311h85abca9_0 + - primecountpy=0.1.0=py311h9547e67_4 + - pulseaudio-client=16.1=hb77b528_5 + - pybind11=2.11.1=py311h9547e67_2 + - pyproject-api=1.6.1=pyhd8ed1ab_0 + - pytest=7.4.2=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - - pytz-deprecation-shim=0.1.0.post0=py310hff52083_3 - - referencing=0.30.0=pyhd8ed1ab_0 + - pytz-deprecation-shim=0.1.0.post0=py311h38be061_4 + - referencing=0.30.2=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - sagemath-db-conway-polynomials=0.5.0=ha878542_1 - - sip=6.7.9=py310hc6cd4ac_0 - - suitesparse=5.10.1=h9e50725_1 + - sip=6.7.11=py311hb755f60_1 - sympy=1.12=pypyh9d50eac_103 - terminado=0.17.1=pyh41d4057_0 - tinycss2=1.2.1=pyhd8ed1ab_0 - - typing-extensions=4.7.1=hd8ed1ab_0 - - urllib3=2.0.4=pyhd8ed1ab_0 + - typing-extensions=4.8.0=hd8ed1ab_0 + - urllib3=2.0.6=pyhd8ed1ab_0 - xorg-libxi=1.7.10=h7f98852_0 - - argon2-cffi-bindings=21.2.0=py310h5764c6d_3 - - blas=2.117=openblas - - compilers=1.6.0=ha770c72_0 - - cvxopt=1.3.1=py310h14a12bf_0 - - git=2.41.0=pl5321h86e50cf_0 - - gstreamer=1.22.3=h977cf35_1 - - harfbuzz=7.3.0=hdb3a94d_0 + - argon2-cffi-bindings=21.2.0=py311h459d7ec_4 + - arrow=1.3.0=pyhd8ed1ab_0 + - dsdp=5.8=hd9d9efa_1203 + - fflas-ffpack=2.4.3=h912ac81_2 + - fqdn=1.5.1=pyhd8ed1ab_0 + - git=2.42.0=pl5321h86e50cf_0 + - gsl=2.7=he838d99_0 + - gstreamer=1.22.6=h98fc4e7_2 + - harfbuzz=8.2.1=h3d44ed6_0 - hatchling=1.18.0=pyhd8ed1ab_0 - - importlib-resources=6.0.0=pyhd8ed1ab_1 + - iml=1.0.5=hd75c201_1003 + - importlib-resources=6.1.0=pyhd8ed1ab_0 - importlib_metadata=6.8.0=hd8ed1ab_0 - jsonschema-specifications=2023.7.1=pyhd8ed1ab_0 - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1 - - lsprotocol=2023.0.0a2=pyhd8ed1ab_0 - - matplotlib-base=3.7.2=py310hf38f957_0 - - platformdirs=3.9.1=pyhd8ed1ab_0 - - poetry-core=1.6.1=pyhd8ed1ab_0 - - pyqt5-sip=12.11.0=py310heca2aa9_3 + - liblapacke=3.9.0=18_linux64_openblas + - lsprotocol=2023.0.0b1=pyhd8ed1ab_0 + - numpy=1.26.0=py311h64a7726_0 + - platformdirs=3.11.0=pyhd8ed1ab_0 + - pyqt5-sip=12.12.2=py311hb755f60_5 - pytest-xdist=3.3.1=pyhd8ed1ab_0 - - pythran=0.13.1=py310hfb6f7a9_0 - requests=2.31.0=pyhd8ed1ab_0 - - setuptools-scm=7.1.0=pyhd8ed1ab_0 + - setuptools-scm=8.0.4=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 - - wcwidth=0.2.6=pyhd8ed1ab_0 + - suitesparse=5.10.1=h9e50725_1 + - wcwidth=0.2.8=pyhd8ed1ab_0 - xorg-libxtst=1.2.3=h7f98852_1002 - - argon2-cffi=21.3.0=pyhd8ed1ab_0 - - gst-plugins-base=1.22.3=h938bd60_1 - - jsonschema=4.18.4=pyhd8ed1ab_0 - - jupyter_core=5.3.1=py310hff52083_0 - - openjdk=17.0.3=h19c1b89_7 - - pango=1.50.14=heaa33ce_1 - - pooch=1.7.0=pyha770c72_3 + - argon2-cffi=23.1.0=pyhd8ed1ab_0 + - blas-devel=3.9.0=18_linux64_openblas + - contourpy=1.1.1=py311h9547e67_1 + - cvxopt=1.3.2=py311h2b3fd1d_1 + - fpylll=0.5.9=py311hcfae7cf_1 + - giac=1.9.0.21=h673759e_1 + - gst-plugins-base=1.22.6=h8e1006c_2 + - isoduration=20.11.0=pyhd8ed1ab_0 + - jsonschema=4.19.1=pyhd8ed1ab_0 + - jupyter_core=5.3.2=py311h38be061_0 + - linbox=1.6.3=h9d78c56_7 + - openjdk=20.0.2=hfea2f88_1 + - pango=1.50.14=ha41ecd1_2 + - pooch=1.7.0=pyhd8ed1ab_4 - prompt-toolkit=3.0.39=pyha770c72_0 - - setuptools_scm=7.1.0=hd8ed1ab_0 - - sphinx=6.2.1=pyhd8ed1ab_0 + - pythran=0.14.0=py311h92ebd52_1 + - setuptools_scm=8.0.4=hd8ed1ab_0 - typeguard=3.0.2=pyhd8ed1ab_0 - - virtualenv=20.24.1=pyhd8ed1ab_0 + - virtualenv=20.24.4=pyhd8ed1ab_0 + - blas=2.118=openblas - jmol=14.32.10=ha770c72_0 - - jupyter_client=8.3.0=pyhd8ed1ab_0 - - jupyter_events=0.6.3=pyhd8ed1ab_0 - - nbformat=5.9.1=pyhd8ed1ab_0 + - jsonschema-with-format-nongpl=4.19.1=pyhd8ed1ab_0 + - jupyter_client=8.3.1=pyhd8ed1ab_0 + - matplotlib-base=3.8.0=py311h54ef318_1 + - nbformat=5.9.2=pyhd8ed1ab_0 - prompt_toolkit=3.0.39=hd8ed1ab_0 - - pygls=1.0.2=pyhd8ed1ab_0 - - qt-main=5.15.8=h01ceb2d_12 - - r-base=4.3.1=hfabd6f2_1 - - scipy=1.10.1=py310ha4c1d20_3 - - sphinx-basic-ng=1.0.0b2=pyhd8ed1ab_0 - - sphinx-copybutton=0.5.2=pyhd8ed1ab_0 - - sphinxcontrib-websupport=1.2.4=pyhd8ed1ab_1 - - tox=4.6.4=pyhd8ed1ab_0 - - esbonio=0.16.1=pyhd8ed1ab_0 - - furo=2023.5.20=pyhd8ed1ab_1 - - ipython=8.14.0=pyh41d4057_0 + - pygls=1.1.1=pyhd8ed1ab_0 + - qt-main=5.15.8=hc47bfe8_16 + - r-base=4.3.1=h639d9d3_5 + - scipy=1.10.1=py311h64a7726_3 + - tox=4.11.3=pyhd8ed1ab_0 + - ipython=8.16.1=pyh0d859eb_0 + - jupyter_events=0.7.0=pyhd8ed1ab_2 - nbclient=0.8.0=pyhd8ed1ab_0 - - pyqt=5.15.7=py310hab646b1_3 - - rpy2=3.5.11=py310r43h278f3c1_2 - - ipykernel=6.24.0=pyh71e2992_0 - - matplotlib=3.7.2=py310hff52083_0 - - nbconvert-core=7.7.2=pyhd8ed1ab_0 - - jupyter_server=2.7.0=pyhd8ed1ab_0 - - nbconvert-pandoc=7.7.2=pyhd8ed1ab_0 + - pyqt=5.15.9=py311hf0fb5b6_5 + - rpy2=3.5.11=py311r43h1f0f07a_3 + - ipykernel=6.25.2=pyh2140261_0 + - matplotlib=3.8.0=py311h38be061_1 + - nbconvert-core=7.9.2=pyhd8ed1ab_0 + - jupyter_server=2.7.3=pyhd8ed1ab_1 + - nbconvert-pandoc=7.9.2=pyhd8ed1ab_0 - jupyter-lsp=2.2.0=pyhd8ed1ab_0 - - jupyterlab_server=2.24.0=pyhd8ed1ab_0 - - nbconvert=7.7.2=pyhd8ed1ab_0 + - jupyterlab_server=2.25.0=pyhd8ed1ab_0 + - nbconvert=7.9.2=pyhd8ed1ab_0 - notebook-shim=0.2.3=pyhd8ed1ab_0 - - jupyterlab=4.0.3=pyhd8ed1ab_0 - - notebook=7.0.0=pyhd8ed1ab_0 - - widgetsnbextension=3.6.4=pyhd8ed1ab_0 - - ipywidgets=7.7.5=pyhd8ed1ab_0 + - jupyterlab=4.0.6=pyhd8ed1ab_0 + - notebook=7.0.4=pyhd8ed1ab_0 + - widgetsnbextension=3.6.6=pyhd8ed1ab_0 + - ipywidgets=7.8.0=pyhd8ed1ab_0 - jupyter-jsmol=2022.1.0=pyhd8ed1ab_0 - - jupyter_sphinx=0.4.0=py310hff52083_1 + - esbonio=0.16.1=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-dev-3.11-macos.yml b/src/environment-dev-3.11-macos.yml index e83ea7b265e..4ecc6d62da6 100644 --- a/src/environment-dev-3.11-macos.yml +++ b/src/environment-dev-3.11-macos.yml @@ -1,12 +1,11 @@ # Generated by conda-lock. # platform: osx-64 -# input_hash: 0b14fa06d655e7683981c27f658f33c24850625df4dd94351391308bebc4acf1 +# input_hash: 080056230f04b2498e1124e83732af17da45ea9412a8c78b3f320d01a84b18a9 channels: - conda-forge dependencies: - _r-mutex=1.0.1=anacondar_1 - - bc=1.07.1=h0d85af4_0 - bzip2=1.0.8=h0d85af4_4 - c-ares=1.19.1=h0dc2134_0 - ca-certificates=2023.7.22=h8857fd0_0 @@ -16,29 +15,30 @@ dependencies: - font-ttf-source-code-pro=2.038=h77eed37_0 - font-ttf-ubuntu=0.83=hab24e00_0 - fribidi=1.0.10=hbcb3906_0 - - gh=2.32.1=h990441c_0 + - gh=2.36.0=h990441c_0 - giflib=5.2.1=hb7f2c08_3 - - icu=72.1=h7336db1_0 + - icu=73.2=hf5e326d_0 - libatomic_ops=7.6.14=hb7f2c08_0 - - libbrotlicommon=1.0.9=hb7f2c08_9 + - libboost-headers=1.82.0=h694c41f_6 + - libbrotlicommon=1.1.0=h0dc2134_1 - libcxx=16.0.6=hd57cbcb_0 - - libdeflate=1.18=hac1461d_0 + - libdeflate=1.19=ha4e1b8e_0 - libev=4.33=haf1e3a3_1 - libexpat=2.5.0=hf0c8a7f_1 - libffi=3.4.2=h0d85af4_5 - - libgfortran-devel_osx-64=12.2.0=hf0fd499_32 + - libgfortran-devel_osx-64=12.3.0=h0b6f5ec_1 - libiconv=1.17=hac89ed1_0 - - libjpeg-turbo=2.1.5.1=hb7f2c08_0 + - libjpeg-turbo=3.0.0=h0dc2134_1 - libsodium=1.0.18=hbcb3906_1 - libtool=2.4.7=hf0c8a7f_0 - - libuv=1.44.2=hac89ed1_0 - - libwebp-base=1.3.1=h0dc2134_0 + - libuv=1.46.0=h0c2f820_0 + - libwebp-base=1.3.2=h0dc2134_0 - libzlib=1.2.13=h8a1eda9_5 - - llvm-openmp=16.0.6=hff08bdf_0 + - llvm-openmp=17.0.2=hff08bdf_0 - m4=1.4.18=haf1e3a3_1001 - make=4.3=h22f3db7_1 - mathjax=3.2.2=h694c41f_0 - - metis=5.1.1=he965462_0 + - metis=5.1.0=he965462_1007 - nauty=2.7.2=h0d85af4_0 - ncurses=6.4=hf0c8a7f_0 - palp=2.20=hbcb3906_0 @@ -48,11 +48,11 @@ dependencies: - pari-seadata-small=0.0.20090618=0 - patch=2.7.6=hbcf498f_1002 - perl=5.32.1=4_h0dc2134_perl5 - - pixman=0.40.0=hbcb3906_0 - planarity=3.0.0.5=hbcb3906_1002 - pthread-stubs=0.4=hc929b4f_1001 - - python_abi=3.10=3_cp310 - - rhash=1.4.3=hac89ed1_0 + - python_abi=3.11=4_cp311 + - rhash=1.4.4=h0dc2134_0 + - rw=0.7=1 - sagemath-db-combinatorial-designs=20140630=1 - sagemath-db-graphs=20210214=hd8ed1ab_0 - sagemath-db-polytopes=20170220=1 @@ -74,97 +74,97 @@ dependencies: - isl=0.25=hb486fe8_0 - lerc=4.0.0=hb486fe8_0 - libbraiding=1.1=h2e338ed_0 - - libbrotlidec=1.0.9=hb7f2c08_9 - - libbrotlienc=1.0.9=hb7f2c08_9 + - libbrotlidec=1.1.0=h0dc2134_1 + - libbrotlienc=1.1.0=h0dc2134_1 - libcbor=0.10.2=hf0c8a7f_0 - libedit=3.1.20191231=h0678c8f_2 - - libgfortran5=12.3.0=hbd3c1fe_1 + - libgfortran5=13.2.0=h2873a65_1 - libpng=1.6.39=ha978bb4_0 - - libsqlite=3.42.0=h58db7d2_0 + - libsqlite=3.43.0=h58db7d2_0 - libxcb=1.15=hb7f2c08_0 - - libxml2=2.10.4=h554bb67_0 + - libxml2=2.11.5=h3346baf_1 - lrcalc=2.1=hf0c8a7f_5 - ninja=1.11.1=hb8565cd_0 - - openjdk=20.0.0=h7d26f99_0 - - openssl=3.1.1=h8a1eda9_1 + - openjdk=20.0.2=h7d26f99_2 + - openssl=3.1.3=h8a1eda9_0 - pandoc=3.1.3=h9d075a6_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 - readline=8.2=h9e318b2_1 - symmetrica=3.0.1=hf0c8a7f_0 - tapi=1100.0.11=h9ce4665_0 - - tar=1.34=hcb2f6ea_1 - - tbb=2021.9.0=hb8565cd_0 + - tbb=2021.10.0=h1c7c39f_1 - texinfo=7.0=pl5321hc47821c_0 - threejs-sage=122=hd8ed1ab_2 - - tk=8.6.12=h5dbffcc_0 + - tk=8.6.13=hef22860_0 - zeromq=4.3.4=he49afe7_1 - zlib=1.2.13=h8a1eda9_5 - - zstd=1.5.2=h829000d_7 + - zstd=1.5.5=h829000d_0 - automake=1.16.5=pl5321h694c41f_0 - - boost-cpp=1.82.0=hd754db5_1 - - brotli-bin=1.0.9=hb7f2c08_9 + - brotli-bin=1.1.0=h0dc2134_1 - bwidget=1.9.14=h694c41f_1 - cddlib=1!0.94m=h0f52abe_0 - ecl=21.2.1=hd029580_2 - ecm=7.0.4=h343d7f2_1002 - fonts-conda-ecosystem=1=0 - - freetype=2.12.1=h3f81eb7_1 + - freetype=2.12.1=h60636b9_2 - gap-core=4.12.2=hc16eb5f_3 - givaro=4.1.1=h0a799c6_3 - glpk=5.0=h3cb5acd_0 - jmol=14.32.9=h694c41f_0 - - krb5=1.20.1=h049b76e_0 + - krb5=1.21.2=hb884880_0 + - libboost=1.82.0=hf0c313a_6 - libfido2=1.13.0=h14e1388_0 - - libgfortran=5.0.0=12_3_0_h97931a8_1 - - libglib=2.76.4=hc62aa5d_0 + - libgfortran=5.0.0=13_2_0_h97931a8_1 + - libglib=2.78.0=hc62aa5d_0 - libhomfly=1.02r6=hc929b4f_0 - - libllvm15=15.0.7=h7001e86_1 + - libllvm16=16.0.6=he4b1e75_2 - libnghttp2=1.52.0=he2ab024_0 - libssh2=1.11.0=hd019ec5_0 - - libtiff=4.5.1=hf955e92_0 + - libtiff=4.6.0=h684deea_2 - m4ri=20140914=h3f75d11_1005 - mpfr=4.2.0=h4f9bd69_0 - ntl=11.4.3=h0ab3c2f_1 - pari=2.15.4=h93f793c_2_pthread - primecount=7.6=ha894c9a_0 - - python=3.10.12=had23ca6_0_cpython + - python=3.11.6=h30d4d87_0_cpython - sigtool=0.1.3=h88f4db0_0 - - sqlite=3.42.0=h2b0dec6_0 + - sqlite=3.43.0=h2b0dec6_0 - tachyon=0.99b6=0 - - tktable=2.10=h49f0cf7_3 + - tktable=2.10=ha166976_5 - alabaster=0.7.13=pyhd8ed1ab_0 - appdirs=1.4.4=pyh9f0ad1d_0 - appnope=0.1.3=pyhd8ed1ab_0 - attrs=23.1.0=pyh71513ae_1 - backcall=0.2.0=pyh9f0ad1d_0 - backports=1.0=pyhd8ed1ab_3 - - backports.zoneinfo=0.2.1=py310h2ec42d9_7 - - brotli=1.0.9=hb7f2c08_9 - - brotli-python=1.0.9=py310h7a76584_9 + - brotli=1.1.0=h0dc2134_1 + - brotli-python=1.1.0=py311hdf8f085_1 + - cached_property=1.5.2=pyha770c72_1 - cachetools=5.3.1=pyhd8ed1ab_0 - certifi=2023.7.22=pyhd8ed1ab_0 - - chardet=5.1.0=py310h2ec42d9_0 - - charset-normalizer=3.2.0=pyhd8ed1ab_0 + - chardet=5.2.0=py311h6eed73b_1 + - charset-normalizer=3.3.0=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_0 - - cycler=0.11.0=pyhd8ed1ab_0 - - cysignals=1.11.2=py310h8c82e65_2 - - cython=0.29.36=py310h9e9d8ca_0 - - debugpy=1.6.7=py310h7a76584_0 + - cycler=0.12.1=pyhd8ed1ab_0 + - cysignals=1.11.2=py311h8a58447_3 + - cython=3.0.2=py311hdf8f085_2 + - debugpy=1.8.0=py311hdf8f085_1 - decorator=5.1.1=pyhd8ed1ab_0 - defusedxml=0.7.1=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - - docutils=0.19=py310h2ec42d9_1 + - docutils=0.20.1=py311h6eed73b_2 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 - - exceptiongroup=1.1.2=pyhd8ed1ab_0 + - exceptiongroup=1.1.3=pyhd8ed1ab_0 - execnet=2.0.2=pyhd8ed1ab_0 - executing=1.2.0=pyhd8ed1ab_0 - fftw=3.3.10=nompi_h4fa670e_108 - - filelock=3.12.2=pyhd8ed1ab_0 + - filelock=3.12.4=pyhd8ed1ab_0 - flit-core=3.9.0=pyhd8ed1ab_0 - fontconfig=2.14.2=h5bb23bf_0 - gap-defaults=4.12.2=h694c41f_3 @@ -175,240 +175,242 @@ dependencies: - iniconfig=2.0.0=pyhd8ed1ab_0 - ipython_genutils=0.2.0=py_1 - json5=0.9.14=pyhd8ed1ab_0 - - jupyterlab_widgets=1.1.1=pyhd8ed1ab_0 - - kiwisolver=1.4.4=py310ha23aa8a_1 + - jsonpointer=2.4=py311h6eed73b_3 + - jupyterlab_widgets=1.1.7=pyhd8ed1ab_0 + - kiwisolver=1.4.5=py311h5fe6e05_1 - lcalc=2.0.5=h3a941db_1 - - lcms2=2.15=h2dcdeff_1 - - ld64_osx-64=609=h8ce0179_13 - - libbrial=1.2.12=h8f704d5_0 - - libclang-cpp15=15.0.7=default_hdb78580_2 - - libcurl=8.1.2=hbee3ae8_0 + - lcms2=2.15=hd6ba6f3_3 + - ld64_osx-64=609=ha20a434_14 + - libboost-devel=1.82.0=h1c7c39f_6 + - libbrial=1.2.12=h8d08345_1 + - libclang-cpp16=16.0.6=default_h762fdd7_1 + - libcurl=8.3.0=h5f667d7_0 - libflint=2.9.0=hfd2f71f_ntl_100 - - libopenblas=0.3.23=openmp_h429af6e_0 - - libwebp=1.3.1=hc961f54_0 - - llvm-tools=15.0.7=h7001e86_1 + - libopenblas=0.3.24=openmp_h48a4ad5_0 + - libwebp=1.3.2=h44782d1_1 + - llvm-tools=16.0.6=he4b1e75_2 - m4rie=20150908=h3f75d11_1001 - - markupsafe=2.1.3=py310h6729b98_0 + - markupsafe=2.1.3=py311h2725bcf_1 - maxima=5.45.0=hd029580_3 - - mistune=3.0.0=pyhd8ed1ab_0 + - mistune=3.0.1=pyhd8ed1ab_0 - mpc=1.3.1=h81bd1dd_0 - mpfi=1.5.4=h52b28e3_1001 - mpmath=1.3.0=pyhd8ed1ab_0 - munkres=1.1.4=pyh9f0ad1d_0 - nest-asyncio=1.5.6=pyhd8ed1ab_0 - networkx=2.8.8=pyhd8ed1ab_0 - - openjpeg=2.5.0=h13ac156_2 - - openssh=9.3p1=h9dc22bb_1 - - packaging=23.1=pyhd8ed1ab_0 + - openjpeg=2.5.0=ha4da562_3 + - openssh=9.3p1=h3df487d_2 + - packaging=23.2=pyhd8ed1ab_0 - pandocfilters=1.5.0=pyhd8ed1ab_0 - parso=0.8.3=pyhd8ed1ab_0 - - pathspec=0.11.1=pyhd8ed1ab_0 + - pathspec=0.11.2=pyhd8ed1ab_0 - pickleshare=0.7.5=py_1003 - pkgconfig=1.5.5=pyhd8ed1ab_4 - - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_0 - - pluggy=1.2.0=pyhd8ed1ab_0 + - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 + - pluggy=1.3.0=pyhd8ed1ab_0 - ply=3.11=py_1 - ppl=1.2=ha60d53e_1006 - prometheus_client=0.17.1=pyhd8ed1ab_0 - - psutil=5.9.5=py310h90acd4f_0 + - psutil=5.9.5=py311h2725bcf_1 - 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_0 - - pycodestyle=2.10.0=pyhd8ed1ab_0 + - pybind11-global=2.11.1=py311h5fe6e05_2 + - pycodestyle=2.11.0=pyhd8ed1ab_0 - pycparser=2.21=pyhd8ed1ab_0 - - pygments=2.15.1=pyhd8ed1ab_0 - - pyparsing=3.0.9=pyhd8ed1ab_0 - - pyrsistent=0.19.3=py310h90acd4f_0 + - pygments=2.16.1=pyhd8ed1ab_0 + - pyparsing=3.1.1=pyhd8ed1ab_0 + - pyrsistent=0.19.3=py311h2725bcf_1 - pysocks=1.7.1=pyha2e5f31_6 - pyspellchecker=0.7.2=pyhd8ed1ab_0 - - python-fastjsonschema=2.18.0=pyhd8ed1ab_0 + - python-fastjsonschema=2.18.1=pyhd8ed1ab_0 - python-json-logger=2.0.7=pyhd8ed1ab_0 - - python-lrcalc=2.1=py310h7a76584_5 + - python-lrcalc=2.1=py311h814d153_5 - python-tzdata=2023.3=pyhd8ed1ab_0 - - pytz=2023.3=pyhd8ed1ab_0 - - pyyaml=6.0=py310h90acd4f_5 - - pyzmq=25.1.0=py310h998be00_0 + - pytz=2023.3.post1=pyhd8ed1ab_0 + - pyyaml=6.0.1=py311h2725bcf_1 + - pyzmq=25.1.1=py311h5dacc12_1 - qd=2.3.22=h2beb688_1004 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.9.2=py310h3461e44_0 + - rpds-py=0.10.4=py311h5e0f0e4_0 - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 - sagetex=3.6.1=pyhd8ed1ab_0 - - send2trash=1.8.2=pyh41d4057_0 - - setuptools=63.4.3=py310h2ec42d9_0 + - setuptools=59.8.0=py311h6eed73b_1 - simplegeneric=0.8.1=py_1 - six=1.16.0=pyh6c4a22f_0 - sniffio=1.3.0=pyhd8ed1ab_0 - snowballstemmer=2.2.0=pyhd8ed1ab_0 - - soupsieve=2.3.2.post1=pyhd8ed1ab_0 - - sphinxcontrib-applehelp=1.0.4=pyhd8ed1ab_0 - - sphinxcontrib-devhelp=1.0.2=py_0 - - sphinxcontrib-htmlhelp=2.0.1=pyhd8ed1ab_0 - - sphinxcontrib-jsmath=1.0.1=py_0 - - sphinxcontrib-qthelp=1.0.3=py_0 - - sphinxcontrib-serializinghtml=1.1.5=pyhd8ed1ab_2 + - soupsieve=2.5=pyhd8ed1ab_1 + - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_0 - sympow=2.023.6=h115ba6a_3 - - toml=0.10.2=pyhd8ed1ab_0 - tomli=2.0.1=pyhd8ed1ab_0 - - tomlkit=0.11.8=pyha770c72_0 - - tornado=6.3.2=py310h6729b98_0 - - traitlets=5.9.0=pyhd8ed1ab_0 - - trove-classifiers=2023.7.6=pyhd8ed1ab_0 - - typing_extensions=4.7.1=pyha770c72_0 + - tornado=6.3.3=py311h2725bcf_1 + - traitlets=5.11.2=pyhd8ed1ab_0 + - trove-classifiers=2023.9.19=pyhd8ed1ab_0 + - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 + - typing_extensions=4.8.0=pyha770c72_0 - typing_utils=0.1.0=pyhd8ed1ab_0 - - tzlocal=5.0.1=py310h2ec42d9_0 - - unicodedata2=15.0.0=py310h90acd4f_0 + - tzlocal=5.1=py311h6eed73b_0 + - uri-template=1.3.0=pyhd8ed1ab_0 - vcversioner=2.16.0.0=py_1 - - webencodings=0.5.1=py_1 - - websocket-client=1.6.1=pyhd8ed1ab_0 - - wheel=0.41.0=pyhd8ed1ab_0 - - zipp=3.16.2=pyhd8ed1ab_0 - - anyio=3.7.1=pyhd8ed1ab_0 + - webcolors=1.13=pyhd8ed1ab_0 + - webencodings=0.5.1=pyhd8ed1ab_2 + - websocket-client=1.6.4=pyhd8ed1ab_0 + - wheel=0.41.2=pyhd8ed1ab_0 + - zipp=3.17.0=pyhd8ed1ab_0 + - anyio=4.0.0=pyhd8ed1ab_0 - arb=2.23.0=h905a977_0 - - asttokens=2.2.1=pyhd8ed1ab_0 - - async-lru=2.0.3=pyhd8ed1ab_0 + - asttokens=2.4.0=pyhd8ed1ab_0 + - async-lru=2.0.4=pyhd8ed1ab_0 - babel=2.12.1=pyhd8ed1ab_1 - backports.functools_lru_cache=1.6.5=pyhd8ed1ab_0 - beautifulsoup4=4.12.2=pyha770c72_0 - beniget=0.4.1=pyhd8ed1ab_0 - - bleach=6.0.0=pyhd8ed1ab_0 - - brial=1.2.12=pyha3edaa6_0 - - cairo=1.16.0=h09dd18c_1016 + - bleach=6.1.0=pyhd8ed1ab_0 + - boost-cpp=1.82.0=h07eb623_6 + - brial=1.2.12=pyh694c41f_1 + - cached-property=1.5.2=hd8ed1ab_1 + - cairo=1.16.0=hfdb49f2_1017 - cattrs=23.1.2=pyhd8ed1ab_0 - - cctools_osx-64=973.0.1=h48a5a9d_13 - - cffi=1.15.1=py310ha78151a_3 - - clang-15=15.0.7=default_hdb78580_2 - - cmake=3.26.4=hf40c264_0 - - comm=0.1.3=pyhd8ed1ab_0 + - cctools_osx-64=973.0.1=ha1c5b94_14 + - cffi=1.16.0=py311hc0b63fd_0 + - clang-16=16.0.6=default_h762fdd7_1 + - cmake=3.27.6=hf40c264_0 + - comm=0.1.4=pyhd8ed1ab_0 - cppy=1.2.1=pyhd8ed1ab_0 - - curl=8.1.2=hbee3ae8_0 - - cypari2=2.1.3=py310hb5d31c9_2 + - curl=8.3.0=h5f667d7_0 + - cypari2=2.1.3=py311h7d823c7_2 - deprecation=2.1.0=pyh9f0ad1d_0 - eclib=20230424=hd00e801_0 - - fonttools=4.41.1=py310h6729b98_0 + - fonttools=4.43.1=py311he705e18_0 - fplll=5.4.4=hdfdc905_0 - - gfortran_impl_osx-64=12.2.0=hdfd80ef_32 - - gmpy2=2.1.2=py310hb691cb2_1 - - html5lib=1.1=pyh9f0ad1d_0 + - gfortran_impl_osx-64=12.3.0=h54fd467_1 + - gmpy2=2.1.2=py311hc5b4402_1 - importlib-metadata=6.8.0=pyha770c72_0 - - importlib_resources=6.0.0=pyhd8ed1ab_1 - - jedi=0.18.2=pyhd8ed1ab_0 + - importlib_resources=6.1.0=pyhd8ed1ab_0 + - jedi=0.19.1=pyhd8ed1ab_0 - jinja2=3.1.2=pyhd8ed1ab_1 - jupyterlab_pygments=0.2.2=pyhd8ed1ab_0 - - ld64=609=ha91a046_13 - - libblas=3.9.0=17_osx64_openblas - - libgd=2.3.3=h3d994df_6 + - ld64=609=ha02d983_14 + - libblas=3.9.0=18_osx64_openblas + - libgd=2.3.3=h0dceb68_9 - matplotlib-inline=0.1.6=pyhd8ed1ab_0 - - memory-allocator=0.1.2=py310h90acd4f_2 - - openblas=0.3.23=openmp_hbefa662_0 - - overrides=7.3.1=pyhd8ed1ab_0 + - memory-allocator=0.1.2=py311h5547dcb_2 + - openblas=0.3.24=openmp_hd7704e8_0 + - overrides=7.4.0=pyhd8ed1ab_0 - pexpect=4.8.0=pyh1a96a4e_2 - - pillow=10.0.0=py310hd63a8c7_0 + - pillow=10.0.1=py311h0beca62_2 - pip=23.2.1=pyhd8ed1ab_0 - - primecountpy=0.1.0=py310h88cfcbd_3 - - pybind11=2.11.1=py310h88cfcbd_0 - - pyproject-api=1.5.3=pyhd8ed1ab_0 - - pytest=7.4.0=pyhd8ed1ab_0 + - primecountpy=0.1.0=py311h5fe6e05_4 + - pybind11=2.11.1=py311h5fe6e05_2 + - pyobjc-core=10.0=py311hf110eff_0 + - pyproject-api=1.6.1=pyhd8ed1ab_0 + - pytest=7.4.2=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - - pytz-deprecation-shim=0.1.0.post0=py310h2ec42d9_3 - - referencing=0.30.0=pyhd8ed1ab_0 + - pytz-deprecation-shim=0.1.0.post0=py311h6eed73b_4 + - referencing=0.30.2=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - sagemath-db-conway-polynomials=0.5.0=h033912b_1 - singular=4.2.1.p3=hac851df_2 - terminado=0.17.1=pyhd1c38e8_0 - tinycss2=1.2.1=pyhd8ed1ab_0 - - typing-extensions=4.7.1=hd8ed1ab_0 - - urllib3=2.0.4=pyhd8ed1ab_0 - - argon2-cffi-bindings=21.2.0=py310h90acd4f_3 - - cctools=973.0.1=hd9ad811_13 - - clang=15.0.7=h694c41f_2 - - git=2.41.0=pl5321h5c607e1_0 - - harfbuzz=7.3.0=h413ba03_0 + - typing-extensions=4.8.0=hd8ed1ab_0 + - urllib3=2.0.6=pyhd8ed1ab_0 + - argon2-cffi-bindings=21.2.0=py311h2725bcf_4 + - arrow=1.3.0=pyhd8ed1ab_0 + - cctools=973.0.1=h40f6528_14 + - clang=16.0.6=hc177806_1 + - fqdn=1.5.1=pyhd8ed1ab_0 + - git=2.42.0=pl5321hbb4c4ee_0 + - harfbuzz=8.2.1=h7666e2a_0 - hatchling=1.18.0=pyhd8ed1ab_0 - - importlib-resources=6.0.0=pyhd8ed1ab_1 + - importlib-resources=6.1.0=pyhd8ed1ab_0 - importlib_metadata=6.8.0=hd8ed1ab_0 - jsonschema-specifications=2023.7.1=pyhd8ed1ab_0 - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1 - - libcblas=3.9.0=17_osx64_openblas - - liblapack=3.9.0=17_osx64_openblas - - lsprotocol=2023.0.0a2=pyhd8ed1ab_0 - - platformdirs=3.9.1=pyhd8ed1ab_0 - - poetry-core=1.6.1=pyhd8ed1ab_0 - - pplpy=0.8.7=py310h190f582_0 + - libcblas=3.9.0=18_osx64_openblas + - liblapack=3.9.0=18_osx64_openblas + - lsprotocol=2023.0.0b1=pyhd8ed1ab_0 + - platformdirs=3.11.0=pyhd8ed1ab_0 + - pplpy=0.8.7=py311h47e80fe_0 + - pyobjc-framework-cocoa=10.0=py311hf110eff_1 - pytest-xdist=3.3.1=pyhd8ed1ab_0 - requests=2.31.0=pyhd8ed1ab_0 - - setuptools-scm=7.1.0=pyhd8ed1ab_0 + - setuptools-scm=8.0.4=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 - sympy=1.12=pypyh9d50eac_103 - - wcwidth=0.2.6=pyhd8ed1ab_0 - - argon2-cffi=21.3.0=pyhd8ed1ab_0 - - arpack=3.7.0=hefb7bc6_2 - - clangxx=15.0.7=default_hdb78580_2 + - wcwidth=0.2.8=pyhd8ed1ab_0 + - argon2-cffi=23.1.0=pyhd8ed1ab_0 + - clangxx=16.0.6=default_h762fdd7_1 - dsdp=5.8=h6e329d1_1203 - fflas-ffpack=2.4.3=h026fd7e_2 - gsl=2.7=h93259b0_0 - iml=1.0.5=h64b42ca_1003 - - jsonschema=4.18.4=pyhd8ed1ab_0 - - jupyter_core=5.3.1=py310h2ec42d9_0 - - liblapacke=3.9.0=17_osx64_openblas - - numpy=1.25.1=py310h7451ae0_0 - - pango=1.50.14=hbce5e75_1 - - pooch=1.7.0=pyha770c72_3 + - isoduration=20.11.0=pyhd8ed1ab_0 + - jsonschema=4.19.1=pyhd8ed1ab_0 + - jupyter_core=5.3.2=py311h6eed73b_0 + - liblapacke=3.9.0=18_osx64_openblas + - numpy=1.26.0=py311hc44ba51_0 + - pango=1.50.14=h19c1c8a_2 + - pooch=1.7.0=pyhd8ed1ab_4 - prompt-toolkit=3.0.39=pyha770c72_0 - - setuptools_scm=7.1.0=hd8ed1ab_0 - - sphinx=6.2.1=pyhd8ed1ab_0 + - send2trash=1.8.2=pyhd1c38e8_0 + - setuptools_scm=8.0.4=hd8ed1ab_0 - suitesparse=5.10.1=h7aff33d_1 - typeguard=3.0.2=pyhd8ed1ab_0 - - virtualenv=20.24.1=pyhd8ed1ab_0 - - blas-devel=3.9.0=17_osx64_openblas - - compiler-rt_osx-64=15.0.7=he1888fc_1 - - contourpy=1.1.0=py310h88cfcbd_0 - - cvxopt=1.3.1=py310ha550498_0 - - fpylll=0.5.9=py310h0d1ef73_1 + - virtualenv=20.24.4=pyhd8ed1ab_0 + - blas-devel=3.9.0=18_osx64_openblas + - compiler-rt_osx-64=16.0.6=he1888fc_0 + - contourpy=1.1.1=py311h5fe6e05_1 + - cvxopt=1.3.2=py311ha4c19de_1 + - fpylll=0.5.9=py311ha75317a_1 - giac=1.9.0.21=h92f3f65_1 - - igraph=0.9.10=h6560ca6_1 - - jupyter_client=8.3.0=pyhd8ed1ab_0 - - jupyter_events=0.6.3=pyhd8ed1ab_0 + - jsonschema-with-format-nongpl=4.19.1=pyhd8ed1ab_0 + - jupyter_client=8.3.1=pyhd8ed1ab_0 - linbox=1.6.3=hdde8d14_7 - - nbformat=5.9.1=pyhd8ed1ab_0 + - nbformat=5.9.2=pyhd8ed1ab_0 - prompt_toolkit=3.0.39=hd8ed1ab_0 - - pygls=1.0.2=pyhd8ed1ab_0 - - scipy=1.10.1=py310h3900cf1_3 - - sphinx-basic-ng=1.0.0b2=pyhd8ed1ab_0 - - sphinx-copybutton=0.5.2=pyhd8ed1ab_0 - - sphinxcontrib-websupport=1.2.4=pyhd8ed1ab_1 - - tox=4.6.4=pyhd8ed1ab_0 - - blas=2.117=openblas - - compiler-rt=15.0.7=he1888fc_1 - - esbonio=0.16.1=pyhd8ed1ab_0 - - furo=2023.5.20=pyhd8ed1ab_1 - - ipython=8.14.0=pyhd1c38e8_0 - - matplotlib-base=3.7.2=py310h475a17b_0 + - pygls=1.1.1=pyhd8ed1ab_0 + - scipy=1.10.1=py311h16c3c4d_3 + - tox=4.11.3=pyhd8ed1ab_0 + - blas=2.118=openblas + - compiler-rt=16.0.6=he1888fc_0 + - ipython=8.16.1=pyh31c8845_0 + - jupyter_events=0.7.0=pyhd8ed1ab_2 + - matplotlib-base=3.8.0=py311haff9b01_0 - nbclient=0.8.0=pyhd8ed1ab_0 - - rw=0.9=h0d85af4_0 - - clang_osx-64=15.0.7=h03d6864_3 - - ipykernel=6.24.0=pyh5fb750a_0 - - matplotlib=3.7.2=py310h2ec42d9_0 - - nbconvert-core=7.7.2=pyhd8ed1ab_0 - - c-compiler=1.6.0=h63c33a9_0 - - clangxx_osx-64=15.0.7=h2133e9c_3 - - gfortran_osx-64=12.2.0=h18f7dce_1 - - jupyter_server=2.7.0=pyhd8ed1ab_0 - - nbconvert-pandoc=7.7.2=pyhd8ed1ab_0 - - cxx-compiler=1.6.0=h1c7c39f_0 - - gfortran=12.2.0=h2c809b3_1 + - clang_osx-64=16.0.6=h8787910_1 + - ipykernel=6.25.2=pyh1050b4e_0 + - matplotlib=3.8.0=py311h6eed73b_0 + - nbconvert-core=7.9.2=pyhd8ed1ab_0 + - clangxx_osx-64=16.0.6=h1b7723c_1 + - gfortran_osx-64=12.3.0=h18f7dce_1 + - jupyter_server=2.7.3=pyhd8ed1ab_1 + - nbconvert-pandoc=7.9.2=pyhd8ed1ab_0 + - gfortran=12.3.0=h2c809b3_1 - jupyter-lsp=2.2.0=pyhd8ed1ab_0 - - jupyterlab_server=2.24.0=pyhd8ed1ab_0 - - nbconvert=7.7.2=pyhd8ed1ab_0 + - jupyterlab_server=2.25.0=pyhd8ed1ab_0 + - nbconvert=7.9.2=pyhd8ed1ab_0 - notebook-shim=0.2.3=pyhd8ed1ab_0 - - pythran=0.13.1=py310h9209b79_0 - - r-base=4.3.0=h7a6543b_0 + - pythran=0.14.0=py311hd5c4f45_1 + - r-base=4.3.1=h0ff45fa_6 - fortran-compiler=1.6.0=h932d759_0 - - jupyterlab=4.0.3=pyhd8ed1ab_0 - - rpy2=3.5.11=py310r43hc1335a1_2 - - compilers=1.6.0=h694c41f_0 - - notebook=7.0.0=pyhd8ed1ab_0 - - widgetsnbextension=3.6.4=pyhd8ed1ab_0 - - ipywidgets=7.7.5=pyhd8ed1ab_0 + - jupyterlab=4.0.6=pyhd8ed1ab_0 + - rpy2=3.5.11=py311r43h4a70a88_3 + - notebook=7.0.4=pyhd8ed1ab_0 + - widgetsnbextension=3.6.6=pyhd8ed1ab_0 + - ipywidgets=7.8.0=pyhd8ed1ab_0 - jupyter-jsmol=2022.1.0=pyhd8ed1ab_0 - - jupyter_sphinx=0.4.0=py310h2ec42d9_1 + - esbonio=0.16.1=pyhd8ed1ab_0 + - 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 diff --git a/src/environment-dev-3.9-linux.yml b/src/environment-dev-3.9-linux.yml index 880b139dadd..c25b266fa6a 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: f0eef6aeafe7239ecbb9479957b227d93d976f7154c46e509083c6ef793567fb +# input_hash: 7ce2ad7a12e23c359657f2aeb3058ef6622a4bbfc247452fb69f2c774473dc92 channels: - conda-forge @@ -12,44 +12,41 @@ dependencies: - font-ttf-inconsolata=3.000=h77eed37_0 - font-ttf-source-code-pro=2.038=h77eed37_0 - font-ttf-ubuntu=0.83=hab24e00_0 - - gh=2.32.1=ha8f183a_0 + - gh=2.36.0=ha8f183a_0 - kernel-headers_linux-64=2.6.32=he073ed8_16 - ld_impl_linux-64=2.40=h41732ed_0 - - libgcc-devel_linux-64=12.3.0=h8bca6fd_0 - - libgfortran5=13.1.0=h15d22d2_0 - - libstdcxx-devel_linux-64=12.3.0=h8bca6fd_0 - - libstdcxx-ng=13.1.0=hfd8a6a1_0 + - libboost-headers=1.82.0=ha770c72_6 + - libgcc-devel_linux-64=12.3.0=h8bca6fd_2 + - libstdcxx-devel_linux-64=12.3.0=h8bca6fd_2 + - libstdcxx-ng=13.2.0=h7e041cc_2 - mathjax=3.2.2=ha770c72_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 - - python_abi=3.10=3_cp310 + - 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 - fonts-conda-forge=1=0 - - libgfortran-ng=13.1.0=h69a702a_0 - - libgomp=13.1.0=he5830b7_0 + - libgomp=13.2.0=h807b86a_2 - pari-seadata=0.0.20090618=0 - sysroot_linux-64=2.12=he073ed8_16 - threejs-sage=122=hd8ed1ab_2 - binutils_impl_linux-64=2.40=hf600244_0 - fonts-conda-ecosystem=1=0 - binutils=2.40=hdd6e379_0 - - binutils_linux-64=2.40=hbdbef99_1 + - binutils_linux-64=2.40=hbdbef99_2 - _openmp_mutex=4.5=2_kmp_llvm - - libgcc-ng=13.1.0=he5830b7_0 - - alsa-lib=1.2.8=h166bdaf_0 + - libgcc-ng=13.2.0=h807b86a_2 + - alsa-lib=1.2.10=hd590300_0 - attr=2.5.1=h166bdaf_1 - - bc=1.07.1=h7f98852_0 - bdw-gc=8.0.6=h4bd325d_0 - bzip2=1.0.8=h7f98852_4 - c-ares=1.19.1=hd590300_0 - cliquer=1.22=h36c2ea0_0 - - fftw=3.3.10=nompi_hc118613_108 - fribidi=1.0.10=h36c2ea0_0 - gengetopt=2.23=h9c3ff4c_0 - gettext=0.21.1=h27087fc_0 @@ -57,57 +54,56 @@ dependencies: - giflib=5.2.1=h0b41bf4_3 - gmp=6.2.1=h58526e2_0 - graphite2=1.3.13=h58526e2_1001 - - icu=72.1=hcb278e6_0 + - 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.1=h58526e2_0 - - libbrotlicommon=1.0.9=h166bdaf_9 + - libbrotlicommon=1.1.0=hd590300_1 - libcbor=0.10.2=hcb278e6_0 - - libdeflate=1.18=h0b41bf4_0 + - libdeflate=1.19=hd590300_0 - libev=4.33=h516909a_1 - libexpat=2.5.0=hcb278e6_1 - libffi=3.4.2=h7f98852_5 + - libgfortran5=13.2.0=ha4646dd_2 - libiconv=1.17=h166bdaf_0 - - libjpeg-turbo=2.1.5.1=h0b41bf4_0 - - libnsl=2.0.0=h7f98852_0 + - libjpeg-turbo=2.1.5.1=hd590300_1 + - libnsl=2.0.0=hd590300_1 - libogg=1.3.4=h7f98852_1 - - libopenblas=0.3.23=pthreads_h80387f5_0 - libopus=1.3.1=h7f98852_1 - - libsanitizer=12.3.0=h0f45ef3_0 + - libsanitizer=12.3.0=h0f45ef3_2 - libsodium=1.0.18=h36c2ea0_1 - libtool=2.4.7=h27087fc_0 - libuuid=2.38.1=h0b41bf4_0 - - libuv=1.44.2=h166bdaf_0 - - libwebp-base=1.3.1=hd590300_0 + - libuv=1.46.0=hd590300_0 + - libwebp-base=1.3.2=hd590300_0 - 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_0 - - mpg123=1.31.3=hcb278e6_0 + - metis=5.1.0=h59595ed_1007 + - mpg123=1.32.3=h59595ed_0 - nauty=2.7.2=h7f98852_0 - ncurses=6.4=hcb278e6_0 - ninja=1.11.1=h924138e_0 - nspr=4.35=h27087fc_0 - - openssl=3.1.1=hd590300_1 + - openssl=3.1.3=hd590300_0 - palp=2.20=h36c2ea0_0 - patch=2.7.6=h7f98852_1002 - - pixman=0.40.0=h36c2ea0_0 + - pixman=0.42.2=h59595ed_0 - pkg-config=0.29.2=h36c2ea0_1008 - planarity=3.0.0.5=h36c2ea0_1002 - - primesieve=11.0=hcb278e6_0 + - primesieve=11.1=h59595ed_0 - pthread-stubs=0.4=h36c2ea0_1001 - - qd=2.3.22=h2cc385e_1004 - qhull=2020.2=h4bd325d_2 - - rhash=1.4.3=h166bdaf_0 + - 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.0.10=h7f98852_0 + - 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 @@ -120,79 +116,77 @@ dependencies: - 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_0 + - gcc_impl_linux-64=12.3.0=he2b93b0_2 - givaro=4.1.1=h192cbe9_1 - glpk=5.0=h445213a_0 - - libblas=3.9.0=17_linux64_openblas - - libbrotlidec=1.0.9=h166bdaf_9 - - libbrotlienc=1.0.9=h166bdaf_9 - - libcap=2.67=he9d0100_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_2 - libgpg-error=1.47=h71f35ed_0 - libhomfly=1.02r6=h36c2ea0_0 - libnghttp2=1.52.0=h61bc06f_0 - libpng=1.6.39=h753d276_0 - - libsqlite=3.42.0=h2797004_0 + - libsqlite=3.43.0=h2797004_0 - libssh2=1.11.0=h0841786_0 - libvorbis=1.3.7=h9c3ff4c_0 - libxcb=1.15=h0b41bf4_0 - - libxml2=2.11.4=h0d562d8_0 + - libxml2=2.11.5=h232c23b_1 - mpfr=4.2.0=hb012696_0 - - mysql-common=8.0.33=hf1915f5_2 + - mysql-common=8.0.33=hf1915f5_5 - ntl=11.4.3=hef3c4d3_1 - - openblas=0.3.23=pthreads_h855a84d_0 - pcre2=10.40=hc3806b6_0 - perl=5.32.1=4_hd590300_perl5 - - primecount=7.6=hcb278e6_0 + - primecount=7.9=hcb278e6_0 - readline=8.2=h8228510_1 - - tar=1.34=hb2e2bae_1 - - tk=8.6.12=h27826a3_0 + - tk=8.6.13=h2797004_0 - xorg-fixesproto=5.0=h7f98852_1002 - - xorg-libsm=1.2.3=hd9c2040_1000 + - xorg-libsm=1.2.4=h7391055_0 - zeromq=4.3.4=h9c3ff4c_1 - zlib=1.2.13=hd590300_5 - - zstd=1.5.2=hfc55251_7 + - zstd=1.5.5=hfc55251_0 - autoconf=2.71=pl5321h2b4cb7a_1 - - boost-cpp=1.82.0=he19a28c_1 - - brotli-bin=1.0.9=h166bdaf_9 + - brotli-bin=1.1.0=hd590300_1 - bwidget=1.9.14=ha770c72_1 - ecl=21.2.1=h9d73b02_2 - - fplll=5.4.4=h8780c30_0 - - freetype=2.12.1=hca18f0e_1 + - 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_1 - - gcc_linux-64=12.3.0=h76fc315_1 + - 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_0 - - gxx_impl_linux-64=12.3.0=he2b93b0_0 + - gfortran_impl_linux-64=12.3.0=hfcedea8_2 + - gxx_impl_linux-64=12.3.0=he2b93b0_2 - igraph=0.7.1=0 - - krb5=1.20.1=h81ceb04_0 - - libcblas=3.9.0=17_linux64_openblas + - krb5=1.21.2=h659d440_0 + - libboost=1.82.0=h6fcfa73_6 - libflint=2.9.0=h2f819a4_ntl_100 - libgcrypt=1.10.1=h166bdaf_0 - - libglib=2.76.4=hebfc3b9_0 - - libhwloc=2.9.1=nocuda_h7313eea_6 - - liblapack=3.9.0=17_linux64_openblas - - libllvm16=16.0.6=h5cf9203_1 - - libsndfile=1.2.0=hb75c966_0 - - libtiff=4.5.1=h8b53f26_0 - - libudev1=253=h0b41bf4_1 - - llvm-openmp=16.0.6=h4dfa4b3_0 + - libglib=2.78.0=hebfc3b9_0 + - libhwloc=2.9.3=default_h554bfaf_1009 + - libllvm15=15.0.7=h5cf9203_3 + - libopenblas=0.3.24=pthreads_h413a1c8_0 + - libsndfile=1.2.2=hc60ed4a_1 + - libtiff=4.6.0=h29866fb_1 + - libudev1=254=h3f72095_0 + - llvm-openmp=17.0.2=h4dfa4b3_0 - m4ri=20140914=h7ca028e_1005 - mpc=1.3.1=hfe3b2da_0 - mpfi=1.5.4=h9f54685_1001 - - mysql-libs=8.0.33=hca2cd23_2 - - nss=3.89=he45b914_0 + - mysql-libs=8.0.33=hca2cd23_5 + - nss=3.94=h1d7d5a4_0 - pandoc=3.1.3=h32600fe_0 - pari=2.15.4=h4d4ae9b_2_pthread - ppl=1.2=h6ec01c2_1006 - - python=3.10.12=hd12c33a_0_cpython - - sqlite=3.42.0=h2c6b66d_0 + - python=3.9.18=h0755675_0_cpython + - qd=2.3.22=h2cc385e_1004 + - sqlite=3.43.0=h2c6b66d_0 - tachyon=0.99b6=0 - texinfo=7.0=pl5321h0f457ee_0 - - tktable=2.10=hb7b940f_3 + - 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 @@ -206,273 +200,283 @@ dependencies: - automake=1.16.5=pl5321ha770c72_0 - backcall=0.2.0=pyh9f0ad1d_0 - backports=1.0=pyhd8ed1ab_3 - - backports.zoneinfo=0.2.1=py310hff52083_7 - - brotli=1.0.9=h166bdaf_9 - - brotli-python=1.0.9=py310hd8f1fbe_9 + - 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.1=pyhd8ed1ab_0 - certifi=2023.7.22=pyhd8ed1ab_0 - - chardet=5.1.0=py310hff52083_0 - - charset-normalizer=3.2.0=pyhd8ed1ab_0 + - chardet=5.2.0=py39hf3d152e_1 + - charset-normalizer=3.3.0=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_0 - - cycler=0.11.0=pyhd8ed1ab_0 - - cysignals=1.11.2=py310h945e7c7_2 - - cython=0.29.36=py310hc6cd4ac_0 + - cycler=0.12.1=pyhd8ed1ab_0 + - cysignals=1.11.2=py39h1ce0973_3 + - cython=3.0.2=py39h3d6467e_2 - dbus=1.13.6=h5008d03_3 - - debugpy=1.6.7=py310heca2aa9_0 + - debugpy=1.8.0=py39h3d6467e_1 - decorator=5.1.1=pyhd8ed1ab_0 - defusedxml=0.7.1=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - - docutils=0.19=py310hff52083_1 - - dsdp=5.8=hd9d9efa_1203 + - docutils=0.20.1=py39hf3d152e_2 - eclib=20230424=hdef1efb_0 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 - - exceptiongroup=1.1.2=pyhd8ed1ab_0 + - exceptiongroup=1.1.3=pyhd8ed1ab_0 - execnet=2.0.2=pyhd8ed1ab_0 - executing=1.2.0=pyhd8ed1ab_0 - - fflas-ffpack=2.4.3=h912ac81_2 - - filelock=3.12.2=pyhd8ed1ab_0 + - filelock=3.12.4=pyhd8ed1ab_0 - flit-core=3.9.0=pyhd8ed1ab_0 - fontconfig=2.14.2=h14ed4e7_0 + - fplll=5.4.4=h8780c30_0 - gap-defaults=4.12.2=ha770c72_3 - gast=0.5.4=pyhd8ed1ab_0 - - gfortran=12.3.0=h499e0f7_1 - - gfortran_linux-64=12.3.0=h7fe76b4_1 - - glib-tools=2.76.4=hfc55251_0 - - gmpy2=2.1.2=py310h3ec546c_1 - - gsl=2.7=he838d99_0 - - gxx=12.3.0=h8d2909c_1 - - gxx_linux-64=12.3.0=h8a814eb_1 + - gfortran=12.3.0=h499e0f7_2 + - gfortran_linux-64=12.3.0=h7fe76b4_2 + - glib-tools=2.78.0=hfc55251_0 + - gmpy2=2.1.2=py39h376b7d2_1 + - gxx_linux-64=12.3.0=h8a814eb_2 - idna=3.4=pyhd8ed1ab_0 - imagesize=1.4.1=pyhd8ed1ab_0 - - iml=1.0.5=hd75c201_1003 - iniconfig=2.0.0=pyhd8ed1ab_0 - ipython_genutils=0.2.0=py_1 - json5=0.9.14=pyhd8ed1ab_0 - - jupyterlab_widgets=1.1.1=pyhd8ed1ab_0 - - kiwisolver=1.4.4=py310hbf28c38_1 + - jsonpointer=2.4=py39hf3d152e_3 + - jupyterlab_widgets=1.1.7=pyhd8ed1ab_0 + - kiwisolver=1.4.5=py39h7633fee_1 - lcalc=2.0.5=h6a8a7c6_1 - - lcms2=2.15=haa2dc70_1 - - libbrial=1.2.12=h138cd66_0 - - libclang13=16.0.6=default_h4d60ac6_1 - - libcups=2.3.3=h36d4200_3 - - libcurl=8.1.2=h409715c_0 + - lcms2=2.15=h7f713cb_2 + - libblas=3.9.0=18_linux64_openblas + - libboost-devel=1.82.0=h00ab1b0_6 + - libbrial=1.2.12=h3155cbd_1 + - libclang13=15.0.7=default_h9986a30_3 + - libcups=2.3.3=h4637d8d_4 + - libcurl=8.3.0=hca28451_0 - libfido2=1.13.0=h2e5b2a7_0 - - liblapacke=3.9.0=17_linux64_openblas - - libpq=15.3=hbcd7760_1 - - libsystemd0=253=h8c4010b_1 - - libwebp=1.3.1=hbf2b3c1_0 + - libpq=15.4=hfc447b1_2 + - libsystemd0=254=h3516f8a_0 + - libwebp=1.3.2=hdffd6e0_0 - m4rie=20150908=h7ca028e_1001 - - markupsafe=2.1.3=py310h2372a71_0 + - markupsafe=2.1.3=py39hd1e30aa_1 - maxima=5.45.0=h9d73b02_3 - - mistune=3.0.0=pyhd8ed1ab_0 + - mistune=3.0.1=pyhd8ed1ab_0 - mpmath=1.3.0=pyhd8ed1ab_0 - munkres=1.1.4=pyh9f0ad1d_0 - nest-asyncio=1.5.6=pyhd8ed1ab_0 - networkx=2.8.8=pyhd8ed1ab_0 - - numpy=1.25.1=py310ha4c1d20_0 - - openjpeg=2.5.0=hfec8fc6_2 - - packaging=23.1=pyhd8ed1ab_0 + - openblas=0.3.24=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.11.1=pyhd8ed1ab_0 + - pathspec=0.11.2=pyhd8ed1ab_0 - pickleshare=0.7.5=py_1003 - pkgconfig=1.5.5=pyhd8ed1ab_4 - - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_0 - - pluggy=1.2.0=pyhd8ed1ab_0 + - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 + - pluggy=1.3.0=pyhd8ed1ab_0 - ply=3.11=py_1 - prometheus_client=0.17.1=pyhd8ed1ab_0 - - psutil=5.9.5=py310h1fa729e_0 + - psutil=5.9.5=py39hd1e30aa_1 - 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_0 - - pycodestyle=2.10.0=pyhd8ed1ab_0 + - pybind11-global=2.11.1=py39h7633fee_2 + - pycodestyle=2.11.0=pyhd8ed1ab_0 - pycparser=2.21=pyhd8ed1ab_0 - - pygments=2.15.1=pyhd8ed1ab_0 - - pyparsing=3.0.9=pyhd8ed1ab_0 - - pyrsistent=0.19.3=py310h1fa729e_0 + - pygments=2.16.1=pyhd8ed1ab_0 + - pyparsing=3.1.1=pyhd8ed1ab_0 + - pyrsistent=0.19.3=py39hd1e30aa_1 - pysocks=1.7.1=pyha2e5f31_6 - pyspellchecker=0.7.2=pyhd8ed1ab_0 - - python-fastjsonschema=2.18.0=pyhd8ed1ab_0 + - python-fastjsonschema=2.18.1=pyhd8ed1ab_0 - python-json-logger=2.0.7=pyhd8ed1ab_0 - - python-lrcalc=2.1=py310hd8f1fbe_5 + - python-lrcalc=2.1=py39h5a03fae_5 - python-tzdata=2023.3=pyhd8ed1ab_0 - - pytz=2023.3=pyhd8ed1ab_0 - - pyyaml=6.0=py310h5764c6d_5 - - pyzmq=25.1.0=py310h5bbb5d0_0 + - pytz=2023.3.post1=pyhd8ed1ab_0 + - pyyaml=6.0.1=py39hd1e30aa_1 + - pyzmq=25.1.1=py39hb257651_1 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.9.2=py310hcb5633a_0 + - rpds-py=0.10.4=py39h9fdd4d6_0 - rw=0.8=h516909a_1001 - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 - sagetex=3.6.1=pyhd8ed1ab_0 - send2trash=1.8.2=pyh41d4057_0 - - setuptools=63.4.3=py310hff52083_0 + - setuptools=63.4.3=py39hf3d152e_0 - simplegeneric=0.8.1=py_1 - singular=4.2.1.p3=h1ea75ed_2 - six=1.16.0=pyh6c4a22f_0 - sniffio=1.3.0=pyhd8ed1ab_0 - snowballstemmer=2.2.0=pyhd8ed1ab_0 - - soupsieve=2.3.2.post1=pyhd8ed1ab_0 - - sphinxcontrib-applehelp=1.0.4=pyhd8ed1ab_0 - - sphinxcontrib-devhelp=1.0.2=py_0 - - sphinxcontrib-htmlhelp=2.0.1=pyhd8ed1ab_0 - - sphinxcontrib-jsmath=1.0.1=py_0 - - sphinxcontrib-qthelp=1.0.3=py_0 - - sphinxcontrib-serializinghtml=1.1.5=pyhd8ed1ab_2 + - soupsieve=2.5=pyhd8ed1ab_1 + - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_0 - sympow=2.023.6=hc6ab17c_3 - - tbb=2021.9.0=hf52228f_0 + - tbb=2021.10.0=h00ab1b0_1 - toml=0.10.2=pyhd8ed1ab_0 - tomli=2.0.1=pyhd8ed1ab_0 - - tomlkit=0.11.8=pyha770c72_0 - - tornado=6.3.2=py310h2372a71_0 - - traitlets=5.9.0=pyhd8ed1ab_0 - - trove-classifiers=2023.7.6=pyhd8ed1ab_0 - - typing_extensions=4.7.1=pyha770c72_0 + - tornado=6.3.3=py39hd1e30aa_1 + - traitlets=5.11.2=pyhd8ed1ab_0 + - trove-classifiers=2023.9.19=pyhd8ed1ab_0 + - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 + - typing_extensions=4.8.0=pyha770c72_0 - typing_utils=0.1.0=pyhd8ed1ab_0 - - tzlocal=5.0.1=py310hff52083_0 - - unicodedata2=15.0.0=py310h5764c6d_0 + - tzlocal=5.1=py39hf3d152e_0 + - unicodedata2=15.1.0=py39hd1e30aa_0 + - uri-template=1.3.0=pyhd8ed1ab_0 - vcversioner=2.16.0.0=py_1 - - webencodings=0.5.1=py_1 - - websocket-client=1.6.1=pyhd8ed1ab_0 - - wheel=0.41.0=pyhd8ed1ab_0 + - webcolors=1.13=pyhd8ed1ab_0 + - webencodings=0.5.1=pyhd8ed1ab_2 + - websocket-client=1.6.4=pyhd8ed1ab_0 + - wheel=0.41.2=pyhd8ed1ab_0 - xcb-util-image=0.4.0=h8ee46fc_1 - - xkeyboard-config=2.39=hd590300_0 + - 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_0 - - zipp=3.16.2=pyhd8ed1ab_0 - - anyio=3.7.1=pyhd8ed1ab_0 - - asttokens=2.2.1=pyhd8ed1ab_0 - - async-lru=2.0.3=pyhd8ed1ab_0 + - xorg-libxt=1.3.0=hd590300_1 + - zipp=3.17.0=pyhd8ed1ab_0 + - anyio=4.0.0=pyhd8ed1ab_0 + - asttokens=2.4.0=pyhd8ed1ab_0 + - async-lru=2.0.4=pyhd8ed1ab_0 - babel=2.12.1=pyhd8ed1ab_1 - backports.functools_lru_cache=1.6.5=pyhd8ed1ab_0 - beautifulsoup4=4.12.2=pyha770c72_0 - beniget=0.4.1=pyhd8ed1ab_0 - - blas-devel=3.9.0=17_linux64_openblas - - bleach=6.0.0=pyhd8ed1ab_0 - - brial=1.2.12=pyha3edaa6_0 - - cairo=1.16.0=hbbf8b49_1016 + - bleach=6.1.0=pyhd8ed1ab_0 + - boost-cpp=1.82.0=h44aadfe_6 + - brial=1.2.12=pyh694c41f_1 + - cached-property=1.5.2=hd8ed1ab_1 + - cairo=1.16.0=h0c91306_1017 - cattrs=23.1.2=pyhd8ed1ab_0 - - cffi=1.15.1=py310h255011f_3 - - cmake=3.26.4=hcfe8598_0 - - comm=0.1.3=pyhd8ed1ab_0 - - contourpy=1.1.0=py310hd41b1e2_0 + - cffi=1.16.0=py39h7a31438_0 + - cmake=3.27.6=hcfe8598_0 + - comm=0.1.4=pyhd8ed1ab_0 - cppy=1.2.1=pyhd8ed1ab_0 - - curl=8.1.2=h409715c_0 - - cxx-compiler=1.6.0=h00ab1b0_0 - - cypari2=2.1.3=py310h14ed79e_2 + - curl=8.3.0=hca28451_0 + - cypari2=2.1.3=py39h1698a45_2 - deprecation=2.1.0=pyh9f0ad1d_0 - - fonttools=4.41.1=py310h2372a71_0 + - fonttools=4.43.1=py39hd1e30aa_0 - fortran-compiler=1.6.0=heb67821_0 - - fpylll=0.5.9=py310h0dadf69_1 - - giac=1.9.0.21=h673759e_1 - - glib=2.76.4=hfc55251_0 - - html5lib=1.1=pyh9f0ad1d_0 + - glib=2.78.0=hfc55251_0 - importlib-metadata=6.8.0=pyha770c72_0 - - importlib_resources=6.0.0=pyhd8ed1ab_1 - - jedi=0.18.2=pyhd8ed1ab_0 + - importlib_resources=6.1.0=pyhd8ed1ab_0 + - jedi=0.19.1=pyhd8ed1ab_0 - jinja2=3.1.2=pyhd8ed1ab_1 - jupyterlab_pygments=0.2.2=pyhd8ed1ab_0 - - libclang=16.0.6=default_h1cdf331_1 - - libgd=2.3.3=hfa28ad5_6 - - libxkbcommon=1.5.0=h5d7e998_3 - - linbox=1.6.3=h9d78c56_7 + - libcblas=3.9.0=18_linux64_openblas + - libclang=15.0.7=default_h7634d5b_3 + - libgd=2.3.3=he9388d3_8 + - liblapack=3.9.0=18_linux64_openblas + - libxkbcommon=1.6.0=h5d7e998_0 - matplotlib-inline=0.1.6=pyhd8ed1ab_0 - - memory-allocator=0.1.2=py310h5764c6d_2 - - openssh=9.3p1=hbcd7760_1 - - overrides=7.3.1=pyhd8ed1ab_0 + - memory-allocator=0.1.2=py39hb9d737c_2 + - openssh=9.3p1=h2d3b35a_2 + - overrides=7.4.0=pyhd8ed1ab_0 - pexpect=4.8.0=pyh1a96a4e_2 - - pillow=10.0.0=py310h582fbeb_0 + - pillow=10.0.1=py39h444a776_1 - pip=23.2.1=pyhd8ed1ab_0 - - pplpy=0.8.7=py310h28f6eb6_0 - - primecountpy=0.1.0=py310hd41b1e2_3 - - pulseaudio-client=16.1=hb77b528_4 - - pybind11=2.11.1=py310hd41b1e2_0 - - pyproject-api=1.5.3=pyhd8ed1ab_0 - - pytest=7.4.0=pyhd8ed1ab_0 + - pplpy=0.8.7=py39hba3e9e5_0 + - primecountpy=0.1.0=py39h7633fee_4 + - pulseaudio-client=16.1=hb77b528_5 + - pybind11=2.11.1=py39h7633fee_2 + - pyproject-api=1.6.1=pyhd8ed1ab_0 + - pytest=7.4.2=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - - pytz-deprecation-shim=0.1.0.post0=py310hff52083_3 - - referencing=0.30.0=pyhd8ed1ab_0 + - pytz-deprecation-shim=0.1.0.post0=py39hf3d152e_4 + - referencing=0.30.2=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - sagemath-db-conway-polynomials=0.5.0=ha878542_1 - - sip=6.7.9=py310hc6cd4ac_0 - - suitesparse=5.10.1=h9e50725_1 + - sip=6.7.11=py39h3d6467e_1 - sympy=1.12=pypyh9d50eac_103 - terminado=0.17.1=pyh41d4057_0 - tinycss2=1.2.1=pyhd8ed1ab_0 - - typing-extensions=4.7.1=hd8ed1ab_0 - - urllib3=2.0.4=pyhd8ed1ab_0 + - typing-extensions=4.8.0=hd8ed1ab_0 + - urllib3=2.0.6=pyhd8ed1ab_0 - xorg-libxi=1.7.10=h7f98852_0 - - argon2-cffi-bindings=21.2.0=py310h5764c6d_3 - - blas=2.117=openblas - - compilers=1.6.0=ha770c72_0 - - cvxopt=1.3.1=py310h14a12bf_0 - - git=2.41.0=pl5321h86e50cf_0 - - gstreamer=1.22.3=h977cf35_1 - - harfbuzz=7.3.0=hdb3a94d_0 + - argon2-cffi-bindings=21.2.0=py39hd1e30aa_4 + - arrow=1.3.0=pyhd8ed1ab_0 + - dsdp=5.8=hd9d9efa_1203 + - fflas-ffpack=2.4.3=h912ac81_2 + - fqdn=1.5.1=pyhd8ed1ab_0 + - git=2.42.0=pl5321h86e50cf_0 + - gsl=2.7=he838d99_0 + - gstreamer=1.22.6=h98fc4e7_2 + - harfbuzz=8.2.1=h3d44ed6_0 - hatchling=1.18.0=pyhd8ed1ab_0 - - importlib-resources=6.0.0=pyhd8ed1ab_1 + - iml=1.0.5=hd75c201_1003 + - importlib-resources=6.1.0=pyhd8ed1ab_0 - importlib_metadata=6.8.0=hd8ed1ab_0 - jsonschema-specifications=2023.7.1=pyhd8ed1ab_0 - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1 - - lsprotocol=2023.0.0a2=pyhd8ed1ab_0 - - matplotlib-base=3.7.2=py310hf38f957_0 - - platformdirs=3.9.1=pyhd8ed1ab_0 - - poetry-core=1.6.1=pyhd8ed1ab_0 - - pyqt5-sip=12.11.0=py310heca2aa9_3 + - liblapacke=3.9.0=18_linux64_openblas + - lsprotocol=2023.0.0b1=pyhd8ed1ab_0 + - numpy=1.26.0=py39h474f0d3_0 + - platformdirs=3.11.0=pyhd8ed1ab_0 + - pyqt5-sip=12.12.2=py39h3d6467e_5 - pytest-xdist=3.3.1=pyhd8ed1ab_0 - - pythran=0.13.1=py310hfb6f7a9_0 - requests=2.31.0=pyhd8ed1ab_0 - - setuptools-scm=7.1.0=pyhd8ed1ab_0 + - setuptools-scm=8.0.4=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 - - wcwidth=0.2.6=pyhd8ed1ab_0 + - suitesparse=5.10.1=h9e50725_1 + - wcwidth=0.2.8=pyhd8ed1ab_0 - xorg-libxtst=1.2.3=h7f98852_1002 - - argon2-cffi=21.3.0=pyhd8ed1ab_0 - - gst-plugins-base=1.22.3=h938bd60_1 - - jsonschema=4.18.4=pyhd8ed1ab_0 - - jupyter_core=5.3.1=py310hff52083_0 - - openjdk=17.0.3=h19c1b89_7 - - pango=1.50.14=heaa33ce_1 - - pooch=1.7.0=pyha770c72_3 + - argon2-cffi=23.1.0=pyhd8ed1ab_0 + - blas-devel=3.9.0=18_linux64_openblas + - contourpy=1.1.1=py39h7633fee_1 + - cvxopt=1.3.2=py39hef4d4b4_1 + - fpylll=0.5.9=py39hf60ab73_1 + - giac=1.9.0.21=h673759e_1 + - gst-plugins-base=1.22.6=h8e1006c_2 + - isoduration=20.11.0=pyhd8ed1ab_0 + - jsonschema=4.19.1=pyhd8ed1ab_0 + - jupyter_core=5.3.2=py39hf3d152e_0 + - linbox=1.6.3=h9d78c56_7 + - openjdk=20.0.2=hfea2f88_1 + - pango=1.50.14=ha41ecd1_2 + - pooch=1.7.0=pyhd8ed1ab_4 - prompt-toolkit=3.0.39=pyha770c72_0 - - setuptools_scm=7.1.0=hd8ed1ab_0 - - sphinx=6.2.1=pyhd8ed1ab_0 + - pythran=0.14.0=py39hda80f44_1 + - setuptools_scm=8.0.4=hd8ed1ab_0 - typeguard=3.0.2=pyhd8ed1ab_0 - - virtualenv=20.24.1=pyhd8ed1ab_0 + - virtualenv=20.24.4=pyhd8ed1ab_0 + - blas=2.118=openblas - jmol=14.32.10=ha770c72_0 - - jupyter_client=8.3.0=pyhd8ed1ab_0 - - jupyter_events=0.6.3=pyhd8ed1ab_0 - - nbformat=5.9.1=pyhd8ed1ab_0 + - jsonschema-with-format-nongpl=4.19.1=pyhd8ed1ab_0 + - jupyter_client=8.3.1=pyhd8ed1ab_0 + - matplotlib-base=3.8.0=py39he9076e7_1 + - nbformat=5.9.2=pyhd8ed1ab_0 - prompt_toolkit=3.0.39=hd8ed1ab_0 - - pygls=1.0.2=pyhd8ed1ab_0 - - qt-main=5.15.8=h01ceb2d_12 - - r-base=4.3.1=hfabd6f2_1 - - scipy=1.10.1=py310ha4c1d20_3 - - sphinx-basic-ng=1.0.0b2=pyhd8ed1ab_0 - - sphinx-copybutton=0.5.2=pyhd8ed1ab_0 - - sphinxcontrib-websupport=1.2.4=pyhd8ed1ab_1 - - tox=4.6.4=pyhd8ed1ab_0 - - esbonio=0.16.1=pyhd8ed1ab_0 - - furo=2023.5.20=pyhd8ed1ab_1 - - ipython=8.14.0=pyh41d4057_0 + - pygls=1.1.1=pyhd8ed1ab_0 + - qt-main=5.15.8=hc47bfe8_16 + - r-base=4.3.1=h639d9d3_5 + - scipy=1.10.1=py39h6183b62_3 + - tox=4.11.3=pyhd8ed1ab_0 + - ipython=8.16.1=pyh0d859eb_0 + - jupyter_events=0.7.0=pyhd8ed1ab_2 - nbclient=0.8.0=pyhd8ed1ab_0 - - pyqt=5.15.7=py310hab646b1_3 - - rpy2=3.5.11=py310r43h278f3c1_2 - - ipykernel=6.24.0=pyh71e2992_0 - - matplotlib=3.7.2=py310hff52083_0 - - nbconvert-core=7.7.2=pyhd8ed1ab_0 - - jupyter_server=2.7.0=pyhd8ed1ab_0 - - nbconvert-pandoc=7.7.2=pyhd8ed1ab_0 + - pyqt=5.15.9=py39h52134e7_5 + - rpy2=3.5.11=py39r43h44dd56e_3 + - ipykernel=6.25.2=pyh2140261_0 + - matplotlib=3.8.0=py39hf3d152e_1 + - nbconvert-core=7.9.2=pyhd8ed1ab_0 + - jupyter_server=2.7.3=pyhd8ed1ab_1 + - nbconvert-pandoc=7.9.2=pyhd8ed1ab_0 - jupyter-lsp=2.2.0=pyhd8ed1ab_0 - - jupyterlab_server=2.24.0=pyhd8ed1ab_0 - - nbconvert=7.7.2=pyhd8ed1ab_0 + - jupyterlab_server=2.25.0=pyhd8ed1ab_0 + - nbconvert=7.9.2=pyhd8ed1ab_0 - notebook-shim=0.2.3=pyhd8ed1ab_0 - - jupyterlab=4.0.3=pyhd8ed1ab_0 - - notebook=7.0.0=pyhd8ed1ab_0 - - widgetsnbextension=3.6.4=pyhd8ed1ab_0 - - ipywidgets=7.7.5=pyhd8ed1ab_0 + - jupyterlab=4.0.6=pyhd8ed1ab_0 + - notebook=7.0.4=pyhd8ed1ab_0 + - widgetsnbextension=3.6.6=pyhd8ed1ab_0 + - ipywidgets=7.8.0=pyhd8ed1ab_0 - jupyter-jsmol=2022.1.0=pyhd8ed1ab_0 - - jupyter_sphinx=0.4.0=py310hff52083_1 + - esbonio=0.16.1=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-dev-3.9-macos.yml b/src/environment-dev-3.9-macos.yml index e9bbfd8d10a..6de9b881461 100644 --- a/src/environment-dev-3.9-macos.yml +++ b/src/environment-dev-3.9-macos.yml @@ -1,12 +1,11 @@ # Generated by conda-lock. # platform: osx-64 -# input_hash: 0b14fa06d655e7683981c27f658f33c24850625df4dd94351391308bebc4acf1 +# input_hash: 8964dc3816a1a8f02bd15584b85322b280d9570fb653054220117e384f3497ed channels: - conda-forge dependencies: - _r-mutex=1.0.1=anacondar_1 - - bc=1.07.1=h0d85af4_0 - bzip2=1.0.8=h0d85af4_4 - c-ares=1.19.1=h0dc2134_0 - ca-certificates=2023.7.22=h8857fd0_0 @@ -16,29 +15,30 @@ dependencies: - font-ttf-source-code-pro=2.038=h77eed37_0 - font-ttf-ubuntu=0.83=hab24e00_0 - fribidi=1.0.10=hbcb3906_0 - - gh=2.32.1=h990441c_0 + - gh=2.36.0=h990441c_0 - giflib=5.2.1=hb7f2c08_3 - - icu=72.1=h7336db1_0 + - icu=73.2=hf5e326d_0 - libatomic_ops=7.6.14=hb7f2c08_0 - - libbrotlicommon=1.0.9=hb7f2c08_9 + - libboost-headers=1.82.0=h694c41f_6 + - libbrotlicommon=1.1.0=h0dc2134_1 - libcxx=16.0.6=hd57cbcb_0 - - libdeflate=1.18=hac1461d_0 + - libdeflate=1.19=ha4e1b8e_0 - libev=4.33=haf1e3a3_1 - libexpat=2.5.0=hf0c8a7f_1 - libffi=3.4.2=h0d85af4_5 - - libgfortran-devel_osx-64=12.2.0=hf0fd499_32 + - libgfortran-devel_osx-64=12.3.0=h0b6f5ec_1 - libiconv=1.17=hac89ed1_0 - - libjpeg-turbo=2.1.5.1=hb7f2c08_0 + - libjpeg-turbo=3.0.0=h0dc2134_1 - libsodium=1.0.18=hbcb3906_1 - libtool=2.4.7=hf0c8a7f_0 - - libuv=1.44.2=hac89ed1_0 - - libwebp-base=1.3.1=h0dc2134_0 + - libuv=1.46.0=h0c2f820_0 + - libwebp-base=1.3.2=h0dc2134_0 - libzlib=1.2.13=h8a1eda9_5 - - llvm-openmp=16.0.6=hff08bdf_0 + - llvm-openmp=17.0.2=hff08bdf_0 - m4=1.4.18=haf1e3a3_1001 - make=4.3=h22f3db7_1 - mathjax=3.2.2=h694c41f_0 - - metis=5.1.1=he965462_0 + - metis=5.1.0=he965462_1007 - nauty=2.7.2=h0d85af4_0 - ncurses=6.4=hf0c8a7f_0 - palp=2.20=hbcb3906_0 @@ -48,11 +48,11 @@ dependencies: - pari-seadata-small=0.0.20090618=0 - patch=2.7.6=hbcf498f_1002 - perl=5.32.1=4_h0dc2134_perl5 - - pixman=0.40.0=hbcb3906_0 - planarity=3.0.0.5=hbcb3906_1002 - pthread-stubs=0.4=hc929b4f_1001 - - python_abi=3.10=3_cp310 - - rhash=1.4.3=hac89ed1_0 + - python_abi=3.9=4_cp39 + - rhash=1.4.4=h0dc2134_0 + - rw=0.7=1 - sagemath-db-combinatorial-designs=20140630=1 - sagemath-db-graphs=20210214=hd8ed1ab_0 - sagemath-db-polytopes=20170220=1 @@ -74,97 +74,97 @@ dependencies: - isl=0.25=hb486fe8_0 - lerc=4.0.0=hb486fe8_0 - libbraiding=1.1=h2e338ed_0 - - libbrotlidec=1.0.9=hb7f2c08_9 - - libbrotlienc=1.0.9=hb7f2c08_9 + - libbrotlidec=1.1.0=h0dc2134_1 + - libbrotlienc=1.1.0=h0dc2134_1 - libcbor=0.10.2=hf0c8a7f_0 - libedit=3.1.20191231=h0678c8f_2 - - libgfortran5=12.3.0=hbd3c1fe_1 + - libgfortran5=13.2.0=h2873a65_1 - libpng=1.6.39=ha978bb4_0 - - libsqlite=3.42.0=h58db7d2_0 + - libsqlite=3.43.0=h58db7d2_0 - libxcb=1.15=hb7f2c08_0 - - libxml2=2.10.4=h554bb67_0 + - libxml2=2.11.5=h3346baf_1 - lrcalc=2.1=hf0c8a7f_5 - ninja=1.11.1=hb8565cd_0 - - openjdk=20.0.0=h7d26f99_0 - - openssl=3.1.1=h8a1eda9_1 + - openjdk=20.0.2=h7d26f99_2 + - openssl=3.1.3=h8a1eda9_0 - pandoc=3.1.3=h9d075a6_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 - readline=8.2=h9e318b2_1 - symmetrica=3.0.1=hf0c8a7f_0 - tapi=1100.0.11=h9ce4665_0 - - tar=1.34=hcb2f6ea_1 - - tbb=2021.9.0=hb8565cd_0 + - tbb=2021.10.0=h1c7c39f_1 - texinfo=7.0=pl5321hc47821c_0 - threejs-sage=122=hd8ed1ab_2 - - tk=8.6.12=h5dbffcc_0 + - tk=8.6.13=hef22860_0 - zeromq=4.3.4=he49afe7_1 - zlib=1.2.13=h8a1eda9_5 - - zstd=1.5.2=h829000d_7 + - zstd=1.5.5=h829000d_0 - automake=1.16.5=pl5321h694c41f_0 - - boost-cpp=1.82.0=hd754db5_1 - - brotli-bin=1.0.9=hb7f2c08_9 + - brotli-bin=1.1.0=h0dc2134_1 - bwidget=1.9.14=h694c41f_1 - cddlib=1!0.94m=h0f52abe_0 - ecl=21.2.1=hd029580_2 - ecm=7.0.4=h343d7f2_1002 - fonts-conda-ecosystem=1=0 - - freetype=2.12.1=h3f81eb7_1 + - freetype=2.12.1=h60636b9_2 - gap-core=4.12.2=hc16eb5f_3 - givaro=4.1.1=h0a799c6_3 - glpk=5.0=h3cb5acd_0 - jmol=14.32.9=h694c41f_0 - - krb5=1.20.1=h049b76e_0 + - krb5=1.21.2=hb884880_0 + - libboost=1.82.0=hf0c313a_6 - libfido2=1.13.0=h14e1388_0 - - libgfortran=5.0.0=12_3_0_h97931a8_1 - - libglib=2.76.4=hc62aa5d_0 + - libgfortran=5.0.0=13_2_0_h97931a8_1 + - libglib=2.78.0=hc62aa5d_0 - libhomfly=1.02r6=hc929b4f_0 - - libllvm15=15.0.7=h7001e86_1 + - libllvm16=16.0.6=he4b1e75_2 - libnghttp2=1.52.0=he2ab024_0 - libssh2=1.11.0=hd019ec5_0 - - libtiff=4.5.1=hf955e92_0 + - libtiff=4.6.0=h684deea_2 - m4ri=20140914=h3f75d11_1005 - mpfr=4.2.0=h4f9bd69_0 - ntl=11.4.3=h0ab3c2f_1 - pari=2.15.4=h93f793c_2_pthread - primecount=7.6=ha894c9a_0 - - python=3.10.12=had23ca6_0_cpython + - python=3.9.18=h07e1443_0_cpython - sigtool=0.1.3=h88f4db0_0 - - sqlite=3.42.0=h2b0dec6_0 + - sqlite=3.43.0=h2b0dec6_0 - tachyon=0.99b6=0 - - tktable=2.10=h49f0cf7_3 + - tktable=2.10=ha166976_5 - alabaster=0.7.13=pyhd8ed1ab_0 - appdirs=1.4.4=pyh9f0ad1d_0 - appnope=0.1.3=pyhd8ed1ab_0 - attrs=23.1.0=pyh71513ae_1 - backcall=0.2.0=pyh9f0ad1d_0 - backports=1.0=pyhd8ed1ab_3 - - backports.zoneinfo=0.2.1=py310h2ec42d9_7 - - brotli=1.0.9=hb7f2c08_9 - - brotli-python=1.0.9=py310h7a76584_9 + - brotli=1.1.0=h0dc2134_1 + - brotli-python=1.1.0=py39h840bb9f_1 + - cached_property=1.5.2=pyha770c72_1 - cachetools=5.3.1=pyhd8ed1ab_0 - certifi=2023.7.22=pyhd8ed1ab_0 - - chardet=5.1.0=py310h2ec42d9_0 - - charset-normalizer=3.2.0=pyhd8ed1ab_0 + - chardet=5.2.0=py39h6e9494a_1 + - charset-normalizer=3.3.0=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_0 - - cycler=0.11.0=pyhd8ed1ab_0 - - cysignals=1.11.2=py310h8c82e65_2 - - cython=0.29.36=py310h9e9d8ca_0 - - debugpy=1.6.7=py310h7a76584_0 + - cycler=0.12.1=pyhd8ed1ab_0 + - cysignals=1.11.2=py39hf6ae30e_3 + - cython=3.0.2=py39h840bb9f_2 + - debugpy=1.8.0=py39h840bb9f_1 - decorator=5.1.1=pyhd8ed1ab_0 - defusedxml=0.7.1=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - - docutils=0.19=py310h2ec42d9_1 + - docutils=0.20.1=py39h6e9494a_2 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 - - exceptiongroup=1.1.2=pyhd8ed1ab_0 + - exceptiongroup=1.1.3=pyhd8ed1ab_0 - execnet=2.0.2=pyhd8ed1ab_0 - executing=1.2.0=pyhd8ed1ab_0 - fftw=3.3.10=nompi_h4fa670e_108 - - filelock=3.12.2=pyhd8ed1ab_0 + - filelock=3.12.4=pyhd8ed1ab_0 - flit-core=3.9.0=pyhd8ed1ab_0 - fontconfig=2.14.2=h5bb23bf_0 - gap-defaults=4.12.2=h694c41f_3 @@ -175,242 +175,243 @@ dependencies: - iniconfig=2.0.0=pyhd8ed1ab_0 - ipython_genutils=0.2.0=py_1 - json5=0.9.14=pyhd8ed1ab_0 - - jupyterlab_widgets=1.1.1=pyhd8ed1ab_0 - - kiwisolver=1.4.4=py310ha23aa8a_1 + - jsonpointer=2.4=py39h6e9494a_3 + - jupyterlab_widgets=1.1.7=pyhd8ed1ab_0 + - kiwisolver=1.4.5=py39h8ee36c8_1 - lcalc=2.0.5=h3a941db_1 - - lcms2=2.15=h2dcdeff_1 - - ld64_osx-64=609=h8ce0179_13 - - libbrial=1.2.12=h8f704d5_0 - - libclang-cpp15=15.0.7=default_hdb78580_2 - - libcurl=8.1.2=hbee3ae8_0 + - lcms2=2.15=hd6ba6f3_3 + - ld64_osx-64=609=ha20a434_14 + - libboost-devel=1.82.0=h1c7c39f_6 + - libbrial=1.2.12=h8d08345_1 + - libclang-cpp16=16.0.6=default_h762fdd7_1 + - libcurl=8.3.0=h5f667d7_0 - libflint=2.9.0=hfd2f71f_ntl_100 - - libopenblas=0.3.23=openmp_h429af6e_0 - - libwebp=1.3.1=hc961f54_0 - - llvm-tools=15.0.7=h7001e86_1 + - libopenblas=0.3.24=openmp_h48a4ad5_0 + - libwebp=1.3.2=h44782d1_1 + - llvm-tools=16.0.6=he4b1e75_2 - m4rie=20150908=h3f75d11_1001 - - markupsafe=2.1.3=py310h6729b98_0 + - markupsafe=2.1.3=py39hdc70f33_1 - maxima=5.45.0=hd029580_3 - - mistune=3.0.0=pyhd8ed1ab_0 + - mistune=3.0.1=pyhd8ed1ab_0 - mpc=1.3.1=h81bd1dd_0 - mpfi=1.5.4=h52b28e3_1001 - mpmath=1.3.0=pyhd8ed1ab_0 - munkres=1.1.4=pyh9f0ad1d_0 - nest-asyncio=1.5.6=pyhd8ed1ab_0 - networkx=2.8.8=pyhd8ed1ab_0 - - openjpeg=2.5.0=h13ac156_2 - - openssh=9.3p1=h9dc22bb_1 - - packaging=23.1=pyhd8ed1ab_0 + - openjpeg=2.5.0=ha4da562_3 + - openssh=9.3p1=h3df487d_2 + - packaging=23.2=pyhd8ed1ab_0 - pandocfilters=1.5.0=pyhd8ed1ab_0 - parso=0.8.3=pyhd8ed1ab_0 - - pathspec=0.11.1=pyhd8ed1ab_0 + - pathspec=0.11.2=pyhd8ed1ab_0 - pickleshare=0.7.5=py_1003 - pkgconfig=1.5.5=pyhd8ed1ab_4 - - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_0 - - pluggy=1.2.0=pyhd8ed1ab_0 + - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 + - pluggy=1.3.0=pyhd8ed1ab_0 - ply=3.11=py_1 - ppl=1.2=ha60d53e_1006 - prometheus_client=0.17.1=pyhd8ed1ab_0 - - psutil=5.9.5=py310h90acd4f_0 + - psutil=5.9.5=py39hdc70f33_1 - 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_0 - - pycodestyle=2.10.0=pyhd8ed1ab_0 + - pybind11-global=2.11.1=py39h8ee36c8_2 + - pycodestyle=2.11.0=pyhd8ed1ab_0 - pycparser=2.21=pyhd8ed1ab_0 - - pygments=2.15.1=pyhd8ed1ab_0 - - pyparsing=3.0.9=pyhd8ed1ab_0 - - pyrsistent=0.19.3=py310h90acd4f_0 + - pygments=2.16.1=pyhd8ed1ab_0 + - pyparsing=3.1.1=pyhd8ed1ab_0 + - pyrsistent=0.19.3=py39hdc70f33_1 - pysocks=1.7.1=pyha2e5f31_6 - pyspellchecker=0.7.2=pyhd8ed1ab_0 - - python-fastjsonschema=2.18.0=pyhd8ed1ab_0 + - python-fastjsonschema=2.18.1=pyhd8ed1ab_0 - python-json-logger=2.0.7=pyhd8ed1ab_0 - - python-lrcalc=2.1=py310h7a76584_5 + - python-lrcalc=2.1=py39h7a8716b_5 - python-tzdata=2023.3=pyhd8ed1ab_0 - - pytz=2023.3=pyhd8ed1ab_0 - - pyyaml=6.0=py310h90acd4f_5 - - pyzmq=25.1.0=py310h998be00_0 + - pytz=2023.3.post1=pyhd8ed1ab_0 + - pyyaml=6.0.1=py39hdc70f33_1 + - pyzmq=25.1.1=py39hdac9eea_1 - qd=2.3.22=h2beb688_1004 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.9.2=py310h3461e44_0 + - rpds-py=0.10.4=py39h3f9c672_0 - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 - sagetex=3.6.1=pyhd8ed1ab_0 - - setuptools=63.4.3=py310h2ec42d9_0 + - setuptools=63.4.3=py39h6e9494a_0 - simplegeneric=0.8.1=py_1 - six=1.16.0=pyh6c4a22f_0 - sniffio=1.3.0=pyhd8ed1ab_0 - snowballstemmer=2.2.0=pyhd8ed1ab_0 - - soupsieve=2.3.2.post1=pyhd8ed1ab_0 - - sphinxcontrib-applehelp=1.0.4=pyhd8ed1ab_0 - - sphinxcontrib-devhelp=1.0.2=py_0 - - sphinxcontrib-htmlhelp=2.0.1=pyhd8ed1ab_0 - - sphinxcontrib-jsmath=1.0.1=py_0 - - sphinxcontrib-qthelp=1.0.3=py_0 - - sphinxcontrib-serializinghtml=1.1.5=pyhd8ed1ab_2 + - soupsieve=2.5=pyhd8ed1ab_1 + - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_0 - sympow=2.023.6=h115ba6a_3 - - toml=0.10.2=pyhd8ed1ab_0 - tomli=2.0.1=pyhd8ed1ab_0 - - tomlkit=0.11.8=pyha770c72_0 - - tornado=6.3.2=py310h6729b98_0 - - traitlets=5.9.0=pyhd8ed1ab_0 - - trove-classifiers=2023.7.6=pyhd8ed1ab_0 - - typing_extensions=4.7.1=pyha770c72_0 + - tornado=6.3.3=py39hdc70f33_1 + - traitlets=5.11.2=pyhd8ed1ab_0 + - trove-classifiers=2023.9.19=pyhd8ed1ab_0 + - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 + - typing_extensions=4.8.0=pyha770c72_0 - typing_utils=0.1.0=pyhd8ed1ab_0 - - tzlocal=5.0.1=py310h2ec42d9_0 - - unicodedata2=15.0.0=py310h90acd4f_0 + - tzlocal=5.1=py39h6e9494a_0 + - unicodedata2=15.1.0=py39hdc70f33_0 + - uri-template=1.3.0=pyhd8ed1ab_0 - vcversioner=2.16.0.0=py_1 - - webencodings=0.5.1=py_1 - - websocket-client=1.6.1=pyhd8ed1ab_0 - - wheel=0.41.0=pyhd8ed1ab_0 - - zipp=3.16.2=pyhd8ed1ab_0 - - anyio=3.7.1=pyhd8ed1ab_0 + - webcolors=1.13=pyhd8ed1ab_0 + - webencodings=0.5.1=pyhd8ed1ab_2 + - websocket-client=1.6.4=pyhd8ed1ab_0 + - wheel=0.41.2=pyhd8ed1ab_0 + - zipp=3.17.0=pyhd8ed1ab_0 + - anyio=4.0.0=pyhd8ed1ab_0 - arb=2.23.0=h905a977_0 - - asttokens=2.2.1=pyhd8ed1ab_0 - - async-lru=2.0.3=pyhd8ed1ab_0 + - asttokens=2.4.0=pyhd8ed1ab_0 + - async-lru=2.0.4=pyhd8ed1ab_0 - babel=2.12.1=pyhd8ed1ab_1 - backports.functools_lru_cache=1.6.5=pyhd8ed1ab_0 - beautifulsoup4=4.12.2=pyha770c72_0 - beniget=0.4.1=pyhd8ed1ab_0 - - bleach=6.0.0=pyhd8ed1ab_0 - - brial=1.2.12=pyha3edaa6_0 - - cairo=1.16.0=h09dd18c_1016 + - bleach=6.1.0=pyhd8ed1ab_0 + - boost-cpp=1.82.0=h07eb623_6 + - brial=1.2.12=pyh694c41f_1 + - cached-property=1.5.2=hd8ed1ab_1 + - cairo=1.16.0=hfdb49f2_1017 - cattrs=23.1.2=pyhd8ed1ab_0 - - cctools_osx-64=973.0.1=h48a5a9d_13 - - cffi=1.15.1=py310ha78151a_3 - - clang-15=15.0.7=default_hdb78580_2 - - cmake=3.26.4=hf40c264_0 - - comm=0.1.3=pyhd8ed1ab_0 + - cctools_osx-64=973.0.1=ha1c5b94_14 + - cffi=1.16.0=py39h18ef598_0 + - clang-16=16.0.6=default_h762fdd7_1 + - cmake=3.27.6=hf40c264_0 + - comm=0.1.4=pyhd8ed1ab_0 - cppy=1.2.1=pyhd8ed1ab_0 - - curl=8.1.2=hbee3ae8_0 - - cypari2=2.1.3=py310hb5d31c9_2 + - curl=8.3.0=h5f667d7_0 + - cypari2=2.1.3=py39he2cb11e_2 - deprecation=2.1.0=pyh9f0ad1d_0 - eclib=20230424=hd00e801_0 - - fonttools=4.41.1=py310h6729b98_0 + - fonttools=4.43.1=py39ha09f3b3_0 - fplll=5.4.4=hdfdc905_0 - - gfortran_impl_osx-64=12.2.0=hdfd80ef_32 - - gmpy2=2.1.2=py310hb691cb2_1 - - html5lib=1.1=pyh9f0ad1d_0 + - gfortran_impl_osx-64=12.3.0=h54fd467_1 + - gmpy2=2.1.2=py39h2da61ea_1 - importlib-metadata=6.8.0=pyha770c72_0 - - importlib_resources=6.0.0=pyhd8ed1ab_1 - - jedi=0.18.2=pyhd8ed1ab_0 + - importlib_resources=6.1.0=pyhd8ed1ab_0 + - jedi=0.19.1=pyhd8ed1ab_0 - jinja2=3.1.2=pyhd8ed1ab_1 - jupyterlab_pygments=0.2.2=pyhd8ed1ab_0 - - ld64=609=ha91a046_13 - - libblas=3.9.0=17_osx64_openblas - - libgd=2.3.3=h3d994df_6 + - ld64=609=ha02d983_14 + - libblas=3.9.0=18_osx64_openblas + - libgd=2.3.3=h0dceb68_9 - matplotlib-inline=0.1.6=pyhd8ed1ab_0 - - memory-allocator=0.1.2=py310h90acd4f_2 - - openblas=0.3.23=openmp_hbefa662_0 - - overrides=7.3.1=pyhd8ed1ab_0 + - memory-allocator=0.1.2=py39ha30fb19_2 + - openblas=0.3.24=openmp_hd7704e8_0 + - overrides=7.4.0=pyhd8ed1ab_0 - pexpect=4.8.0=pyh1a96a4e_2 - - pillow=10.0.0=py310hd63a8c7_0 + - pillow=10.0.1=py39h877a9eb_2 - pip=23.2.1=pyhd8ed1ab_0 - - primecountpy=0.1.0=py310h88cfcbd_3 - - pybind11=2.11.1=py310h88cfcbd_0 - - pyobjc-core=9.2=py310hef2d279_0 - - pyproject-api=1.5.3=pyhd8ed1ab_0 - - pytest=7.4.0=pyhd8ed1ab_0 + - primecountpy=0.1.0=py39h8ee36c8_4 + - pybind11=2.11.1=py39h8ee36c8_2 + - pyobjc-core=10.0=py39head00df_0 + - pyproject-api=1.6.1=pyhd8ed1ab_0 + - pytest=7.4.2=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - - pytz-deprecation-shim=0.1.0.post0=py310h2ec42d9_3 - - referencing=0.30.0=pyhd8ed1ab_0 + - pytz-deprecation-shim=0.1.0.post0=py39h6e9494a_4 + - referencing=0.30.2=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - sagemath-db-conway-polynomials=0.5.0=h033912b_1 - singular=4.2.1.p3=hac851df_2 - terminado=0.17.1=pyhd1c38e8_0 - tinycss2=1.2.1=pyhd8ed1ab_0 - - typing-extensions=4.7.1=hd8ed1ab_0 - - urllib3=2.0.4=pyhd8ed1ab_0 - - argon2-cffi-bindings=21.2.0=py310h90acd4f_3 - - cctools=973.0.1=hd9ad811_13 - - clang=15.0.7=h694c41f_2 - - git=2.41.0=pl5321h5c607e1_0 - - harfbuzz=7.3.0=h413ba03_0 + - typing-extensions=4.8.0=hd8ed1ab_0 + - urllib3=2.0.6=pyhd8ed1ab_0 + - argon2-cffi-bindings=21.2.0=py39hdc70f33_4 + - arrow=1.3.0=pyhd8ed1ab_0 + - cctools=973.0.1=h40f6528_14 + - clang=16.0.6=hc177806_1 + - fqdn=1.5.1=pyhd8ed1ab_0 + - git=2.42.0=pl5321hbb4c4ee_0 + - harfbuzz=8.2.1=h7666e2a_0 - hatchling=1.18.0=pyhd8ed1ab_0 - - importlib-resources=6.0.0=pyhd8ed1ab_1 + - importlib-resources=6.1.0=pyhd8ed1ab_0 - importlib_metadata=6.8.0=hd8ed1ab_0 - jsonschema-specifications=2023.7.1=pyhd8ed1ab_0 - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1 - - libcblas=3.9.0=17_osx64_openblas - - liblapack=3.9.0=17_osx64_openblas - - lsprotocol=2023.0.0a2=pyhd8ed1ab_0 - - platformdirs=3.9.1=pyhd8ed1ab_0 - - poetry-core=1.6.1=pyhd8ed1ab_0 - - pplpy=0.8.7=py310h190f582_0 - - pyobjc-framework-cocoa=9.2=py310hef2d279_0 + - libcblas=3.9.0=18_osx64_openblas + - liblapack=3.9.0=18_osx64_openblas + - lsprotocol=2023.0.0b1=pyhd8ed1ab_0 + - platformdirs=3.11.0=pyhd8ed1ab_0 + - pplpy=0.8.7=py39hb3e8af0_0 + - pyobjc-framework-cocoa=10.0=py39head00df_1 - pytest-xdist=3.3.1=pyhd8ed1ab_0 - requests=2.31.0=pyhd8ed1ab_0 - - setuptools-scm=7.1.0=pyhd8ed1ab_0 + - setuptools-scm=8.0.4=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 - sympy=1.12=pypyh9d50eac_103 - - wcwidth=0.2.6=pyhd8ed1ab_0 - - argon2-cffi=21.3.0=pyhd8ed1ab_0 - - arpack=3.7.0=hefb7bc6_2 - - clangxx=15.0.7=default_hdb78580_2 + - wcwidth=0.2.8=pyhd8ed1ab_0 + - argon2-cffi=23.1.0=pyhd8ed1ab_0 + - clangxx=16.0.6=default_h762fdd7_1 - dsdp=5.8=h6e329d1_1203 - fflas-ffpack=2.4.3=h026fd7e_2 - gsl=2.7=h93259b0_0 - iml=1.0.5=h64b42ca_1003 - - jsonschema=4.18.4=pyhd8ed1ab_0 - - jupyter_core=5.3.1=py310h2ec42d9_0 - - liblapacke=3.9.0=17_osx64_openblas - - numpy=1.25.1=py310h7451ae0_0 - - pango=1.50.14=hbce5e75_1 - - pooch=1.7.0=pyha770c72_3 + - isoduration=20.11.0=pyhd8ed1ab_0 + - jsonschema=4.19.1=pyhd8ed1ab_0 + - jupyter_core=5.3.2=py39h6e9494a_0 + - liblapacke=3.9.0=18_osx64_openblas + - numpy=1.26.0=py39h5c76802_0 + - pango=1.50.14=h19c1c8a_2 + - pooch=1.7.0=pyhd8ed1ab_4 - prompt-toolkit=3.0.39=pyha770c72_0 - send2trash=1.8.2=pyhd1c38e8_0 - - setuptools_scm=7.1.0=hd8ed1ab_0 - - sphinx=6.2.1=pyhd8ed1ab_0 + - setuptools_scm=8.0.4=hd8ed1ab_0 - suitesparse=5.10.1=h7aff33d_1 - typeguard=3.0.2=pyhd8ed1ab_0 - - virtualenv=20.24.1=pyhd8ed1ab_0 - - blas-devel=3.9.0=17_osx64_openblas - - compiler-rt_osx-64=15.0.7=he1888fc_1 - - contourpy=1.1.0=py310h88cfcbd_0 - - cvxopt=1.3.1=py310ha550498_0 - - fpylll=0.5.9=py310h0d1ef73_1 + - virtualenv=20.24.4=pyhd8ed1ab_0 + - blas-devel=3.9.0=18_osx64_openblas + - compiler-rt_osx-64=16.0.6=he1888fc_0 + - contourpy=1.1.1=py39h8ee36c8_1 + - cvxopt=1.3.2=py39h2a3e123_1 + - fpylll=0.5.9=py39hb8d1c6e_1 - giac=1.9.0.21=h92f3f65_1 - - igraph=0.9.10=h6560ca6_1 - - jupyter_client=8.3.0=pyhd8ed1ab_0 - - jupyter_events=0.6.3=pyhd8ed1ab_0 + - jsonschema-with-format-nongpl=4.19.1=pyhd8ed1ab_0 + - jupyter_client=8.3.1=pyhd8ed1ab_0 - linbox=1.6.3=hdde8d14_7 - - nbformat=5.9.1=pyhd8ed1ab_0 + - nbformat=5.9.2=pyhd8ed1ab_0 - prompt_toolkit=3.0.39=hd8ed1ab_0 - - pygls=1.0.2=pyhd8ed1ab_0 - - scipy=1.10.1=py310h3900cf1_3 - - sphinx-basic-ng=1.0.0b2=pyhd8ed1ab_0 - - sphinx-copybutton=0.5.2=pyhd8ed1ab_0 - - sphinxcontrib-websupport=1.2.4=pyhd8ed1ab_1 - - tox=4.6.4=pyhd8ed1ab_0 - - blas=2.117=openblas - - compiler-rt=15.0.7=he1888fc_1 - - esbonio=0.16.1=pyhd8ed1ab_0 - - furo=2023.5.20=pyhd8ed1ab_1 - - ipython=8.14.0=pyhd1c38e8_0 - - matplotlib-base=3.7.2=py310h475a17b_0 + - pygls=1.1.1=pyhd8ed1ab_0 + - scipy=1.10.1=py39hded996c_3 + - tox=4.11.3=pyhd8ed1ab_0 + - blas=2.118=openblas + - compiler-rt=16.0.6=he1888fc_0 + - ipython=8.16.1=pyh31c8845_0 + - jupyter_events=0.7.0=pyhd8ed1ab_2 + - matplotlib-base=3.8.0=py39he57df45_1 - nbclient=0.8.0=pyhd8ed1ab_0 - - rw=0.9=h0d85af4_0 - - clang_osx-64=15.0.7=h03d6864_3 - - ipykernel=6.24.0=pyh5fb750a_0 - - matplotlib=3.7.2=py310h2ec42d9_0 - - nbconvert-core=7.7.2=pyhd8ed1ab_0 - - c-compiler=1.6.0=h63c33a9_0 - - clangxx_osx-64=15.0.7=h2133e9c_3 - - gfortran_osx-64=12.2.0=h18f7dce_1 - - jupyter_server=2.7.0=pyhd8ed1ab_0 - - nbconvert-pandoc=7.7.2=pyhd8ed1ab_0 - - cxx-compiler=1.6.0=h1c7c39f_0 - - gfortran=12.2.0=h2c809b3_1 + - clang_osx-64=16.0.6=h8787910_1 + - ipykernel=6.25.2=pyh1050b4e_0 + - matplotlib=3.8.0=py39h6e9494a_1 + - nbconvert-core=7.9.2=pyhd8ed1ab_0 + - clangxx_osx-64=16.0.6=h1b7723c_1 + - gfortran_osx-64=12.3.0=h18f7dce_1 + - jupyter_server=2.7.3=pyhd8ed1ab_1 + - nbconvert-pandoc=7.9.2=pyhd8ed1ab_0 + - gfortran=12.3.0=h2c809b3_1 - jupyter-lsp=2.2.0=pyhd8ed1ab_0 - - jupyterlab_server=2.24.0=pyhd8ed1ab_0 - - nbconvert=7.7.2=pyhd8ed1ab_0 + - jupyterlab_server=2.25.0=pyhd8ed1ab_0 + - nbconvert=7.9.2=pyhd8ed1ab_0 - notebook-shim=0.2.3=pyhd8ed1ab_0 - - pythran=0.13.1=py310h9209b79_0 - - r-base=4.3.0=h7a6543b_0 + - pythran=0.14.0=py39h4aa56a1_1 + - r-base=4.3.1=h0ff45fa_6 - fortran-compiler=1.6.0=h932d759_0 - - jupyterlab=4.0.3=pyhd8ed1ab_0 - - rpy2=3.5.11=py310r43hc1335a1_2 - - compilers=1.6.0=h694c41f_0 - - notebook=7.0.0=pyhd8ed1ab_0 - - widgetsnbextension=3.6.4=pyhd8ed1ab_0 - - ipywidgets=7.7.5=pyhd8ed1ab_0 + - jupyterlab=4.0.6=pyhd8ed1ab_0 + - rpy2=3.5.11=py39r43hd01001f_3 + - notebook=7.0.4=pyhd8ed1ab_0 + - widgetsnbextension=3.6.6=pyhd8ed1ab_0 + - ipywidgets=7.8.0=pyhd8ed1ab_0 - jupyter-jsmol=2022.1.0=pyhd8ed1ab_0 - - jupyter_sphinx=0.4.0=py310h2ec42d9_1 + - esbonio=0.16.1=pyhd8ed1ab_0 + - 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 From f16573f34e7fb51d080d3de35c394a9eab906a5a Mon Sep 17 00:00:00 2001 From: Tobias Diez Date: Tue, 10 Oct 2023 02:09:29 +0000 Subject: [PATCH 17/33] bootstrap-conda: Only one 'python' line + speed up --- bootstrap-conda | 31 ++++++++++++++++------------ build/pkgs/_prereq/distros/conda.txt | 14 ++++++------- 2 files changed, 25 insertions(+), 20 deletions(-) diff --git a/bootstrap-conda b/bootstrap-conda index 5cdc74fcadd..8cc7979b708 100755 --- a/bootstrap-conda +++ b/bootstrap-conda @@ -81,14 +81,13 @@ unset ENABLE_SYSTEM_SITE_PACKAGES [ -n "$BOOTSTRAP_VERBOSE" ] && echo "## Translated to system:" && set | grep SYSTEM_PACKAGES= echo >&2 $0:$LINENO: generate conda environment files -for python_version in 3.9 3.10 3.11; do + ( echo "name: sage-build" echo "channels:" echo " - conda-forge" echo " - nodefaults" echo "dependencies:" - echo " - python=$python_version" for pkg in $SYSTEM_PACKAGES; do echo " - $pkg" done @@ -96,38 +95,38 @@ for python_version in 3.9 3.10 3.11; do for pkg in $BOOTSTRAP_SYSTEM_PACKAGES; do echo " - $pkg" done - ) > environment-$python_version.yml + ) > environment-template.yml ( - sed 's/name: sage-build/name: sage/' environment-$python_version.yml + sed 's/name: sage-build/name: sage/' environment-template.yml echo " # Additional packages providing all dependencies for the Sage library" for pkg in $SAGELIB_SYSTEM_PACKAGES; do echo " - $pkg" done - ) > src/environment-$python_version.yml + ) > src/environment-template.yml ( - cat environment-$python_version.yml + cat environment-template.yml echo " # optional packages" for pkg in $OPTIONAL_SYSTEM_PACKAGES; do echo " - $pkg" done - ) > environment-optional-$python_version.yml + ) > environment-optional-template.yml ( - sed 's/name: sage/name: sage-dev/' src/environment-$python_version.yml + sed 's/name: sage/name: sage-dev/' src/environment-template.yml echo " # Additional dev tools" for pkg in $DEVELOP_SYSTEM_PACKAGES; do echo " - $pkg" done - ) > src/environment-dev-$python_version.yml + ) > src/environment-dev-template.yml ( - cat src/environment-$python_version.yml + cat src/environment-template.yml echo " # optional packages" for pkg in $OPTIONAL_SYSTEM_PACKAGES $SAGELIB_OPTIONAL_SYSTEM_PACKAGES; do echo " - $pkg" done - ) > src/environment-optional-$python_version.yml + ) > src/environment-optional-template.yml ( echo >&4 " - pip:" @@ -152,6 +151,12 @@ for python_version in 3.9 3.10 3.11; do done fi done - #) 4>> src/environment-dev-$python_version.yml 5>> src/environment-optional-$python_version.yml - ) 4>> /dev/null 5>> src/environment-optional-$python_version.yml + #) 4>> src/environment-dev-template.yml 5>> src/environment-optional-template.yml + ) 4>> /dev/null 5>> src/environment-optional-template.yml + +for f in environment environment-optional src/environment src/environment-optional src/environment-dev; do + for python_version in 3.9 3.10 3.11; do + sed -E 's/^( *- *)python *$/\1python='$python_version'/' $f-template.yml > $f-$python_version.yml + done + rm -f $f-template.yml done diff --git a/build/pkgs/_prereq/distros/conda.txt b/build/pkgs/_prereq/distros/conda.txt index 509e6363141..c05a06ee98f 100644 --- a/build/pkgs/_prereq/distros/conda.txt +++ b/build/pkgs/_prereq/distros/conda.txt @@ -1,8 +1,8 @@ # Not needed on conda -#compilers -#make -#m4 -#perl -#python -#tar -#bc +compilers +make +m4 +perl +python +tar +bc From 1bb4a05e72f07232e76ae6d2d2853134872f61e4 Mon Sep 17 00:00:00 2001 From: Tobias Diez Date: Tue, 10 Oct 2023 03:19:06 +0000 Subject: [PATCH 18/33] add lock files for aarch and arm --- .github/workflows/conda-lock-update.ps1 | 2 + environment-3.10-linux-aarch.yml | 193 ++++++++++ environment-3.10-macos-arm.yml | 191 ++++++++++ environment-3.11-linux-aarch.yml | 193 ++++++++++ environment-3.11-macos-arm.yml | 191 ++++++++++ environment-3.9-linux-aarch.yml | 193 ++++++++++ environment-3.9-macos-arm.yml | 191 ++++++++++ src/environment-3.10-linux-aarch.yml | 427 ++++++++++++++++++++++ src/environment-3.10-macos-arm.yml | 405 ++++++++++++++++++++ src/environment-3.11-linux-aarch.yml | 426 ++++++++++++++++++++++ src/environment-3.11-macos-arm.yml | 404 ++++++++++++++++++++ src/environment-3.9-linux-aarch.yml | 427 ++++++++++++++++++++++ src/environment-3.9-macos-arm.yml | 405 ++++++++++++++++++++ src/environment-dev-3.10-linux-aarch.yml | 446 +++++++++++++++++++++++ src/environment-dev-3.10-macos-arm.yml | 421 +++++++++++++++++++++ src/environment-dev-3.11-linux-aarch.yml | 445 ++++++++++++++++++++++ src/environment-dev-3.11-macos-arm.yml | 420 +++++++++++++++++++++ src/environment-dev-3.9-linux-aarch.yml | 446 +++++++++++++++++++++++ src/environment-dev-3.9-macos-arm.yml | 421 +++++++++++++++++++++ 19 files changed, 6247 insertions(+) create mode 100644 environment-3.10-linux-aarch.yml create mode 100644 environment-3.10-macos-arm.yml create mode 100644 environment-3.11-linux-aarch.yml create mode 100644 environment-3.11-macos-arm.yml create mode 100644 environment-3.9-linux-aarch.yml create mode 100644 environment-3.9-macos-arm.yml create mode 100644 src/environment-3.10-linux-aarch.yml create mode 100644 src/environment-3.10-macos-arm.yml create mode 100644 src/environment-3.11-linux-aarch.yml create mode 100644 src/environment-3.11-macos-arm.yml create mode 100644 src/environment-3.9-linux-aarch.yml create mode 100644 src/environment-3.9-macos-arm.yml create mode 100644 src/environment-dev-3.10-linux-aarch.yml create mode 100644 src/environment-dev-3.10-macos-arm.yml create mode 100644 src/environment-dev-3.11-linux-aarch.yml create mode 100644 src/environment-dev-3.11-macos-arm.yml create mode 100644 src/environment-dev-3.9-linux-aarch.yml create mode 100644 src/environment-dev-3.9-macos-arm.yml diff --git a/.github/workflows/conda-lock-update.ps1 b/.github/workflows/conda-lock-update.ps1 index 9b2f1a3a4ac..194e5df168e 100755 --- a/.github/workflows/conda-lock-update.ps1 +++ b/.github/workflows/conda-lock-update.ps1 @@ -7,7 +7,9 @@ $rootDir = Join-Path -Path $scriptDir -ChildPath ..\..\ $platforms = @{ "linux-64" = "linux" + "linux-aarch64" = "linux-aarch" "osx-64" = "macos" + "osx-arm64" = "macos-arm" } $pythons = "3.9", "3.10", "3.11" $tags = "", "-dev" diff --git a/environment-3.10-linux-aarch.yml b/environment-3.10-linux-aarch.yml new file mode 100644 index 00000000000..499b3cd93b9 --- /dev/null +++ b/environment-3.10-linux-aarch.yml @@ -0,0 +1,193 @@ +# Generated by conda-lock. +# platform: linux-aarch64 +# input_hash: d745aab1c14fd9333fe506502bdbc2bb5ab40c689cf58e8b1eb71d8e283a8e6d + +channels: + - conda-forge +dependencies: + - _sysroot_linux-aarch64_curr_repodata_hack=4=h57d6b7b_13 + - ca-certificates=2023.7.22=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=hab24e00_0 + - kernel-headers_linux-aarch64=4.18.0=h5b4a56d_13 + - ld_impl_linux-aarch64=2.40=h2d8c526_0 + - libboost-headers=1.82.0=h8af1aa0_2 + - libgcc-devel_linux-aarch64=12.3.0=h8b5ab12_2 + - libgomp=13.2.0=hf8544c7_2 + - libstdcxx-devel_linux-aarch64=12.3.0=h8b5ab12_2 + - libstdcxx-ng=13.2.0=h9a76618_2 + - mathjax=3.2.2=h8af1aa0_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 + - python_abi=3.10=4_cp310 + - tzdata=2023c=h71feb2d_0 + - fonts-conda-forge=1=0 + - pari-seadata=0.0.20090618=0 + - sysroot_linux-aarch64=2.17=h5b4a56d_13 + - binutils_impl_linux-aarch64=2.40=h870a726_0 + - fonts-conda-ecosystem=1=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_2 + - bc=1.07.1=hf897c2e_0 + - bdw-gc=8.0.6=hd62202e_0 + - bzip2=1.0.8=hf897c2e_4 + - c-ares=1.20.1=h31becfc_0 + - cliquer=1.22=hb9de7d4_0 + - gengetopt=2.23=h01db608_0 + - gf2x=1.3.0=h1b3b3a3_2 + - giflib=5.2.1=hb4cce97_3 + - gmp=6.2.1=h7fd3ca4_0 + - icu=72.1=hcf00150_0 + - jpeg=9e=h2a766a3_3 + - keyutils=1.6.1=h4e544f5_0 + - lerc=4.0.0=h4de3ea5_0 + - libatomic_ops=7.6.14=h4e544f5_0 + - libbraiding=1.1=h7fd3ca4_0 + - libdeflate=1.17=hb4cce97_0 + - libev=4.33=h516909a_1 + - libexpat=2.5.0=hd600fc2_1 + - libffi=3.4.2=h3557bc0_5 + - libgfortran5=13.2.0=h582850c_2 + - libiconv=1.17=h9cdd2b7_0 + - libnsl=2.0.0=h31becfc_1 + - libsanitizer=12.3.0=h8ebda82_2 + - 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 + - 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.7.2=hf897c2e_0 + - ncurses=6.4=h2e1726e_0 + - ninja=1.11.1=hdd96247_0 + - openssl=3.1.3=h31becfc_0 + - palp=2.20=hb9de7d4_0 + - patch=2.7.6=hf897c2e_1002 + - pkg-config=0.29.2=hb9de7d4_1008 + - planarity=3.0.0.5=hb9de7d4_1002 + - primesieve=11.1=h2f0025b_0 + - qhull=2020.2=hd62202e_2 + - rhash=1.4.4=h31becfc_0 + - symmetrica=3.0.1=hd600fc2_0 + - xz=5.2.6=h9cdd2b7_0 + - 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_2 + - givaro=4.1.1=h192cbe9_1 + - glpk=5.0=h66325d0_0 + - libedit=3.1.20191231=he28a2e2_2 + - libgfortran-ng=13.2.0=he9431aa_2 + - libhomfly=1.02r6=hb9de7d4_0 + - libnghttp2=1.52.0=h250e5c5_0 + - libpng=1.6.39=hf9034f9_0 + - libsqlite=3.43.0=h194ca79_0 + - libssh2=1.11.0=h492db2e_0 + - libxml2=2.10.4=h430b14f_0 + - mpfr=4.2.0=h96f194b_0 + - ntl=11.4.3=h0d7519b_1 + - perl=5.32.1=4_h31becfc_perl5 + - primecount=7.9=hd600fc2_0 + - readline=8.2=h8fc344f_1 + - tar=1.34=h048efde_0 + - tk=8.6.13=h194ca79_0 + - zeromq=4.3.4=h01db608_1 + - zlib=1.2.13=h31becfc_5 + - zstd=1.5.5=h4c53e97_0 + - autoconf=2.71=pl5321h2148fe1_1 + - ecl=21.2.1=haa44c19_2 + - freetype=2.12.1=hf0a5ef3_2 + - 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_2 + - gxx_impl_linux-aarch64=12.3.0=hcde2664_2 + - krb5=1.21.2=hc419048_0 + - libboost=1.82.0=hbfc56d7_2 + - libflint=2.9.0=hd3470fa_ntl_100 + - libhwloc=2.9.1=h21e8147_0 + - libopenblas=0.3.23=pthreads_hd703e6f_0 + - libtiff=4.5.0=h4c1066a_2 + - llvm-openmp=17.0.2=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.12=hbbe8eec_0_cpython + - qd=2.3.22=h05efe27_1004 + - sqlite=3.43.0=h3b3482f_0 + - tachyon=0.99b6=h63ab1d9_1001 + - texinfo=7.0=pl5321h17f021e_0 + - appdirs=1.4.4=pyh9f0ad1d_0 + - arb=2.23.0=h37d5dab_0 + - automake=1.16.5=pl5321h8af1aa0_0 + - c-compiler=1.6.0=h31becfc_0 + - cachetools=5.3.1=pyhd8ed1ab_0 + - chardet=5.2.0=py310hbbe02a8_1 + - colorama=0.4.6=pyhd8ed1ab_0 + - distlib=0.3.7=pyhd8ed1ab_0 + - eclib=20230424=h0bc7b0f_0 + - filelock=3.12.4=pyhd8ed1ab_0 + - fontconfig=2.14.2=ha9a116f_0 + - fplll=5.4.4=h5cd656c_0 + - gfortran=12.3.0=h8d4031d_2 + - gfortran_linux-aarch64=12.3.0=h1993883_2 + - gxx=12.3.0=hc1b51f9_2 + - gxx_linux-aarch64=12.3.0=h21accf6_2 + - lcalc=2.0.5=h3264cc0_1 + - libblas=3.9.0=17_linuxaarch64_openblas + - libboost-devel=1.82.0=h37bb5a9_2 + - libbrial=1.2.12=h17533bf_1 + - libcurl=8.3.0=h4e8248e_0 + - libwebp=1.2.4=h7bdf6e5_1 + - m4rie=20150908=h75e8696_1001 + - maxima=5.45.0=haa44c19_3 + - openblas=0.3.23=pthreads_hef96516_0 + - packaging=23.2=pyhd8ed1ab_0 + - pluggy=1.3.0=pyhd8ed1ab_0 + - singular=4.2.1.p3=h3d4c4c6_2 + - sympow=2.023.6=h157afb5_3 + - tbb=2021.9.0=h4c384f3_0 + - tomli=2.0.1=pyhd8ed1ab_0 + - typing_extensions=4.8.0=pyha770c72_0 + - zipp=3.17.0=pyhd8ed1ab_0 + - boost-cpp=1.82.0=h62f3a30_2 + - brial=1.2.12=pyh694c41f_1 + - cmake=3.27.6=hef020d8_0 + - curl=8.3.0=h4e8248e_0 + - cxx-compiler=1.6.0=h2a328a1_0 + - fortran-compiler=1.6.0=h7048d53_0 + - importlib-metadata=6.8.0=pyha770c72_0 + - libcblas=3.9.0=17_linuxaarch64_openblas + - libgd=2.3.3=h5fc1a20_5 + - liblapack=3.9.0=17_linuxaarch64_openblas + - pyproject-api=1.6.1=pyhd8ed1ab_0 + - typing-extensions=4.8.0=hd8ed1ab_0 + - arpack=3.7.0=hf862f49_2 + - compilers=1.6.0=h8af1aa0_0 + - fflas-ffpack=2.4.3=hf104d39_2 + - gsl=2.7=h294027d_0 + - iml=1.0.5=h9076c59_1003 + - importlib_metadata=6.8.0=hd8ed1ab_0 + - liblapacke=3.9.0=17_linuxaarch64_openblas + - platformdirs=3.11.0=pyhd8ed1ab_0 + - suitesparse=5.10.1=h1404dd6_1 + - blas-devel=3.9.0=17_linuxaarch64_openblas + - giac=1.9.0.21=h04922a4_1 + - igraph=0.9.10=hefb87a8_1 + - linbox=1.6.3=h31716a8_7 + - virtualenv=20.24.4=pyhd8ed1ab_0 + - blas=2.117=openblas + - rw=0.9=hf897c2e_0 + - tox=4.11.3=pyhd8ed1ab_0 diff --git a/environment-3.10-macos-arm.yml b/environment-3.10-macos-arm.yml new file mode 100644 index 00000000000..6e40e51b3bd --- /dev/null +++ b/environment-3.10-macos-arm.yml @@ -0,0 +1,191 @@ +# Generated by conda-lock. +# platform: osx-arm64 +# input_hash: 2ff73230569e30ae886d8de5e715d83486f44a52574790d01f7ae6b9c7668319 + +channels: + - conda-forge +dependencies: + - bc=1.07.1=h3422bc3_0 + - bzip2=1.0.8=h3422bc3_4 + - c-ares=1.20.1=h93a5062_0 + - ca-certificates=2023.7.22=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=hab24e00_0 + - giflib=5.2.1=h1a8c8d9_3 + - icu=72.1=he12128b_0 + - jpeg=9e=h1a8c8d9_3 + - libatomic_ops=7.6.14=h1a8c8d9_0 + - libboost-headers=1.82.0=hce30654_2 + - libcxx=16.0.6=h4653b0c_0 + - libdeflate=1.17=h1a8c8d9_0 + - libev=4.33=h642e427_1 + - libexpat=2.5.0=hb7217d7_1 + - libffi=3.4.2=h3422bc3_5 + - libgfortran-devel_osx-arm64=12.3.0=hc62be1c_1 + - libiconv=1.17=he4db4b2_0 + - 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 + - libzlib=1.2.13=h53f4e23_5 + - llvm-openmp=17.0.2=h1c12783_0 + - m4=1.4.18=h642e427_1001 + - make=4.3=he57ea6c_1 + - mathjax=3.2.2=hce30654_0 + - metis=5.1.0=h13dd4ca_1007 + - nauty=2.7.2=h3422bc3_0 + - ncurses=6.4=h7ea286d_0 + - palp=2.20=h27ca646_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 + - planarity=3.0.0.5=h27ca646_1002 + - python_abi=3.10=4_cp310 + - rhash=1.4.4=hb547adb_0 + - tzdata=2023c=h71feb2d_0 + - xz=5.2.6=h57fd34a_0 + - 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.2.1=h9f76cd9_0 + - isl=0.25=h9a09cb3_0 + - lerc=4.0.0=h9a09cb3_0 + - libbraiding=1.1=h9f76cd9_0 + - libedit=3.1.20191231=hc8eb9b7_2 + - libgfortran5=13.2.0=hf226fd6_1 + - libpng=1.6.39=h76d750c_0 + - libsqlite=3.43.0=hb31c410_0 + - libxml2=2.10.4=h2aff0a6_0 + - lrcalc=2.1=hb7217d7_5 + - ninja=1.11.1=hffc8910_0 + - openssl=3.1.3=h53f4e23_0 + - pari-seadata=0.0.20090618=0 + - pcre2=10.40=hb34f9b4_0 + - primesieve=11.0=hb7217d7_0 + - qhull=2020.2=hc021e02_2 + - readline=8.2=h92ec313_1 + - symmetrica=3.0.1=hb7217d7_0 + - tapi=1100.0.11=he4954df_0 + - tar=1.34=h7cb298e_1 + - tbb=2021.10.0=h1995070_1 + - texinfo=7.0=pl5321h9ea1dce_0 + - tk=8.6.13=hb31c410_0 + - zeromq=4.3.4=hbdafb3b_1 + - zlib=1.2.13=h53f4e23_5 + - zstd=1.5.5=h4f39d0f_0 + - automake=1.16.5=pl5321hce30654_0 + - cddlib=1!0.94m=h6d7a090_0 + - ecl=21.2.1=h8492d4d_2 + - 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 + - krb5=1.21.2=h92f50d5_0 + - libboost=1.82.0=h3f31f7c_2 + - libgfortran=5.0.0=13_2_0_hd922786_1 + - libglib=2.78.0=h24e9cb9_0 + - libhomfly=1.02r6=h27ca646_0 + - libllvm15=15.0.7=h62b9111_1 + - libnghttp2=1.52.0=hae82a92_0 + - libssh2=1.11.0=h7a5bd25_0 + - libtiff=4.5.0=h5dffbdd_2 + - m4ri=20140914=h17b34a0_1005 + - mpfr=4.2.0=he09a6ba_0 + - ntl=11.4.3=hbb3f309_1 + - pari=2.15.4=haeeeed7_2_pthread + - primecount=7.6=hb6e4faa_0 + - python=3.10.12=h01493a6_0_cpython + - sigtool=0.1.3=h44b9a77_0 + - sqlite=3.43.0=h203b68d_0 + - tachyon=0.99b6=hfb72b2a_1001 + - appdirs=1.4.4=pyh9f0ad1d_0 + - cachetools=5.3.1=pyhd8ed1ab_0 + - chardet=5.2.0=py310hbe9552e_1 + - colorama=0.4.6=pyhd8ed1ab_0 + - distlib=0.3.7=pyhd8ed1ab_0 + - filelock=3.12.4=pyhd8ed1ab_0 + - fontconfig=2.14.2=h82840c6_0 + - gfan=0.6.2=hec08f5c_1003 + - lcalc=2.0.5=hc94e8e6_1 + - ld64_osx-arm64=609=hc4dc95b_14 + - libboost-devel=1.82.0=hf450f58_2 + - libbrial=1.2.12=ha7f5006_1 + - libclang-cpp15=15.0.7=default_h5dc8d65_3 + - libcurl=8.3.0=hc52a3a8_0 + - libflint=2.9.0=h173eafc_ntl_100 + - libopenblas=0.3.24=openmp_hd76b1f2_0 + - libwebp=1.2.4=h999c80f_1 + - llvm-tools=15.0.7=h62b9111_1 + - m4rie=20150908=h17b34a0_1001 + - maxima=5.45.0=h6032a66_2 + - mpc=1.3.1=h91ba8db_0 + - mpfi=1.5.4=hbde5f5b_1001 + - packaging=23.2=pyhd8ed1ab_0 + - pkg-config=0.29.2=hab62308_1008 + - pluggy=1.3.0=pyhd8ed1ab_0 + - ppl=1.2=h8b147cf_1006 + - qd=2.3.22=hbec66e7_1004 + - sympow=2.023.6=hb0babe8_3 + - tomli=2.0.1=pyhd8ed1ab_0 + - typing_extensions=4.8.0=pyha770c72_0 + - zipp=3.17.0=pyhd8ed1ab_0 + - arb=2.23.0=he5401aa_0 + - boost-cpp=1.82.0=h4ae65de_2 + - brial=1.2.12=pyh694c41f_1 + - cctools_osx-arm64=973.0.1=h2a25c60_14 + - clang-15=15.0.7=default_h5dc8d65_3 + - cmake=3.27.6=h1c59155_0 + - curl=8.3.0=hc52a3a8_0 + - eclib=20230424=haeb5157_0 + - fplll=5.4.4=h29209e0_0 + - gfortran_impl_osx-arm64=12.3.0=hbbb9e1e_1 + - importlib-metadata=6.8.0=pyha770c72_0 + - ld64=609=h89fa09d_14 + - libblas=3.9.0=18_osxarm64_openblas + - libgd=2.3.3=h8db8f0b_5 + - openblas=0.3.24=openmp_hce3e5ba_0 + - pyproject-api=1.6.1=pyhd8ed1ab_0 + - singular=4.2.1.p3=h3b80c97_2 + - typing-extensions=4.8.0=hd8ed1ab_0 + - cctools=973.0.1=hd1ac623_14 + - clang=15.0.7=hce30654_3 + - importlib_metadata=6.8.0=hd8ed1ab_0 + - libcblas=3.9.0=18_osxarm64_openblas + - liblapack=3.9.0=18_osxarm64_openblas + - platformdirs=3.11.0=pyhd8ed1ab_0 + - arpack=3.7.0=h58ebc17_2 + - clangxx=15.0.7=default_h610c423_3 + - fflas-ffpack=2.4.3=h11f2abc_2 + - gsl=2.7=h6e638da_0 + - iml=1.0.5=hd52f0d1_1003 + - liblapacke=3.9.0=18_osxarm64_openblas + - suitesparse=5.10.1=h7cd81ec_1 + - virtualenv=20.24.4=pyhd8ed1ab_0 + - blas-devel=3.9.0=18_osxarm64_openblas + - compiler-rt_osx-arm64=15.0.7=hf8d1dfb_1 + - giac=1.9.0.21=h1c96721_1 + - igraph=0.9.10=hcec9b84_1 + - linbox=1.6.3=h549c411_7 + - tox=4.11.3=pyhd8ed1ab_0 + - blas=2.118=openblas + - compiler-rt=15.0.7=hf8d1dfb_1 + - rw=0.9=h3422bc3_0 + - clang_osx-arm64=15.0.7=h77e971b_3 + - c-compiler=1.6.0=hd291e01_0 + - clangxx_osx-arm64=15.0.7=h768a7fd_3 + - gfortran_osx-arm64=12.3.0=h57527a5_1 + - cxx-compiler=1.6.0=h1995070_0 + - gfortran=12.3.0=h1ca8e4b_1 + - fortran-compiler=1.6.0=h5a50232_0 + - compilers=1.6.0=hce30654_0 diff --git a/environment-3.11-linux-aarch.yml b/environment-3.11-linux-aarch.yml new file mode 100644 index 00000000000..49f9fb19aca --- /dev/null +++ b/environment-3.11-linux-aarch.yml @@ -0,0 +1,193 @@ +# Generated by conda-lock. +# platform: linux-aarch64 +# input_hash: 011439bb1ed34a12b0f8c60876591e855c4d39e1c5da2bee5b1c7170c9b864b3 + +channels: + - conda-forge +dependencies: + - _sysroot_linux-aarch64_curr_repodata_hack=4=h57d6b7b_13 + - ca-certificates=2023.7.22=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=hab24e00_0 + - kernel-headers_linux-aarch64=4.18.0=h5b4a56d_13 + - ld_impl_linux-aarch64=2.40=h2d8c526_0 + - libboost-headers=1.82.0=h8af1aa0_2 + - libgcc-devel_linux-aarch64=12.3.0=h8b5ab12_2 + - libgomp=13.2.0=hf8544c7_2 + - libstdcxx-devel_linux-aarch64=12.3.0=h8b5ab12_2 + - libstdcxx-ng=13.2.0=h9a76618_2 + - mathjax=3.2.2=h8af1aa0_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 + - python_abi=3.11=4_cp311 + - tzdata=2023c=h71feb2d_0 + - fonts-conda-forge=1=0 + - pari-seadata=0.0.20090618=0 + - sysroot_linux-aarch64=2.17=h5b4a56d_13 + - binutils_impl_linux-aarch64=2.40=h870a726_0 + - fonts-conda-ecosystem=1=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_2 + - bc=1.07.1=hf897c2e_0 + - bdw-gc=8.0.6=hd62202e_0 + - bzip2=1.0.8=hf897c2e_4 + - c-ares=1.20.1=h31becfc_0 + - cliquer=1.22=hb9de7d4_0 + - gengetopt=2.23=h01db608_0 + - gf2x=1.3.0=h1b3b3a3_2 + - giflib=5.2.1=hb4cce97_3 + - gmp=6.2.1=h7fd3ca4_0 + - icu=72.1=hcf00150_0 + - jpeg=9e=h2a766a3_3 + - keyutils=1.6.1=h4e544f5_0 + - lerc=4.0.0=h4de3ea5_0 + - libatomic_ops=7.6.14=h4e544f5_0 + - libbraiding=1.1=h7fd3ca4_0 + - libdeflate=1.17=hb4cce97_0 + - libev=4.33=h516909a_1 + - libexpat=2.5.0=hd600fc2_1 + - libffi=3.4.2=h3557bc0_5 + - libgfortran5=13.2.0=h582850c_2 + - libiconv=1.17=h9cdd2b7_0 + - libnsl=2.0.0=h31becfc_1 + - libsanitizer=12.3.0=h8ebda82_2 + - 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 + - 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.7.2=hf897c2e_0 + - ncurses=6.4=h2e1726e_0 + - ninja=1.11.1=hdd96247_0 + - openssl=3.1.3=h31becfc_0 + - palp=2.20=hb9de7d4_0 + - patch=2.7.6=hf897c2e_1002 + - pkg-config=0.29.2=hb9de7d4_1008 + - planarity=3.0.0.5=hb9de7d4_1002 + - primesieve=11.1=h2f0025b_0 + - qhull=2020.2=hd62202e_2 + - rhash=1.4.4=h31becfc_0 + - symmetrica=3.0.1=hd600fc2_0 + - xz=5.2.6=h9cdd2b7_0 + - 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_2 + - givaro=4.1.1=h192cbe9_1 + - glpk=5.0=h66325d0_0 + - libedit=3.1.20191231=he28a2e2_2 + - libgfortran-ng=13.2.0=he9431aa_2 + - libhomfly=1.02r6=hb9de7d4_0 + - libnghttp2=1.52.0=h250e5c5_0 + - libpng=1.6.39=hf9034f9_0 + - libsqlite=3.43.0=h194ca79_0 + - libssh2=1.11.0=h492db2e_0 + - libxml2=2.10.4=h430b14f_0 + - mpfr=4.2.0=h96f194b_0 + - ntl=11.4.3=h0d7519b_1 + - perl=5.32.1=4_h31becfc_perl5 + - primecount=7.9=hd600fc2_0 + - readline=8.2=h8fc344f_1 + - tar=1.34=h048efde_0 + - tk=8.6.13=h194ca79_0 + - zeromq=4.3.4=h01db608_1 + - zlib=1.2.13=h31becfc_5 + - zstd=1.5.5=h4c53e97_0 + - autoconf=2.71=pl5321h2148fe1_1 + - ecl=21.2.1=haa44c19_2 + - freetype=2.12.1=hf0a5ef3_2 + - 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_2 + - gxx_impl_linux-aarch64=12.3.0=hcde2664_2 + - krb5=1.21.2=hc419048_0 + - libboost=1.82.0=hbfc56d7_2 + - libflint=2.9.0=hd3470fa_ntl_100 + - libhwloc=2.9.1=h21e8147_0 + - libopenblas=0.3.23=pthreads_hd703e6f_0 + - libtiff=4.5.0=h4c1066a_2 + - llvm-openmp=17.0.2=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.6=h43d1f9e_0_cpython + - qd=2.3.22=h05efe27_1004 + - sqlite=3.43.0=h3b3482f_0 + - tachyon=0.99b6=h63ab1d9_1001 + - texinfo=7.0=pl5321h17f021e_0 + - appdirs=1.4.4=pyh9f0ad1d_0 + - arb=2.23.0=h37d5dab_0 + - automake=1.16.5=pl5321h8af1aa0_0 + - c-compiler=1.6.0=h31becfc_0 + - cachetools=5.3.1=pyhd8ed1ab_0 + - chardet=5.2.0=py311hfecb2dc_1 + - colorama=0.4.6=pyhd8ed1ab_0 + - distlib=0.3.7=pyhd8ed1ab_0 + - eclib=20230424=h0bc7b0f_0 + - filelock=3.12.4=pyhd8ed1ab_0 + - fontconfig=2.14.2=ha9a116f_0 + - fplll=5.4.4=h5cd656c_0 + - gfortran=12.3.0=h8d4031d_2 + - gfortran_linux-aarch64=12.3.0=h1993883_2 + - gxx=12.3.0=hc1b51f9_2 + - gxx_linux-aarch64=12.3.0=h21accf6_2 + - lcalc=2.0.5=h3264cc0_1 + - libblas=3.9.0=17_linuxaarch64_openblas + - libboost-devel=1.82.0=h37bb5a9_2 + - libbrial=1.2.12=h17533bf_1 + - libcurl=8.3.0=h4e8248e_0 + - libwebp=1.2.4=h7bdf6e5_1 + - m4rie=20150908=h75e8696_1001 + - maxima=5.45.0=haa44c19_3 + - openblas=0.3.23=pthreads_hef96516_0 + - packaging=23.2=pyhd8ed1ab_0 + - pluggy=1.3.0=pyhd8ed1ab_0 + - singular=4.2.1.p3=h3d4c4c6_2 + - sympow=2.023.6=h157afb5_3 + - tbb=2021.9.0=h4c384f3_0 + - tomli=2.0.1=pyhd8ed1ab_0 + - typing_extensions=4.8.0=pyha770c72_0 + - zipp=3.17.0=pyhd8ed1ab_0 + - boost-cpp=1.82.0=h62f3a30_2 + - brial=1.2.12=pyh694c41f_1 + - cmake=3.27.6=hef020d8_0 + - curl=8.3.0=h4e8248e_0 + - cxx-compiler=1.6.0=h2a328a1_0 + - fortran-compiler=1.6.0=h7048d53_0 + - importlib-metadata=6.8.0=pyha770c72_0 + - libcblas=3.9.0=17_linuxaarch64_openblas + - libgd=2.3.3=h5fc1a20_5 + - liblapack=3.9.0=17_linuxaarch64_openblas + - pyproject-api=1.6.1=pyhd8ed1ab_0 + - typing-extensions=4.8.0=hd8ed1ab_0 + - arpack=3.7.0=hf862f49_2 + - compilers=1.6.0=h8af1aa0_0 + - fflas-ffpack=2.4.3=hf104d39_2 + - gsl=2.7=h294027d_0 + - iml=1.0.5=h9076c59_1003 + - importlib_metadata=6.8.0=hd8ed1ab_0 + - liblapacke=3.9.0=17_linuxaarch64_openblas + - platformdirs=3.11.0=pyhd8ed1ab_0 + - suitesparse=5.10.1=h1404dd6_1 + - blas-devel=3.9.0=17_linuxaarch64_openblas + - giac=1.9.0.21=h04922a4_1 + - igraph=0.9.10=hefb87a8_1 + - linbox=1.6.3=h31716a8_7 + - virtualenv=20.24.4=pyhd8ed1ab_0 + - blas=2.117=openblas + - rw=0.9=hf897c2e_0 + - tox=4.11.3=pyhd8ed1ab_0 diff --git a/environment-3.11-macos-arm.yml b/environment-3.11-macos-arm.yml new file mode 100644 index 00000000000..20ea3e793cb --- /dev/null +++ b/environment-3.11-macos-arm.yml @@ -0,0 +1,191 @@ +# Generated by conda-lock. +# platform: osx-arm64 +# input_hash: 48100dc5d7ce99bc4b67e4b7e8af9378be5950ce091e543f17e3cbd821c8ef79 + +channels: + - conda-forge +dependencies: + - bc=1.07.1=h3422bc3_0 + - bzip2=1.0.8=h3422bc3_4 + - c-ares=1.20.1=h93a5062_0 + - ca-certificates=2023.7.22=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=hab24e00_0 + - giflib=5.2.1=h1a8c8d9_3 + - icu=72.1=he12128b_0 + - jpeg=9e=h1a8c8d9_3 + - libatomic_ops=7.6.14=h1a8c8d9_0 + - libboost-headers=1.82.0=hce30654_2 + - libcxx=16.0.6=h4653b0c_0 + - libdeflate=1.17=h1a8c8d9_0 + - libev=4.33=h642e427_1 + - libexpat=2.5.0=hb7217d7_1 + - libffi=3.4.2=h3422bc3_5 + - libgfortran-devel_osx-arm64=12.3.0=hc62be1c_1 + - libiconv=1.17=he4db4b2_0 + - 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 + - libzlib=1.2.13=h53f4e23_5 + - llvm-openmp=17.0.2=h1c12783_0 + - m4=1.4.18=h642e427_1001 + - make=4.3=he57ea6c_1 + - mathjax=3.2.2=hce30654_0 + - metis=5.1.0=h13dd4ca_1007 + - nauty=2.7.2=h3422bc3_0 + - ncurses=6.4=h7ea286d_0 + - palp=2.20=h27ca646_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 + - planarity=3.0.0.5=h27ca646_1002 + - python_abi=3.11=4_cp311 + - rhash=1.4.4=hb547adb_0 + - tzdata=2023c=h71feb2d_0 + - xz=5.2.6=h57fd34a_0 + - 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.2.1=h9f76cd9_0 + - isl=0.25=h9a09cb3_0 + - lerc=4.0.0=h9a09cb3_0 + - libbraiding=1.1=h9f76cd9_0 + - libedit=3.1.20191231=hc8eb9b7_2 + - libgfortran5=13.2.0=hf226fd6_1 + - libpng=1.6.39=h76d750c_0 + - libsqlite=3.43.0=hb31c410_0 + - libxml2=2.10.4=h2aff0a6_0 + - lrcalc=2.1=hb7217d7_5 + - ninja=1.11.1=hffc8910_0 + - openssl=3.1.3=h53f4e23_0 + - pari-seadata=0.0.20090618=0 + - pcre2=10.40=hb34f9b4_0 + - primesieve=11.0=hb7217d7_0 + - qhull=2020.2=hc021e02_2 + - readline=8.2=h92ec313_1 + - symmetrica=3.0.1=hb7217d7_0 + - tapi=1100.0.11=he4954df_0 + - tar=1.34=h7cb298e_1 + - tbb=2021.10.0=h1995070_1 + - texinfo=7.0=pl5321h9ea1dce_0 + - tk=8.6.13=hb31c410_0 + - zeromq=4.3.4=hbdafb3b_1 + - zlib=1.2.13=h53f4e23_5 + - zstd=1.5.5=h4f39d0f_0 + - automake=1.16.5=pl5321hce30654_0 + - cddlib=1!0.94m=h6d7a090_0 + - ecl=21.2.1=h8492d4d_2 + - 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 + - krb5=1.21.2=h92f50d5_0 + - libboost=1.82.0=h3f31f7c_2 + - libgfortran=5.0.0=13_2_0_hd922786_1 + - libglib=2.78.0=h24e9cb9_0 + - libhomfly=1.02r6=h27ca646_0 + - libllvm15=15.0.7=h62b9111_1 + - libnghttp2=1.52.0=hae82a92_0 + - libssh2=1.11.0=h7a5bd25_0 + - libtiff=4.5.0=h5dffbdd_2 + - m4ri=20140914=h17b34a0_1005 + - mpfr=4.2.0=he09a6ba_0 + - ntl=11.4.3=hbb3f309_1 + - pari=2.15.4=haeeeed7_2_pthread + - primecount=7.6=hb6e4faa_0 + - python=3.11.6=h47c9636_0_cpython + - sigtool=0.1.3=h44b9a77_0 + - sqlite=3.43.0=h203b68d_0 + - tachyon=0.99b6=hfb72b2a_1001 + - appdirs=1.4.4=pyh9f0ad1d_0 + - cachetools=5.3.1=pyhd8ed1ab_0 + - chardet=5.2.0=py311h267d04e_1 + - colorama=0.4.6=pyhd8ed1ab_0 + - distlib=0.3.7=pyhd8ed1ab_0 + - filelock=3.12.4=pyhd8ed1ab_0 + - fontconfig=2.14.2=h82840c6_0 + - gfan=0.6.2=hec08f5c_1003 + - lcalc=2.0.5=hc94e8e6_1 + - ld64_osx-arm64=609=hc4dc95b_14 + - libboost-devel=1.82.0=hf450f58_2 + - libbrial=1.2.12=ha7f5006_1 + - libclang-cpp15=15.0.7=default_h5dc8d65_3 + - libcurl=8.3.0=hc52a3a8_0 + - libflint=2.9.0=h173eafc_ntl_100 + - libopenblas=0.3.24=openmp_hd76b1f2_0 + - libwebp=1.2.4=h999c80f_1 + - llvm-tools=15.0.7=h62b9111_1 + - m4rie=20150908=h17b34a0_1001 + - maxima=5.45.0=h6032a66_2 + - mpc=1.3.1=h91ba8db_0 + - mpfi=1.5.4=hbde5f5b_1001 + - packaging=23.2=pyhd8ed1ab_0 + - pkg-config=0.29.2=hab62308_1008 + - pluggy=1.3.0=pyhd8ed1ab_0 + - ppl=1.2=h8b147cf_1006 + - qd=2.3.22=hbec66e7_1004 + - sympow=2.023.6=hb0babe8_3 + - tomli=2.0.1=pyhd8ed1ab_0 + - typing_extensions=4.8.0=pyha770c72_0 + - zipp=3.17.0=pyhd8ed1ab_0 + - arb=2.23.0=he5401aa_0 + - boost-cpp=1.82.0=h4ae65de_2 + - brial=1.2.12=pyh694c41f_1 + - cctools_osx-arm64=973.0.1=h2a25c60_14 + - clang-15=15.0.7=default_h5dc8d65_3 + - cmake=3.27.6=h1c59155_0 + - curl=8.3.0=hc52a3a8_0 + - eclib=20230424=haeb5157_0 + - fplll=5.4.4=h29209e0_0 + - gfortran_impl_osx-arm64=12.3.0=hbbb9e1e_1 + - importlib-metadata=6.8.0=pyha770c72_0 + - ld64=609=h89fa09d_14 + - libblas=3.9.0=18_osxarm64_openblas + - libgd=2.3.3=h8db8f0b_5 + - openblas=0.3.24=openmp_hce3e5ba_0 + - pyproject-api=1.6.1=pyhd8ed1ab_0 + - singular=4.2.1.p3=h3b80c97_2 + - typing-extensions=4.8.0=hd8ed1ab_0 + - cctools=973.0.1=hd1ac623_14 + - clang=15.0.7=hce30654_3 + - importlib_metadata=6.8.0=hd8ed1ab_0 + - libcblas=3.9.0=18_osxarm64_openblas + - liblapack=3.9.0=18_osxarm64_openblas + - platformdirs=3.11.0=pyhd8ed1ab_0 + - arpack=3.7.0=h58ebc17_2 + - clangxx=15.0.7=default_h610c423_3 + - fflas-ffpack=2.4.3=h11f2abc_2 + - gsl=2.7=h6e638da_0 + - iml=1.0.5=hd52f0d1_1003 + - liblapacke=3.9.0=18_osxarm64_openblas + - suitesparse=5.10.1=h7cd81ec_1 + - virtualenv=20.24.4=pyhd8ed1ab_0 + - blas-devel=3.9.0=18_osxarm64_openblas + - compiler-rt_osx-arm64=15.0.7=hf8d1dfb_1 + - giac=1.9.0.21=h1c96721_1 + - igraph=0.9.10=hcec9b84_1 + - linbox=1.6.3=h549c411_7 + - tox=4.11.3=pyhd8ed1ab_0 + - blas=2.118=openblas + - compiler-rt=15.0.7=hf8d1dfb_1 + - rw=0.9=h3422bc3_0 + - clang_osx-arm64=15.0.7=h77e971b_3 + - c-compiler=1.6.0=hd291e01_0 + - clangxx_osx-arm64=15.0.7=h768a7fd_3 + - gfortran_osx-arm64=12.3.0=h57527a5_1 + - cxx-compiler=1.6.0=h1995070_0 + - gfortran=12.3.0=h1ca8e4b_1 + - fortran-compiler=1.6.0=h5a50232_0 + - compilers=1.6.0=hce30654_0 diff --git a/environment-3.9-linux-aarch.yml b/environment-3.9-linux-aarch.yml new file mode 100644 index 00000000000..1092e32bc3c --- /dev/null +++ b/environment-3.9-linux-aarch.yml @@ -0,0 +1,193 @@ +# Generated by conda-lock. +# platform: linux-aarch64 +# input_hash: b80091dbe11b23ce87717308970146effd50010d5b6bd9405e4d56dd0c452aa6 + +channels: + - conda-forge +dependencies: + - _sysroot_linux-aarch64_curr_repodata_hack=4=h57d6b7b_13 + - ca-certificates=2023.7.22=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=hab24e00_0 + - kernel-headers_linux-aarch64=4.18.0=h5b4a56d_13 + - ld_impl_linux-aarch64=2.40=h2d8c526_0 + - libboost-headers=1.82.0=h8af1aa0_2 + - libgcc-devel_linux-aarch64=12.3.0=h8b5ab12_2 + - libgomp=13.2.0=hf8544c7_2 + - libstdcxx-devel_linux-aarch64=12.3.0=h8b5ab12_2 + - libstdcxx-ng=13.2.0=h9a76618_2 + - mathjax=3.2.2=h8af1aa0_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 + - python_abi=3.9=4_cp39 + - tzdata=2023c=h71feb2d_0 + - fonts-conda-forge=1=0 + - pari-seadata=0.0.20090618=0 + - sysroot_linux-aarch64=2.17=h5b4a56d_13 + - binutils_impl_linux-aarch64=2.40=h870a726_0 + - fonts-conda-ecosystem=1=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_2 + - bc=1.07.1=hf897c2e_0 + - bdw-gc=8.0.6=hd62202e_0 + - bzip2=1.0.8=hf897c2e_4 + - c-ares=1.20.1=h31becfc_0 + - cliquer=1.22=hb9de7d4_0 + - gengetopt=2.23=h01db608_0 + - gf2x=1.3.0=h1b3b3a3_2 + - giflib=5.2.1=hb4cce97_3 + - gmp=6.2.1=h7fd3ca4_0 + - icu=72.1=hcf00150_0 + - jpeg=9e=h2a766a3_3 + - keyutils=1.6.1=h4e544f5_0 + - lerc=4.0.0=h4de3ea5_0 + - libatomic_ops=7.6.14=h4e544f5_0 + - libbraiding=1.1=h7fd3ca4_0 + - libdeflate=1.17=hb4cce97_0 + - libev=4.33=h516909a_1 + - libexpat=2.5.0=hd600fc2_1 + - libffi=3.4.2=h3557bc0_5 + - libgfortran5=13.2.0=h582850c_2 + - libiconv=1.17=h9cdd2b7_0 + - libnsl=2.0.0=h31becfc_1 + - libsanitizer=12.3.0=h8ebda82_2 + - 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 + - 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.7.2=hf897c2e_0 + - ncurses=6.4=h2e1726e_0 + - ninja=1.11.1=hdd96247_0 + - openssl=3.1.3=h31becfc_0 + - palp=2.20=hb9de7d4_0 + - patch=2.7.6=hf897c2e_1002 + - pkg-config=0.29.2=hb9de7d4_1008 + - planarity=3.0.0.5=hb9de7d4_1002 + - primesieve=11.1=h2f0025b_0 + - qhull=2020.2=hd62202e_2 + - rhash=1.4.4=h31becfc_0 + - symmetrica=3.0.1=hd600fc2_0 + - xz=5.2.6=h9cdd2b7_0 + - 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_2 + - givaro=4.1.1=h192cbe9_1 + - glpk=5.0=h66325d0_0 + - libedit=3.1.20191231=he28a2e2_2 + - libgfortran-ng=13.2.0=he9431aa_2 + - libhomfly=1.02r6=hb9de7d4_0 + - libnghttp2=1.52.0=h250e5c5_0 + - libpng=1.6.39=hf9034f9_0 + - libsqlite=3.43.0=h194ca79_0 + - libssh2=1.11.0=h492db2e_0 + - libxml2=2.10.4=h430b14f_0 + - mpfr=4.2.0=h96f194b_0 + - ntl=11.4.3=h0d7519b_1 + - perl=5.32.1=4_h31becfc_perl5 + - primecount=7.9=hd600fc2_0 + - readline=8.2=h8fc344f_1 + - tar=1.34=h048efde_0 + - tk=8.6.13=h194ca79_0 + - zeromq=4.3.4=h01db608_1 + - zlib=1.2.13=h31becfc_5 + - zstd=1.5.5=h4c53e97_0 + - autoconf=2.71=pl5321h2148fe1_1 + - ecl=21.2.1=haa44c19_2 + - freetype=2.12.1=hf0a5ef3_2 + - 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_2 + - gxx_impl_linux-aarch64=12.3.0=hcde2664_2 + - krb5=1.21.2=hc419048_0 + - libboost=1.82.0=hbfc56d7_2 + - libflint=2.9.0=hd3470fa_ntl_100 + - libhwloc=2.9.1=h21e8147_0 + - libopenblas=0.3.23=pthreads_hd703e6f_0 + - libtiff=4.5.0=h4c1066a_2 + - llvm-openmp=17.0.2=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 + - qd=2.3.22=h05efe27_1004 + - sqlite=3.43.0=h3b3482f_0 + - tachyon=0.99b6=h63ab1d9_1001 + - texinfo=7.0=pl5321h17f021e_0 + - appdirs=1.4.4=pyh9f0ad1d_0 + - arb=2.23.0=h37d5dab_0 + - automake=1.16.5=pl5321h8af1aa0_0 + - c-compiler=1.6.0=h31becfc_0 + - cachetools=5.3.1=pyhd8ed1ab_0 + - chardet=5.2.0=py39ha65689a_1 + - colorama=0.4.6=pyhd8ed1ab_0 + - distlib=0.3.7=pyhd8ed1ab_0 + - eclib=20230424=h0bc7b0f_0 + - filelock=3.12.4=pyhd8ed1ab_0 + - fontconfig=2.14.2=ha9a116f_0 + - fplll=5.4.4=h5cd656c_0 + - gfortran=12.3.0=h8d4031d_2 + - gfortran_linux-aarch64=12.3.0=h1993883_2 + - gxx=12.3.0=hc1b51f9_2 + - gxx_linux-aarch64=12.3.0=h21accf6_2 + - lcalc=2.0.5=h3264cc0_1 + - libblas=3.9.0=17_linuxaarch64_openblas + - libboost-devel=1.82.0=h37bb5a9_2 + - libbrial=1.2.12=h17533bf_1 + - libcurl=8.3.0=h4e8248e_0 + - libwebp=1.2.4=h7bdf6e5_1 + - m4rie=20150908=h75e8696_1001 + - maxima=5.45.0=haa44c19_3 + - openblas=0.3.23=pthreads_hef96516_0 + - packaging=23.2=pyhd8ed1ab_0 + - pluggy=1.3.0=pyhd8ed1ab_0 + - singular=4.2.1.p3=h3d4c4c6_2 + - sympow=2.023.6=h157afb5_3 + - tbb=2021.9.0=h4c384f3_0 + - tomli=2.0.1=pyhd8ed1ab_0 + - typing_extensions=4.8.0=pyha770c72_0 + - zipp=3.17.0=pyhd8ed1ab_0 + - boost-cpp=1.82.0=h62f3a30_2 + - brial=1.2.12=pyh694c41f_1 + - cmake=3.27.6=hef020d8_0 + - curl=8.3.0=h4e8248e_0 + - cxx-compiler=1.6.0=h2a328a1_0 + - fortran-compiler=1.6.0=h7048d53_0 + - importlib-metadata=6.8.0=pyha770c72_0 + - libcblas=3.9.0=17_linuxaarch64_openblas + - libgd=2.3.3=h5fc1a20_5 + - liblapack=3.9.0=17_linuxaarch64_openblas + - pyproject-api=1.6.1=pyhd8ed1ab_0 + - typing-extensions=4.8.0=hd8ed1ab_0 + - arpack=3.7.0=hf862f49_2 + - compilers=1.6.0=h8af1aa0_0 + - fflas-ffpack=2.4.3=hf104d39_2 + - gsl=2.7=h294027d_0 + - iml=1.0.5=h9076c59_1003 + - importlib_metadata=6.8.0=hd8ed1ab_0 + - liblapacke=3.9.0=17_linuxaarch64_openblas + - platformdirs=3.11.0=pyhd8ed1ab_0 + - suitesparse=5.10.1=h1404dd6_1 + - blas-devel=3.9.0=17_linuxaarch64_openblas + - giac=1.9.0.21=h04922a4_1 + - igraph=0.9.10=hefb87a8_1 + - linbox=1.6.3=h31716a8_7 + - virtualenv=20.24.4=pyhd8ed1ab_0 + - blas=2.117=openblas + - rw=0.9=hf897c2e_0 + - tox=4.11.3=pyhd8ed1ab_0 diff --git a/environment-3.9-macos-arm.yml b/environment-3.9-macos-arm.yml new file mode 100644 index 00000000000..1211a5f1b3a --- /dev/null +++ b/environment-3.9-macos-arm.yml @@ -0,0 +1,191 @@ +# Generated by conda-lock. +# platform: osx-arm64 +# input_hash: 2b8fa23c9fb232fe288d390b0c1faf539cc05d5c2fac06ad67fc7f782a839da7 + +channels: + - conda-forge +dependencies: + - bc=1.07.1=h3422bc3_0 + - bzip2=1.0.8=h3422bc3_4 + - c-ares=1.20.1=h93a5062_0 + - ca-certificates=2023.7.22=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=hab24e00_0 + - giflib=5.2.1=h1a8c8d9_3 + - icu=72.1=he12128b_0 + - jpeg=9e=h1a8c8d9_3 + - libatomic_ops=7.6.14=h1a8c8d9_0 + - libboost-headers=1.82.0=hce30654_2 + - libcxx=16.0.6=h4653b0c_0 + - libdeflate=1.17=h1a8c8d9_0 + - libev=4.33=h642e427_1 + - libexpat=2.5.0=hb7217d7_1 + - libffi=3.4.2=h3422bc3_5 + - libgfortran-devel_osx-arm64=12.3.0=hc62be1c_1 + - libiconv=1.17=he4db4b2_0 + - 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 + - libzlib=1.2.13=h53f4e23_5 + - llvm-openmp=17.0.2=h1c12783_0 + - m4=1.4.18=h642e427_1001 + - make=4.3=he57ea6c_1 + - mathjax=3.2.2=hce30654_0 + - metis=5.1.0=h13dd4ca_1007 + - nauty=2.7.2=h3422bc3_0 + - ncurses=6.4=h7ea286d_0 + - palp=2.20=h27ca646_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 + - planarity=3.0.0.5=h27ca646_1002 + - python_abi=3.9=4_cp39 + - rhash=1.4.4=hb547adb_0 + - tzdata=2023c=h71feb2d_0 + - xz=5.2.6=h57fd34a_0 + - 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.2.1=h9f76cd9_0 + - isl=0.25=h9a09cb3_0 + - lerc=4.0.0=h9a09cb3_0 + - libbraiding=1.1=h9f76cd9_0 + - libedit=3.1.20191231=hc8eb9b7_2 + - libgfortran5=13.2.0=hf226fd6_1 + - libpng=1.6.39=h76d750c_0 + - libsqlite=3.43.0=hb31c410_0 + - libxml2=2.10.4=h2aff0a6_0 + - lrcalc=2.1=hb7217d7_5 + - ninja=1.11.1=hffc8910_0 + - openssl=3.1.3=h53f4e23_0 + - pari-seadata=0.0.20090618=0 + - pcre2=10.40=hb34f9b4_0 + - primesieve=11.0=hb7217d7_0 + - qhull=2020.2=hc021e02_2 + - readline=8.2=h92ec313_1 + - symmetrica=3.0.1=hb7217d7_0 + - tapi=1100.0.11=he4954df_0 + - tar=1.34=h7cb298e_1 + - tbb=2021.10.0=h1995070_1 + - texinfo=7.0=pl5321h9ea1dce_0 + - tk=8.6.13=hb31c410_0 + - zeromq=4.3.4=hbdafb3b_1 + - zlib=1.2.13=h53f4e23_5 + - zstd=1.5.5=h4f39d0f_0 + - automake=1.16.5=pl5321hce30654_0 + - cddlib=1!0.94m=h6d7a090_0 + - ecl=21.2.1=h8492d4d_2 + - 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 + - krb5=1.21.2=h92f50d5_0 + - libboost=1.82.0=h3f31f7c_2 + - libgfortran=5.0.0=13_2_0_hd922786_1 + - libglib=2.78.0=h24e9cb9_0 + - libhomfly=1.02r6=h27ca646_0 + - libllvm15=15.0.7=h62b9111_1 + - libnghttp2=1.52.0=hae82a92_0 + - libssh2=1.11.0=h7a5bd25_0 + - libtiff=4.5.0=h5dffbdd_2 + - m4ri=20140914=h17b34a0_1005 + - mpfr=4.2.0=he09a6ba_0 + - ntl=11.4.3=hbb3f309_1 + - pari=2.15.4=haeeeed7_2_pthread + - primecount=7.6=hb6e4faa_0 + - python=3.9.18=hfa1ae8a_0_cpython + - sigtool=0.1.3=h44b9a77_0 + - sqlite=3.43.0=h203b68d_0 + - tachyon=0.99b6=hfb72b2a_1001 + - appdirs=1.4.4=pyh9f0ad1d_0 + - cachetools=5.3.1=pyhd8ed1ab_0 + - chardet=5.2.0=py39h2804cbe_1 + - colorama=0.4.6=pyhd8ed1ab_0 + - distlib=0.3.7=pyhd8ed1ab_0 + - filelock=3.12.4=pyhd8ed1ab_0 + - fontconfig=2.14.2=h82840c6_0 + - gfan=0.6.2=hec08f5c_1003 + - lcalc=2.0.5=hc94e8e6_1 + - ld64_osx-arm64=609=hc4dc95b_14 + - libboost-devel=1.82.0=hf450f58_2 + - libbrial=1.2.12=ha7f5006_1 + - libclang-cpp15=15.0.7=default_h5dc8d65_3 + - libcurl=8.3.0=hc52a3a8_0 + - libflint=2.9.0=h173eafc_ntl_100 + - libopenblas=0.3.24=openmp_hd76b1f2_0 + - libwebp=1.2.4=h999c80f_1 + - llvm-tools=15.0.7=h62b9111_1 + - m4rie=20150908=h17b34a0_1001 + - maxima=5.45.0=h6032a66_2 + - mpc=1.3.1=h91ba8db_0 + - mpfi=1.5.4=hbde5f5b_1001 + - packaging=23.2=pyhd8ed1ab_0 + - pkg-config=0.29.2=hab62308_1008 + - pluggy=1.3.0=pyhd8ed1ab_0 + - ppl=1.2=h8b147cf_1006 + - qd=2.3.22=hbec66e7_1004 + - sympow=2.023.6=hb0babe8_3 + - tomli=2.0.1=pyhd8ed1ab_0 + - typing_extensions=4.8.0=pyha770c72_0 + - zipp=3.17.0=pyhd8ed1ab_0 + - arb=2.23.0=he5401aa_0 + - boost-cpp=1.82.0=h4ae65de_2 + - brial=1.2.12=pyh694c41f_1 + - cctools_osx-arm64=973.0.1=h2a25c60_14 + - clang-15=15.0.7=default_h5dc8d65_3 + - cmake=3.27.6=h1c59155_0 + - curl=8.3.0=hc52a3a8_0 + - eclib=20230424=haeb5157_0 + - fplll=5.4.4=h29209e0_0 + - gfortran_impl_osx-arm64=12.3.0=hbbb9e1e_1 + - importlib-metadata=6.8.0=pyha770c72_0 + - ld64=609=h89fa09d_14 + - libblas=3.9.0=18_osxarm64_openblas + - libgd=2.3.3=h8db8f0b_5 + - openblas=0.3.24=openmp_hce3e5ba_0 + - pyproject-api=1.6.1=pyhd8ed1ab_0 + - singular=4.2.1.p3=h3b80c97_2 + - typing-extensions=4.8.0=hd8ed1ab_0 + - cctools=973.0.1=hd1ac623_14 + - clang=15.0.7=hce30654_3 + - importlib_metadata=6.8.0=hd8ed1ab_0 + - libcblas=3.9.0=18_osxarm64_openblas + - liblapack=3.9.0=18_osxarm64_openblas + - platformdirs=3.11.0=pyhd8ed1ab_0 + - arpack=3.7.0=h58ebc17_2 + - clangxx=15.0.7=default_h610c423_3 + - fflas-ffpack=2.4.3=h11f2abc_2 + - gsl=2.7=h6e638da_0 + - iml=1.0.5=hd52f0d1_1003 + - liblapacke=3.9.0=18_osxarm64_openblas + - suitesparse=5.10.1=h7cd81ec_1 + - virtualenv=20.24.4=pyhd8ed1ab_0 + - blas-devel=3.9.0=18_osxarm64_openblas + - compiler-rt_osx-arm64=15.0.7=hf8d1dfb_1 + - giac=1.9.0.21=h1c96721_1 + - igraph=0.9.10=hcec9b84_1 + - linbox=1.6.3=h549c411_7 + - tox=4.11.3=pyhd8ed1ab_0 + - blas=2.118=openblas + - compiler-rt=15.0.7=hf8d1dfb_1 + - rw=0.9=h3422bc3_0 + - clang_osx-arm64=15.0.7=h77e971b_3 + - c-compiler=1.6.0=hd291e01_0 + - clangxx_osx-arm64=15.0.7=h768a7fd_3 + - gfortran_osx-arm64=12.3.0=h57527a5_1 + - cxx-compiler=1.6.0=h1995070_0 + - gfortran=12.3.0=h1ca8e4b_1 + - fortran-compiler=1.6.0=h5a50232_0 + - compilers=1.6.0=hce30654_0 diff --git a/src/environment-3.10-linux-aarch.yml b/src/environment-3.10-linux-aarch.yml new file mode 100644 index 00000000000..074c19d033b --- /dev/null +++ b/src/environment-3.10-linux-aarch.yml @@ -0,0 +1,427 @@ +# Generated by conda-lock. +# platform: linux-aarch64 +# input_hash: b0cea005268a9922484681414f4d36234cbd4d755d047df41f6e54067ff138b9 + +channels: + - conda-forge +dependencies: + - _r-mutex=1.0.1=anacondar_1 + - _sysroot_linux-aarch64_curr_repodata_hack=4=h57d6b7b_13 + - ca-certificates=2023.7.22=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=hab24e00_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_2 + - libgomp=13.2.0=hf8544c7_2 + - libstdcxx-devel_linux-aarch64=12.3.0=h8b5ab12_2 + - libstdcxx-ng=13.2.0=h9a76618_2 + - mathjax=3.2.2=h8af1aa0_0 + - pandoc=3.1.3=h8af1aa0_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 + - 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 + - fonts-conda-forge=1=0 + - 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 + - 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_2 + - alsa-lib=1.2.8=h4e544f5_0 + - bc=1.07.1=hf897c2e_0 + - bdw-gc=8.0.6=hd62202e_0 + - bzip2=1.0.8=hf897c2e_4 + - c-ares=1.20.1=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.2.1=h7fd3ca4_0 + - graphite2=1.3.13=h7fd3ca4_1001 + - icu=70.1=ha18d298_0 + - jpeg=9e=h2a766a3_3 + - keyutils=1.6.1=h4e544f5_0 + - lerc=4.0.0=h4de3ea5_0 + - libatomic_ops=7.6.14=h4e544f5_0 + - libbraiding=1.1=h7fd3ca4_0 + - libbrotlicommon=1.1.0=h31becfc_1 + - libdeflate=1.17=hb4cce97_0 + - libev=4.33=h516909a_1 + - libexpat=2.5.0=hd600fc2_1 + - libffi=3.4.2=h3557bc0_5 + - libgfortran5=13.2.0=h582850c_2 + - libiconv=1.17=h9cdd2b7_0 + - libnsl=2.0.0=h31becfc_1 + - libsanitizer=12.3.0=h8ebda82_2 + - 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 + - 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.7.2=hf897c2e_0 + - ncurses=6.4=h2e1726e_0 + - ninja=1.11.1=hdd96247_0 + - openssl=3.1.3=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_2 + - 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_2 + - libhomfly=1.02r6=hb9de7d4_0 + - libnghttp2=1.52.0=h250e5c5_0 + - libpng=1.6.39=hf9034f9_0 + - libsqlite=3.43.0=h194ca79_0 + - libssh2=1.11.0=h492db2e_0 + - libxcb=1.13=h3557bc0_1004 + - libxml2=2.10.3=habe54e3_4 + - mpfr=4.2.0=h96f194b_0 + - ntl=11.4.3=h0d7519b_1 + - pcre2=10.40=he7b27c6_0 + - perl=5.32.1=4_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.4=h01db608_1 + - 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_2 + - gxx_impl_linux-aarch64=12.3.0=hcde2664_2 + - krb5=1.20.1=h113d92e_0 + - libflint=2.9.0=hd3470fa_ntl_100 + - libglib=2.78.0=h0464669_0 + - libhwloc=2.9.1=h21e8147_0 + - libopenblas=0.3.23=pthreads_hd703e6f_0 + - libtiff=4.5.0=h4c1066a_2 + - llvm-openmp=17.0.2=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.12=hbbe8eec_0_cpython + - qd=2.3.22=h05efe27_1004 + - sqlite=3.43.0=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 + - arb=2.23.0=h37d5dab_0 + - attrs=23.1.0=pyh71513ae_1 + - automake=1.16.5=pl5321h8af1aa0_0 + - backcall=0.2.0=pyh9f0ad1d_0 + - backports=1.0=pyhd8ed1ab_3 + - 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.1=pyhd8ed1ab_0 + - certifi=2023.7.22=pyhd8ed1ab_0 + - chardet=5.2.0=py310hbbe02a8_1 + - charset-normalizer=3.3.0=pyhd8ed1ab_0 + - colorama=0.4.6=pyhd8ed1ab_0 + - cycler=0.12.1=pyhd8ed1ab_0 + - cysignals=1.11.2=py310h485802a_3 + - cython=3.0.2=py310hbb3657e_2 + - debugpy=1.8.0=py310hbb3657e_1 + - decorator=5.1.1=pyhd8ed1ab_0 + - defusedxml=0.7.1=pyhd8ed1ab_0 + - distlib=0.3.7=pyhd8ed1ab_0 + - docutils=0.20.1=py310hbbe02a8_2 + - eclib=20230424=h0bc7b0f_0 + - editables=0.3=pyhd8ed1ab_0 + - entrypoints=0.4=pyhd8ed1ab_0 + - exceptiongroup=1.1.3=pyhd8ed1ab_0 + - executing=1.2.0=pyhd8ed1ab_0 + - filelock=3.12.4=pyhd8ed1ab_0 + - flit-core=3.9.0=pyhd8ed1ab_0 + - fontconfig=2.14.2=ha9a116f_0 + - fplll=5.4.4=h5cd656c_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.4=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=1.1.7=pyhd8ed1ab_0 + - kiwisolver=1.4.5=py310he290b8a_1 + - lcalc=2.0.5=h3264cc0_1 + - lcms2=2.15=h7576be9_0 + - libblas=3.9.0=17_linuxaarch64_openblas + - libbrial=1.2.12=h17533bf_1 + - libcups=2.3.3=h4303303_3 + - libcurl=8.1.2=hc34909b_0 + - libwebp=1.2.4=h7bdf6e5_1 + - m4rie=20150908=h75e8696_1001 + - markupsafe=2.1.3=py310h7c1f4a2_1 + - maxima=5.45.0=haa44c19_3 + - mistune=3.0.1=pyhd8ed1ab_0 + - mpmath=1.3.0=pyhd8ed1ab_0 + - munkres=1.1.4=pyh9f0ad1d_0 + - nest-asyncio=1.5.6=pyhd8ed1ab_0 + - networkx=2.8.8=pyhd8ed1ab_0 + - openblas=0.3.23=pthreads_hef96516_0 + - openjpeg=2.5.0=h9508984_2 + - packaging=23.2=pyhd8ed1ab_0 + - pandocfilters=1.5.0=pyhd8ed1ab_0 + - parso=0.8.3=pyhd8ed1ab_0 + - pathspec=0.11.2=pyhd8ed1ab_0 + - pickleshare=0.7.5=py_1003 + - pkgconfig=1.5.5=pyhd8ed1ab_4 + - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 + - pluggy=1.3.0=pyhd8ed1ab_0 + - ply=3.11=py_1 + - prometheus_client=0.17.1=pyhd8ed1ab_0 + - psutil=5.9.5=py310hb299538_1 + - 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.16.1=pyhd8ed1ab_0 + - pyparsing=3.1.1=pyhd8ed1ab_0 + - pyrsistent=0.19.3=py310h7c1f4a2_1 + - pysocks=1.7.1=pyha2e5f31_6 + - python-fastjsonschema=2.18.1=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.1=py310hdaec954_1 + - rfc3986-validator=0.1.1=pyh9f0ad1d_0 + - rpds-py=0.10.4=py310h057607a_0 + - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 + - sagetex=3.6.1=pyhd8ed1ab_0 + - send2trash=1.8.2=pyh41d4057_0 + - setuptools=63.4.3=py310hbbe02a8_0 + - simplegeneric=0.8.1=py_1 + - singular=4.2.1.p3=h3d4c4c6_2 + - 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.11.2=pyhd8ed1ab_0 + - trove-classifiers=2023.9.19=pyhd8ed1ab_0 + - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 + - typing_extensions=4.8.0=pyha770c72_0 + - typing_utils=0.1.0=pyhd8ed1ab_0 + - tzlocal=5.1=py310h4c7bcd0_0 + - unicodedata2=15.1.0=py310hb299538_0 + - uri-template=1.3.0=pyhd8ed1ab_0 + - vcversioner=2.16.0.0=py_1 + - webcolors=1.13=pyhd8ed1ab_0 + - webencodings=0.5.1=pyhd8ed1ab_2 + - websocket-client=1.6.4=pyhd8ed1ab_0 + - wheel=0.41.2=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 + - zipp=3.17.0=pyhd8ed1ab_0 + - anyio=4.0.0=pyhd8ed1ab_0 + - asttokens=2.4.0=pyhd8ed1ab_0 + - async-lru=2.0.4=pyhd8ed1ab_0 + - babel=2.12.1=pyhd8ed1ab_1 + - backports.functools_lru_cache=1.6.5=pyhd8ed1ab_0 + - beautifulsoup4=4.12.2=pyha770c72_0 + - beniget=0.4.1=pyhd8ed1ab_0 + - bleach=6.1.0=pyhd8ed1ab_0 + - 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 + - cxx-compiler=1.6.0=h2a328a1_0 + - cypari2=2.1.3=py310h4cbba44_2 + - deprecation=2.1.0=pyh9f0ad1d_0 + - fonttools=4.43.1=py310hb299538_0 + - fortran-compiler=1.6.0=h7048d53_0 + - importlib-metadata=6.8.0=pyha770c72_0 + - importlib_resources=6.1.0=pyhd8ed1ab_0 + - jedi=0.19.1=pyhd8ed1ab_0 + - jinja2=3.1.2=pyhd8ed1ab_1 + - jupyterlab_pygments=0.2.2=pyhd8ed1ab_0 + - libcblas=3.9.0=17_linuxaarch64_openblas + - libgd=2.3.3=h99c6b3b_4 + - liblapack=3.9.0=17_linuxaarch64_openblas + - matplotlib-inline=0.1.6=pyhd8ed1ab_0 + - memory-allocator=0.1.2=py310h761cc84_2 + - overrides=7.4.0=pyhd8ed1ab_0 + - pexpect=4.8.0=pyh1a96a4e_2 + - pillow=9.4.0=py310h2843b5e_1 + - pip=23.2.1=pyhd8ed1ab_0 + - pplpy=0.8.7=py310hd5c817c_0 + - primecountpy=0.1.0=py310h586407a_4 + - pybind11=2.11.1=py310h586407a_2 + - pyproject-api=1.6.1=pyhd8ed1ab_0 + - python-dateutil=2.8.2=pyhd8ed1ab_0 + - pytz-deprecation-shim=0.1.0.post0=py310h4c7bcd0_4 + - referencing=0.30.2=pyhd8ed1ab_0 + - rfc3339-validator=0.1.4=pyhd8ed1ab_0 + - sagemath-db-conway-polynomials=0.5.0=h4fd8a4c_1 + - sympy=1.12=pypyh9d50eac_103 + - terminado=0.17.1=pyh41d4057_0 + - tinycss2=1.2.1=pyhd8ed1ab_0 + - typing-extensions=4.8.0=hd8ed1ab_0 + - urllib3=2.0.6=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 + - 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.18.0=pyhd8ed1ab_0 + - iml=1.0.5=h9076c59_1003 + - importlib-resources=6.1.0=pyhd8ed1ab_0 + - importlib_metadata=6.8.0=hd8ed1ab_0 + - jsonschema-specifications=2023.7.1=pyhd8ed1ab_0 + - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1 + - liblapacke=3.9.0=17_linuxaarch64_openblas + - numpy=1.26.0=py310hcbab775_0 + - platformdirs=3.11.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 + - wcwidth=0.2.8=pyhd8ed1ab_0 + - xorg-libxtst=1.2.3=hf897c2e_1002 + - argon2-cffi=23.1.0=pyhd8ed1ab_0 + - blas-devel=3.9.0=17_linuxaarch64_openblas + - contourpy=1.1.1=py310h586407a_1 + - cvxopt=1.3.2=py310h536486b_1 + - fpylll=0.5.9=py310hde12f47_1 + - giac=1.9.0.21=h04922a4_1 + - igraph=0.9.10=hefb87a8_1 + - isoduration=20.11.0=pyhd8ed1ab_0 + - jsonschema=4.19.1=pyhd8ed1ab_0 + - jupyter_core=5.3.2=py310h4c7bcd0_0 + - linbox=1.6.3=h31716a8_7 + - openjdk=17.0.3=h1a274e0_5 + - pango=1.50.14=h1f1e9b3_0 + - pooch=1.7.0=pyhd8ed1ab_4 + - prompt-toolkit=3.0.39=pyha770c72_0 + - pythran=0.14.0=py310h5e48e15_1 + - setuptools_scm=8.0.4=hd8ed1ab_0 + - virtualenv=20.24.4=pyhd8ed1ab_0 + - blas=2.117=openblas + - jmol=14.32.10=h8af1aa0_0 + - jsonschema-with-format-nongpl=4.19.1=pyhd8ed1ab_0 + - jupyter_client=8.3.1=pyhd8ed1ab_0 + - matplotlib-base=3.8.0=py310h0a7f329_1 + - nbformat=5.9.2=pyhd8ed1ab_0 + - prompt_toolkit=3.0.39=hd8ed1ab_0 + - r-base=4.2.3=h620ca72_0 + - rw=0.9=hf897c2e_0 + - scipy=1.10.1=py310h7f380f4_3 + - tox=4.11.3=pyhd8ed1ab_0 + - ipython=8.16.1=pyh0d859eb_0 + - jupyter_events=0.7.0=pyhd8ed1ab_2 + - matplotlib=3.8.0=py310hbbe02a8_1 + - nbclient=0.8.0=pyhd8ed1ab_0 + - rpy2=3.5.11=py310r42h8b6b5fc_3 + - ipykernel=6.25.2=pyh2140261_0 + - nbconvert-core=7.9.2=pyhd8ed1ab_0 + - jupyter_server=2.7.3=pyhd8ed1ab_1 + - nbconvert-pandoc=7.9.2=pyhd8ed1ab_0 + - jupyter-lsp=2.2.0=pyhd8ed1ab_0 + - jupyterlab_server=2.25.0=pyhd8ed1ab_0 + - nbconvert=7.9.2=pyhd8ed1ab_0 + - notebook-shim=0.2.3=pyhd8ed1ab_0 + - jupyterlab=4.0.6=pyhd8ed1ab_0 + - notebook=7.0.4=pyhd8ed1ab_0 + - widgetsnbextension=3.6.6=pyhd8ed1ab_0 + - ipywidgets=7.8.0=pyhd8ed1ab_0 + - jupyter-jsmol=2022.1.0=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 diff --git a/src/environment-3.10-macos-arm.yml b/src/environment-3.10-macos-arm.yml new file mode 100644 index 00000000000..d9a30147634 --- /dev/null +++ b/src/environment-3.10-macos-arm.yml @@ -0,0 +1,405 @@ +# Generated by conda-lock. +# platform: osx-arm64 +# input_hash: 63981a71c50eece93109eb42610d705f110b9e1a5958be7e7e5ccd5d2674f7a8 + +channels: + - conda-forge +dependencies: + - _r-mutex=1.0.1=anacondar_1 + - bc=1.07.1=h3422bc3_0 + - bzip2=1.0.8=h3422bc3_4 + - c-ares=1.20.1=h93a5062_0 + - ca-certificates=2023.7.22=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=hab24e00_0 + - fribidi=1.0.10=h27ca646_0 + - giflib=5.2.1=h1a8c8d9_3 + - jpeg=9e=h1a8c8d9_3 + - libatomic_ops=7.6.14=h1a8c8d9_0 + - libbrotlicommon=1.1.0=hb547adb_1 + - libcxx=16.0.6=h4653b0c_0 + - libdeflate=1.17=h1a8c8d9_0 + - libev=4.33=h642e427_1 + - libexpat=2.5.0=hb7217d7_1 + - libffi=3.4.2=h3422bc3_5 + - libgfortran-devel_osx-arm64=12.3.0=hc62be1c_1 + - libiconv=1.17=he4db4b2_0 + - 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 + - libzlib=1.2.13=h53f4e23_5 + - llvm-openmp=17.0.2=h1c12783_0 + - m4=1.4.18=h642e427_1001 + - make=4.3=he57ea6c_1 + - mathjax=3.2.2=hce30654_0 + - metis=5.1.0=h13dd4ca_1007 + - nauty=2.7.2=h3422bc3_0 + - ncurses=6.4=h7ea286d_0 + - 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 + - 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 + - three.js=122=hd8ed1ab_2 + - tzdata=2023c=h71feb2d_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.2.1=h9f76cd9_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.1=h9f76cd9_0 + - libbrotlidec=1.1.0=hb547adb_1 + - libbrotlienc=1.1.0=hb547adb_1 + - libedit=3.1.20191231=hc8eb9b7_2 + - libgfortran5=13.2.0=hf226fd6_1 + - libpng=1.6.39=h76d750c_0 + - libsqlite=3.43.0=hb31c410_0 + - libxcb=1.13=h9b22ae9_1004 + - lrcalc=2.1=hb7217d7_5 + - ninja=1.11.1=hffc8910_0 + - openjdk=20.0.2=hbe7ddab_2 + - openssl=3.1.3=h53f4e23_0 + - pari-seadata=0.0.20090618=0 + - pcre2=10.40=hb34f9b4_0 + - pixman=0.42.2=h13dd4ca_0 + - primesieve=11.0=hb7217d7_0 + - qhull=2020.2=hc021e02_2 + - readline=8.2=h92ec313_1 + - symmetrica=3.0.1=hb7217d7_0 + - tapi=1100.0.11=he4954df_0 + - tar=1.34=h7cb298e_1 + - tbb=2021.10.0=h1995070_1 + - texinfo=7.0=pl5321h9ea1dce_0 + - threejs-sage=122=hd8ed1ab_2 + - tk=8.6.13=hb31c410_0 + - zeromq=4.3.4=hbdafb3b_1 + - 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 + - ecl=21.2.1=h8492d4d_2 + - ecm=7.0.4=h47c7c1a_1002 + - fonts-conda-ecosystem=1=0 + - freetype=2.12.1=hadb7bae_2 + - gap-core=4.12.2=he8f4e70_3 + - givaro=4.1.1=h0cdca34_3 + - glpk=5.0=h6d7a090_0 + - jmol=14.32.10=hce30654_0 + - krb5=1.20.1=h69eda48_0 + - libgfortran=5.0.0=13_2_0_hd922786_1 + - libglib=2.78.0=h24e9cb9_0 + - libhomfly=1.02r6=h27ca646_0 + - libnghttp2=1.52.0=hae82a92_0 + - libssh2=1.11.0=h7a5bd25_0 + - libtiff=4.5.0=h5dffbdd_2 + - libxml2=2.10.3=h67585b2_4 + - m4ri=20140914=h17b34a0_1005 + - mpfr=4.2.0=he09a6ba_0 + - ntl=11.4.3=hbb3f309_1 + - pari=2.15.4=haeeeed7_2_pthread + - primecount=7.6=hb6e4faa_0 + - python=3.10.12=h01493a6_0_cpython + - sigtool=0.1.3=h44b9a77_0 + - sqlite=3.43.0=h203b68d_0 + - tachyon=0.99b6=hfb72b2a_1001 + - tktable=2.10=hd996620_5 + - alabaster=0.7.13=pyhd8ed1ab_0 + - appdirs=1.4.4=pyh9f0ad1d_0 + - appnope=0.1.3=pyhd8ed1ab_0 + - attrs=23.1.0=pyh71513ae_1 + - backcall=0.2.0=pyh9f0ad1d_0 + - backports=1.0=pyhd8ed1ab_3 + - brotli=1.1.0=hb547adb_1 + - brotli-python=1.1.0=py310h1253130_1 + - cached_property=1.5.2=pyha770c72_1 + - cachetools=5.3.1=pyhd8ed1ab_0 + - certifi=2023.7.22=pyhd8ed1ab_0 + - chardet=5.2.0=py310hbe9552e_1 + - charset-normalizer=3.3.0=pyhd8ed1ab_0 + - colorama=0.4.6=pyhd8ed1ab_0 + - cycler=0.12.1=pyhd8ed1ab_0 + - cysignals=1.11.2=py310hfd3b3fe_3 + - cython=3.0.2=py310h1253130_2 + - debugpy=1.8.0=py310h1253130_1 + - decorator=5.1.1=pyhd8ed1ab_0 + - defusedxml=0.7.1=pyhd8ed1ab_0 + - distlib=0.3.7=pyhd8ed1ab_0 + - docutils=0.20.1=py310hbe9552e_2 + - editables=0.3=pyhd8ed1ab_0 + - entrypoints=0.4=pyhd8ed1ab_0 + - exceptiongroup=1.1.3=pyhd8ed1ab_0 + - executing=1.2.0=pyhd8ed1ab_0 + - fftw=3.3.10=nompi_h3046061_108 + - filelock=3.12.4=pyhd8ed1ab_0 + - flit-core=3.9.0=pyhd8ed1ab_0 + - fontconfig=2.14.2=h82840c6_0 + - gap-defaults=4.12.2=hce30654_3 + - gast=0.5.4=pyhd8ed1ab_0 + - gfan=0.6.2=hec08f5c_1003 + - idna=3.4=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=1.1.7=pyhd8ed1ab_0 + - kiwisolver=1.4.5=py310h38f39d4_1 + - lcalc=2.0.5=hc94e8e6_1 + - lcms2=2.15=h481adae_0 + - libbrial=1.2.12=ha7f5006_1 + - libcurl=8.1.2=h912dcd9_0 + - libflint=2.9.0=h173eafc_ntl_100 + - libllvm15=15.0.7=h62b9111_1 + - libopenblas=0.3.24=openmp_hd76b1f2_0 + - libwebp=1.2.4=h999c80f_1 + - m4rie=20150908=h17b34a0_1001 + - markupsafe=2.1.3=py310h2aa6e3c_1 + - maxima=5.45.0=h6032a66_2 + - mistune=3.0.1=pyhd8ed1ab_0 + - mpc=1.3.1=h91ba8db_0 + - mpfi=1.5.4=hbde5f5b_1001 + - mpmath=1.3.0=pyhd8ed1ab_0 + - munkres=1.1.4=pyh9f0ad1d_0 + - nest-asyncio=1.5.6=pyhd8ed1ab_0 + - networkx=2.8.8=pyhd8ed1ab_0 + - openjpeg=2.5.0=hbc2ba62_2 + - packaging=23.2=pyhd8ed1ab_0 + - pandocfilters=1.5.0=pyhd8ed1ab_0 + - parso=0.8.3=pyhd8ed1ab_0 + - pathspec=0.11.2=pyhd8ed1ab_0 + - pickleshare=0.7.5=py_1003 + - pkg-config=0.29.2=hab62308_1008 + - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 + - pluggy=1.3.0=pyhd8ed1ab_0 + - ply=3.11=py_1 + - ppl=1.2=h8b147cf_1006 + - prometheus_client=0.17.1=pyhd8ed1ab_0 + - psutil=5.9.5=py310h2aa6e3c_1 + - 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.16.1=pyhd8ed1ab_0 + - pyparsing=3.1.1=pyhd8ed1ab_0 + - pyrsistent=0.19.3=py310h2aa6e3c_1 + - pysocks=1.7.1=pyha2e5f31_6 + - python-fastjsonschema=2.18.1=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.1=py310h30b7201_1 + - qd=2.3.22=hbec66e7_1004 + - rfc3986-validator=0.1.1=pyh9f0ad1d_0 + - rpds-py=0.10.4=py310hd442715_0 + - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 + - sagetex=3.6.1=pyhd8ed1ab_0 + - setuptools=63.4.3=py310hbe9552e_0 + - simplegeneric=0.8.1=py_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.11.2=pyhd8ed1ab_0 + - trove-classifiers=2023.9.19=pyhd8ed1ab_0 + - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 + - typing_extensions=4.8.0=pyha770c72_0 + - typing_utils=0.1.0=pyhd8ed1ab_0 + - tzlocal=5.1=py310hbe9552e_0 + - unicodedata2=15.1.0=py310h2aa6e3c_0 + - uri-template=1.3.0=pyhd8ed1ab_0 + - vcversioner=2.16.0.0=py_1 + - webcolors=1.13=pyhd8ed1ab_0 + - webencodings=0.5.1=pyhd8ed1ab_2 + - websocket-client=1.6.4=pyhd8ed1ab_0 + - wheel=0.41.2=pyhd8ed1ab_0 + - zipp=3.17.0=pyhd8ed1ab_0 + - anyio=4.0.0=pyhd8ed1ab_0 + - arb=2.23.0=he5401aa_0 + - asttokens=2.4.0=pyhd8ed1ab_0 + - async-lru=2.0.4=pyhd8ed1ab_0 + - babel=2.12.1=pyhd8ed1ab_1 + - backports.functools_lru_cache=1.6.5=pyhd8ed1ab_0 + - beautifulsoup4=4.12.2=pyha770c72_0 + - beniget=0.4.1=pyhd8ed1ab_0 + - bleach=6.1.0=pyhd8ed1ab_0 + - brial=1.2.12=pyh694c41f_1 + - cached-property=1.5.2=hd8ed1ab_1 + - cairo=1.16.0=h73a0509_1014 + - cffi=1.16.0=py310hdcd7c05_0 + - 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 + - eclib=20230424=haeb5157_0 + - fonttools=4.43.1=py310hd125d64_0 + - fplll=5.4.4=h29209e0_0 + - gfortran_impl_osx-arm64=12.3.0=hbbb9e1e_1 + - gmpy2=2.1.2=py310h2e6cad2_1 + - importlib-metadata=6.8.0=pyha770c72_0 + - importlib_resources=6.1.0=pyhd8ed1ab_0 + - jedi=0.19.1=pyhd8ed1ab_0 + - jinja2=3.1.2=pyhd8ed1ab_1 + - jupyterlab_pygments=0.2.2=pyhd8ed1ab_0 + - ld64_osx-arm64=609=hc4dc95b_14 + - libblas=3.9.0=18_osxarm64_openblas + - libclang-cpp15=15.0.7=default_h5dc8d65_3 + - libgd=2.3.3=h90fb8ed_4 + - llvm-tools=15.0.7=h62b9111_1 + - matplotlib-inline=0.1.6=pyhd8ed1ab_0 + - memory-allocator=0.1.2=py310h8e9501a_2 + - openblas=0.3.24=openmp_hce3e5ba_0 + - overrides=7.4.0=pyhd8ed1ab_0 + - pexpect=4.8.0=pyh1a96a4e_2 + - pillow=9.4.0=py310h5a7539a_1 + - pip=23.2.1=pyhd8ed1ab_0 + - pkgconfig=1.5.5=pyhd8ed1ab_4 + - primecountpy=0.1.0=py310h38f39d4_4 + - pybind11=2.11.1=py310h38f39d4_2 + - pyobjc-core=10.0=py310hd07e440_0 + - pyproject-api=1.6.1=pyhd8ed1ab_0 + - python-dateutil=2.8.2=pyhd8ed1ab_0 + - pytz-deprecation-shim=0.1.0.post0=py310hbe9552e_4 + - referencing=0.30.2=pyhd8ed1ab_0 + - rfc3339-validator=0.1.4=pyhd8ed1ab_0 + - sagemath-db-conway-polynomials=0.5.0=h4653dfc_1 + - singular=4.2.1.p3=h3b80c97_2 + - terminado=0.17.1=pyhd1c38e8_0 + - tinycss2=1.2.1=pyhd8ed1ab_0 + - typing-extensions=4.8.0=hd8ed1ab_0 + - urllib3=2.0.6=pyhd8ed1ab_0 + - argon2-cffi-bindings=21.2.0=py310h2aa6e3c_4 + - arrow=1.3.0=pyhd8ed1ab_0 + - cctools_osx-arm64=973.0.1=h2a25c60_14 + - clang-15=15.0.7=default_h5dc8d65_3 + - fqdn=1.5.1=pyhd8ed1ab_0 + - harfbuzz=6.0.0=hddbc195_0 + - hatchling=1.18.0=pyhd8ed1ab_0 + - importlib-resources=6.1.0=pyhd8ed1ab_0 + - importlib_metadata=6.8.0=hd8ed1ab_0 + - jsonschema-specifications=2023.7.1=pyhd8ed1ab_0 + - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1 + - ld64=609=h89fa09d_14 + - libcblas=3.9.0=18_osxarm64_openblas + - liblapack=3.9.0=18_osxarm64_openblas + - platformdirs=3.11.0=pyhd8ed1ab_0 + - pplpy=0.8.7=py310h49c019d_0 + - pyobjc-framework-cocoa=10.0=py310hd07e440_1 + - requests=2.31.0=pyhd8ed1ab_0 + - setuptools-scm=8.0.4=pyhd8ed1ab_0 + - stack_data=0.6.2=pyhd8ed1ab_0 + - sympy=1.12=pypyh9d50eac_103 + - wcwidth=0.2.8=pyhd8ed1ab_0 + - argon2-cffi=23.1.0=pyhd8ed1ab_0 + - arpack=3.7.0=h58ebc17_2 + - cctools=973.0.1=hd1ac623_14 + - clang=15.0.7=hce30654_3 + - dsdp=5.8=h9397a75_1203 + - fflas-ffpack=2.4.3=h11f2abc_2 + - gsl=2.7=h6e638da_0 + - iml=1.0.5=hd52f0d1_1003 + - isoduration=20.11.0=pyhd8ed1ab_0 + - jsonschema=4.19.1=pyhd8ed1ab_0 + - jupyter_core=5.3.2=py310hbe9552e_0 + - liblapacke=3.9.0=18_osxarm64_openblas + - numpy=1.26.0=py310he2cad68_0 + - pango=1.50.14=h6c112b8_0 + - pooch=1.7.0=pyhd8ed1ab_4 + - prompt-toolkit=3.0.39=pyha770c72_0 + - send2trash=1.8.2=pyhd1c38e8_0 + - setuptools_scm=8.0.4=hd8ed1ab_0 + - suitesparse=5.10.1=h7cd81ec_1 + - virtualenv=20.24.4=pyhd8ed1ab_0 + - blas-devel=3.9.0=18_osxarm64_openblas + - clangxx=15.0.7=default_h610c423_3 + - contourpy=1.1.1=py310h38f39d4_1 + - cvxopt=1.3.2=py310hadc6ad6_1 + - fpylll=0.5.9=py310hce2b5f8_1 + - giac=1.9.0.21=h1c96721_1 + - igraph=0.9.10=hcec9b84_1 + - jsonschema-with-format-nongpl=4.19.1=pyhd8ed1ab_0 + - jupyter_client=8.3.1=pyhd8ed1ab_0 + - linbox=1.6.3=h549c411_7 + - nbformat=5.9.2=pyhd8ed1ab_0 + - prompt_toolkit=3.0.39=hd8ed1ab_0 + - scipy=1.10.1=py310h0975f3d_3 + - tox=4.11.3=pyhd8ed1ab_0 + - blas=2.118=openblas + - compiler-rt_osx-arm64=15.0.7=hf8d1dfb_1 + - ipython=8.16.1=pyh31c8845_0 + - jupyter_events=0.7.0=pyhd8ed1ab_2 + - matplotlib-base=3.8.0=py310hd1c642d_1 + - nbclient=0.8.0=pyhd8ed1ab_0 + - rw=0.9=h3422bc3_0 + - compiler-rt=15.0.7=hf8d1dfb_1 + - ipykernel=6.25.2=pyh1050b4e_0 + - matplotlib=3.8.0=py310hb6292c7_1 + - nbconvert-core=7.9.2=pyhd8ed1ab_0 + - clang_osx-arm64=15.0.7=h77e971b_3 + - jupyter_server=2.7.3=pyhd8ed1ab_1 + - nbconvert-pandoc=7.9.2=pyhd8ed1ab_0 + - c-compiler=1.6.0=hd291e01_0 + - clangxx_osx-arm64=15.0.7=h768a7fd_3 + - gfortran_osx-arm64=12.3.0=h57527a5_1 + - jupyter-lsp=2.2.0=pyhd8ed1ab_0 + - jupyterlab_server=2.25.0=pyhd8ed1ab_0 + - nbconvert=7.9.2=pyhd8ed1ab_0 + - notebook-shim=0.2.3=pyhd8ed1ab_0 + - cxx-compiler=1.6.0=h1995070_0 + - gfortran=12.3.0=h1ca8e4b_1 + - jupyterlab=4.0.6=pyhd8ed1ab_0 + - pythran=0.14.0=py310he53c7d2_1 + - r-base=4.1.3=h9c4d319_6 + - fortran-compiler=1.6.0=h5a50232_0 + - notebook=7.0.4=pyhd8ed1ab_0 + - rpy2=3.5.11=py310r41hf1a086a_0 + - compilers=1.6.0=hce30654_0 + - widgetsnbextension=3.6.6=pyhd8ed1ab_0 + - ipywidgets=7.8.0=pyhd8ed1ab_0 + - jupyter-jsmol=2022.1.0=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 diff --git a/src/environment-3.11-linux-aarch.yml b/src/environment-3.11-linux-aarch.yml new file mode 100644 index 00000000000..2e2650f0258 --- /dev/null +++ b/src/environment-3.11-linux-aarch.yml @@ -0,0 +1,426 @@ +# Generated by conda-lock. +# platform: linux-aarch64 +# input_hash: 268ac7e0895c0a3a5609caa95b5a976cf8d053926803e6fc161ded51591c3272 + +channels: + - conda-forge +dependencies: + - _r-mutex=1.0.1=anacondar_1 + - _sysroot_linux-aarch64_curr_repodata_hack=4=h57d6b7b_13 + - ca-certificates=2023.7.22=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=hab24e00_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_2 + - libgomp=13.2.0=hf8544c7_2 + - libstdcxx-devel_linux-aarch64=12.3.0=h8b5ab12_2 + - libstdcxx-ng=13.2.0=h9a76618_2 + - mathjax=3.2.2=h8af1aa0_0 + - pandoc=3.1.3=h8af1aa0_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 + - 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 + - fonts-conda-forge=1=0 + - 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 + - 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_2 + - alsa-lib=1.2.8=h4e544f5_0 + - bc=1.07.1=hf897c2e_0 + - bdw-gc=8.0.6=hd62202e_0 + - bzip2=1.0.8=hf897c2e_4 + - c-ares=1.20.1=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.2.1=h7fd3ca4_0 + - graphite2=1.3.13=h7fd3ca4_1001 + - icu=70.1=ha18d298_0 + - jpeg=9e=h2a766a3_3 + - keyutils=1.6.1=h4e544f5_0 + - lerc=4.0.0=h4de3ea5_0 + - libatomic_ops=7.6.14=h4e544f5_0 + - libbraiding=1.1=h7fd3ca4_0 + - libbrotlicommon=1.1.0=h31becfc_1 + - libdeflate=1.17=hb4cce97_0 + - libev=4.33=h516909a_1 + - libexpat=2.5.0=hd600fc2_1 + - libffi=3.4.2=h3557bc0_5 + - libgfortran5=13.2.0=h582850c_2 + - libiconv=1.17=h9cdd2b7_0 + - libnsl=2.0.0=h31becfc_1 + - libsanitizer=12.3.0=h8ebda82_2 + - 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 + - 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.7.2=hf897c2e_0 + - ncurses=6.4=h2e1726e_0 + - ninja=1.11.1=hdd96247_0 + - openssl=3.1.3=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_2 + - 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_2 + - libhomfly=1.02r6=hb9de7d4_0 + - libnghttp2=1.52.0=h250e5c5_0 + - libpng=1.6.39=hf9034f9_0 + - libsqlite=3.43.0=h194ca79_0 + - libssh2=1.11.0=h492db2e_0 + - libxcb=1.13=h3557bc0_1004 + - libxml2=2.10.3=habe54e3_4 + - mpfr=4.2.0=h96f194b_0 + - ntl=11.4.3=h0d7519b_1 + - pcre2=10.40=he7b27c6_0 + - perl=5.32.1=4_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.4=h01db608_1 + - 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_2 + - gxx_impl_linux-aarch64=12.3.0=hcde2664_2 + - krb5=1.20.1=h113d92e_0 + - libflint=2.9.0=hd3470fa_ntl_100 + - libglib=2.78.0=h0464669_0 + - libhwloc=2.9.1=h21e8147_0 + - libopenblas=0.3.23=pthreads_hd703e6f_0 + - libtiff=4.5.0=h4c1066a_2 + - llvm-openmp=17.0.2=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.6=h43d1f9e_0_cpython + - qd=2.3.22=h05efe27_1004 + - sqlite=3.43.0=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 + - arb=2.23.0=h37d5dab_0 + - attrs=23.1.0=pyh71513ae_1 + - automake=1.16.5=pl5321h8af1aa0_0 + - backcall=0.2.0=pyh9f0ad1d_0 + - backports=1.0=pyhd8ed1ab_3 + - 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.1=pyhd8ed1ab_0 + - certifi=2023.7.22=pyhd8ed1ab_0 + - chardet=5.2.0=py311hfecb2dc_1 + - charset-normalizer=3.3.0=pyhd8ed1ab_0 + - colorama=0.4.6=pyhd8ed1ab_0 + - cycler=0.12.1=pyhd8ed1ab_0 + - cysignals=1.11.2=py311h644d908_3 + - cython=3.0.2=py311h8715677_2 + - debugpy=1.8.0=py311h8715677_1 + - decorator=5.1.1=pyhd8ed1ab_0 + - defusedxml=0.7.1=pyhd8ed1ab_0 + - distlib=0.3.7=pyhd8ed1ab_0 + - docutils=0.20.1=py311hfecb2dc_2 + - eclib=20230424=h0bc7b0f_0 + - editables=0.3=pyhd8ed1ab_0 + - entrypoints=0.4=pyhd8ed1ab_0 + - exceptiongroup=1.1.3=pyhd8ed1ab_0 + - executing=1.2.0=pyhd8ed1ab_0 + - filelock=3.12.4=pyhd8ed1ab_0 + - flit-core=3.9.0=pyhd8ed1ab_0 + - fontconfig=2.14.2=ha9a116f_0 + - fplll=5.4.4=h5cd656c_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.4=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=1.1.7=pyhd8ed1ab_0 + - kiwisolver=1.4.5=py311h0d5d7b0_1 + - lcalc=2.0.5=h3264cc0_1 + - lcms2=2.15=h7576be9_0 + - libblas=3.9.0=17_linuxaarch64_openblas + - libbrial=1.2.12=h17533bf_1 + - libcups=2.3.3=h4303303_3 + - libcurl=8.1.2=hc34909b_0 + - libwebp=1.2.4=h7bdf6e5_1 + - m4rie=20150908=h75e8696_1001 + - markupsafe=2.1.3=py311hc8f2f60_1 + - maxima=5.45.0=haa44c19_3 + - mistune=3.0.1=pyhd8ed1ab_0 + - mpmath=1.3.0=pyhd8ed1ab_0 + - munkres=1.1.4=pyh9f0ad1d_0 + - nest-asyncio=1.5.6=pyhd8ed1ab_0 + - networkx=2.8.8=pyhd8ed1ab_0 + - openblas=0.3.23=pthreads_hef96516_0 + - openjpeg=2.5.0=h9508984_2 + - packaging=23.2=pyhd8ed1ab_0 + - pandocfilters=1.5.0=pyhd8ed1ab_0 + - parso=0.8.3=pyhd8ed1ab_0 + - pathspec=0.11.2=pyhd8ed1ab_0 + - pickleshare=0.7.5=py_1003 + - pkgconfig=1.5.5=pyhd8ed1ab_4 + - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 + - pluggy=1.3.0=pyhd8ed1ab_0 + - ply=3.11=py_1 + - prometheus_client=0.17.1=pyhd8ed1ab_0 + - psutil=5.9.5=py311hcd402e7_1 + - 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.16.1=pyhd8ed1ab_0 + - pyparsing=3.1.1=pyhd8ed1ab_0 + - pyrsistent=0.19.3=py311hc8f2f60_1 + - pysocks=1.7.1=pyha2e5f31_6 + - python-fastjsonschema=2.18.1=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.1=py311hc83961d_1 + - rfc3986-validator=0.1.1=pyh9f0ad1d_0 + - rpds-py=0.10.4=py311h32437ce_0 + - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 + - sagetex=3.6.1=pyhd8ed1ab_0 + - send2trash=1.8.2=pyh41d4057_0 + - setuptools=59.8.0=py311hec3470c_1 + - simplegeneric=0.8.1=py_1 + - singular=4.2.1.p3=h3d4c4c6_2 + - 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.11.2=pyhd8ed1ab_0 + - trove-classifiers=2023.9.19=pyhd8ed1ab_0 + - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 + - typing_extensions=4.8.0=pyha770c72_0 + - typing_utils=0.1.0=pyhd8ed1ab_0 + - tzlocal=5.1=py311hec3470c_0 + - uri-template=1.3.0=pyhd8ed1ab_0 + - vcversioner=2.16.0.0=py_1 + - webcolors=1.13=pyhd8ed1ab_0 + - webencodings=0.5.1=pyhd8ed1ab_2 + - websocket-client=1.6.4=pyhd8ed1ab_0 + - wheel=0.41.2=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 + - zipp=3.17.0=pyhd8ed1ab_0 + - anyio=4.0.0=pyhd8ed1ab_0 + - asttokens=2.4.0=pyhd8ed1ab_0 + - async-lru=2.0.4=pyhd8ed1ab_0 + - babel=2.12.1=pyhd8ed1ab_1 + - backports.functools_lru_cache=1.6.5=pyhd8ed1ab_0 + - beautifulsoup4=4.12.2=pyha770c72_0 + - beniget=0.4.1=pyhd8ed1ab_0 + - bleach=6.1.0=pyhd8ed1ab_0 + - 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 + - cxx-compiler=1.6.0=h2a328a1_0 + - cypari2=2.1.3=py311h5ab95f0_2 + - deprecation=2.1.0=pyh9f0ad1d_0 + - fonttools=4.43.1=py311hcd402e7_0 + - fortran-compiler=1.6.0=h7048d53_0 + - importlib-metadata=6.8.0=pyha770c72_0 + - importlib_resources=6.1.0=pyhd8ed1ab_0 + - jedi=0.19.1=pyhd8ed1ab_0 + - jinja2=3.1.2=pyhd8ed1ab_1 + - jupyterlab_pygments=0.2.2=pyhd8ed1ab_0 + - libcblas=3.9.0=17_linuxaarch64_openblas + - libgd=2.3.3=h99c6b3b_4 + - liblapack=3.9.0=17_linuxaarch64_openblas + - matplotlib-inline=0.1.6=pyhd8ed1ab_0 + - memory-allocator=0.1.2=py311hdfa8b44_2 + - overrides=7.4.0=pyhd8ed1ab_0 + - pexpect=4.8.0=pyh1a96a4e_2 + - pillow=9.4.0=py311hf18358d_1 + - pip=23.2.1=pyhd8ed1ab_0 + - pplpy=0.8.7=py311haefeb0b_0 + - primecountpy=0.1.0=py311h098ece5_4 + - pybind11=2.11.1=py311h098ece5_2 + - pyproject-api=1.6.1=pyhd8ed1ab_0 + - python-dateutil=2.8.2=pyhd8ed1ab_0 + - pytz-deprecation-shim=0.1.0.post0=py311hec3470c_4 + - referencing=0.30.2=pyhd8ed1ab_0 + - rfc3339-validator=0.1.4=pyhd8ed1ab_0 + - sagemath-db-conway-polynomials=0.5.0=h4fd8a4c_1 + - sympy=1.12=pypyh9d50eac_103 + - terminado=0.17.1=pyh41d4057_0 + - tinycss2=1.2.1=pyhd8ed1ab_0 + - typing-extensions=4.8.0=hd8ed1ab_0 + - urllib3=2.0.6=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 + - 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.18.0=pyhd8ed1ab_0 + - iml=1.0.5=h9076c59_1003 + - importlib-resources=6.1.0=pyhd8ed1ab_0 + - importlib_metadata=6.8.0=hd8ed1ab_0 + - jsonschema-specifications=2023.7.1=pyhd8ed1ab_0 + - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1 + - liblapacke=3.9.0=17_linuxaarch64_openblas + - numpy=1.26.0=py311h69ead2a_0 + - platformdirs=3.11.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 + - wcwidth=0.2.8=pyhd8ed1ab_0 + - xorg-libxtst=1.2.3=hf897c2e_1002 + - argon2-cffi=23.1.0=pyhd8ed1ab_0 + - blas-devel=3.9.0=17_linuxaarch64_openblas + - contourpy=1.1.1=py311h098ece5_1 + - cvxopt=1.3.2=py311hd9cfd3c_1 + - fpylll=0.5.9=py311h5d3d69a_1 + - giac=1.9.0.21=h04922a4_1 + - igraph=0.9.10=hefb87a8_1 + - isoduration=20.11.0=pyhd8ed1ab_0 + - jsonschema=4.19.1=pyhd8ed1ab_0 + - jupyter_core=5.3.2=py311hec3470c_0 + - linbox=1.6.3=h31716a8_7 + - openjdk=17.0.3=h1a274e0_5 + - pango=1.50.14=h1f1e9b3_0 + - pooch=1.7.0=pyhd8ed1ab_4 + - prompt-toolkit=3.0.39=pyha770c72_0 + - pythran=0.14.0=py311hec5c23b_1 + - setuptools_scm=8.0.4=hd8ed1ab_0 + - virtualenv=20.24.4=pyhd8ed1ab_0 + - blas=2.117=openblas + - jmol=14.32.10=h8af1aa0_0 + - jsonschema-with-format-nongpl=4.19.1=pyhd8ed1ab_0 + - jupyter_client=8.3.1=pyhd8ed1ab_0 + - matplotlib-base=3.8.0=py311h1f11223_1 + - nbformat=5.9.2=pyhd8ed1ab_0 + - prompt_toolkit=3.0.39=hd8ed1ab_0 + - r-base=4.2.3=h620ca72_0 + - rw=0.9=hf897c2e_0 + - scipy=1.10.1=py311h69ead2a_3 + - tox=4.11.3=pyhd8ed1ab_0 + - ipython=8.16.1=pyh0d859eb_0 + - jupyter_events=0.7.0=pyhd8ed1ab_2 + - matplotlib=3.8.0=py311hfecb2dc_1 + - nbclient=0.8.0=pyhd8ed1ab_0 + - rpy2=3.5.11=py311r42hf13da56_3 + - ipykernel=6.25.2=pyh2140261_0 + - nbconvert-core=7.9.2=pyhd8ed1ab_0 + - jupyter_server=2.7.3=pyhd8ed1ab_1 + - nbconvert-pandoc=7.9.2=pyhd8ed1ab_0 + - jupyter-lsp=2.2.0=pyhd8ed1ab_0 + - jupyterlab_server=2.25.0=pyhd8ed1ab_0 + - nbconvert=7.9.2=pyhd8ed1ab_0 + - notebook-shim=0.2.3=pyhd8ed1ab_0 + - jupyterlab=4.0.6=pyhd8ed1ab_0 + - notebook=7.0.4=pyhd8ed1ab_0 + - widgetsnbextension=3.6.6=pyhd8ed1ab_0 + - ipywidgets=7.8.0=pyhd8ed1ab_0 + - jupyter-jsmol=2022.1.0=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 diff --git a/src/environment-3.11-macos-arm.yml b/src/environment-3.11-macos-arm.yml new file mode 100644 index 00000000000..257f8679988 --- /dev/null +++ b/src/environment-3.11-macos-arm.yml @@ -0,0 +1,404 @@ +# Generated by conda-lock. +# platform: osx-arm64 +# input_hash: 5ced3052f236d9de3ff8baeed53862fb5637be84edcc3644a43c5c6ce0c4e32f + +channels: + - conda-forge +dependencies: + - _r-mutex=1.0.1=anacondar_1 + - bc=1.07.1=h3422bc3_0 + - bzip2=1.0.8=h3422bc3_4 + - c-ares=1.20.1=h93a5062_0 + - ca-certificates=2023.7.22=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=hab24e00_0 + - fribidi=1.0.10=h27ca646_0 + - giflib=5.2.1=h1a8c8d9_3 + - jpeg=9e=h1a8c8d9_3 + - libatomic_ops=7.6.14=h1a8c8d9_0 + - libbrotlicommon=1.1.0=hb547adb_1 + - libcxx=16.0.6=h4653b0c_0 + - libdeflate=1.17=h1a8c8d9_0 + - libev=4.33=h642e427_1 + - libexpat=2.5.0=hb7217d7_1 + - libffi=3.4.2=h3422bc3_5 + - libgfortran-devel_osx-arm64=12.3.0=hc62be1c_1 + - libiconv=1.17=he4db4b2_0 + - 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 + - libzlib=1.2.13=h53f4e23_5 + - llvm-openmp=17.0.2=h1c12783_0 + - m4=1.4.18=h642e427_1001 + - make=4.3=he57ea6c_1 + - mathjax=3.2.2=hce30654_0 + - metis=5.1.0=h13dd4ca_1007 + - nauty=2.7.2=h3422bc3_0 + - ncurses=6.4=h7ea286d_0 + - 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 + - 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 + - three.js=122=hd8ed1ab_2 + - tzdata=2023c=h71feb2d_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.2.1=h9f76cd9_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.1=h9f76cd9_0 + - libbrotlidec=1.1.0=hb547adb_1 + - libbrotlienc=1.1.0=hb547adb_1 + - libedit=3.1.20191231=hc8eb9b7_2 + - libgfortran5=13.2.0=hf226fd6_1 + - libpng=1.6.39=h76d750c_0 + - libsqlite=3.43.0=hb31c410_0 + - libxcb=1.13=h9b22ae9_1004 + - lrcalc=2.1=hb7217d7_5 + - ninja=1.11.1=hffc8910_0 + - openjdk=20.0.2=hbe7ddab_2 + - openssl=3.1.3=h53f4e23_0 + - pari-seadata=0.0.20090618=0 + - pcre2=10.40=hb34f9b4_0 + - pixman=0.42.2=h13dd4ca_0 + - primesieve=11.0=hb7217d7_0 + - qhull=2020.2=hc021e02_2 + - readline=8.2=h92ec313_1 + - symmetrica=3.0.1=hb7217d7_0 + - tapi=1100.0.11=he4954df_0 + - tar=1.34=h7cb298e_1 + - tbb=2021.10.0=h1995070_1 + - texinfo=7.0=pl5321h9ea1dce_0 + - threejs-sage=122=hd8ed1ab_2 + - tk=8.6.13=hb31c410_0 + - zeromq=4.3.4=hbdafb3b_1 + - 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 + - ecl=21.2.1=h8492d4d_2 + - ecm=7.0.4=h47c7c1a_1002 + - fonts-conda-ecosystem=1=0 + - freetype=2.12.1=hadb7bae_2 + - gap-core=4.12.2=he8f4e70_3 + - givaro=4.1.1=h0cdca34_3 + - glpk=5.0=h6d7a090_0 + - jmol=14.32.10=hce30654_0 + - krb5=1.20.1=h69eda48_0 + - libgfortran=5.0.0=13_2_0_hd922786_1 + - libglib=2.78.0=h24e9cb9_0 + - libhomfly=1.02r6=h27ca646_0 + - libnghttp2=1.52.0=hae82a92_0 + - libssh2=1.11.0=h7a5bd25_0 + - libtiff=4.5.0=h5dffbdd_2 + - libxml2=2.10.3=h67585b2_4 + - m4ri=20140914=h17b34a0_1005 + - mpfr=4.2.0=he09a6ba_0 + - ntl=11.4.3=hbb3f309_1 + - pari=2.15.4=haeeeed7_2_pthread + - primecount=7.6=hb6e4faa_0 + - python=3.11.6=h47c9636_0_cpython + - sigtool=0.1.3=h44b9a77_0 + - sqlite=3.43.0=h203b68d_0 + - tachyon=0.99b6=hfb72b2a_1001 + - tktable=2.10=hd996620_5 + - alabaster=0.7.13=pyhd8ed1ab_0 + - appdirs=1.4.4=pyh9f0ad1d_0 + - appnope=0.1.3=pyhd8ed1ab_0 + - attrs=23.1.0=pyh71513ae_1 + - backcall=0.2.0=pyh9f0ad1d_0 + - backports=1.0=pyhd8ed1ab_3 + - brotli=1.1.0=hb547adb_1 + - brotli-python=1.1.0=py311ha891d26_1 + - cached_property=1.5.2=pyha770c72_1 + - cachetools=5.3.1=pyhd8ed1ab_0 + - certifi=2023.7.22=pyhd8ed1ab_0 + - chardet=5.2.0=py311h267d04e_1 + - charset-normalizer=3.3.0=pyhd8ed1ab_0 + - colorama=0.4.6=pyhd8ed1ab_0 + - cycler=0.12.1=pyhd8ed1ab_0 + - cysignals=1.11.2=py311he42fc87_3 + - cython=3.0.2=py311ha891d26_2 + - debugpy=1.8.0=py311ha891d26_1 + - decorator=5.1.1=pyhd8ed1ab_0 + - defusedxml=0.7.1=pyhd8ed1ab_0 + - distlib=0.3.7=pyhd8ed1ab_0 + - docutils=0.20.1=py311h267d04e_2 + - editables=0.3=pyhd8ed1ab_0 + - entrypoints=0.4=pyhd8ed1ab_0 + - exceptiongroup=1.1.3=pyhd8ed1ab_0 + - executing=1.2.0=pyhd8ed1ab_0 + - fftw=3.3.10=nompi_h3046061_108 + - filelock=3.12.4=pyhd8ed1ab_0 + - flit-core=3.9.0=pyhd8ed1ab_0 + - fontconfig=2.14.2=h82840c6_0 + - gap-defaults=4.12.2=hce30654_3 + - gast=0.5.4=pyhd8ed1ab_0 + - gfan=0.6.2=hec08f5c_1003 + - idna=3.4=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=1.1.7=pyhd8ed1ab_0 + - kiwisolver=1.4.5=py311he4fd1f5_1 + - lcalc=2.0.5=hc94e8e6_1 + - lcms2=2.15=h481adae_0 + - libbrial=1.2.12=ha7f5006_1 + - libcurl=8.1.2=h912dcd9_0 + - libflint=2.9.0=h173eafc_ntl_100 + - libllvm15=15.0.7=h62b9111_1 + - libopenblas=0.3.24=openmp_hd76b1f2_0 + - libwebp=1.2.4=h999c80f_1 + - m4rie=20150908=h17b34a0_1001 + - markupsafe=2.1.3=py311heffc1b2_1 + - maxima=5.45.0=h6032a66_2 + - mistune=3.0.1=pyhd8ed1ab_0 + - mpc=1.3.1=h91ba8db_0 + - mpfi=1.5.4=hbde5f5b_1001 + - mpmath=1.3.0=pyhd8ed1ab_0 + - munkres=1.1.4=pyh9f0ad1d_0 + - nest-asyncio=1.5.6=pyhd8ed1ab_0 + - networkx=2.8.8=pyhd8ed1ab_0 + - openjpeg=2.5.0=hbc2ba62_2 + - packaging=23.2=pyhd8ed1ab_0 + - pandocfilters=1.5.0=pyhd8ed1ab_0 + - parso=0.8.3=pyhd8ed1ab_0 + - pathspec=0.11.2=pyhd8ed1ab_0 + - pickleshare=0.7.5=py_1003 + - pkg-config=0.29.2=hab62308_1008 + - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 + - pluggy=1.3.0=pyhd8ed1ab_0 + - ply=3.11=py_1 + - ppl=1.2=h8b147cf_1006 + - prometheus_client=0.17.1=pyhd8ed1ab_0 + - psutil=5.9.5=py311heffc1b2_1 + - 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.16.1=pyhd8ed1ab_0 + - pyparsing=3.1.1=pyhd8ed1ab_0 + - pyrsistent=0.19.3=py311heffc1b2_1 + - pysocks=1.7.1=pyha2e5f31_6 + - python-fastjsonschema=2.18.1=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.1=py311hb1af645_1 + - qd=2.3.22=hbec66e7_1004 + - rfc3986-validator=0.1.1=pyh9f0ad1d_0 + - rpds-py=0.10.4=py311h94f323b_0 + - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 + - sagetex=3.6.1=pyhd8ed1ab_0 + - setuptools=59.8.0=py311h267d04e_1 + - simplegeneric=0.8.1=py_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.11.2=pyhd8ed1ab_0 + - trove-classifiers=2023.9.19=pyhd8ed1ab_0 + - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 + - typing_extensions=4.8.0=pyha770c72_0 + - typing_utils=0.1.0=pyhd8ed1ab_0 + - tzlocal=5.1=py311h267d04e_0 + - uri-template=1.3.0=pyhd8ed1ab_0 + - vcversioner=2.16.0.0=py_1 + - webcolors=1.13=pyhd8ed1ab_0 + - webencodings=0.5.1=pyhd8ed1ab_2 + - websocket-client=1.6.4=pyhd8ed1ab_0 + - wheel=0.41.2=pyhd8ed1ab_0 + - zipp=3.17.0=pyhd8ed1ab_0 + - anyio=4.0.0=pyhd8ed1ab_0 + - arb=2.23.0=he5401aa_0 + - asttokens=2.4.0=pyhd8ed1ab_0 + - async-lru=2.0.4=pyhd8ed1ab_0 + - babel=2.12.1=pyhd8ed1ab_1 + - backports.functools_lru_cache=1.6.5=pyhd8ed1ab_0 + - beautifulsoup4=4.12.2=pyha770c72_0 + - beniget=0.4.1=pyhd8ed1ab_0 + - bleach=6.1.0=pyhd8ed1ab_0 + - brial=1.2.12=pyh694c41f_1 + - cached-property=1.5.2=hd8ed1ab_1 + - cairo=1.16.0=h73a0509_1014 + - cffi=1.16.0=py311h4a08483_0 + - 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 + - eclib=20230424=haeb5157_0 + - fonttools=4.43.1=py311h05b510d_0 + - fplll=5.4.4=h29209e0_0 + - gfortran_impl_osx-arm64=12.3.0=hbbb9e1e_1 + - gmpy2=2.1.2=py311h2ba9262_1 + - importlib-metadata=6.8.0=pyha770c72_0 + - importlib_resources=6.1.0=pyhd8ed1ab_0 + - jedi=0.19.1=pyhd8ed1ab_0 + - jinja2=3.1.2=pyhd8ed1ab_1 + - jupyterlab_pygments=0.2.2=pyhd8ed1ab_0 + - ld64_osx-arm64=609=hc4dc95b_14 + - libblas=3.9.0=18_osxarm64_openblas + - libclang-cpp15=15.0.7=default_h5dc8d65_3 + - libgd=2.3.3=h90fb8ed_4 + - llvm-tools=15.0.7=h62b9111_1 + - matplotlib-inline=0.1.6=pyhd8ed1ab_0 + - memory-allocator=0.1.2=py311he2be06e_2 + - openblas=0.3.24=openmp_hce3e5ba_0 + - overrides=7.4.0=pyhd8ed1ab_0 + - pexpect=4.8.0=pyh1a96a4e_2 + - pillow=9.4.0=py311h627eb56_1 + - pip=23.2.1=pyhd8ed1ab_0 + - pkgconfig=1.5.5=pyhd8ed1ab_4 + - primecountpy=0.1.0=py311he4fd1f5_4 + - pybind11=2.11.1=py311he4fd1f5_2 + - pyobjc-core=10.0=py311hb702dc4_0 + - pyproject-api=1.6.1=pyhd8ed1ab_0 + - python-dateutil=2.8.2=pyhd8ed1ab_0 + - pytz-deprecation-shim=0.1.0.post0=py311h267d04e_4 + - referencing=0.30.2=pyhd8ed1ab_0 + - rfc3339-validator=0.1.4=pyhd8ed1ab_0 + - sagemath-db-conway-polynomials=0.5.0=h4653dfc_1 + - singular=4.2.1.p3=h3b80c97_2 + - terminado=0.17.1=pyhd1c38e8_0 + - tinycss2=1.2.1=pyhd8ed1ab_0 + - typing-extensions=4.8.0=hd8ed1ab_0 + - urllib3=2.0.6=pyhd8ed1ab_0 + - argon2-cffi-bindings=21.2.0=py311heffc1b2_4 + - arrow=1.3.0=pyhd8ed1ab_0 + - cctools_osx-arm64=973.0.1=h2a25c60_14 + - clang-15=15.0.7=default_h5dc8d65_3 + - fqdn=1.5.1=pyhd8ed1ab_0 + - harfbuzz=6.0.0=hddbc195_0 + - hatchling=1.18.0=pyhd8ed1ab_0 + - importlib-resources=6.1.0=pyhd8ed1ab_0 + - importlib_metadata=6.8.0=hd8ed1ab_0 + - jsonschema-specifications=2023.7.1=pyhd8ed1ab_0 + - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1 + - ld64=609=h89fa09d_14 + - libcblas=3.9.0=18_osxarm64_openblas + - liblapack=3.9.0=18_osxarm64_openblas + - platformdirs=3.11.0=pyhd8ed1ab_0 + - pplpy=0.8.7=py311hb546c2d_0 + - pyobjc-framework-cocoa=10.0=py311hb702dc4_1 + - requests=2.31.0=pyhd8ed1ab_0 + - setuptools-scm=8.0.4=pyhd8ed1ab_0 + - stack_data=0.6.2=pyhd8ed1ab_0 + - sympy=1.12=pypyh9d50eac_103 + - wcwidth=0.2.8=pyhd8ed1ab_0 + - argon2-cffi=23.1.0=pyhd8ed1ab_0 + - arpack=3.7.0=h58ebc17_2 + - cctools=973.0.1=hd1ac623_14 + - clang=15.0.7=hce30654_3 + - dsdp=5.8=h9397a75_1203 + - fflas-ffpack=2.4.3=h11f2abc_2 + - gsl=2.7=h6e638da_0 + - iml=1.0.5=hd52f0d1_1003 + - isoduration=20.11.0=pyhd8ed1ab_0 + - jsonschema=4.19.1=pyhd8ed1ab_0 + - jupyter_core=5.3.2=py311h267d04e_0 + - liblapacke=3.9.0=18_osxarm64_openblas + - numpy=1.26.0=py311hb8f3215_0 + - pango=1.50.14=h6c112b8_0 + - pooch=1.7.0=pyhd8ed1ab_4 + - prompt-toolkit=3.0.39=pyha770c72_0 + - send2trash=1.8.2=pyhd1c38e8_0 + - setuptools_scm=8.0.4=hd8ed1ab_0 + - suitesparse=5.10.1=h7cd81ec_1 + - virtualenv=20.24.4=pyhd8ed1ab_0 + - blas-devel=3.9.0=18_osxarm64_openblas + - clangxx=15.0.7=default_h610c423_3 + - contourpy=1.1.1=py311he4fd1f5_1 + - cvxopt=1.3.2=py311hd76776f_1 + - fpylll=0.5.9=py311h3ca9eb5_1 + - giac=1.9.0.21=h1c96721_1 + - igraph=0.9.10=hcec9b84_1 + - jsonschema-with-format-nongpl=4.19.1=pyhd8ed1ab_0 + - jupyter_client=8.3.1=pyhd8ed1ab_0 + - linbox=1.6.3=h549c411_7 + - nbformat=5.9.2=pyhd8ed1ab_0 + - prompt_toolkit=3.0.39=hd8ed1ab_0 + - scipy=1.10.1=py311h93d07a4_3 + - tox=4.11.3=pyhd8ed1ab_0 + - blas=2.118=openblas + - compiler-rt_osx-arm64=15.0.7=hf8d1dfb_1 + - ipython=8.16.1=pyh31c8845_0 + - jupyter_events=0.7.0=pyhd8ed1ab_2 + - matplotlib-base=3.8.0=py311h3bc9839_1 + - nbclient=0.8.0=pyhd8ed1ab_0 + - rw=0.9=h3422bc3_0 + - compiler-rt=15.0.7=hf8d1dfb_1 + - ipykernel=6.25.2=pyh1050b4e_0 + - matplotlib=3.8.0=py311ha1ab1f8_1 + - nbconvert-core=7.9.2=pyhd8ed1ab_0 + - clang_osx-arm64=15.0.7=h77e971b_3 + - jupyter_server=2.7.3=pyhd8ed1ab_1 + - nbconvert-pandoc=7.9.2=pyhd8ed1ab_0 + - c-compiler=1.6.0=hd291e01_0 + - clangxx_osx-arm64=15.0.7=h768a7fd_3 + - gfortran_osx-arm64=12.3.0=h57527a5_1 + - jupyter-lsp=2.2.0=pyhd8ed1ab_0 + - jupyterlab_server=2.25.0=pyhd8ed1ab_0 + - nbconvert=7.9.2=pyhd8ed1ab_0 + - notebook-shim=0.2.3=pyhd8ed1ab_0 + - cxx-compiler=1.6.0=h1995070_0 + - gfortran=12.3.0=h1ca8e4b_1 + - jupyterlab=4.0.6=pyhd8ed1ab_0 + - pythran=0.14.0=py311hddbb800_1 + - r-base=4.1.3=h9c4d319_6 + - fortran-compiler=1.6.0=h5a50232_0 + - notebook=7.0.4=pyhd8ed1ab_0 + - rpy2=3.5.11=py311r41h4add359_0 + - compilers=1.6.0=hce30654_0 + - widgetsnbextension=3.6.6=pyhd8ed1ab_0 + - ipywidgets=7.8.0=pyhd8ed1ab_0 + - jupyter-jsmol=2022.1.0=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 diff --git a/src/environment-3.9-linux-aarch.yml b/src/environment-3.9-linux-aarch.yml new file mode 100644 index 00000000000..17cf149c9d1 --- /dev/null +++ b/src/environment-3.9-linux-aarch.yml @@ -0,0 +1,427 @@ +# Generated by conda-lock. +# platform: linux-aarch64 +# input_hash: 3182068fa557b5ae52f128fefadfc8288f88a39d3429a81b58807786243c4ba8 + +channels: + - conda-forge +dependencies: + - _r-mutex=1.0.1=anacondar_1 + - _sysroot_linux-aarch64_curr_repodata_hack=4=h57d6b7b_13 + - ca-certificates=2023.7.22=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=hab24e00_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_2 + - libgomp=13.2.0=hf8544c7_2 + - libstdcxx-devel_linux-aarch64=12.3.0=h8b5ab12_2 + - libstdcxx-ng=13.2.0=h9a76618_2 + - mathjax=3.2.2=h8af1aa0_0 + - pandoc=3.1.3=h8af1aa0_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 + - 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 + - fonts-conda-forge=1=0 + - 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 + - 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_2 + - alsa-lib=1.2.8=h4e544f5_0 + - bc=1.07.1=hf897c2e_0 + - bdw-gc=8.0.6=hd62202e_0 + - bzip2=1.0.8=hf897c2e_4 + - c-ares=1.20.1=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.2.1=h7fd3ca4_0 + - graphite2=1.3.13=h7fd3ca4_1001 + - icu=70.1=ha18d298_0 + - jpeg=9e=h2a766a3_3 + - keyutils=1.6.1=h4e544f5_0 + - lerc=4.0.0=h4de3ea5_0 + - libatomic_ops=7.6.14=h4e544f5_0 + - libbraiding=1.1=h7fd3ca4_0 + - libbrotlicommon=1.1.0=h31becfc_1 + - libdeflate=1.17=hb4cce97_0 + - libev=4.33=h516909a_1 + - libexpat=2.5.0=hd600fc2_1 + - libffi=3.4.2=h3557bc0_5 + - libgfortran5=13.2.0=h582850c_2 + - libiconv=1.17=h9cdd2b7_0 + - libnsl=2.0.0=h31becfc_1 + - libsanitizer=12.3.0=h8ebda82_2 + - 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 + - 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.7.2=hf897c2e_0 + - ncurses=6.4=h2e1726e_0 + - ninja=1.11.1=hdd96247_0 + - openssl=3.1.3=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_2 + - 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_2 + - libhomfly=1.02r6=hb9de7d4_0 + - libnghttp2=1.52.0=h250e5c5_0 + - libpng=1.6.39=hf9034f9_0 + - libsqlite=3.43.0=h194ca79_0 + - libssh2=1.11.0=h492db2e_0 + - libxcb=1.13=h3557bc0_1004 + - libxml2=2.10.3=habe54e3_4 + - mpfr=4.2.0=h96f194b_0 + - ntl=11.4.3=h0d7519b_1 + - pcre2=10.40=he7b27c6_0 + - perl=5.32.1=4_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.4=h01db608_1 + - 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_2 + - gxx_impl_linux-aarch64=12.3.0=hcde2664_2 + - krb5=1.20.1=h113d92e_0 + - libflint=2.9.0=hd3470fa_ntl_100 + - libglib=2.78.0=h0464669_0 + - libhwloc=2.9.1=h21e8147_0 + - libopenblas=0.3.23=pthreads_hd703e6f_0 + - libtiff=4.5.0=h4c1066a_2 + - llvm-openmp=17.0.2=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 + - qd=2.3.22=h05efe27_1004 + - sqlite=3.43.0=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 + - arb=2.23.0=h37d5dab_0 + - attrs=23.1.0=pyh71513ae_1 + - automake=1.16.5=pl5321h8af1aa0_0 + - backcall=0.2.0=pyh9f0ad1d_0 + - backports=1.0=pyhd8ed1ab_3 + - 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.1=pyhd8ed1ab_0 + - certifi=2023.7.22=pyhd8ed1ab_0 + - chardet=5.2.0=py39ha65689a_1 + - charset-normalizer=3.3.0=pyhd8ed1ab_0 + - colorama=0.4.6=pyhd8ed1ab_0 + - cycler=0.12.1=pyhd8ed1ab_0 + - cysignals=1.11.2=py39hfa81392_3 + - cython=3.0.2=py39h387a81e_2 + - debugpy=1.8.0=py39h387a81e_1 + - decorator=5.1.1=pyhd8ed1ab_0 + - defusedxml=0.7.1=pyhd8ed1ab_0 + - distlib=0.3.7=pyhd8ed1ab_0 + - docutils=0.20.1=py39ha65689a_2 + - eclib=20230424=h0bc7b0f_0 + - editables=0.3=pyhd8ed1ab_0 + - entrypoints=0.4=pyhd8ed1ab_0 + - exceptiongroup=1.1.3=pyhd8ed1ab_0 + - executing=1.2.0=pyhd8ed1ab_0 + - filelock=3.12.4=pyhd8ed1ab_0 + - flit-core=3.9.0=pyhd8ed1ab_0 + - fontconfig=2.14.2=ha9a116f_0 + - fplll=5.4.4=h5cd656c_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.4=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=1.1.7=pyhd8ed1ab_0 + - kiwisolver=1.4.5=py39had2cf8c_1 + - lcalc=2.0.5=h3264cc0_1 + - lcms2=2.15=h7576be9_0 + - libblas=3.9.0=17_linuxaarch64_openblas + - libbrial=1.2.12=h17533bf_1 + - libcups=2.3.3=h4303303_3 + - libcurl=8.1.2=hc34909b_0 + - libwebp=1.2.4=h7bdf6e5_1 + - m4rie=20150908=h75e8696_1001 + - markupsafe=2.1.3=py39h7cc1d5f_1 + - maxima=5.45.0=haa44c19_3 + - mistune=3.0.1=pyhd8ed1ab_0 + - mpmath=1.3.0=pyhd8ed1ab_0 + - munkres=1.1.4=pyh9f0ad1d_0 + - nest-asyncio=1.5.6=pyhd8ed1ab_0 + - networkx=2.8.8=pyhd8ed1ab_0 + - openblas=0.3.23=pthreads_hef96516_0 + - openjpeg=2.5.0=h9508984_2 + - packaging=23.2=pyhd8ed1ab_0 + - pandocfilters=1.5.0=pyhd8ed1ab_0 + - parso=0.8.3=pyhd8ed1ab_0 + - pathspec=0.11.2=pyhd8ed1ab_0 + - pickleshare=0.7.5=py_1003 + - pkgconfig=1.5.5=pyhd8ed1ab_4 + - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 + - pluggy=1.3.0=pyhd8ed1ab_0 + - ply=3.11=py_1 + - prometheus_client=0.17.1=pyhd8ed1ab_0 + - psutil=5.9.5=py39h898b7ef_1 + - 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.16.1=pyhd8ed1ab_0 + - pyparsing=3.1.1=pyhd8ed1ab_0 + - pyrsistent=0.19.3=py39h7cc1d5f_1 + - pysocks=1.7.1=pyha2e5f31_6 + - python-fastjsonschema=2.18.1=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.1=py39h7ea2324_1 + - rfc3986-validator=0.1.1=pyh9f0ad1d_0 + - rpds-py=0.10.4=py39hfe8b3a4_0 + - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 + - sagetex=3.6.1=pyhd8ed1ab_0 + - send2trash=1.8.2=pyh41d4057_0 + - setuptools=63.4.3=py39ha65689a_0 + - simplegeneric=0.8.1=py_1 + - singular=4.2.1.p3=h3d4c4c6_2 + - 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.11.2=pyhd8ed1ab_0 + - trove-classifiers=2023.9.19=pyhd8ed1ab_0 + - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 + - typing_extensions=4.8.0=pyha770c72_0 + - typing_utils=0.1.0=pyhd8ed1ab_0 + - tzlocal=5.1=py39h4420490_0 + - unicodedata2=15.1.0=py39h898b7ef_0 + - uri-template=1.3.0=pyhd8ed1ab_0 + - vcversioner=2.16.0.0=py_1 + - webcolors=1.13=pyhd8ed1ab_0 + - webencodings=0.5.1=pyhd8ed1ab_2 + - websocket-client=1.6.4=pyhd8ed1ab_0 + - wheel=0.41.2=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 + - zipp=3.17.0=pyhd8ed1ab_0 + - anyio=4.0.0=pyhd8ed1ab_0 + - asttokens=2.4.0=pyhd8ed1ab_0 + - async-lru=2.0.4=pyhd8ed1ab_0 + - babel=2.12.1=pyhd8ed1ab_1 + - backports.functools_lru_cache=1.6.5=pyhd8ed1ab_0 + - beautifulsoup4=4.12.2=pyha770c72_0 + - beniget=0.4.1=pyhd8ed1ab_0 + - bleach=6.1.0=pyhd8ed1ab_0 + - 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 + - cxx-compiler=1.6.0=h2a328a1_0 + - cypari2=2.1.3=py39h532d932_2 + - deprecation=2.1.0=pyh9f0ad1d_0 + - fonttools=4.43.1=py39h898b7ef_0 + - fortran-compiler=1.6.0=h7048d53_0 + - importlib-metadata=6.8.0=pyha770c72_0 + - importlib_resources=6.1.0=pyhd8ed1ab_0 + - jedi=0.19.1=pyhd8ed1ab_0 + - jinja2=3.1.2=pyhd8ed1ab_1 + - jupyterlab_pygments=0.2.2=pyhd8ed1ab_0 + - libcblas=3.9.0=17_linuxaarch64_openblas + - libgd=2.3.3=h99c6b3b_4 + - liblapack=3.9.0=17_linuxaarch64_openblas + - matplotlib-inline=0.1.6=pyhd8ed1ab_0 + - memory-allocator=0.1.2=py39h0fd3b05_2 + - overrides=7.4.0=pyhd8ed1ab_0 + - pexpect=4.8.0=pyh1a96a4e_2 + - pillow=9.4.0=py39h72365ce_1 + - pip=23.2.1=pyhd8ed1ab_0 + - pplpy=0.8.7=py39h087fc0e_0 + - primecountpy=0.1.0=py39hd16970a_3 + - pybind11=2.11.1=py39hd16970a_2 + - pyproject-api=1.6.1=pyhd8ed1ab_0 + - python-dateutil=2.8.2=pyhd8ed1ab_0 + - pytz-deprecation-shim=0.1.0.post0=py39h4420490_4 + - referencing=0.30.2=pyhd8ed1ab_0 + - rfc3339-validator=0.1.4=pyhd8ed1ab_0 + - sagemath-db-conway-polynomials=0.5.0=h4fd8a4c_1 + - sympy=1.12=pypyh9d50eac_103 + - terminado=0.17.1=pyh41d4057_0 + - tinycss2=1.2.1=pyhd8ed1ab_0 + - typing-extensions=4.8.0=hd8ed1ab_0 + - urllib3=2.0.6=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 + - 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.18.0=pyhd8ed1ab_0 + - iml=1.0.5=h9076c59_1003 + - importlib-resources=6.1.0=pyhd8ed1ab_0 + - importlib_metadata=6.8.0=hd8ed1ab_0 + - jsonschema-specifications=2023.7.1=pyhd8ed1ab_0 + - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1 + - liblapacke=3.9.0=17_linuxaarch64_openblas + - numpy=1.26.0=py39h91c28bb_0 + - platformdirs=3.11.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 + - wcwidth=0.2.8=pyhd8ed1ab_0 + - xorg-libxtst=1.2.3=hf897c2e_1002 + - argon2-cffi=23.1.0=pyhd8ed1ab_0 + - blas-devel=3.9.0=17_linuxaarch64_openblas + - contourpy=1.1.1=py39hd16970a_1 + - cvxopt=1.3.2=py39h9d7d0b6_1 + - fpylll=0.5.9=py39h373d583_1 + - giac=1.9.0.21=h04922a4_1 + - igraph=0.9.10=hefb87a8_1 + - isoduration=20.11.0=pyhd8ed1ab_0 + - jsonschema=4.19.1=pyhd8ed1ab_0 + - jupyter_core=5.3.2=py39h4420490_0 + - linbox=1.6.3=h31716a8_7 + - openjdk=17.0.3=h1a274e0_5 + - pango=1.50.14=h1f1e9b3_0 + - pooch=1.7.0=pyhd8ed1ab_4 + - prompt-toolkit=3.0.39=pyha770c72_0 + - pythran=0.14.0=py39hc2250db_1 + - setuptools_scm=8.0.4=hd8ed1ab_0 + - virtualenv=20.24.4=pyhd8ed1ab_0 + - blas=2.117=openblas + - jmol=14.32.10=h8af1aa0_0 + - jsonschema-with-format-nongpl=4.19.1=pyhd8ed1ab_0 + - jupyter_client=8.3.1=pyhd8ed1ab_0 + - matplotlib-base=3.8.0=py39h8e43113_1 + - nbformat=5.9.2=pyhd8ed1ab_0 + - prompt_toolkit=3.0.39=hd8ed1ab_0 + - r-base=4.2.3=h620ca72_0 + - rw=0.9=hf897c2e_0 + - scipy=1.10.1=py39hf88902c_3 + - tox=4.11.3=pyhd8ed1ab_0 + - ipython=8.16.1=pyh0d859eb_0 + - jupyter_events=0.7.0=pyhd8ed1ab_2 + - matplotlib=3.8.0=py39ha65689a_1 + - nbclient=0.8.0=pyhd8ed1ab_0 + - rpy2=3.5.11=py39r42h1ae4408_3 + - ipykernel=6.25.2=pyh2140261_0 + - nbconvert-core=7.9.2=pyhd8ed1ab_0 + - jupyter_server=2.7.3=pyhd8ed1ab_1 + - nbconvert-pandoc=7.9.2=pyhd8ed1ab_0 + - jupyter-lsp=2.2.0=pyhd8ed1ab_0 + - jupyterlab_server=2.25.0=pyhd8ed1ab_0 + - nbconvert=7.9.2=pyhd8ed1ab_0 + - notebook-shim=0.2.3=pyhd8ed1ab_0 + - jupyterlab=4.0.6=pyhd8ed1ab_0 + - notebook=7.0.4=pyhd8ed1ab_0 + - widgetsnbextension=3.6.6=pyhd8ed1ab_0 + - ipywidgets=7.8.0=pyhd8ed1ab_0 + - jupyter-jsmol=2022.1.0=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 diff --git a/src/environment-3.9-macos-arm.yml b/src/environment-3.9-macos-arm.yml new file mode 100644 index 00000000000..b92b190db05 --- /dev/null +++ b/src/environment-3.9-macos-arm.yml @@ -0,0 +1,405 @@ +# Generated by conda-lock. +# platform: osx-arm64 +# input_hash: 88abf1abcf9dd837d4d334eb64e14b544fd4e901dc9e569f733440e9309f9b85 + +channels: + - conda-forge +dependencies: + - _r-mutex=1.0.1=anacondar_1 + - bc=1.07.1=h3422bc3_0 + - bzip2=1.0.8=h3422bc3_4 + - c-ares=1.20.1=h93a5062_0 + - ca-certificates=2023.7.22=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=hab24e00_0 + - fribidi=1.0.10=h27ca646_0 + - giflib=5.2.1=h1a8c8d9_3 + - jpeg=9e=h1a8c8d9_3 + - libatomic_ops=7.6.14=h1a8c8d9_0 + - libbrotlicommon=1.1.0=hb547adb_1 + - libcxx=16.0.6=h4653b0c_0 + - libdeflate=1.17=h1a8c8d9_0 + - libev=4.33=h642e427_1 + - libexpat=2.5.0=hb7217d7_1 + - libffi=3.4.2=h3422bc3_5 + - libgfortran-devel_osx-arm64=12.3.0=hc62be1c_1 + - libiconv=1.17=he4db4b2_0 + - 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 + - libzlib=1.2.13=h53f4e23_5 + - llvm-openmp=17.0.2=h1c12783_0 + - m4=1.4.18=h642e427_1001 + - make=4.3=he57ea6c_1 + - mathjax=3.2.2=hce30654_0 + - metis=5.1.0=h13dd4ca_1007 + - nauty=2.7.2=h3422bc3_0 + - ncurses=6.4=h7ea286d_0 + - 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 + - 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 + - three.js=122=hd8ed1ab_2 + - tzdata=2023c=h71feb2d_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.2.1=h9f76cd9_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.1=h9f76cd9_0 + - libbrotlidec=1.1.0=hb547adb_1 + - libbrotlienc=1.1.0=hb547adb_1 + - libedit=3.1.20191231=hc8eb9b7_2 + - libgfortran5=13.2.0=hf226fd6_1 + - libpng=1.6.39=h76d750c_0 + - libsqlite=3.43.0=hb31c410_0 + - libxcb=1.13=h9b22ae9_1004 + - lrcalc=2.1=hb7217d7_5 + - ninja=1.11.1=hffc8910_0 + - openjdk=20.0.2=hbe7ddab_2 + - openssl=3.1.3=h53f4e23_0 + - pari-seadata=0.0.20090618=0 + - pcre2=10.40=hb34f9b4_0 + - pixman=0.42.2=h13dd4ca_0 + - primesieve=11.0=hb7217d7_0 + - qhull=2020.2=hc021e02_2 + - readline=8.2=h92ec313_1 + - symmetrica=3.0.1=hb7217d7_0 + - tapi=1100.0.11=he4954df_0 + - tar=1.34=h7cb298e_1 + - tbb=2021.10.0=h1995070_1 + - texinfo=7.0=pl5321h9ea1dce_0 + - threejs-sage=122=hd8ed1ab_2 + - tk=8.6.13=hb31c410_0 + - zeromq=4.3.4=hbdafb3b_1 + - 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 + - ecl=21.2.1=h8492d4d_2 + - ecm=7.0.4=h47c7c1a_1002 + - fonts-conda-ecosystem=1=0 + - freetype=2.12.1=hadb7bae_2 + - gap-core=4.12.2=he8f4e70_3 + - givaro=4.1.1=h0cdca34_3 + - glpk=5.0=h6d7a090_0 + - jmol=14.32.10=hce30654_0 + - krb5=1.20.1=h69eda48_0 + - libgfortran=5.0.0=13_2_0_hd922786_1 + - libglib=2.78.0=h24e9cb9_0 + - libhomfly=1.02r6=h27ca646_0 + - libnghttp2=1.52.0=hae82a92_0 + - libssh2=1.11.0=h7a5bd25_0 + - libtiff=4.5.0=h5dffbdd_2 + - libxml2=2.10.3=h67585b2_4 + - m4ri=20140914=h17b34a0_1005 + - mpfr=4.2.0=he09a6ba_0 + - ntl=11.4.3=hbb3f309_1 + - pari=2.15.4=haeeeed7_2_pthread + - primecount=7.6=hb6e4faa_0 + - python=3.9.18=hfa1ae8a_0_cpython + - sigtool=0.1.3=h44b9a77_0 + - sqlite=3.43.0=h203b68d_0 + - tachyon=0.99b6=hfb72b2a_1001 + - tktable=2.10=hd996620_5 + - alabaster=0.7.13=pyhd8ed1ab_0 + - appdirs=1.4.4=pyh9f0ad1d_0 + - appnope=0.1.3=pyhd8ed1ab_0 + - attrs=23.1.0=pyh71513ae_1 + - backcall=0.2.0=pyh9f0ad1d_0 + - backports=1.0=pyhd8ed1ab_3 + - brotli=1.1.0=hb547adb_1 + - brotli-python=1.1.0=py39hb198ff7_1 + - cached_property=1.5.2=pyha770c72_1 + - cachetools=5.3.1=pyhd8ed1ab_0 + - certifi=2023.7.22=pyhd8ed1ab_0 + - chardet=5.2.0=py39h2804cbe_1 + - charset-normalizer=3.3.0=pyhd8ed1ab_0 + - colorama=0.4.6=pyhd8ed1ab_0 + - cycler=0.12.1=pyhd8ed1ab_0 + - cysignals=1.11.2=py39h65fc70a_3 + - cython=3.0.2=py39hb198ff7_2 + - debugpy=1.8.0=py39hb198ff7_1 + - decorator=5.1.1=pyhd8ed1ab_0 + - defusedxml=0.7.1=pyhd8ed1ab_0 + - distlib=0.3.7=pyhd8ed1ab_0 + - docutils=0.20.1=py39h2804cbe_2 + - editables=0.3=pyhd8ed1ab_0 + - entrypoints=0.4=pyhd8ed1ab_0 + - exceptiongroup=1.1.3=pyhd8ed1ab_0 + - executing=1.2.0=pyhd8ed1ab_0 + - fftw=3.3.10=nompi_h3046061_108 + - filelock=3.12.4=pyhd8ed1ab_0 + - flit-core=3.9.0=pyhd8ed1ab_0 + - fontconfig=2.14.2=h82840c6_0 + - gap-defaults=4.12.2=hce30654_3 + - gast=0.5.4=pyhd8ed1ab_0 + - gfan=0.6.2=hec08f5c_1003 + - idna=3.4=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=1.1.7=pyhd8ed1ab_0 + - kiwisolver=1.4.5=py39hbd775c9_1 + - lcalc=2.0.5=hc94e8e6_1 + - lcms2=2.15=h481adae_0 + - libbrial=1.2.12=ha7f5006_1 + - libcurl=8.1.2=h912dcd9_0 + - libflint=2.9.0=h173eafc_ntl_100 + - libllvm15=15.0.7=h62b9111_1 + - libopenblas=0.3.24=openmp_hd76b1f2_0 + - libwebp=1.2.4=h999c80f_1 + - m4rie=20150908=h17b34a0_1001 + - markupsafe=2.1.3=py39h0f82c59_1 + - maxima=5.45.0=h6032a66_2 + - mistune=3.0.1=pyhd8ed1ab_0 + - mpc=1.3.1=h91ba8db_0 + - mpfi=1.5.4=hbde5f5b_1001 + - mpmath=1.3.0=pyhd8ed1ab_0 + - munkres=1.1.4=pyh9f0ad1d_0 + - nest-asyncio=1.5.6=pyhd8ed1ab_0 + - networkx=2.8.8=pyhd8ed1ab_0 + - openjpeg=2.5.0=hbc2ba62_2 + - packaging=23.2=pyhd8ed1ab_0 + - pandocfilters=1.5.0=pyhd8ed1ab_0 + - parso=0.8.3=pyhd8ed1ab_0 + - pathspec=0.11.2=pyhd8ed1ab_0 + - pickleshare=0.7.5=py_1003 + - pkg-config=0.29.2=hab62308_1008 + - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 + - pluggy=1.3.0=pyhd8ed1ab_0 + - ply=3.11=py_1 + - ppl=1.2=h8b147cf_1006 + - prometheus_client=0.17.1=pyhd8ed1ab_0 + - psutil=5.9.5=py39h0f82c59_1 + - 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.16.1=pyhd8ed1ab_0 + - pyparsing=3.1.1=pyhd8ed1ab_0 + - pyrsistent=0.19.3=py39h0f82c59_1 + - pysocks=1.7.1=pyha2e5f31_6 + - python-fastjsonschema=2.18.1=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.1=py39h1e134f0_1 + - qd=2.3.22=hbec66e7_1004 + - rfc3986-validator=0.1.1=pyh9f0ad1d_0 + - rpds-py=0.10.4=py39h8fec3ad_0 + - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 + - sagetex=3.6.1=pyhd8ed1ab_0 + - setuptools=63.4.3=py39h2804cbe_0 + - simplegeneric=0.8.1=py_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.11.2=pyhd8ed1ab_0 + - trove-classifiers=2023.9.19=pyhd8ed1ab_0 + - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 + - typing_extensions=4.8.0=pyha770c72_0 + - typing_utils=0.1.0=pyhd8ed1ab_0 + - tzlocal=5.1=py39h2804cbe_0 + - unicodedata2=15.1.0=py39h0f82c59_0 + - uri-template=1.3.0=pyhd8ed1ab_0 + - vcversioner=2.16.0.0=py_1 + - webcolors=1.13=pyhd8ed1ab_0 + - webencodings=0.5.1=pyhd8ed1ab_2 + - websocket-client=1.6.4=pyhd8ed1ab_0 + - wheel=0.41.2=pyhd8ed1ab_0 + - zipp=3.17.0=pyhd8ed1ab_0 + - anyio=4.0.0=pyhd8ed1ab_0 + - arb=2.23.0=he5401aa_0 + - asttokens=2.4.0=pyhd8ed1ab_0 + - async-lru=2.0.4=pyhd8ed1ab_0 + - babel=2.12.1=pyhd8ed1ab_1 + - backports.functools_lru_cache=1.6.5=pyhd8ed1ab_0 + - beautifulsoup4=4.12.2=pyha770c72_0 + - beniget=0.4.1=pyhd8ed1ab_0 + - bleach=6.1.0=pyhd8ed1ab_0 + - brial=1.2.12=pyh694c41f_1 + - cached-property=1.5.2=hd8ed1ab_1 + - cairo=1.16.0=h73a0509_1014 + - cffi=1.16.0=py39he153c15_0 + - 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 + - eclib=20230424=haeb5157_0 + - fonttools=4.43.1=py39h17cfd9d_0 + - fplll=5.4.4=h29209e0_0 + - gfortran_impl_osx-arm64=12.3.0=hbbb9e1e_1 + - gmpy2=2.1.2=py39h0b4f9c6_1 + - importlib-metadata=6.8.0=pyha770c72_0 + - importlib_resources=6.1.0=pyhd8ed1ab_0 + - jedi=0.19.1=pyhd8ed1ab_0 + - jinja2=3.1.2=pyhd8ed1ab_1 + - jupyterlab_pygments=0.2.2=pyhd8ed1ab_0 + - ld64_osx-arm64=609=hc4dc95b_14 + - libblas=3.9.0=18_osxarm64_openblas + - libclang-cpp15=15.0.7=default_h5dc8d65_3 + - libgd=2.3.3=h90fb8ed_4 + - llvm-tools=15.0.7=h62b9111_1 + - matplotlib-inline=0.1.6=pyhd8ed1ab_0 + - memory-allocator=0.1.2=py39h02fc5c5_2 + - openblas=0.3.24=openmp_hce3e5ba_0 + - overrides=7.4.0=pyhd8ed1ab_0 + - pexpect=4.8.0=pyh1a96a4e_2 + - pillow=9.4.0=py39h8bd98a6_1 + - pip=23.2.1=pyhd8ed1ab_0 + - pkgconfig=1.5.5=pyhd8ed1ab_4 + - primecountpy=0.1.0=py39hbd775c9_4 + - pybind11=2.11.1=py39hbd775c9_2 + - pyobjc-core=10.0=py39h4d1a642_0 + - pyproject-api=1.6.1=pyhd8ed1ab_0 + - python-dateutil=2.8.2=pyhd8ed1ab_0 + - pytz-deprecation-shim=0.1.0.post0=py39h2804cbe_4 + - referencing=0.30.2=pyhd8ed1ab_0 + - rfc3339-validator=0.1.4=pyhd8ed1ab_0 + - sagemath-db-conway-polynomials=0.5.0=h4653dfc_1 + - singular=4.2.1.p3=h3b80c97_2 + - terminado=0.17.1=pyhd1c38e8_0 + - tinycss2=1.2.1=pyhd8ed1ab_0 + - typing-extensions=4.8.0=hd8ed1ab_0 + - urllib3=2.0.6=pyhd8ed1ab_0 + - argon2-cffi-bindings=21.2.0=py39h0f82c59_4 + - arrow=1.3.0=pyhd8ed1ab_0 + - cctools_osx-arm64=973.0.1=h2a25c60_14 + - clang-15=15.0.7=default_h5dc8d65_3 + - fqdn=1.5.1=pyhd8ed1ab_0 + - harfbuzz=6.0.0=hddbc195_0 + - hatchling=1.18.0=pyhd8ed1ab_0 + - importlib-resources=6.1.0=pyhd8ed1ab_0 + - importlib_metadata=6.8.0=hd8ed1ab_0 + - jsonschema-specifications=2023.7.1=pyhd8ed1ab_0 + - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1 + - ld64=609=h89fa09d_14 + - libcblas=3.9.0=18_osxarm64_openblas + - liblapack=3.9.0=18_osxarm64_openblas + - platformdirs=3.11.0=pyhd8ed1ab_0 + - pplpy=0.8.7=py39h1364912_0 + - pyobjc-framework-cocoa=10.0=py39h4d1a642_1 + - requests=2.31.0=pyhd8ed1ab_0 + - setuptools-scm=8.0.4=pyhd8ed1ab_0 + - stack_data=0.6.2=pyhd8ed1ab_0 + - sympy=1.12=pypyh9d50eac_103 + - wcwidth=0.2.8=pyhd8ed1ab_0 + - argon2-cffi=23.1.0=pyhd8ed1ab_0 + - arpack=3.7.0=h58ebc17_2 + - cctools=973.0.1=hd1ac623_14 + - clang=15.0.7=hce30654_3 + - dsdp=5.8=h9397a75_1203 + - fflas-ffpack=2.4.3=h11f2abc_2 + - gsl=2.7=h6e638da_0 + - iml=1.0.5=hd52f0d1_1003 + - isoduration=20.11.0=pyhd8ed1ab_0 + - jsonschema=4.19.1=pyhd8ed1ab_0 + - jupyter_core=5.3.2=py39h2804cbe_0 + - liblapacke=3.9.0=18_osxarm64_openblas + - numpy=1.26.0=py39hc348b60_0 + - pango=1.50.14=h6c112b8_0 + - pooch=1.7.0=pyhd8ed1ab_4 + - prompt-toolkit=3.0.39=pyha770c72_0 + - send2trash=1.8.2=pyhd1c38e8_0 + - setuptools_scm=8.0.4=hd8ed1ab_0 + - suitesparse=5.10.1=h7cd81ec_1 + - virtualenv=20.24.4=pyhd8ed1ab_0 + - blas-devel=3.9.0=18_osxarm64_openblas + - clangxx=15.0.7=default_h610c423_3 + - contourpy=1.1.1=py39hbd775c9_1 + - cvxopt=1.3.2=py39h76eeb2c_1 + - fpylll=0.5.9=py39h0530aee_1 + - giac=1.9.0.21=h1c96721_1 + - igraph=0.9.10=hcec9b84_1 + - jsonschema-with-format-nongpl=4.19.1=pyhd8ed1ab_0 + - jupyter_client=8.3.1=pyhd8ed1ab_0 + - linbox=1.6.3=h549c411_7 + - nbformat=5.9.2=pyhd8ed1ab_0 + - prompt_toolkit=3.0.39=hd8ed1ab_0 + - scipy=1.10.1=py39ha6b2cbd_3 + - tox=4.11.3=pyhd8ed1ab_0 + - blas=2.118=openblas + - compiler-rt_osx-arm64=15.0.7=hf8d1dfb_1 + - ipython=8.16.1=pyh31c8845_0 + - jupyter_events=0.7.0=pyhd8ed1ab_2 + - matplotlib-base=3.8.0=py39h6685e7c_1 + - nbclient=0.8.0=pyhd8ed1ab_0 + - rw=0.9=h3422bc3_0 + - compiler-rt=15.0.7=hf8d1dfb_1 + - ipykernel=6.25.2=pyh1050b4e_0 + - matplotlib=3.8.0=py39hdf13c20_1 + - nbconvert-core=7.9.2=pyhd8ed1ab_0 + - clang_osx-arm64=15.0.7=h77e971b_3 + - jupyter_server=2.7.3=pyhd8ed1ab_1 + - nbconvert-pandoc=7.9.2=pyhd8ed1ab_0 + - c-compiler=1.6.0=hd291e01_0 + - clangxx_osx-arm64=15.0.7=h768a7fd_3 + - gfortran_osx-arm64=12.3.0=h57527a5_1 + - jupyter-lsp=2.2.0=pyhd8ed1ab_0 + - jupyterlab_server=2.25.0=pyhd8ed1ab_0 + - nbconvert=7.9.2=pyhd8ed1ab_0 + - notebook-shim=0.2.3=pyhd8ed1ab_0 + - cxx-compiler=1.6.0=h1995070_0 + - gfortran=12.3.0=h1ca8e4b_1 + - jupyterlab=4.0.6=pyhd8ed1ab_0 + - pythran=0.14.0=py39h819cc4c_1 + - r-base=4.1.3=h9c4d319_6 + - fortran-compiler=1.6.0=h5a50232_0 + - notebook=7.0.4=pyhd8ed1ab_0 + - rpy2=3.5.11=py39r41hf9b1952_0 + - compilers=1.6.0=hce30654_0 + - widgetsnbextension=3.6.6=pyhd8ed1ab_0 + - ipywidgets=7.8.0=pyhd8ed1ab_0 + - jupyter-jsmol=2022.1.0=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 diff --git a/src/environment-dev-3.10-linux-aarch.yml b/src/environment-dev-3.10-linux-aarch.yml new file mode 100644 index 00000000000..15c1cef0e10 --- /dev/null +++ b/src/environment-dev-3.10-linux-aarch.yml @@ -0,0 +1,446 @@ +# Generated by conda-lock. +# platform: linux-aarch64 +# input_hash: 3b70fe86359f5fdcf6e40fd29b89eaaf5dec9348711bb3bcd8c51b7f5ade4989 + +channels: + - conda-forge +dependencies: + - _r-mutex=1.0.1=anacondar_1 + - _sysroot_linux-aarch64_curr_repodata_hack=4=h57d6b7b_13 + - ca-certificates=2023.7.22=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=hab24e00_0 + - gh=2.36.0=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_2 + - libgomp=13.2.0=hf8544c7_2 + - libstdcxx-devel_linux-aarch64=12.3.0=h8b5ab12_2 + - libstdcxx-ng=13.2.0=h9a76618_2 + - mathjax=3.2.2=h8af1aa0_0 + - pandoc=3.1.3=h8af1aa0_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 + - 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 + - fonts-conda-forge=1=0 + - 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 + - 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_2 + - alsa-lib=1.2.8=h4e544f5_0 + - attr=2.5.1=h4e544f5_1 + - bc=1.07.1=hf897c2e_0 + - bdw-gc=8.0.6=hd62202e_0 + - bzip2=1.0.8=hf897c2e_4 + - c-ares=1.20.1=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.2.1=h7fd3ca4_0 + - graphite2=1.3.13=h7fd3ca4_1001 + - icu=70.1=ha18d298_0 + - jpeg=9e=h2a766a3_3 + - keyutils=1.6.1=h4e544f5_0 + - lerc=4.0.0=h4de3ea5_0 + - libatomic_ops=7.6.14=h4e544f5_0 + - libbraiding=1.1=h7fd3ca4_0 + - libbrotlicommon=1.1.0=h31becfc_1 + - libcbor=0.9.0=h01db608_0 + - libdeflate=1.17=hb4cce97_0 + - libev=4.33=h516909a_1 + - libexpat=2.5.0=hd600fc2_1 + - libffi=3.4.2=h3557bc0_5 + - libgfortran5=13.2.0=h582850c_2 + - libiconv=1.17=h9cdd2b7_0 + - libnsl=2.0.0=h31becfc_1 + - libsanitizer=12.3.0=h8ebda82_2 + - 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 + - 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.7.2=hf897c2e_0 + - ncurses=6.4=h2e1726e_0 + - ninja=1.11.1=hdd96247_0 + - openssl=3.1.3=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_2 + - 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_2 + - libhomfly=1.02r6=hb9de7d4_0 + - libnghttp2=1.52.0=h250e5c5_0 + - libpng=1.6.39=hf9034f9_0 + - libsqlite=3.43.0=h194ca79_0 + - libssh2=1.11.0=h492db2e_0 + - libxcb=1.13=h3557bc0_1004 + - libxml2=2.10.3=habe54e3_4 + - mpfr=4.2.0=h96f194b_0 + - ntl=11.4.3=h0d7519b_1 + - pcre2=10.40=he7b27c6_0 + - perl=5.32.1=4_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.4=h01db608_1 + - 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_2 + - gxx_impl_linux-aarch64=12.3.0=hcde2664_2 + - krb5=1.20.1=h113d92e_0 + - libflint=2.9.0=hd3470fa_ntl_100 + - libglib=2.78.0=h0464669_0 + - libhwloc=2.9.1=h21e8147_0 + - libopenblas=0.3.23=pthreads_hd703e6f_0 + - libtiff=4.5.0=h4c1066a_2 + - libudev1=254=h31becfc_0 + - llvm-openmp=17.0.2=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.12=hbbe8eec_0_cpython + - qd=2.3.22=h05efe27_1004 + - sqlite=3.43.0=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 + - arb=2.23.0=h37d5dab_0 + - attrs=23.1.0=pyh71513ae_1 + - automake=1.16.5=pl5321h8af1aa0_0 + - backcall=0.2.0=pyh9f0ad1d_0 + - backports=1.0=pyhd8ed1ab_3 + - 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.1=pyhd8ed1ab_0 + - certifi=2023.7.22=pyhd8ed1ab_0 + - chardet=5.2.0=py310hbbe02a8_1 + - charset-normalizer=3.3.0=pyhd8ed1ab_0 + - colorama=0.4.6=pyhd8ed1ab_0 + - cycler=0.12.1=pyhd8ed1ab_0 + - cysignals=1.11.2=py310h485802a_3 + - cython=3.0.2=py310hbb3657e_2 + - debugpy=1.8.0=py310hbb3657e_1 + - decorator=5.1.1=pyhd8ed1ab_0 + - defusedxml=0.7.1=pyhd8ed1ab_0 + - distlib=0.3.7=pyhd8ed1ab_0 + - docutils=0.20.1=py310hbbe02a8_2 + - eclib=20230424=h0bc7b0f_0 + - editables=0.3=pyhd8ed1ab_0 + - entrypoints=0.4=pyhd8ed1ab_0 + - exceptiongroup=1.1.3=pyhd8ed1ab_0 + - execnet=2.0.2=pyhd8ed1ab_0 + - executing=1.2.0=pyhd8ed1ab_0 + - filelock=3.12.4=pyhd8ed1ab_0 + - flit-core=3.9.0=pyhd8ed1ab_0 + - fontconfig=2.14.2=ha9a116f_0 + - fplll=5.4.4=h5cd656c_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.4=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=py310h4c7bcd0_3 + - jupyterlab_widgets=1.1.7=pyhd8ed1ab_0 + - kiwisolver=1.4.5=py310he290b8a_1 + - lcalc=2.0.5=h3264cc0_1 + - lcms2=2.15=h7576be9_0 + - libblas=3.9.0=17_linuxaarch64_openblas + - libbrial=1.2.12=h17533bf_1 + - libcups=2.3.3=h4303303_3 + - libcurl=8.1.2=hc34909b_0 + - libfido2=1.13.0=h73a623e_0 + - libwebp=1.2.4=h7bdf6e5_1 + - m4rie=20150908=h75e8696_1001 + - markupsafe=2.1.3=py310h7c1f4a2_1 + - maxima=5.45.0=haa44c19_3 + - mistune=3.0.1=pyhd8ed1ab_0 + - mpmath=1.3.0=pyhd8ed1ab_0 + - munkres=1.1.4=pyh9f0ad1d_0 + - nest-asyncio=1.5.6=pyhd8ed1ab_0 + - networkx=2.8.8=pyhd8ed1ab_0 + - openblas=0.3.23=pthreads_hef96516_0 + - openjpeg=2.5.0=h9508984_2 + - packaging=23.2=pyhd8ed1ab_0 + - pandocfilters=1.5.0=pyhd8ed1ab_0 + - parso=0.8.3=pyhd8ed1ab_0 + - pathspec=0.11.2=pyhd8ed1ab_0 + - pickleshare=0.7.5=py_1003 + - pkgconfig=1.5.5=pyhd8ed1ab_4 + - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 + - pluggy=1.3.0=pyhd8ed1ab_0 + - ply=3.11=py_1 + - prometheus_client=0.17.1=pyhd8ed1ab_0 + - psutil=5.9.5=py310hb299538_1 + - 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.0=pyhd8ed1ab_0 + - pycparser=2.21=pyhd8ed1ab_0 + - pygments=2.16.1=pyhd8ed1ab_0 + - pyparsing=3.1.1=pyhd8ed1ab_0 + - pyrsistent=0.19.3=py310h7c1f4a2_1 + - pysocks=1.7.1=pyha2e5f31_6 + - pyspellchecker=0.7.2=pyhd8ed1ab_0 + - python-fastjsonschema=2.18.1=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.1=py310hdaec954_1 + - rfc3986-validator=0.1.1=pyh9f0ad1d_0 + - rpds-py=0.10.4=py310h057607a_0 + - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 + - sagetex=3.6.1=pyhd8ed1ab_0 + - send2trash=1.8.2=pyh41d4057_0 + - setuptools=63.4.3=py310hbbe02a8_0 + - simplegeneric=0.8.1=py_1 + - singular=4.2.1.p3=h3d4c4c6_2 + - 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.11.2=pyhd8ed1ab_0 + - trove-classifiers=2023.9.19=pyhd8ed1ab_0 + - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 + - typing_extensions=4.8.0=pyha770c72_0 + - typing_utils=0.1.0=pyhd8ed1ab_0 + - tzlocal=5.1=py310h4c7bcd0_0 + - unicodedata2=15.1.0=py310hb299538_0 + - uri-template=1.3.0=pyhd8ed1ab_0 + - vcversioner=2.16.0.0=py_1 + - webcolors=1.13=pyhd8ed1ab_0 + - webencodings=0.5.1=pyhd8ed1ab_2 + - websocket-client=1.6.4=pyhd8ed1ab_0 + - wheel=0.41.2=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 + - zipp=3.17.0=pyhd8ed1ab_0 + - anyio=4.0.0=pyhd8ed1ab_0 + - asttokens=2.4.0=pyhd8ed1ab_0 + - async-lru=2.0.4=pyhd8ed1ab_0 + - babel=2.12.1=pyhd8ed1ab_1 + - backports.functools_lru_cache=1.6.5=pyhd8ed1ab_0 + - beautifulsoup4=4.12.2=pyha770c72_0 + - beniget=0.4.1=pyhd8ed1ab_0 + - bleach=6.1.0=pyhd8ed1ab_0 + - brial=1.2.12=pyh694c41f_1 + - cached-property=1.5.2=hd8ed1ab_1 + - cairo=1.16.0=hd19fb6e_1014 + - cattrs=23.1.2=pyhd8ed1ab_0 + - 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 + - cxx-compiler=1.6.0=h2a328a1_0 + - cypari2=2.1.3=py310h4cbba44_2 + - deprecation=2.1.0=pyh9f0ad1d_0 + - fonttools=4.43.1=py310hb299538_0 + - fortran-compiler=1.6.0=h7048d53_0 + - importlib-metadata=6.8.0=pyha770c72_0 + - importlib_resources=6.1.0=pyhd8ed1ab_0 + - jedi=0.19.1=pyhd8ed1ab_0 + - jinja2=3.1.2=pyhd8ed1ab_1 + - jupyterlab_pygments=0.2.2=pyhd8ed1ab_0 + - libcblas=3.9.0=17_linuxaarch64_openblas + - libgd=2.3.3=h99c6b3b_4 + - liblapack=3.9.0=17_linuxaarch64_openblas + - matplotlib-inline=0.1.6=pyhd8ed1ab_0 + - memory-allocator=0.1.2=py310h761cc84_2 + - 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.2.1=pyhd8ed1ab_0 + - pplpy=0.8.7=py310hd5c817c_0 + - primecountpy=0.1.0=py310h586407a_4 + - pybind11=2.11.1=py310h586407a_2 + - pyproject-api=1.6.1=pyhd8ed1ab_0 + - pytest=7.4.2=pyhd8ed1ab_0 + - python-dateutil=2.8.2=pyhd8ed1ab_0 + - pytz-deprecation-shim=0.1.0.post0=py310h4c7bcd0_4 + - referencing=0.30.2=pyhd8ed1ab_0 + - rfc3339-validator=0.1.4=pyhd8ed1ab_0 + - sagemath-db-conway-polynomials=0.5.0=h4fd8a4c_1 + - sympy=1.12=pypyh9d50eac_103 + - terminado=0.17.1=pyh41d4057_0 + - tinycss2=1.2.1=pyhd8ed1ab_0 + - typing-extensions=4.8.0=hd8ed1ab_0 + - urllib3=2.0.6=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 + - fflas-ffpack=2.4.3=hf104d39_2 + - fqdn=1.5.1=pyhd8ed1ab_0 + - git=2.42.0=pl5321h0d979e1_0 + - gsl=2.7=h294027d_0 + - harfbuzz=6.0.0=hbcb8a4f_0 + - hatchling=1.18.0=pyhd8ed1ab_0 + - iml=1.0.5=h9076c59_1003 + - importlib-resources=6.1.0=pyhd8ed1ab_0 + - importlib_metadata=6.8.0=hd8ed1ab_0 + - jsonschema-specifications=2023.7.1=pyhd8ed1ab_0 + - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1 + - liblapacke=3.9.0=17_linuxaarch64_openblas + - lsprotocol=2023.0.0b1=pyhd8ed1ab_0 + - numpy=1.26.0=py310hcbab775_0 + - platformdirs=3.11.0=pyhd8ed1ab_0 + - pytest-xdist=3.3.1=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 + - wcwidth=0.2.8=pyhd8ed1ab_0 + - xorg-libxtst=1.2.3=hf897c2e_1002 + - argon2-cffi=23.1.0=pyhd8ed1ab_0 + - blas-devel=3.9.0=17_linuxaarch64_openblas + - contourpy=1.1.1=py310h586407a_1 + - cvxopt=1.3.2=py310h536486b_1 + - fpylll=0.5.9=py310hde12f47_1 + - giac=1.9.0.21=h04922a4_1 + - igraph=0.9.10=hefb87a8_1 + - isoduration=20.11.0=pyhd8ed1ab_0 + - jsonschema=4.19.1=pyhd8ed1ab_0 + - jupyter_core=5.3.2=py310h4c7bcd0_0 + - linbox=1.6.3=h31716a8_7 + - openjdk=17.0.3=h1a274e0_5 + - pango=1.50.14=h1f1e9b3_0 + - pooch=1.7.0=pyhd8ed1ab_4 + - prompt-toolkit=3.0.39=pyha770c72_0 + - pythran=0.14.0=py310h5e48e15_1 + - setuptools_scm=8.0.4=hd8ed1ab_0 + - typeguard=3.0.2=pyhd8ed1ab_0 + - virtualenv=20.24.4=pyhd8ed1ab_0 + - blas=2.117=openblas + - jmol=14.32.10=h8af1aa0_0 + - jsonschema-with-format-nongpl=4.19.1=pyhd8ed1ab_0 + - jupyter_client=8.3.1=pyhd8ed1ab_0 + - matplotlib-base=3.8.0=py310h0a7f329_1 + - nbformat=5.9.2=pyhd8ed1ab_0 + - prompt_toolkit=3.0.39=hd8ed1ab_0 + - pygls=1.1.1=pyhd8ed1ab_0 + - r-base=4.2.3=h620ca72_0 + - rw=0.9=hf897c2e_0 + - scipy=1.10.1=py310h7f380f4_3 + - tox=4.11.3=pyhd8ed1ab_0 + - ipython=8.16.1=pyh0d859eb_0 + - jupyter_events=0.7.0=pyhd8ed1ab_2 + - matplotlib=3.8.0=py310hbbe02a8_1 + - nbclient=0.8.0=pyhd8ed1ab_0 + - rpy2=3.5.11=py310r42h8b6b5fc_3 + - ipykernel=6.25.2=pyh2140261_0 + - nbconvert-core=7.9.2=pyhd8ed1ab_0 + - jupyter_server=2.7.3=pyhd8ed1ab_1 + - nbconvert-pandoc=7.9.2=pyhd8ed1ab_0 + - jupyter-lsp=2.2.0=pyhd8ed1ab_0 + - jupyterlab_server=2.25.0=pyhd8ed1ab_0 + - nbconvert=7.9.2=pyhd8ed1ab_0 + - notebook-shim=0.2.3=pyhd8ed1ab_0 + - jupyterlab=4.0.6=pyhd8ed1ab_0 + - notebook=7.0.4=pyhd8ed1ab_0 + - widgetsnbextension=3.6.6=pyhd8ed1ab_0 + - ipywidgets=7.8.0=pyhd8ed1ab_0 + - jupyter-jsmol=2022.1.0=pyhd8ed1ab_0 + - esbonio=0.16.2=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 diff --git a/src/environment-dev-3.10-macos-arm.yml b/src/environment-dev-3.10-macos-arm.yml new file mode 100644 index 00000000000..5b3969d1f7c --- /dev/null +++ b/src/environment-dev-3.10-macos-arm.yml @@ -0,0 +1,421 @@ +# Generated by conda-lock. +# platform: osx-arm64 +# input_hash: b362654ed383132e9c4f565f904e91c2c8c20227991a8048b333c6ca61df13d6 + +channels: + - conda-forge +dependencies: + - _r-mutex=1.0.1=anacondar_1 + - bc=1.07.1=h3422bc3_0 + - bzip2=1.0.8=h3422bc3_4 + - c-ares=1.20.1=h93a5062_0 + - ca-certificates=2023.7.22=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=hab24e00_0 + - fribidi=1.0.10=h27ca646_0 + - gh=2.36.0=h75b854d_0 + - giflib=5.2.1=h1a8c8d9_3 + - jpeg=9e=h1a8c8d9_3 + - libatomic_ops=7.6.14=h1a8c8d9_0 + - libbrotlicommon=1.1.0=hb547adb_1 + - libcxx=16.0.6=h4653b0c_0 + - libdeflate=1.17=h1a8c8d9_0 + - libev=4.33=h642e427_1 + - libexpat=2.5.0=hb7217d7_1 + - libffi=3.4.2=h3422bc3_5 + - libgfortran-devel_osx-arm64=12.3.0=hc62be1c_1 + - libiconv=1.17=he4db4b2_0 + - 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 + - libzlib=1.2.13=h53f4e23_5 + - llvm-openmp=17.0.2=h1c12783_0 + - m4=1.4.18=h642e427_1001 + - make=4.3=he57ea6c_1 + - mathjax=3.2.2=hce30654_0 + - metis=5.1.0=h13dd4ca_1007 + - nauty=2.7.2=h3422bc3_0 + - ncurses=6.4=h7ea286d_0 + - 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 + - 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 + - three.js=122=hd8ed1ab_2 + - tzdata=2023c=h71feb2d_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.2.1=h9f76cd9_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.1=h9f76cd9_0 + - libbrotlidec=1.1.0=hb547adb_1 + - libbrotlienc=1.1.0=hb547adb_1 + - libcbor=0.10.2=hb7217d7_0 + - libedit=3.1.20191231=hc8eb9b7_2 + - libgfortran5=13.2.0=hf226fd6_1 + - libpng=1.6.39=h76d750c_0 + - libsqlite=3.43.0=hb31c410_0 + - libxcb=1.13=h9b22ae9_1004 + - lrcalc=2.1=hb7217d7_5 + - ninja=1.11.1=hffc8910_0 + - openjdk=20.0.2=hbe7ddab_2 + - openssl=3.1.3=h53f4e23_0 + - pari-seadata=0.0.20090618=0 + - pcre2=10.40=hb34f9b4_0 + - pixman=0.42.2=h13dd4ca_0 + - primesieve=11.0=hb7217d7_0 + - qhull=2020.2=hc021e02_2 + - readline=8.2=h92ec313_1 + - symmetrica=3.0.1=hb7217d7_0 + - tapi=1100.0.11=he4954df_0 + - tar=1.34=h7cb298e_1 + - tbb=2021.10.0=h1995070_1 + - texinfo=7.0=pl5321h9ea1dce_0 + - threejs-sage=122=hd8ed1ab_2 + - tk=8.6.13=hb31c410_0 + - zeromq=4.3.4=hbdafb3b_1 + - 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 + - ecl=21.2.1=h8492d4d_2 + - ecm=7.0.4=h47c7c1a_1002 + - fonts-conda-ecosystem=1=0 + - freetype=2.12.1=hadb7bae_2 + - gap-core=4.12.2=he8f4e70_3 + - givaro=4.1.1=h0cdca34_3 + - glpk=5.0=h6d7a090_0 + - jmol=14.32.10=hce30654_0 + - krb5=1.20.1=h69eda48_0 + - libfido2=1.13.0=h19e3c78_0 + - libgfortran=5.0.0=13_2_0_hd922786_1 + - libglib=2.78.0=h24e9cb9_0 + - libhomfly=1.02r6=h27ca646_0 + - libnghttp2=1.52.0=hae82a92_0 + - libssh2=1.11.0=h7a5bd25_0 + - libtiff=4.5.0=h5dffbdd_2 + - libxml2=2.10.3=h67585b2_4 + - m4ri=20140914=h17b34a0_1005 + - mpfr=4.2.0=he09a6ba_0 + - ntl=11.4.3=hbb3f309_1 + - pari=2.15.4=haeeeed7_2_pthread + - primecount=7.6=hb6e4faa_0 + - python=3.10.12=h01493a6_0_cpython + - sigtool=0.1.3=h44b9a77_0 + - sqlite=3.43.0=h203b68d_0 + - tachyon=0.99b6=hfb72b2a_1001 + - tktable=2.10=hd996620_5 + - alabaster=0.7.13=pyhd8ed1ab_0 + - appdirs=1.4.4=pyh9f0ad1d_0 + - appnope=0.1.3=pyhd8ed1ab_0 + - attrs=23.1.0=pyh71513ae_1 + - backcall=0.2.0=pyh9f0ad1d_0 + - backports=1.0=pyhd8ed1ab_3 + - brotli=1.1.0=hb547adb_1 + - brotli-python=1.1.0=py310h1253130_1 + - cached_property=1.5.2=pyha770c72_1 + - cachetools=5.3.1=pyhd8ed1ab_0 + - certifi=2023.7.22=pyhd8ed1ab_0 + - chardet=5.2.0=py310hbe9552e_1 + - charset-normalizer=3.3.0=pyhd8ed1ab_0 + - colorama=0.4.6=pyhd8ed1ab_0 + - cycler=0.12.1=pyhd8ed1ab_0 + - cysignals=1.11.2=py310hfd3b3fe_3 + - cython=3.0.2=py310h1253130_2 + - debugpy=1.8.0=py310h1253130_1 + - decorator=5.1.1=pyhd8ed1ab_0 + - defusedxml=0.7.1=pyhd8ed1ab_0 + - distlib=0.3.7=pyhd8ed1ab_0 + - docutils=0.20.1=py310hbe9552e_2 + - editables=0.3=pyhd8ed1ab_0 + - entrypoints=0.4=pyhd8ed1ab_0 + - exceptiongroup=1.1.3=pyhd8ed1ab_0 + - execnet=2.0.2=pyhd8ed1ab_0 + - executing=1.2.0=pyhd8ed1ab_0 + - fftw=3.3.10=nompi_h3046061_108 + - filelock=3.12.4=pyhd8ed1ab_0 + - flit-core=3.9.0=pyhd8ed1ab_0 + - fontconfig=2.14.2=h82840c6_0 + - gap-defaults=4.12.2=hce30654_3 + - gast=0.5.4=pyhd8ed1ab_0 + - gfan=0.6.2=hec08f5c_1003 + - idna=3.4=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=1.1.7=pyhd8ed1ab_0 + - kiwisolver=1.4.5=py310h38f39d4_1 + - lcalc=2.0.5=hc94e8e6_1 + - lcms2=2.15=h481adae_0 + - libbrial=1.2.12=ha7f5006_1 + - libcurl=8.1.2=h912dcd9_0 + - libflint=2.9.0=h173eafc_ntl_100 + - libllvm15=15.0.7=h62b9111_1 + - libopenblas=0.3.24=openmp_hd76b1f2_0 + - libwebp=1.2.4=h999c80f_1 + - m4rie=20150908=h17b34a0_1001 + - markupsafe=2.1.3=py310h2aa6e3c_1 + - maxima=5.45.0=h6032a66_2 + - mistune=3.0.1=pyhd8ed1ab_0 + - mpc=1.3.1=h91ba8db_0 + - mpfi=1.5.4=hbde5f5b_1001 + - mpmath=1.3.0=pyhd8ed1ab_0 + - munkres=1.1.4=pyh9f0ad1d_0 + - nest-asyncio=1.5.6=pyhd8ed1ab_0 + - networkx=2.8.8=pyhd8ed1ab_0 + - openjpeg=2.5.0=hbc2ba62_2 + - openssh=9.3p1=h7126958_1 + - packaging=23.2=pyhd8ed1ab_0 + - pandocfilters=1.5.0=pyhd8ed1ab_0 + - parso=0.8.3=pyhd8ed1ab_0 + - pathspec=0.11.2=pyhd8ed1ab_0 + - pickleshare=0.7.5=py_1003 + - pkg-config=0.29.2=hab62308_1008 + - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 + - pluggy=1.3.0=pyhd8ed1ab_0 + - ply=3.11=py_1 + - ppl=1.2=h8b147cf_1006 + - prometheus_client=0.17.1=pyhd8ed1ab_0 + - psutil=5.9.5=py310h2aa6e3c_1 + - 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.0=pyhd8ed1ab_0 + - pycparser=2.21=pyhd8ed1ab_0 + - pygments=2.16.1=pyhd8ed1ab_0 + - pyparsing=3.1.1=pyhd8ed1ab_0 + - pyrsistent=0.19.3=py310h2aa6e3c_1 + - pysocks=1.7.1=pyha2e5f31_6 + - pyspellchecker=0.7.2=pyhd8ed1ab_0 + - python-fastjsonschema=2.18.1=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.1=py310h30b7201_1 + - qd=2.3.22=hbec66e7_1004 + - rfc3986-validator=0.1.1=pyh9f0ad1d_0 + - rpds-py=0.10.4=py310hd442715_0 + - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 + - sagetex=3.6.1=pyhd8ed1ab_0 + - setuptools=63.4.3=py310hbe9552e_0 + - simplegeneric=0.8.1=py_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.11.2=pyhd8ed1ab_0 + - trove-classifiers=2023.9.19=pyhd8ed1ab_0 + - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 + - typing_extensions=4.8.0=pyha770c72_0 + - typing_utils=0.1.0=pyhd8ed1ab_0 + - tzlocal=5.1=py310hbe9552e_0 + - unicodedata2=15.1.0=py310h2aa6e3c_0 + - uri-template=1.3.0=pyhd8ed1ab_0 + - vcversioner=2.16.0.0=py_1 + - webcolors=1.13=pyhd8ed1ab_0 + - webencodings=0.5.1=pyhd8ed1ab_2 + - websocket-client=1.6.4=pyhd8ed1ab_0 + - wheel=0.41.2=pyhd8ed1ab_0 + - zipp=3.17.0=pyhd8ed1ab_0 + - anyio=4.0.0=pyhd8ed1ab_0 + - arb=2.23.0=he5401aa_0 + - asttokens=2.4.0=pyhd8ed1ab_0 + - async-lru=2.0.4=pyhd8ed1ab_0 + - babel=2.12.1=pyhd8ed1ab_1 + - backports.functools_lru_cache=1.6.5=pyhd8ed1ab_0 + - beautifulsoup4=4.12.2=pyha770c72_0 + - beniget=0.4.1=pyhd8ed1ab_0 + - bleach=6.1.0=pyhd8ed1ab_0 + - brial=1.2.12=pyh694c41f_1 + - cached-property=1.5.2=hd8ed1ab_1 + - cairo=1.16.0=h73a0509_1014 + - cattrs=23.1.2=pyhd8ed1ab_0 + - cffi=1.16.0=py310hdcd7c05_0 + - 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 + - eclib=20230424=haeb5157_0 + - fonttools=4.43.1=py310hd125d64_0 + - fplll=5.4.4=h29209e0_0 + - gfortran_impl_osx-arm64=12.3.0=hbbb9e1e_1 + - gmpy2=2.1.2=py310h2e6cad2_1 + - importlib-metadata=6.8.0=pyha770c72_0 + - importlib_resources=6.1.0=pyhd8ed1ab_0 + - jedi=0.19.1=pyhd8ed1ab_0 + - jinja2=3.1.2=pyhd8ed1ab_1 + - jupyterlab_pygments=0.2.2=pyhd8ed1ab_0 + - ld64_osx-arm64=609=hc4dc95b_14 + - libblas=3.9.0=18_osxarm64_openblas + - libclang-cpp15=15.0.7=default_h5dc8d65_3 + - libgd=2.3.3=h90fb8ed_4 + - llvm-tools=15.0.7=h62b9111_1 + - matplotlib-inline=0.1.6=pyhd8ed1ab_0 + - memory-allocator=0.1.2=py310h8e9501a_2 + - openblas=0.3.24=openmp_hce3e5ba_0 + - overrides=7.4.0=pyhd8ed1ab_0 + - pexpect=4.8.0=pyh1a96a4e_2 + - pillow=9.4.0=py310h5a7539a_1 + - pip=23.2.1=pyhd8ed1ab_0 + - pkgconfig=1.5.5=pyhd8ed1ab_4 + - primecountpy=0.1.0=py310h38f39d4_4 + - pybind11=2.11.1=py310h38f39d4_2 + - pyobjc-core=10.0=py310hd07e440_0 + - pyproject-api=1.6.1=pyhd8ed1ab_0 + - pytest=7.4.2=pyhd8ed1ab_0 + - python-dateutil=2.8.2=pyhd8ed1ab_0 + - pytz-deprecation-shim=0.1.0.post0=py310hbe9552e_4 + - referencing=0.30.2=pyhd8ed1ab_0 + - rfc3339-validator=0.1.4=pyhd8ed1ab_0 + - sagemath-db-conway-polynomials=0.5.0=h4653dfc_1 + - singular=4.2.1.p3=h3b80c97_2 + - terminado=0.17.1=pyhd1c38e8_0 + - tinycss2=1.2.1=pyhd8ed1ab_0 + - typing-extensions=4.8.0=hd8ed1ab_0 + - urllib3=2.0.6=pyhd8ed1ab_0 + - argon2-cffi-bindings=21.2.0=py310h2aa6e3c_4 + - arrow=1.3.0=pyhd8ed1ab_0 + - cctools_osx-arm64=973.0.1=h2a25c60_14 + - clang-15=15.0.7=default_h5dc8d65_3 + - fqdn=1.5.1=pyhd8ed1ab_0 + - git=2.42.0=pl5321h46e2b6d_0 + - harfbuzz=6.0.0=hddbc195_0 + - hatchling=1.18.0=pyhd8ed1ab_0 + - importlib-resources=6.1.0=pyhd8ed1ab_0 + - importlib_metadata=6.8.0=hd8ed1ab_0 + - jsonschema-specifications=2023.7.1=pyhd8ed1ab_0 + - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1 + - ld64=609=h89fa09d_14 + - libcblas=3.9.0=18_osxarm64_openblas + - liblapack=3.9.0=18_osxarm64_openblas + - lsprotocol=2023.0.0b1=pyhd8ed1ab_0 + - platformdirs=3.11.0=pyhd8ed1ab_0 + - pplpy=0.8.7=py310h49c019d_0 + - pyobjc-framework-cocoa=10.0=py310hd07e440_1 + - pytest-xdist=3.3.1=pyhd8ed1ab_0 + - requests=2.31.0=pyhd8ed1ab_0 + - setuptools-scm=8.0.4=pyhd8ed1ab_0 + - stack_data=0.6.2=pyhd8ed1ab_0 + - sympy=1.12=pypyh9d50eac_103 + - wcwidth=0.2.8=pyhd8ed1ab_0 + - argon2-cffi=23.1.0=pyhd8ed1ab_0 + - arpack=3.7.0=h58ebc17_2 + - cctools=973.0.1=hd1ac623_14 + - clang=15.0.7=hce30654_3 + - dsdp=5.8=h9397a75_1203 + - fflas-ffpack=2.4.3=h11f2abc_2 + - gsl=2.7=h6e638da_0 + - iml=1.0.5=hd52f0d1_1003 + - isoduration=20.11.0=pyhd8ed1ab_0 + - jsonschema=4.19.1=pyhd8ed1ab_0 + - jupyter_core=5.3.2=py310hbe9552e_0 + - liblapacke=3.9.0=18_osxarm64_openblas + - numpy=1.26.0=py310he2cad68_0 + - pango=1.50.14=h6c112b8_0 + - pooch=1.7.0=pyhd8ed1ab_4 + - prompt-toolkit=3.0.39=pyha770c72_0 + - send2trash=1.8.2=pyhd1c38e8_0 + - setuptools_scm=8.0.4=hd8ed1ab_0 + - suitesparse=5.10.1=h7cd81ec_1 + - typeguard=3.0.2=pyhd8ed1ab_0 + - virtualenv=20.24.4=pyhd8ed1ab_0 + - blas-devel=3.9.0=18_osxarm64_openblas + - clangxx=15.0.7=default_h610c423_3 + - contourpy=1.1.1=py310h38f39d4_1 + - cvxopt=1.3.2=py310hadc6ad6_1 + - fpylll=0.5.9=py310hce2b5f8_1 + - giac=1.9.0.21=h1c96721_1 + - igraph=0.9.10=hcec9b84_1 + - jsonschema-with-format-nongpl=4.19.1=pyhd8ed1ab_0 + - jupyter_client=8.3.1=pyhd8ed1ab_0 + - linbox=1.6.3=h549c411_7 + - nbformat=5.9.2=pyhd8ed1ab_0 + - prompt_toolkit=3.0.39=hd8ed1ab_0 + - pygls=1.1.1=pyhd8ed1ab_0 + - scipy=1.10.1=py310h0975f3d_3 + - tox=4.11.3=pyhd8ed1ab_0 + - blas=2.118=openblas + - compiler-rt_osx-arm64=15.0.7=hf8d1dfb_1 + - ipython=8.16.1=pyh31c8845_0 + - jupyter_events=0.7.0=pyhd8ed1ab_2 + - matplotlib-base=3.8.0=py310hd1c642d_1 + - nbclient=0.8.0=pyhd8ed1ab_0 + - rw=0.9=h3422bc3_0 + - compiler-rt=15.0.7=hf8d1dfb_1 + - ipykernel=6.25.2=pyh1050b4e_0 + - matplotlib=3.8.0=py310hb6292c7_1 + - nbconvert-core=7.9.2=pyhd8ed1ab_0 + - clang_osx-arm64=15.0.7=h77e971b_3 + - jupyter_server=2.7.3=pyhd8ed1ab_1 + - nbconvert-pandoc=7.9.2=pyhd8ed1ab_0 + - c-compiler=1.6.0=hd291e01_0 + - clangxx_osx-arm64=15.0.7=h768a7fd_3 + - gfortran_osx-arm64=12.3.0=h57527a5_1 + - jupyter-lsp=2.2.0=pyhd8ed1ab_0 + - jupyterlab_server=2.25.0=pyhd8ed1ab_0 + - nbconvert=7.9.2=pyhd8ed1ab_0 + - notebook-shim=0.2.3=pyhd8ed1ab_0 + - cxx-compiler=1.6.0=h1995070_0 + - gfortran=12.3.0=h1ca8e4b_1 + - jupyterlab=4.0.6=pyhd8ed1ab_0 + - pythran=0.14.0=py310he53c7d2_1 + - r-base=4.1.3=h9c4d319_6 + - fortran-compiler=1.6.0=h5a50232_0 + - notebook=7.0.4=pyhd8ed1ab_0 + - rpy2=3.5.11=py310r41hf1a086a_0 + - compilers=1.6.0=hce30654_0 + - widgetsnbextension=3.6.6=pyhd8ed1ab_0 + - ipywidgets=7.8.0=pyhd8ed1ab_0 + - jupyter-jsmol=2022.1.0=pyhd8ed1ab_0 + - esbonio=0.16.2=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 diff --git a/src/environment-dev-3.11-linux-aarch.yml b/src/environment-dev-3.11-linux-aarch.yml new file mode 100644 index 00000000000..6c936d022c8 --- /dev/null +++ b/src/environment-dev-3.11-linux-aarch.yml @@ -0,0 +1,445 @@ +# Generated by conda-lock. +# platform: linux-aarch64 +# input_hash: f9d03a57fe6c1e586872380a32337965394a1820f68ba9f4663d5b12e7510762 + +channels: + - conda-forge +dependencies: + - _r-mutex=1.0.1=anacondar_1 + - _sysroot_linux-aarch64_curr_repodata_hack=4=h57d6b7b_13 + - ca-certificates=2023.7.22=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=hab24e00_0 + - gh=2.36.0=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_2 + - libgomp=13.2.0=hf8544c7_2 + - libstdcxx-devel_linux-aarch64=12.3.0=h8b5ab12_2 + - libstdcxx-ng=13.2.0=h9a76618_2 + - mathjax=3.2.2=h8af1aa0_0 + - pandoc=3.1.3=h8af1aa0_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 + - 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 + - fonts-conda-forge=1=0 + - 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 + - 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_2 + - alsa-lib=1.2.8=h4e544f5_0 + - attr=2.5.1=h4e544f5_1 + - bc=1.07.1=hf897c2e_0 + - bdw-gc=8.0.6=hd62202e_0 + - bzip2=1.0.8=hf897c2e_4 + - c-ares=1.20.1=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.2.1=h7fd3ca4_0 + - graphite2=1.3.13=h7fd3ca4_1001 + - icu=70.1=ha18d298_0 + - jpeg=9e=h2a766a3_3 + - keyutils=1.6.1=h4e544f5_0 + - lerc=4.0.0=h4de3ea5_0 + - libatomic_ops=7.6.14=h4e544f5_0 + - libbraiding=1.1=h7fd3ca4_0 + - libbrotlicommon=1.1.0=h31becfc_1 + - libcbor=0.9.0=h01db608_0 + - libdeflate=1.17=hb4cce97_0 + - libev=4.33=h516909a_1 + - libexpat=2.5.0=hd600fc2_1 + - libffi=3.4.2=h3557bc0_5 + - libgfortran5=13.2.0=h582850c_2 + - libiconv=1.17=h9cdd2b7_0 + - libnsl=2.0.0=h31becfc_1 + - libsanitizer=12.3.0=h8ebda82_2 + - 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 + - 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.7.2=hf897c2e_0 + - ncurses=6.4=h2e1726e_0 + - ninja=1.11.1=hdd96247_0 + - openssl=3.1.3=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_2 + - 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_2 + - libhomfly=1.02r6=hb9de7d4_0 + - libnghttp2=1.52.0=h250e5c5_0 + - libpng=1.6.39=hf9034f9_0 + - libsqlite=3.43.0=h194ca79_0 + - libssh2=1.11.0=h492db2e_0 + - libxcb=1.13=h3557bc0_1004 + - libxml2=2.10.3=habe54e3_4 + - mpfr=4.2.0=h96f194b_0 + - ntl=11.4.3=h0d7519b_1 + - pcre2=10.40=he7b27c6_0 + - perl=5.32.1=4_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.4=h01db608_1 + - 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_2 + - gxx_impl_linux-aarch64=12.3.0=hcde2664_2 + - krb5=1.20.1=h113d92e_0 + - libflint=2.9.0=hd3470fa_ntl_100 + - libglib=2.78.0=h0464669_0 + - libhwloc=2.9.1=h21e8147_0 + - libopenblas=0.3.23=pthreads_hd703e6f_0 + - libtiff=4.5.0=h4c1066a_2 + - libudev1=254=h31becfc_0 + - llvm-openmp=17.0.2=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.6=h43d1f9e_0_cpython + - qd=2.3.22=h05efe27_1004 + - sqlite=3.43.0=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 + - arb=2.23.0=h37d5dab_0 + - attrs=23.1.0=pyh71513ae_1 + - automake=1.16.5=pl5321h8af1aa0_0 + - backcall=0.2.0=pyh9f0ad1d_0 + - backports=1.0=pyhd8ed1ab_3 + - 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.1=pyhd8ed1ab_0 + - certifi=2023.7.22=pyhd8ed1ab_0 + - chardet=5.2.0=py311hfecb2dc_1 + - charset-normalizer=3.3.0=pyhd8ed1ab_0 + - colorama=0.4.6=pyhd8ed1ab_0 + - cycler=0.12.1=pyhd8ed1ab_0 + - cysignals=1.11.2=py311h644d908_3 + - cython=3.0.2=py311h8715677_2 + - debugpy=1.8.0=py311h8715677_1 + - decorator=5.1.1=pyhd8ed1ab_0 + - defusedxml=0.7.1=pyhd8ed1ab_0 + - distlib=0.3.7=pyhd8ed1ab_0 + - docutils=0.20.1=py311hfecb2dc_2 + - eclib=20230424=h0bc7b0f_0 + - editables=0.3=pyhd8ed1ab_0 + - entrypoints=0.4=pyhd8ed1ab_0 + - exceptiongroup=1.1.3=pyhd8ed1ab_0 + - execnet=2.0.2=pyhd8ed1ab_0 + - executing=1.2.0=pyhd8ed1ab_0 + - filelock=3.12.4=pyhd8ed1ab_0 + - flit-core=3.9.0=pyhd8ed1ab_0 + - fontconfig=2.14.2=ha9a116f_0 + - fplll=5.4.4=h5cd656c_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.4=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=py311hec3470c_3 + - jupyterlab_widgets=1.1.7=pyhd8ed1ab_0 + - kiwisolver=1.4.5=py311h0d5d7b0_1 + - lcalc=2.0.5=h3264cc0_1 + - lcms2=2.15=h7576be9_0 + - libblas=3.9.0=17_linuxaarch64_openblas + - libbrial=1.2.12=h17533bf_1 + - libcups=2.3.3=h4303303_3 + - libcurl=8.1.2=hc34909b_0 + - libfido2=1.13.0=h73a623e_0 + - libwebp=1.2.4=h7bdf6e5_1 + - m4rie=20150908=h75e8696_1001 + - markupsafe=2.1.3=py311hc8f2f60_1 + - maxima=5.45.0=haa44c19_3 + - mistune=3.0.1=pyhd8ed1ab_0 + - mpmath=1.3.0=pyhd8ed1ab_0 + - munkres=1.1.4=pyh9f0ad1d_0 + - nest-asyncio=1.5.6=pyhd8ed1ab_0 + - networkx=2.8.8=pyhd8ed1ab_0 + - openblas=0.3.23=pthreads_hef96516_0 + - openjpeg=2.5.0=h9508984_2 + - packaging=23.2=pyhd8ed1ab_0 + - pandocfilters=1.5.0=pyhd8ed1ab_0 + - parso=0.8.3=pyhd8ed1ab_0 + - pathspec=0.11.2=pyhd8ed1ab_0 + - pickleshare=0.7.5=py_1003 + - pkgconfig=1.5.5=pyhd8ed1ab_4 + - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 + - pluggy=1.3.0=pyhd8ed1ab_0 + - ply=3.11=py_1 + - prometheus_client=0.17.1=pyhd8ed1ab_0 + - psutil=5.9.5=py311hcd402e7_1 + - 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.0=pyhd8ed1ab_0 + - pycparser=2.21=pyhd8ed1ab_0 + - pygments=2.16.1=pyhd8ed1ab_0 + - pyparsing=3.1.1=pyhd8ed1ab_0 + - pyrsistent=0.19.3=py311hc8f2f60_1 + - pysocks=1.7.1=pyha2e5f31_6 + - pyspellchecker=0.7.2=pyhd8ed1ab_0 + - python-fastjsonschema=2.18.1=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.1=py311hc83961d_1 + - rfc3986-validator=0.1.1=pyh9f0ad1d_0 + - rpds-py=0.10.4=py311h32437ce_0 + - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 + - sagetex=3.6.1=pyhd8ed1ab_0 + - send2trash=1.8.2=pyh41d4057_0 + - setuptools=59.8.0=py311hec3470c_1 + - simplegeneric=0.8.1=py_1 + - singular=4.2.1.p3=h3d4c4c6_2 + - 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.11.2=pyhd8ed1ab_0 + - trove-classifiers=2023.9.19=pyhd8ed1ab_0 + - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 + - typing_extensions=4.8.0=pyha770c72_0 + - typing_utils=0.1.0=pyhd8ed1ab_0 + - tzlocal=5.1=py311hec3470c_0 + - uri-template=1.3.0=pyhd8ed1ab_0 + - vcversioner=2.16.0.0=py_1 + - webcolors=1.13=pyhd8ed1ab_0 + - webencodings=0.5.1=pyhd8ed1ab_2 + - websocket-client=1.6.4=pyhd8ed1ab_0 + - wheel=0.41.2=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 + - zipp=3.17.0=pyhd8ed1ab_0 + - anyio=4.0.0=pyhd8ed1ab_0 + - asttokens=2.4.0=pyhd8ed1ab_0 + - async-lru=2.0.4=pyhd8ed1ab_0 + - babel=2.12.1=pyhd8ed1ab_1 + - backports.functools_lru_cache=1.6.5=pyhd8ed1ab_0 + - beautifulsoup4=4.12.2=pyha770c72_0 + - beniget=0.4.1=pyhd8ed1ab_0 + - bleach=6.1.0=pyhd8ed1ab_0 + - brial=1.2.12=pyh694c41f_1 + - cached-property=1.5.2=hd8ed1ab_1 + - cairo=1.16.0=hd19fb6e_1014 + - cattrs=23.1.2=pyhd8ed1ab_0 + - 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 + - cxx-compiler=1.6.0=h2a328a1_0 + - cypari2=2.1.3=py311h5ab95f0_2 + - deprecation=2.1.0=pyh9f0ad1d_0 + - fonttools=4.43.1=py311hcd402e7_0 + - fortran-compiler=1.6.0=h7048d53_0 + - importlib-metadata=6.8.0=pyha770c72_0 + - importlib_resources=6.1.0=pyhd8ed1ab_0 + - jedi=0.19.1=pyhd8ed1ab_0 + - jinja2=3.1.2=pyhd8ed1ab_1 + - jupyterlab_pygments=0.2.2=pyhd8ed1ab_0 + - libcblas=3.9.0=17_linuxaarch64_openblas + - libgd=2.3.3=h99c6b3b_4 + - liblapack=3.9.0=17_linuxaarch64_openblas + - matplotlib-inline=0.1.6=pyhd8ed1ab_0 + - memory-allocator=0.1.2=py311hdfa8b44_2 + - 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.2.1=pyhd8ed1ab_0 + - pplpy=0.8.7=py311haefeb0b_0 + - primecountpy=0.1.0=py311h098ece5_4 + - pybind11=2.11.1=py311h098ece5_2 + - pyproject-api=1.6.1=pyhd8ed1ab_0 + - pytest=7.4.2=pyhd8ed1ab_0 + - python-dateutil=2.8.2=pyhd8ed1ab_0 + - pytz-deprecation-shim=0.1.0.post0=py311hec3470c_4 + - referencing=0.30.2=pyhd8ed1ab_0 + - rfc3339-validator=0.1.4=pyhd8ed1ab_0 + - sagemath-db-conway-polynomials=0.5.0=h4fd8a4c_1 + - sympy=1.12=pypyh9d50eac_103 + - terminado=0.17.1=pyh41d4057_0 + - tinycss2=1.2.1=pyhd8ed1ab_0 + - typing-extensions=4.8.0=hd8ed1ab_0 + - urllib3=2.0.6=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 + - fflas-ffpack=2.4.3=hf104d39_2 + - fqdn=1.5.1=pyhd8ed1ab_0 + - git=2.42.0=pl5321h0d979e1_0 + - gsl=2.7=h294027d_0 + - harfbuzz=6.0.0=hbcb8a4f_0 + - hatchling=1.18.0=pyhd8ed1ab_0 + - iml=1.0.5=h9076c59_1003 + - importlib-resources=6.1.0=pyhd8ed1ab_0 + - importlib_metadata=6.8.0=hd8ed1ab_0 + - jsonschema-specifications=2023.7.1=pyhd8ed1ab_0 + - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1 + - liblapacke=3.9.0=17_linuxaarch64_openblas + - lsprotocol=2023.0.0b1=pyhd8ed1ab_0 + - numpy=1.26.0=py311h69ead2a_0 + - platformdirs=3.11.0=pyhd8ed1ab_0 + - pytest-xdist=3.3.1=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 + - wcwidth=0.2.8=pyhd8ed1ab_0 + - xorg-libxtst=1.2.3=hf897c2e_1002 + - argon2-cffi=23.1.0=pyhd8ed1ab_0 + - blas-devel=3.9.0=17_linuxaarch64_openblas + - contourpy=1.1.1=py311h098ece5_1 + - cvxopt=1.3.2=py311hd9cfd3c_1 + - fpylll=0.5.9=py311h5d3d69a_1 + - giac=1.9.0.21=h04922a4_1 + - igraph=0.9.10=hefb87a8_1 + - isoduration=20.11.0=pyhd8ed1ab_0 + - jsonschema=4.19.1=pyhd8ed1ab_0 + - jupyter_core=5.3.2=py311hec3470c_0 + - linbox=1.6.3=h31716a8_7 + - openjdk=17.0.3=h1a274e0_5 + - pango=1.50.14=h1f1e9b3_0 + - pooch=1.7.0=pyhd8ed1ab_4 + - prompt-toolkit=3.0.39=pyha770c72_0 + - pythran=0.14.0=py311hec5c23b_1 + - setuptools_scm=8.0.4=hd8ed1ab_0 + - typeguard=3.0.2=pyhd8ed1ab_0 + - virtualenv=20.24.4=pyhd8ed1ab_0 + - blas=2.117=openblas + - jmol=14.32.10=h8af1aa0_0 + - jsonschema-with-format-nongpl=4.19.1=pyhd8ed1ab_0 + - jupyter_client=8.3.1=pyhd8ed1ab_0 + - matplotlib-base=3.8.0=py311h1f11223_1 + - nbformat=5.9.2=pyhd8ed1ab_0 + - prompt_toolkit=3.0.39=hd8ed1ab_0 + - pygls=1.1.1=pyhd8ed1ab_0 + - r-base=4.2.3=h620ca72_0 + - rw=0.9=hf897c2e_0 + - scipy=1.10.1=py311h69ead2a_3 + - tox=4.11.3=pyhd8ed1ab_0 + - ipython=8.16.1=pyh0d859eb_0 + - jupyter_events=0.7.0=pyhd8ed1ab_2 + - matplotlib=3.8.0=py311hfecb2dc_1 + - nbclient=0.8.0=pyhd8ed1ab_0 + - rpy2=3.5.11=py311r42hf13da56_3 + - ipykernel=6.25.2=pyh2140261_0 + - nbconvert-core=7.9.2=pyhd8ed1ab_0 + - jupyter_server=2.7.3=pyhd8ed1ab_1 + - nbconvert-pandoc=7.9.2=pyhd8ed1ab_0 + - jupyter-lsp=2.2.0=pyhd8ed1ab_0 + - jupyterlab_server=2.25.0=pyhd8ed1ab_0 + - nbconvert=7.9.2=pyhd8ed1ab_0 + - notebook-shim=0.2.3=pyhd8ed1ab_0 + - jupyterlab=4.0.6=pyhd8ed1ab_0 + - notebook=7.0.4=pyhd8ed1ab_0 + - widgetsnbextension=3.6.6=pyhd8ed1ab_0 + - ipywidgets=7.8.0=pyhd8ed1ab_0 + - jupyter-jsmol=2022.1.0=pyhd8ed1ab_0 + - esbonio=0.16.2=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 diff --git a/src/environment-dev-3.11-macos-arm.yml b/src/environment-dev-3.11-macos-arm.yml new file mode 100644 index 00000000000..4bd63e066d6 --- /dev/null +++ b/src/environment-dev-3.11-macos-arm.yml @@ -0,0 +1,420 @@ +# Generated by conda-lock. +# platform: osx-arm64 +# input_hash: 3a8b9b0ddaa006eb8b21927e2cda2949e0a41bb7e73b8fdc300ad9c145a4beac + +channels: + - conda-forge +dependencies: + - _r-mutex=1.0.1=anacondar_1 + - bc=1.07.1=h3422bc3_0 + - bzip2=1.0.8=h3422bc3_4 + - c-ares=1.20.1=h93a5062_0 + - ca-certificates=2023.7.22=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=hab24e00_0 + - fribidi=1.0.10=h27ca646_0 + - gh=2.36.0=h75b854d_0 + - giflib=5.2.1=h1a8c8d9_3 + - jpeg=9e=h1a8c8d9_3 + - libatomic_ops=7.6.14=h1a8c8d9_0 + - libbrotlicommon=1.1.0=hb547adb_1 + - libcxx=16.0.6=h4653b0c_0 + - libdeflate=1.17=h1a8c8d9_0 + - libev=4.33=h642e427_1 + - libexpat=2.5.0=hb7217d7_1 + - libffi=3.4.2=h3422bc3_5 + - libgfortran-devel_osx-arm64=12.3.0=hc62be1c_1 + - libiconv=1.17=he4db4b2_0 + - 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 + - libzlib=1.2.13=h53f4e23_5 + - llvm-openmp=17.0.2=h1c12783_0 + - m4=1.4.18=h642e427_1001 + - make=4.3=he57ea6c_1 + - mathjax=3.2.2=hce30654_0 + - metis=5.1.0=h13dd4ca_1007 + - nauty=2.7.2=h3422bc3_0 + - ncurses=6.4=h7ea286d_0 + - 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 + - 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 + - three.js=122=hd8ed1ab_2 + - tzdata=2023c=h71feb2d_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.2.1=h9f76cd9_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.1=h9f76cd9_0 + - libbrotlidec=1.1.0=hb547adb_1 + - libbrotlienc=1.1.0=hb547adb_1 + - libcbor=0.10.2=hb7217d7_0 + - libedit=3.1.20191231=hc8eb9b7_2 + - libgfortran5=13.2.0=hf226fd6_1 + - libpng=1.6.39=h76d750c_0 + - libsqlite=3.43.0=hb31c410_0 + - libxcb=1.13=h9b22ae9_1004 + - lrcalc=2.1=hb7217d7_5 + - ninja=1.11.1=hffc8910_0 + - openjdk=20.0.2=hbe7ddab_2 + - openssl=3.1.3=h53f4e23_0 + - pari-seadata=0.0.20090618=0 + - pcre2=10.40=hb34f9b4_0 + - pixman=0.42.2=h13dd4ca_0 + - primesieve=11.0=hb7217d7_0 + - qhull=2020.2=hc021e02_2 + - readline=8.2=h92ec313_1 + - symmetrica=3.0.1=hb7217d7_0 + - tapi=1100.0.11=he4954df_0 + - tar=1.34=h7cb298e_1 + - tbb=2021.10.0=h1995070_1 + - texinfo=7.0=pl5321h9ea1dce_0 + - threejs-sage=122=hd8ed1ab_2 + - tk=8.6.13=hb31c410_0 + - zeromq=4.3.4=hbdafb3b_1 + - 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 + - ecl=21.2.1=h8492d4d_2 + - ecm=7.0.4=h47c7c1a_1002 + - fonts-conda-ecosystem=1=0 + - freetype=2.12.1=hadb7bae_2 + - gap-core=4.12.2=he8f4e70_3 + - givaro=4.1.1=h0cdca34_3 + - glpk=5.0=h6d7a090_0 + - jmol=14.32.10=hce30654_0 + - krb5=1.20.1=h69eda48_0 + - libfido2=1.13.0=h19e3c78_0 + - libgfortran=5.0.0=13_2_0_hd922786_1 + - libglib=2.78.0=h24e9cb9_0 + - libhomfly=1.02r6=h27ca646_0 + - libnghttp2=1.52.0=hae82a92_0 + - libssh2=1.11.0=h7a5bd25_0 + - libtiff=4.5.0=h5dffbdd_2 + - libxml2=2.10.3=h67585b2_4 + - m4ri=20140914=h17b34a0_1005 + - mpfr=4.2.0=he09a6ba_0 + - ntl=11.4.3=hbb3f309_1 + - pari=2.15.4=haeeeed7_2_pthread + - primecount=7.6=hb6e4faa_0 + - python=3.11.6=h47c9636_0_cpython + - sigtool=0.1.3=h44b9a77_0 + - sqlite=3.43.0=h203b68d_0 + - tachyon=0.99b6=hfb72b2a_1001 + - tktable=2.10=hd996620_5 + - alabaster=0.7.13=pyhd8ed1ab_0 + - appdirs=1.4.4=pyh9f0ad1d_0 + - appnope=0.1.3=pyhd8ed1ab_0 + - attrs=23.1.0=pyh71513ae_1 + - backcall=0.2.0=pyh9f0ad1d_0 + - backports=1.0=pyhd8ed1ab_3 + - brotli=1.1.0=hb547adb_1 + - brotli-python=1.1.0=py311ha891d26_1 + - cached_property=1.5.2=pyha770c72_1 + - cachetools=5.3.1=pyhd8ed1ab_0 + - certifi=2023.7.22=pyhd8ed1ab_0 + - chardet=5.2.0=py311h267d04e_1 + - charset-normalizer=3.3.0=pyhd8ed1ab_0 + - colorama=0.4.6=pyhd8ed1ab_0 + - cycler=0.12.1=pyhd8ed1ab_0 + - cysignals=1.11.2=py311he42fc87_3 + - cython=3.0.2=py311ha891d26_2 + - debugpy=1.8.0=py311ha891d26_1 + - decorator=5.1.1=pyhd8ed1ab_0 + - defusedxml=0.7.1=pyhd8ed1ab_0 + - distlib=0.3.7=pyhd8ed1ab_0 + - docutils=0.20.1=py311h267d04e_2 + - editables=0.3=pyhd8ed1ab_0 + - entrypoints=0.4=pyhd8ed1ab_0 + - exceptiongroup=1.1.3=pyhd8ed1ab_0 + - execnet=2.0.2=pyhd8ed1ab_0 + - executing=1.2.0=pyhd8ed1ab_0 + - fftw=3.3.10=nompi_h3046061_108 + - filelock=3.12.4=pyhd8ed1ab_0 + - flit-core=3.9.0=pyhd8ed1ab_0 + - fontconfig=2.14.2=h82840c6_0 + - gap-defaults=4.12.2=hce30654_3 + - gast=0.5.4=pyhd8ed1ab_0 + - gfan=0.6.2=hec08f5c_1003 + - idna=3.4=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=1.1.7=pyhd8ed1ab_0 + - kiwisolver=1.4.5=py311he4fd1f5_1 + - lcalc=2.0.5=hc94e8e6_1 + - lcms2=2.15=h481adae_0 + - libbrial=1.2.12=ha7f5006_1 + - libcurl=8.1.2=h912dcd9_0 + - libflint=2.9.0=h173eafc_ntl_100 + - libllvm15=15.0.7=h62b9111_1 + - libopenblas=0.3.24=openmp_hd76b1f2_0 + - libwebp=1.2.4=h999c80f_1 + - m4rie=20150908=h17b34a0_1001 + - markupsafe=2.1.3=py311heffc1b2_1 + - maxima=5.45.0=h6032a66_2 + - mistune=3.0.1=pyhd8ed1ab_0 + - mpc=1.3.1=h91ba8db_0 + - mpfi=1.5.4=hbde5f5b_1001 + - mpmath=1.3.0=pyhd8ed1ab_0 + - munkres=1.1.4=pyh9f0ad1d_0 + - nest-asyncio=1.5.6=pyhd8ed1ab_0 + - networkx=2.8.8=pyhd8ed1ab_0 + - openjpeg=2.5.0=hbc2ba62_2 + - openssh=9.3p1=h7126958_1 + - packaging=23.2=pyhd8ed1ab_0 + - pandocfilters=1.5.0=pyhd8ed1ab_0 + - parso=0.8.3=pyhd8ed1ab_0 + - pathspec=0.11.2=pyhd8ed1ab_0 + - pickleshare=0.7.5=py_1003 + - pkg-config=0.29.2=hab62308_1008 + - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 + - pluggy=1.3.0=pyhd8ed1ab_0 + - ply=3.11=py_1 + - ppl=1.2=h8b147cf_1006 + - prometheus_client=0.17.1=pyhd8ed1ab_0 + - psutil=5.9.5=py311heffc1b2_1 + - 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.0=pyhd8ed1ab_0 + - pycparser=2.21=pyhd8ed1ab_0 + - pygments=2.16.1=pyhd8ed1ab_0 + - pyparsing=3.1.1=pyhd8ed1ab_0 + - pyrsistent=0.19.3=py311heffc1b2_1 + - pysocks=1.7.1=pyha2e5f31_6 + - pyspellchecker=0.7.2=pyhd8ed1ab_0 + - python-fastjsonschema=2.18.1=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.1=py311hb1af645_1 + - qd=2.3.22=hbec66e7_1004 + - rfc3986-validator=0.1.1=pyh9f0ad1d_0 + - rpds-py=0.10.4=py311h94f323b_0 + - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 + - sagetex=3.6.1=pyhd8ed1ab_0 + - setuptools=59.8.0=py311h267d04e_1 + - simplegeneric=0.8.1=py_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.11.2=pyhd8ed1ab_0 + - trove-classifiers=2023.9.19=pyhd8ed1ab_0 + - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 + - typing_extensions=4.8.0=pyha770c72_0 + - typing_utils=0.1.0=pyhd8ed1ab_0 + - tzlocal=5.1=py311h267d04e_0 + - uri-template=1.3.0=pyhd8ed1ab_0 + - vcversioner=2.16.0.0=py_1 + - webcolors=1.13=pyhd8ed1ab_0 + - webencodings=0.5.1=pyhd8ed1ab_2 + - websocket-client=1.6.4=pyhd8ed1ab_0 + - wheel=0.41.2=pyhd8ed1ab_0 + - zipp=3.17.0=pyhd8ed1ab_0 + - anyio=4.0.0=pyhd8ed1ab_0 + - arb=2.23.0=he5401aa_0 + - asttokens=2.4.0=pyhd8ed1ab_0 + - async-lru=2.0.4=pyhd8ed1ab_0 + - babel=2.12.1=pyhd8ed1ab_1 + - backports.functools_lru_cache=1.6.5=pyhd8ed1ab_0 + - beautifulsoup4=4.12.2=pyha770c72_0 + - beniget=0.4.1=pyhd8ed1ab_0 + - bleach=6.1.0=pyhd8ed1ab_0 + - brial=1.2.12=pyh694c41f_1 + - cached-property=1.5.2=hd8ed1ab_1 + - cairo=1.16.0=h73a0509_1014 + - cattrs=23.1.2=pyhd8ed1ab_0 + - cffi=1.16.0=py311h4a08483_0 + - 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 + - eclib=20230424=haeb5157_0 + - fonttools=4.43.1=py311h05b510d_0 + - fplll=5.4.4=h29209e0_0 + - gfortran_impl_osx-arm64=12.3.0=hbbb9e1e_1 + - gmpy2=2.1.2=py311h2ba9262_1 + - importlib-metadata=6.8.0=pyha770c72_0 + - importlib_resources=6.1.0=pyhd8ed1ab_0 + - jedi=0.19.1=pyhd8ed1ab_0 + - jinja2=3.1.2=pyhd8ed1ab_1 + - jupyterlab_pygments=0.2.2=pyhd8ed1ab_0 + - ld64_osx-arm64=609=hc4dc95b_14 + - libblas=3.9.0=18_osxarm64_openblas + - libclang-cpp15=15.0.7=default_h5dc8d65_3 + - libgd=2.3.3=h90fb8ed_4 + - llvm-tools=15.0.7=h62b9111_1 + - matplotlib-inline=0.1.6=pyhd8ed1ab_0 + - memory-allocator=0.1.2=py311he2be06e_2 + - openblas=0.3.24=openmp_hce3e5ba_0 + - overrides=7.4.0=pyhd8ed1ab_0 + - pexpect=4.8.0=pyh1a96a4e_2 + - pillow=9.4.0=py311h627eb56_1 + - pip=23.2.1=pyhd8ed1ab_0 + - pkgconfig=1.5.5=pyhd8ed1ab_4 + - primecountpy=0.1.0=py311he4fd1f5_4 + - pybind11=2.11.1=py311he4fd1f5_2 + - pyobjc-core=10.0=py311hb702dc4_0 + - pyproject-api=1.6.1=pyhd8ed1ab_0 + - pytest=7.4.2=pyhd8ed1ab_0 + - python-dateutil=2.8.2=pyhd8ed1ab_0 + - pytz-deprecation-shim=0.1.0.post0=py311h267d04e_4 + - referencing=0.30.2=pyhd8ed1ab_0 + - rfc3339-validator=0.1.4=pyhd8ed1ab_0 + - sagemath-db-conway-polynomials=0.5.0=h4653dfc_1 + - singular=4.2.1.p3=h3b80c97_2 + - terminado=0.17.1=pyhd1c38e8_0 + - tinycss2=1.2.1=pyhd8ed1ab_0 + - typing-extensions=4.8.0=hd8ed1ab_0 + - urllib3=2.0.6=pyhd8ed1ab_0 + - argon2-cffi-bindings=21.2.0=py311heffc1b2_4 + - arrow=1.3.0=pyhd8ed1ab_0 + - cctools_osx-arm64=973.0.1=h2a25c60_14 + - clang-15=15.0.7=default_h5dc8d65_3 + - fqdn=1.5.1=pyhd8ed1ab_0 + - git=2.42.0=pl5321h46e2b6d_0 + - harfbuzz=6.0.0=hddbc195_0 + - hatchling=1.18.0=pyhd8ed1ab_0 + - importlib-resources=6.1.0=pyhd8ed1ab_0 + - importlib_metadata=6.8.0=hd8ed1ab_0 + - jsonschema-specifications=2023.7.1=pyhd8ed1ab_0 + - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1 + - ld64=609=h89fa09d_14 + - libcblas=3.9.0=18_osxarm64_openblas + - liblapack=3.9.0=18_osxarm64_openblas + - lsprotocol=2023.0.0b1=pyhd8ed1ab_0 + - platformdirs=3.11.0=pyhd8ed1ab_0 + - pplpy=0.8.7=py311hb546c2d_0 + - pyobjc-framework-cocoa=10.0=py311hb702dc4_1 + - pytest-xdist=3.3.1=pyhd8ed1ab_0 + - requests=2.31.0=pyhd8ed1ab_0 + - setuptools-scm=8.0.4=pyhd8ed1ab_0 + - stack_data=0.6.2=pyhd8ed1ab_0 + - sympy=1.12=pypyh9d50eac_103 + - wcwidth=0.2.8=pyhd8ed1ab_0 + - argon2-cffi=23.1.0=pyhd8ed1ab_0 + - arpack=3.7.0=h58ebc17_2 + - cctools=973.0.1=hd1ac623_14 + - clang=15.0.7=hce30654_3 + - dsdp=5.8=h9397a75_1203 + - fflas-ffpack=2.4.3=h11f2abc_2 + - gsl=2.7=h6e638da_0 + - iml=1.0.5=hd52f0d1_1003 + - isoduration=20.11.0=pyhd8ed1ab_0 + - jsonschema=4.19.1=pyhd8ed1ab_0 + - jupyter_core=5.3.2=py311h267d04e_0 + - liblapacke=3.9.0=18_osxarm64_openblas + - numpy=1.26.0=py311hb8f3215_0 + - pango=1.50.14=h6c112b8_0 + - pooch=1.7.0=pyhd8ed1ab_4 + - prompt-toolkit=3.0.39=pyha770c72_0 + - send2trash=1.8.2=pyhd1c38e8_0 + - setuptools_scm=8.0.4=hd8ed1ab_0 + - suitesparse=5.10.1=h7cd81ec_1 + - typeguard=3.0.2=pyhd8ed1ab_0 + - virtualenv=20.24.4=pyhd8ed1ab_0 + - blas-devel=3.9.0=18_osxarm64_openblas + - clangxx=15.0.7=default_h610c423_3 + - contourpy=1.1.1=py311he4fd1f5_1 + - cvxopt=1.3.2=py311hd76776f_1 + - fpylll=0.5.9=py311h3ca9eb5_1 + - giac=1.9.0.21=h1c96721_1 + - igraph=0.9.10=hcec9b84_1 + - jsonschema-with-format-nongpl=4.19.1=pyhd8ed1ab_0 + - jupyter_client=8.3.1=pyhd8ed1ab_0 + - linbox=1.6.3=h549c411_7 + - nbformat=5.9.2=pyhd8ed1ab_0 + - prompt_toolkit=3.0.39=hd8ed1ab_0 + - pygls=1.1.1=pyhd8ed1ab_0 + - scipy=1.10.1=py311h93d07a4_3 + - tox=4.11.3=pyhd8ed1ab_0 + - blas=2.118=openblas + - compiler-rt_osx-arm64=15.0.7=hf8d1dfb_1 + - ipython=8.16.1=pyh31c8845_0 + - jupyter_events=0.7.0=pyhd8ed1ab_2 + - matplotlib-base=3.8.0=py311h3bc9839_1 + - nbclient=0.8.0=pyhd8ed1ab_0 + - rw=0.9=h3422bc3_0 + - compiler-rt=15.0.7=hf8d1dfb_1 + - ipykernel=6.25.2=pyh1050b4e_0 + - matplotlib=3.8.0=py311ha1ab1f8_1 + - nbconvert-core=7.9.2=pyhd8ed1ab_0 + - clang_osx-arm64=15.0.7=h77e971b_3 + - jupyter_server=2.7.3=pyhd8ed1ab_1 + - nbconvert-pandoc=7.9.2=pyhd8ed1ab_0 + - c-compiler=1.6.0=hd291e01_0 + - clangxx_osx-arm64=15.0.7=h768a7fd_3 + - gfortran_osx-arm64=12.3.0=h57527a5_1 + - jupyter-lsp=2.2.0=pyhd8ed1ab_0 + - jupyterlab_server=2.25.0=pyhd8ed1ab_0 + - nbconvert=7.9.2=pyhd8ed1ab_0 + - notebook-shim=0.2.3=pyhd8ed1ab_0 + - cxx-compiler=1.6.0=h1995070_0 + - gfortran=12.3.0=h1ca8e4b_1 + - jupyterlab=4.0.6=pyhd8ed1ab_0 + - pythran=0.14.0=py311hddbb800_1 + - r-base=4.1.3=h9c4d319_6 + - fortran-compiler=1.6.0=h5a50232_0 + - notebook=7.0.4=pyhd8ed1ab_0 + - rpy2=3.5.11=py311r41h4add359_0 + - compilers=1.6.0=hce30654_0 + - widgetsnbextension=3.6.6=pyhd8ed1ab_0 + - ipywidgets=7.8.0=pyhd8ed1ab_0 + - jupyter-jsmol=2022.1.0=pyhd8ed1ab_0 + - esbonio=0.16.2=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 diff --git a/src/environment-dev-3.9-linux-aarch.yml b/src/environment-dev-3.9-linux-aarch.yml new file mode 100644 index 00000000000..dbf4ebd1182 --- /dev/null +++ b/src/environment-dev-3.9-linux-aarch.yml @@ -0,0 +1,446 @@ +# Generated by conda-lock. +# platform: linux-aarch64 +# input_hash: 0950075e63799ed2a88a2aed491c4c2e16171fbe60cb8b4fc9ef8e426886a44b + +channels: + - conda-forge +dependencies: + - _r-mutex=1.0.1=anacondar_1 + - _sysroot_linux-aarch64_curr_repodata_hack=4=h57d6b7b_13 + - ca-certificates=2023.7.22=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=hab24e00_0 + - gh=2.36.0=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_2 + - libgomp=13.2.0=hf8544c7_2 + - libstdcxx-devel_linux-aarch64=12.3.0=h8b5ab12_2 + - libstdcxx-ng=13.2.0=h9a76618_2 + - mathjax=3.2.2=h8af1aa0_0 + - pandoc=3.1.3=h8af1aa0_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 + - 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 + - fonts-conda-forge=1=0 + - 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 + - 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_2 + - alsa-lib=1.2.8=h4e544f5_0 + - attr=2.5.1=h4e544f5_1 + - bc=1.07.1=hf897c2e_0 + - bdw-gc=8.0.6=hd62202e_0 + - bzip2=1.0.8=hf897c2e_4 + - c-ares=1.20.1=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.2.1=h7fd3ca4_0 + - graphite2=1.3.13=h7fd3ca4_1001 + - icu=70.1=ha18d298_0 + - jpeg=9e=h2a766a3_3 + - keyutils=1.6.1=h4e544f5_0 + - lerc=4.0.0=h4de3ea5_0 + - libatomic_ops=7.6.14=h4e544f5_0 + - libbraiding=1.1=h7fd3ca4_0 + - libbrotlicommon=1.1.0=h31becfc_1 + - libcbor=0.9.0=h01db608_0 + - libdeflate=1.17=hb4cce97_0 + - libev=4.33=h516909a_1 + - libexpat=2.5.0=hd600fc2_1 + - libffi=3.4.2=h3557bc0_5 + - libgfortran5=13.2.0=h582850c_2 + - libiconv=1.17=h9cdd2b7_0 + - libnsl=2.0.0=h31becfc_1 + - libsanitizer=12.3.0=h8ebda82_2 + - 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 + - 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.7.2=hf897c2e_0 + - ncurses=6.4=h2e1726e_0 + - ninja=1.11.1=hdd96247_0 + - openssl=3.1.3=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_2 + - 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_2 + - libhomfly=1.02r6=hb9de7d4_0 + - libnghttp2=1.52.0=h250e5c5_0 + - libpng=1.6.39=hf9034f9_0 + - libsqlite=3.43.0=h194ca79_0 + - libssh2=1.11.0=h492db2e_0 + - libxcb=1.13=h3557bc0_1004 + - libxml2=2.10.3=habe54e3_4 + - mpfr=4.2.0=h96f194b_0 + - ntl=11.4.3=h0d7519b_1 + - pcre2=10.40=he7b27c6_0 + - perl=5.32.1=4_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.4=h01db608_1 + - 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_2 + - gxx_impl_linux-aarch64=12.3.0=hcde2664_2 + - krb5=1.20.1=h113d92e_0 + - libflint=2.9.0=hd3470fa_ntl_100 + - libglib=2.78.0=h0464669_0 + - libhwloc=2.9.1=h21e8147_0 + - libopenblas=0.3.23=pthreads_hd703e6f_0 + - libtiff=4.5.0=h4c1066a_2 + - libudev1=254=h31becfc_0 + - llvm-openmp=17.0.2=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 + - qd=2.3.22=h05efe27_1004 + - sqlite=3.43.0=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 + - arb=2.23.0=h37d5dab_0 + - attrs=23.1.0=pyh71513ae_1 + - automake=1.16.5=pl5321h8af1aa0_0 + - backcall=0.2.0=pyh9f0ad1d_0 + - backports=1.0=pyhd8ed1ab_3 + - 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.1=pyhd8ed1ab_0 + - certifi=2023.7.22=pyhd8ed1ab_0 + - chardet=5.2.0=py39ha65689a_1 + - charset-normalizer=3.3.0=pyhd8ed1ab_0 + - colorama=0.4.6=pyhd8ed1ab_0 + - cycler=0.12.1=pyhd8ed1ab_0 + - cysignals=1.11.2=py39hfa81392_3 + - cython=3.0.2=py39h387a81e_2 + - debugpy=1.8.0=py39h387a81e_1 + - decorator=5.1.1=pyhd8ed1ab_0 + - defusedxml=0.7.1=pyhd8ed1ab_0 + - distlib=0.3.7=pyhd8ed1ab_0 + - docutils=0.20.1=py39ha65689a_2 + - eclib=20230424=h0bc7b0f_0 + - editables=0.3=pyhd8ed1ab_0 + - entrypoints=0.4=pyhd8ed1ab_0 + - exceptiongroup=1.1.3=pyhd8ed1ab_0 + - execnet=2.0.2=pyhd8ed1ab_0 + - executing=1.2.0=pyhd8ed1ab_0 + - filelock=3.12.4=pyhd8ed1ab_0 + - flit-core=3.9.0=pyhd8ed1ab_0 + - fontconfig=2.14.2=ha9a116f_0 + - fplll=5.4.4=h5cd656c_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.4=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=py39h4420490_3 + - jupyterlab_widgets=1.1.7=pyhd8ed1ab_0 + - kiwisolver=1.4.5=py39had2cf8c_1 + - lcalc=2.0.5=h3264cc0_1 + - lcms2=2.15=h7576be9_0 + - libblas=3.9.0=17_linuxaarch64_openblas + - libbrial=1.2.12=h17533bf_1 + - libcups=2.3.3=h4303303_3 + - libcurl=8.1.2=hc34909b_0 + - libfido2=1.13.0=h73a623e_0 + - libwebp=1.2.4=h7bdf6e5_1 + - m4rie=20150908=h75e8696_1001 + - markupsafe=2.1.3=py39h7cc1d5f_1 + - maxima=5.45.0=haa44c19_3 + - mistune=3.0.1=pyhd8ed1ab_0 + - mpmath=1.3.0=pyhd8ed1ab_0 + - munkres=1.1.4=pyh9f0ad1d_0 + - nest-asyncio=1.5.6=pyhd8ed1ab_0 + - networkx=2.8.8=pyhd8ed1ab_0 + - openblas=0.3.23=pthreads_hef96516_0 + - openjpeg=2.5.0=h9508984_2 + - packaging=23.2=pyhd8ed1ab_0 + - pandocfilters=1.5.0=pyhd8ed1ab_0 + - parso=0.8.3=pyhd8ed1ab_0 + - pathspec=0.11.2=pyhd8ed1ab_0 + - pickleshare=0.7.5=py_1003 + - pkgconfig=1.5.5=pyhd8ed1ab_4 + - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 + - pluggy=1.3.0=pyhd8ed1ab_0 + - ply=3.11=py_1 + - prometheus_client=0.17.1=pyhd8ed1ab_0 + - psutil=5.9.5=py39h898b7ef_1 + - 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.0=pyhd8ed1ab_0 + - pycparser=2.21=pyhd8ed1ab_0 + - pygments=2.16.1=pyhd8ed1ab_0 + - pyparsing=3.1.1=pyhd8ed1ab_0 + - pyrsistent=0.19.3=py39h7cc1d5f_1 + - pysocks=1.7.1=pyha2e5f31_6 + - pyspellchecker=0.7.2=pyhd8ed1ab_0 + - python-fastjsonschema=2.18.1=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.1=py39h7ea2324_1 + - rfc3986-validator=0.1.1=pyh9f0ad1d_0 + - rpds-py=0.10.4=py39hfe8b3a4_0 + - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 + - sagetex=3.6.1=pyhd8ed1ab_0 + - send2trash=1.8.2=pyh41d4057_0 + - setuptools=63.4.3=py39ha65689a_0 + - simplegeneric=0.8.1=py_1 + - singular=4.2.1.p3=h3d4c4c6_2 + - 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.11.2=pyhd8ed1ab_0 + - trove-classifiers=2023.9.19=pyhd8ed1ab_0 + - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 + - typing_extensions=4.8.0=pyha770c72_0 + - typing_utils=0.1.0=pyhd8ed1ab_0 + - tzlocal=5.1=py39h4420490_0 + - unicodedata2=15.1.0=py39h898b7ef_0 + - uri-template=1.3.0=pyhd8ed1ab_0 + - vcversioner=2.16.0.0=py_1 + - webcolors=1.13=pyhd8ed1ab_0 + - webencodings=0.5.1=pyhd8ed1ab_2 + - websocket-client=1.6.4=pyhd8ed1ab_0 + - wheel=0.41.2=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 + - zipp=3.17.0=pyhd8ed1ab_0 + - anyio=4.0.0=pyhd8ed1ab_0 + - asttokens=2.4.0=pyhd8ed1ab_0 + - async-lru=2.0.4=pyhd8ed1ab_0 + - babel=2.12.1=pyhd8ed1ab_1 + - backports.functools_lru_cache=1.6.5=pyhd8ed1ab_0 + - beautifulsoup4=4.12.2=pyha770c72_0 + - beniget=0.4.1=pyhd8ed1ab_0 + - bleach=6.1.0=pyhd8ed1ab_0 + - brial=1.2.12=pyh694c41f_1 + - cached-property=1.5.2=hd8ed1ab_1 + - cairo=1.16.0=hd19fb6e_1014 + - cattrs=23.1.2=pyhd8ed1ab_0 + - 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 + - cxx-compiler=1.6.0=h2a328a1_0 + - cypari2=2.1.3=py39h532d932_2 + - deprecation=2.1.0=pyh9f0ad1d_0 + - fonttools=4.43.1=py39h898b7ef_0 + - fortran-compiler=1.6.0=h7048d53_0 + - importlib-metadata=6.8.0=pyha770c72_0 + - importlib_resources=6.1.0=pyhd8ed1ab_0 + - jedi=0.19.1=pyhd8ed1ab_0 + - jinja2=3.1.2=pyhd8ed1ab_1 + - jupyterlab_pygments=0.2.2=pyhd8ed1ab_0 + - libcblas=3.9.0=17_linuxaarch64_openblas + - libgd=2.3.3=h99c6b3b_4 + - liblapack=3.9.0=17_linuxaarch64_openblas + - matplotlib-inline=0.1.6=pyhd8ed1ab_0 + - memory-allocator=0.1.2=py39h0fd3b05_2 + - 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.2.1=pyhd8ed1ab_0 + - pplpy=0.8.7=py39h087fc0e_0 + - primecountpy=0.1.0=py39hd16970a_3 + - pybind11=2.11.1=py39hd16970a_2 + - pyproject-api=1.6.1=pyhd8ed1ab_0 + - pytest=7.4.2=pyhd8ed1ab_0 + - python-dateutil=2.8.2=pyhd8ed1ab_0 + - pytz-deprecation-shim=0.1.0.post0=py39h4420490_4 + - referencing=0.30.2=pyhd8ed1ab_0 + - rfc3339-validator=0.1.4=pyhd8ed1ab_0 + - sagemath-db-conway-polynomials=0.5.0=h4fd8a4c_1 + - sympy=1.12=pypyh9d50eac_103 + - terminado=0.17.1=pyh41d4057_0 + - tinycss2=1.2.1=pyhd8ed1ab_0 + - typing-extensions=4.8.0=hd8ed1ab_0 + - urllib3=2.0.6=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 + - fflas-ffpack=2.4.3=hf104d39_2 + - fqdn=1.5.1=pyhd8ed1ab_0 + - git=2.42.0=pl5321h0d979e1_0 + - gsl=2.7=h294027d_0 + - harfbuzz=6.0.0=hbcb8a4f_0 + - hatchling=1.18.0=pyhd8ed1ab_0 + - iml=1.0.5=h9076c59_1003 + - importlib-resources=6.1.0=pyhd8ed1ab_0 + - importlib_metadata=6.8.0=hd8ed1ab_0 + - jsonschema-specifications=2023.7.1=pyhd8ed1ab_0 + - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1 + - liblapacke=3.9.0=17_linuxaarch64_openblas + - lsprotocol=2023.0.0b1=pyhd8ed1ab_0 + - numpy=1.26.0=py39h91c28bb_0 + - platformdirs=3.11.0=pyhd8ed1ab_0 + - pytest-xdist=3.3.1=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 + - wcwidth=0.2.8=pyhd8ed1ab_0 + - xorg-libxtst=1.2.3=hf897c2e_1002 + - argon2-cffi=23.1.0=pyhd8ed1ab_0 + - blas-devel=3.9.0=17_linuxaarch64_openblas + - contourpy=1.1.1=py39hd16970a_1 + - cvxopt=1.3.2=py39h9d7d0b6_1 + - fpylll=0.5.9=py39h373d583_1 + - giac=1.9.0.21=h04922a4_1 + - igraph=0.9.10=hefb87a8_1 + - isoduration=20.11.0=pyhd8ed1ab_0 + - jsonschema=4.19.1=pyhd8ed1ab_0 + - jupyter_core=5.3.2=py39h4420490_0 + - linbox=1.6.3=h31716a8_7 + - openjdk=17.0.3=h1a274e0_5 + - pango=1.50.14=h1f1e9b3_0 + - pooch=1.7.0=pyhd8ed1ab_4 + - prompt-toolkit=3.0.39=pyha770c72_0 + - pythran=0.14.0=py39hc2250db_1 + - setuptools_scm=8.0.4=hd8ed1ab_0 + - typeguard=3.0.2=pyhd8ed1ab_0 + - virtualenv=20.24.4=pyhd8ed1ab_0 + - blas=2.117=openblas + - jmol=14.32.10=h8af1aa0_0 + - jsonschema-with-format-nongpl=4.19.1=pyhd8ed1ab_0 + - jupyter_client=8.3.1=pyhd8ed1ab_0 + - matplotlib-base=3.8.0=py39h8e43113_1 + - nbformat=5.9.2=pyhd8ed1ab_0 + - prompt_toolkit=3.0.39=hd8ed1ab_0 + - pygls=1.1.1=pyhd8ed1ab_0 + - r-base=4.2.3=h620ca72_0 + - rw=0.9=hf897c2e_0 + - scipy=1.10.1=py39hf88902c_3 + - tox=4.11.3=pyhd8ed1ab_0 + - ipython=8.16.1=pyh0d859eb_0 + - jupyter_events=0.7.0=pyhd8ed1ab_2 + - matplotlib=3.8.0=py39ha65689a_1 + - nbclient=0.8.0=pyhd8ed1ab_0 + - rpy2=3.5.11=py39r42h1ae4408_3 + - ipykernel=6.25.2=pyh2140261_0 + - nbconvert-core=7.9.2=pyhd8ed1ab_0 + - jupyter_server=2.7.3=pyhd8ed1ab_1 + - nbconvert-pandoc=7.9.2=pyhd8ed1ab_0 + - jupyter-lsp=2.2.0=pyhd8ed1ab_0 + - jupyterlab_server=2.25.0=pyhd8ed1ab_0 + - nbconvert=7.9.2=pyhd8ed1ab_0 + - notebook-shim=0.2.3=pyhd8ed1ab_0 + - jupyterlab=4.0.6=pyhd8ed1ab_0 + - notebook=7.0.4=pyhd8ed1ab_0 + - widgetsnbextension=3.6.6=pyhd8ed1ab_0 + - ipywidgets=7.8.0=pyhd8ed1ab_0 + - jupyter-jsmol=2022.1.0=pyhd8ed1ab_0 + - esbonio=0.16.2=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 diff --git a/src/environment-dev-3.9-macos-arm.yml b/src/environment-dev-3.9-macos-arm.yml new file mode 100644 index 00000000000..9d6aa75207d --- /dev/null +++ b/src/environment-dev-3.9-macos-arm.yml @@ -0,0 +1,421 @@ +# Generated by conda-lock. +# platform: osx-arm64 +# input_hash: 4b97fbc5dd589774772e4d2a4bf2288dcb9deee653a9b32cf3a24ac7f27cdf46 + +channels: + - conda-forge +dependencies: + - _r-mutex=1.0.1=anacondar_1 + - bc=1.07.1=h3422bc3_0 + - bzip2=1.0.8=h3422bc3_4 + - c-ares=1.20.1=h93a5062_0 + - ca-certificates=2023.7.22=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=hab24e00_0 + - fribidi=1.0.10=h27ca646_0 + - gh=2.36.0=h75b854d_0 + - giflib=5.2.1=h1a8c8d9_3 + - jpeg=9e=h1a8c8d9_3 + - libatomic_ops=7.6.14=h1a8c8d9_0 + - libbrotlicommon=1.1.0=hb547adb_1 + - libcxx=16.0.6=h4653b0c_0 + - libdeflate=1.17=h1a8c8d9_0 + - libev=4.33=h642e427_1 + - libexpat=2.5.0=hb7217d7_1 + - libffi=3.4.2=h3422bc3_5 + - libgfortran-devel_osx-arm64=12.3.0=hc62be1c_1 + - libiconv=1.17=he4db4b2_0 + - 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 + - libzlib=1.2.13=h53f4e23_5 + - llvm-openmp=17.0.2=h1c12783_0 + - m4=1.4.18=h642e427_1001 + - make=4.3=he57ea6c_1 + - mathjax=3.2.2=hce30654_0 + - metis=5.1.0=h13dd4ca_1007 + - nauty=2.7.2=h3422bc3_0 + - ncurses=6.4=h7ea286d_0 + - 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 + - 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 + - three.js=122=hd8ed1ab_2 + - tzdata=2023c=h71feb2d_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.2.1=h9f76cd9_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.1=h9f76cd9_0 + - libbrotlidec=1.1.0=hb547adb_1 + - libbrotlienc=1.1.0=hb547adb_1 + - libcbor=0.10.2=hb7217d7_0 + - libedit=3.1.20191231=hc8eb9b7_2 + - libgfortran5=13.2.0=hf226fd6_1 + - libpng=1.6.39=h76d750c_0 + - libsqlite=3.43.0=hb31c410_0 + - libxcb=1.13=h9b22ae9_1004 + - lrcalc=2.1=hb7217d7_5 + - ninja=1.11.1=hffc8910_0 + - openjdk=20.0.2=hbe7ddab_2 + - openssl=3.1.3=h53f4e23_0 + - pari-seadata=0.0.20090618=0 + - pcre2=10.40=hb34f9b4_0 + - pixman=0.42.2=h13dd4ca_0 + - primesieve=11.0=hb7217d7_0 + - qhull=2020.2=hc021e02_2 + - readline=8.2=h92ec313_1 + - symmetrica=3.0.1=hb7217d7_0 + - tapi=1100.0.11=he4954df_0 + - tar=1.34=h7cb298e_1 + - tbb=2021.10.0=h1995070_1 + - texinfo=7.0=pl5321h9ea1dce_0 + - threejs-sage=122=hd8ed1ab_2 + - tk=8.6.13=hb31c410_0 + - zeromq=4.3.4=hbdafb3b_1 + - 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 + - ecl=21.2.1=h8492d4d_2 + - ecm=7.0.4=h47c7c1a_1002 + - fonts-conda-ecosystem=1=0 + - freetype=2.12.1=hadb7bae_2 + - gap-core=4.12.2=he8f4e70_3 + - givaro=4.1.1=h0cdca34_3 + - glpk=5.0=h6d7a090_0 + - jmol=14.32.10=hce30654_0 + - krb5=1.20.1=h69eda48_0 + - libfido2=1.13.0=h19e3c78_0 + - libgfortran=5.0.0=13_2_0_hd922786_1 + - libglib=2.78.0=h24e9cb9_0 + - libhomfly=1.02r6=h27ca646_0 + - libnghttp2=1.52.0=hae82a92_0 + - libssh2=1.11.0=h7a5bd25_0 + - libtiff=4.5.0=h5dffbdd_2 + - libxml2=2.10.3=h67585b2_4 + - m4ri=20140914=h17b34a0_1005 + - mpfr=4.2.0=he09a6ba_0 + - ntl=11.4.3=hbb3f309_1 + - pari=2.15.4=haeeeed7_2_pthread + - primecount=7.6=hb6e4faa_0 + - python=3.9.18=hfa1ae8a_0_cpython + - sigtool=0.1.3=h44b9a77_0 + - sqlite=3.43.0=h203b68d_0 + - tachyon=0.99b6=hfb72b2a_1001 + - tktable=2.10=hd996620_5 + - alabaster=0.7.13=pyhd8ed1ab_0 + - appdirs=1.4.4=pyh9f0ad1d_0 + - appnope=0.1.3=pyhd8ed1ab_0 + - attrs=23.1.0=pyh71513ae_1 + - backcall=0.2.0=pyh9f0ad1d_0 + - backports=1.0=pyhd8ed1ab_3 + - brotli=1.1.0=hb547adb_1 + - brotli-python=1.1.0=py39hb198ff7_1 + - cached_property=1.5.2=pyha770c72_1 + - cachetools=5.3.1=pyhd8ed1ab_0 + - certifi=2023.7.22=pyhd8ed1ab_0 + - chardet=5.2.0=py39h2804cbe_1 + - charset-normalizer=3.3.0=pyhd8ed1ab_0 + - colorama=0.4.6=pyhd8ed1ab_0 + - cycler=0.12.1=pyhd8ed1ab_0 + - cysignals=1.11.2=py39h65fc70a_3 + - cython=3.0.2=py39hb198ff7_2 + - debugpy=1.8.0=py39hb198ff7_1 + - decorator=5.1.1=pyhd8ed1ab_0 + - defusedxml=0.7.1=pyhd8ed1ab_0 + - distlib=0.3.7=pyhd8ed1ab_0 + - docutils=0.20.1=py39h2804cbe_2 + - editables=0.3=pyhd8ed1ab_0 + - entrypoints=0.4=pyhd8ed1ab_0 + - exceptiongroup=1.1.3=pyhd8ed1ab_0 + - execnet=2.0.2=pyhd8ed1ab_0 + - executing=1.2.0=pyhd8ed1ab_0 + - fftw=3.3.10=nompi_h3046061_108 + - filelock=3.12.4=pyhd8ed1ab_0 + - flit-core=3.9.0=pyhd8ed1ab_0 + - fontconfig=2.14.2=h82840c6_0 + - gap-defaults=4.12.2=hce30654_3 + - gast=0.5.4=pyhd8ed1ab_0 + - gfan=0.6.2=hec08f5c_1003 + - idna=3.4=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=1.1.7=pyhd8ed1ab_0 + - kiwisolver=1.4.5=py39hbd775c9_1 + - lcalc=2.0.5=hc94e8e6_1 + - lcms2=2.15=h481adae_0 + - libbrial=1.2.12=ha7f5006_1 + - libcurl=8.1.2=h912dcd9_0 + - libflint=2.9.0=h173eafc_ntl_100 + - libllvm15=15.0.7=h62b9111_1 + - libopenblas=0.3.24=openmp_hd76b1f2_0 + - libwebp=1.2.4=h999c80f_1 + - m4rie=20150908=h17b34a0_1001 + - markupsafe=2.1.3=py39h0f82c59_1 + - maxima=5.45.0=h6032a66_2 + - mistune=3.0.1=pyhd8ed1ab_0 + - mpc=1.3.1=h91ba8db_0 + - mpfi=1.5.4=hbde5f5b_1001 + - mpmath=1.3.0=pyhd8ed1ab_0 + - munkres=1.1.4=pyh9f0ad1d_0 + - nest-asyncio=1.5.6=pyhd8ed1ab_0 + - networkx=2.8.8=pyhd8ed1ab_0 + - openjpeg=2.5.0=hbc2ba62_2 + - openssh=9.3p1=h7126958_1 + - packaging=23.2=pyhd8ed1ab_0 + - pandocfilters=1.5.0=pyhd8ed1ab_0 + - parso=0.8.3=pyhd8ed1ab_0 + - pathspec=0.11.2=pyhd8ed1ab_0 + - pickleshare=0.7.5=py_1003 + - pkg-config=0.29.2=hab62308_1008 + - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 + - pluggy=1.3.0=pyhd8ed1ab_0 + - ply=3.11=py_1 + - ppl=1.2=h8b147cf_1006 + - prometheus_client=0.17.1=pyhd8ed1ab_0 + - psutil=5.9.5=py39h0f82c59_1 + - 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.0=pyhd8ed1ab_0 + - pycparser=2.21=pyhd8ed1ab_0 + - pygments=2.16.1=pyhd8ed1ab_0 + - pyparsing=3.1.1=pyhd8ed1ab_0 + - pyrsistent=0.19.3=py39h0f82c59_1 + - pysocks=1.7.1=pyha2e5f31_6 + - pyspellchecker=0.7.2=pyhd8ed1ab_0 + - python-fastjsonschema=2.18.1=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.1=py39h1e134f0_1 + - qd=2.3.22=hbec66e7_1004 + - rfc3986-validator=0.1.1=pyh9f0ad1d_0 + - rpds-py=0.10.4=py39h8fec3ad_0 + - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 + - sagetex=3.6.1=pyhd8ed1ab_0 + - setuptools=63.4.3=py39h2804cbe_0 + - simplegeneric=0.8.1=py_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.11.2=pyhd8ed1ab_0 + - trove-classifiers=2023.9.19=pyhd8ed1ab_0 + - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 + - typing_extensions=4.8.0=pyha770c72_0 + - typing_utils=0.1.0=pyhd8ed1ab_0 + - tzlocal=5.1=py39h2804cbe_0 + - unicodedata2=15.1.0=py39h0f82c59_0 + - uri-template=1.3.0=pyhd8ed1ab_0 + - vcversioner=2.16.0.0=py_1 + - webcolors=1.13=pyhd8ed1ab_0 + - webencodings=0.5.1=pyhd8ed1ab_2 + - websocket-client=1.6.4=pyhd8ed1ab_0 + - wheel=0.41.2=pyhd8ed1ab_0 + - zipp=3.17.0=pyhd8ed1ab_0 + - anyio=4.0.0=pyhd8ed1ab_0 + - arb=2.23.0=he5401aa_0 + - asttokens=2.4.0=pyhd8ed1ab_0 + - async-lru=2.0.4=pyhd8ed1ab_0 + - babel=2.12.1=pyhd8ed1ab_1 + - backports.functools_lru_cache=1.6.5=pyhd8ed1ab_0 + - beautifulsoup4=4.12.2=pyha770c72_0 + - beniget=0.4.1=pyhd8ed1ab_0 + - bleach=6.1.0=pyhd8ed1ab_0 + - brial=1.2.12=pyh694c41f_1 + - cached-property=1.5.2=hd8ed1ab_1 + - cairo=1.16.0=h73a0509_1014 + - cattrs=23.1.2=pyhd8ed1ab_0 + - cffi=1.16.0=py39he153c15_0 + - 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 + - eclib=20230424=haeb5157_0 + - fonttools=4.43.1=py39h17cfd9d_0 + - fplll=5.4.4=h29209e0_0 + - gfortran_impl_osx-arm64=12.3.0=hbbb9e1e_1 + - gmpy2=2.1.2=py39h0b4f9c6_1 + - importlib-metadata=6.8.0=pyha770c72_0 + - importlib_resources=6.1.0=pyhd8ed1ab_0 + - jedi=0.19.1=pyhd8ed1ab_0 + - jinja2=3.1.2=pyhd8ed1ab_1 + - jupyterlab_pygments=0.2.2=pyhd8ed1ab_0 + - ld64_osx-arm64=609=hc4dc95b_14 + - libblas=3.9.0=18_osxarm64_openblas + - libclang-cpp15=15.0.7=default_h5dc8d65_3 + - libgd=2.3.3=h90fb8ed_4 + - llvm-tools=15.0.7=h62b9111_1 + - matplotlib-inline=0.1.6=pyhd8ed1ab_0 + - memory-allocator=0.1.2=py39h02fc5c5_2 + - openblas=0.3.24=openmp_hce3e5ba_0 + - overrides=7.4.0=pyhd8ed1ab_0 + - pexpect=4.8.0=pyh1a96a4e_2 + - pillow=9.4.0=py39h8bd98a6_1 + - pip=23.2.1=pyhd8ed1ab_0 + - pkgconfig=1.5.5=pyhd8ed1ab_4 + - primecountpy=0.1.0=py39hbd775c9_4 + - pybind11=2.11.1=py39hbd775c9_2 + - pyobjc-core=10.0=py39h4d1a642_0 + - pyproject-api=1.6.1=pyhd8ed1ab_0 + - pytest=7.4.2=pyhd8ed1ab_0 + - python-dateutil=2.8.2=pyhd8ed1ab_0 + - pytz-deprecation-shim=0.1.0.post0=py39h2804cbe_4 + - referencing=0.30.2=pyhd8ed1ab_0 + - rfc3339-validator=0.1.4=pyhd8ed1ab_0 + - sagemath-db-conway-polynomials=0.5.0=h4653dfc_1 + - singular=4.2.1.p3=h3b80c97_2 + - terminado=0.17.1=pyhd1c38e8_0 + - tinycss2=1.2.1=pyhd8ed1ab_0 + - typing-extensions=4.8.0=hd8ed1ab_0 + - urllib3=2.0.6=pyhd8ed1ab_0 + - argon2-cffi-bindings=21.2.0=py39h0f82c59_4 + - arrow=1.3.0=pyhd8ed1ab_0 + - cctools_osx-arm64=973.0.1=h2a25c60_14 + - clang-15=15.0.7=default_h5dc8d65_3 + - fqdn=1.5.1=pyhd8ed1ab_0 + - git=2.42.0=pl5321h46e2b6d_0 + - harfbuzz=6.0.0=hddbc195_0 + - hatchling=1.18.0=pyhd8ed1ab_0 + - importlib-resources=6.1.0=pyhd8ed1ab_0 + - importlib_metadata=6.8.0=hd8ed1ab_0 + - jsonschema-specifications=2023.7.1=pyhd8ed1ab_0 + - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1 + - ld64=609=h89fa09d_14 + - libcblas=3.9.0=18_osxarm64_openblas + - liblapack=3.9.0=18_osxarm64_openblas + - lsprotocol=2023.0.0b1=pyhd8ed1ab_0 + - platformdirs=3.11.0=pyhd8ed1ab_0 + - pplpy=0.8.7=py39h1364912_0 + - pyobjc-framework-cocoa=10.0=py39h4d1a642_1 + - pytest-xdist=3.3.1=pyhd8ed1ab_0 + - requests=2.31.0=pyhd8ed1ab_0 + - setuptools-scm=8.0.4=pyhd8ed1ab_0 + - stack_data=0.6.2=pyhd8ed1ab_0 + - sympy=1.12=pypyh9d50eac_103 + - wcwidth=0.2.8=pyhd8ed1ab_0 + - argon2-cffi=23.1.0=pyhd8ed1ab_0 + - arpack=3.7.0=h58ebc17_2 + - cctools=973.0.1=hd1ac623_14 + - clang=15.0.7=hce30654_3 + - dsdp=5.8=h9397a75_1203 + - fflas-ffpack=2.4.3=h11f2abc_2 + - gsl=2.7=h6e638da_0 + - iml=1.0.5=hd52f0d1_1003 + - isoduration=20.11.0=pyhd8ed1ab_0 + - jsonschema=4.19.1=pyhd8ed1ab_0 + - jupyter_core=5.3.2=py39h2804cbe_0 + - liblapacke=3.9.0=18_osxarm64_openblas + - numpy=1.26.0=py39hc348b60_0 + - pango=1.50.14=h6c112b8_0 + - pooch=1.7.0=pyhd8ed1ab_4 + - prompt-toolkit=3.0.39=pyha770c72_0 + - send2trash=1.8.2=pyhd1c38e8_0 + - setuptools_scm=8.0.4=hd8ed1ab_0 + - suitesparse=5.10.1=h7cd81ec_1 + - typeguard=3.0.2=pyhd8ed1ab_0 + - virtualenv=20.24.4=pyhd8ed1ab_0 + - blas-devel=3.9.0=18_osxarm64_openblas + - clangxx=15.0.7=default_h610c423_3 + - contourpy=1.1.1=py39hbd775c9_1 + - cvxopt=1.3.2=py39h76eeb2c_1 + - fpylll=0.5.9=py39h0530aee_1 + - giac=1.9.0.21=h1c96721_1 + - igraph=0.9.10=hcec9b84_1 + - jsonschema-with-format-nongpl=4.19.1=pyhd8ed1ab_0 + - jupyter_client=8.3.1=pyhd8ed1ab_0 + - linbox=1.6.3=h549c411_7 + - nbformat=5.9.2=pyhd8ed1ab_0 + - prompt_toolkit=3.0.39=hd8ed1ab_0 + - pygls=1.1.1=pyhd8ed1ab_0 + - scipy=1.10.1=py39ha6b2cbd_3 + - tox=4.11.3=pyhd8ed1ab_0 + - blas=2.118=openblas + - compiler-rt_osx-arm64=15.0.7=hf8d1dfb_1 + - ipython=8.16.1=pyh31c8845_0 + - jupyter_events=0.7.0=pyhd8ed1ab_2 + - matplotlib-base=3.8.0=py39h6685e7c_1 + - nbclient=0.8.0=pyhd8ed1ab_0 + - rw=0.9=h3422bc3_0 + - compiler-rt=15.0.7=hf8d1dfb_1 + - ipykernel=6.25.2=pyh1050b4e_0 + - matplotlib=3.8.0=py39hdf13c20_1 + - nbconvert-core=7.9.2=pyhd8ed1ab_0 + - clang_osx-arm64=15.0.7=h77e971b_3 + - jupyter_server=2.7.3=pyhd8ed1ab_1 + - nbconvert-pandoc=7.9.2=pyhd8ed1ab_0 + - c-compiler=1.6.0=hd291e01_0 + - clangxx_osx-arm64=15.0.7=h768a7fd_3 + - gfortran_osx-arm64=12.3.0=h57527a5_1 + - jupyter-lsp=2.2.0=pyhd8ed1ab_0 + - jupyterlab_server=2.25.0=pyhd8ed1ab_0 + - nbconvert=7.9.2=pyhd8ed1ab_0 + - notebook-shim=0.2.3=pyhd8ed1ab_0 + - cxx-compiler=1.6.0=h1995070_0 + - gfortran=12.3.0=h1ca8e4b_1 + - jupyterlab=4.0.6=pyhd8ed1ab_0 + - pythran=0.14.0=py39h819cc4c_1 + - r-base=4.1.3=h9c4d319_6 + - fortran-compiler=1.6.0=h5a50232_0 + - notebook=7.0.4=pyhd8ed1ab_0 + - rpy2=3.5.11=py39r41hf9b1952_0 + - compilers=1.6.0=hce30654_0 + - widgetsnbextension=3.6.6=pyhd8ed1ab_0 + - ipywidgets=7.8.0=pyhd8ed1ab_0 + - jupyter-jsmol=2022.1.0=pyhd8ed1ab_0 + - esbonio=0.16.2=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 From f6d68a19482037a64c3299d1ccc1fda757475193 Mon Sep 17 00:00:00 2001 From: Tobias Diez Date: Mon, 27 Nov 2023 09:38:59 +0000 Subject: [PATCH 19/33] convert update script to python --- .github/workflows/conda-lock-update.ps1 | 34 ------------------------- .github/workflows/conda-lock-update.py | 33 ++++++++++++++++++++++++ 2 files changed, 33 insertions(+), 34 deletions(-) delete mode 100755 .github/workflows/conda-lock-update.ps1 create mode 100755 .github/workflows/conda-lock-update.py diff --git a/.github/workflows/conda-lock-update.ps1 b/.github/workflows/conda-lock-update.ps1 deleted file mode 100755 index 194e5df168e..00000000000 --- a/.github/workflows/conda-lock-update.ps1 +++ /dev/null @@ -1,34 +0,0 @@ -#!/usr/bin/env pwsh - -$scriptDir = Split-Path -Parent $MyInvocation.MyCommand.Path -$rootDir = Join-Path -Path $scriptDir -ChildPath ..\..\ - -& "$rootDir/bootstrap-conda" - -$platforms = @{ - "linux-64" = "linux" - "linux-aarch64" = "linux-aarch" - "osx-64" = "macos" - "osx-arm64" = "macos-arm" -} -$pythons = "3.9", "3.10", "3.11" -$tags = "", "-dev" -$sources = "", "src" - -foreach ($platform in $platforms.GetEnumerator()) { - foreach ($python in $pythons) { - foreach ($tag in $tags) { - foreach ($src in $sources) { - $envFile = Join-Path -Path $rootDir -ChildPath "$src\environment$tag-$python.yml" - $lockFile = Join-Path -Path $rootDir -ChildPath "$src\environment$tag-$python-$($platform.Value)" - - if (-not (Test-Path $envFile)) { - continue - } - - echo "Updating lock file for $envFile at $lockFile" - & "conda-lock" --channel conda-forge --kind env --platform $platform.Key --file $envFile --lockfile $lockFile --filename-template $lockFile - } - } - } -} diff --git a/.github/workflows/conda-lock-update.py b/.github/workflows/conda-lock-update.py new file mode 100755 index 00000000000..2968af4ccb2 --- /dev/null +++ b/.github/workflows/conda-lock-update.py @@ -0,0 +1,33 @@ +#!/usr/bin/env python3 + +from pathlib import Path +import subprocess + +script_dir = Path(__file__).resolve().parent +root_dir = script_dir / '..' / '..' + +subprocess.run([str(root_dir / "bootstrap-conda")]) + +platforms = { + "linux-64": "linux", + "linux-aarch64": "linux-aarch", + "osx-64": "macos", + "osx-arm64": "macos-arm" + #"win-64": "win", +} +pythons = ["3.9", "3.10", "3.11"] +tags = ["", "-dev"] +sources = ["", "src"] + +for platform_key, platform_value in platforms.items(): + for python in pythons: + for tag in tags: + for src in sources: + env_file = root_dir / src / f"environment{tag}-{python}.yml" + lock_file = root_dir / src / f"environment{tag}-{python}-{platform_value}" + + if not env_file.exists(): + continue + + print(f"Updating lock file for {env_file} at {lock_file}") + subprocess.run(["conda-lock", "--channel", "conda-forge", "--kind", "env", "--platform", platform_key, "--file", str(env_file), "--lockfile", str(lock_file), "--filename-template", str(lock_file)]) From 381160f220b8b9a1fdd987784f567523251cd6fc Mon Sep 17 00:00:00 2001 From: Tobias Diez Date: Mon, 27 Nov 2023 09:57:49 +0000 Subject: [PATCH 20/33] Exclude unnecessary prereq --- build/pkgs/_prereq/distros/conda.txt | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/build/pkgs/_prereq/distros/conda.txt b/build/pkgs/_prereq/distros/conda.txt index c05a06ee98f..748e85e22be 100644 --- a/build/pkgs/_prereq/distros/conda.txt +++ b/build/pkgs/_prereq/distros/conda.txt @@ -1,8 +1,8 @@ # Not needed on conda -compilers -make -m4 -perl -python -tar -bc +# compilers +# make +# m4 +# perl +# python +# tar +# bc From 2a53e676bc837ecd0f878181160c99ef760ae9a7 Mon Sep 17 00:00:00 2001 From: Tobias Diez Date: Mon, 27 Nov 2023 09:59:10 +0000 Subject: [PATCH 21/33] update arm names --- .github/workflows/conda-lock-update.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/conda-lock-update.py b/.github/workflows/conda-lock-update.py index 2968af4ccb2..3cde222f70a 100755 --- a/.github/workflows/conda-lock-update.py +++ b/.github/workflows/conda-lock-update.py @@ -10,9 +10,9 @@ platforms = { "linux-64": "linux", - "linux-aarch64": "linux-aarch", + "linux-aarch64": "linux-aarch64", "osx-64": "macos", - "osx-arm64": "macos-arm" + "osx-arm64": "macos-arm64" #"win-64": "win", } pythons = ["3.9", "3.10", "3.11"] From 328da2d85981f26c97fa725c5efcc680c7dc3e4a Mon Sep 17 00:00:00 2001 From: Tobias Diez Date: Mon, 27 Nov 2023 10:06:15 +0000 Subject: [PATCH 22/33] readd python to env --- build/pkgs/_prereq/distros/conda.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/pkgs/_prereq/distros/conda.txt b/build/pkgs/_prereq/distros/conda.txt index 748e85e22be..6bef4a9ab60 100644 --- a/build/pkgs/_prereq/distros/conda.txt +++ b/build/pkgs/_prereq/distros/conda.txt @@ -1,8 +1,8 @@ +python # Not needed on conda # compilers # make # m4 # perl -# python # tar # bc From 9e23573f1d39b3d90e1778e56ab54dcd6e350f2f Mon Sep 17 00:00:00 2001 From: Tobias Diez Date: Mon, 27 Nov 2023 10:14:47 +0000 Subject: [PATCH 23/33] correct print output --- .github/workflows/conda-lock-update.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/conda-lock-update.py b/.github/workflows/conda-lock-update.py index 3cde222f70a..adfef2cfa6e 100755 --- a/.github/workflows/conda-lock-update.py +++ b/.github/workflows/conda-lock-update.py @@ -29,5 +29,5 @@ if not env_file.exists(): continue - print(f"Updating lock file for {env_file} at {lock_file}") + print(f"Updating lock file for {env_file} at {lock_file}", flush=True) subprocess.run(["conda-lock", "--channel", "conda-forge", "--kind", "env", "--platform", platform_key, "--file", str(env_file), "--lockfile", str(lock_file), "--filename-template", str(lock_file)]) From 40e2c22ba8975f47874d89b858b63e73d44fdaa9 Mon Sep 17 00:00:00 2001 From: Tobias Diez Date: Mon, 27 Nov 2023 10:34:38 +0000 Subject: [PATCH 24/33] update lock files --- environment-3.10-linux-aarch64.yml | 184 ++++++++ environment-3.10-linux.yml | 114 ++--- environment-3.10-macos-arm64.yml | 185 ++++++++ environment-3.10-macos.yml | 161 ++++--- environment-3.11-linux-aarch64.yml | 184 ++++++++ environment-3.11-linux.yml | 112 ++--- environment-3.11-macos-arm64.yml | 185 ++++++++ environment-3.11-macos.yml | 161 ++++--- environment-3.9-linux-aarch64.yml | 184 ++++++++ environment-3.9-linux.yml | 112 ++--- environment-3.9-macos-arm64.yml | 185 ++++++++ environment-3.9-macos.yml | 161 ++++--- ...yml => environment-3.10-linux-aarch64.yml} | 212 +++++---- src/environment-3.10-linux.yml | 271 ++++++----- ...m.yml => environment-3.10-macos-arm64.yml} | 316 +++++++------ src/environment-3.10-macos.yml | 323 +++++++------- ...yml => environment-3.11-linux-aarch64.yml} | 210 +++++---- src/environment-3.11-linux.yml | 269 ++++++----- ...m.yml => environment-3.11-macos-arm64.yml} | 316 +++++++------ src/environment-3.11-macos.yml | 323 +++++++------- src/environment-3.9-linux-aarch64.yml | 419 ++++++++++++++++++ src/environment-3.9-linux.yml | 269 ++++++----- ...rm.yml => environment-3.9-macos-arm64.yml} | 316 +++++++------ src/environment-3.9-macos.yml | 323 +++++++------- ...=> environment-dev-3.10-linux-aarch64.yml} | 229 +++++----- src/environment-dev-3.10-linux.yml | 288 ++++++------ ...l => environment-dev-3.10-macos-arm64.yml} | 333 +++++++------- src/environment-dev-3.10-macos.yml | 340 +++++++------- ...=> environment-dev-3.11-linux-aarch64.yml} | 227 +++++----- src/environment-dev-3.11-linux.yml | 286 ++++++------ ...l => environment-dev-3.11-macos-arm64.yml} | 333 +++++++------- src/environment-dev-3.11-macos.yml | 340 +++++++------- ... => environment-dev-3.9-linux-aarch64.yml} | 227 +++++----- src/environment-dev-3.9-linux.yml | 286 ++++++------ ...ml => environment-dev-3.9-macos-arm64.yml} | 333 +++++++------- src/environment-dev-3.9-macos.yml | 340 +++++++------- 36 files changed, 5228 insertions(+), 3829 deletions(-) create mode 100644 environment-3.10-linux-aarch64.yml create mode 100644 environment-3.10-macos-arm64.yml create mode 100644 environment-3.11-linux-aarch64.yml create mode 100644 environment-3.11-macos-arm64.yml create mode 100644 environment-3.9-linux-aarch64.yml create mode 100644 environment-3.9-macos-arm64.yml rename src/{environment-3.10-linux-aarch.yml => environment-3.10-linux-aarch64.yml} (72%) rename src/{environment-3.10-macos-arm.yml => environment-3.10-macos-arm64.yml} (70%) rename src/{environment-3.11-linux-aarch.yml => environment-3.11-linux-aarch64.yml} (72%) rename src/{environment-3.11-macos-arm.yml => environment-3.11-macos-arm64.yml} (70%) create mode 100644 src/environment-3.9-linux-aarch64.yml rename src/{environment-3.9-macos-arm.yml => environment-3.9-macos-arm64.yml} (70%) rename src/{environment-dev-3.10-linux-aarch.yml => environment-dev-3.10-linux-aarch64.yml} (71%) rename src/{environment-dev-3.10-macos-arm.yml => environment-dev-3.10-macos-arm64.yml} (69%) rename src/{environment-dev-3.11-linux-aarch.yml => environment-dev-3.11-linux-aarch64.yml} (72%) rename src/{environment-dev-3.11-macos-arm.yml => environment-dev-3.11-macos-arm64.yml} (69%) rename src/{environment-dev-3.9-linux-aarch.yml => environment-dev-3.9-linux-aarch64.yml} (72%) rename src/{environment-dev-3.9-macos-arm.yml => environment-dev-3.9-macos-arm64.yml} (69%) diff --git a/environment-3.10-linux-aarch64.yml b/environment-3.10-linux-aarch64.yml new file mode 100644 index 00000000000..4778ba7f9b9 --- /dev/null +++ b/environment-3.10-linux-aarch64.yml @@ -0,0 +1,184 @@ +# Generated by conda-lock. +# platform: linux-aarch64 +# input_hash: ddd16b3654887a2a3c5b8fddf279463d0f440db11bc7c6b3ffe8f9a207973164 + +channels: + - conda-forge +dependencies: + - _sysroot_linux-aarch64_curr_repodata_hack=4=h57d6b7b_13 + - ca-certificates=2023.11.17=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 + - libboost-headers=1.82.0=h8af1aa0_2 + - libgcc-devel_linux-aarch64=12.3.0=h8b5ab12_103 + - libgomp=13.2.0=hf8544c7_3 + - libstdcxx-ng=13.2.0=h9a76618_3 + - mathjax=3.2.2=h8af1aa0_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 + - python_abi=3.10=4_cp310 + - tzdata=2023c=h71feb2d_0 + - fonts-conda-forge=1=0 + - pari-seadata=0.0.20090618=0 + - sysroot_linux-aarch64=2.17=h5b4a56d_13 + - binutils_impl_linux-aarch64=2.40=h870a726_0 + - fonts-conda-ecosystem=1=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 + - bdw-gc=8.0.6=hd62202e_0 + - bzip2=1.0.8=h31becfc_5 + - c-ares=1.22.1=h31becfc_0 + - cliquer=1.22=hb9de7d4_0 + - gengetopt=2.23=h01db608_0 + - gf2x=1.3.0=h1b3b3a3_2 + - giflib=5.2.1=hb4cce97_3 + - gmp=6.3.0=h2f0025b_0 + - icu=72.1=hcf00150_0 + - jpeg=9e=h2a766a3_3 + - keyutils=1.6.1=h4e544f5_0 + - lerc=4.0.0=h4de3ea5_0 + - libatomic_ops=7.6.14=h4e544f5_0 + - libbraiding=1.1=h7fd3ca4_0 + - libdeflate=1.17=hb4cce97_0 + - libev=4.33=h516909a_1 + - libexpat=2.5.0=hd600fc2_1 + - libffi=3.4.2=h3557bc0_5 + - libgfortran5=13.2.0=h582850c_3 + - libiconv=1.17=h9cdd2b7_0 + - libnsl=2.0.1=h31becfc_0 + - libsanitizer=12.3.0=h8ebda82_3 + - 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 + - libzlib=1.2.13=h31becfc_5 + - lrcalc=2.1=h4de3ea5_5 + - m4=1.4.18=h516909a_1001 + - metis=5.1.0=h2f0025b_1007 + - nauty=2.7.2=hf897c2e_0 + - ncurses=6.4=h0425590_2 + - ninja=1.11.1=hdd96247_0 + - openssl=3.2.0=h31becfc_0 + - palp=2.20=hb9de7d4_0 + - patch=2.7.6=hf897c2e_1002 + - pkg-config=0.29.2=hb9de7d4_1008 + - planarity=3.0.0.5=hb9de7d4_1002 + - primesieve=11.1=h2f0025b_0 + - qhull=2020.2=hd62202e_2 + - rhash=1.4.4=h31becfc_0 + - symmetrica=3.0.1=hd600fc2_0 + - xz=5.2.6=h9cdd2b7_0 + - 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 + - givaro=4.1.1=h192cbe9_1 + - glpk=5.0=h66325d0_0 + - libedit=3.1.20191231=he28a2e2_2 + - libgfortran-ng=13.2.0=he9431aa_3 + - libhomfly=1.02r6=hb9de7d4_0 + - libnghttp2=1.58.0=hb0e430d_0 + - libpng=1.6.39=hf9034f9_0 + - libsqlite=3.44.2=h194ca79_0 + - libssh2=1.11.0=h492db2e_0 + - libxml2=2.10.4=h430b14f_0 + - mpfr=4.2.1=ha2d0fc4_0 + - ntl=11.4.3=h0d7519b_1 + - perl=5.32.1=4_h31becfc_perl5 + - primecount=7.9=hd600fc2_0 + - readline=8.2=h8fc344f_1 + - tk=8.6.13=h194ca79_0 + - zeromq=4.3.5=h2f0025b_0 + - zlib=1.2.13=h31becfc_5 + - zstd=1.5.5=h4c53e97_0 + - autoconf=2.71=pl5321h2148fe1_1 + - ecl=21.2.1=haa44c19_2 + - freetype=2.12.1=hf0a5ef3_2 + - 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 + - krb5=1.21.2=hc419048_0 + - libboost=1.82.0=hbfc56d7_2 + - libflint=2.9.0=hd3470fa_ntl_100 + - libhwloc=2.9.1=h21e8147_0 + - libopenblas=0.3.25=pthreads_h5a5ec62_0 + - libtiff=4.5.0=h4c1066a_2 + - llvm-openmp=17.0.5=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 + - qd=2.3.22=h05efe27_1004 + - sqlite=3.44.2=h3b3482f_0 + - tachyon=0.99b6=h63ab1d9_1001 + - texinfo=7.0=pl5321h17f021e_0 + - appdirs=1.4.4=pyh9f0ad1d_0 + - arb=2.23.0=h37d5dab_0 + - automake=1.16.5=pl5321h8af1aa0_0 + - c-compiler=1.6.0=h31becfc_0 + - cachetools=5.3.2=pyhd8ed1ab_0 + - chardet=5.2.0=py310hbbe02a8_1 + - colorama=0.4.6=pyhd8ed1ab_0 + - distlib=0.3.7=pyhd8ed1ab_0 + - eclib=20230424=h0bc7b0f_0 + - filelock=3.13.1=pyhd8ed1ab_0 + - fontconfig=2.14.2=ha9a116f_0 + - fplll=5.4.5=hb3a790e_0 + - gfortran=12.3.0=h8d4031d_2 + - gfortran_linux-aarch64=12.3.0=h1993883_2 + - lcalc=2.0.5=h3264cc0_1 + - libblas=3.9.0=20_linuxaarch64_openblas + - libboost-devel=1.82.0=h37bb5a9_2 + - libbrial=1.2.12=h17533bf_1 + - libcurl=8.4.0=h4e8248e_0 + - libwebp=1.2.4=h7bdf6e5_1 + - m4rie=20150908=h75e8696_1001 + - maxima=5.45.0=haa44c19_3 + - openblas=0.3.25=pthreads_h339cbfa_0 + - packaging=23.2=pyhd8ed1ab_0 + - pluggy=1.3.0=pyhd8ed1ab_0 + - singular=4.2.1.p3=h3d4c4c6_2 + - sympow=2.023.6=h157afb5_3 + - tbb=2021.9.0=h4c384f3_0 + - tomli=2.0.1=pyhd8ed1ab_0 + - typing_extensions=4.8.0=pyha770c72_0 + - zipp=3.17.0=pyhd8ed1ab_0 + - boost-cpp=1.82.0=h62f3a30_2 + - brial=1.2.12=pyh694c41f_1 + - cmake=3.27.8=hef020d8_0 + - curl=8.4.0=h4e8248e_0 + - fortran-compiler=1.6.0=h7048d53_0 + - importlib-metadata=6.8.0=pyha770c72_0 + - libcblas=3.9.0=20_linuxaarch64_openblas + - libgd=2.3.3=h5fc1a20_5 + - liblapack=3.9.0=20_linuxaarch64_openblas + - platformdirs=4.0.0=pyhd8ed1ab_0 + - pyproject-api=1.6.1=pyhd8ed1ab_0 + - typing-extensions=4.8.0=hd8ed1ab_0 + - arpack=3.7.0=hf862f49_2 + - fflas-ffpack=2.4.3=hf104d39_2 + - gsl=2.7=h294027d_0 + - iml=1.0.5=h9076c59_1003 + - importlib_metadata=6.8.0=hd8ed1ab_0 + - liblapacke=3.9.0=20_linuxaarch64_openblas + - suitesparse=5.10.1=h1404dd6_1 + - virtualenv=20.24.7=pyhd8ed1ab_0 + - blas-devel=3.9.0=20_linuxaarch64_openblas + - giac=1.9.0.21=h04922a4_1 + - igraph=0.9.10=hefb87a8_1 + - linbox=1.6.3=h31716a8_7 + - tox=4.11.3=pyhd8ed1ab_0 + - blas=2.120=openblas + - rw=0.9=hf897c2e_0 diff --git a/environment-3.10-linux.yml b/environment-3.10-linux.yml index dae9d8ed5f7..2d3bb04ca19 100644 --- a/environment-3.10-linux.yml +++ b/environment-3.10-linux.yml @@ -6,16 +6,16 @@ channels: - conda-forge dependencies: - _libgcc_mutex=0.1=conda_forge - - ca-certificates=2023.7.22=hbcca054_0 + - ca-certificates=2023.11.17=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=hab24e00_0 + - font-ttf-ubuntu=0.83=h77eed37_1 - kernel-headers_linux-64=2.6.32=he073ed8_16 - ld_impl_linux-64=2.40=h41732ed_0 - - libboost-headers=1.82.0=ha770c72_2 - - libgcc-devel_linux-64=12.3.0=h8bca6fd_2 - - libstdcxx-ng=13.2.0=h7e041cc_2 + - libboost-headers=1.83.0=ha770c72_0 + - libgcc-devel_linux-64=12.3.0=h8bca6fd_103 + - libstdcxx-ng=13.2.0=h7e041cc_3 - mathjax=3.2.2=ha770c72_0 - pari-elldata=0.0.20161017=0 - pari-galdata=0.0.20180411=0 @@ -24,7 +24,7 @@ dependencies: - python_abi=3.10=4_cp310 - tzdata=2023c=h71feb2d_0 - fonts-conda-forge=1=0 - - libgomp=13.2.0=h807b86a_2 + - libgomp=13.2.0=h807b86a_3 - pari-seadata=0.0.20090618=0 - sysroot_linux-64=2.12=he073ed8_16 - binutils_impl_linux-64=2.40=hf600244_0 @@ -32,42 +32,42 @@ dependencies: - 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_2 + - libgcc-ng=13.2.0=h807b86a_3 - bdw-gc=8.0.6=h4bd325d_0 - - bzip2=1.0.8=h7f98852_4 - - c-ares=1.19.1=hd590300_0 + - bzip2=1.0.8=hd590300_5 + - c-ares=1.22.1=hd590300_0 - cliquer=1.22=h36c2ea0_0 - gengetopt=2.23=h9c3ff4c_0 - gf2x=1.3.0=ha476b99_2 - giflib=5.2.1=h0b41bf4_3 - - gmp=6.2.1=h58526e2_0 - - icu=72.1=hcb278e6_0 + - gmp=6.3.0=h59595ed_0 + - icu=73.2=h59595ed_0 - keyutils=1.6.1=h166bdaf_0 - lerc=4.0.0=h27087fc_0 - libatomic_ops=7.6.14=h166bdaf_0 - libbraiding=1.1=h58526e2_0 - - libdeflate=1.18=h0b41bf4_0 + - libdeflate=1.19=hd590300_0 - libev=4.33=h516909a_1 - libexpat=2.5.0=hcb278e6_1 - libffi=3.4.2=h7f98852_5 - - libgfortran5=13.2.0=ha4646dd_2 + - libgfortran5=13.2.0=ha4646dd_3 - libiconv=1.17=h166bdaf_0 - - libjpeg-turbo=2.1.5.1=hd590300_1 - - libnsl=2.0.0=hd590300_1 - - libsanitizer=12.3.0=h0f45ef3_2 + - libjpeg-turbo=3.0.0=hd590300_1 + - libnsl=2.0.1=hd590300_0 + - libsanitizer=12.3.0=h0f45ef3_3 - 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.1=hd590300_0 + - libwebp-base=1.3.2=hd590300_0 - libzlib=1.2.13=hd590300_5 - lrcalc=2.1=h27087fc_5 - m4=1.4.18=h516909a_1001 - metis=5.1.0=h59595ed_1007 - nauty=2.7.2=h7f98852_0 - - ncurses=6.4=hcb278e6_0 + - ncurses=6.4=h59595ed_2 - ninja=1.11.1=h924138e_0 - - openssl=3.1.3=hd590300_0 + - openssl=3.2.0=hd590300_0 - palp=2.20=h36c2ea0_0 - patch=2.7.6=h7f98852_1002 - pkg-config=0.29.2=h36c2ea0_1008 @@ -76,29 +76,28 @@ dependencies: - qhull=2020.2=h4bd325d_2 - rhash=1.4.4=hd590300_0 - symmetrica=3.0.1=hcb278e6_0 - - tbb=2021.7.0=h924138e_0 - xz=5.2.6=h166bdaf_0 - 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_2 + - gcc_impl_linux-64=12.3.0=he2b93b0_3 - givaro=4.1.1=h192cbe9_1 - glpk=5.0=h445213a_0 - libedit=3.1.20191231=he28a2e2_2 - - libgfortran-ng=13.2.0=h69a702a_2 + - libgfortran-ng=13.2.0=h69a702a_3 - libhomfly=1.02r6=h36c2ea0_0 - - libnghttp2=1.52.0=h61bc06f_0 + - libnghttp2=1.58.0=h47da74e_0 - libpng=1.6.39=h753d276_0 - - libsqlite=3.43.0=h2797004_0 + - libsqlite=3.44.2=h2797004_0 - libssh2=1.11.0=h0841786_0 - - libxml2=2.10.4=hfdac1af_0 - - mpfr=4.2.0=hb012696_0 + - libxml2=2.11.6=h232c23b_0 + - mpfr=4.2.1=h9458935_0 - ntl=11.4.3=hef3c4d3_1 - perl=5.32.1=4_hd590300_perl5 - primecount=7.9=hcb278e6_0 - readline=8.2=h8228510_1 - - tk=8.6.13=h2797004_0 - - zeromq=4.3.4=h9c3ff4c_1 + - tk=8.6.13=noxft_h4845f30_101 + - zeromq=4.3.5=h59595ed_0 - zlib=1.2.13=hd590300_5 - zstd=1.5.5=hfc55251_0 - autoconf=2.71=pl5321h2b4cb7a_1 @@ -107,77 +106,78 @@ dependencies: - 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_2 + - gfortran_impl_linux-64=12.3.0=hfcedea8_3 + - igraph=0.7.1=0 - krb5=1.21.2=h659d440_0 - - libboost=1.82.0=h1bacd13_2 + - libboost=1.83.0=h6fcfa73_0 - libflint=2.9.0=h2f819a4_ntl_100 - - libopenblas=0.3.24=pthreads_h413a1c8_0 - - libtiff=4.5.1=h8b53f26_1 - - llvm-openmp=17.0.2=h4dfa4b3_0 + - libhwloc=2.9.3=default_h554bfaf_1009 + - libopenblas=0.3.25=pthreads_h413a1c8_0 + - libtiff=4.6.0=ha9c0a0a_2 + - llvm-openmp=17.0.5=h4dfa4b3_0 - m4ri=20140914=h7ca028e_1005 - mpc=1.3.1=hfe3b2da_0 - mpfi=1.5.4=h9f54685_1001 - pari=2.15.4=h4d4ae9b_2_pthread - ppl=1.2=h6ec01c2_1006 - - python=3.10.12=hd12c33a_0_cpython + - python=3.10.13=hd12c33a_0_cpython - qd=2.3.22=h2cc385e_1004 - - sqlite=3.43.0=h2c6b66d_0 + - sqlite=3.44.2=h2c6b66d_0 - tachyon=0.99b6=0 - texinfo=7.0=pl5321h0f457ee_0 - appdirs=1.4.4=pyh9f0ad1d_0 - arb=2.23.0=h44d021b_0 - automake=1.16.5=pl5321ha770c72_0 - c-compiler=1.6.0=hd590300_0 - - cachetools=5.3.1=pyhd8ed1ab_0 + - cachetools=5.3.2=pyhd8ed1ab_0 - chardet=5.2.0=py310hff52083_1 - colorama=0.4.6=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - eclib=20230424=hdef1efb_0 - - filelock=3.12.4=pyhd8ed1ab_0 + - filelock=3.13.1=pyhd8ed1ab_0 - fontconfig=2.14.2=h14ed4e7_0 - - fplll=5.4.4=h8780c30_0 + - fplll=5.4.5=h384768b_0 - gfortran=12.3.0=h499e0f7_2 - gfortran_linux-64=12.3.0=h7fe76b4_2 - lcalc=2.0.5=h6a8a7c6_1 - - libblas=3.9.0=18_linux64_openblas - - libboost-devel=1.82.0=h00ab1b0_2 + - libblas=3.9.0=20_linux64_openblas + - libboost-devel=1.83.0=h00ab1b0_0 - libbrial=1.2.12=h3155cbd_1 - - libcurl=8.3.0=hca28451_0 - - libwebp=1.3.1=hbf2b3c1_0 + - libcurl=8.4.0=hca28451_0 + - libwebp=1.3.2=h658648e_1 - m4rie=20150908=h7ca028e_1001 - maxima=5.45.0=h9d73b02_3 - - openblas=0.3.24=pthreads_h7a3da1a_0 + - openblas=0.3.25=pthreads_h7a3da1a_0 - packaging=23.2=pyhd8ed1ab_0 - pluggy=1.3.0=pyhd8ed1ab_0 + - rw=0.8=h516909a_1001 - singular=4.2.1.p3=h1ea75ed_2 - sympow=2.023.6=hc6ab17c_3 + - tbb=2021.10.0=h00ab1b0_2 - tomli=2.0.1=pyhd8ed1ab_0 - typing_extensions=4.8.0=pyha770c72_0 - zipp=3.17.0=pyhd8ed1ab_0 - - boost-cpp=1.82.0=h789c474_2 + - boost-cpp=1.83.0=h44aadfe_0 - brial=1.2.12=pyh694c41f_1 - - cmake=3.27.6=hcfe8598_0 - - curl=8.3.0=hca28451_0 + - cmake=3.27.8=hcfe8598_0 + - curl=8.4.0=hca28451_0 - fortran-compiler=1.6.0=heb67821_0 - importlib-metadata=6.8.0=pyha770c72_0 - - libcblas=3.9.0=18_linux64_openblas - - libgd=2.3.3=hfa28ad5_6 - - liblapack=3.9.0=18_linux64_openblas + - libcblas=3.9.0=20_linux64_openblas + - libgd=2.3.3=h119a65a_9 + - liblapack=3.9.0=20_linux64_openblas + - platformdirs=4.0.0=pyhd8ed1ab_0 - pyproject-api=1.6.1=pyhd8ed1ab_0 - typing-extensions=4.8.0=hd8ed1ab_0 - - arpack=3.7.0=hdefa2d7_2 - fflas-ffpack=2.4.3=h912ac81_2 - gsl=2.7=he838d99_0 - iml=1.0.5=hd75c201_1003 - importlib_metadata=6.8.0=hd8ed1ab_0 - - liblapacke=3.9.0=18_linux64_openblas - - platformdirs=3.11.0=pyhd8ed1ab_0 + - liblapacke=3.9.0=20_linux64_openblas - suitesparse=5.10.1=h9e50725_1 - - blas-devel=3.9.0=18_linux64_openblas + - virtualenv=20.24.7=pyhd8ed1ab_0 + - blas-devel=3.9.0=20_linux64_openblas - giac=1.9.0.21=h673759e_1 - - igraph=0.9.10=ha1f048c_1 - linbox=1.6.3=h9d78c56_7 - - virtualenv=20.24.4=pyhd8ed1ab_0 - - blas=2.118=openblas - - rw=0.9=h7f98852_0 - tox=4.11.3=pyhd8ed1ab_0 + - blas=2.120=openblas diff --git a/environment-3.10-macos-arm64.yml b/environment-3.10-macos-arm64.yml new file mode 100644 index 00000000000..bd9c4f8342d --- /dev/null +++ b/environment-3.10-macos-arm64.yml @@ -0,0 +1,185 @@ +# Generated by conda-lock. +# platform: osx-arm64 +# input_hash: a6f9e84b6c69a03aa7cdec77208a1ef2c833c950d53daed83473a91fb2c0b0c2 + +channels: + - conda-forge +dependencies: + - bzip2=1.0.8=h93a5062_5 + - c-ares=1.22.1=h93a5062_0 + - ca-certificates=2023.11.17=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 + - giflib=5.2.1=h1a8c8d9_3 + - icu=72.1=he12128b_0 + - jpeg=9e=h1a8c8d9_3 + - libatomic_ops=7.6.14=h1a8c8d9_0 + - libboost-headers=1.82.0=hce30654_2 + - libcxx=16.0.6=h4653b0c_0 + - libdeflate=1.17=h1a8c8d9_0 + - libev=4.33=h642e427_1 + - libexpat=2.5.0=hb7217d7_1 + - libffi=3.4.2=h3422bc3_5 + - libgfortran-devel_osx-arm64=12.3.0=hc62be1c_1 + - libiconv=1.17=he4db4b2_0 + - 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 + - libzlib=1.2.13=h53f4e23_5 + - llvm-openmp=17.0.5=hcd81f8e_0 + - m4=1.4.18=h642e427_1001 + - mathjax=3.2.2=hce30654_0 + - metis=5.1.0=h13dd4ca_1007 + - nauty=2.7.2=h3422bc3_0 + - palp=2.20=h27ca646_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 + - planarity=3.0.0.5=h27ca646_1002 + - python_abi=3.10=4_cp310 + - rhash=1.4.4=hb547adb_0 + - tbb=2021.10.0=h1995070_2 + - tzdata=2023c=h71feb2d_0 + - xz=5.2.6=h57fd34a_0 + - 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 + - isl=0.25=h9a09cb3_0 + - lerc=4.0.0=h9a09cb3_0 + - libbraiding=1.1=h9f76cd9_0 + - libgfortran5=13.2.0=hf226fd6_1 + - libpng=1.6.39=h76d750c_0 + - libsqlite=3.44.2=h091b4b1_0 + - libxml2=2.10.4=h2aff0a6_0 + - lrcalc=2.1=hb7217d7_5 + - ncurses=6.4=h463b476_2 + - ninja=1.11.1=hffc8910_0 + - openssl=3.2.0=h0d3ecfb_0 + - pari-seadata=0.0.20090618=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 + - 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 + - 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 + - libboost=1.82.0=h3f31f7c_2 + - libedit=3.1.20191231=hc8eb9b7_2 + - libgfortran=5.0.0=13_2_0_hd922786_1 + - libglib=2.78.1=hb438215_1 + - libhomfly=1.02r6=h27ca646_0 + - libllvm15=15.0.7=h62b9111_1 + - libnghttp2=1.58.0=ha4dd798_0 + - libssh2=1.11.0=h7a5bd25_0 + - 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 + - texinfo=7.0=pl5321h9ea1dce_0 + - ecl=21.2.1=h8492d4d_2 + - fontconfig=2.14.2=h82840c6_0 + - gfan=0.6.2=hec08f5c_1003 + - krb5=1.21.2=h92f50d5_0 + - ld64_osx-arm64=609=hc4dc95b_15 + - libboost-devel=1.82.0=hf450f58_2 + - libbrial=1.2.12=ha7f5006_1 + - libclang-cpp15=15.0.7=default_h5dc8d65_3 + - libflint=2.9.0=h173eafc_ntl_100 + - libopenblas=0.3.25=openmp_h6c19121_0 + - libwebp=1.2.4=h999c80f_1 + - llvm-tools=15.0.7=h62b9111_1 + - m4rie=20150908=h17b34a0_1001 + - mpc=1.3.1=h91ba8db_0 + - mpfi=1.5.4=hbde5f5b_1001 + - 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 + - qd=2.3.22=hbec66e7_1004 + - sqlite=3.44.2=hf2abe2d_0 + - appdirs=1.4.4=pyh9f0ad1d_0 + - arb=2.23.0=he5401aa_0 + - boost-cpp=1.82.0=h4ae65de_2 + - brial=1.2.12=pyh694c41f_1 + - cachetools=5.3.2=pyhd8ed1ab_0 + - cctools_osx-arm64=973.0.1=h2a25c60_15 + - chardet=5.2.0=py310hbe9552e_1 + - clang-15=15.0.7=default_h5dc8d65_3 + - colorama=0.4.6=pyhd8ed1ab_0 + - distlib=0.3.7=pyhd8ed1ab_0 + - eclib=20230424=haeb5157_0 + - filelock=3.13.1=pyhd8ed1ab_0 + - fplll=5.4.5=hb7d509d_0 + - gfortran_impl_osx-arm64=12.3.0=hbbb9e1e_1 + - lcalc=2.0.5=hc94e8e6_1 + - ld64=609=h89fa09d_15 + - libblas=3.9.0=20_osxarm64_openblas + - libcurl=8.4.0=h2d989ff_0 + - libgd=2.3.3=h8db8f0b_5 + - maxima=5.45.0=h6032a66_2 + - openblas=0.3.25=openmp_h55c453e_0 + - packaging=23.2=pyhd8ed1ab_0 + - pluggy=1.3.0=pyhd8ed1ab_0 + - singular=4.2.1.p3=h3b80c97_2 + - sympow=2.023.6=hb0babe8_3 + - tomli=2.0.1=pyhd8ed1ab_0 + - typing_extensions=4.8.0=pyha770c72_0 + - zipp=3.17.0=pyhd8ed1ab_0 + - cctools=973.0.1=hd1ac623_15 + - clang=15.0.7=hce30654_3 + - cmake=3.27.8=h04763b9_0 + - curl=8.4.0=h2d989ff_0 + - importlib-metadata=6.8.0=pyha770c72_0 + - libcblas=3.9.0=20_osxarm64_openblas + - liblapack=3.9.0=20_osxarm64_openblas + - platformdirs=4.0.0=pyhd8ed1ab_0 + - pyproject-api=1.6.1=pyhd8ed1ab_0 + - typing-extensions=4.8.0=hd8ed1ab_0 + - arpack=3.7.0=h58ebc17_2 + - clangxx=15.0.7=default_h610c423_3 + - fflas-ffpack=2.4.3=h11f2abc_2 + - gsl=2.7=h6e638da_0 + - iml=1.0.5=hd52f0d1_1003 + - importlib_metadata=6.8.0=hd8ed1ab_0 + - liblapacke=3.9.0=20_osxarm64_openblas + - suitesparse=5.10.1=h7cd81ec_1 + - virtualenv=20.24.7=pyhd8ed1ab_0 + - blas-devel=3.9.0=20_osxarm64_openblas + - compiler-rt_osx-arm64=15.0.7=hf8d1dfb_1 + - giac=1.9.0.21=h1c96721_1 + - igraph=0.9.10=hcec9b84_1 + - linbox=1.6.3=h549c411_7 + - tox=4.11.3=pyhd8ed1ab_0 + - blas=2.120=openblas + - compiler-rt=15.0.7=hf8d1dfb_1 + - rw=0.9=h3422bc3_0 + - clang_impl_osx-arm64=15.0.7=h77e971b_6 + - clang_osx-arm64=15.0.7=h54d7cd3_6 + - gfortran_osx-arm64=12.3.0=h57527a5_1 + - gfortran=12.3.0=h1ca8e4b_1 + - fortran-compiler=1.6.0=h5a50232_0 diff --git a/environment-3.10-macos.yml b/environment-3.10-macos.yml index 204f8440e2d..3576b36cf28 100644 --- a/environment-3.10-macos.yml +++ b/environment-3.10-macos.yml @@ -5,37 +5,36 @@ channels: - conda-forge dependencies: - - bzip2=1.0.8=h0d85af4_4 - - c-ares=1.19.1=h0dc2134_0 - - ca-certificates=2023.7.22=h8857fd0_0 + - bzip2=1.0.8=h10d778d_5 + - c-ares=1.22.1=h10d778d_0 + - ca-certificates=2023.11.17=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=hab24e00_0 + - font-ttf-ubuntu=0.83=h77eed37_1 - giflib=5.2.1=hb7f2c08_3 - - icu=72.1=h7336db1_0 - - jpeg=9e=hb7f2c08_3 + - icu=73.2=hf5e326d_0 - libatomic_ops=7.6.14=hb7f2c08_0 - - libboost-headers=1.82.0=h694c41f_2 + - libboost-headers=1.83.0=h694c41f_0 - libcxx=16.0.6=hd57cbcb_0 - - libdeflate=1.17=hac1461d_0 + - libdeflate=1.19=ha4e1b8e_0 - libev=4.33=haf1e3a3_1 - libexpat=2.5.0=hf0c8a7f_1 - libffi=3.4.2=h0d85af4_5 - libgfortran-devel_osx-64=12.3.0=h0b6f5ec_1 - libiconv=1.17=hac89ed1_0 + - 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.2.4=h775f41a_0 + - libwebp-base=1.3.2=h0dc2134_0 - libzlib=1.2.13=h8a1eda9_5 - - llvm-openmp=17.0.2=hff08bdf_0 + - llvm-openmp=17.0.5=hb6ac08f_0 - m4=1.4.18=haf1e3a3_1001 - mathjax=3.2.2=h694c41f_0 - metis=5.1.0=he965462_1007 - nauty=2.7.2=h0d85af4_0 - - ncurses=6.4=hf0c8a7f_0 - palp=2.20=hbcb3906_0 - pari-elldata=0.0.20161017=0 - pari-galdata=0.0.20180411=0 @@ -46,6 +45,8 @@ dependencies: - planarity=3.0.0.5=hbcb3906_1002 - python_abi=3.10=4_cp310 - rhash=1.4.4=h0dc2134_0 + - rw=0.7=1 + - tbb=2021.10.0=h1c7c39f_2 - tzdata=2023c=h71feb2d_0 - xz=5.2.6=h775f41a_0 - autoconf=2.71=pl5321hed12c24_1 @@ -55,128 +56,126 @@ dependencies: - gengetopt=2.23=he49afe7_0 - gettext=0.21.1=h8a4c099_0 - gf2x=1.3.0=hb2a7efb_2 - - gmp=6.2.1=h2e338ed_0 + - gmp=6.3.0=h93d8f39_0 - isl=0.25=hb486fe8_0 - lerc=4.0.0=hb486fe8_0 - libbraiding=1.1=h2e338ed_0 - - libedit=3.1.20191231=h0678c8f_2 - libgfortran5=13.2.0=h2873a65_1 - libpng=1.6.39=ha978bb4_0 - - libsqlite=3.43.0=h58db7d2_0 - - libxml2=2.10.4=h554bb67_0 + - libsqlite=3.44.2=h92b6c6a_0 + - libxml2=2.11.6=hc0ae0f7_0 - lrcalc=2.1=hf0c8a7f_5 + - ncurses=6.4=h93d8f39_2 - ninja=1.11.1=hb8565cd_0 - - openssl=3.1.3=h8a1eda9_0 + - openssl=3.2.0=hd75f5a5_0 - pari-seadata=0.0.20090618=0 - pkg-config=0.29.2=ha3d46e9_1008 - primesieve=11.0=hf0c8a7f_0 - qhull=2020.2=h940c156_2 - - readline=8.2=h9e318b2_1 - symmetrica=3.0.1=hf0c8a7f_0 - tapi=1100.0.11=h9ce4665_0 - - tbb=2021.10.0=h1c7c39f_1 - - texinfo=7.0=pl5321hc47821c_0 - - tk=8.6.13=hef22860_0 - - zeromq=4.3.4=he49afe7_1 + - 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 - cddlib=1!0.94m=h0f52abe_0 - - ecl=21.2.1=hd029580_2 - 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 - - krb5=1.21.2=hb884880_0 - - libboost=1.82.0=h4d4a22d_2 + - libboost=1.83.0=hf44e908_0 + - libedit=3.1.20191231=h0678c8f_2 - libgfortran=5.0.0=13_2_0_h97931a8_1 - libhomfly=1.02r6=hc929b4f_0 - - libllvm16=16.0.3=hf646ca0_1 - - libnghttp2=1.52.0=he2ab024_0 + - libllvm16=16.0.6=he4b1e75_2 + - libnghttp2=1.58.0=h64cf6d3_0 - libssh2=1.11.0=hd019ec5_0 - - libtiff=4.5.0=hee9004a_2 + - libtiff=4.6.0=h684deea_2 - m4ri=20140914=h3f75d11_1005 - - mpfr=4.2.0=h4f9bd69_0 + - mpfr=4.2.1=h0c69b56_0 - ntl=11.4.3=h0ab3c2f_1 - - pari=2.15.4=h93f793c_2_pthread - primecount=7.6=ha894c9a_0 - - python=3.10.12=had23ca6_0_cpython + - readline=8.2=h9e318b2_1 - sigtool=0.1.3=h88f4db0_0 - - sqlite=3.43.0=h2b0dec6_0 - - tachyon=0.99b6=h2e86ede_1001 - - appdirs=1.4.4=pyh9f0ad1d_0 - - cachetools=5.3.1=pyhd8ed1ab_0 - - chardet=5.2.0=py310h2ec42d9_1 - - colorama=0.4.6=pyhd8ed1ab_0 - - distlib=0.3.7=pyhd8ed1ab_0 - - filelock=3.12.4=pyhd8ed1ab_0 + - tachyon=0.99b6=0 + - texinfo=7.0=pl5321hc47821c_0 + - ecl=21.2.1=hd029580_2 - fontconfig=2.14.2=h5bb23bf_0 - gfan=0.6.2=hd793b56_1003 - - lcalc=2.0.5=h3a941db_1 - - ld64_osx-64=609=hbfe4790_13 - - libboost-devel=1.82.0=h1c7c39f_2 + - krb5=1.21.2=hb884880_0 + - ld64_osx-64=609=ha20a434_15 + - libboost-devel=1.83.0=h7728843_0 - libbrial=1.2.12=h8d08345_1 - - libclang-cpp16=16.0.3=default_h762fdd7_2 - - libcurl=8.3.0=h5f667d7_0 + - libclang-cpp16=16.0.6=default_h762fdd7_2 - libflint=2.9.0=hfd2f71f_ntl_100 - - libopenblas=0.3.24=openmp_h48a4ad5_0 - - libwebp=1.2.4=h70a068d_1 - - llvm-tools=16.0.3=hf646ca0_1 + - libopenblas=0.3.25=openmp_hfef2a42_0 + - libwebp=1.3.2=h44782d1_1 + - llvm-tools=16.0.6=he4b1e75_2 - m4rie=20150908=h3f75d11_1001 - - maxima=5.45.0=hd029580_3 - mpc=1.3.1=h81bd1dd_0 - mpfi=1.5.4=h52b28e3_1001 - - packaging=23.2=pyhd8ed1ab_0 - - pluggy=1.3.0=pyhd8ed1ab_0 + - pari=2.15.4=h93f793c_2_pthread - ppl=1.2=ha60d53e_1006 + - python=3.10.13=h00d2728_0_cpython - qd=2.3.22=h2beb688_1004 - - sympow=2.023.6=h115ba6a_3 - - tomli=2.0.1=pyhd8ed1ab_0 - - typing_extensions=4.8.0=pyha770c72_0 - - zipp=3.17.0=pyhd8ed1ab_0 + - sqlite=3.44.2=h7461747_0 + - appdirs=1.4.4=pyh9f0ad1d_0 - arb=2.23.0=h905a977_0 - - boost-cpp=1.82.0=h94d02bd_2 + - boost-cpp=1.83.0=h07eb623_0 - brial=1.2.12=pyh694c41f_1 - - cctools_osx-64=973.0.1=h5676edf_13 - - clang-16=16.0.3=default_h762fdd7_2 - - cmake=3.27.6=hf40c264_0 - - curl=8.3.0=h5f667d7_0 + - cachetools=5.3.2=pyhd8ed1ab_0 + - cctools_osx-64=973.0.1=ha1c5b94_15 + - chardet=5.2.0=py310h2ec42d9_1 + - clang-16=16.0.6=default_h762fdd7_2 + - colorama=0.4.6=pyhd8ed1ab_0 + - distlib=0.3.7=pyhd8ed1ab_0 - eclib=20230424=hd00e801_0 - - fplll=5.4.4=hdfdc905_0 + - filelock=3.13.1=pyhd8ed1ab_0 + - fplll=5.4.5=hb7981ad_0 - gfortran_impl_osx-64=12.3.0=h54fd467_1 + - lcalc=2.0.5=h3a941db_1 + - ld64=609=ha02d983_15 + - libblas=3.9.0=20_osx64_openblas + - libcurl=8.4.0=h726d00d_0 + - libgd=2.3.3=h0dceb68_9 + - maxima=5.45.0=hd029580_3 + - openblas=0.3.25=openmp_h6794695_0 + - packaging=23.2=pyhd8ed1ab_0 + - pluggy=1.3.0=pyhd8ed1ab_0 + - singular=4.2.1.p3=hac851df_2 + - sympow=2.023.6=h115ba6a_3 + - tomli=2.0.1=pyhd8ed1ab_0 + - typing_extensions=4.8.0=pyha770c72_0 + - zipp=3.17.0=pyhd8ed1ab_0 + - cctools=973.0.1=h40f6528_15 + - clang=16.0.6=hc177806_2 + - cmake=3.27.8=hc7ee4c4_0 + - curl=8.4.0=h726d00d_0 - importlib-metadata=6.8.0=pyha770c72_0 - - ld64=609=ha02d983_13 - - libblas=3.9.0=18_osx64_openblas - - libgd=2.3.3=h8823a56_5 - - openblas=0.3.24=openmp_hd7704e8_0 + - libcblas=3.9.0=20_osx64_openblas + - liblapack=3.9.0=20_osx64_openblas + - platformdirs=4.0.0=pyhd8ed1ab_0 - pyproject-api=1.6.1=pyhd8ed1ab_0 - - singular=4.2.1.p3=hac851df_2 - typing-extensions=4.8.0=hd8ed1ab_0 - - cctools=973.0.1=h40f6528_13 - - clang=16.0.3=hc177806_2 - - importlib_metadata=6.8.0=hd8ed1ab_0 - - libcblas=3.9.0=18_osx64_openblas - - liblapack=3.9.0=18_osx64_openblas - - platformdirs=3.11.0=pyhd8ed1ab_0 - - arpack=3.7.0=hefb7bc6_2 - - clangxx=16.0.3=default_h762fdd7_2 + - clangxx=16.0.6=default_h762fdd7_2 - fflas-ffpack=2.4.3=h026fd7e_2 - gsl=2.7=h93259b0_0 - iml=1.0.5=h64b42ca_1003 - - liblapacke=3.9.0=18_osx64_openblas + - importlib_metadata=6.8.0=hd8ed1ab_0 + - liblapacke=3.9.0=20_osx64_openblas - suitesparse=5.10.1=h7aff33d_1 - - virtualenv=20.24.4=pyhd8ed1ab_0 - - blas-devel=3.9.0=18_osx64_openblas - - compiler-rt_osx-64=16.0.3=he1888fc_1 + - virtualenv=20.24.7=pyhd8ed1ab_0 + - blas-devel=3.9.0=20_osx64_openblas + - compiler-rt_osx-64=16.0.6=he1888fc_1 - giac=1.9.0.21=h92f3f65_1 - - igraph=0.9.10=h6560ca6_1 - linbox=1.6.3=hdde8d14_7 - tox=4.11.3=pyhd8ed1ab_0 - - blas=2.118=openblas - - compiler-rt=16.0.3=he1888fc_1 - - rw=0.9=h0d85af4_0 - - clang_osx-64=16.0.3=h51755a5_2 + - blas=2.120=openblas + - compiler-rt=16.0.6=he1888fc_1 + - clang_impl_osx-64=16.0.6=h8787910_6 + - clang_osx-64=16.0.6=hb91bd55_6 - gfortran_osx-64=12.3.0=h18f7dce_1 - gfortran=12.3.0=h2c809b3_1 - fortran-compiler=1.6.0=h932d759_0 diff --git a/environment-3.11-linux-aarch64.yml b/environment-3.11-linux-aarch64.yml new file mode 100644 index 00000000000..d1e7e9dce22 --- /dev/null +++ b/environment-3.11-linux-aarch64.yml @@ -0,0 +1,184 @@ +# Generated by conda-lock. +# platform: linux-aarch64 +# input_hash: 229550b8790010a81dfce381ec57a11a25291fcecd1bc4ffb99341c1c0e739e6 + +channels: + - conda-forge +dependencies: + - _sysroot_linux-aarch64_curr_repodata_hack=4=h57d6b7b_13 + - ca-certificates=2023.11.17=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 + - libboost-headers=1.82.0=h8af1aa0_2 + - libgcc-devel_linux-aarch64=12.3.0=h8b5ab12_103 + - libgomp=13.2.0=hf8544c7_3 + - libstdcxx-ng=13.2.0=h9a76618_3 + - mathjax=3.2.2=h8af1aa0_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 + - python_abi=3.11=4_cp311 + - tzdata=2023c=h71feb2d_0 + - fonts-conda-forge=1=0 + - pari-seadata=0.0.20090618=0 + - sysroot_linux-aarch64=2.17=h5b4a56d_13 + - binutils_impl_linux-aarch64=2.40=h870a726_0 + - fonts-conda-ecosystem=1=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 + - bdw-gc=8.0.6=hd62202e_0 + - bzip2=1.0.8=h31becfc_5 + - c-ares=1.22.1=h31becfc_0 + - cliquer=1.22=hb9de7d4_0 + - gengetopt=2.23=h01db608_0 + - gf2x=1.3.0=h1b3b3a3_2 + - giflib=5.2.1=hb4cce97_3 + - gmp=6.3.0=h2f0025b_0 + - icu=72.1=hcf00150_0 + - jpeg=9e=h2a766a3_3 + - keyutils=1.6.1=h4e544f5_0 + - lerc=4.0.0=h4de3ea5_0 + - libatomic_ops=7.6.14=h4e544f5_0 + - libbraiding=1.1=h7fd3ca4_0 + - libdeflate=1.17=hb4cce97_0 + - libev=4.33=h516909a_1 + - libexpat=2.5.0=hd600fc2_1 + - libffi=3.4.2=h3557bc0_5 + - libgfortran5=13.2.0=h582850c_3 + - libiconv=1.17=h9cdd2b7_0 + - libnsl=2.0.1=h31becfc_0 + - libsanitizer=12.3.0=h8ebda82_3 + - 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 + - libzlib=1.2.13=h31becfc_5 + - lrcalc=2.1=h4de3ea5_5 + - m4=1.4.18=h516909a_1001 + - metis=5.1.0=h2f0025b_1007 + - nauty=2.7.2=hf897c2e_0 + - ncurses=6.4=h0425590_2 + - ninja=1.11.1=hdd96247_0 + - openssl=3.2.0=h31becfc_0 + - palp=2.20=hb9de7d4_0 + - patch=2.7.6=hf897c2e_1002 + - pkg-config=0.29.2=hb9de7d4_1008 + - planarity=3.0.0.5=hb9de7d4_1002 + - primesieve=11.1=h2f0025b_0 + - qhull=2020.2=hd62202e_2 + - rhash=1.4.4=h31becfc_0 + - symmetrica=3.0.1=hd600fc2_0 + - xz=5.2.6=h9cdd2b7_0 + - 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 + - givaro=4.1.1=h192cbe9_1 + - glpk=5.0=h66325d0_0 + - libedit=3.1.20191231=he28a2e2_2 + - libgfortran-ng=13.2.0=he9431aa_3 + - libhomfly=1.02r6=hb9de7d4_0 + - libnghttp2=1.58.0=hb0e430d_0 + - libpng=1.6.39=hf9034f9_0 + - libsqlite=3.44.2=h194ca79_0 + - libssh2=1.11.0=h492db2e_0 + - libxml2=2.10.4=h430b14f_0 + - mpfr=4.2.1=ha2d0fc4_0 + - ntl=11.4.3=h0d7519b_1 + - perl=5.32.1=4_h31becfc_perl5 + - primecount=7.9=hd600fc2_0 + - readline=8.2=h8fc344f_1 + - tk=8.6.13=h194ca79_0 + - zeromq=4.3.5=h2f0025b_0 + - zlib=1.2.13=h31becfc_5 + - zstd=1.5.5=h4c53e97_0 + - autoconf=2.71=pl5321h2148fe1_1 + - ecl=21.2.1=haa44c19_2 + - freetype=2.12.1=hf0a5ef3_2 + - 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 + - krb5=1.21.2=hc419048_0 + - libboost=1.82.0=hbfc56d7_2 + - libflint=2.9.0=hd3470fa_ntl_100 + - libhwloc=2.9.1=h21e8147_0 + - libopenblas=0.3.25=pthreads_h5a5ec62_0 + - libtiff=4.5.0=h4c1066a_2 + - llvm-openmp=17.0.5=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.6=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 + - appdirs=1.4.4=pyh9f0ad1d_0 + - arb=2.23.0=h37d5dab_0 + - automake=1.16.5=pl5321h8af1aa0_0 + - c-compiler=1.6.0=h31becfc_0 + - cachetools=5.3.2=pyhd8ed1ab_0 + - chardet=5.2.0=py311hfecb2dc_1 + - colorama=0.4.6=pyhd8ed1ab_0 + - distlib=0.3.7=pyhd8ed1ab_0 + - eclib=20230424=h0bc7b0f_0 + - filelock=3.13.1=pyhd8ed1ab_0 + - fontconfig=2.14.2=ha9a116f_0 + - fplll=5.4.5=hb3a790e_0 + - gfortran=12.3.0=h8d4031d_2 + - gfortran_linux-aarch64=12.3.0=h1993883_2 + - lcalc=2.0.5=h3264cc0_1 + - libblas=3.9.0=20_linuxaarch64_openblas + - libboost-devel=1.82.0=h37bb5a9_2 + - libbrial=1.2.12=h17533bf_1 + - libcurl=8.4.0=h4e8248e_0 + - libwebp=1.2.4=h7bdf6e5_1 + - m4rie=20150908=h75e8696_1001 + - maxima=5.45.0=haa44c19_3 + - openblas=0.3.25=pthreads_h339cbfa_0 + - packaging=23.2=pyhd8ed1ab_0 + - pluggy=1.3.0=pyhd8ed1ab_0 + - singular=4.2.1.p3=h3d4c4c6_2 + - sympow=2.023.6=h157afb5_3 + - tbb=2021.9.0=h4c384f3_0 + - tomli=2.0.1=pyhd8ed1ab_0 + - typing_extensions=4.8.0=pyha770c72_0 + - zipp=3.17.0=pyhd8ed1ab_0 + - boost-cpp=1.82.0=h62f3a30_2 + - brial=1.2.12=pyh694c41f_1 + - cmake=3.27.8=hef020d8_0 + - curl=8.4.0=h4e8248e_0 + - fortran-compiler=1.6.0=h7048d53_0 + - importlib-metadata=6.8.0=pyha770c72_0 + - libcblas=3.9.0=20_linuxaarch64_openblas + - libgd=2.3.3=h5fc1a20_5 + - liblapack=3.9.0=20_linuxaarch64_openblas + - platformdirs=4.0.0=pyhd8ed1ab_0 + - pyproject-api=1.6.1=pyhd8ed1ab_0 + - typing-extensions=4.8.0=hd8ed1ab_0 + - arpack=3.7.0=hf862f49_2 + - fflas-ffpack=2.4.3=hf104d39_2 + - gsl=2.7=h294027d_0 + - iml=1.0.5=h9076c59_1003 + - importlib_metadata=6.8.0=hd8ed1ab_0 + - liblapacke=3.9.0=20_linuxaarch64_openblas + - suitesparse=5.10.1=h1404dd6_1 + - virtualenv=20.24.7=pyhd8ed1ab_0 + - blas-devel=3.9.0=20_linuxaarch64_openblas + - giac=1.9.0.21=h04922a4_1 + - igraph=0.9.10=hefb87a8_1 + - linbox=1.6.3=h31716a8_7 + - tox=4.11.3=pyhd8ed1ab_0 + - blas=2.120=openblas + - rw=0.9=hf897c2e_0 diff --git a/environment-3.11-linux.yml b/environment-3.11-linux.yml index d156bd5469a..b7eb9b1c160 100644 --- a/environment-3.11-linux.yml +++ b/environment-3.11-linux.yml @@ -6,16 +6,16 @@ channels: - conda-forge dependencies: - _libgcc_mutex=0.1=conda_forge - - ca-certificates=2023.7.22=hbcca054_0 + - ca-certificates=2023.11.17=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=hab24e00_0 + - font-ttf-ubuntu=0.83=h77eed37_1 - kernel-headers_linux-64=2.6.32=he073ed8_16 - ld_impl_linux-64=2.40=h41732ed_0 - - libboost-headers=1.82.0=ha770c72_2 - - libgcc-devel_linux-64=12.3.0=h8bca6fd_2 - - libstdcxx-ng=13.2.0=h7e041cc_2 + - libboost-headers=1.83.0=ha770c72_0 + - libgcc-devel_linux-64=12.3.0=h8bca6fd_103 + - libstdcxx-ng=13.2.0=h7e041cc_3 - mathjax=3.2.2=ha770c72_0 - pari-elldata=0.0.20161017=0 - pari-galdata=0.0.20180411=0 @@ -24,7 +24,7 @@ dependencies: - python_abi=3.11=4_cp311 - tzdata=2023c=h71feb2d_0 - fonts-conda-forge=1=0 - - libgomp=13.2.0=h807b86a_2 + - libgomp=13.2.0=h807b86a_3 - pari-seadata=0.0.20090618=0 - sysroot_linux-64=2.12=he073ed8_16 - binutils_impl_linux-64=2.40=hf600244_0 @@ -32,42 +32,42 @@ dependencies: - 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_2 + - libgcc-ng=13.2.0=h807b86a_3 - bdw-gc=8.0.6=h4bd325d_0 - - bzip2=1.0.8=h7f98852_4 - - c-ares=1.19.1=hd590300_0 + - bzip2=1.0.8=hd590300_5 + - c-ares=1.22.1=hd590300_0 - cliquer=1.22=h36c2ea0_0 - gengetopt=2.23=h9c3ff4c_0 - gf2x=1.3.0=ha476b99_2 - giflib=5.2.1=h0b41bf4_3 - - gmp=6.2.1=h58526e2_0 - - icu=72.1=hcb278e6_0 + - gmp=6.3.0=h59595ed_0 + - icu=73.2=h59595ed_0 - keyutils=1.6.1=h166bdaf_0 - lerc=4.0.0=h27087fc_0 - libatomic_ops=7.6.14=h166bdaf_0 - libbraiding=1.1=h58526e2_0 - - libdeflate=1.18=h0b41bf4_0 + - libdeflate=1.19=hd590300_0 - libev=4.33=h516909a_1 - libexpat=2.5.0=hcb278e6_1 - libffi=3.4.2=h7f98852_5 - - libgfortran5=13.2.0=ha4646dd_2 + - libgfortran5=13.2.0=ha4646dd_3 - libiconv=1.17=h166bdaf_0 - - libjpeg-turbo=2.1.5.1=hd590300_1 - - libnsl=2.0.0=hd590300_1 - - libsanitizer=12.3.0=h0f45ef3_2 + - libjpeg-turbo=3.0.0=hd590300_1 + - libnsl=2.0.1=hd590300_0 + - libsanitizer=12.3.0=h0f45ef3_3 - 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.1=hd590300_0 + - libwebp-base=1.3.2=hd590300_0 - libzlib=1.2.13=hd590300_5 - lrcalc=2.1=h27087fc_5 - m4=1.4.18=h516909a_1001 - metis=5.1.0=h59595ed_1007 - nauty=2.7.2=h7f98852_0 - - ncurses=6.4=hcb278e6_0 + - ncurses=6.4=h59595ed_2 - ninja=1.11.1=h924138e_0 - - openssl=3.1.3=hd590300_0 + - openssl=3.2.0=hd590300_0 - palp=2.20=h36c2ea0_0 - patch=2.7.6=h7f98852_1002 - pkg-config=0.29.2=h36c2ea0_1008 @@ -76,29 +76,28 @@ dependencies: - qhull=2020.2=h4bd325d_2 - rhash=1.4.4=hd590300_0 - symmetrica=3.0.1=hcb278e6_0 - - tbb=2021.7.0=h924138e_0 - xz=5.2.6=h166bdaf_0 - 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_2 + - gcc_impl_linux-64=12.3.0=he2b93b0_3 - givaro=4.1.1=h192cbe9_1 - glpk=5.0=h445213a_0 - libedit=3.1.20191231=he28a2e2_2 - - libgfortran-ng=13.2.0=h69a702a_2 + - libgfortran-ng=13.2.0=h69a702a_3 - libhomfly=1.02r6=h36c2ea0_0 - - libnghttp2=1.52.0=h61bc06f_0 + - libnghttp2=1.58.0=h47da74e_0 - libpng=1.6.39=h753d276_0 - - libsqlite=3.43.0=h2797004_0 + - libsqlite=3.44.2=h2797004_0 - libssh2=1.11.0=h0841786_0 - - libxml2=2.10.4=hfdac1af_0 - - mpfr=4.2.0=hb012696_0 + - libxml2=2.11.6=h232c23b_0 + - mpfr=4.2.1=h9458935_0 - ntl=11.4.3=hef3c4d3_1 - perl=5.32.1=4_hd590300_perl5 - primecount=7.9=hcb278e6_0 - readline=8.2=h8228510_1 - - tk=8.6.13=h2797004_0 - - zeromq=4.3.4=h9c3ff4c_1 + - tk=8.6.13=noxft_h4845f30_101 + - zeromq=4.3.5=h59595ed_0 - zlib=1.2.13=hd590300_5 - zstd=1.5.5=hfc55251_0 - autoconf=2.71=pl5321h2b4cb7a_1 @@ -107,13 +106,15 @@ dependencies: - 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_2 + - gfortran_impl_linux-64=12.3.0=hfcedea8_3 + - igraph=0.7.1=0 - krb5=1.21.2=h659d440_0 - - libboost=1.82.0=h1bacd13_2 + - libboost=1.83.0=h6fcfa73_0 - libflint=2.9.0=h2f819a4_ntl_100 - - libopenblas=0.3.24=pthreads_h413a1c8_0 - - libtiff=4.5.1=h8b53f26_1 - - llvm-openmp=17.0.2=h4dfa4b3_0 + - libhwloc=2.9.3=default_h554bfaf_1009 + - libopenblas=0.3.25=pthreads_h413a1c8_0 + - libtiff=4.6.0=ha9c0a0a_2 + - llvm-openmp=17.0.5=h4dfa4b3_0 - m4ri=20140914=h7ca028e_1005 - mpc=1.3.1=hfe3b2da_0 - mpfi=1.5.4=h9f54685_1001 @@ -121,63 +122,62 @@ dependencies: - ppl=1.2=h6ec01c2_1006 - python=3.11.6=hab00c5b_0_cpython - qd=2.3.22=h2cc385e_1004 - - sqlite=3.43.0=h2c6b66d_0 + - sqlite=3.44.2=h2c6b66d_0 - tachyon=0.99b6=0 - texinfo=7.0=pl5321h0f457ee_0 - appdirs=1.4.4=pyh9f0ad1d_0 - arb=2.23.0=h44d021b_0 - automake=1.16.5=pl5321ha770c72_0 - c-compiler=1.6.0=hd590300_0 - - cachetools=5.3.1=pyhd8ed1ab_0 + - cachetools=5.3.2=pyhd8ed1ab_0 - chardet=5.2.0=py311h38be061_1 - colorama=0.4.6=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - eclib=20230424=hdef1efb_0 - - filelock=3.12.4=pyhd8ed1ab_0 + - filelock=3.13.1=pyhd8ed1ab_0 - fontconfig=2.14.2=h14ed4e7_0 - - fplll=5.4.4=h8780c30_0 + - fplll=5.4.5=h384768b_0 - gfortran=12.3.0=h499e0f7_2 - gfortran_linux-64=12.3.0=h7fe76b4_2 - lcalc=2.0.5=h6a8a7c6_1 - - libblas=3.9.0=18_linux64_openblas - - libboost-devel=1.82.0=h00ab1b0_2 + - libblas=3.9.0=20_linux64_openblas + - libboost-devel=1.83.0=h00ab1b0_0 - libbrial=1.2.12=h3155cbd_1 - - libcurl=8.3.0=hca28451_0 - - libwebp=1.3.1=hbf2b3c1_0 + - libcurl=8.4.0=hca28451_0 + - libwebp=1.3.2=h658648e_1 - m4rie=20150908=h7ca028e_1001 - maxima=5.45.0=h9d73b02_3 - - openblas=0.3.24=pthreads_h7a3da1a_0 + - openblas=0.3.25=pthreads_h7a3da1a_0 - packaging=23.2=pyhd8ed1ab_0 - pluggy=1.3.0=pyhd8ed1ab_0 + - rw=0.8=h516909a_1001 - singular=4.2.1.p3=h1ea75ed_2 - sympow=2.023.6=hc6ab17c_3 + - tbb=2021.10.0=h00ab1b0_2 - tomli=2.0.1=pyhd8ed1ab_0 - typing_extensions=4.8.0=pyha770c72_0 - zipp=3.17.0=pyhd8ed1ab_0 - - boost-cpp=1.82.0=h789c474_2 + - boost-cpp=1.83.0=h44aadfe_0 - brial=1.2.12=pyh694c41f_1 - - cmake=3.27.6=hcfe8598_0 - - curl=8.3.0=hca28451_0 + - cmake=3.27.8=hcfe8598_0 + - curl=8.4.0=hca28451_0 - fortran-compiler=1.6.0=heb67821_0 - importlib-metadata=6.8.0=pyha770c72_0 - - libcblas=3.9.0=18_linux64_openblas - - libgd=2.3.3=hfa28ad5_6 - - liblapack=3.9.0=18_linux64_openblas + - libcblas=3.9.0=20_linux64_openblas + - libgd=2.3.3=h119a65a_9 + - liblapack=3.9.0=20_linux64_openblas + - platformdirs=4.0.0=pyhd8ed1ab_0 - pyproject-api=1.6.1=pyhd8ed1ab_0 - typing-extensions=4.8.0=hd8ed1ab_0 - - arpack=3.7.0=hdefa2d7_2 - fflas-ffpack=2.4.3=h912ac81_2 - gsl=2.7=he838d99_0 - iml=1.0.5=hd75c201_1003 - importlib_metadata=6.8.0=hd8ed1ab_0 - - liblapacke=3.9.0=18_linux64_openblas - - platformdirs=3.11.0=pyhd8ed1ab_0 + - liblapacke=3.9.0=20_linux64_openblas - suitesparse=5.10.1=h9e50725_1 - - blas-devel=3.9.0=18_linux64_openblas + - virtualenv=20.24.7=pyhd8ed1ab_0 + - blas-devel=3.9.0=20_linux64_openblas - giac=1.9.0.21=h673759e_1 - - igraph=0.9.10=ha1f048c_1 - linbox=1.6.3=h9d78c56_7 - - virtualenv=20.24.4=pyhd8ed1ab_0 - - blas=2.118=openblas - - rw=0.9=h7f98852_0 - tox=4.11.3=pyhd8ed1ab_0 + - blas=2.120=openblas diff --git a/environment-3.11-macos-arm64.yml b/environment-3.11-macos-arm64.yml new file mode 100644 index 00000000000..c0bc623db53 --- /dev/null +++ b/environment-3.11-macos-arm64.yml @@ -0,0 +1,185 @@ +# Generated by conda-lock. +# platform: osx-arm64 +# input_hash: 78100abf3f5c6da42435a898d4060f1359ee86442dbbdcd6b2d357e84f82080f + +channels: + - conda-forge +dependencies: + - bzip2=1.0.8=h93a5062_5 + - c-ares=1.22.1=h93a5062_0 + - ca-certificates=2023.11.17=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 + - giflib=5.2.1=h1a8c8d9_3 + - icu=72.1=he12128b_0 + - jpeg=9e=h1a8c8d9_3 + - libatomic_ops=7.6.14=h1a8c8d9_0 + - libboost-headers=1.82.0=hce30654_2 + - libcxx=16.0.6=h4653b0c_0 + - libdeflate=1.17=h1a8c8d9_0 + - libev=4.33=h642e427_1 + - libexpat=2.5.0=hb7217d7_1 + - libffi=3.4.2=h3422bc3_5 + - libgfortran-devel_osx-arm64=12.3.0=hc62be1c_1 + - libiconv=1.17=he4db4b2_0 + - 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 + - libzlib=1.2.13=h53f4e23_5 + - llvm-openmp=17.0.5=hcd81f8e_0 + - m4=1.4.18=h642e427_1001 + - mathjax=3.2.2=hce30654_0 + - metis=5.1.0=h13dd4ca_1007 + - nauty=2.7.2=h3422bc3_0 + - palp=2.20=h27ca646_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 + - planarity=3.0.0.5=h27ca646_1002 + - python_abi=3.11=4_cp311 + - rhash=1.4.4=hb547adb_0 + - tbb=2021.10.0=h1995070_2 + - tzdata=2023c=h71feb2d_0 + - xz=5.2.6=h57fd34a_0 + - 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 + - isl=0.25=h9a09cb3_0 + - lerc=4.0.0=h9a09cb3_0 + - libbraiding=1.1=h9f76cd9_0 + - libgfortran5=13.2.0=hf226fd6_1 + - libpng=1.6.39=h76d750c_0 + - libsqlite=3.44.2=h091b4b1_0 + - libxml2=2.10.4=h2aff0a6_0 + - lrcalc=2.1=hb7217d7_5 + - ncurses=6.4=h463b476_2 + - ninja=1.11.1=hffc8910_0 + - openssl=3.2.0=h0d3ecfb_0 + - pari-seadata=0.0.20090618=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 + - 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 + - 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 + - libboost=1.82.0=h3f31f7c_2 + - libedit=3.1.20191231=hc8eb9b7_2 + - libgfortran=5.0.0=13_2_0_hd922786_1 + - libglib=2.78.1=hb438215_1 + - libhomfly=1.02r6=h27ca646_0 + - libllvm15=15.0.7=h62b9111_1 + - libnghttp2=1.58.0=ha4dd798_0 + - libssh2=1.11.0=h7a5bd25_0 + - 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 + - texinfo=7.0=pl5321h9ea1dce_0 + - ecl=21.2.1=h8492d4d_2 + - fontconfig=2.14.2=h82840c6_0 + - gfan=0.6.2=hec08f5c_1003 + - krb5=1.21.2=h92f50d5_0 + - ld64_osx-arm64=609=hc4dc95b_15 + - libboost-devel=1.82.0=hf450f58_2 + - libbrial=1.2.12=ha7f5006_1 + - libclang-cpp15=15.0.7=default_h5dc8d65_3 + - libflint=2.9.0=h173eafc_ntl_100 + - libopenblas=0.3.25=openmp_h6c19121_0 + - libwebp=1.2.4=h999c80f_1 + - llvm-tools=15.0.7=h62b9111_1 + - m4rie=20150908=h17b34a0_1001 + - mpc=1.3.1=h91ba8db_0 + - mpfi=1.5.4=hbde5f5b_1001 + - pari=2.15.4=haeeeed7_2_pthread + - pkg-config=0.29.2=hab62308_1008 + - ppl=1.2=h8b147cf_1006 + - python=3.11.6=h47c9636_0_cpython + - qd=2.3.22=hbec66e7_1004 + - sqlite=3.44.2=hf2abe2d_0 + - appdirs=1.4.4=pyh9f0ad1d_0 + - arb=2.23.0=he5401aa_0 + - boost-cpp=1.82.0=h4ae65de_2 + - brial=1.2.12=pyh694c41f_1 + - cachetools=5.3.2=pyhd8ed1ab_0 + - cctools_osx-arm64=973.0.1=h2a25c60_15 + - chardet=5.2.0=py311h267d04e_1 + - clang-15=15.0.7=default_h5dc8d65_3 + - colorama=0.4.6=pyhd8ed1ab_0 + - distlib=0.3.7=pyhd8ed1ab_0 + - eclib=20230424=haeb5157_0 + - filelock=3.13.1=pyhd8ed1ab_0 + - fplll=5.4.5=hb7d509d_0 + - gfortran_impl_osx-arm64=12.3.0=hbbb9e1e_1 + - lcalc=2.0.5=hc94e8e6_1 + - ld64=609=h89fa09d_15 + - libblas=3.9.0=20_osxarm64_openblas + - libcurl=8.4.0=h2d989ff_0 + - libgd=2.3.3=h8db8f0b_5 + - maxima=5.45.0=h6032a66_2 + - openblas=0.3.25=openmp_h55c453e_0 + - packaging=23.2=pyhd8ed1ab_0 + - pluggy=1.3.0=pyhd8ed1ab_0 + - singular=4.2.1.p3=h3b80c97_2 + - sympow=2.023.6=hb0babe8_3 + - tomli=2.0.1=pyhd8ed1ab_0 + - typing_extensions=4.8.0=pyha770c72_0 + - zipp=3.17.0=pyhd8ed1ab_0 + - cctools=973.0.1=hd1ac623_15 + - clang=15.0.7=hce30654_3 + - cmake=3.27.8=h04763b9_0 + - curl=8.4.0=h2d989ff_0 + - importlib-metadata=6.8.0=pyha770c72_0 + - libcblas=3.9.0=20_osxarm64_openblas + - liblapack=3.9.0=20_osxarm64_openblas + - platformdirs=4.0.0=pyhd8ed1ab_0 + - pyproject-api=1.6.1=pyhd8ed1ab_0 + - typing-extensions=4.8.0=hd8ed1ab_0 + - arpack=3.7.0=h58ebc17_2 + - clangxx=15.0.7=default_h610c423_3 + - fflas-ffpack=2.4.3=h11f2abc_2 + - gsl=2.7=h6e638da_0 + - iml=1.0.5=hd52f0d1_1003 + - importlib_metadata=6.8.0=hd8ed1ab_0 + - liblapacke=3.9.0=20_osxarm64_openblas + - suitesparse=5.10.1=h7cd81ec_1 + - virtualenv=20.24.7=pyhd8ed1ab_0 + - blas-devel=3.9.0=20_osxarm64_openblas + - compiler-rt_osx-arm64=15.0.7=hf8d1dfb_1 + - giac=1.9.0.21=h1c96721_1 + - igraph=0.9.10=hcec9b84_1 + - linbox=1.6.3=h549c411_7 + - tox=4.11.3=pyhd8ed1ab_0 + - blas=2.120=openblas + - compiler-rt=15.0.7=hf8d1dfb_1 + - rw=0.9=h3422bc3_0 + - clang_impl_osx-arm64=15.0.7=h77e971b_6 + - clang_osx-arm64=15.0.7=h54d7cd3_6 + - gfortran_osx-arm64=12.3.0=h57527a5_1 + - gfortran=12.3.0=h1ca8e4b_1 + - fortran-compiler=1.6.0=h5a50232_0 diff --git a/environment-3.11-macos.yml b/environment-3.11-macos.yml index ba7b7d9d292..de380722fac 100644 --- a/environment-3.11-macos.yml +++ b/environment-3.11-macos.yml @@ -5,37 +5,36 @@ channels: - conda-forge dependencies: - - bzip2=1.0.8=h0d85af4_4 - - c-ares=1.19.1=h0dc2134_0 - - ca-certificates=2023.7.22=h8857fd0_0 + - bzip2=1.0.8=h10d778d_5 + - c-ares=1.22.1=h10d778d_0 + - ca-certificates=2023.11.17=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=hab24e00_0 + - font-ttf-ubuntu=0.83=h77eed37_1 - giflib=5.2.1=hb7f2c08_3 - - icu=72.1=h7336db1_0 - - jpeg=9e=hb7f2c08_3 + - icu=73.2=hf5e326d_0 - libatomic_ops=7.6.14=hb7f2c08_0 - - libboost-headers=1.82.0=h694c41f_2 + - libboost-headers=1.83.0=h694c41f_0 - libcxx=16.0.6=hd57cbcb_0 - - libdeflate=1.17=hac1461d_0 + - libdeflate=1.19=ha4e1b8e_0 - libev=4.33=haf1e3a3_1 - libexpat=2.5.0=hf0c8a7f_1 - libffi=3.4.2=h0d85af4_5 - libgfortran-devel_osx-64=12.3.0=h0b6f5ec_1 - libiconv=1.17=hac89ed1_0 + - 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.2.4=h775f41a_0 + - libwebp-base=1.3.2=h0dc2134_0 - libzlib=1.2.13=h8a1eda9_5 - - llvm-openmp=17.0.2=hff08bdf_0 + - llvm-openmp=17.0.5=hb6ac08f_0 - m4=1.4.18=haf1e3a3_1001 - mathjax=3.2.2=h694c41f_0 - metis=5.1.0=he965462_1007 - nauty=2.7.2=h0d85af4_0 - - ncurses=6.4=hf0c8a7f_0 - palp=2.20=hbcb3906_0 - pari-elldata=0.0.20161017=0 - pari-galdata=0.0.20180411=0 @@ -46,6 +45,8 @@ dependencies: - planarity=3.0.0.5=hbcb3906_1002 - python_abi=3.11=4_cp311 - rhash=1.4.4=h0dc2134_0 + - rw=0.7=1 + - tbb=2021.10.0=h1c7c39f_2 - tzdata=2023c=h71feb2d_0 - xz=5.2.6=h775f41a_0 - autoconf=2.71=pl5321hed12c24_1 @@ -55,128 +56,126 @@ dependencies: - gengetopt=2.23=he49afe7_0 - gettext=0.21.1=h8a4c099_0 - gf2x=1.3.0=hb2a7efb_2 - - gmp=6.2.1=h2e338ed_0 + - gmp=6.3.0=h93d8f39_0 - isl=0.25=hb486fe8_0 - lerc=4.0.0=hb486fe8_0 - libbraiding=1.1=h2e338ed_0 - - libedit=3.1.20191231=h0678c8f_2 - libgfortran5=13.2.0=h2873a65_1 - libpng=1.6.39=ha978bb4_0 - - libsqlite=3.43.0=h58db7d2_0 - - libxml2=2.10.4=h554bb67_0 + - libsqlite=3.44.2=h92b6c6a_0 + - libxml2=2.11.6=hc0ae0f7_0 - lrcalc=2.1=hf0c8a7f_5 + - ncurses=6.4=h93d8f39_2 - ninja=1.11.1=hb8565cd_0 - - openssl=3.1.3=h8a1eda9_0 + - openssl=3.2.0=hd75f5a5_0 - pari-seadata=0.0.20090618=0 - pkg-config=0.29.2=ha3d46e9_1008 - primesieve=11.0=hf0c8a7f_0 - qhull=2020.2=h940c156_2 - - readline=8.2=h9e318b2_1 - symmetrica=3.0.1=hf0c8a7f_0 - tapi=1100.0.11=h9ce4665_0 - - tbb=2021.10.0=h1c7c39f_1 - - texinfo=7.0=pl5321hc47821c_0 - - tk=8.6.13=hef22860_0 - - zeromq=4.3.4=he49afe7_1 + - 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 - cddlib=1!0.94m=h0f52abe_0 - - ecl=21.2.1=hd029580_2 - 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 - - krb5=1.21.2=hb884880_0 - - libboost=1.82.0=h4d4a22d_2 + - libboost=1.83.0=hf44e908_0 + - libedit=3.1.20191231=h0678c8f_2 - libgfortran=5.0.0=13_2_0_h97931a8_1 - libhomfly=1.02r6=hc929b4f_0 - - libllvm16=16.0.3=hf646ca0_1 - - libnghttp2=1.52.0=he2ab024_0 + - libllvm16=16.0.6=he4b1e75_2 + - libnghttp2=1.58.0=h64cf6d3_0 - libssh2=1.11.0=hd019ec5_0 - - libtiff=4.5.0=hee9004a_2 + - libtiff=4.6.0=h684deea_2 - m4ri=20140914=h3f75d11_1005 - - mpfr=4.2.0=h4f9bd69_0 + - mpfr=4.2.1=h0c69b56_0 - ntl=11.4.3=h0ab3c2f_1 - - pari=2.15.4=h93f793c_2_pthread - primecount=7.6=ha894c9a_0 - - python=3.11.6=h30d4d87_0_cpython + - readline=8.2=h9e318b2_1 - sigtool=0.1.3=h88f4db0_0 - - sqlite=3.43.0=h2b0dec6_0 - - tachyon=0.99b6=h2e86ede_1001 - - appdirs=1.4.4=pyh9f0ad1d_0 - - cachetools=5.3.1=pyhd8ed1ab_0 - - chardet=5.2.0=py311h6eed73b_1 - - colorama=0.4.6=pyhd8ed1ab_0 - - distlib=0.3.7=pyhd8ed1ab_0 - - filelock=3.12.4=pyhd8ed1ab_0 + - tachyon=0.99b6=0 + - texinfo=7.0=pl5321hc47821c_0 + - ecl=21.2.1=hd029580_2 - fontconfig=2.14.2=h5bb23bf_0 - gfan=0.6.2=hd793b56_1003 - - lcalc=2.0.5=h3a941db_1 - - ld64_osx-64=609=hbfe4790_13 - - libboost-devel=1.82.0=h1c7c39f_2 + - krb5=1.21.2=hb884880_0 + - ld64_osx-64=609=ha20a434_15 + - libboost-devel=1.83.0=h7728843_0 - libbrial=1.2.12=h8d08345_1 - - libclang-cpp16=16.0.3=default_h762fdd7_2 - - libcurl=8.3.0=h5f667d7_0 + - libclang-cpp16=16.0.6=default_h762fdd7_2 - libflint=2.9.0=hfd2f71f_ntl_100 - - libopenblas=0.3.24=openmp_h48a4ad5_0 - - libwebp=1.2.4=h70a068d_1 - - llvm-tools=16.0.3=hf646ca0_1 + - libopenblas=0.3.25=openmp_hfef2a42_0 + - libwebp=1.3.2=h44782d1_1 + - llvm-tools=16.0.6=he4b1e75_2 - m4rie=20150908=h3f75d11_1001 - - maxima=5.45.0=hd029580_3 - mpc=1.3.1=h81bd1dd_0 - mpfi=1.5.4=h52b28e3_1001 - - packaging=23.2=pyhd8ed1ab_0 - - pluggy=1.3.0=pyhd8ed1ab_0 + - pari=2.15.4=h93f793c_2_pthread - ppl=1.2=ha60d53e_1006 + - python=3.11.6=h30d4d87_0_cpython - qd=2.3.22=h2beb688_1004 - - sympow=2.023.6=h115ba6a_3 - - tomli=2.0.1=pyhd8ed1ab_0 - - typing_extensions=4.8.0=pyha770c72_0 - - zipp=3.17.0=pyhd8ed1ab_0 + - sqlite=3.44.2=h7461747_0 + - appdirs=1.4.4=pyh9f0ad1d_0 - arb=2.23.0=h905a977_0 - - boost-cpp=1.82.0=h94d02bd_2 + - boost-cpp=1.83.0=h07eb623_0 - brial=1.2.12=pyh694c41f_1 - - cctools_osx-64=973.0.1=h5676edf_13 - - clang-16=16.0.3=default_h762fdd7_2 - - cmake=3.27.6=hf40c264_0 - - curl=8.3.0=h5f667d7_0 + - cachetools=5.3.2=pyhd8ed1ab_0 + - cctools_osx-64=973.0.1=ha1c5b94_15 + - chardet=5.2.0=py311h6eed73b_1 + - clang-16=16.0.6=default_h762fdd7_2 + - colorama=0.4.6=pyhd8ed1ab_0 + - distlib=0.3.7=pyhd8ed1ab_0 - eclib=20230424=hd00e801_0 - - fplll=5.4.4=hdfdc905_0 + - filelock=3.13.1=pyhd8ed1ab_0 + - fplll=5.4.5=hb7981ad_0 - gfortran_impl_osx-64=12.3.0=h54fd467_1 + - lcalc=2.0.5=h3a941db_1 + - ld64=609=ha02d983_15 + - libblas=3.9.0=20_osx64_openblas + - libcurl=8.4.0=h726d00d_0 + - libgd=2.3.3=h0dceb68_9 + - maxima=5.45.0=hd029580_3 + - openblas=0.3.25=openmp_h6794695_0 + - packaging=23.2=pyhd8ed1ab_0 + - pluggy=1.3.0=pyhd8ed1ab_0 + - singular=4.2.1.p3=hac851df_2 + - sympow=2.023.6=h115ba6a_3 + - tomli=2.0.1=pyhd8ed1ab_0 + - typing_extensions=4.8.0=pyha770c72_0 + - zipp=3.17.0=pyhd8ed1ab_0 + - cctools=973.0.1=h40f6528_15 + - clang=16.0.6=hc177806_2 + - cmake=3.27.8=hc7ee4c4_0 + - curl=8.4.0=h726d00d_0 - importlib-metadata=6.8.0=pyha770c72_0 - - ld64=609=ha02d983_13 - - libblas=3.9.0=18_osx64_openblas - - libgd=2.3.3=h8823a56_5 - - openblas=0.3.24=openmp_hd7704e8_0 + - libcblas=3.9.0=20_osx64_openblas + - liblapack=3.9.0=20_osx64_openblas + - platformdirs=4.0.0=pyhd8ed1ab_0 - pyproject-api=1.6.1=pyhd8ed1ab_0 - - singular=4.2.1.p3=hac851df_2 - typing-extensions=4.8.0=hd8ed1ab_0 - - cctools=973.0.1=h40f6528_13 - - clang=16.0.3=hc177806_2 - - importlib_metadata=6.8.0=hd8ed1ab_0 - - libcblas=3.9.0=18_osx64_openblas - - liblapack=3.9.0=18_osx64_openblas - - platformdirs=3.11.0=pyhd8ed1ab_0 - - arpack=3.7.0=hefb7bc6_2 - - clangxx=16.0.3=default_h762fdd7_2 + - clangxx=16.0.6=default_h762fdd7_2 - fflas-ffpack=2.4.3=h026fd7e_2 - gsl=2.7=h93259b0_0 - iml=1.0.5=h64b42ca_1003 - - liblapacke=3.9.0=18_osx64_openblas + - importlib_metadata=6.8.0=hd8ed1ab_0 + - liblapacke=3.9.0=20_osx64_openblas - suitesparse=5.10.1=h7aff33d_1 - - virtualenv=20.24.4=pyhd8ed1ab_0 - - blas-devel=3.9.0=18_osx64_openblas - - compiler-rt_osx-64=16.0.3=he1888fc_1 + - virtualenv=20.24.7=pyhd8ed1ab_0 + - blas-devel=3.9.0=20_osx64_openblas + - compiler-rt_osx-64=16.0.6=he1888fc_1 - giac=1.9.0.21=h92f3f65_1 - - igraph=0.9.10=h6560ca6_1 - linbox=1.6.3=hdde8d14_7 - tox=4.11.3=pyhd8ed1ab_0 - - blas=2.118=openblas - - compiler-rt=16.0.3=he1888fc_1 - - rw=0.9=h0d85af4_0 - - clang_osx-64=16.0.3=h51755a5_2 + - blas=2.120=openblas + - compiler-rt=16.0.6=he1888fc_1 + - clang_impl_osx-64=16.0.6=h8787910_6 + - clang_osx-64=16.0.6=hb91bd55_6 - gfortran_osx-64=12.3.0=h18f7dce_1 - gfortran=12.3.0=h2c809b3_1 - fortran-compiler=1.6.0=h932d759_0 diff --git a/environment-3.9-linux-aarch64.yml b/environment-3.9-linux-aarch64.yml new file mode 100644 index 00000000000..acc3b63f38d --- /dev/null +++ b/environment-3.9-linux-aarch64.yml @@ -0,0 +1,184 @@ +# Generated by conda-lock. +# platform: linux-aarch64 +# input_hash: a3caa90ef4560e5282e0114e88588a68e568e700f51893dc423ff92aa324272c + +channels: + - conda-forge +dependencies: + - _sysroot_linux-aarch64_curr_repodata_hack=4=h57d6b7b_13 + - ca-certificates=2023.11.17=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 + - libboost-headers=1.82.0=h8af1aa0_2 + - libgcc-devel_linux-aarch64=12.3.0=h8b5ab12_103 + - libgomp=13.2.0=hf8544c7_3 + - libstdcxx-ng=13.2.0=h9a76618_3 + - mathjax=3.2.2=h8af1aa0_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 + - python_abi=3.9=4_cp39 + - tzdata=2023c=h71feb2d_0 + - fonts-conda-forge=1=0 + - pari-seadata=0.0.20090618=0 + - sysroot_linux-aarch64=2.17=h5b4a56d_13 + - binutils_impl_linux-aarch64=2.40=h870a726_0 + - fonts-conda-ecosystem=1=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 + - bdw-gc=8.0.6=hd62202e_0 + - bzip2=1.0.8=h31becfc_5 + - c-ares=1.22.1=h31becfc_0 + - cliquer=1.22=hb9de7d4_0 + - gengetopt=2.23=h01db608_0 + - gf2x=1.3.0=h1b3b3a3_2 + - giflib=5.2.1=hb4cce97_3 + - gmp=6.3.0=h2f0025b_0 + - icu=72.1=hcf00150_0 + - jpeg=9e=h2a766a3_3 + - keyutils=1.6.1=h4e544f5_0 + - lerc=4.0.0=h4de3ea5_0 + - libatomic_ops=7.6.14=h4e544f5_0 + - libbraiding=1.1=h7fd3ca4_0 + - libdeflate=1.17=hb4cce97_0 + - libev=4.33=h516909a_1 + - libexpat=2.5.0=hd600fc2_1 + - libffi=3.4.2=h3557bc0_5 + - libgfortran5=13.2.0=h582850c_3 + - libiconv=1.17=h9cdd2b7_0 + - libnsl=2.0.1=h31becfc_0 + - libsanitizer=12.3.0=h8ebda82_3 + - 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 + - libzlib=1.2.13=h31becfc_5 + - lrcalc=2.1=h4de3ea5_5 + - m4=1.4.18=h516909a_1001 + - metis=5.1.0=h2f0025b_1007 + - nauty=2.7.2=hf897c2e_0 + - ncurses=6.4=h0425590_2 + - ninja=1.11.1=hdd96247_0 + - openssl=3.2.0=h31becfc_0 + - palp=2.20=hb9de7d4_0 + - patch=2.7.6=hf897c2e_1002 + - pkg-config=0.29.2=hb9de7d4_1008 + - planarity=3.0.0.5=hb9de7d4_1002 + - primesieve=11.1=h2f0025b_0 + - qhull=2020.2=hd62202e_2 + - rhash=1.4.4=h31becfc_0 + - symmetrica=3.0.1=hd600fc2_0 + - xz=5.2.6=h9cdd2b7_0 + - 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 + - givaro=4.1.1=h192cbe9_1 + - glpk=5.0=h66325d0_0 + - libedit=3.1.20191231=he28a2e2_2 + - libgfortran-ng=13.2.0=he9431aa_3 + - libhomfly=1.02r6=hb9de7d4_0 + - libnghttp2=1.58.0=hb0e430d_0 + - libpng=1.6.39=hf9034f9_0 + - libsqlite=3.44.2=h194ca79_0 + - libssh2=1.11.0=h492db2e_0 + - libxml2=2.10.4=h430b14f_0 + - mpfr=4.2.1=ha2d0fc4_0 + - ntl=11.4.3=h0d7519b_1 + - perl=5.32.1=4_h31becfc_perl5 + - primecount=7.9=hd600fc2_0 + - readline=8.2=h8fc344f_1 + - tk=8.6.13=h194ca79_0 + - zeromq=4.3.5=h2f0025b_0 + - zlib=1.2.13=h31becfc_5 + - zstd=1.5.5=h4c53e97_0 + - autoconf=2.71=pl5321h2148fe1_1 + - ecl=21.2.1=haa44c19_2 + - freetype=2.12.1=hf0a5ef3_2 + - 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 + - krb5=1.21.2=hc419048_0 + - libboost=1.82.0=hbfc56d7_2 + - libflint=2.9.0=hd3470fa_ntl_100 + - libhwloc=2.9.1=h21e8147_0 + - libopenblas=0.3.25=pthreads_h5a5ec62_0 + - libtiff=4.5.0=h4c1066a_2 + - llvm-openmp=17.0.5=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 + - qd=2.3.22=h05efe27_1004 + - sqlite=3.44.2=h3b3482f_0 + - tachyon=0.99b6=h63ab1d9_1001 + - texinfo=7.0=pl5321h17f021e_0 + - appdirs=1.4.4=pyh9f0ad1d_0 + - arb=2.23.0=h37d5dab_0 + - automake=1.16.5=pl5321h8af1aa0_0 + - c-compiler=1.6.0=h31becfc_0 + - cachetools=5.3.2=pyhd8ed1ab_0 + - chardet=5.2.0=py39ha65689a_1 + - colorama=0.4.6=pyhd8ed1ab_0 + - distlib=0.3.7=pyhd8ed1ab_0 + - eclib=20230424=h0bc7b0f_0 + - filelock=3.13.1=pyhd8ed1ab_0 + - fontconfig=2.14.2=ha9a116f_0 + - fplll=5.4.5=hb3a790e_0 + - gfortran=12.3.0=h8d4031d_2 + - gfortran_linux-aarch64=12.3.0=h1993883_2 + - lcalc=2.0.5=h3264cc0_1 + - libblas=3.9.0=20_linuxaarch64_openblas + - libboost-devel=1.82.0=h37bb5a9_2 + - libbrial=1.2.12=h17533bf_1 + - libcurl=8.4.0=h4e8248e_0 + - libwebp=1.2.4=h7bdf6e5_1 + - m4rie=20150908=h75e8696_1001 + - maxima=5.45.0=haa44c19_3 + - openblas=0.3.25=pthreads_h339cbfa_0 + - packaging=23.2=pyhd8ed1ab_0 + - pluggy=1.3.0=pyhd8ed1ab_0 + - singular=4.2.1.p3=h3d4c4c6_2 + - sympow=2.023.6=h157afb5_3 + - tbb=2021.9.0=h4c384f3_0 + - tomli=2.0.1=pyhd8ed1ab_0 + - typing_extensions=4.8.0=pyha770c72_0 + - zipp=3.17.0=pyhd8ed1ab_0 + - boost-cpp=1.82.0=h62f3a30_2 + - brial=1.2.12=pyh694c41f_1 + - cmake=3.27.8=hef020d8_0 + - curl=8.4.0=h4e8248e_0 + - fortran-compiler=1.6.0=h7048d53_0 + - importlib-metadata=6.8.0=pyha770c72_0 + - libcblas=3.9.0=20_linuxaarch64_openblas + - libgd=2.3.3=h5fc1a20_5 + - liblapack=3.9.0=20_linuxaarch64_openblas + - platformdirs=4.0.0=pyhd8ed1ab_0 + - pyproject-api=1.6.1=pyhd8ed1ab_0 + - typing-extensions=4.8.0=hd8ed1ab_0 + - arpack=3.7.0=hf862f49_2 + - fflas-ffpack=2.4.3=hf104d39_2 + - gsl=2.7=h294027d_0 + - iml=1.0.5=h9076c59_1003 + - importlib_metadata=6.8.0=hd8ed1ab_0 + - liblapacke=3.9.0=20_linuxaarch64_openblas + - suitesparse=5.10.1=h1404dd6_1 + - virtualenv=20.24.7=pyhd8ed1ab_0 + - blas-devel=3.9.0=20_linuxaarch64_openblas + - giac=1.9.0.21=h04922a4_1 + - igraph=0.9.10=hefb87a8_1 + - linbox=1.6.3=h31716a8_7 + - tox=4.11.3=pyhd8ed1ab_0 + - blas=2.120=openblas + - rw=0.9=hf897c2e_0 diff --git a/environment-3.9-linux.yml b/environment-3.9-linux.yml index 9b1282e073e..7697a423966 100644 --- a/environment-3.9-linux.yml +++ b/environment-3.9-linux.yml @@ -6,16 +6,16 @@ channels: - conda-forge dependencies: - _libgcc_mutex=0.1=conda_forge - - ca-certificates=2023.7.22=hbcca054_0 + - ca-certificates=2023.11.17=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=hab24e00_0 + - font-ttf-ubuntu=0.83=h77eed37_1 - kernel-headers_linux-64=2.6.32=he073ed8_16 - ld_impl_linux-64=2.40=h41732ed_0 - - libboost-headers=1.82.0=ha770c72_2 - - libgcc-devel_linux-64=12.3.0=h8bca6fd_2 - - libstdcxx-ng=13.2.0=h7e041cc_2 + - libboost-headers=1.83.0=ha770c72_0 + - libgcc-devel_linux-64=12.3.0=h8bca6fd_103 + - libstdcxx-ng=13.2.0=h7e041cc_3 - mathjax=3.2.2=ha770c72_0 - pari-elldata=0.0.20161017=0 - pari-galdata=0.0.20180411=0 @@ -24,7 +24,7 @@ dependencies: - python_abi=3.9=4_cp39 - tzdata=2023c=h71feb2d_0 - fonts-conda-forge=1=0 - - libgomp=13.2.0=h807b86a_2 + - libgomp=13.2.0=h807b86a_3 - pari-seadata=0.0.20090618=0 - sysroot_linux-64=2.12=he073ed8_16 - binutils_impl_linux-64=2.40=hf600244_0 @@ -32,42 +32,42 @@ dependencies: - 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_2 + - libgcc-ng=13.2.0=h807b86a_3 - bdw-gc=8.0.6=h4bd325d_0 - - bzip2=1.0.8=h7f98852_4 - - c-ares=1.19.1=hd590300_0 + - bzip2=1.0.8=hd590300_5 + - c-ares=1.22.1=hd590300_0 - cliquer=1.22=h36c2ea0_0 - gengetopt=2.23=h9c3ff4c_0 - gf2x=1.3.0=ha476b99_2 - giflib=5.2.1=h0b41bf4_3 - - gmp=6.2.1=h58526e2_0 - - icu=72.1=hcb278e6_0 + - gmp=6.3.0=h59595ed_0 + - icu=73.2=h59595ed_0 - keyutils=1.6.1=h166bdaf_0 - lerc=4.0.0=h27087fc_0 - libatomic_ops=7.6.14=h166bdaf_0 - libbraiding=1.1=h58526e2_0 - - libdeflate=1.18=h0b41bf4_0 + - libdeflate=1.19=hd590300_0 - libev=4.33=h516909a_1 - libexpat=2.5.0=hcb278e6_1 - libffi=3.4.2=h7f98852_5 - - libgfortran5=13.2.0=ha4646dd_2 + - libgfortran5=13.2.0=ha4646dd_3 - libiconv=1.17=h166bdaf_0 - - libjpeg-turbo=2.1.5.1=hd590300_1 - - libnsl=2.0.0=hd590300_1 - - libsanitizer=12.3.0=h0f45ef3_2 + - libjpeg-turbo=3.0.0=hd590300_1 + - libnsl=2.0.1=hd590300_0 + - libsanitizer=12.3.0=h0f45ef3_3 - 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.1=hd590300_0 + - libwebp-base=1.3.2=hd590300_0 - libzlib=1.2.13=hd590300_5 - lrcalc=2.1=h27087fc_5 - m4=1.4.18=h516909a_1001 - metis=5.1.0=h59595ed_1007 - nauty=2.7.2=h7f98852_0 - - ncurses=6.4=hcb278e6_0 + - ncurses=6.4=h59595ed_2 - ninja=1.11.1=h924138e_0 - - openssl=3.1.3=hd590300_0 + - openssl=3.2.0=hd590300_0 - palp=2.20=h36c2ea0_0 - patch=2.7.6=h7f98852_1002 - pkg-config=0.29.2=h36c2ea0_1008 @@ -76,29 +76,28 @@ dependencies: - qhull=2020.2=h4bd325d_2 - rhash=1.4.4=hd590300_0 - symmetrica=3.0.1=hcb278e6_0 - - tbb=2021.7.0=h924138e_0 - xz=5.2.6=h166bdaf_0 - 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_2 + - gcc_impl_linux-64=12.3.0=he2b93b0_3 - givaro=4.1.1=h192cbe9_1 - glpk=5.0=h445213a_0 - libedit=3.1.20191231=he28a2e2_2 - - libgfortran-ng=13.2.0=h69a702a_2 + - libgfortran-ng=13.2.0=h69a702a_3 - libhomfly=1.02r6=h36c2ea0_0 - - libnghttp2=1.52.0=h61bc06f_0 + - libnghttp2=1.58.0=h47da74e_0 - libpng=1.6.39=h753d276_0 - - libsqlite=3.43.0=h2797004_0 + - libsqlite=3.44.2=h2797004_0 - libssh2=1.11.0=h0841786_0 - - libxml2=2.10.4=hfdac1af_0 - - mpfr=4.2.0=hb012696_0 + - libxml2=2.11.6=h232c23b_0 + - mpfr=4.2.1=h9458935_0 - ntl=11.4.3=hef3c4d3_1 - perl=5.32.1=4_hd590300_perl5 - primecount=7.9=hcb278e6_0 - readline=8.2=h8228510_1 - - tk=8.6.13=h2797004_0 - - zeromq=4.3.4=h9c3ff4c_1 + - tk=8.6.13=noxft_h4845f30_101 + - zeromq=4.3.5=h59595ed_0 - zlib=1.2.13=hd590300_5 - zstd=1.5.5=hfc55251_0 - autoconf=2.71=pl5321h2b4cb7a_1 @@ -107,13 +106,15 @@ dependencies: - 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_2 + - gfortran_impl_linux-64=12.3.0=hfcedea8_3 + - igraph=0.7.1=0 - krb5=1.21.2=h659d440_0 - - libboost=1.82.0=h1bacd13_2 + - libboost=1.83.0=h6fcfa73_0 - libflint=2.9.0=h2f819a4_ntl_100 - - libopenblas=0.3.24=pthreads_h413a1c8_0 - - libtiff=4.5.1=h8b53f26_1 - - llvm-openmp=17.0.2=h4dfa4b3_0 + - libhwloc=2.9.3=default_h554bfaf_1009 + - libopenblas=0.3.25=pthreads_h413a1c8_0 + - libtiff=4.6.0=ha9c0a0a_2 + - llvm-openmp=17.0.5=h4dfa4b3_0 - m4ri=20140914=h7ca028e_1005 - mpc=1.3.1=hfe3b2da_0 - mpfi=1.5.4=h9f54685_1001 @@ -121,63 +122,62 @@ dependencies: - ppl=1.2=h6ec01c2_1006 - python=3.9.18=h0755675_0_cpython - qd=2.3.22=h2cc385e_1004 - - sqlite=3.43.0=h2c6b66d_0 + - sqlite=3.44.2=h2c6b66d_0 - tachyon=0.99b6=0 - texinfo=7.0=pl5321h0f457ee_0 - appdirs=1.4.4=pyh9f0ad1d_0 - arb=2.23.0=h44d021b_0 - automake=1.16.5=pl5321ha770c72_0 - c-compiler=1.6.0=hd590300_0 - - cachetools=5.3.1=pyhd8ed1ab_0 + - cachetools=5.3.2=pyhd8ed1ab_0 - chardet=5.2.0=py39hf3d152e_1 - colorama=0.4.6=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - eclib=20230424=hdef1efb_0 - - filelock=3.12.4=pyhd8ed1ab_0 + - filelock=3.13.1=pyhd8ed1ab_0 - fontconfig=2.14.2=h14ed4e7_0 - - fplll=5.4.4=h8780c30_0 + - fplll=5.4.5=h384768b_0 - gfortran=12.3.0=h499e0f7_2 - gfortran_linux-64=12.3.0=h7fe76b4_2 - lcalc=2.0.5=h6a8a7c6_1 - - libblas=3.9.0=18_linux64_openblas - - libboost-devel=1.82.0=h00ab1b0_2 + - libblas=3.9.0=20_linux64_openblas + - libboost-devel=1.83.0=h00ab1b0_0 - libbrial=1.2.12=h3155cbd_1 - - libcurl=8.3.0=hca28451_0 - - libwebp=1.3.1=hbf2b3c1_0 + - libcurl=8.4.0=hca28451_0 + - libwebp=1.3.2=h658648e_1 - m4rie=20150908=h7ca028e_1001 - maxima=5.45.0=h9d73b02_3 - - openblas=0.3.24=pthreads_h7a3da1a_0 + - openblas=0.3.25=pthreads_h7a3da1a_0 - packaging=23.2=pyhd8ed1ab_0 - pluggy=1.3.0=pyhd8ed1ab_0 + - rw=0.8=h516909a_1001 - singular=4.2.1.p3=h1ea75ed_2 - sympow=2.023.6=hc6ab17c_3 + - tbb=2021.10.0=h00ab1b0_2 - tomli=2.0.1=pyhd8ed1ab_0 - typing_extensions=4.8.0=pyha770c72_0 - zipp=3.17.0=pyhd8ed1ab_0 - - boost-cpp=1.82.0=h789c474_2 + - boost-cpp=1.83.0=h44aadfe_0 - brial=1.2.12=pyh694c41f_1 - - cmake=3.27.6=hcfe8598_0 - - curl=8.3.0=hca28451_0 + - cmake=3.27.8=hcfe8598_0 + - curl=8.4.0=hca28451_0 - fortran-compiler=1.6.0=heb67821_0 - importlib-metadata=6.8.0=pyha770c72_0 - - libcblas=3.9.0=18_linux64_openblas - - libgd=2.3.3=hfa28ad5_6 - - liblapack=3.9.0=18_linux64_openblas + - libcblas=3.9.0=20_linux64_openblas + - libgd=2.3.3=h119a65a_9 + - liblapack=3.9.0=20_linux64_openblas + - platformdirs=4.0.0=pyhd8ed1ab_0 - pyproject-api=1.6.1=pyhd8ed1ab_0 - typing-extensions=4.8.0=hd8ed1ab_0 - - arpack=3.7.0=hdefa2d7_2 - fflas-ffpack=2.4.3=h912ac81_2 - gsl=2.7=he838d99_0 - iml=1.0.5=hd75c201_1003 - importlib_metadata=6.8.0=hd8ed1ab_0 - - liblapacke=3.9.0=18_linux64_openblas - - platformdirs=3.11.0=pyhd8ed1ab_0 + - liblapacke=3.9.0=20_linux64_openblas - suitesparse=5.10.1=h9e50725_1 - - blas-devel=3.9.0=18_linux64_openblas + - virtualenv=20.24.7=pyhd8ed1ab_0 + - blas-devel=3.9.0=20_linux64_openblas - giac=1.9.0.21=h673759e_1 - - igraph=0.9.10=ha1f048c_1 - linbox=1.6.3=h9d78c56_7 - - virtualenv=20.24.4=pyhd8ed1ab_0 - - blas=2.118=openblas - - rw=0.9=h7f98852_0 - tox=4.11.3=pyhd8ed1ab_0 + - blas=2.120=openblas diff --git a/environment-3.9-macos-arm64.yml b/environment-3.9-macos-arm64.yml new file mode 100644 index 00000000000..91b06c1e39d --- /dev/null +++ b/environment-3.9-macos-arm64.yml @@ -0,0 +1,185 @@ +# Generated by conda-lock. +# platform: osx-arm64 +# input_hash: c87d22a55df9a357c3991187ec471140cbfc4bcbc956cf4e84edce39459d9306 + +channels: + - conda-forge +dependencies: + - bzip2=1.0.8=h93a5062_5 + - c-ares=1.22.1=h93a5062_0 + - ca-certificates=2023.11.17=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 + - giflib=5.2.1=h1a8c8d9_3 + - icu=72.1=he12128b_0 + - jpeg=9e=h1a8c8d9_3 + - libatomic_ops=7.6.14=h1a8c8d9_0 + - libboost-headers=1.82.0=hce30654_2 + - libcxx=16.0.6=h4653b0c_0 + - libdeflate=1.17=h1a8c8d9_0 + - libev=4.33=h642e427_1 + - libexpat=2.5.0=hb7217d7_1 + - libffi=3.4.2=h3422bc3_5 + - libgfortran-devel_osx-arm64=12.3.0=hc62be1c_1 + - libiconv=1.17=he4db4b2_0 + - 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 + - libzlib=1.2.13=h53f4e23_5 + - llvm-openmp=17.0.5=hcd81f8e_0 + - m4=1.4.18=h642e427_1001 + - mathjax=3.2.2=hce30654_0 + - metis=5.1.0=h13dd4ca_1007 + - nauty=2.7.2=h3422bc3_0 + - palp=2.20=h27ca646_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 + - planarity=3.0.0.5=h27ca646_1002 + - python_abi=3.9=4_cp39 + - rhash=1.4.4=hb547adb_0 + - tbb=2021.10.0=h1995070_2 + - tzdata=2023c=h71feb2d_0 + - xz=5.2.6=h57fd34a_0 + - 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 + - isl=0.25=h9a09cb3_0 + - lerc=4.0.0=h9a09cb3_0 + - libbraiding=1.1=h9f76cd9_0 + - libgfortran5=13.2.0=hf226fd6_1 + - libpng=1.6.39=h76d750c_0 + - libsqlite=3.44.2=h091b4b1_0 + - libxml2=2.10.4=h2aff0a6_0 + - lrcalc=2.1=hb7217d7_5 + - ncurses=6.4=h463b476_2 + - ninja=1.11.1=hffc8910_0 + - openssl=3.2.0=h0d3ecfb_0 + - pari-seadata=0.0.20090618=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 + - 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 + - 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 + - libboost=1.82.0=h3f31f7c_2 + - libedit=3.1.20191231=hc8eb9b7_2 + - libgfortran=5.0.0=13_2_0_hd922786_1 + - libglib=2.78.1=hb438215_1 + - libhomfly=1.02r6=h27ca646_0 + - libllvm15=15.0.7=h62b9111_1 + - libnghttp2=1.58.0=ha4dd798_0 + - libssh2=1.11.0=h7a5bd25_0 + - 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 + - texinfo=7.0=pl5321h9ea1dce_0 + - ecl=21.2.1=h8492d4d_2 + - fontconfig=2.14.2=h82840c6_0 + - gfan=0.6.2=hec08f5c_1003 + - krb5=1.21.2=h92f50d5_0 + - ld64_osx-arm64=609=hc4dc95b_15 + - libboost-devel=1.82.0=hf450f58_2 + - libbrial=1.2.12=ha7f5006_1 + - libclang-cpp15=15.0.7=default_h5dc8d65_3 + - libflint=2.9.0=h173eafc_ntl_100 + - libopenblas=0.3.25=openmp_h6c19121_0 + - libwebp=1.2.4=h999c80f_1 + - llvm-tools=15.0.7=h62b9111_1 + - m4rie=20150908=h17b34a0_1001 + - mpc=1.3.1=h91ba8db_0 + - mpfi=1.5.4=hbde5f5b_1001 + - 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 + - qd=2.3.22=hbec66e7_1004 + - sqlite=3.44.2=hf2abe2d_0 + - appdirs=1.4.4=pyh9f0ad1d_0 + - arb=2.23.0=he5401aa_0 + - boost-cpp=1.82.0=h4ae65de_2 + - brial=1.2.12=pyh694c41f_1 + - cachetools=5.3.2=pyhd8ed1ab_0 + - cctools_osx-arm64=973.0.1=h2a25c60_15 + - chardet=5.2.0=py39h2804cbe_1 + - clang-15=15.0.7=default_h5dc8d65_3 + - colorama=0.4.6=pyhd8ed1ab_0 + - distlib=0.3.7=pyhd8ed1ab_0 + - eclib=20230424=haeb5157_0 + - filelock=3.13.1=pyhd8ed1ab_0 + - fplll=5.4.5=hb7d509d_0 + - gfortran_impl_osx-arm64=12.3.0=hbbb9e1e_1 + - lcalc=2.0.5=hc94e8e6_1 + - ld64=609=h89fa09d_15 + - libblas=3.9.0=20_osxarm64_openblas + - libcurl=8.4.0=h2d989ff_0 + - libgd=2.3.3=h8db8f0b_5 + - maxima=5.45.0=h6032a66_2 + - openblas=0.3.25=openmp_h55c453e_0 + - packaging=23.2=pyhd8ed1ab_0 + - pluggy=1.3.0=pyhd8ed1ab_0 + - singular=4.2.1.p3=h3b80c97_2 + - sympow=2.023.6=hb0babe8_3 + - tomli=2.0.1=pyhd8ed1ab_0 + - typing_extensions=4.8.0=pyha770c72_0 + - zipp=3.17.0=pyhd8ed1ab_0 + - cctools=973.0.1=hd1ac623_15 + - clang=15.0.7=hce30654_3 + - cmake=3.27.8=h04763b9_0 + - curl=8.4.0=h2d989ff_0 + - importlib-metadata=6.8.0=pyha770c72_0 + - libcblas=3.9.0=20_osxarm64_openblas + - liblapack=3.9.0=20_osxarm64_openblas + - platformdirs=4.0.0=pyhd8ed1ab_0 + - pyproject-api=1.6.1=pyhd8ed1ab_0 + - typing-extensions=4.8.0=hd8ed1ab_0 + - arpack=3.7.0=h58ebc17_2 + - clangxx=15.0.7=default_h610c423_3 + - fflas-ffpack=2.4.3=h11f2abc_2 + - gsl=2.7=h6e638da_0 + - iml=1.0.5=hd52f0d1_1003 + - importlib_metadata=6.8.0=hd8ed1ab_0 + - liblapacke=3.9.0=20_osxarm64_openblas + - suitesparse=5.10.1=h7cd81ec_1 + - virtualenv=20.24.7=pyhd8ed1ab_0 + - blas-devel=3.9.0=20_osxarm64_openblas + - compiler-rt_osx-arm64=15.0.7=hf8d1dfb_1 + - giac=1.9.0.21=h1c96721_1 + - igraph=0.9.10=hcec9b84_1 + - linbox=1.6.3=h549c411_7 + - tox=4.11.3=pyhd8ed1ab_0 + - blas=2.120=openblas + - compiler-rt=15.0.7=hf8d1dfb_1 + - rw=0.9=h3422bc3_0 + - clang_impl_osx-arm64=15.0.7=h77e971b_6 + - clang_osx-arm64=15.0.7=h54d7cd3_6 + - gfortran_osx-arm64=12.3.0=h57527a5_1 + - gfortran=12.3.0=h1ca8e4b_1 + - fortran-compiler=1.6.0=h5a50232_0 diff --git a/environment-3.9-macos.yml b/environment-3.9-macos.yml index ba891b22a78..c126c65a0ee 100644 --- a/environment-3.9-macos.yml +++ b/environment-3.9-macos.yml @@ -5,37 +5,36 @@ channels: - conda-forge dependencies: - - bzip2=1.0.8=h0d85af4_4 - - c-ares=1.19.1=h0dc2134_0 - - ca-certificates=2023.7.22=h8857fd0_0 + - bzip2=1.0.8=h10d778d_5 + - c-ares=1.22.1=h10d778d_0 + - ca-certificates=2023.11.17=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=hab24e00_0 + - font-ttf-ubuntu=0.83=h77eed37_1 - giflib=5.2.1=hb7f2c08_3 - - icu=72.1=h7336db1_0 - - jpeg=9e=hb7f2c08_3 + - icu=73.2=hf5e326d_0 - libatomic_ops=7.6.14=hb7f2c08_0 - - libboost-headers=1.82.0=h694c41f_2 + - libboost-headers=1.83.0=h694c41f_0 - libcxx=16.0.6=hd57cbcb_0 - - libdeflate=1.17=hac1461d_0 + - libdeflate=1.19=ha4e1b8e_0 - libev=4.33=haf1e3a3_1 - libexpat=2.5.0=hf0c8a7f_1 - libffi=3.4.2=h0d85af4_5 - libgfortran-devel_osx-64=12.3.0=h0b6f5ec_1 - libiconv=1.17=hac89ed1_0 + - 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.2.4=h775f41a_0 + - libwebp-base=1.3.2=h0dc2134_0 - libzlib=1.2.13=h8a1eda9_5 - - llvm-openmp=17.0.2=hff08bdf_0 + - llvm-openmp=17.0.5=hb6ac08f_0 - m4=1.4.18=haf1e3a3_1001 - mathjax=3.2.2=h694c41f_0 - metis=5.1.0=he965462_1007 - nauty=2.7.2=h0d85af4_0 - - ncurses=6.4=hf0c8a7f_0 - palp=2.20=hbcb3906_0 - pari-elldata=0.0.20161017=0 - pari-galdata=0.0.20180411=0 @@ -46,6 +45,8 @@ dependencies: - planarity=3.0.0.5=hbcb3906_1002 - python_abi=3.9=4_cp39 - rhash=1.4.4=h0dc2134_0 + - rw=0.7=1 + - tbb=2021.10.0=h1c7c39f_2 - tzdata=2023c=h71feb2d_0 - xz=5.2.6=h775f41a_0 - autoconf=2.71=pl5321hed12c24_1 @@ -55,128 +56,126 @@ dependencies: - gengetopt=2.23=he49afe7_0 - gettext=0.21.1=h8a4c099_0 - gf2x=1.3.0=hb2a7efb_2 - - gmp=6.2.1=h2e338ed_0 + - gmp=6.3.0=h93d8f39_0 - isl=0.25=hb486fe8_0 - lerc=4.0.0=hb486fe8_0 - libbraiding=1.1=h2e338ed_0 - - libedit=3.1.20191231=h0678c8f_2 - libgfortran5=13.2.0=h2873a65_1 - libpng=1.6.39=ha978bb4_0 - - libsqlite=3.43.0=h58db7d2_0 - - libxml2=2.10.4=h554bb67_0 + - libsqlite=3.44.2=h92b6c6a_0 + - libxml2=2.11.6=hc0ae0f7_0 - lrcalc=2.1=hf0c8a7f_5 + - ncurses=6.4=h93d8f39_2 - ninja=1.11.1=hb8565cd_0 - - openssl=3.1.3=h8a1eda9_0 + - openssl=3.2.0=hd75f5a5_0 - pari-seadata=0.0.20090618=0 - pkg-config=0.29.2=ha3d46e9_1008 - primesieve=11.0=hf0c8a7f_0 - qhull=2020.2=h940c156_2 - - readline=8.2=h9e318b2_1 - symmetrica=3.0.1=hf0c8a7f_0 - tapi=1100.0.11=h9ce4665_0 - - tbb=2021.10.0=h1c7c39f_1 - - texinfo=7.0=pl5321hc47821c_0 - - tk=8.6.13=hef22860_0 - - zeromq=4.3.4=he49afe7_1 + - 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 - cddlib=1!0.94m=h0f52abe_0 - - ecl=21.2.1=hd029580_2 - 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 - - krb5=1.21.2=hb884880_0 - - libboost=1.82.0=h4d4a22d_2 + - libboost=1.83.0=hf44e908_0 + - libedit=3.1.20191231=h0678c8f_2 - libgfortran=5.0.0=13_2_0_h97931a8_1 - libhomfly=1.02r6=hc929b4f_0 - - libllvm16=16.0.3=hf646ca0_1 - - libnghttp2=1.52.0=he2ab024_0 + - libllvm16=16.0.6=he4b1e75_2 + - libnghttp2=1.58.0=h64cf6d3_0 - libssh2=1.11.0=hd019ec5_0 - - libtiff=4.5.0=hee9004a_2 + - libtiff=4.6.0=h684deea_2 - m4ri=20140914=h3f75d11_1005 - - mpfr=4.2.0=h4f9bd69_0 + - mpfr=4.2.1=h0c69b56_0 - ntl=11.4.3=h0ab3c2f_1 - - pari=2.15.4=h93f793c_2_pthread - primecount=7.6=ha894c9a_0 - - python=3.9.18=h07e1443_0_cpython + - readline=8.2=h9e318b2_1 - sigtool=0.1.3=h88f4db0_0 - - sqlite=3.43.0=h2b0dec6_0 - - tachyon=0.99b6=h2e86ede_1001 - - appdirs=1.4.4=pyh9f0ad1d_0 - - cachetools=5.3.1=pyhd8ed1ab_0 - - chardet=5.2.0=py39h6e9494a_1 - - colorama=0.4.6=pyhd8ed1ab_0 - - distlib=0.3.7=pyhd8ed1ab_0 - - filelock=3.12.4=pyhd8ed1ab_0 + - tachyon=0.99b6=0 + - texinfo=7.0=pl5321hc47821c_0 + - ecl=21.2.1=hd029580_2 - fontconfig=2.14.2=h5bb23bf_0 - gfan=0.6.2=hd793b56_1003 - - lcalc=2.0.5=h3a941db_1 - - ld64_osx-64=609=hbfe4790_13 - - libboost-devel=1.82.0=h1c7c39f_2 + - krb5=1.21.2=hb884880_0 + - ld64_osx-64=609=ha20a434_15 + - libboost-devel=1.83.0=h7728843_0 - libbrial=1.2.12=h8d08345_1 - - libclang-cpp16=16.0.3=default_h762fdd7_2 - - libcurl=8.3.0=h5f667d7_0 + - libclang-cpp16=16.0.6=default_h762fdd7_2 - libflint=2.9.0=hfd2f71f_ntl_100 - - libopenblas=0.3.24=openmp_h48a4ad5_0 - - libwebp=1.2.4=h70a068d_1 - - llvm-tools=16.0.3=hf646ca0_1 + - libopenblas=0.3.25=openmp_hfef2a42_0 + - libwebp=1.3.2=h44782d1_1 + - llvm-tools=16.0.6=he4b1e75_2 - m4rie=20150908=h3f75d11_1001 - - maxima=5.45.0=hd029580_3 - mpc=1.3.1=h81bd1dd_0 - mpfi=1.5.4=h52b28e3_1001 - - packaging=23.2=pyhd8ed1ab_0 - - pluggy=1.3.0=pyhd8ed1ab_0 + - pari=2.15.4=h93f793c_2_pthread - ppl=1.2=ha60d53e_1006 + - python=3.9.18=h07e1443_0_cpython - qd=2.3.22=h2beb688_1004 - - sympow=2.023.6=h115ba6a_3 - - tomli=2.0.1=pyhd8ed1ab_0 - - typing_extensions=4.8.0=pyha770c72_0 - - zipp=3.17.0=pyhd8ed1ab_0 + - sqlite=3.44.2=h7461747_0 + - appdirs=1.4.4=pyh9f0ad1d_0 - arb=2.23.0=h905a977_0 - - boost-cpp=1.82.0=h94d02bd_2 + - boost-cpp=1.83.0=h07eb623_0 - brial=1.2.12=pyh694c41f_1 - - cctools_osx-64=973.0.1=h5676edf_13 - - clang-16=16.0.3=default_h762fdd7_2 - - cmake=3.27.6=hf40c264_0 - - curl=8.3.0=h5f667d7_0 + - cachetools=5.3.2=pyhd8ed1ab_0 + - cctools_osx-64=973.0.1=ha1c5b94_15 + - chardet=5.2.0=py39h6e9494a_1 + - clang-16=16.0.6=default_h762fdd7_2 + - colorama=0.4.6=pyhd8ed1ab_0 + - distlib=0.3.7=pyhd8ed1ab_0 - eclib=20230424=hd00e801_0 - - fplll=5.4.4=hdfdc905_0 + - filelock=3.13.1=pyhd8ed1ab_0 + - fplll=5.4.5=hb7981ad_0 - gfortran_impl_osx-64=12.3.0=h54fd467_1 + - lcalc=2.0.5=h3a941db_1 + - ld64=609=ha02d983_15 + - libblas=3.9.0=20_osx64_openblas + - libcurl=8.4.0=h726d00d_0 + - libgd=2.3.3=h0dceb68_9 + - maxima=5.45.0=hd029580_3 + - openblas=0.3.25=openmp_h6794695_0 + - packaging=23.2=pyhd8ed1ab_0 + - pluggy=1.3.0=pyhd8ed1ab_0 + - singular=4.2.1.p3=hac851df_2 + - sympow=2.023.6=h115ba6a_3 + - tomli=2.0.1=pyhd8ed1ab_0 + - typing_extensions=4.8.0=pyha770c72_0 + - zipp=3.17.0=pyhd8ed1ab_0 + - cctools=973.0.1=h40f6528_15 + - clang=16.0.6=hc177806_2 + - cmake=3.27.8=hc7ee4c4_0 + - curl=8.4.0=h726d00d_0 - importlib-metadata=6.8.0=pyha770c72_0 - - ld64=609=ha02d983_13 - - libblas=3.9.0=18_osx64_openblas - - libgd=2.3.3=h8823a56_5 - - openblas=0.3.24=openmp_hd7704e8_0 + - libcblas=3.9.0=20_osx64_openblas + - liblapack=3.9.0=20_osx64_openblas + - platformdirs=4.0.0=pyhd8ed1ab_0 - pyproject-api=1.6.1=pyhd8ed1ab_0 - - singular=4.2.1.p3=hac851df_2 - typing-extensions=4.8.0=hd8ed1ab_0 - - cctools=973.0.1=h40f6528_13 - - clang=16.0.3=hc177806_2 - - importlib_metadata=6.8.0=hd8ed1ab_0 - - libcblas=3.9.0=18_osx64_openblas - - liblapack=3.9.0=18_osx64_openblas - - platformdirs=3.11.0=pyhd8ed1ab_0 - - arpack=3.7.0=hefb7bc6_2 - - clangxx=16.0.3=default_h762fdd7_2 + - clangxx=16.0.6=default_h762fdd7_2 - fflas-ffpack=2.4.3=h026fd7e_2 - gsl=2.7=h93259b0_0 - iml=1.0.5=h64b42ca_1003 - - liblapacke=3.9.0=18_osx64_openblas + - importlib_metadata=6.8.0=hd8ed1ab_0 + - liblapacke=3.9.0=20_osx64_openblas - suitesparse=5.10.1=h7aff33d_1 - - virtualenv=20.24.4=pyhd8ed1ab_0 - - blas-devel=3.9.0=18_osx64_openblas - - compiler-rt_osx-64=16.0.3=he1888fc_1 + - virtualenv=20.24.7=pyhd8ed1ab_0 + - blas-devel=3.9.0=20_osx64_openblas + - compiler-rt_osx-64=16.0.6=he1888fc_1 - giac=1.9.0.21=h92f3f65_1 - - igraph=0.9.10=h6560ca6_1 - linbox=1.6.3=hdde8d14_7 - tox=4.11.3=pyhd8ed1ab_0 - - blas=2.118=openblas - - compiler-rt=16.0.3=he1888fc_1 - - rw=0.9=h0d85af4_0 - - clang_osx-64=16.0.3=h51755a5_2 + - blas=2.120=openblas + - compiler-rt=16.0.6=he1888fc_1 + - clang_impl_osx-64=16.0.6=h8787910_6 + - clang_osx-64=16.0.6=hb91bd55_6 - gfortran_osx-64=12.3.0=h18f7dce_1 - gfortran=12.3.0=h2c809b3_1 - fortran-compiler=1.6.0=h932d759_0 diff --git a/src/environment-3.10-linux-aarch.yml b/src/environment-3.10-linux-aarch64.yml similarity index 72% rename from src/environment-3.10-linux-aarch.yml rename to src/environment-3.10-linux-aarch64.yml index 074c19d033b..5bba6aed652 100644 --- a/src/environment-3.10-linux-aarch.yml +++ b/src/environment-3.10-linux-aarch64.yml @@ -1,23 +1,23 @@ # Generated by conda-lock. # platform: linux-aarch64 -# input_hash: b0cea005268a9922484681414f4d36234cbd4d755d047df41f6e54067ff138b9 +# input_hash: 6c3b2c90762c877dd876c8090f0d92aee12867e33275cf36f315c8cfdb98f28a channels: - conda-forge dependencies: - _r-mutex=1.0.1=anacondar_1 - _sysroot_linux-aarch64_curr_repodata_hack=4=h57d6b7b_13 - - ca-certificates=2023.7.22=hcefe29a_0 + - ca-certificates=2023.11.17=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=hab24e00_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_2 - - libgomp=13.2.0=hf8544c7_2 - - libstdcxx-devel_linux-aarch64=12.3.0=h8b5ab12_2 - - libstdcxx-ng=13.2.0=h9a76618_2 + - 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 - pari-elldata=0.0.20161017=0 @@ -39,19 +39,18 @@ dependencies: - 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_2 + - libgcc-ng=13.2.0=hf8544c7_3 - alsa-lib=1.2.8=h4e544f5_0 - - bc=1.07.1=hf897c2e_0 - bdw-gc=8.0.6=hd62202e_0 - - bzip2=1.0.8=hf897c2e_4 - - c-ares=1.20.1=h31becfc_0 + - bzip2=1.0.8=h31becfc_5 + - c-ares=1.22.1=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.2.1=h7fd3ca4_0 + - gmp=6.3.0=h2f0025b_0 - graphite2=1.3.13=h7fd3ca4_1001 - icu=70.1=ha18d298_0 - jpeg=9e=h2a766a3_3 @@ -64,10 +63,10 @@ dependencies: - libev=4.33=h516909a_1 - libexpat=2.5.0=hd600fc2_1 - libffi=3.4.2=h3557bc0_5 - - libgfortran5=13.2.0=h582850c_2 + - libgfortran5=13.2.0=h582850c_3 - libiconv=1.17=h9cdd2b7_0 - - libnsl=2.0.0=h31becfc_1 - - libsanitizer=12.3.0=h8ebda82_2 + - libnsl=2.0.1=h31becfc_0 + - libsanitizer=12.3.0=h8ebda82_3 - libsodium=1.0.18=hb9de7d4_1 - libtool=2.4.7=h4de3ea5_0 - libuuid=2.38.1=hb4cce97_0 @@ -79,9 +78,9 @@ dependencies: - make=4.3=h309ac5b_1 - metis=5.1.0=h2f0025b_1007 - nauty=2.7.2=hf897c2e_0 - - ncurses=6.4=h2e1726e_0 + - ncurses=6.4=h0425590_2 - ninja=1.11.1=hdd96247_0 - - openssl=3.1.3=h31becfc_0 + - openssl=3.2.0=h31becfc_0 - palp=2.20=hb9de7d4_0 - patch=2.7.6=hf897c2e_1002 - pixman=0.42.2=h2f0025b_0 @@ -107,31 +106,30 @@ dependencies: - 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_2 + - gcc_impl_linux-aarch64=12.3.0=hcde2664_3 - 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_2 + - libgfortran-ng=13.2.0=he9431aa_3 - libhomfly=1.02r6=hb9de7d4_0 - - libnghttp2=1.52.0=h250e5c5_0 + - libnghttp2=1.58.0=hb0e430d_0 - libpng=1.6.39=hf9034f9_0 - - libsqlite=3.43.0=h194ca79_0 + - libsqlite=3.44.2=h194ca79_0 - libssh2=1.11.0=h492db2e_0 - libxcb=1.13=h3557bc0_1004 - libxml2=2.10.3=habe54e3_4 - - mpfr=4.2.0=h96f194b_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 - 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.4=h01db608_1 + - zeromq=4.3.5=h2f0025b_0 - zlib=1.2.13=h31becfc_5 - zstd=1.5.5=h4c53e97_0 - autoconf=2.71=pl5321h2148fe1_1 @@ -145,23 +143,23 @@ dependencies: - 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_2 - - gxx_impl_linux-aarch64=12.3.0=hcde2664_2 + - gfortran_impl_linux-aarch64=12.3.0=hb7244be_3 + - gxx_impl_linux-aarch64=12.3.0=hcde2664_3 - krb5=1.20.1=h113d92e_0 - libflint=2.9.0=hd3470fa_ntl_100 - - libglib=2.78.0=h0464669_0 + - libglib=2.78.1=h0464669_0 - libhwloc=2.9.1=h21e8147_0 - - libopenblas=0.3.23=pthreads_hd703e6f_0 + - libopenblas=0.3.25=pthreads_h5a5ec62_0 - libtiff=4.5.0=h4c1066a_2 - - llvm-openmp=17.0.2=h8b0cb96_0 + - llvm-openmp=17.0.5=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.12=hbbe8eec_0_cpython + - python=3.10.13=hbbe8eec_0_cpython - qd=2.3.22=h05efe27_1004 - - sqlite=3.43.0=h3b3482f_0 + - sqlite=3.44.2=h3b3482f_0 - tachyon=0.99b6=h63ab1d9_1001 - texinfo=7.0=pl5321h17f021e_0 - tktable=2.10=h4f9ca69_5 @@ -173,19 +171,18 @@ dependencies: - attrs=23.1.0=pyh71513ae_1 - automake=1.16.5=pl5321h8af1aa0_0 - backcall=0.2.0=pyh9f0ad1d_0 - - backports=1.0=pyhd8ed1ab_3 - 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.1=pyhd8ed1ab_0 - - certifi=2023.7.22=pyhd8ed1ab_0 + - cachetools=5.3.2=pyhd8ed1ab_0 + - certifi=2023.11.17=pyhd8ed1ab_0 - chardet=5.2.0=py310hbbe02a8_1 - - charset-normalizer=3.3.0=pyhd8ed1ab_0 + - charset-normalizer=3.3.2=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_0 - cycler=0.12.1=pyhd8ed1ab_0 - cysignals=1.11.2=py310h485802a_3 - - cython=3.0.2=py310hbb3657e_2 + - cython=3.0.6=py310hbb3657e_0 - debugpy=1.8.0=py310hbb3657e_1 - decorator=5.1.1=pyhd8ed1ab_0 - defusedxml=0.7.1=pyhd8ed1ab_0 @@ -194,29 +191,28 @@ dependencies: - eclib=20230424=h0bc7b0f_0 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 - - exceptiongroup=1.1.3=pyhd8ed1ab_0 - - executing=1.2.0=pyhd8ed1ab_0 - - filelock=3.12.4=pyhd8ed1ab_0 + - exceptiongroup=1.2.0=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.4=h5cd656c_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.4=pyhd8ed1ab_0 + - 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=1.1.7=pyhd8ed1ab_0 + - jupyterlab_widgets=3.0.9=pyhd8ed1ab_0 - kiwisolver=1.4.5=py310he290b8a_1 - lcalc=2.0.5=h3264cc0_1 - lcms2=2.15=h7576be9_0 - - libblas=3.9.0=17_linuxaarch64_openblas + - libblas=3.9.0=20_linuxaarch64_openblas - libbrial=1.2.12=h17533bf_1 - libcups=2.3.3=h4303303_3 - libcurl=8.1.2=hc34909b_0 @@ -224,12 +220,12 @@ dependencies: - m4rie=20150908=h75e8696_1001 - markupsafe=2.1.3=py310h7c1f4a2_1 - maxima=5.45.0=haa44c19_3 - - mistune=3.0.1=pyhd8ed1ab_0 + - mistune=3.0.2=pyhd8ed1ab_0 - mpmath=1.3.0=pyhd8ed1ab_0 - munkres=1.1.4=pyh9f0ad1d_0 - - nest-asyncio=1.5.6=pyhd8ed1ab_0 - - networkx=2.8.8=pyhd8ed1ab_0 - - openblas=0.3.23=pthreads_hef96516_0 + - nest-asyncio=1.5.8=pyhd8ed1ab_0 + - networkx=3.2.1=pyhd8ed1ab_0 + - openblas=0.3.25=pthreads_h339cbfa_0 - openjpeg=2.5.0=h9508984_2 - packaging=23.2=pyhd8ed1ab_0 - pandocfilters=1.5.0=pyhd8ed1ab_0 @@ -240,30 +236,30 @@ dependencies: - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 - pluggy=1.3.0=pyhd8ed1ab_0 - ply=3.11=py_1 - - prometheus_client=0.17.1=pyhd8ed1ab_0 + - prometheus_client=0.19.0=pyhd8ed1ab_0 - psutil=5.9.5=py310hb299538_1 - 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.16.1=pyhd8ed1ab_0 + - pygments=2.17.2=pyhd8ed1ab_0 - pyparsing=3.1.1=pyhd8ed1ab_0 - - pyrsistent=0.19.3=py310h7c1f4a2_1 + - pyrsistent=0.20.0=py310h7c1f4a2_0 - pysocks=1.7.1=pyha2e5f31_6 - - python-fastjsonschema=2.18.1=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 - - pyzmq=25.1.1=py310hdaec954_1 + - pyzmq=25.1.1=py310h014ca53_2 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.10.4=py310h057607a_0 + - rpds-py=0.13.1=py310h057607a_0 - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 - sagetex=3.6.1=pyhd8ed1ab_0 - send2trash=1.8.2=pyh41d4057_0 - - setuptools=63.4.3=py310hbbe02a8_0 + - setuptools=68.2.2=pyhd8ed1ab_0 - simplegeneric=0.8.1=py_1 - singular=4.2.1.p3=h3d4c4c6_2 - six=1.16.0=pyh6c4a22f_0 @@ -275,29 +271,30 @@ dependencies: - tbb=2021.9.0=h4c384f3_0 - tomli=2.0.1=pyhd8ed1ab_0 - tornado=6.3.3=py310h7c1f4a2_1 - - traitlets=5.11.2=pyhd8ed1ab_0 - - trove-classifiers=2023.9.19=pyhd8ed1ab_0 + - traitlets=5.13.0=pyhd8ed1ab_0 + - trove-classifiers=2023.11.22=pyhd8ed1ab_0 - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 - typing_extensions=4.8.0=pyha770c72_0 - typing_utils=0.1.0=pyhd8ed1ab_0 - - tzlocal=5.1=py310h4c7bcd0_0 + - tzlocal=5.2=py310h4c7bcd0_0 - unicodedata2=15.1.0=py310hb299538_0 - uri-template=1.3.0=pyhd8ed1ab_0 - vcversioner=2.16.0.0=py_1 + - wcwidth=0.2.12=pyhd8ed1ab_0 - webcolors=1.13=pyhd8ed1ab_0 - webencodings=0.5.1=pyhd8ed1ab_2 - websocket-client=1.6.4=pyhd8ed1ab_0 - - wheel=0.41.2=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 - zipp=3.17.0=pyhd8ed1ab_0 - - anyio=4.0.0=pyhd8ed1ab_0 - - asttokens=2.4.0=pyhd8ed1ab_0 + - anyio=4.1.0=pyhd8ed1ab_0 + - asttokens=2.4.1=pyhd8ed1ab_0 - async-lru=2.0.4=pyhd8ed1ab_0 - - babel=2.12.1=pyhd8ed1ab_1 - - backports.functools_lru_cache=1.6.5=pyhd8ed1ab_0 + - babel=2.13.1=pyhd8ed1ab_0 - beautifulsoup4=4.12.2=pyha770c72_0 - beniget=0.4.1=pyhd8ed1ab_0 - bleach=6.1.0=pyhd8ed1ab_0 @@ -309,44 +306,44 @@ dependencies: - comm=0.1.4=pyhd8ed1ab_0 - cppy=1.2.1=pyhd8ed1ab_0 - curl=8.1.2=hc34909b_0 - - cxx-compiler=1.6.0=h2a328a1_0 - cypari2=2.1.3=py310h4cbba44_2 - deprecation=2.1.0=pyh9f0ad1d_0 - - fonttools=4.43.1=py310hb299538_0 + - fonttools=4.45.1=py310hb299538_0 - fortran-compiler=1.6.0=h7048d53_0 - importlib-metadata=6.8.0=pyha770c72_0 - - importlib_resources=6.1.0=pyhd8ed1ab_0 + - importlib_resources=6.1.1=pyhd8ed1ab_0 - jedi=0.19.1=pyhd8ed1ab_0 - jinja2=3.1.2=pyhd8ed1ab_1 - - jupyterlab_pygments=0.2.2=pyhd8ed1ab_0 - - libcblas=3.9.0=17_linuxaarch64_openblas + - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 + - libcblas=3.9.0=20_linuxaarch64_openblas - libgd=2.3.3=h99c6b3b_4 - - liblapack=3.9.0=17_linuxaarch64_openblas + - liblapack=3.9.0=20_linuxaarch64_openblas - matplotlib-inline=0.1.6=pyhd8ed1ab_0 - - memory-allocator=0.1.2=py310h761cc84_2 + - 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.2.1=pyhd8ed1ab_0 + - pip=23.3.1=pyhd8ed1ab_0 + - platformdirs=4.0.0=pyhd8ed1ab_0 - pplpy=0.8.7=py310hd5c817c_0 - primecountpy=0.1.0=py310h586407a_4 + - prompt-toolkit=3.0.24=pyha770c72_0 - pybind11=2.11.1=py310h586407a_2 - pyproject-api=1.6.1=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - pytz-deprecation-shim=0.1.0.post0=py310h4c7bcd0_4 - - referencing=0.30.2=pyhd8ed1ab_0 + - referencing=0.31.0=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - sagemath-db-conway-polynomials=0.5.0=h4fd8a4c_1 - sympy=1.12=pypyh9d50eac_103 - - terminado=0.17.1=pyh41d4057_0 + - terminado=0.18.0=pyh0d859eb_0 - tinycss2=1.2.1=pyhd8ed1ab_0 - typing-extensions=4.8.0=hd8ed1ab_0 - - urllib3=2.0.6=pyhd8ed1ab_0 + - urllib3=2.1.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 - fflas-ffpack=2.4.3=hf104d39_2 - fqdn=1.5.1=pyhd8ed1ab_0 @@ -354,66 +351,61 @@ dependencies: - harfbuzz=6.0.0=hbcb8a4f_0 - hatchling=1.18.0=pyhd8ed1ab_0 - iml=1.0.5=h9076c59_1003 - - importlib-resources=6.1.0=pyhd8ed1ab_0 + - importlib-resources=6.1.1=pyhd8ed1ab_0 - importlib_metadata=6.8.0=hd8ed1ab_0 - - jsonschema-specifications=2023.7.1=pyhd8ed1ab_0 + - jsonschema-specifications=2023.11.1=pyhd8ed1ab_0 + - jupyter_core=5.5.0=py310h4c7bcd0_0 - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1 - - liblapacke=3.9.0=17_linuxaarch64_openblas - - numpy=1.26.0=py310hcbab775_0 - - platformdirs=3.11.0=pyhd8ed1ab_0 + - liblapacke=3.9.0=20_linuxaarch64_openblas + - numpy=1.26.2=py310hcbab775_0 + - prompt_toolkit=3.0.24=hd8ed1ab_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 - - wcwidth=0.2.8=pyhd8ed1ab_0 + - virtualenv=20.24.7=pyhd8ed1ab_0 - xorg-libxtst=1.2.3=hf897c2e_1002 - argon2-cffi=23.1.0=pyhd8ed1ab_0 - - blas-devel=3.9.0=17_linuxaarch64_openblas - - contourpy=1.1.1=py310h586407a_1 + - blas-devel=3.9.0=20_linuxaarch64_openblas + - contourpy=1.2.0=py310h586407a_0 - cvxopt=1.3.2=py310h536486b_1 - - fpylll=0.5.9=py310hde12f47_1 + - fpylll=0.6.0=py310hfdbf2a6_1 - giac=1.9.0.21=h04922a4_1 - igraph=0.9.10=hefb87a8_1 + - ipython=8.8.0=pyh41d4057_0 - isoduration=20.11.0=pyhd8ed1ab_0 - - jsonschema=4.19.1=pyhd8ed1ab_0 - - jupyter_core=5.3.2=py310h4c7bcd0_0 + - jsonschema=4.20.0=pyhd8ed1ab_0 + - jupyter_client=8.6.0=pyhd8ed1ab_0 - linbox=1.6.3=h31716a8_7 - openjdk=17.0.3=h1a274e0_5 - pango=1.50.14=h1f1e9b3_0 - - pooch=1.7.0=pyhd8ed1ab_4 - - prompt-toolkit=3.0.39=pyha770c72_0 - pythran=0.14.0=py310h5e48e15_1 + - scipy=1.11.3=py310hcbab775_1 - setuptools_scm=8.0.4=hd8ed1ab_0 - - virtualenv=20.24.4=pyhd8ed1ab_0 - - blas=2.117=openblas + - tox=4.11.3=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.19.1=pyhd8ed1ab_0 - - jupyter_client=8.3.1=pyhd8ed1ab_0 - - matplotlib-base=3.8.0=py310h0a7f329_1 + - jsonschema-with-format-nongpl=4.20.0=pyhd8ed1ab_0 + - matplotlib-base=3.8.2=py310h0a7f329_0 - nbformat=5.9.2=pyhd8ed1ab_0 - - prompt_toolkit=3.0.39=hd8ed1ab_0 - r-base=4.2.3=h620ca72_0 - rw=0.9=hf897c2e_0 - - scipy=1.10.1=py310h7f380f4_3 - - tox=4.11.3=pyhd8ed1ab_0 - - ipython=8.16.1=pyh0d859eb_0 - - jupyter_events=0.7.0=pyhd8ed1ab_2 - - matplotlib=3.8.0=py310hbbe02a8_1 + - 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 - - ipykernel=6.25.2=pyh2140261_0 - - nbconvert-core=7.9.2=pyhd8ed1ab_0 - - jupyter_server=2.7.3=pyhd8ed1ab_1 - - nbconvert-pandoc=7.9.2=pyhd8ed1ab_0 + - nbconvert-core=7.11.0=pyhd8ed1ab_0 + - jupyter_server=2.10.1=pyhd8ed1ab_0 + - nbconvert-pandoc=7.11.0=pyhd8ed1ab_0 - jupyter-lsp=2.2.0=pyhd8ed1ab_0 - - jupyterlab_server=2.25.0=pyhd8ed1ab_0 - - nbconvert=7.9.2=pyhd8ed1ab_0 + - jupyterlab_server=2.25.2=pyhd8ed1ab_0 + - nbconvert=7.11.0=pyhd8ed1ab_0 - notebook-shim=0.2.3=pyhd8ed1ab_0 - - jupyterlab=4.0.6=pyhd8ed1ab_0 - - notebook=7.0.4=pyhd8ed1ab_0 - - widgetsnbextension=3.6.6=pyhd8ed1ab_0 - - ipywidgets=7.8.0=pyhd8ed1ab_0 - - jupyter-jsmol=2022.1.0=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 diff --git a/src/environment-3.10-linux.yml b/src/environment-3.10-linux.yml index ad418661b96..a29b7f6e90d 100644 --- a/src/environment-3.10-linux.yml +++ b/src/environment-3.10-linux.yml @@ -1,23 +1,23 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: 5f66672bf84b78a0906895b15392be9210c8addc4afcffec740babb8674dcf04 +# input_hash: 39332fde0a8df8a2cc800bd79bddff293a535f2a94d46a827e103fad057c59c8 channels: - conda-forge dependencies: - _libgcc_mutex=0.1=conda_forge - _r-mutex=1.0.1=anacondar_1 - - ca-certificates=2023.7.22=hbcca054_0 + - ca-certificates=2023.11.17=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=hab24e00_0 + - font-ttf-ubuntu=0.83=h77eed37_1 - kernel-headers_linux-64=2.6.32=he073ed8_16 - ld_impl_linux-64=2.40=h41732ed_0 - - libboost-headers=1.82.0=ha770c72_6 - - libgcc-devel_linux-64=12.3.0=h8bca6fd_2 - - libstdcxx-devel_linux-64=12.3.0=h8bca6fd_2 - - libstdcxx-ng=13.2.0=h7e041cc_2 + - libboost-headers=1.83.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 - pari-elldata=0.0.20161017=0 - pari-galdata=0.0.20180411=0 @@ -30,7 +30,7 @@ dependencies: - three.js=122=hd8ed1ab_2 - tzdata=2023c=h71feb2d_0 - fonts-conda-forge=1=0 - - libgomp=13.2.0=h807b86a_2 + - libgomp=13.2.0=h807b86a_3 - pari-seadata=0.0.20090618=0 - sysroot_linux-64=2.12=he073ed8_16 - threejs-sage=122=hd8ed1ab_2 @@ -39,19 +39,19 @@ dependencies: - 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_2 + - libgcc-ng=13.2.0=h807b86a_3 - alsa-lib=1.2.10=hd590300_0 - attr=2.5.1=h166bdaf_1 - bdw-gc=8.0.6=h4bd325d_0 - - bzip2=1.0.8=h7f98852_4 - - c-ares=1.19.1=hd590300_0 + - bzip2=1.0.8=hd590300_5 + - c-ares=1.22.1=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.2.1=h58526e2_0 + - gmp=6.3.0=h59595ed_0 - graphite2=1.3.13=h58526e2_1001 - icu=73.2=h59595ed_0 - keyutils=1.6.1=h166bdaf_0 @@ -64,13 +64,13 @@ dependencies: - libev=4.33=h516909a_1 - libexpat=2.5.0=hcb278e6_1 - libffi=3.4.2=h7f98852_5 - - libgfortran5=13.2.0=ha4646dd_2 + - libgfortran5=13.2.0=ha4646dd_3 - libiconv=1.17=h166bdaf_0 - - libjpeg-turbo=2.1.5.1=hd590300_1 - - libnsl=2.0.0=hd590300_1 + - 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_2 + - libsanitizer=12.3.0=h0f45ef3_3 - libsodium=1.0.18=h36c2ea0_1 - libtool=2.4.7=h27087fc_0 - libuuid=2.38.1=h0b41bf4_0 @@ -84,10 +84,10 @@ dependencies: - metis=5.1.0=h59595ed_1007 - mpg123=1.32.3=h59595ed_0 - nauty=2.7.2=h7f98852_0 - - ncurses=6.4=hcb278e6_0 + - ncurses=6.4=h59595ed_2 - ninja=1.11.1=h924138e_0 - nspr=4.35=h27087fc_0 - - openssl=3.1.3=hd590300_0 + - openssl=3.2.0=hd590300_0 - palp=2.20=h36c2ea0_0 - patch=2.7.6=h7f98852_1002 - pixman=0.42.2=h59595ed_0 @@ -114,7 +114,7 @@ dependencies: - 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_2 + - gcc_impl_linux-64=12.3.0=he2b93b0_3 - givaro=4.1.1=h192cbe9_1 - glpk=5.0=h445213a_0 - libbrotlidec=1.1.0=hd590300_1 @@ -123,27 +123,27 @@ dependencies: - libedit=3.1.20191231=he28a2e2_2 - libevent=2.1.12=hf998b51_1 - libflac=1.4.3=h59595ed_0 - - libgfortran-ng=13.2.0=h69a702a_2 + - libgfortran-ng=13.2.0=h69a702a_3 - libgpg-error=1.47=h71f35ed_0 - libhomfly=1.02r6=h36c2ea0_0 - - libnghttp2=1.52.0=h61bc06f_0 + - libnghttp2=1.58.0=h47da74e_0 - libpng=1.6.39=h753d276_0 - - libsqlite=3.43.0=h2797004_0 + - libsqlite=3.44.2=h2797004_0 - libssh2=1.11.0=h0841786_0 - libvorbis=1.3.7=h9c3ff4c_0 - libxcb=1.15=h0b41bf4_0 - - libxml2=2.11.5=h232c23b_1 - - mpfr=4.2.0=hb012696_0 - - mysql-common=8.0.33=hf1915f5_5 + - libxml2=2.11.6=h232c23b_0 + - mpfr=4.2.1=h9458935_0 + - mysql-common=8.0.33=hf1915f5_6 - ntl=11.4.3=hef3c4d3_1 - - pcre2=10.40=hc3806b6_0 + - pcre2=10.42=hcad00b1_0 - perl=5.32.1=4_hd590300_perl5 - primecount=7.9=hcb278e6_0 - readline=8.2=h8228510_1 - - tk=8.6.13=h2797004_0 + - tk=8.6.13=noxft_h4845f30_101 - xorg-fixesproto=5.0=h7f98852_1002 - xorg-libsm=1.2.4=h7391055_0 - - zeromq=4.3.4=h9c3ff4c_1 + - zeromq=4.3.5=h59595ed_0 - zlib=1.2.13=hd590300_5 - zstd=1.5.5=hfc55251_0 - autoconf=2.71=pl5321h2b4cb7a_1 @@ -156,31 +156,31 @@ dependencies: - 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_2 - - gxx_impl_linux-64=12.3.0=he2b93b0_2 + - gfortran_impl_linux-64=12.3.0=hfcedea8_3 + - gxx_impl_linux-64=12.3.0=he2b93b0_3 - igraph=0.7.1=0 - krb5=1.21.2=h659d440_0 - - libboost=1.82.0=h6fcfa73_6 + - libboost=1.83.0=h6fcfa73_0 - libflint=2.9.0=h2f819a4_ntl_100 - - libgcrypt=1.10.1=h166bdaf_0 - - libglib=2.78.0=hebfc3b9_0 + - libgcrypt=1.10.2=hd590300_0 + - libglib=2.78.1=h783c2da_1 - libhwloc=2.9.3=default_h554bfaf_1009 - libllvm15=15.0.7=h5cf9203_3 - - libopenblas=0.3.24=pthreads_h413a1c8_0 + - libopenblas=0.3.25=pthreads_h413a1c8_0 - libsndfile=1.2.2=hc60ed4a_1 - - libtiff=4.6.0=h29866fb_1 - - llvm-openmp=17.0.2=h4dfa4b3_0 + - libtiff=4.6.0=ha9c0a0a_2 + - llvm-openmp=17.0.5=h4dfa4b3_0 - m4ri=20140914=h7ca028e_1005 - mpc=1.3.1=hfe3b2da_0 - mpfi=1.5.4=h9f54685_1001 - - mysql-libs=8.0.33=hca2cd23_5 + - mysql-libs=8.0.33=hca2cd23_6 - nss=3.94=h1d7d5a4_0 - pandoc=3.1.3=h32600fe_0 - pari=2.15.4=h4d4ae9b_2_pthread - ppl=1.2=h6ec01c2_1006 - - python=3.10.12=hd12c33a_0_cpython + - python=3.10.13=hd12c33a_0_cpython - qd=2.3.22=h2cc385e_1004 - - sqlite=3.43.0=h2c6b66d_0 + - sqlite=3.44.2=h2c6b66d_0 - tachyon=0.99b6=0 - texinfo=7.0=pl5321h0f457ee_0 - tktable=2.10=h0c5db8f_5 @@ -188,7 +188,7 @@ dependencies: - 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.6=h8ee46fc_0 + - 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 @@ -196,19 +196,18 @@ dependencies: - attrs=23.1.0=pyh71513ae_1 - automake=1.16.5=pl5321ha770c72_0 - backcall=0.2.0=pyh9f0ad1d_0 - - backports=1.0=pyhd8ed1ab_3 - 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.1=pyhd8ed1ab_0 - - certifi=2023.7.22=pyhd8ed1ab_0 + - cachetools=5.3.2=pyhd8ed1ab_0 + - certifi=2023.11.17=pyhd8ed1ab_0 - chardet=5.2.0=py310hff52083_1 - - charset-normalizer=3.3.0=pyhd8ed1ab_0 + - charset-normalizer=3.3.2=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_0 - cycler=0.12.1=pyhd8ed1ab_0 - cysignals=1.11.2=py310h945e7c7_3 - - cython=3.0.2=py310hc6cd4ac_2 + - cython=3.0.6=py310hc6cd4ac_0 - dbus=1.13.6=h5008d03_3 - debugpy=1.8.0=py310hc6cd4ac_1 - decorator=5.1.1=pyhd8ed1ab_0 @@ -218,46 +217,46 @@ dependencies: - eclib=20230424=hdef1efb_0 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 - - exceptiongroup=1.1.3=pyhd8ed1ab_0 - - executing=1.2.0=pyhd8ed1ab_0 - - filelock=3.12.4=pyhd8ed1ab_0 + - exceptiongroup=1.2.0=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.4=h8780c30_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.0=hfc55251_0 + - glib-tools=2.78.1=hfc55251_1 - gmpy2=2.1.2=py310h3ec546c_1 - gxx_linux-64=12.3.0=h8a814eb_2 - - idna=3.4=pyhd8ed1ab_0 + - 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=1.1.7=pyhd8ed1ab_0 + - jupyterlab_widgets=3.0.9=pyhd8ed1ab_0 - kiwisolver=1.4.5=py310hd41b1e2_1 - lcalc=2.0.5=h6a8a7c6_1 - - lcms2=2.15=h7f713cb_2 - - libblas=3.9.0=18_linux64_openblas - - libboost-devel=1.82.0=h00ab1b0_6 + - lcms2=2.15=hb7c19ff_3 + - libblas=3.9.0=20_linux64_openblas + - libboost-devel=1.83.0=h00ab1b0_0 - libbrial=1.2.12=h3155cbd_1 - libclang13=15.0.7=default_h9986a30_3 - libcups=2.3.3=h4637d8d_4 - - libcurl=8.3.0=hca28451_0 - - libpq=15.4=hfc447b1_2 + - libcurl=8.4.0=hca28451_0 + - libpq=16.1=hfc447b1_0 - libsystemd0=254=h3516f8a_0 - - libwebp=1.3.2=hdffd6e0_0 + - libwebp=1.3.2=h658648e_1 - m4rie=20150908=h7ca028e_1001 - markupsafe=2.1.3=py310h2372a71_1 - maxima=5.45.0=h9d73b02_3 - - mistune=3.0.1=pyhd8ed1ab_0 + - mistune=3.0.2=pyhd8ed1ab_0 - mpmath=1.3.0=pyhd8ed1ab_0 - munkres=1.1.4=pyh9f0ad1d_0 - - nest-asyncio=1.5.6=pyhd8ed1ab_0 - - networkx=2.8.8=pyhd8ed1ab_0 - - openblas=0.3.24=pthreads_h7a3da1a_0 + - nest-asyncio=1.5.8=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 @@ -268,31 +267,31 @@ dependencies: - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 - pluggy=1.3.0=pyhd8ed1ab_0 - ply=3.11=py_1 - - prometheus_client=0.17.1=pyhd8ed1ab_0 + - prometheus_client=0.19.0=pyhd8ed1ab_0 - psutil=5.9.5=py310h2372a71_1 - 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.16.1=pyhd8ed1ab_0 + - pygments=2.17.2=pyhd8ed1ab_0 - pyparsing=3.1.1=pyhd8ed1ab_0 - - pyrsistent=0.19.3=py310h2372a71_1 + - pyrsistent=0.20.0=py310h2372a71_0 - pysocks=1.7.1=pyha2e5f31_6 - - python-fastjsonschema=2.18.1=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 - - pyzmq=25.1.1=py310h5bbb5d0_1 + - pyzmq=25.1.1=py310h795f18f_2 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.10.4=py310hcb5633a_0 + - rpds-py=0.13.1=py310hcb5633a_0 - rw=0.8=h516909a_1001 - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 - sagetex=3.6.1=pyhd8ed1ab_0 - send2trash=1.8.2=pyh41d4057_0 - - setuptools=63.4.3=py310hff52083_0 + - setuptools=68.2.2=pyhd8ed1ab_0 - simplegeneric=0.8.1=py_1 - singular=4.2.1.p3=h1ea75ed_2 - six=1.16.0=pyh6c4a22f_0 @@ -301,23 +300,25 @@ dependencies: - soupsieve=2.5=pyhd8ed1ab_1 - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_0 - sympow=2.023.6=hc6ab17c_3 - - tbb=2021.10.0=h00ab1b0_1 + - tbb=2021.10.0=h00ab1b0_2 - toml=0.10.2=pyhd8ed1ab_0 - tomli=2.0.1=pyhd8ed1ab_0 - tornado=6.3.3=py310h2372a71_1 - - traitlets=5.11.2=pyhd8ed1ab_0 - - trove-classifiers=2023.9.19=pyhd8ed1ab_0 + - traitlets=5.13.0=pyhd8ed1ab_0 + - trove-classifiers=2023.11.22=pyhd8ed1ab_0 - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 - typing_extensions=4.8.0=pyha770c72_0 - typing_utils=0.1.0=pyhd8ed1ab_0 - - tzlocal=5.1=py310hff52083_0 + - tzlocal=5.2=py310hff52083_0 - unicodedata2=15.1.0=py310h2372a71_0 - uri-template=1.3.0=pyhd8ed1ab_0 - vcversioner=2.16.0.0=py_1 + - wcwidth=0.2.12=pyhd8ed1ab_0 - webcolors=1.13=pyhd8ed1ab_0 - webencodings=0.5.1=pyhd8ed1ab_2 - websocket-client=1.6.4=pyhd8ed1ab_0 - - wheel=0.41.2=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 @@ -325,60 +326,61 @@ dependencies: - xorg-libxrender=0.9.11=hd590300_0 - xorg-libxt=1.3.0=hd590300_1 - zipp=3.17.0=pyhd8ed1ab_0 - - anyio=4.0.0=pyhd8ed1ab_0 - - asttokens=2.4.0=pyhd8ed1ab_0 + - anyio=4.1.0=pyhd8ed1ab_0 + - asttokens=2.4.1=pyhd8ed1ab_0 - async-lru=2.0.4=pyhd8ed1ab_0 - - babel=2.12.1=pyhd8ed1ab_1 - - backports.functools_lru_cache=1.6.5=pyhd8ed1ab_0 + - babel=2.13.1=pyhd8ed1ab_0 - beautifulsoup4=4.12.2=pyha770c72_0 - beniget=0.4.1=pyhd8ed1ab_0 - bleach=6.1.0=pyhd8ed1ab_0 - - boost-cpp=1.82.0=h44aadfe_6 + - boost-cpp=1.83.0=h44aadfe_0 - brial=1.2.12=pyh694c41f_1 - cached-property=1.5.2=hd8ed1ab_1 - - cairo=1.16.0=h0c91306_1017 + - cairo=1.18.0=h3faef2a_0 - cffi=1.16.0=py310h2fee648_0 - - cmake=3.27.6=hcfe8598_0 + - cmake=3.27.8=hcfe8598_0 - comm=0.1.4=pyhd8ed1ab_0 - cppy=1.2.1=pyhd8ed1ab_0 - - curl=8.3.0=hca28451_0 + - curl=8.4.0=hca28451_0 - cypari2=2.1.3=py310h14ed79e_2 - deprecation=2.1.0=pyh9f0ad1d_0 - - fonttools=4.43.1=py310h2372a71_0 + - fonttools=4.45.1=py310h2372a71_0 - fortran-compiler=1.6.0=heb67821_0 - - glib=2.78.0=hfc55251_0 + - glib=2.78.1=hfc55251_1 - importlib-metadata=6.8.0=pyha770c72_0 - - importlib_resources=6.1.0=pyhd8ed1ab_0 + - importlib_resources=6.1.1=pyhd8ed1ab_0 - jedi=0.19.1=pyhd8ed1ab_0 - jinja2=3.1.2=pyhd8ed1ab_1 - - jupyterlab_pygments=0.2.2=pyhd8ed1ab_0 - - libcblas=3.9.0=18_linux64_openblas + - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 + - libcblas=3.9.0=20_linux64_openblas - libclang=15.0.7=default_h7634d5b_3 - - libgd=2.3.3=he9388d3_8 - - liblapack=3.9.0=18_linux64_openblas + - 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.2=py310h5764c6d_2 + - memory-allocator=0.1.3=py310h2372a71_0 - overrides=7.4.0=pyhd8ed1ab_0 - pexpect=4.8.0=pyh1a96a4e_2 - - pillow=10.0.1=py310h29da1c1_1 - - pip=23.2.1=pyhd8ed1ab_0 + - pillow=10.1.0=py310h01dd4db_0 + - pip=23.3.1=pyhd8ed1ab_0 + - platformdirs=4.0.0=pyhd8ed1ab_0 - pplpy=0.8.7=py310h28f6eb6_0 - primecountpy=0.1.0=py310hd41b1e2_4 + - prompt-toolkit=3.0.24=pyha770c72_0 - pulseaudio-client=16.1=hb77b528_5 - pybind11=2.11.1=py310hd41b1e2_2 - pyproject-api=1.6.1=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - pytz-deprecation-shim=0.1.0.post0=py310hff52083_4 - - referencing=0.30.2=pyhd8ed1ab_0 + - referencing=0.31.0=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - sagemath-db-conway-polynomials=0.5.0=ha878542_1 - - sip=6.7.11=py310hc6cd4ac_1 + - sip=6.7.12=py310hc6cd4ac_0 - sympy=1.12=pypyh9d50eac_103 - - terminado=0.17.1=pyh41d4057_0 + - terminado=0.18.0=pyh0d859eb_0 - tinycss2=1.2.1=pyhd8ed1ab_0 - typing-extensions=4.8.0=hd8ed1ab_0 - - urllib3=2.0.6=pyhd8ed1ab_0 + - urllib3=2.1.0=pyhd8ed1ab_0 - xorg-libxi=1.7.10=h7f98852_0 - argon2-cffi-bindings=21.2.0=py310h2372a71_4 - arrow=1.3.0=pyhd8ed1ab_0 @@ -386,72 +388,67 @@ dependencies: - fflas-ffpack=2.4.3=h912ac81_2 - fqdn=1.5.1=pyhd8ed1ab_0 - gsl=2.7=he838d99_0 - - gstreamer=1.22.6=h98fc4e7_2 - - harfbuzz=8.2.1=h3d44ed6_0 + - gstreamer=1.22.7=h98fc4e7_0 + - harfbuzz=8.3.0=h3d44ed6_0 - hatchling=1.18.0=pyhd8ed1ab_0 - iml=1.0.5=hd75c201_1003 - - importlib-resources=6.1.0=pyhd8ed1ab_0 + - importlib-resources=6.1.1=pyhd8ed1ab_0 - importlib_metadata=6.8.0=hd8ed1ab_0 - - jsonschema-specifications=2023.7.1=pyhd8ed1ab_0 + - jsonschema-specifications=2023.11.1=pyhd8ed1ab_0 + - jupyter_core=5.5.0=py310hff52083_0 - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1 - - liblapacke=3.9.0=18_linux64_openblas - - numpy=1.26.0=py310hb13e2d6_0 - - platformdirs=3.11.0=pyhd8ed1ab_0 + - liblapacke=3.9.0=20_linux64_openblas + - numpy=1.26.2=py310hb13e2d6_0 + - prompt_toolkit=3.0.24=hd8ed1ab_0 - pyqt5-sip=12.12.2=py310hc6cd4ac_5 - requests=2.31.0=pyhd8ed1ab_0 - setuptools-scm=8.0.4=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 - suitesparse=5.10.1=h9e50725_1 - - wcwidth=0.2.8=pyhd8ed1ab_0 + - virtualenv=20.24.7=pyhd8ed1ab_0 - xorg-libxtst=1.2.3=h7f98852_1002 - argon2-cffi=23.1.0=pyhd8ed1ab_0 - - blas-devel=3.9.0=18_linux64_openblas - - contourpy=1.1.1=py310hd41b1e2_1 + - blas-devel=3.9.0=20_linux64_openblas + - contourpy=1.2.0=py310hd41b1e2_0 - cvxopt=1.3.2=py310h14a12bf_1 - - fpylll=0.5.9=py310h0dadf69_1 + - fpylll=0.6.0=py310h7e26f94_1 - giac=1.9.0.21=h673759e_1 - - gst-plugins-base=1.22.6=h8e1006c_2 + - gst-plugins-base=1.22.7=h8e1006c_0 + - ipython=8.8.0=pyh41d4057_0 - isoduration=20.11.0=pyhd8ed1ab_0 - - jsonschema=4.19.1=pyhd8ed1ab_0 - - jupyter_core=5.3.2=py310hff52083_0 + - jsonschema=4.20.0=pyhd8ed1ab_0 + - jupyter_client=8.6.0=pyhd8ed1ab_0 - linbox=1.6.3=h9d78c56_7 - - openjdk=20.0.2=hfea2f88_1 + - openjdk=21.0.1=haa376d0_0 - pango=1.50.14=ha41ecd1_2 - - pooch=1.7.0=pyhd8ed1ab_4 - - prompt-toolkit=3.0.39=pyha770c72_0 - pythran=0.14.0=py310hcb52e73_1 + - scipy=1.11.4=py310hb13e2d6_0 - setuptools_scm=8.0.4=hd8ed1ab_0 - - virtualenv=20.24.4=pyhd8ed1ab_0 - - blas=2.118=openblas + - tox=4.11.3=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.19.1=pyhd8ed1ab_0 - - jupyter_client=8.3.1=pyhd8ed1ab_0 - - matplotlib-base=3.8.0=py310h62c0568_1 + - jsonschema-with-format-nongpl=4.20.0=pyhd8ed1ab_0 + - matplotlib-base=3.8.2=py310h62c0568_0 - nbformat=5.9.2=pyhd8ed1ab_0 - - prompt_toolkit=3.0.39=hd8ed1ab_0 - - qt-main=5.15.8=hc47bfe8_16 - - r-base=4.3.1=h639d9d3_5 - - scipy=1.10.1=py310ha4c1d20_3 - - tox=4.11.3=pyhd8ed1ab_0 - - ipython=8.16.1=pyh0d859eb_0 - - jupyter_events=0.7.0=pyhd8ed1ab_2 + - qt-main=5.15.8=h82b777d_17 + - r-base=4.3.2=hb8ee39d_1 + - 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 - - ipykernel=6.25.2=pyh2140261_0 - - matplotlib=3.8.0=py310hff52083_1 - - nbconvert-core=7.9.2=pyhd8ed1ab_0 - - jupyter_server=2.7.3=pyhd8ed1ab_1 - - nbconvert-pandoc=7.9.2=pyhd8ed1ab_0 + - matplotlib=3.8.2=py310hff52083_0 + - nbconvert-core=7.11.0=pyhd8ed1ab_0 + - jupyter_server=2.10.1=pyhd8ed1ab_0 + - nbconvert-pandoc=7.11.0=pyhd8ed1ab_0 - jupyter-lsp=2.2.0=pyhd8ed1ab_0 - - jupyterlab_server=2.25.0=pyhd8ed1ab_0 - - nbconvert=7.9.2=pyhd8ed1ab_0 + - jupyterlab_server=2.25.2=pyhd8ed1ab_0 + - nbconvert=7.11.0=pyhd8ed1ab_0 - notebook-shim=0.2.3=pyhd8ed1ab_0 - - jupyterlab=4.0.6=pyhd8ed1ab_0 - - notebook=7.0.4=pyhd8ed1ab_0 - - widgetsnbextension=3.6.6=pyhd8ed1ab_0 - - ipywidgets=7.8.0=pyhd8ed1ab_0 - - jupyter-jsmol=2022.1.0=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 diff --git a/src/environment-3.10-macos-arm.yml b/src/environment-3.10-macos-arm64.yml similarity index 70% rename from src/environment-3.10-macos-arm.yml rename to src/environment-3.10-macos-arm64.yml index d9a30147634..f1d5f8bafe8 100644 --- a/src/environment-3.10-macos-arm.yml +++ b/src/environment-3.10-macos-arm64.yml @@ -1,20 +1,19 @@ # Generated by conda-lock. # platform: osx-arm64 -# input_hash: 63981a71c50eece93109eb42610d705f110b9e1a5958be7e7e5ccd5d2674f7a8 +# input_hash: 585071ed56d431dae82b97c5d5cf0b2e0379db8bf933d5ad6ac26f9191d930e2 channels: - conda-forge dependencies: - _r-mutex=1.0.1=anacondar_1 - - bc=1.07.1=h3422bc3_0 - - bzip2=1.0.8=h3422bc3_4 - - c-ares=1.20.1=h93a5062_0 - - ca-certificates=2023.7.22=hf0a4a13_0 + - bzip2=1.0.8=h93a5062_5 + - c-ares=1.22.1=h93a5062_0 + - ca-certificates=2023.11.17=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=hab24e00_0 + - font-ttf-ubuntu=0.83=h77eed37_1 - fribidi=1.0.10=h27ca646_0 - giflib=5.2.1=h1a8c8d9_3 - jpeg=9e=h1a8c8d9_3 @@ -32,13 +31,12 @@ dependencies: - libuv=1.46.0=hb547adb_0 - libwebp-base=1.2.4=h1a8c8d9_0 - libzlib=1.2.13=h53f4e23_5 - - llvm-openmp=17.0.2=h1c12783_0 + - llvm-openmp=17.0.5=hcd81f8e_0 - m4=1.4.18=h642e427_1001 - make=4.3=he57ea6c_1 - mathjax=3.2.2=hce30654_0 - metis=5.1.0=h13dd4ca_1007 - nauty=2.7.2=h3422bc3_0 - - ncurses=6.4=h7ea286d_0 - palp=2.20=h27ca646_0 - pandoc=3.1.3=hce30654_0 - pari-elldata=0.0.20161017=0 @@ -54,6 +52,7 @@ dependencies: - 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 - xorg-libxau=1.0.11=hb547adb_0 @@ -67,7 +66,7 @@ dependencies: - gengetopt=2.23=hbdafb3b_0 - gettext=0.21.1=h0186832_0 - gf2x=1.3.0=hdaa854c_2 - - gmp=6.2.1=h9f76cd9_0 + - gmp=6.3.0=h965bd2d_0 - graphite2=1.3.13=h9f76cd9_1001 - icu=70.1=h6b3803e_0 - isl=0.25=h9a09cb3_0 @@ -75,29 +74,25 @@ dependencies: - libbraiding=1.1=h9f76cd9_0 - libbrotlidec=1.1.0=hb547adb_1 - libbrotlienc=1.1.0=hb547adb_1 - - libedit=3.1.20191231=hc8eb9b7_2 - libgfortran5=13.2.0=hf226fd6_1 - libpng=1.6.39=h76d750c_0 - - libsqlite=3.43.0=hb31c410_0 + - libsqlite=3.44.2=h091b4b1_0 - libxcb=1.13=h9b22ae9_1004 - lrcalc=2.1=hb7217d7_5 + - ncurses=6.4=h463b476_2 - ninja=1.11.1=hffc8910_0 - - openjdk=20.0.2=hbe7ddab_2 - - openssl=3.1.3=h53f4e23_0 + - openjdk=21.0.1=hed44d8b_0 + - openssl=3.2.0=h0d3ecfb_0 - pari-seadata=0.0.20090618=0 - pcre2=10.40=hb34f9b4_0 - pixman=0.42.2=h13dd4ca_0 - primesieve=11.0=hb7217d7_0 - qhull=2020.2=hc021e02_2 - - readline=8.2=h92ec313_1 - symmetrica=3.0.1=hb7217d7_0 - tapi=1100.0.11=he4954df_0 - - tar=1.34=h7cb298e_1 - - tbb=2021.10.0=h1995070_1 - - texinfo=7.0=pl5321h9ea1dce_0 - threejs-sage=122=hd8ed1ab_2 - - tk=8.6.13=hb31c410_0 - - zeromq=4.3.4=hbdafb3b_1 + - 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 @@ -105,126 +100,144 @@ dependencies: - brotli-bin=1.1.0=hb547adb_1 - bwidget=1.9.14=hce30654_1 - cddlib=1!0.94m=h6d7a090_0 - - ecl=21.2.1=h8492d4d_2 - ecm=7.0.4=h47c7c1a_1002 - fonts-conda-ecosystem=1=0 - freetype=2.12.1=hadb7bae_2 - - gap-core=4.12.2=he8f4e70_3 - givaro=4.1.1=h0cdca34_3 - glpk=5.0=h6d7a090_0 - jmol=14.32.10=hce30654_0 - - krb5=1.20.1=h69eda48_0 + - libedit=3.1.20191231=hc8eb9b7_2 - libgfortran=5.0.0=13_2_0_hd922786_1 - - libglib=2.78.0=h24e9cb9_0 + - libglib=2.78.1=hd9b11f9_0 - libhomfly=1.02r6=h27ca646_0 - - libnghttp2=1.52.0=hae82a92_0 + - libnghttp2=1.58.0=ha4dd798_0 - libssh2=1.11.0=h7a5bd25_0 - libtiff=4.5.0=h5dffbdd_2 - libxml2=2.10.3=h67585b2_4 - m4ri=20140914=h17b34a0_1005 - - mpfr=4.2.0=he09a6ba_0 + - mpfr=4.2.1=h9546428_0 - ntl=11.4.3=hbb3f309_1 - - pari=2.15.4=haeeeed7_2_pthread - primecount=7.6=hb6e4faa_0 - - python=3.10.12=h01493a6_0_cpython + - readline=8.2=h92ec313_1 - sigtool=0.1.3=h44b9a77_0 - - sqlite=3.43.0=h203b68d_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 + - libbrial=1.2.12=ha7f5006_1 + - libflint=2.9.0=h173eafc_ntl_100 + - libllvm16=16.0.1=h1e5164c_0 + - libopenblas=0.3.25=openmp_h6c19121_0 + - libwebp=1.2.4=h999c80f_1 + - m4rie=20150908=h17b34a0_1001 + - mpc=1.3.1=h91ba8db_0 + - mpfi=1.5.4=hbde5f5b_1001 + - 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_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 + - arb=2.23.0=he5401aa_0 - attrs=23.1.0=pyh71513ae_1 - backcall=0.2.0=pyh9f0ad1d_0 - - backports=1.0=pyhd8ed1ab_3 - - brotli=1.1.0=hb547adb_1 + - brial=1.2.12=pyh694c41f_1 - brotli-python=1.1.0=py310h1253130_1 - cached_property=1.5.2=pyha770c72_1 - - cachetools=5.3.1=pyhd8ed1ab_0 - - certifi=2023.7.22=pyhd8ed1ab_0 + - cachetools=5.3.2=pyhd8ed1ab_0 + - cairo=1.16.0=h73a0509_1014 + - certifi=2023.11.17=pyhd8ed1ab_0 - chardet=5.2.0=py310hbe9552e_1 - - charset-normalizer=3.3.0=pyhd8ed1ab_0 + - charset-normalizer=3.3.2=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_0 - cycler=0.12.1=pyhd8ed1ab_0 - cysignals=1.11.2=py310hfd3b3fe_3 - - cython=3.0.2=py310h1253130_2 + - cython=3.0.6=py310hd5a4765_0 - debugpy=1.8.0=py310h1253130_1 - decorator=5.1.1=pyhd8ed1ab_0 - defusedxml=0.7.1=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - docutils=0.20.1=py310hbe9552e_2 + - eclib=20230424=haeb5157_0 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 - - exceptiongroup=1.1.3=pyhd8ed1ab_0 - - executing=1.2.0=pyhd8ed1ab_0 - - fftw=3.3.10=nompi_h3046061_108 - - filelock=3.12.4=pyhd8ed1ab_0 + - exceptiongroup=1.2.0=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=h82840c6_0 + - fplll=5.4.5=hb7d509d_0 - gap-defaults=4.12.2=hce30654_3 - gast=0.5.4=pyhd8ed1ab_0 - - gfan=0.6.2=hec08f5c_1003 - - idna=3.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=1.1.7=pyhd8ed1ab_0 + - jupyterlab_widgets=3.0.9=pyhd8ed1ab_0 - kiwisolver=1.4.5=py310h38f39d4_1 - lcalc=2.0.5=hc94e8e6_1 - - lcms2=2.15=h481adae_0 - - libbrial=1.2.12=ha7f5006_1 + - ld64_osx-arm64=609=h297e91e_13 + - libblas=3.9.0=20_osxarm64_openblas + - libclang-cpp16=16.0.1=default_he7141eb_0 - libcurl=8.1.2=h912dcd9_0 - - libflint=2.9.0=h173eafc_ntl_100 - - libllvm15=15.0.7=h62b9111_1 - - libopenblas=0.3.24=openmp_hd76b1f2_0 - - libwebp=1.2.4=h999c80f_1 - - m4rie=20150908=h17b34a0_1001 + - libgd=2.3.3=h90fb8ed_4 + - llvm-tools=16.0.1=h1e5164c_0 - markupsafe=2.1.3=py310h2aa6e3c_1 - maxima=5.45.0=h6032a66_2 - - mistune=3.0.1=pyhd8ed1ab_0 - - mpc=1.3.1=h91ba8db_0 - - mpfi=1.5.4=hbde5f5b_1001 + - mistune=3.0.2=pyhd8ed1ab_0 - mpmath=1.3.0=pyhd8ed1ab_0 - munkres=1.1.4=pyh9f0ad1d_0 - - nest-asyncio=1.5.6=pyhd8ed1ab_0 - - networkx=2.8.8=pyhd8ed1ab_0 - - openjpeg=2.5.0=hbc2ba62_2 + - nest-asyncio=1.5.8=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.11.2=pyhd8ed1ab_0 - pickleshare=0.7.5=py_1003 - - pkg-config=0.29.2=hab62308_1008 + - pillow=9.4.0=py310h5a7539a_1 + - pkgconfig=1.5.5=pyhd8ed1ab_4 - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 - pluggy=1.3.0=pyhd8ed1ab_0 - ply=3.11=py_1 - - ppl=1.2=h8b147cf_1006 - - prometheus_client=0.17.1=pyhd8ed1ab_0 + - prometheus_client=0.19.0=pyhd8ed1ab_0 - psutil=5.9.5=py310h2aa6e3c_1 - 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.16.1=pyhd8ed1ab_0 + - pygments=2.17.2=pyhd8ed1ab_0 - pyparsing=3.1.1=pyhd8ed1ab_0 - - pyrsistent=0.19.3=py310h2aa6e3c_1 + - pyrsistent=0.20.0=py310hd125d64_0 - pysocks=1.7.1=pyha2e5f31_6 - - python-fastjsonschema=2.18.1=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 - - pyzmq=25.1.1=py310h30b7201_1 - - qd=2.3.22=hbec66e7_1004 + - pyzmq=25.1.1=py310h7e65269_2 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.10.4=py310hd442715_0 + - rpds-py=0.13.1=py310hd442715_0 - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 - sagetex=3.6.1=pyhd8ed1ab_0 - - setuptools=63.4.3=py310hbe9552e_0 + - setuptools=68.2.2=pyhd8ed1ab_0 - simplegeneric=0.8.1=py_1 + - singular=4.2.1.p3=h3b80c97_2 - six=1.16.0=pyh6c4a22f_0 - sniffio=1.3.0=pyhd8ed1ab_0 - snowballstemmer=2.2.0=pyhd8ed1ab_0 @@ -233,165 +246,144 @@ dependencies: - sympow=2.023.6=hb0babe8_3 - tomli=2.0.1=pyhd8ed1ab_0 - tornado=6.3.3=py310h2aa6e3c_1 - - traitlets=5.11.2=pyhd8ed1ab_0 - - trove-classifiers=2023.9.19=pyhd8ed1ab_0 + - traitlets=5.13.0=pyhd8ed1ab_0 + - trove-classifiers=2023.11.22=pyhd8ed1ab_0 - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 - typing_extensions=4.8.0=pyha770c72_0 - typing_utils=0.1.0=pyhd8ed1ab_0 - - tzlocal=5.1=py310hbe9552e_0 + - tzlocal=5.2=py310hbe9552e_0 - unicodedata2=15.1.0=py310h2aa6e3c_0 - uri-template=1.3.0=pyhd8ed1ab_0 - vcversioner=2.16.0.0=py_1 + - wcwidth=0.2.12=pyhd8ed1ab_0 - webcolors=1.13=pyhd8ed1ab_0 - webencodings=0.5.1=pyhd8ed1ab_2 - websocket-client=1.6.4=pyhd8ed1ab_0 - - wheel=0.41.2=pyhd8ed1ab_0 + - wheel=0.42.0=pyhd8ed1ab_0 + - widgetsnbextension=4.0.9=pyhd8ed1ab_0 - zipp=3.17.0=pyhd8ed1ab_0 - - anyio=4.0.0=pyhd8ed1ab_0 - - arb=2.23.0=he5401aa_0 - - asttokens=2.4.0=pyhd8ed1ab_0 + - anyio=4.1.0=pyhd8ed1ab_0 + - asttokens=2.4.1=pyhd8ed1ab_0 - async-lru=2.0.4=pyhd8ed1ab_0 - - babel=2.12.1=pyhd8ed1ab_1 - - backports.functools_lru_cache=1.6.5=pyhd8ed1ab_0 + - babel=2.13.1=pyhd8ed1ab_0 - beautifulsoup4=4.12.2=pyha770c72_0 - beniget=0.4.1=pyhd8ed1ab_0 - bleach=6.1.0=pyhd8ed1ab_0 - - brial=1.2.12=pyh694c41f_1 - cached-property=1.5.2=hd8ed1ab_1 - - cairo=1.16.0=h73a0509_1014 + - cctools_osx-arm64=973.0.1=h7a0f565_13 - cffi=1.16.0=py310hdcd7c05_0 + - clang-16=16.0.1=default_he7141eb_0 - 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 - - eclib=20230424=haeb5157_0 - - fonttools=4.43.1=py310hd125d64_0 - - fplll=5.4.4=h29209e0_0 - - gfortran_impl_osx-arm64=12.3.0=hbbb9e1e_1 - - gmpy2=2.1.2=py310h2e6cad2_1 + - fonttools=4.45.1=py310hd125d64_0 + - harfbuzz=6.0.0=hddbc195_0 - importlib-metadata=6.8.0=pyha770c72_0 - - importlib_resources=6.1.0=pyhd8ed1ab_0 + - importlib_resources=6.1.1=pyhd8ed1ab_0 - jedi=0.19.1=pyhd8ed1ab_0 - jinja2=3.1.2=pyhd8ed1ab_1 - - jupyterlab_pygments=0.2.2=pyhd8ed1ab_0 - - ld64_osx-arm64=609=hc4dc95b_14 - - libblas=3.9.0=18_osxarm64_openblas - - libclang-cpp15=15.0.7=default_h5dc8d65_3 - - libgd=2.3.3=h90fb8ed_4 - - llvm-tools=15.0.7=h62b9111_1 + - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 + - ld64=609=h634c8be_13 + - 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.2=py310h8e9501a_2 - - openblas=0.3.24=openmp_hce3e5ba_0 + - memory-allocator=0.1.3=py310h2aa6e3c_0 - overrides=7.4.0=pyhd8ed1ab_0 - pexpect=4.8.0=pyh1a96a4e_2 - - pillow=9.4.0=py310h5a7539a_1 - - pip=23.2.1=pyhd8ed1ab_0 - - pkgconfig=1.5.5=pyhd8ed1ab_4 + - pip=23.3.1=pyhd8ed1ab_0 + - platformdirs=4.0.0=pyhd8ed1ab_0 + - pplpy=0.8.7=py310h49c019d_0 - primecountpy=0.1.0=py310h38f39d4_4 + - prompt-toolkit=3.0.24=pyha770c72_0 - pybind11=2.11.1=py310h38f39d4_2 - pyobjc-core=10.0=py310hd07e440_0 - pyproject-api=1.6.1=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - pytz-deprecation-shim=0.1.0.post0=py310hbe9552e_4 - - referencing=0.30.2=pyhd8ed1ab_0 + - referencing=0.31.0=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - sagemath-db-conway-polynomials=0.5.0=h4653dfc_1 - - singular=4.2.1.p3=h3b80c97_2 - - terminado=0.17.1=pyhd1c38e8_0 + - sympy=1.12=pypyh9d50eac_103 + - terminado=0.18.0=pyh31c8845_0 - tinycss2=1.2.1=pyhd8ed1ab_0 - typing-extensions=4.8.0=hd8ed1ab_0 - - urllib3=2.0.6=pyhd8ed1ab_0 + - urllib3=2.1.0=pyhd8ed1ab_0 - argon2-cffi-bindings=21.2.0=py310h2aa6e3c_4 + - arpack=3.7.0=h58ebc17_2 - arrow=1.3.0=pyhd8ed1ab_0 - - cctools_osx-arm64=973.0.1=h2a25c60_14 - - clang-15=15.0.7=default_h5dc8d65_3 + - cctools=973.0.1=h4faf515_13 + - clang=16.0.1=h1e5164c_0 + - dsdp=5.8=h9397a75_1203 + - fflas-ffpack=2.4.3=h11f2abc_2 - fqdn=1.5.1=pyhd8ed1ab_0 - - harfbuzz=6.0.0=hddbc195_0 + - gsl=2.7=h6e638da_0 - hatchling=1.18.0=pyhd8ed1ab_0 - - importlib-resources=6.1.0=pyhd8ed1ab_0 + - iml=1.0.5=hd52f0d1_1003 + - importlib-resources=6.1.1=pyhd8ed1ab_0 - importlib_metadata=6.8.0=hd8ed1ab_0 - - jsonschema-specifications=2023.7.1=pyhd8ed1ab_0 + - jsonschema-specifications=2023.11.1=pyhd8ed1ab_0 + - jupyter_core=5.5.0=py310hbe9552e_0 - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1 - - ld64=609=h89fa09d_14 - - libcblas=3.9.0=18_osxarm64_openblas - - liblapack=3.9.0=18_osxarm64_openblas - - platformdirs=3.11.0=pyhd8ed1ab_0 - - pplpy=0.8.7=py310h49c019d_0 + - liblapacke=3.9.0=20_osxarm64_openblas + - numpy=1.26.2=py310h30ee222_0 + - pango=1.50.14=h6c112b8_0 + - prompt_toolkit=3.0.24=hd8ed1ab_0 - pyobjc-framework-cocoa=10.0=py310hd07e440_1 - requests=2.31.0=pyhd8ed1ab_0 - setuptools-scm=8.0.4=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 - - sympy=1.12=pypyh9d50eac_103 - - wcwidth=0.2.8=pyhd8ed1ab_0 - - argon2-cffi=23.1.0=pyhd8ed1ab_0 - - arpack=3.7.0=h58ebc17_2 - - cctools=973.0.1=hd1ac623_14 - - clang=15.0.7=hce30654_3 - - dsdp=5.8=h9397a75_1203 - - fflas-ffpack=2.4.3=h11f2abc_2 - - gsl=2.7=h6e638da_0 - - iml=1.0.5=hd52f0d1_1003 - - isoduration=20.11.0=pyhd8ed1ab_0 - - jsonschema=4.19.1=pyhd8ed1ab_0 - - jupyter_core=5.3.2=py310hbe9552e_0 - - liblapacke=3.9.0=18_osxarm64_openblas - - numpy=1.26.0=py310he2cad68_0 - - pango=1.50.14=h6c112b8_0 - - pooch=1.7.0=pyhd8ed1ab_4 - - prompt-toolkit=3.0.39=pyha770c72_0 - - send2trash=1.8.2=pyhd1c38e8_0 - - setuptools_scm=8.0.4=hd8ed1ab_0 - suitesparse=5.10.1=h7cd81ec_1 - - virtualenv=20.24.4=pyhd8ed1ab_0 - - blas-devel=3.9.0=18_osxarm64_openblas - - clangxx=15.0.7=default_h610c423_3 - - contourpy=1.1.1=py310h38f39d4_1 + - virtualenv=20.24.7=pyhd8ed1ab_0 + - argon2-cffi=23.1.0=pyhd8ed1ab_0 + - blas-devel=3.9.0=20_osxarm64_openblas + - clangxx=16.0.1=default_ha0f6327_0 + - contourpy=1.2.0=py310hd137fd4_0 - cvxopt=1.3.2=py310hadc6ad6_1 - - fpylll=0.5.9=py310hce2b5f8_1 + - fpylll=0.6.0=py310hc79cb59_1 - giac=1.9.0.21=h1c96721_1 - igraph=0.9.10=hcec9b84_1 - - jsonschema-with-format-nongpl=4.19.1=pyhd8ed1ab_0 - - jupyter_client=8.3.1=pyhd8ed1ab_0 + - ipython=8.8.0=pyhd1c38e8_0 + - isoduration=20.11.0=pyhd8ed1ab_0 + - jsonschema=4.20.0=pyhd8ed1ab_0 + - jupyter_client=8.6.0=pyhd8ed1ab_0 - linbox=1.6.3=h549c411_7 - - nbformat=5.9.2=pyhd8ed1ab_0 - - prompt_toolkit=3.0.39=hd8ed1ab_0 - - scipy=1.10.1=py310h0975f3d_3 + - scipy=1.11.4=py310h2b794db_0 + - send2trash=1.8.2=pyhd1c38e8_0 + - setuptools_scm=8.0.4=hd8ed1ab_0 - tox=4.11.3=pyhd8ed1ab_0 - - blas=2.118=openblas - - compiler-rt_osx-arm64=15.0.7=hf8d1dfb_1 - - ipython=8.16.1=pyh31c8845_0 - - jupyter_events=0.7.0=pyhd8ed1ab_2 - - matplotlib-base=3.8.0=py310hd1c642d_1 - - nbclient=0.8.0=pyhd8ed1ab_0 + - blas=2.120=openblas + - compiler-rt_osx-arm64=16.0.1=h30b49de_0 + - 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=hf8d1dfb_1 - - ipykernel=6.25.2=pyh1050b4e_0 - - matplotlib=3.8.0=py310hb6292c7_1 - - nbconvert-core=7.9.2=pyhd8ed1ab_0 - - clang_osx-arm64=15.0.7=h77e971b_3 - - jupyter_server=2.7.3=pyhd8ed1ab_1 - - nbconvert-pandoc=7.9.2=pyhd8ed1ab_0 - - c-compiler=1.6.0=hd291e01_0 - - clangxx_osx-arm64=15.0.7=h768a7fd_3 + - compiler-rt=16.0.1=h30b49de_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_osx-arm64=16.0.1=hdccda30_1 + - nbconvert-core=7.11.0=pyhd8ed1ab_0 + - clangxx_osx-arm64=16.0.1=h0c1d50e_1 - gfortran_osx-arm64=12.3.0=h57527a5_1 + - jupyter_server=2.10.1=pyhd8ed1ab_0 + - nbconvert-pandoc=7.11.0=pyhd8ed1ab_0 + - gfortran=12.3.0=h1ca8e4b_1 - jupyter-lsp=2.2.0=pyhd8ed1ab_0 - - jupyterlab_server=2.25.0=pyhd8ed1ab_0 - - nbconvert=7.9.2=pyhd8ed1ab_0 + - jupyterlab_server=2.25.2=pyhd8ed1ab_0 + - nbconvert=7.11.0=pyhd8ed1ab_0 - notebook-shim=0.2.3=pyhd8ed1ab_0 - - cxx-compiler=1.6.0=h1995070_0 - - gfortran=12.3.0=h1ca8e4b_1 - - jupyterlab=4.0.6=pyhd8ed1ab_0 - pythran=0.14.0=py310he53c7d2_1 - r-base=4.1.3=h9c4d319_6 - fortran-compiler=1.6.0=h5a50232_0 - - notebook=7.0.4=pyhd8ed1ab_0 + - jupyterlab=4.0.9=pyhd8ed1ab_0 - rpy2=3.5.11=py310r41hf1a086a_0 - - compilers=1.6.0=hce30654_0 - - widgetsnbextension=3.6.6=pyhd8ed1ab_0 - - ipywidgets=7.8.0=pyhd8ed1ab_0 - - jupyter-jsmol=2022.1.0=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 diff --git a/src/environment-3.10-macos.yml b/src/environment-3.10-macos.yml index 2cfef24e27a..fdfa67f1998 100644 --- a/src/environment-3.10-macos.yml +++ b/src/environment-3.10-macos.yml @@ -1,24 +1,24 @@ # Generated by conda-lock. # platform: osx-64 -# input_hash: 6fae81a9deca7afa90a962d23acd38cd54ff898f0d473f1a52b6fe16bdaa4051 +# input_hash: 90a86d8a6a2eefd493e12a0bf2fa088140f3d8e1defb1ef16d0116b2d090f0c9 channels: - conda-forge dependencies: - _r-mutex=1.0.1=anacondar_1 - - bzip2=1.0.8=h0d85af4_4 - - c-ares=1.19.1=h0dc2134_0 - - ca-certificates=2023.7.22=h8857fd0_0 + - bzip2=1.0.8=h10d778d_5 + - c-ares=1.22.1=h10d778d_0 + - ca-certificates=2023.11.17=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=hab24e00_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.82.0=h694c41f_6 + - libboost-headers=1.83.0=h694c41f_0 - libbrotlicommon=1.1.0=h0dc2134_1 - libcxx=16.0.6=hd57cbcb_0 - libdeflate=1.19=ha4e1b8e_0 @@ -33,13 +33,12 @@ dependencies: - libuv=1.46.0=h0c2f820_0 - libwebp-base=1.3.2=h0dc2134_0 - libzlib=1.2.13=h8a1eda9_5 - - llvm-openmp=17.0.2=hff08bdf_0 + - llvm-openmp=17.0.5=hb6ac08f_0 - m4=1.4.18=haf1e3a3_1001 - make=4.3=h22f3db7_1 - mathjax=3.2.2=h694c41f_0 - metis=5.1.0=he965462_1007 - nauty=2.7.2=h0d85af4_0 - - ncurses=6.4=hf0c8a7f_0 - palp=2.20=hbcb3906_0 - pari-elldata=0.0.20161017=0 - pari-galdata=0.0.20180411=0 @@ -55,6 +54,7 @@ dependencies: - sagemath-db-combinatorial-designs=20140630=1 - sagemath-db-graphs=20210214=hd8ed1ab_0 - sagemath-db-polytopes=20170220=1 + - tbb=2021.10.0=h1c7c39f_2 - three.js=122=hd8ed1ab_2 - tzdata=2023c=h71feb2d_0 - xorg-libxau=1.0.11=h0dc2134_0 @@ -68,168 +68,183 @@ dependencies: - gengetopt=2.23=he49afe7_0 - gettext=0.21.1=h8a4c099_0 - gf2x=1.3.0=hb2a7efb_2 - - gmp=6.2.1=h2e338ed_0 + - 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.1=h2e338ed_0 - libbrotlidec=1.1.0=h0dc2134_1 - libbrotlienc=1.1.0=h0dc2134_1 - - libedit=3.1.20191231=h0678c8f_2 - libgfortran5=13.2.0=h2873a65_1 - libpng=1.6.39=ha978bb4_0 - - libsqlite=3.43.0=h58db7d2_0 + - libsqlite=3.44.2=h92b6c6a_0 - libxcb=1.15=hb7f2c08_0 - - libxml2=2.11.5=h3346baf_1 + - libxml2=2.11.6=hc0ae0f7_0 - lrcalc=2.1=hf0c8a7f_5 + - ncurses=6.4=h93d8f39_2 - ninja=1.11.1=hb8565cd_0 - - openjdk=20.0.2=h7d26f99_2 - - openssl=3.1.3=h8a1eda9_0 + - openjdk=21.0.1=hf4d7fad_0 + - openssl=3.2.0=hd75f5a5_0 - pandoc=3.1.3=h9d075a6_0 - pari-seadata=0.0.20090618=0 - - pcre2=10.40=h1c4e4bc_0 + - pcre2=10.42=h0ad2156_0 - pixman=0.42.2=he965462_0 - pkg-config=0.29.2=ha3d46e9_1008 - primesieve=11.0=hf0c8a7f_0 - qhull=2020.2=h940c156_2 - - readline=8.2=h9e318b2_1 - symmetrica=3.0.1=hf0c8a7f_0 - tapi=1100.0.11=h9ce4665_0 - - tbb=2021.10.0=h1c7c39f_1 - - texinfo=7.0=pl5321hc47821c_0 - threejs-sage=122=hd8ed1ab_2 - - tk=8.6.13=hef22860_0 - - zeromq=4.3.4=he49afe7_1 + - 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 - - ecl=21.2.1=hd029580_2 - ecm=7.0.4=h343d7f2_1002 - fonts-conda-ecosystem=1=0 - freetype=2.12.1=h60636b9_2 - - gap-core=4.12.2=hc16eb5f_3 - givaro=4.1.1=h0a799c6_3 - glpk=5.0=h3cb5acd_0 - jmol=14.32.9=h694c41f_0 - - krb5=1.21.2=hb884880_0 - - libboost=1.82.0=hf0c313a_6 + - libboost=1.83.0=hf44e908_0 + - libedit=3.1.20191231=h0678c8f_2 - libgfortran=5.0.0=13_2_0_h97931a8_1 - - libglib=2.78.0=hc62aa5d_0 + - libglib=2.78.1=h198397b_1 - libhomfly=1.02r6=hc929b4f_0 - libllvm16=16.0.6=he4b1e75_2 - - libnghttp2=1.52.0=he2ab024_0 + - libnghttp2=1.58.0=h64cf6d3_0 - libssh2=1.11.0=hd019ec5_0 - libtiff=4.6.0=h684deea_2 - m4ri=20140914=h3f75d11_1005 - - mpfr=4.2.0=h4f9bd69_0 + - mpfr=4.2.1=h0c69b56_0 - ntl=11.4.3=h0ab3c2f_1 - - pari=2.15.4=h93f793c_2_pthread - primecount=7.6=ha894c9a_0 - - python=3.10.12=had23ca6_0_cpython + - readline=8.2=h9e318b2_1 - sigtool=0.1.3=h88f4db0_0 - - sqlite=3.43.0=h2b0dec6_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.15=hd6ba6f3_3 + - ld64_osx-64=609=ha20a434_15 + - libboost-devel=1.83.0=h7728843_0 + - libbrial=1.2.12=h8d08345_1 + - libclang-cpp16=16.0.6=default_h762fdd7_2 + - libflint=2.9.0=hfd2f71f_ntl_100 + - libopenblas=0.3.25=openmp_hfef2a42_0 + - libwebp=1.3.2=h44782d1_1 + - llvm-tools=16.0.6=he4b1e75_2 + - 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 + - qd=2.3.22=h2beb688_1004 + - sqlite=3.44.2=h7461747_0 - alabaster=0.7.13=pyhd8ed1ab_0 - appdirs=1.4.4=pyh9f0ad1d_0 - appnope=0.1.3=pyhd8ed1ab_0 + - arb=2.23.0=h905a977_0 - attrs=23.1.0=pyh71513ae_1 - backcall=0.2.0=pyh9f0ad1d_0 - - backports=1.0=pyhd8ed1ab_3 - - brotli=1.1.0=h0dc2134_1 + - boost-cpp=1.83.0=h07eb623_0 + - brial=1.2.12=pyh694c41f_1 - brotli-python=1.1.0=py310h9e9d8ca_1 - cached_property=1.5.2=pyha770c72_1 - - cachetools=5.3.1=pyhd8ed1ab_0 - - certifi=2023.7.22=pyhd8ed1ab_0 + - cachetools=5.3.2=pyhd8ed1ab_0 + - cairo=1.18.0=h99e66fa_0 + - cctools_osx-64=973.0.1=ha1c5b94_15 + - certifi=2023.11.17=pyhd8ed1ab_0 - chardet=5.2.0=py310h2ec42d9_1 - - charset-normalizer=3.3.0=pyhd8ed1ab_0 + - charset-normalizer=3.3.2=pyhd8ed1ab_0 + - clang-16=16.0.6=default_h762fdd7_2 - colorama=0.4.6=pyhd8ed1ab_0 - cycler=0.12.1=pyhd8ed1ab_0 - cysignals=1.11.2=py310h8c82e65_3 - - cython=3.0.2=py310h9e9d8ca_2 + - cython=3.0.6=py310had63691_0 - debugpy=1.8.0=py310h9e9d8ca_1 - decorator=5.1.1=pyhd8ed1ab_0 - defusedxml=0.7.1=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - docutils=0.20.1=py310h2ec42d9_2 + - eclib=20230424=hd00e801_0 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 - - exceptiongroup=1.1.3=pyhd8ed1ab_0 - - executing=1.2.0=pyhd8ed1ab_0 - - fftw=3.3.10=nompi_h4fa670e_108 - - filelock=3.12.4=pyhd8ed1ab_0 + - exceptiongroup=1.2.0=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=h5bb23bf_0 + - fplll=5.4.5=hb7981ad_0 - gap-defaults=4.12.2=h694c41f_3 - gast=0.5.4=pyhd8ed1ab_0 - - gfan=0.6.2=hd793b56_1003 - - idna=3.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=1.1.7=pyhd8ed1ab_0 + - jupyterlab_widgets=3.0.9=pyhd8ed1ab_0 - kiwisolver=1.4.5=py310h88cfcbd_1 - lcalc=2.0.5=h3a941db_1 - - lcms2=2.15=hd6ba6f3_3 - - ld64_osx-64=609=ha20a434_14 - - libboost-devel=1.82.0=h1c7c39f_6 - - libbrial=1.2.12=h8d08345_1 - - libclang-cpp16=16.0.6=default_h762fdd7_1 - - libcurl=8.3.0=h5f667d7_0 - - libflint=2.9.0=hfd2f71f_ntl_100 - - libopenblas=0.3.24=openmp_h48a4ad5_0 - - libwebp=1.3.2=h44782d1_1 - - llvm-tools=16.0.6=he4b1e75_2 - - m4rie=20150908=h3f75d11_1001 + - ld64=609=ha02d983_15 + - libblas=3.9.0=20_osx64_openblas + - libcurl=8.4.0=h726d00d_0 + - libgd=2.3.3=h0dceb68_9 - markupsafe=2.1.3=py310h6729b98_1 - maxima=5.45.0=hd029580_3 - - mistune=3.0.1=pyhd8ed1ab_0 - - mpc=1.3.1=h81bd1dd_0 - - mpfi=1.5.4=h52b28e3_1001 + - mistune=3.0.2=pyhd8ed1ab_0 - mpmath=1.3.0=pyhd8ed1ab_0 - munkres=1.1.4=pyh9f0ad1d_0 - - nest-asyncio=1.5.6=pyhd8ed1ab_0 - - networkx=2.8.8=pyhd8ed1ab_0 - - openjpeg=2.5.0=ha4da562_3 + - nest-asyncio=1.5.8=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.11.2=pyhd8ed1ab_0 - pickleshare=0.7.5=py_1003 + - pillow=10.1.0=py310he65384d_0 - pkgconfig=1.5.5=pyhd8ed1ab_4 - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 - pluggy=1.3.0=pyhd8ed1ab_0 - ply=3.11=py_1 - - ppl=1.2=ha60d53e_1006 - - prometheus_client=0.17.1=pyhd8ed1ab_0 + - prometheus_client=0.19.0=pyhd8ed1ab_0 - psutil=5.9.5=py310h6729b98_1 - 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.16.1=pyhd8ed1ab_0 + - pygments=2.17.2=pyhd8ed1ab_0 - pyparsing=3.1.1=pyhd8ed1ab_0 - - pyrsistent=0.19.3=py310h6729b98_1 + - pyrsistent=0.20.0=py310hb372a2b_0 - pysocks=1.7.1=pyha2e5f31_6 - - python-fastjsonschema=2.18.1=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 - - pyzmq=25.1.1=py310h998be00_1 - - qd=2.3.22=h2beb688_1004 + - pyzmq=25.1.1=py310hd8b4af3_2 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.10.4=py310h0e083fb_0 + - rpds-py=0.13.1=py310h0e083fb_0 - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 - sagetex=3.6.1=pyhd8ed1ab_0 - - setuptools=63.4.3=py310h2ec42d9_0 + - setuptools=68.2.2=pyhd8ed1ab_0 - simplegeneric=0.8.1=py_1 + - singular=4.2.1.p3=hac851df_2 - six=1.16.0=pyh6c4a22f_0 - sniffio=1.3.0=pyhd8ed1ab_0 - snowballstemmer=2.2.0=pyhd8ed1ab_0 @@ -238,156 +253,140 @@ dependencies: - sympow=2.023.6=h115ba6a_3 - tomli=2.0.1=pyhd8ed1ab_0 - tornado=6.3.3=py310h6729b98_1 - - traitlets=5.11.2=pyhd8ed1ab_0 - - trove-classifiers=2023.9.19=pyhd8ed1ab_0 + - traitlets=5.13.0=pyhd8ed1ab_0 + - trove-classifiers=2023.11.22=pyhd8ed1ab_0 - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 - typing_extensions=4.8.0=pyha770c72_0 - typing_utils=0.1.0=pyhd8ed1ab_0 - - tzlocal=5.1=py310h2ec42d9_0 + - tzlocal=5.2=py310h2ec42d9_0 - unicodedata2=15.1.0=py310h6729b98_0 - uri-template=1.3.0=pyhd8ed1ab_0 - vcversioner=2.16.0.0=py_1 + - wcwidth=0.2.12=pyhd8ed1ab_0 - webcolors=1.13=pyhd8ed1ab_0 - webencodings=0.5.1=pyhd8ed1ab_2 - websocket-client=1.6.4=pyhd8ed1ab_0 - - wheel=0.41.2=pyhd8ed1ab_0 + - wheel=0.42.0=pyhd8ed1ab_0 + - widgetsnbextension=4.0.9=pyhd8ed1ab_0 - zipp=3.17.0=pyhd8ed1ab_0 - - anyio=4.0.0=pyhd8ed1ab_0 - - arb=2.23.0=h905a977_0 - - asttokens=2.4.0=pyhd8ed1ab_0 + - anyio=4.1.0=pyhd8ed1ab_0 + - asttokens=2.4.1=pyhd8ed1ab_0 - async-lru=2.0.4=pyhd8ed1ab_0 - - babel=2.12.1=pyhd8ed1ab_1 - - backports.functools_lru_cache=1.6.5=pyhd8ed1ab_0 + - babel=2.13.1=pyhd8ed1ab_0 - beautifulsoup4=4.12.2=pyha770c72_0 - beniget=0.4.1=pyhd8ed1ab_0 - bleach=6.1.0=pyhd8ed1ab_0 - - boost-cpp=1.82.0=h07eb623_6 - - brial=1.2.12=pyh694c41f_1 - cached-property=1.5.2=hd8ed1ab_1 - - cairo=1.16.0=hfdb49f2_1017 - - cctools_osx-64=973.0.1=ha1c5b94_14 + - cctools=973.0.1=h40f6528_15 - cffi=1.16.0=py310hdca579f_0 - - clang-16=16.0.6=default_h762fdd7_1 - - cmake=3.27.6=hf40c264_0 + - clang=16.0.6=hc177806_2 + - cmake=3.27.8=hc7ee4c4_0 - comm=0.1.4=pyhd8ed1ab_0 - cppy=1.2.1=pyhd8ed1ab_0 - - curl=8.3.0=h5f667d7_0 + - curl=8.4.0=h726d00d_0 - cypari2=2.1.3=py310hb5d31c9_2 - deprecation=2.1.0=pyh9f0ad1d_0 - - eclib=20230424=hd00e801_0 - - fonttools=4.43.1=py310hb372a2b_0 - - fplll=5.4.4=hdfdc905_0 - - gfortran_impl_osx-64=12.3.0=h54fd467_1 - - gmpy2=2.1.2=py310hb691cb2_1 + - fonttools=4.45.1=py310hb372a2b_0 + - harfbuzz=8.3.0=hf45c392_0 - importlib-metadata=6.8.0=pyha770c72_0 - - importlib_resources=6.1.0=pyhd8ed1ab_0 + - importlib_resources=6.1.1=pyhd8ed1ab_0 - jedi=0.19.1=pyhd8ed1ab_0 - jinja2=3.1.2=pyhd8ed1ab_1 - - jupyterlab_pygments=0.2.2=pyhd8ed1ab_0 - - ld64=609=ha02d983_14 - - libblas=3.9.0=18_osx64_openblas - - libgd=2.3.3=h0dceb68_9 + - jupyterlab_pygments=0.3.0=pyhd8ed1ab_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.2=py310h90acd4f_2 - - openblas=0.3.24=openmp_hd7704e8_0 + - memory-allocator=0.1.3=py310h6729b98_0 - overrides=7.4.0=pyhd8ed1ab_0 - pexpect=4.8.0=pyh1a96a4e_2 - - pillow=10.0.1=py310hf317a87_2 - - pip=23.2.1=pyhd8ed1ab_0 + - pip=23.3.1=pyhd8ed1ab_0 + - platformdirs=4.0.0=pyhd8ed1ab_0 + - pplpy=0.8.7=py310h190f582_0 - primecountpy=0.1.0=py310h88cfcbd_4 + - prompt-toolkit=3.0.24=pyha770c72_0 - pybind11=2.11.1=py310h88cfcbd_2 - pyobjc-core=10.0=py310hef2d279_0 - pyproject-api=1.6.1=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - pytz-deprecation-shim=0.1.0.post0=py310h2ec42d9_4 - - referencing=0.30.2=pyhd8ed1ab_0 + - referencing=0.31.0=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - sagemath-db-conway-polynomials=0.5.0=h033912b_1 - - singular=4.2.1.p3=hac851df_2 - - terminado=0.17.1=pyhd1c38e8_0 + - sympy=1.12=pypyh9d50eac_103 + - terminado=0.18.0=pyh31c8845_0 - tinycss2=1.2.1=pyhd8ed1ab_0 - typing-extensions=4.8.0=hd8ed1ab_0 - - urllib3=2.0.6=pyhd8ed1ab_0 + - urllib3=2.1.0=pyhd8ed1ab_0 - argon2-cffi-bindings=21.2.0=py310h6729b98_4 - arrow=1.3.0=pyhd8ed1ab_0 - - cctools=973.0.1=h40f6528_14 - - clang=16.0.6=hc177806_1 + - clangxx=16.0.6=default_h762fdd7_2 + - dsdp=5.8=h6e329d1_1203 + - fflas-ffpack=2.4.3=h026fd7e_2 - fqdn=1.5.1=pyhd8ed1ab_0 - - harfbuzz=8.2.1=h7666e2a_0 + - gsl=2.7=h93259b0_0 - hatchling=1.18.0=pyhd8ed1ab_0 - - importlib-resources=6.1.0=pyhd8ed1ab_0 + - iml=1.0.5=h64b42ca_1003 + - importlib-resources=6.1.1=pyhd8ed1ab_0 - importlib_metadata=6.8.0=hd8ed1ab_0 - - jsonschema-specifications=2023.7.1=pyhd8ed1ab_0 + - jsonschema-specifications=2023.11.1=pyhd8ed1ab_0 + - jupyter_core=5.5.0=py310h2ec42d9_0 - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1 - - libcblas=3.9.0=18_osx64_openblas - - liblapack=3.9.0=18_osx64_openblas - - platformdirs=3.11.0=pyhd8ed1ab_0 - - pplpy=0.8.7=py310h190f582_0 + - liblapacke=3.9.0=20_osx64_openblas + - numpy=1.26.2=py310h2a7ecf2_0 + - pango=1.50.14=h19c1c8a_2 + - prompt_toolkit=3.0.24=hd8ed1ab_0 - pyobjc-framework-cocoa=10.0=py310hef2d279_1 - requests=2.31.0=pyhd8ed1ab_0 - setuptools-scm=8.0.4=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 - - sympy=1.12=pypyh9d50eac_103 - - wcwidth=0.2.8=pyhd8ed1ab_0 - - argon2-cffi=23.1.0=pyhd8ed1ab_0 - - clangxx=16.0.6=default_h762fdd7_1 - - dsdp=5.8=h6e329d1_1203 - - fflas-ffpack=2.4.3=h026fd7e_2 - - gsl=2.7=h93259b0_0 - - iml=1.0.5=h64b42ca_1003 - - isoduration=20.11.0=pyhd8ed1ab_0 - - jsonschema=4.19.1=pyhd8ed1ab_0 - - jupyter_core=5.3.2=py310h2ec42d9_0 - - liblapacke=3.9.0=18_osx64_openblas - - numpy=1.26.0=py310h0171094_0 - - pango=1.50.14=h19c1c8a_2 - - pooch=1.7.0=pyhd8ed1ab_4 - - prompt-toolkit=3.0.39=pyha770c72_0 - - send2trash=1.8.2=pyhd1c38e8_0 - - setuptools_scm=8.0.4=hd8ed1ab_0 - suitesparse=5.10.1=h7aff33d_1 - - virtualenv=20.24.4=pyhd8ed1ab_0 - - blas-devel=3.9.0=18_osx64_openblas - - compiler-rt_osx-64=16.0.6=he1888fc_0 - - contourpy=1.1.1=py310h88cfcbd_1 + - virtualenv=20.24.7=pyhd8ed1ab_0 + - argon2-cffi=23.1.0=pyhd8ed1ab_0 + - blas-devel=3.9.0=20_osx64_openblas + - compiler-rt_osx-64=16.0.6=he1888fc_1 + - contourpy=1.2.0=py310ha697434_0 - cvxopt=1.3.2=py310ha550498_1 - - fpylll=0.5.9=py310h0d1ef73_1 + - fpylll=0.6.0=py310h2acdeac_1 - giac=1.9.0.21=h92f3f65_1 - - jsonschema-with-format-nongpl=4.19.1=pyhd8ed1ab_0 - - jupyter_client=8.3.1=pyhd8ed1ab_0 + - ipython=8.8.0=pyhd1c38e8_0 + - isoduration=20.11.0=pyhd8ed1ab_0 + - jsonschema=4.20.0=pyhd8ed1ab_0 + - jupyter_client=8.6.0=pyhd8ed1ab_0 - linbox=1.6.3=hdde8d14_7 - - nbformat=5.9.2=pyhd8ed1ab_0 - - prompt_toolkit=3.0.39=hd8ed1ab_0 - - scipy=1.10.1=py310h3900cf1_3 + - scipy=1.11.4=py310h3f1db6d_0 + - send2trash=1.8.2=pyhd1c38e8_0 + - setuptools_scm=8.0.4=hd8ed1ab_0 - tox=4.11.3=pyhd8ed1ab_0 - - blas=2.118=openblas - - compiler-rt=16.0.6=he1888fc_0 - - ipython=8.16.1=pyh31c8845_0 - - jupyter_events=0.7.0=pyhd8ed1ab_2 - - matplotlib-base=3.8.0=py310hf92ae1b_1 + - blas=2.120=openblas + - compiler-rt=16.0.6=he1888fc_1 + - 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 + - clang_impl_osx-64=16.0.6=h8787910_6 + - 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=16.0.6=h8787910_1 - - ipykernel=6.25.2=pyh1050b4e_0 - - matplotlib=3.8.0=py310h2ec42d9_1 - - nbconvert-core=7.9.2=pyhd8ed1ab_0 - - clangxx_osx-64=16.0.6=h1b7723c_1 + - clang_osx-64=16.0.6=hb91bd55_6 + - nbconvert-core=7.11.0=pyhd8ed1ab_0 + - clangxx_impl_osx-64=16.0.6=h1b7723c_6 - gfortran_osx-64=12.3.0=h18f7dce_1 - - jupyter_server=2.7.3=pyhd8ed1ab_1 - - nbconvert-pandoc=7.9.2=pyhd8ed1ab_0 + - jupyter_server=2.10.1=pyhd8ed1ab_0 + - nbconvert-pandoc=7.11.0=pyhd8ed1ab_0 + - clangxx_osx-64=16.0.6=h2fff7d5_6 - gfortran=12.3.0=h2c809b3_1 - jupyter-lsp=2.2.0=pyhd8ed1ab_0 - - jupyterlab_server=2.25.0=pyhd8ed1ab_0 - - nbconvert=7.9.2=pyhd8ed1ab_0 + - jupyterlab_server=2.25.2=pyhd8ed1ab_0 + - nbconvert=7.11.0=pyhd8ed1ab_0 - notebook-shim=0.2.3=pyhd8ed1ab_0 - - pythran=0.14.0=py310h92ebccd_1 - - r-base=4.3.1=h0ff45fa_6 - fortran-compiler=1.6.0=h932d759_0 - - jupyterlab=4.0.6=pyhd8ed1ab_0 + - jupyterlab=4.0.9=pyhd8ed1ab_0 + - pythran=0.14.0=py310h92ebccd_1 + - r-base=4.3.2=h8eaf9e6_1 + - notebook=7.0.6=pyhd8ed1ab_0 - rpy2=3.5.11=py310r43hf0b6da5_3 - - notebook=7.0.4=pyhd8ed1ab_0 - - widgetsnbextension=3.6.6=pyhd8ed1ab_0 - - ipywidgets=7.8.0=pyhd8ed1ab_0 - - jupyter-jsmol=2022.1.0=pyhd8ed1ab_0 - jupyter_sphinx=0.4.0=py310h2ec42d9_1 - sphinx-basic-ng=1.0.0b2=pyhd8ed1ab_1 - furo=2023.9.10=pyhd8ed1ab_0 diff --git a/src/environment-3.11-linux-aarch.yml b/src/environment-3.11-linux-aarch64.yml similarity index 72% rename from src/environment-3.11-linux-aarch.yml rename to src/environment-3.11-linux-aarch64.yml index 2e2650f0258..d71cc8adc26 100644 --- a/src/environment-3.11-linux-aarch.yml +++ b/src/environment-3.11-linux-aarch64.yml @@ -1,23 +1,23 @@ # Generated by conda-lock. # platform: linux-aarch64 -# input_hash: 268ac7e0895c0a3a5609caa95b5a976cf8d053926803e6fc161ded51591c3272 +# input_hash: 193b84ac1f83e3237670ab8ccff1f55453755ae6b9d709e741c029ac5e764b56 channels: - conda-forge dependencies: - _r-mutex=1.0.1=anacondar_1 - _sysroot_linux-aarch64_curr_repodata_hack=4=h57d6b7b_13 - - ca-certificates=2023.7.22=hcefe29a_0 + - ca-certificates=2023.11.17=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=hab24e00_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_2 - - libgomp=13.2.0=hf8544c7_2 - - libstdcxx-devel_linux-aarch64=12.3.0=h8b5ab12_2 - - libstdcxx-ng=13.2.0=h9a76618_2 + - 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 - pari-elldata=0.0.20161017=0 @@ -39,19 +39,18 @@ dependencies: - 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_2 + - libgcc-ng=13.2.0=hf8544c7_3 - alsa-lib=1.2.8=h4e544f5_0 - - bc=1.07.1=hf897c2e_0 - bdw-gc=8.0.6=hd62202e_0 - - bzip2=1.0.8=hf897c2e_4 - - c-ares=1.20.1=h31becfc_0 + - bzip2=1.0.8=h31becfc_5 + - c-ares=1.22.1=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.2.1=h7fd3ca4_0 + - gmp=6.3.0=h2f0025b_0 - graphite2=1.3.13=h7fd3ca4_1001 - icu=70.1=ha18d298_0 - jpeg=9e=h2a766a3_3 @@ -64,10 +63,10 @@ dependencies: - libev=4.33=h516909a_1 - libexpat=2.5.0=hd600fc2_1 - libffi=3.4.2=h3557bc0_5 - - libgfortran5=13.2.0=h582850c_2 + - libgfortran5=13.2.0=h582850c_3 - libiconv=1.17=h9cdd2b7_0 - - libnsl=2.0.0=h31becfc_1 - - libsanitizer=12.3.0=h8ebda82_2 + - libnsl=2.0.1=h31becfc_0 + - libsanitizer=12.3.0=h8ebda82_3 - libsodium=1.0.18=hb9de7d4_1 - libtool=2.4.7=h4de3ea5_0 - libuuid=2.38.1=hb4cce97_0 @@ -79,9 +78,9 @@ dependencies: - make=4.3=h309ac5b_1 - metis=5.1.0=h2f0025b_1007 - nauty=2.7.2=hf897c2e_0 - - ncurses=6.4=h2e1726e_0 + - ncurses=6.4=h0425590_2 - ninja=1.11.1=hdd96247_0 - - openssl=3.1.3=h31becfc_0 + - openssl=3.2.0=h31becfc_0 - palp=2.20=hb9de7d4_0 - patch=2.7.6=hf897c2e_1002 - pixman=0.42.2=h2f0025b_0 @@ -107,31 +106,30 @@ dependencies: - 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_2 + - gcc_impl_linux-aarch64=12.3.0=hcde2664_3 - 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_2 + - libgfortran-ng=13.2.0=he9431aa_3 - libhomfly=1.02r6=hb9de7d4_0 - - libnghttp2=1.52.0=h250e5c5_0 + - libnghttp2=1.58.0=hb0e430d_0 - libpng=1.6.39=hf9034f9_0 - - libsqlite=3.43.0=h194ca79_0 + - libsqlite=3.44.2=h194ca79_0 - libssh2=1.11.0=h492db2e_0 - libxcb=1.13=h3557bc0_1004 - libxml2=2.10.3=habe54e3_4 - - mpfr=4.2.0=h96f194b_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 - 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.4=h01db608_1 + - zeromq=4.3.5=h2f0025b_0 - zlib=1.2.13=h31becfc_5 - zstd=1.5.5=h4c53e97_0 - autoconf=2.71=pl5321h2148fe1_1 @@ -145,15 +143,15 @@ dependencies: - 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_2 - - gxx_impl_linux-aarch64=12.3.0=hcde2664_2 + - gfortran_impl_linux-aarch64=12.3.0=hb7244be_3 + - gxx_impl_linux-aarch64=12.3.0=hcde2664_3 - krb5=1.20.1=h113d92e_0 - libflint=2.9.0=hd3470fa_ntl_100 - - libglib=2.78.0=h0464669_0 + - libglib=2.78.1=h0464669_0 - libhwloc=2.9.1=h21e8147_0 - - libopenblas=0.3.23=pthreads_hd703e6f_0 + - libopenblas=0.3.25=pthreads_h5a5ec62_0 - libtiff=4.5.0=h4c1066a_2 - - llvm-openmp=17.0.2=h8b0cb96_0 + - llvm-openmp=17.0.5=h8b0cb96_0 - m4ri=20140914=h75e8696_1005 - mpc=1.3.1=hf4c8f4c_0 - mpfi=1.5.4=h846f343_1001 @@ -161,7 +159,7 @@ dependencies: - ppl=1.2=h984aac9_1006 - python=3.11.6=h43d1f9e_0_cpython - qd=2.3.22=h05efe27_1004 - - sqlite=3.43.0=h3b3482f_0 + - sqlite=3.44.2=h3b3482f_0 - tachyon=0.99b6=h63ab1d9_1001 - texinfo=7.0=pl5321h17f021e_0 - tktable=2.10=h4f9ca69_5 @@ -173,19 +171,18 @@ dependencies: - attrs=23.1.0=pyh71513ae_1 - automake=1.16.5=pl5321h8af1aa0_0 - backcall=0.2.0=pyh9f0ad1d_0 - - backports=1.0=pyhd8ed1ab_3 - 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.1=pyhd8ed1ab_0 - - certifi=2023.7.22=pyhd8ed1ab_0 + - cachetools=5.3.2=pyhd8ed1ab_0 + - certifi=2023.11.17=pyhd8ed1ab_0 - chardet=5.2.0=py311hfecb2dc_1 - - charset-normalizer=3.3.0=pyhd8ed1ab_0 + - charset-normalizer=3.3.2=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_0 - cycler=0.12.1=pyhd8ed1ab_0 - cysignals=1.11.2=py311h644d908_3 - - cython=3.0.2=py311h8715677_2 + - cython=3.0.6=py311h8715677_0 - debugpy=1.8.0=py311h8715677_1 - decorator=5.1.1=pyhd8ed1ab_0 - defusedxml=0.7.1=pyhd8ed1ab_0 @@ -194,29 +191,28 @@ dependencies: - eclib=20230424=h0bc7b0f_0 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 - - exceptiongroup=1.1.3=pyhd8ed1ab_0 - - executing=1.2.0=pyhd8ed1ab_0 - - filelock=3.12.4=pyhd8ed1ab_0 + - exceptiongroup=1.2.0=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.4=h5cd656c_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.4=pyhd8ed1ab_0 + - 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=1.1.7=pyhd8ed1ab_0 + - jupyterlab_widgets=3.0.9=pyhd8ed1ab_0 - kiwisolver=1.4.5=py311h0d5d7b0_1 - lcalc=2.0.5=h3264cc0_1 - lcms2=2.15=h7576be9_0 - - libblas=3.9.0=17_linuxaarch64_openblas + - libblas=3.9.0=20_linuxaarch64_openblas - libbrial=1.2.12=h17533bf_1 - libcups=2.3.3=h4303303_3 - libcurl=8.1.2=hc34909b_0 @@ -224,12 +220,12 @@ dependencies: - m4rie=20150908=h75e8696_1001 - markupsafe=2.1.3=py311hc8f2f60_1 - maxima=5.45.0=haa44c19_3 - - mistune=3.0.1=pyhd8ed1ab_0 + - mistune=3.0.2=pyhd8ed1ab_0 - mpmath=1.3.0=pyhd8ed1ab_0 - munkres=1.1.4=pyh9f0ad1d_0 - - nest-asyncio=1.5.6=pyhd8ed1ab_0 - - networkx=2.8.8=pyhd8ed1ab_0 - - openblas=0.3.23=pthreads_hef96516_0 + - nest-asyncio=1.5.8=pyhd8ed1ab_0 + - networkx=3.2.1=pyhd8ed1ab_0 + - openblas=0.3.25=pthreads_h339cbfa_0 - openjpeg=2.5.0=h9508984_2 - packaging=23.2=pyhd8ed1ab_0 - pandocfilters=1.5.0=pyhd8ed1ab_0 @@ -240,30 +236,30 @@ dependencies: - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 - pluggy=1.3.0=pyhd8ed1ab_0 - ply=3.11=py_1 - - prometheus_client=0.17.1=pyhd8ed1ab_0 + - prometheus_client=0.19.0=pyhd8ed1ab_0 - psutil=5.9.5=py311hcd402e7_1 - 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.16.1=pyhd8ed1ab_0 + - pygments=2.17.2=pyhd8ed1ab_0 - pyparsing=3.1.1=pyhd8ed1ab_0 - - pyrsistent=0.19.3=py311hc8f2f60_1 + - pyrsistent=0.20.0=py311hc8f2f60_0 - pysocks=1.7.1=pyha2e5f31_6 - - python-fastjsonschema=2.18.1=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 - - pyzmq=25.1.1=py311hc83961d_1 + - pyzmq=25.1.1=py311h0fdcd05_2 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.10.4=py311h32437ce_0 + - rpds-py=0.13.1=py311h32437ce_0 - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 - sagetex=3.6.1=pyhd8ed1ab_0 - send2trash=1.8.2=pyh41d4057_0 - - setuptools=59.8.0=py311hec3470c_1 + - setuptools=68.2.2=pyhd8ed1ab_0 - simplegeneric=0.8.1=py_1 - singular=4.2.1.p3=h3d4c4c6_2 - six=1.16.0=pyh6c4a22f_0 @@ -275,28 +271,29 @@ dependencies: - tbb=2021.9.0=h4c384f3_0 - tomli=2.0.1=pyhd8ed1ab_0 - tornado=6.3.3=py311hc8f2f60_1 - - traitlets=5.11.2=pyhd8ed1ab_0 - - trove-classifiers=2023.9.19=pyhd8ed1ab_0 + - traitlets=5.13.0=pyhd8ed1ab_0 + - trove-classifiers=2023.11.22=pyhd8ed1ab_0 - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 - typing_extensions=4.8.0=pyha770c72_0 - typing_utils=0.1.0=pyhd8ed1ab_0 - - tzlocal=5.1=py311hec3470c_0 + - tzlocal=5.2=py311hec3470c_0 - uri-template=1.3.0=pyhd8ed1ab_0 - vcversioner=2.16.0.0=py_1 + - wcwidth=0.2.12=pyhd8ed1ab_0 - webcolors=1.13=pyhd8ed1ab_0 - webencodings=0.5.1=pyhd8ed1ab_2 - websocket-client=1.6.4=pyhd8ed1ab_0 - - wheel=0.41.2=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 - zipp=3.17.0=pyhd8ed1ab_0 - - anyio=4.0.0=pyhd8ed1ab_0 - - asttokens=2.4.0=pyhd8ed1ab_0 + - anyio=4.1.0=pyhd8ed1ab_0 + - asttokens=2.4.1=pyhd8ed1ab_0 - async-lru=2.0.4=pyhd8ed1ab_0 - - babel=2.12.1=pyhd8ed1ab_1 - - backports.functools_lru_cache=1.6.5=pyhd8ed1ab_0 + - babel=2.13.1=pyhd8ed1ab_0 - beautifulsoup4=4.12.2=pyha770c72_0 - beniget=0.4.1=pyhd8ed1ab_0 - bleach=6.1.0=pyhd8ed1ab_0 @@ -308,44 +305,44 @@ dependencies: - comm=0.1.4=pyhd8ed1ab_0 - cppy=1.2.1=pyhd8ed1ab_0 - curl=8.1.2=hc34909b_0 - - cxx-compiler=1.6.0=h2a328a1_0 - cypari2=2.1.3=py311h5ab95f0_2 - deprecation=2.1.0=pyh9f0ad1d_0 - - fonttools=4.43.1=py311hcd402e7_0 + - fonttools=4.45.1=py311hcd402e7_0 - fortran-compiler=1.6.0=h7048d53_0 - importlib-metadata=6.8.0=pyha770c72_0 - - importlib_resources=6.1.0=pyhd8ed1ab_0 + - importlib_resources=6.1.1=pyhd8ed1ab_0 - jedi=0.19.1=pyhd8ed1ab_0 - jinja2=3.1.2=pyhd8ed1ab_1 - - jupyterlab_pygments=0.2.2=pyhd8ed1ab_0 - - libcblas=3.9.0=17_linuxaarch64_openblas + - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 + - libcblas=3.9.0=20_linuxaarch64_openblas - libgd=2.3.3=h99c6b3b_4 - - liblapack=3.9.0=17_linuxaarch64_openblas + - liblapack=3.9.0=20_linuxaarch64_openblas - matplotlib-inline=0.1.6=pyhd8ed1ab_0 - - memory-allocator=0.1.2=py311hdfa8b44_2 + - 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.2.1=pyhd8ed1ab_0 + - pip=23.3.1=pyhd8ed1ab_0 + - platformdirs=4.0.0=pyhd8ed1ab_0 - pplpy=0.8.7=py311haefeb0b_0 - primecountpy=0.1.0=py311h098ece5_4 + - prompt-toolkit=3.0.24=pyha770c72_0 - pybind11=2.11.1=py311h098ece5_2 - pyproject-api=1.6.1=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - pytz-deprecation-shim=0.1.0.post0=py311hec3470c_4 - - referencing=0.30.2=pyhd8ed1ab_0 + - referencing=0.31.0=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - sagemath-db-conway-polynomials=0.5.0=h4fd8a4c_1 - sympy=1.12=pypyh9d50eac_103 - - terminado=0.17.1=pyh41d4057_0 + - terminado=0.18.0=pyh0d859eb_0 - tinycss2=1.2.1=pyhd8ed1ab_0 - typing-extensions=4.8.0=hd8ed1ab_0 - - urllib3=2.0.6=pyhd8ed1ab_0 + - urllib3=2.1.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 - fflas-ffpack=2.4.3=hf104d39_2 - fqdn=1.5.1=pyhd8ed1ab_0 @@ -353,66 +350,61 @@ dependencies: - harfbuzz=6.0.0=hbcb8a4f_0 - hatchling=1.18.0=pyhd8ed1ab_0 - iml=1.0.5=h9076c59_1003 - - importlib-resources=6.1.0=pyhd8ed1ab_0 + - importlib-resources=6.1.1=pyhd8ed1ab_0 - importlib_metadata=6.8.0=hd8ed1ab_0 - - jsonschema-specifications=2023.7.1=pyhd8ed1ab_0 + - jsonschema-specifications=2023.11.1=pyhd8ed1ab_0 + - jupyter_core=5.5.0=py311hec3470c_0 - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1 - - liblapacke=3.9.0=17_linuxaarch64_openblas - - numpy=1.26.0=py311h69ead2a_0 - - platformdirs=3.11.0=pyhd8ed1ab_0 + - liblapacke=3.9.0=20_linuxaarch64_openblas + - numpy=1.26.2=py311h69ead2a_0 + - prompt_toolkit=3.0.24=hd8ed1ab_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 - - wcwidth=0.2.8=pyhd8ed1ab_0 + - virtualenv=20.24.7=pyhd8ed1ab_0 - xorg-libxtst=1.2.3=hf897c2e_1002 - argon2-cffi=23.1.0=pyhd8ed1ab_0 - - blas-devel=3.9.0=17_linuxaarch64_openblas - - contourpy=1.1.1=py311h098ece5_1 + - blas-devel=3.9.0=20_linuxaarch64_openblas + - contourpy=1.2.0=py311h098ece5_0 - cvxopt=1.3.2=py311hd9cfd3c_1 - - fpylll=0.5.9=py311h5d3d69a_1 + - fpylll=0.6.0=py311h5d3d69a_1 - giac=1.9.0.21=h04922a4_1 - igraph=0.9.10=hefb87a8_1 + - ipython=8.8.0=pyh41d4057_0 - isoduration=20.11.0=pyhd8ed1ab_0 - - jsonschema=4.19.1=pyhd8ed1ab_0 - - jupyter_core=5.3.2=py311hec3470c_0 + - jsonschema=4.20.0=pyhd8ed1ab_0 + - jupyter_client=8.6.0=pyhd8ed1ab_0 - linbox=1.6.3=h31716a8_7 - openjdk=17.0.3=h1a274e0_5 - pango=1.50.14=h1f1e9b3_0 - - pooch=1.7.0=pyhd8ed1ab_4 - - prompt-toolkit=3.0.39=pyha770c72_0 - pythran=0.14.0=py311hec5c23b_1 + - scipy=1.11.3=py311h69ead2a_1 - setuptools_scm=8.0.4=hd8ed1ab_0 - - virtualenv=20.24.4=pyhd8ed1ab_0 - - blas=2.117=openblas + - tox=4.11.3=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.19.1=pyhd8ed1ab_0 - - jupyter_client=8.3.1=pyhd8ed1ab_0 - - matplotlib-base=3.8.0=py311h1f11223_1 + - jsonschema-with-format-nongpl=4.20.0=pyhd8ed1ab_0 + - matplotlib-base=3.8.2=py311h1f11223_0 - nbformat=5.9.2=pyhd8ed1ab_0 - - prompt_toolkit=3.0.39=hd8ed1ab_0 - r-base=4.2.3=h620ca72_0 - rw=0.9=hf897c2e_0 - - scipy=1.10.1=py311h69ead2a_3 - - tox=4.11.3=pyhd8ed1ab_0 - - ipython=8.16.1=pyh0d859eb_0 - - jupyter_events=0.7.0=pyhd8ed1ab_2 - - matplotlib=3.8.0=py311hfecb2dc_1 + - 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 - - ipykernel=6.25.2=pyh2140261_0 - - nbconvert-core=7.9.2=pyhd8ed1ab_0 - - jupyter_server=2.7.3=pyhd8ed1ab_1 - - nbconvert-pandoc=7.9.2=pyhd8ed1ab_0 + - nbconvert-core=7.11.0=pyhd8ed1ab_0 + - jupyter_server=2.10.1=pyhd8ed1ab_0 + - nbconvert-pandoc=7.11.0=pyhd8ed1ab_0 - jupyter-lsp=2.2.0=pyhd8ed1ab_0 - - jupyterlab_server=2.25.0=pyhd8ed1ab_0 - - nbconvert=7.9.2=pyhd8ed1ab_0 + - jupyterlab_server=2.25.2=pyhd8ed1ab_0 + - nbconvert=7.11.0=pyhd8ed1ab_0 - notebook-shim=0.2.3=pyhd8ed1ab_0 - - jupyterlab=4.0.6=pyhd8ed1ab_0 - - notebook=7.0.4=pyhd8ed1ab_0 - - widgetsnbextension=3.6.6=pyhd8ed1ab_0 - - ipywidgets=7.8.0=pyhd8ed1ab_0 - - jupyter-jsmol=2022.1.0=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 diff --git a/src/environment-3.11-linux.yml b/src/environment-3.11-linux.yml index c5e04a37ec4..7156dc0c6be 100644 --- a/src/environment-3.11-linux.yml +++ b/src/environment-3.11-linux.yml @@ -1,23 +1,23 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: ed969b7a727bcd2a5f8f5803ccc2972de7d7f5149e25110265386c2b5c4da604 +# input_hash: 9680f8f7a18903f75ef9458ee55f204cfda53726834f0cebc7357c744d809e58 channels: - conda-forge dependencies: - _libgcc_mutex=0.1=conda_forge - _r-mutex=1.0.1=anacondar_1 - - ca-certificates=2023.7.22=hbcca054_0 + - ca-certificates=2023.11.17=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=hab24e00_0 + - font-ttf-ubuntu=0.83=h77eed37_1 - kernel-headers_linux-64=2.6.32=he073ed8_16 - ld_impl_linux-64=2.40=h41732ed_0 - - libboost-headers=1.82.0=ha770c72_6 - - libgcc-devel_linux-64=12.3.0=h8bca6fd_2 - - libstdcxx-devel_linux-64=12.3.0=h8bca6fd_2 - - libstdcxx-ng=13.2.0=h7e041cc_2 + - libboost-headers=1.83.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 - pari-elldata=0.0.20161017=0 - pari-galdata=0.0.20180411=0 @@ -30,7 +30,7 @@ dependencies: - three.js=122=hd8ed1ab_2 - tzdata=2023c=h71feb2d_0 - fonts-conda-forge=1=0 - - libgomp=13.2.0=h807b86a_2 + - libgomp=13.2.0=h807b86a_3 - pari-seadata=0.0.20090618=0 - sysroot_linux-64=2.12=he073ed8_16 - threejs-sage=122=hd8ed1ab_2 @@ -39,19 +39,19 @@ dependencies: - 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_2 + - libgcc-ng=13.2.0=h807b86a_3 - alsa-lib=1.2.10=hd590300_0 - attr=2.5.1=h166bdaf_1 - bdw-gc=8.0.6=h4bd325d_0 - - bzip2=1.0.8=h7f98852_4 - - c-ares=1.19.1=hd590300_0 + - bzip2=1.0.8=hd590300_5 + - c-ares=1.22.1=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.2.1=h58526e2_0 + - gmp=6.3.0=h59595ed_0 - graphite2=1.3.13=h58526e2_1001 - icu=73.2=h59595ed_0 - keyutils=1.6.1=h166bdaf_0 @@ -64,13 +64,13 @@ dependencies: - libev=4.33=h516909a_1 - libexpat=2.5.0=hcb278e6_1 - libffi=3.4.2=h7f98852_5 - - libgfortran5=13.2.0=ha4646dd_2 + - libgfortran5=13.2.0=ha4646dd_3 - libiconv=1.17=h166bdaf_0 - - libjpeg-turbo=2.1.5.1=hd590300_1 - - libnsl=2.0.0=hd590300_1 + - 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_2 + - libsanitizer=12.3.0=h0f45ef3_3 - libsodium=1.0.18=h36c2ea0_1 - libtool=2.4.7=h27087fc_0 - libuuid=2.38.1=h0b41bf4_0 @@ -84,10 +84,10 @@ dependencies: - metis=5.1.0=h59595ed_1007 - mpg123=1.32.3=h59595ed_0 - nauty=2.7.2=h7f98852_0 - - ncurses=6.4=hcb278e6_0 + - ncurses=6.4=h59595ed_2 - ninja=1.11.1=h924138e_0 - nspr=4.35=h27087fc_0 - - openssl=3.1.3=hd590300_0 + - openssl=3.2.0=hd590300_0 - palp=2.20=h36c2ea0_0 - patch=2.7.6=h7f98852_1002 - pixman=0.42.2=h59595ed_0 @@ -114,7 +114,7 @@ dependencies: - 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_2 + - gcc_impl_linux-64=12.3.0=he2b93b0_3 - givaro=4.1.1=h192cbe9_1 - glpk=5.0=h445213a_0 - libbrotlidec=1.1.0=hd590300_1 @@ -123,27 +123,27 @@ dependencies: - libedit=3.1.20191231=he28a2e2_2 - libevent=2.1.12=hf998b51_1 - libflac=1.4.3=h59595ed_0 - - libgfortran-ng=13.2.0=h69a702a_2 + - libgfortran-ng=13.2.0=h69a702a_3 - libgpg-error=1.47=h71f35ed_0 - libhomfly=1.02r6=h36c2ea0_0 - - libnghttp2=1.52.0=h61bc06f_0 + - libnghttp2=1.58.0=h47da74e_0 - libpng=1.6.39=h753d276_0 - - libsqlite=3.43.0=h2797004_0 + - libsqlite=3.44.2=h2797004_0 - libssh2=1.11.0=h0841786_0 - libvorbis=1.3.7=h9c3ff4c_0 - libxcb=1.15=h0b41bf4_0 - - libxml2=2.11.5=h232c23b_1 - - mpfr=4.2.0=hb012696_0 - - mysql-common=8.0.33=hf1915f5_5 + - libxml2=2.11.6=h232c23b_0 + - mpfr=4.2.1=h9458935_0 + - mysql-common=8.0.33=hf1915f5_6 - ntl=11.4.3=hef3c4d3_1 - - pcre2=10.40=hc3806b6_0 + - pcre2=10.42=hcad00b1_0 - perl=5.32.1=4_hd590300_perl5 - primecount=7.9=hcb278e6_0 - readline=8.2=h8228510_1 - - tk=8.6.13=h2797004_0 + - tk=8.6.13=noxft_h4845f30_101 - xorg-fixesproto=5.0=h7f98852_1002 - xorg-libsm=1.2.4=h7391055_0 - - zeromq=4.3.4=h9c3ff4c_1 + - zeromq=4.3.5=h59595ed_0 - zlib=1.2.13=hd590300_5 - zstd=1.5.5=hfc55251_0 - autoconf=2.71=pl5321h2b4cb7a_1 @@ -156,31 +156,31 @@ dependencies: - 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_2 - - gxx_impl_linux-64=12.3.0=he2b93b0_2 + - gfortran_impl_linux-64=12.3.0=hfcedea8_3 + - gxx_impl_linux-64=12.3.0=he2b93b0_3 - igraph=0.7.1=0 - krb5=1.21.2=h659d440_0 - - libboost=1.82.0=h6fcfa73_6 + - libboost=1.83.0=h6fcfa73_0 - libflint=2.9.0=h2f819a4_ntl_100 - - libgcrypt=1.10.1=h166bdaf_0 - - libglib=2.78.0=hebfc3b9_0 + - libgcrypt=1.10.2=hd590300_0 + - libglib=2.78.1=h783c2da_1 - libhwloc=2.9.3=default_h554bfaf_1009 - libllvm15=15.0.7=h5cf9203_3 - - libopenblas=0.3.24=pthreads_h413a1c8_0 + - libopenblas=0.3.25=pthreads_h413a1c8_0 - libsndfile=1.2.2=hc60ed4a_1 - - libtiff=4.6.0=h29866fb_1 - - llvm-openmp=17.0.2=h4dfa4b3_0 + - libtiff=4.6.0=ha9c0a0a_2 + - llvm-openmp=17.0.5=h4dfa4b3_0 - m4ri=20140914=h7ca028e_1005 - mpc=1.3.1=hfe3b2da_0 - mpfi=1.5.4=h9f54685_1001 - - mysql-libs=8.0.33=hca2cd23_5 + - mysql-libs=8.0.33=hca2cd23_6 - nss=3.94=h1d7d5a4_0 - pandoc=3.1.3=h32600fe_0 - pari=2.15.4=h4d4ae9b_2_pthread - ppl=1.2=h6ec01c2_1006 - python=3.11.6=hab00c5b_0_cpython - qd=2.3.22=h2cc385e_1004 - - sqlite=3.43.0=h2c6b66d_0 + - sqlite=3.44.2=h2c6b66d_0 - tachyon=0.99b6=0 - texinfo=7.0=pl5321h0f457ee_0 - tktable=2.10=h0c5db8f_5 @@ -188,7 +188,7 @@ dependencies: - 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.6=h8ee46fc_0 + - 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 @@ -196,19 +196,18 @@ dependencies: - attrs=23.1.0=pyh71513ae_1 - automake=1.16.5=pl5321ha770c72_0 - backcall=0.2.0=pyh9f0ad1d_0 - - backports=1.0=pyhd8ed1ab_3 - 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.1=pyhd8ed1ab_0 - - certifi=2023.7.22=pyhd8ed1ab_0 + - cachetools=5.3.2=pyhd8ed1ab_0 + - certifi=2023.11.17=pyhd8ed1ab_0 - chardet=5.2.0=py311h38be061_1 - - charset-normalizer=3.3.0=pyhd8ed1ab_0 + - charset-normalizer=3.3.2=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_0 - cycler=0.12.1=pyhd8ed1ab_0 - cysignals=1.11.2=py311h82528dc_3 - - cython=3.0.2=py311hb755f60_2 + - cython=3.0.6=py311hb755f60_0 - dbus=1.13.6=h5008d03_3 - debugpy=1.8.0=py311hb755f60_1 - decorator=5.1.1=pyhd8ed1ab_0 @@ -218,46 +217,46 @@ dependencies: - eclib=20230424=hdef1efb_0 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 - - exceptiongroup=1.1.3=pyhd8ed1ab_0 - - executing=1.2.0=pyhd8ed1ab_0 - - filelock=3.12.4=pyhd8ed1ab_0 + - exceptiongroup=1.2.0=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.4=h8780c30_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.0=hfc55251_0 + - glib-tools=2.78.1=hfc55251_1 - gmpy2=2.1.2=py311h6a5fa03_1 - gxx_linux-64=12.3.0=h8a814eb_2 - - idna=3.4=pyhd8ed1ab_0 + - 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=1.1.7=pyhd8ed1ab_0 + - jupyterlab_widgets=3.0.9=pyhd8ed1ab_0 - kiwisolver=1.4.5=py311h9547e67_1 - lcalc=2.0.5=h6a8a7c6_1 - - lcms2=2.15=h7f713cb_2 - - libblas=3.9.0=18_linux64_openblas - - libboost-devel=1.82.0=h00ab1b0_6 + - lcms2=2.15=hb7c19ff_3 + - libblas=3.9.0=20_linux64_openblas + - libboost-devel=1.83.0=h00ab1b0_0 - libbrial=1.2.12=h3155cbd_1 - libclang13=15.0.7=default_h9986a30_3 - libcups=2.3.3=h4637d8d_4 - - libcurl=8.3.0=hca28451_0 - - libpq=15.4=hfc447b1_2 + - libcurl=8.4.0=hca28451_0 + - libpq=16.1=hfc447b1_0 - libsystemd0=254=h3516f8a_0 - - libwebp=1.3.2=hdffd6e0_0 + - libwebp=1.3.2=h658648e_1 - m4rie=20150908=h7ca028e_1001 - markupsafe=2.1.3=py311h459d7ec_1 - maxima=5.45.0=h9d73b02_3 - - mistune=3.0.1=pyhd8ed1ab_0 + - mistune=3.0.2=pyhd8ed1ab_0 - mpmath=1.3.0=pyhd8ed1ab_0 - munkres=1.1.4=pyh9f0ad1d_0 - - nest-asyncio=1.5.6=pyhd8ed1ab_0 - - networkx=2.8.8=pyhd8ed1ab_0 - - openblas=0.3.24=pthreads_h7a3da1a_0 + - nest-asyncio=1.5.8=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 @@ -268,31 +267,31 @@ dependencies: - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 - pluggy=1.3.0=pyhd8ed1ab_0 - ply=3.11=py_1 - - prometheus_client=0.17.1=pyhd8ed1ab_0 + - prometheus_client=0.19.0=pyhd8ed1ab_0 - psutil=5.9.5=py311h459d7ec_1 - 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.16.1=pyhd8ed1ab_0 + - pygments=2.17.2=pyhd8ed1ab_0 - pyparsing=3.1.1=pyhd8ed1ab_0 - - pyrsistent=0.19.3=py311h459d7ec_1 + - pyrsistent=0.20.0=py311h459d7ec_0 - pysocks=1.7.1=pyha2e5f31_6 - - python-fastjsonschema=2.18.1=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 - - pyzmq=25.1.1=py311h75c88c4_1 + - pyzmq=25.1.1=py311h34ded2d_2 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.10.4=py311h46250e7_0 + - rpds-py=0.13.1=py311h46250e7_0 - rw=0.8=h516909a_1001 - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 - sagetex=3.6.1=pyhd8ed1ab_0 - send2trash=1.8.2=pyh41d4057_0 - - setuptools=59.8.0=py311h38be061_1 + - setuptools=68.2.2=pyhd8ed1ab_0 - simplegeneric=0.8.1=py_1 - singular=4.2.1.p3=h1ea75ed_2 - six=1.16.0=pyh6c4a22f_0 @@ -301,22 +300,24 @@ dependencies: - soupsieve=2.5=pyhd8ed1ab_1 - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_0 - sympow=2.023.6=hc6ab17c_3 - - tbb=2021.10.0=h00ab1b0_1 + - tbb=2021.10.0=h00ab1b0_2 - toml=0.10.2=pyhd8ed1ab_0 - tomli=2.0.1=pyhd8ed1ab_0 - tornado=6.3.3=py311h459d7ec_1 - - traitlets=5.11.2=pyhd8ed1ab_0 - - trove-classifiers=2023.9.19=pyhd8ed1ab_0 + - traitlets=5.13.0=pyhd8ed1ab_0 + - trove-classifiers=2023.11.22=pyhd8ed1ab_0 - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 - typing_extensions=4.8.0=pyha770c72_0 - typing_utils=0.1.0=pyhd8ed1ab_0 - - tzlocal=5.1=py311h38be061_0 + - tzlocal=5.2=py311h38be061_0 - uri-template=1.3.0=pyhd8ed1ab_0 - vcversioner=2.16.0.0=py_1 + - wcwidth=0.2.12=pyhd8ed1ab_0 - webcolors=1.13=pyhd8ed1ab_0 - webencodings=0.5.1=pyhd8ed1ab_2 - websocket-client=1.6.4=pyhd8ed1ab_0 - - wheel=0.41.2=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 @@ -324,60 +325,61 @@ dependencies: - xorg-libxrender=0.9.11=hd590300_0 - xorg-libxt=1.3.0=hd590300_1 - zipp=3.17.0=pyhd8ed1ab_0 - - anyio=4.0.0=pyhd8ed1ab_0 - - asttokens=2.4.0=pyhd8ed1ab_0 + - anyio=4.1.0=pyhd8ed1ab_0 + - asttokens=2.4.1=pyhd8ed1ab_0 - async-lru=2.0.4=pyhd8ed1ab_0 - - babel=2.12.1=pyhd8ed1ab_1 - - backports.functools_lru_cache=1.6.5=pyhd8ed1ab_0 + - babel=2.13.1=pyhd8ed1ab_0 - beautifulsoup4=4.12.2=pyha770c72_0 - beniget=0.4.1=pyhd8ed1ab_0 - bleach=6.1.0=pyhd8ed1ab_0 - - boost-cpp=1.82.0=h44aadfe_6 + - boost-cpp=1.83.0=h44aadfe_0 - brial=1.2.12=pyh694c41f_1 - cached-property=1.5.2=hd8ed1ab_1 - - cairo=1.16.0=h0c91306_1017 + - cairo=1.18.0=h3faef2a_0 - cffi=1.16.0=py311hb3a22ac_0 - - cmake=3.27.6=hcfe8598_0 + - cmake=3.27.8=hcfe8598_0 - comm=0.1.4=pyhd8ed1ab_0 - cppy=1.2.1=pyhd8ed1ab_0 - - curl=8.3.0=hca28451_0 + - curl=8.4.0=hca28451_0 - cypari2=2.1.3=py311hd2352ae_2 - deprecation=2.1.0=pyh9f0ad1d_0 - - fonttools=4.43.1=py311h459d7ec_0 + - fonttools=4.45.1=py311h459d7ec_0 - fortran-compiler=1.6.0=heb67821_0 - - glib=2.78.0=hfc55251_0 + - glib=2.78.1=hfc55251_1 - importlib-metadata=6.8.0=pyha770c72_0 - - importlib_resources=6.1.0=pyhd8ed1ab_0 + - importlib_resources=6.1.1=pyhd8ed1ab_0 - jedi=0.19.1=pyhd8ed1ab_0 - jinja2=3.1.2=pyhd8ed1ab_1 - - jupyterlab_pygments=0.2.2=pyhd8ed1ab_0 - - libcblas=3.9.0=18_linux64_openblas + - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 + - libcblas=3.9.0=20_linux64_openblas - libclang=15.0.7=default_h7634d5b_3 - - libgd=2.3.3=he9388d3_8 - - liblapack=3.9.0=18_linux64_openblas + - 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.2=py311hd4cff14_2 + - memory-allocator=0.1.3=py311h459d7ec_0 - overrides=7.4.0=pyhd8ed1ab_0 - pexpect=4.8.0=pyh1a96a4e_2 - - pillow=10.0.1=py311h8aef010_1 - - pip=23.2.1=pyhd8ed1ab_0 + - pillow=10.1.0=py311ha6c5da5_0 + - pip=23.3.1=pyhd8ed1ab_0 + - platformdirs=4.0.0=pyhd8ed1ab_0 - pplpy=0.8.7=py311h85abca9_0 - primecountpy=0.1.0=py311h9547e67_4 + - prompt-toolkit=3.0.24=pyha770c72_0 - pulseaudio-client=16.1=hb77b528_5 - pybind11=2.11.1=py311h9547e67_2 - pyproject-api=1.6.1=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - pytz-deprecation-shim=0.1.0.post0=py311h38be061_4 - - referencing=0.30.2=pyhd8ed1ab_0 + - referencing=0.31.0=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - sagemath-db-conway-polynomials=0.5.0=ha878542_1 - - sip=6.7.11=py311hb755f60_1 + - sip=6.7.12=py311hb755f60_0 - sympy=1.12=pypyh9d50eac_103 - - terminado=0.17.1=pyh41d4057_0 + - terminado=0.18.0=pyh0d859eb_0 - tinycss2=1.2.1=pyhd8ed1ab_0 - typing-extensions=4.8.0=hd8ed1ab_0 - - urllib3=2.0.6=pyhd8ed1ab_0 + - urllib3=2.1.0=pyhd8ed1ab_0 - xorg-libxi=1.7.10=h7f98852_0 - argon2-cffi-bindings=21.2.0=py311h459d7ec_4 - arrow=1.3.0=pyhd8ed1ab_0 @@ -385,72 +387,67 @@ dependencies: - fflas-ffpack=2.4.3=h912ac81_2 - fqdn=1.5.1=pyhd8ed1ab_0 - gsl=2.7=he838d99_0 - - gstreamer=1.22.6=h98fc4e7_2 - - harfbuzz=8.2.1=h3d44ed6_0 + - gstreamer=1.22.7=h98fc4e7_0 + - harfbuzz=8.3.0=h3d44ed6_0 - hatchling=1.18.0=pyhd8ed1ab_0 - iml=1.0.5=hd75c201_1003 - - importlib-resources=6.1.0=pyhd8ed1ab_0 + - importlib-resources=6.1.1=pyhd8ed1ab_0 - importlib_metadata=6.8.0=hd8ed1ab_0 - - jsonschema-specifications=2023.7.1=pyhd8ed1ab_0 + - jsonschema-specifications=2023.11.1=pyhd8ed1ab_0 + - jupyter_core=5.5.0=py311h38be061_0 - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1 - - liblapacke=3.9.0=18_linux64_openblas - - numpy=1.26.0=py311h64a7726_0 - - platformdirs=3.11.0=pyhd8ed1ab_0 + - liblapacke=3.9.0=20_linux64_openblas + - numpy=1.26.2=py311h64a7726_0 + - prompt_toolkit=3.0.24=hd8ed1ab_0 - pyqt5-sip=12.12.2=py311hb755f60_5 - requests=2.31.0=pyhd8ed1ab_0 - setuptools-scm=8.0.4=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 - suitesparse=5.10.1=h9e50725_1 - - wcwidth=0.2.8=pyhd8ed1ab_0 + - virtualenv=20.24.7=pyhd8ed1ab_0 - xorg-libxtst=1.2.3=h7f98852_1002 - argon2-cffi=23.1.0=pyhd8ed1ab_0 - - blas-devel=3.9.0=18_linux64_openblas - - contourpy=1.1.1=py311h9547e67_1 + - blas-devel=3.9.0=20_linux64_openblas + - contourpy=1.2.0=py311h9547e67_0 - cvxopt=1.3.2=py311h2b3fd1d_1 - - fpylll=0.5.9=py311hcfae7cf_1 + - fpylll=0.6.0=py311hcfae7cf_1 - giac=1.9.0.21=h673759e_1 - - gst-plugins-base=1.22.6=h8e1006c_2 + - gst-plugins-base=1.22.7=h8e1006c_0 + - ipython=8.8.0=pyh41d4057_0 - isoduration=20.11.0=pyhd8ed1ab_0 - - jsonschema=4.19.1=pyhd8ed1ab_0 - - jupyter_core=5.3.2=py311h38be061_0 + - jsonschema=4.20.0=pyhd8ed1ab_0 + - jupyter_client=8.6.0=pyhd8ed1ab_0 - linbox=1.6.3=h9d78c56_7 - - openjdk=20.0.2=hfea2f88_1 + - openjdk=21.0.1=haa376d0_0 - pango=1.50.14=ha41ecd1_2 - - pooch=1.7.0=pyhd8ed1ab_4 - - prompt-toolkit=3.0.39=pyha770c72_0 - pythran=0.14.0=py311h92ebd52_1 + - scipy=1.11.4=py311h64a7726_0 - setuptools_scm=8.0.4=hd8ed1ab_0 - - virtualenv=20.24.4=pyhd8ed1ab_0 - - blas=2.118=openblas + - tox=4.11.3=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.19.1=pyhd8ed1ab_0 - - jupyter_client=8.3.1=pyhd8ed1ab_0 - - matplotlib-base=3.8.0=py311h54ef318_1 + - jsonschema-with-format-nongpl=4.20.0=pyhd8ed1ab_0 + - matplotlib-base=3.8.2=py311h54ef318_0 - nbformat=5.9.2=pyhd8ed1ab_0 - - prompt_toolkit=3.0.39=hd8ed1ab_0 - - qt-main=5.15.8=hc47bfe8_16 - - r-base=4.3.1=h639d9d3_5 - - scipy=1.10.1=py311h64a7726_3 - - tox=4.11.3=pyhd8ed1ab_0 - - ipython=8.16.1=pyh0d859eb_0 - - jupyter_events=0.7.0=pyhd8ed1ab_2 + - qt-main=5.15.8=h82b777d_17 + - r-base=4.3.2=hb8ee39d_1 + - 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 - - ipykernel=6.25.2=pyh2140261_0 - - matplotlib=3.8.0=py311h38be061_1 - - nbconvert-core=7.9.2=pyhd8ed1ab_0 - - jupyter_server=2.7.3=pyhd8ed1ab_1 - - nbconvert-pandoc=7.9.2=pyhd8ed1ab_0 + - matplotlib=3.8.2=py311h38be061_0 + - nbconvert-core=7.11.0=pyhd8ed1ab_0 + - jupyter_server=2.10.1=pyhd8ed1ab_0 + - nbconvert-pandoc=7.11.0=pyhd8ed1ab_0 - jupyter-lsp=2.2.0=pyhd8ed1ab_0 - - jupyterlab_server=2.25.0=pyhd8ed1ab_0 - - nbconvert=7.9.2=pyhd8ed1ab_0 + - jupyterlab_server=2.25.2=pyhd8ed1ab_0 + - nbconvert=7.11.0=pyhd8ed1ab_0 - notebook-shim=0.2.3=pyhd8ed1ab_0 - - jupyterlab=4.0.6=pyhd8ed1ab_0 - - notebook=7.0.4=pyhd8ed1ab_0 - - widgetsnbextension=3.6.6=pyhd8ed1ab_0 - - ipywidgets=7.8.0=pyhd8ed1ab_0 - - jupyter-jsmol=2022.1.0=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 diff --git a/src/environment-3.11-macos-arm.yml b/src/environment-3.11-macos-arm64.yml similarity index 70% rename from src/environment-3.11-macos-arm.yml rename to src/environment-3.11-macos-arm64.yml index 257f8679988..7bf0942990c 100644 --- a/src/environment-3.11-macos-arm.yml +++ b/src/environment-3.11-macos-arm64.yml @@ -1,20 +1,19 @@ # Generated by conda-lock. # platform: osx-arm64 -# input_hash: 5ced3052f236d9de3ff8baeed53862fb5637be84edcc3644a43c5c6ce0c4e32f +# input_hash: dccf1ba41cc9c40db7915523f6954f39d162880893931054bc742893c48f8b6b channels: - conda-forge dependencies: - _r-mutex=1.0.1=anacondar_1 - - bc=1.07.1=h3422bc3_0 - - bzip2=1.0.8=h3422bc3_4 - - c-ares=1.20.1=h93a5062_0 - - ca-certificates=2023.7.22=hf0a4a13_0 + - bzip2=1.0.8=h93a5062_5 + - c-ares=1.22.1=h93a5062_0 + - ca-certificates=2023.11.17=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=hab24e00_0 + - font-ttf-ubuntu=0.83=h77eed37_1 - fribidi=1.0.10=h27ca646_0 - giflib=5.2.1=h1a8c8d9_3 - jpeg=9e=h1a8c8d9_3 @@ -32,13 +31,12 @@ dependencies: - libuv=1.46.0=hb547adb_0 - libwebp-base=1.2.4=h1a8c8d9_0 - libzlib=1.2.13=h53f4e23_5 - - llvm-openmp=17.0.2=h1c12783_0 + - llvm-openmp=17.0.5=hcd81f8e_0 - m4=1.4.18=h642e427_1001 - make=4.3=he57ea6c_1 - mathjax=3.2.2=hce30654_0 - metis=5.1.0=h13dd4ca_1007 - nauty=2.7.2=h3422bc3_0 - - ncurses=6.4=h7ea286d_0 - palp=2.20=h27ca646_0 - pandoc=3.1.3=hce30654_0 - pari-elldata=0.0.20161017=0 @@ -54,6 +52,7 @@ dependencies: - 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 - xorg-libxau=1.0.11=hb547adb_0 @@ -67,7 +66,7 @@ dependencies: - gengetopt=2.23=hbdafb3b_0 - gettext=0.21.1=h0186832_0 - gf2x=1.3.0=hdaa854c_2 - - gmp=6.2.1=h9f76cd9_0 + - gmp=6.3.0=h965bd2d_0 - graphite2=1.3.13=h9f76cd9_1001 - icu=70.1=h6b3803e_0 - isl=0.25=h9a09cb3_0 @@ -75,29 +74,25 @@ dependencies: - libbraiding=1.1=h9f76cd9_0 - libbrotlidec=1.1.0=hb547adb_1 - libbrotlienc=1.1.0=hb547adb_1 - - libedit=3.1.20191231=hc8eb9b7_2 - libgfortran5=13.2.0=hf226fd6_1 - libpng=1.6.39=h76d750c_0 - - libsqlite=3.43.0=hb31c410_0 + - libsqlite=3.44.2=h091b4b1_0 - libxcb=1.13=h9b22ae9_1004 - lrcalc=2.1=hb7217d7_5 + - ncurses=6.4=h463b476_2 - ninja=1.11.1=hffc8910_0 - - openjdk=20.0.2=hbe7ddab_2 - - openssl=3.1.3=h53f4e23_0 + - openjdk=21.0.1=hed44d8b_0 + - openssl=3.2.0=h0d3ecfb_0 - pari-seadata=0.0.20090618=0 - pcre2=10.40=hb34f9b4_0 - pixman=0.42.2=h13dd4ca_0 - primesieve=11.0=hb7217d7_0 - qhull=2020.2=hc021e02_2 - - readline=8.2=h92ec313_1 - symmetrica=3.0.1=hb7217d7_0 - tapi=1100.0.11=he4954df_0 - - tar=1.34=h7cb298e_1 - - tbb=2021.10.0=h1995070_1 - - texinfo=7.0=pl5321h9ea1dce_0 - threejs-sage=122=hd8ed1ab_2 - - tk=8.6.13=hb31c410_0 - - zeromq=4.3.4=hbdafb3b_1 + - 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 @@ -105,126 +100,144 @@ dependencies: - brotli-bin=1.1.0=hb547adb_1 - bwidget=1.9.14=hce30654_1 - cddlib=1!0.94m=h6d7a090_0 - - ecl=21.2.1=h8492d4d_2 - ecm=7.0.4=h47c7c1a_1002 - fonts-conda-ecosystem=1=0 - freetype=2.12.1=hadb7bae_2 - - gap-core=4.12.2=he8f4e70_3 - givaro=4.1.1=h0cdca34_3 - glpk=5.0=h6d7a090_0 - jmol=14.32.10=hce30654_0 - - krb5=1.20.1=h69eda48_0 + - libedit=3.1.20191231=hc8eb9b7_2 - libgfortran=5.0.0=13_2_0_hd922786_1 - - libglib=2.78.0=h24e9cb9_0 + - libglib=2.78.1=hd9b11f9_0 - libhomfly=1.02r6=h27ca646_0 - - libnghttp2=1.52.0=hae82a92_0 + - libnghttp2=1.58.0=ha4dd798_0 - libssh2=1.11.0=h7a5bd25_0 - libtiff=4.5.0=h5dffbdd_2 - libxml2=2.10.3=h67585b2_4 - m4ri=20140914=h17b34a0_1005 - - mpfr=4.2.0=he09a6ba_0 + - mpfr=4.2.1=h9546428_0 - ntl=11.4.3=hbb3f309_1 - - pari=2.15.4=haeeeed7_2_pthread - primecount=7.6=hb6e4faa_0 - - python=3.11.6=h47c9636_0_cpython + - readline=8.2=h92ec313_1 - sigtool=0.1.3=h44b9a77_0 - - sqlite=3.43.0=h203b68d_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 + - libbrial=1.2.12=ha7f5006_1 + - libflint=2.9.0=h173eafc_ntl_100 + - libllvm16=16.0.1=h1e5164c_0 + - libopenblas=0.3.25=openmp_h6c19121_0 + - libwebp=1.2.4=h999c80f_1 + - m4rie=20150908=h17b34a0_1001 + - mpc=1.3.1=h91ba8db_0 + - mpfi=1.5.4=hbde5f5b_1001 + - 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.6=h47c9636_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 + - arb=2.23.0=he5401aa_0 - attrs=23.1.0=pyh71513ae_1 - backcall=0.2.0=pyh9f0ad1d_0 - - backports=1.0=pyhd8ed1ab_3 - - brotli=1.1.0=hb547adb_1 + - brial=1.2.12=pyh694c41f_1 - brotli-python=1.1.0=py311ha891d26_1 - cached_property=1.5.2=pyha770c72_1 - - cachetools=5.3.1=pyhd8ed1ab_0 - - certifi=2023.7.22=pyhd8ed1ab_0 + - cachetools=5.3.2=pyhd8ed1ab_0 + - cairo=1.16.0=h73a0509_1014 + - certifi=2023.11.17=pyhd8ed1ab_0 - chardet=5.2.0=py311h267d04e_1 - - charset-normalizer=3.3.0=pyhd8ed1ab_0 + - charset-normalizer=3.3.2=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_0 - cycler=0.12.1=pyhd8ed1ab_0 - cysignals=1.11.2=py311he42fc87_3 - - cython=3.0.2=py311ha891d26_2 + - cython=3.0.6=py311hbaf5611_0 - debugpy=1.8.0=py311ha891d26_1 - decorator=5.1.1=pyhd8ed1ab_0 - defusedxml=0.7.1=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - docutils=0.20.1=py311h267d04e_2 + - eclib=20230424=haeb5157_0 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 - - exceptiongroup=1.1.3=pyhd8ed1ab_0 - - executing=1.2.0=pyhd8ed1ab_0 - - fftw=3.3.10=nompi_h3046061_108 - - filelock=3.12.4=pyhd8ed1ab_0 + - exceptiongroup=1.2.0=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=h82840c6_0 + - fplll=5.4.5=hb7d509d_0 - gap-defaults=4.12.2=hce30654_3 - gast=0.5.4=pyhd8ed1ab_0 - - gfan=0.6.2=hec08f5c_1003 - - idna=3.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=1.1.7=pyhd8ed1ab_0 + - jupyterlab_widgets=3.0.9=pyhd8ed1ab_0 - kiwisolver=1.4.5=py311he4fd1f5_1 - lcalc=2.0.5=hc94e8e6_1 - - lcms2=2.15=h481adae_0 - - libbrial=1.2.12=ha7f5006_1 + - ld64_osx-arm64=609=h297e91e_13 + - libblas=3.9.0=20_osxarm64_openblas + - libclang-cpp16=16.0.1=default_he7141eb_0 - libcurl=8.1.2=h912dcd9_0 - - libflint=2.9.0=h173eafc_ntl_100 - - libllvm15=15.0.7=h62b9111_1 - - libopenblas=0.3.24=openmp_hd76b1f2_0 - - libwebp=1.2.4=h999c80f_1 - - m4rie=20150908=h17b34a0_1001 + - libgd=2.3.3=h90fb8ed_4 + - llvm-tools=16.0.1=h1e5164c_0 - markupsafe=2.1.3=py311heffc1b2_1 - maxima=5.45.0=h6032a66_2 - - mistune=3.0.1=pyhd8ed1ab_0 - - mpc=1.3.1=h91ba8db_0 - - mpfi=1.5.4=hbde5f5b_1001 + - mistune=3.0.2=pyhd8ed1ab_0 - mpmath=1.3.0=pyhd8ed1ab_0 - munkres=1.1.4=pyh9f0ad1d_0 - - nest-asyncio=1.5.6=pyhd8ed1ab_0 - - networkx=2.8.8=pyhd8ed1ab_0 - - openjpeg=2.5.0=hbc2ba62_2 + - nest-asyncio=1.5.8=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.11.2=pyhd8ed1ab_0 - pickleshare=0.7.5=py_1003 - - pkg-config=0.29.2=hab62308_1008 + - pillow=9.4.0=py311h627eb56_1 + - pkgconfig=1.5.5=pyhd8ed1ab_4 - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 - pluggy=1.3.0=pyhd8ed1ab_0 - ply=3.11=py_1 - - ppl=1.2=h8b147cf_1006 - - prometheus_client=0.17.1=pyhd8ed1ab_0 + - prometheus_client=0.19.0=pyhd8ed1ab_0 - psutil=5.9.5=py311heffc1b2_1 - 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.16.1=pyhd8ed1ab_0 + - pygments=2.17.2=pyhd8ed1ab_0 - pyparsing=3.1.1=pyhd8ed1ab_0 - - pyrsistent=0.19.3=py311heffc1b2_1 + - pyrsistent=0.20.0=py311h05b510d_0 - pysocks=1.7.1=pyha2e5f31_6 - - python-fastjsonschema=2.18.1=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 - - pyzmq=25.1.1=py311hb1af645_1 - - qd=2.3.22=hbec66e7_1004 + - pyzmq=25.1.1=py311he9c0408_2 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.10.4=py311h94f323b_0 + - rpds-py=0.13.1=py311h94f323b_0 - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 - sagetex=3.6.1=pyhd8ed1ab_0 - - setuptools=59.8.0=py311h267d04e_1 + - setuptools=68.2.2=pyhd8ed1ab_0 - simplegeneric=0.8.1=py_1 + - singular=4.2.1.p3=h3b80c97_2 - six=1.16.0=pyh6c4a22f_0 - sniffio=1.3.0=pyhd8ed1ab_0 - snowballstemmer=2.2.0=pyhd8ed1ab_0 @@ -233,164 +246,143 @@ dependencies: - sympow=2.023.6=hb0babe8_3 - tomli=2.0.1=pyhd8ed1ab_0 - tornado=6.3.3=py311heffc1b2_1 - - traitlets=5.11.2=pyhd8ed1ab_0 - - trove-classifiers=2023.9.19=pyhd8ed1ab_0 + - traitlets=5.13.0=pyhd8ed1ab_0 + - trove-classifiers=2023.11.22=pyhd8ed1ab_0 - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 - typing_extensions=4.8.0=pyha770c72_0 - typing_utils=0.1.0=pyhd8ed1ab_0 - - tzlocal=5.1=py311h267d04e_0 + - tzlocal=5.2=py311h267d04e_0 - uri-template=1.3.0=pyhd8ed1ab_0 - vcversioner=2.16.0.0=py_1 + - wcwidth=0.2.12=pyhd8ed1ab_0 - webcolors=1.13=pyhd8ed1ab_0 - webencodings=0.5.1=pyhd8ed1ab_2 - websocket-client=1.6.4=pyhd8ed1ab_0 - - wheel=0.41.2=pyhd8ed1ab_0 + - wheel=0.42.0=pyhd8ed1ab_0 + - widgetsnbextension=4.0.9=pyhd8ed1ab_0 - zipp=3.17.0=pyhd8ed1ab_0 - - anyio=4.0.0=pyhd8ed1ab_0 - - arb=2.23.0=he5401aa_0 - - asttokens=2.4.0=pyhd8ed1ab_0 + - anyio=4.1.0=pyhd8ed1ab_0 + - asttokens=2.4.1=pyhd8ed1ab_0 - async-lru=2.0.4=pyhd8ed1ab_0 - - babel=2.12.1=pyhd8ed1ab_1 - - backports.functools_lru_cache=1.6.5=pyhd8ed1ab_0 + - babel=2.13.1=pyhd8ed1ab_0 - beautifulsoup4=4.12.2=pyha770c72_0 - beniget=0.4.1=pyhd8ed1ab_0 - bleach=6.1.0=pyhd8ed1ab_0 - - brial=1.2.12=pyh694c41f_1 - cached-property=1.5.2=hd8ed1ab_1 - - cairo=1.16.0=h73a0509_1014 + - cctools_osx-arm64=973.0.1=h7a0f565_13 - cffi=1.16.0=py311h4a08483_0 + - clang-16=16.0.1=default_he7141eb_0 - 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 - - eclib=20230424=haeb5157_0 - - fonttools=4.43.1=py311h05b510d_0 - - fplll=5.4.4=h29209e0_0 - - gfortran_impl_osx-arm64=12.3.0=hbbb9e1e_1 - - gmpy2=2.1.2=py311h2ba9262_1 + - fonttools=4.45.1=py311h05b510d_0 + - harfbuzz=6.0.0=hddbc195_0 - importlib-metadata=6.8.0=pyha770c72_0 - - importlib_resources=6.1.0=pyhd8ed1ab_0 + - importlib_resources=6.1.1=pyhd8ed1ab_0 - jedi=0.19.1=pyhd8ed1ab_0 - jinja2=3.1.2=pyhd8ed1ab_1 - - jupyterlab_pygments=0.2.2=pyhd8ed1ab_0 - - ld64_osx-arm64=609=hc4dc95b_14 - - libblas=3.9.0=18_osxarm64_openblas - - libclang-cpp15=15.0.7=default_h5dc8d65_3 - - libgd=2.3.3=h90fb8ed_4 - - llvm-tools=15.0.7=h62b9111_1 + - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 + - ld64=609=h634c8be_13 + - 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.2=py311he2be06e_2 - - openblas=0.3.24=openmp_hce3e5ba_0 + - memory-allocator=0.1.3=py311heffc1b2_0 - overrides=7.4.0=pyhd8ed1ab_0 - pexpect=4.8.0=pyh1a96a4e_2 - - pillow=9.4.0=py311h627eb56_1 - - pip=23.2.1=pyhd8ed1ab_0 - - pkgconfig=1.5.5=pyhd8ed1ab_4 + - pip=23.3.1=pyhd8ed1ab_0 + - platformdirs=4.0.0=pyhd8ed1ab_0 + - pplpy=0.8.7=py311hb546c2d_0 - primecountpy=0.1.0=py311he4fd1f5_4 + - prompt-toolkit=3.0.24=pyha770c72_0 - pybind11=2.11.1=py311he4fd1f5_2 - pyobjc-core=10.0=py311hb702dc4_0 - pyproject-api=1.6.1=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - pytz-deprecation-shim=0.1.0.post0=py311h267d04e_4 - - referencing=0.30.2=pyhd8ed1ab_0 + - referencing=0.31.0=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - sagemath-db-conway-polynomials=0.5.0=h4653dfc_1 - - singular=4.2.1.p3=h3b80c97_2 - - terminado=0.17.1=pyhd1c38e8_0 + - sympy=1.12=pypyh9d50eac_103 + - terminado=0.18.0=pyh31c8845_0 - tinycss2=1.2.1=pyhd8ed1ab_0 - typing-extensions=4.8.0=hd8ed1ab_0 - - urllib3=2.0.6=pyhd8ed1ab_0 + - urllib3=2.1.0=pyhd8ed1ab_0 - argon2-cffi-bindings=21.2.0=py311heffc1b2_4 + - arpack=3.7.0=h58ebc17_2 - arrow=1.3.0=pyhd8ed1ab_0 - - cctools_osx-arm64=973.0.1=h2a25c60_14 - - clang-15=15.0.7=default_h5dc8d65_3 + - cctools=973.0.1=h4faf515_13 + - clang=16.0.1=h1e5164c_0 + - dsdp=5.8=h9397a75_1203 + - fflas-ffpack=2.4.3=h11f2abc_2 - fqdn=1.5.1=pyhd8ed1ab_0 - - harfbuzz=6.0.0=hddbc195_0 + - gsl=2.7=h6e638da_0 - hatchling=1.18.0=pyhd8ed1ab_0 - - importlib-resources=6.1.0=pyhd8ed1ab_0 + - iml=1.0.5=hd52f0d1_1003 + - importlib-resources=6.1.1=pyhd8ed1ab_0 - importlib_metadata=6.8.0=hd8ed1ab_0 - - jsonschema-specifications=2023.7.1=pyhd8ed1ab_0 + - jsonschema-specifications=2023.11.1=pyhd8ed1ab_0 + - jupyter_core=5.5.0=py311h267d04e_0 - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1 - - ld64=609=h89fa09d_14 - - libcblas=3.9.0=18_osxarm64_openblas - - liblapack=3.9.0=18_osxarm64_openblas - - platformdirs=3.11.0=pyhd8ed1ab_0 - - pplpy=0.8.7=py311hb546c2d_0 + - liblapacke=3.9.0=20_osxarm64_openblas + - numpy=1.26.2=py311h6d074dd_0 + - pango=1.50.14=h6c112b8_0 + - prompt_toolkit=3.0.24=hd8ed1ab_0 - pyobjc-framework-cocoa=10.0=py311hb702dc4_1 - requests=2.31.0=pyhd8ed1ab_0 - setuptools-scm=8.0.4=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 - - sympy=1.12=pypyh9d50eac_103 - - wcwidth=0.2.8=pyhd8ed1ab_0 - - argon2-cffi=23.1.0=pyhd8ed1ab_0 - - arpack=3.7.0=h58ebc17_2 - - cctools=973.0.1=hd1ac623_14 - - clang=15.0.7=hce30654_3 - - dsdp=5.8=h9397a75_1203 - - fflas-ffpack=2.4.3=h11f2abc_2 - - gsl=2.7=h6e638da_0 - - iml=1.0.5=hd52f0d1_1003 - - isoduration=20.11.0=pyhd8ed1ab_0 - - jsonschema=4.19.1=pyhd8ed1ab_0 - - jupyter_core=5.3.2=py311h267d04e_0 - - liblapacke=3.9.0=18_osxarm64_openblas - - numpy=1.26.0=py311hb8f3215_0 - - pango=1.50.14=h6c112b8_0 - - pooch=1.7.0=pyhd8ed1ab_4 - - prompt-toolkit=3.0.39=pyha770c72_0 - - send2trash=1.8.2=pyhd1c38e8_0 - - setuptools_scm=8.0.4=hd8ed1ab_0 - suitesparse=5.10.1=h7cd81ec_1 - - virtualenv=20.24.4=pyhd8ed1ab_0 - - blas-devel=3.9.0=18_osxarm64_openblas - - clangxx=15.0.7=default_h610c423_3 - - contourpy=1.1.1=py311he4fd1f5_1 + - virtualenv=20.24.7=pyhd8ed1ab_0 + - argon2-cffi=23.1.0=pyhd8ed1ab_0 + - blas-devel=3.9.0=20_osxarm64_openblas + - clangxx=16.0.1=default_ha0f6327_0 + - contourpy=1.2.0=py311hd03642b_0 - cvxopt=1.3.2=py311hd76776f_1 - - fpylll=0.5.9=py311h3ca9eb5_1 + - fpylll=0.6.0=py311he33df0e_1 - giac=1.9.0.21=h1c96721_1 - igraph=0.9.10=hcec9b84_1 - - jsonschema-with-format-nongpl=4.19.1=pyhd8ed1ab_0 - - jupyter_client=8.3.1=pyhd8ed1ab_0 + - ipython=8.8.0=pyhd1c38e8_0 + - isoduration=20.11.0=pyhd8ed1ab_0 + - jsonschema=4.20.0=pyhd8ed1ab_0 + - jupyter_client=8.6.0=pyhd8ed1ab_0 - linbox=1.6.3=h549c411_7 - - nbformat=5.9.2=pyhd8ed1ab_0 - - prompt_toolkit=3.0.39=hd8ed1ab_0 - - scipy=1.10.1=py311h93d07a4_3 + - scipy=1.11.4=py311h2b215a9_0 + - send2trash=1.8.2=pyhd1c38e8_0 + - setuptools_scm=8.0.4=hd8ed1ab_0 - tox=4.11.3=pyhd8ed1ab_0 - - blas=2.118=openblas - - compiler-rt_osx-arm64=15.0.7=hf8d1dfb_1 - - ipython=8.16.1=pyh31c8845_0 - - jupyter_events=0.7.0=pyhd8ed1ab_2 - - matplotlib-base=3.8.0=py311h3bc9839_1 - - nbclient=0.8.0=pyhd8ed1ab_0 + - blas=2.120=openblas + - compiler-rt_osx-arm64=16.0.1=h30b49de_0 + - 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=hf8d1dfb_1 - - ipykernel=6.25.2=pyh1050b4e_0 - - matplotlib=3.8.0=py311ha1ab1f8_1 - - nbconvert-core=7.9.2=pyhd8ed1ab_0 - - clang_osx-arm64=15.0.7=h77e971b_3 - - jupyter_server=2.7.3=pyhd8ed1ab_1 - - nbconvert-pandoc=7.9.2=pyhd8ed1ab_0 - - c-compiler=1.6.0=hd291e01_0 - - clangxx_osx-arm64=15.0.7=h768a7fd_3 + - compiler-rt=16.0.1=h30b49de_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_osx-arm64=16.0.1=hdccda30_1 + - nbconvert-core=7.11.0=pyhd8ed1ab_0 + - clangxx_osx-arm64=16.0.1=h0c1d50e_1 - gfortran_osx-arm64=12.3.0=h57527a5_1 + - jupyter_server=2.10.1=pyhd8ed1ab_0 + - nbconvert-pandoc=7.11.0=pyhd8ed1ab_0 + - gfortran=12.3.0=h1ca8e4b_1 - jupyter-lsp=2.2.0=pyhd8ed1ab_0 - - jupyterlab_server=2.25.0=pyhd8ed1ab_0 - - nbconvert=7.9.2=pyhd8ed1ab_0 + - jupyterlab_server=2.25.2=pyhd8ed1ab_0 + - nbconvert=7.11.0=pyhd8ed1ab_0 - notebook-shim=0.2.3=pyhd8ed1ab_0 - - cxx-compiler=1.6.0=h1995070_0 - - gfortran=12.3.0=h1ca8e4b_1 - - jupyterlab=4.0.6=pyhd8ed1ab_0 - pythran=0.14.0=py311hddbb800_1 - r-base=4.1.3=h9c4d319_6 - fortran-compiler=1.6.0=h5a50232_0 - - notebook=7.0.4=pyhd8ed1ab_0 + - jupyterlab=4.0.9=pyhd8ed1ab_0 - rpy2=3.5.11=py311r41h4add359_0 - - compilers=1.6.0=hce30654_0 - - widgetsnbextension=3.6.6=pyhd8ed1ab_0 - - ipywidgets=7.8.0=pyhd8ed1ab_0 - - jupyter-jsmol=2022.1.0=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 diff --git a/src/environment-3.11-macos.yml b/src/environment-3.11-macos.yml index 7c3945539ef..c3b73177645 100644 --- a/src/environment-3.11-macos.yml +++ b/src/environment-3.11-macos.yml @@ -1,24 +1,24 @@ # Generated by conda-lock. # platform: osx-64 -# input_hash: fbfee861def4f8ad644369faa85105ae96e28adc0decec926abcebb0ae4afc13 +# input_hash: 9e55a3e3c14fb14381a08b8920fff7872e04f0e42c4f78cc95189f975d3bcb24 channels: - conda-forge dependencies: - _r-mutex=1.0.1=anacondar_1 - - bzip2=1.0.8=h0d85af4_4 - - c-ares=1.19.1=h0dc2134_0 - - ca-certificates=2023.7.22=h8857fd0_0 + - bzip2=1.0.8=h10d778d_5 + - c-ares=1.22.1=h10d778d_0 + - ca-certificates=2023.11.17=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=hab24e00_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.82.0=h694c41f_6 + - libboost-headers=1.83.0=h694c41f_0 - libbrotlicommon=1.1.0=h0dc2134_1 - libcxx=16.0.6=hd57cbcb_0 - libdeflate=1.19=ha4e1b8e_0 @@ -33,13 +33,12 @@ dependencies: - libuv=1.46.0=h0c2f820_0 - libwebp-base=1.3.2=h0dc2134_0 - libzlib=1.2.13=h8a1eda9_5 - - llvm-openmp=17.0.2=hff08bdf_0 + - llvm-openmp=17.0.5=hb6ac08f_0 - m4=1.4.18=haf1e3a3_1001 - make=4.3=h22f3db7_1 - mathjax=3.2.2=h694c41f_0 - metis=5.1.0=he965462_1007 - nauty=2.7.2=h0d85af4_0 - - ncurses=6.4=hf0c8a7f_0 - palp=2.20=hbcb3906_0 - pari-elldata=0.0.20161017=0 - pari-galdata=0.0.20180411=0 @@ -55,6 +54,7 @@ dependencies: - sagemath-db-combinatorial-designs=20140630=1 - sagemath-db-graphs=20210214=hd8ed1ab_0 - sagemath-db-polytopes=20170220=1 + - tbb=2021.10.0=h1c7c39f_2 - three.js=122=hd8ed1ab_2 - tzdata=2023c=h71feb2d_0 - xorg-libxau=1.0.11=h0dc2134_0 @@ -68,168 +68,183 @@ dependencies: - gengetopt=2.23=he49afe7_0 - gettext=0.21.1=h8a4c099_0 - gf2x=1.3.0=hb2a7efb_2 - - gmp=6.2.1=h2e338ed_0 + - 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.1=h2e338ed_0 - libbrotlidec=1.1.0=h0dc2134_1 - libbrotlienc=1.1.0=h0dc2134_1 - - libedit=3.1.20191231=h0678c8f_2 - libgfortran5=13.2.0=h2873a65_1 - libpng=1.6.39=ha978bb4_0 - - libsqlite=3.43.0=h58db7d2_0 + - libsqlite=3.44.2=h92b6c6a_0 - libxcb=1.15=hb7f2c08_0 - - libxml2=2.11.5=h3346baf_1 + - libxml2=2.11.6=hc0ae0f7_0 - lrcalc=2.1=hf0c8a7f_5 + - ncurses=6.4=h93d8f39_2 - ninja=1.11.1=hb8565cd_0 - - openjdk=20.0.2=h7d26f99_2 - - openssl=3.1.3=h8a1eda9_0 + - openjdk=21.0.1=hf4d7fad_0 + - openssl=3.2.0=hd75f5a5_0 - pandoc=3.1.3=h9d075a6_0 - pari-seadata=0.0.20090618=0 - - pcre2=10.40=h1c4e4bc_0 + - pcre2=10.42=h0ad2156_0 - pixman=0.42.2=he965462_0 - pkg-config=0.29.2=ha3d46e9_1008 - primesieve=11.0=hf0c8a7f_0 - qhull=2020.2=h940c156_2 - - readline=8.2=h9e318b2_1 - symmetrica=3.0.1=hf0c8a7f_0 - tapi=1100.0.11=h9ce4665_0 - - tbb=2021.10.0=h1c7c39f_1 - - texinfo=7.0=pl5321hc47821c_0 - threejs-sage=122=hd8ed1ab_2 - - tk=8.6.13=hef22860_0 - - zeromq=4.3.4=he49afe7_1 + - 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 - - ecl=21.2.1=hd029580_2 - ecm=7.0.4=h343d7f2_1002 - fonts-conda-ecosystem=1=0 - freetype=2.12.1=h60636b9_2 - - gap-core=4.12.2=hc16eb5f_3 - givaro=4.1.1=h0a799c6_3 - glpk=5.0=h3cb5acd_0 - jmol=14.32.9=h694c41f_0 - - krb5=1.21.2=hb884880_0 - - libboost=1.82.0=hf0c313a_6 + - libboost=1.83.0=hf44e908_0 + - libedit=3.1.20191231=h0678c8f_2 - libgfortran=5.0.0=13_2_0_h97931a8_1 - - libglib=2.78.0=hc62aa5d_0 + - libglib=2.78.1=h198397b_1 - libhomfly=1.02r6=hc929b4f_0 - libllvm16=16.0.6=he4b1e75_2 - - libnghttp2=1.52.0=he2ab024_0 + - libnghttp2=1.58.0=h64cf6d3_0 - libssh2=1.11.0=hd019ec5_0 - libtiff=4.6.0=h684deea_2 - m4ri=20140914=h3f75d11_1005 - - mpfr=4.2.0=h4f9bd69_0 + - mpfr=4.2.1=h0c69b56_0 - ntl=11.4.3=h0ab3c2f_1 - - pari=2.15.4=h93f793c_2_pthread - primecount=7.6=ha894c9a_0 - - python=3.11.6=h30d4d87_0_cpython + - readline=8.2=h9e318b2_1 - sigtool=0.1.3=h88f4db0_0 - - sqlite=3.43.0=h2b0dec6_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.15=hd6ba6f3_3 + - ld64_osx-64=609=ha20a434_15 + - libboost-devel=1.83.0=h7728843_0 + - libbrial=1.2.12=h8d08345_1 + - libclang-cpp16=16.0.6=default_h762fdd7_2 + - libflint=2.9.0=hfd2f71f_ntl_100 + - libopenblas=0.3.25=openmp_hfef2a42_0 + - libwebp=1.3.2=h44782d1_1 + - llvm-tools=16.0.6=he4b1e75_2 + - 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.6=h30d4d87_0_cpython + - qd=2.3.22=h2beb688_1004 + - sqlite=3.44.2=h7461747_0 - alabaster=0.7.13=pyhd8ed1ab_0 - appdirs=1.4.4=pyh9f0ad1d_0 - appnope=0.1.3=pyhd8ed1ab_0 + - arb=2.23.0=h905a977_0 - attrs=23.1.0=pyh71513ae_1 - backcall=0.2.0=pyh9f0ad1d_0 - - backports=1.0=pyhd8ed1ab_3 - - brotli=1.1.0=h0dc2134_1 + - boost-cpp=1.83.0=h07eb623_0 + - brial=1.2.12=pyh694c41f_1 - brotli-python=1.1.0=py311hdf8f085_1 - cached_property=1.5.2=pyha770c72_1 - - cachetools=5.3.1=pyhd8ed1ab_0 - - certifi=2023.7.22=pyhd8ed1ab_0 + - cachetools=5.3.2=pyhd8ed1ab_0 + - cairo=1.18.0=h99e66fa_0 + - cctools_osx-64=973.0.1=ha1c5b94_15 + - certifi=2023.11.17=pyhd8ed1ab_0 - chardet=5.2.0=py311h6eed73b_1 - - charset-normalizer=3.3.0=pyhd8ed1ab_0 + - charset-normalizer=3.3.2=pyhd8ed1ab_0 + - clang-16=16.0.6=default_h762fdd7_2 - colorama=0.4.6=pyhd8ed1ab_0 - cycler=0.12.1=pyhd8ed1ab_0 - cysignals=1.11.2=py311h8a58447_3 - - cython=3.0.2=py311hdf8f085_2 + - cython=3.0.6=py311hd39e593_0 - debugpy=1.8.0=py311hdf8f085_1 - decorator=5.1.1=pyhd8ed1ab_0 - defusedxml=0.7.1=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - docutils=0.20.1=py311h6eed73b_2 + - eclib=20230424=hd00e801_0 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 - - exceptiongroup=1.1.3=pyhd8ed1ab_0 - - executing=1.2.0=pyhd8ed1ab_0 - - fftw=3.3.10=nompi_h4fa670e_108 - - filelock=3.12.4=pyhd8ed1ab_0 + - exceptiongroup=1.2.0=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=h5bb23bf_0 + - fplll=5.4.5=hb7981ad_0 - gap-defaults=4.12.2=h694c41f_3 - gast=0.5.4=pyhd8ed1ab_0 - - gfan=0.6.2=hd793b56_1003 - - idna=3.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=1.1.7=pyhd8ed1ab_0 + - jupyterlab_widgets=3.0.9=pyhd8ed1ab_0 - kiwisolver=1.4.5=py311h5fe6e05_1 - lcalc=2.0.5=h3a941db_1 - - lcms2=2.15=hd6ba6f3_3 - - ld64_osx-64=609=ha20a434_14 - - libboost-devel=1.82.0=h1c7c39f_6 - - libbrial=1.2.12=h8d08345_1 - - libclang-cpp16=16.0.6=default_h762fdd7_1 - - libcurl=8.3.0=h5f667d7_0 - - libflint=2.9.0=hfd2f71f_ntl_100 - - libopenblas=0.3.24=openmp_h48a4ad5_0 - - libwebp=1.3.2=h44782d1_1 - - llvm-tools=16.0.6=he4b1e75_2 - - m4rie=20150908=h3f75d11_1001 + - ld64=609=ha02d983_15 + - libblas=3.9.0=20_osx64_openblas + - libcurl=8.4.0=h726d00d_0 + - libgd=2.3.3=h0dceb68_9 - markupsafe=2.1.3=py311h2725bcf_1 - maxima=5.45.0=hd029580_3 - - mistune=3.0.1=pyhd8ed1ab_0 - - mpc=1.3.1=h81bd1dd_0 - - mpfi=1.5.4=h52b28e3_1001 + - mistune=3.0.2=pyhd8ed1ab_0 - mpmath=1.3.0=pyhd8ed1ab_0 - munkres=1.1.4=pyh9f0ad1d_0 - - nest-asyncio=1.5.6=pyhd8ed1ab_0 - - networkx=2.8.8=pyhd8ed1ab_0 - - openjpeg=2.5.0=ha4da562_3 + - nest-asyncio=1.5.8=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.11.2=pyhd8ed1ab_0 - pickleshare=0.7.5=py_1003 + - pillow=10.1.0=py311hea5c87a_0 - pkgconfig=1.5.5=pyhd8ed1ab_4 - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 - pluggy=1.3.0=pyhd8ed1ab_0 - ply=3.11=py_1 - - ppl=1.2=ha60d53e_1006 - - prometheus_client=0.17.1=pyhd8ed1ab_0 + - prometheus_client=0.19.0=pyhd8ed1ab_0 - psutil=5.9.5=py311h2725bcf_1 - 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.16.1=pyhd8ed1ab_0 + - pygments=2.17.2=pyhd8ed1ab_0 - pyparsing=3.1.1=pyhd8ed1ab_0 - - pyrsistent=0.19.3=py311h2725bcf_1 + - pyrsistent=0.20.0=py311he705e18_0 - pysocks=1.7.1=pyha2e5f31_6 - - python-fastjsonschema=2.18.1=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 - - pyzmq=25.1.1=py311h5dacc12_1 - - qd=2.3.22=h2beb688_1004 + - pyzmq=25.1.1=py311he3804a1_2 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.10.4=py311h5e0f0e4_0 + - rpds-py=0.13.1=py311h5e0f0e4_0 - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 - sagetex=3.6.1=pyhd8ed1ab_0 - - setuptools=59.8.0=py311h6eed73b_1 + - setuptools=68.2.2=pyhd8ed1ab_0 - simplegeneric=0.8.1=py_1 + - singular=4.2.1.p3=hac851df_2 - six=1.16.0=pyh6c4a22f_0 - sniffio=1.3.0=pyhd8ed1ab_0 - snowballstemmer=2.2.0=pyhd8ed1ab_0 @@ -238,155 +253,139 @@ dependencies: - sympow=2.023.6=h115ba6a_3 - tomli=2.0.1=pyhd8ed1ab_0 - tornado=6.3.3=py311h2725bcf_1 - - traitlets=5.11.2=pyhd8ed1ab_0 - - trove-classifiers=2023.9.19=pyhd8ed1ab_0 + - traitlets=5.13.0=pyhd8ed1ab_0 + - trove-classifiers=2023.11.22=pyhd8ed1ab_0 - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 - typing_extensions=4.8.0=pyha770c72_0 - typing_utils=0.1.0=pyhd8ed1ab_0 - - tzlocal=5.1=py311h6eed73b_0 + - tzlocal=5.2=py311h6eed73b_0 - uri-template=1.3.0=pyhd8ed1ab_0 - vcversioner=2.16.0.0=py_1 + - wcwidth=0.2.12=pyhd8ed1ab_0 - webcolors=1.13=pyhd8ed1ab_0 - webencodings=0.5.1=pyhd8ed1ab_2 - websocket-client=1.6.4=pyhd8ed1ab_0 - - wheel=0.41.2=pyhd8ed1ab_0 + - wheel=0.42.0=pyhd8ed1ab_0 + - widgetsnbextension=4.0.9=pyhd8ed1ab_0 - zipp=3.17.0=pyhd8ed1ab_0 - - anyio=4.0.0=pyhd8ed1ab_0 - - arb=2.23.0=h905a977_0 - - asttokens=2.4.0=pyhd8ed1ab_0 + - anyio=4.1.0=pyhd8ed1ab_0 + - asttokens=2.4.1=pyhd8ed1ab_0 - async-lru=2.0.4=pyhd8ed1ab_0 - - babel=2.12.1=pyhd8ed1ab_1 - - backports.functools_lru_cache=1.6.5=pyhd8ed1ab_0 + - babel=2.13.1=pyhd8ed1ab_0 - beautifulsoup4=4.12.2=pyha770c72_0 - beniget=0.4.1=pyhd8ed1ab_0 - bleach=6.1.0=pyhd8ed1ab_0 - - boost-cpp=1.82.0=h07eb623_6 - - brial=1.2.12=pyh694c41f_1 - cached-property=1.5.2=hd8ed1ab_1 - - cairo=1.16.0=hfdb49f2_1017 - - cctools_osx-64=973.0.1=ha1c5b94_14 + - cctools=973.0.1=h40f6528_15 - cffi=1.16.0=py311hc0b63fd_0 - - clang-16=16.0.6=default_h762fdd7_1 - - cmake=3.27.6=hf40c264_0 + - clang=16.0.6=hc177806_2 + - cmake=3.27.8=hc7ee4c4_0 - comm=0.1.4=pyhd8ed1ab_0 - cppy=1.2.1=pyhd8ed1ab_0 - - curl=8.3.0=h5f667d7_0 + - curl=8.4.0=h726d00d_0 - cypari2=2.1.3=py311h7d823c7_2 - deprecation=2.1.0=pyh9f0ad1d_0 - - eclib=20230424=hd00e801_0 - - fonttools=4.43.1=py311he705e18_0 - - fplll=5.4.4=hdfdc905_0 - - gfortran_impl_osx-64=12.3.0=h54fd467_1 - - gmpy2=2.1.2=py311hc5b4402_1 + - fonttools=4.45.1=py311he705e18_0 + - harfbuzz=8.3.0=hf45c392_0 - importlib-metadata=6.8.0=pyha770c72_0 - - importlib_resources=6.1.0=pyhd8ed1ab_0 + - importlib_resources=6.1.1=pyhd8ed1ab_0 - jedi=0.19.1=pyhd8ed1ab_0 - jinja2=3.1.2=pyhd8ed1ab_1 - - jupyterlab_pygments=0.2.2=pyhd8ed1ab_0 - - ld64=609=ha02d983_14 - - libblas=3.9.0=18_osx64_openblas - - libgd=2.3.3=h0dceb68_9 + - jupyterlab_pygments=0.3.0=pyhd8ed1ab_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.2=py311h5547dcb_2 - - openblas=0.3.24=openmp_hd7704e8_0 + - memory-allocator=0.1.3=py311h2725bcf_0 - overrides=7.4.0=pyhd8ed1ab_0 - pexpect=4.8.0=pyh1a96a4e_2 - - pillow=10.0.1=py311h0beca62_2 - - pip=23.2.1=pyhd8ed1ab_0 + - pip=23.3.1=pyhd8ed1ab_0 + - platformdirs=4.0.0=pyhd8ed1ab_0 + - pplpy=0.8.7=py311h47e80fe_0 - primecountpy=0.1.0=py311h5fe6e05_4 + - prompt-toolkit=3.0.24=pyha770c72_0 - pybind11=2.11.1=py311h5fe6e05_2 - pyobjc-core=10.0=py311hf110eff_0 - pyproject-api=1.6.1=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - pytz-deprecation-shim=0.1.0.post0=py311h6eed73b_4 - - referencing=0.30.2=pyhd8ed1ab_0 + - referencing=0.31.0=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - sagemath-db-conway-polynomials=0.5.0=h033912b_1 - - singular=4.2.1.p3=hac851df_2 - - terminado=0.17.1=pyhd1c38e8_0 + - sympy=1.12=pypyh9d50eac_103 + - terminado=0.18.0=pyh31c8845_0 - tinycss2=1.2.1=pyhd8ed1ab_0 - typing-extensions=4.8.0=hd8ed1ab_0 - - urllib3=2.0.6=pyhd8ed1ab_0 + - urllib3=2.1.0=pyhd8ed1ab_0 - argon2-cffi-bindings=21.2.0=py311h2725bcf_4 - arrow=1.3.0=pyhd8ed1ab_0 - - cctools=973.0.1=h40f6528_14 - - clang=16.0.6=hc177806_1 + - clangxx=16.0.6=default_h762fdd7_2 + - dsdp=5.8=h6e329d1_1203 + - fflas-ffpack=2.4.3=h026fd7e_2 - fqdn=1.5.1=pyhd8ed1ab_0 - - harfbuzz=8.2.1=h7666e2a_0 + - gsl=2.7=h93259b0_0 - hatchling=1.18.0=pyhd8ed1ab_0 - - importlib-resources=6.1.0=pyhd8ed1ab_0 + - iml=1.0.5=h64b42ca_1003 + - importlib-resources=6.1.1=pyhd8ed1ab_0 - importlib_metadata=6.8.0=hd8ed1ab_0 - - jsonschema-specifications=2023.7.1=pyhd8ed1ab_0 + - jsonschema-specifications=2023.11.1=pyhd8ed1ab_0 + - jupyter_core=5.5.0=py311h6eed73b_0 - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1 - - libcblas=3.9.0=18_osx64_openblas - - liblapack=3.9.0=18_osx64_openblas - - platformdirs=3.11.0=pyhd8ed1ab_0 - - pplpy=0.8.7=py311h47e80fe_0 + - liblapacke=3.9.0=20_osx64_openblas + - numpy=1.26.2=py311h93c810c_0 + - pango=1.50.14=h19c1c8a_2 + - prompt_toolkit=3.0.24=hd8ed1ab_0 - pyobjc-framework-cocoa=10.0=py311hf110eff_1 - requests=2.31.0=pyhd8ed1ab_0 - setuptools-scm=8.0.4=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 - - sympy=1.12=pypyh9d50eac_103 - - wcwidth=0.2.8=pyhd8ed1ab_0 - - argon2-cffi=23.1.0=pyhd8ed1ab_0 - - clangxx=16.0.6=default_h762fdd7_1 - - dsdp=5.8=h6e329d1_1203 - - fflas-ffpack=2.4.3=h026fd7e_2 - - gsl=2.7=h93259b0_0 - - iml=1.0.5=h64b42ca_1003 - - isoduration=20.11.0=pyhd8ed1ab_0 - - jsonschema=4.19.1=pyhd8ed1ab_0 - - jupyter_core=5.3.2=py311h6eed73b_0 - - liblapacke=3.9.0=18_osx64_openblas - - numpy=1.26.0=py311hc44ba51_0 - - pango=1.50.14=h19c1c8a_2 - - pooch=1.7.0=pyhd8ed1ab_4 - - prompt-toolkit=3.0.39=pyha770c72_0 - - send2trash=1.8.2=pyhd1c38e8_0 - - setuptools_scm=8.0.4=hd8ed1ab_0 - suitesparse=5.10.1=h7aff33d_1 - - virtualenv=20.24.4=pyhd8ed1ab_0 - - blas-devel=3.9.0=18_osx64_openblas - - compiler-rt_osx-64=16.0.6=he1888fc_0 - - contourpy=1.1.1=py311h5fe6e05_1 + - virtualenv=20.24.7=pyhd8ed1ab_0 + - argon2-cffi=23.1.0=pyhd8ed1ab_0 + - blas-devel=3.9.0=20_osx64_openblas + - compiler-rt_osx-64=16.0.6=he1888fc_1 + - contourpy=1.2.0=py311h7bea37d_0 - cvxopt=1.3.2=py311ha4c19de_1 - - fpylll=0.5.9=py311ha75317a_1 + - fpylll=0.6.0=py311hc863427_1 - giac=1.9.0.21=h92f3f65_1 - - jsonschema-with-format-nongpl=4.19.1=pyhd8ed1ab_0 - - jupyter_client=8.3.1=pyhd8ed1ab_0 + - ipython=8.8.0=pyhd1c38e8_0 + - isoduration=20.11.0=pyhd8ed1ab_0 + - jsonschema=4.20.0=pyhd8ed1ab_0 + - jupyter_client=8.6.0=pyhd8ed1ab_0 - linbox=1.6.3=hdde8d14_7 - - nbformat=5.9.2=pyhd8ed1ab_0 - - prompt_toolkit=3.0.39=hd8ed1ab_0 - - scipy=1.10.1=py311h16c3c4d_3 + - scipy=1.11.4=py311he0bea55_0 + - send2trash=1.8.2=pyhd1c38e8_0 + - setuptools_scm=8.0.4=hd8ed1ab_0 - tox=4.11.3=pyhd8ed1ab_0 - - blas=2.118=openblas - - compiler-rt=16.0.6=he1888fc_0 - - ipython=8.16.1=pyh31c8845_0 - - jupyter_events=0.7.0=pyhd8ed1ab_2 - - matplotlib-base=3.8.0=py311haff9b01_0 + - blas=2.120=openblas + - compiler-rt=16.0.6=he1888fc_1 + - 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 + - clang_impl_osx-64=16.0.6=h8787910_6 + - 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=16.0.6=h8787910_1 - - ipykernel=6.25.2=pyh1050b4e_0 - - matplotlib=3.8.0=py311h6eed73b_0 - - nbconvert-core=7.9.2=pyhd8ed1ab_0 - - clangxx_osx-64=16.0.6=h1b7723c_1 + - clang_osx-64=16.0.6=hb91bd55_6 + - nbconvert-core=7.11.0=pyhd8ed1ab_0 + - clangxx_impl_osx-64=16.0.6=h1b7723c_6 - gfortran_osx-64=12.3.0=h18f7dce_1 - - jupyter_server=2.7.3=pyhd8ed1ab_1 - - nbconvert-pandoc=7.9.2=pyhd8ed1ab_0 + - jupyter_server=2.10.1=pyhd8ed1ab_0 + - nbconvert-pandoc=7.11.0=pyhd8ed1ab_0 + - clangxx_osx-64=16.0.6=h2fff7d5_6 - gfortran=12.3.0=h2c809b3_1 - jupyter-lsp=2.2.0=pyhd8ed1ab_0 - - jupyterlab_server=2.25.0=pyhd8ed1ab_0 - - nbconvert=7.9.2=pyhd8ed1ab_0 + - jupyterlab_server=2.25.2=pyhd8ed1ab_0 + - nbconvert=7.11.0=pyhd8ed1ab_0 - notebook-shim=0.2.3=pyhd8ed1ab_0 - - pythran=0.14.0=py311hd5c4f45_1 - - r-base=4.3.1=h0ff45fa_6 - fortran-compiler=1.6.0=h932d759_0 - - jupyterlab=4.0.6=pyhd8ed1ab_0 + - jupyterlab=4.0.9=pyhd8ed1ab_0 + - pythran=0.14.0=py311hd5c4f45_1 + - r-base=4.3.2=h8eaf9e6_1 + - notebook=7.0.6=pyhd8ed1ab_0 - rpy2=3.5.11=py311r43h4a70a88_3 - - notebook=7.0.4=pyhd8ed1ab_0 - - widgetsnbextension=3.6.6=pyhd8ed1ab_0 - - ipywidgets=7.8.0=pyhd8ed1ab_0 - - jupyter-jsmol=2022.1.0=pyhd8ed1ab_0 - jupyter_sphinx=0.4.0=py311h6eed73b_1 - sphinx-basic-ng=1.0.0b2=pyhd8ed1ab_1 - furo=2023.9.10=pyhd8ed1ab_0 diff --git a/src/environment-3.9-linux-aarch64.yml b/src/environment-3.9-linux-aarch64.yml new file mode 100644 index 00000000000..51042106214 --- /dev/null +++ b/src/environment-3.9-linux-aarch64.yml @@ -0,0 +1,419 @@ +# Generated by conda-lock. +# platform: linux-aarch64 +# input_hash: aaf53487f0b471c22bf838e953b1be67935d024285572f1236c3b0f4acca6b05 + +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 + - 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 + - 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 + - fonts-conda-forge=1=0 + - 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 + - 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 + - bdw-gc=8.0.6=hd62202e_0 + - bzip2=1.0.8=h31becfc_5 + - c-ares=1.22.1=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 + - keyutils=1.6.1=h4e544f5_0 + - lerc=4.0.0=h4de3ea5_0 + - libatomic_ops=7.6.14=h4e544f5_0 + - libbraiding=1.1=h7fd3ca4_0 + - libbrotlicommon=1.1.0=h31becfc_1 + - libdeflate=1.17=hb4cce97_0 + - libev=4.33=h516909a_1 + - libexpat=2.5.0=hd600fc2_1 + - libffi=3.4.2=h3557bc0_5 + - libgfortran5=13.2.0=h582850c_3 + - libiconv=1.17=h9cdd2b7_0 + - libnsl=2.0.1=h31becfc_0 + - libsanitizer=12.3.0=h8ebda82_3 + - 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 + - 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.7.2=hf897c2e_0 + - ncurses=6.4=h0425590_2 + - ninja=1.11.1=hdd96247_0 + - openssl=3.2.0=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 + - 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 + - libhomfly=1.02r6=hb9de7d4_0 + - libnghttp2=1.58.0=hb0e430d_0 + - libpng=1.6.39=hf9034f9_0 + - libsqlite=3.44.2=h194ca79_0 + - libssh2=1.11.0=h492db2e_0 + - libxcb=1.13=h3557bc0_1004 + - libxml2=2.10.3=habe54e3_4 + - mpfr=4.2.1=ha2d0fc4_0 + - ntl=11.4.3=h0d7519b_1 + - pcre2=10.40=he7b27c6_0 + - perl=5.32.1=4_h31becfc_perl5 + - primecount=7.6=hd600fc2_0 + - readline=8.2=h8fc344f_1 + - 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 + - libflint=2.9.0=hd3470fa_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 + - llvm-openmp=17.0.5=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 + - 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 + - arb=2.23.0=h37d5dab_0 + - attrs=23.1.0=pyh71513ae_1 + - automake=1.16.5=pl5321h8af1aa0_0 + - backcall=0.2.0=pyh9f0ad1d_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 + - charset-normalizer=3.3.2=pyhd8ed1ab_0 + - colorama=0.4.6=pyhd8ed1ab_0 + - cycler=0.12.1=pyhd8ed1ab_0 + - cysignals=1.11.2=py39hfa81392_3 + - cython=3.0.6=py39h387a81e_0 + - debugpy=1.8.0=py39h387a81e_1 + - decorator=5.1.1=pyhd8ed1ab_0 + - defusedxml=0.7.1=pyhd8ed1ab_0 + - distlib=0.3.7=pyhd8ed1ab_0 + - docutils=0.20.1=py39ha65689a_2 + - eclib=20230424=h0bc7b0f_0 + - editables=0.3=pyhd8ed1ab_0 + - entrypoints=0.4=pyhd8ed1ab_0 + - exceptiongroup=1.2.0=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_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 + - kiwisolver=1.4.5=py39had2cf8c_1 + - lcalc=2.0.5=h3264cc0_1 + - lcms2=2.15=h7576be9_0 + - libblas=3.9.0=20_linuxaarch64_openblas + - libbrial=1.2.12=h17533bf_1 + - libcups=2.3.3=h4303303_3 + - libcurl=8.1.2=hc34909b_0 + - libwebp=1.2.4=h7bdf6e5_1 + - m4rie=20150908=h75e8696_1001 + - markupsafe=2.1.3=py39h7cc1d5f_1 + - maxima=5.45.0=haa44c19_3 + - 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 + - networkx=3.2.1=pyhd8ed1ab_0 + - openblas=0.3.25=pthreads_h339cbfa_0 + - openjpeg=2.5.0=h9508984_2 + - packaging=23.2=pyhd8ed1ab_0 + - pandocfilters=1.5.0=pyhd8ed1ab_0 + - parso=0.8.3=pyhd8ed1ab_0 + - pathspec=0.11.2=pyhd8ed1ab_0 + - pickleshare=0.7.5=py_1003 + - pkgconfig=1.5.5=pyhd8ed1ab_4 + - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 + - pluggy=1.3.0=pyhd8ed1ab_0 + - ply=3.11=py_1 + - prometheus_client=0.19.0=pyhd8ed1ab_0 + - psutil=5.9.5=py39h898b7ef_1 + - 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.1=py39hbab03a2_2 + - rfc3986-validator=0.1.1=pyh9f0ad1d_0 + - rpds-py=0.13.1=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 + - singular=4.2.1.p3=h3d4c4c6_2 + - 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.13.0=pyhd8ed1ab_0 + - trove-classifiers=2023.11.22=pyhd8ed1ab_0 + - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 + - typing_extensions=4.8.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 + - vcversioner=2.16.0.0=py_1 + - wcwidth=0.2.12=pyhd8ed1ab_0 + - webcolors=1.13=pyhd8ed1ab_0 + - webencodings=0.5.1=pyhd8ed1ab_2 + - websocket-client=1.6.4=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 + - zipp=3.17.0=pyhd8ed1ab_0 + - anyio=4.1.0=pyhd8ed1ab_0 + - asttokens=2.4.1=pyhd8ed1ab_0 + - async-lru=2.0.4=pyhd8ed1ab_0 + - babel=2.13.1=pyhd8ed1ab_0 + - beautifulsoup4=4.12.2=pyha770c72_0 + - beniget=0.4.1=pyhd8ed1ab_0 + - bleach=6.1.0=pyhd8ed1ab_0 + - 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 + - cypari2=2.1.3=py39h532d932_2 + - deprecation=2.1.0=pyh9f0ad1d_0 + - fonttools=4.45.1=py39h898b7ef_0 + - fortran-compiler=1.6.0=h7048d53_0 + - importlib-metadata=6.8.0=pyha770c72_0 + - importlib_resources=6.1.1=pyhd8ed1ab_0 + - jedi=0.19.1=pyhd8ed1ab_0 + - jinja2=3.1.2=pyhd8ed1ab_1 + - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 + - libcblas=3.9.0=20_linuxaarch64_openblas + - libgd=2.3.3=h99c6b3b_4 + - 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.1=pyhd8ed1ab_0 + - platformdirs=4.0.0=pyhd8ed1ab_0 + - pplpy=0.8.7=py39h087fc0e_0 + - primecountpy=0.1.0=py39hd16970a_3 + - prompt-toolkit=3.0.24=pyha770c72_0 + - pybind11=2.11.1=py39hd16970a_2 + - pyproject-api=1.6.1=pyhd8ed1ab_0 + - python-dateutil=2.8.2=pyhd8ed1ab_0 + - pytz-deprecation-shim=0.1.0.post0=py39h4420490_4 + - referencing=0.31.0=pyhd8ed1ab_0 + - rfc3339-validator=0.1.4=pyhd8ed1ab_0 + - sagemath-db-conway-polynomials=0.5.0=h4fd8a4c_1 + - sympy=1.12=pypyh9d50eac_103 + - terminado=0.18.0=pyh0d859eb_0 + - tinycss2=1.2.1=pyhd8ed1ab_0 + - typing-extensions=4.8.0=hd8ed1ab_0 + - urllib3=2.1.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 + - dsdp=5.8=hb12102e_1203 + - 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.18.0=pyhd8ed1ab_0 + - iml=1.0.5=h9076c59_1003 + - importlib-resources=6.1.1=pyhd8ed1ab_0 + - importlib_metadata=6.8.0=hd8ed1ab_0 + - jsonschema-specifications=2023.11.1=pyhd8ed1ab_0 + - jupyter_core=5.5.0=py39h4420490_0 + - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1 + - liblapacke=3.9.0=20_linuxaarch64_openblas + - numpy=1.26.2=py39h91c28bb_0 + - prompt_toolkit=3.0.24=hd8ed1ab_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 + - virtualenv=20.24.7=pyhd8ed1ab_0 + - 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 + - giac=1.9.0.21=h04922a4_1 + - igraph=0.9.10=hefb87a8_1 + - ipython=8.8.0=pyh41d4057_0 + - isoduration=20.11.0=pyhd8ed1ab_0 + - jsonschema=4.20.0=pyhd8ed1ab_0 + - jupyter_client=8.6.0=pyhd8ed1ab_0 + - linbox=1.6.3=h31716a8_7 + - 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.3=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 + - 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.11.0=pyhd8ed1ab_0 + - jupyter_server=2.10.1=pyhd8ed1ab_0 + - nbconvert-pandoc=7.11.0=pyhd8ed1ab_0 + - jupyter-lsp=2.2.0=pyhd8ed1ab_0 + - jupyterlab_server=2.25.2=pyhd8ed1ab_0 + - nbconvert=7.11.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 diff --git a/src/environment-3.9-linux.yml b/src/environment-3.9-linux.yml index d8f13976ac9..c9f960d0c19 100644 --- a/src/environment-3.9-linux.yml +++ b/src/environment-3.9-linux.yml @@ -1,23 +1,23 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: 3069b3e046727b04551dcd6240240679bf6adc611cf878cbd4acec6ff4e261cb +# input_hash: 51f5a1e6f1a84b15b52a7337ff32e5d572b51151a440db928e3d3098c709fee4 channels: - conda-forge dependencies: - _libgcc_mutex=0.1=conda_forge - _r-mutex=1.0.1=anacondar_1 - - ca-certificates=2023.7.22=hbcca054_0 + - ca-certificates=2023.11.17=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=hab24e00_0 + - font-ttf-ubuntu=0.83=h77eed37_1 - kernel-headers_linux-64=2.6.32=he073ed8_16 - ld_impl_linux-64=2.40=h41732ed_0 - - libboost-headers=1.82.0=ha770c72_6 - - libgcc-devel_linux-64=12.3.0=h8bca6fd_2 - - libstdcxx-devel_linux-64=12.3.0=h8bca6fd_2 - - libstdcxx-ng=13.2.0=h7e041cc_2 + - libboost-headers=1.83.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 - pari-elldata=0.0.20161017=0 - pari-galdata=0.0.20180411=0 @@ -30,7 +30,7 @@ dependencies: - three.js=122=hd8ed1ab_2 - tzdata=2023c=h71feb2d_0 - fonts-conda-forge=1=0 - - libgomp=13.2.0=h807b86a_2 + - libgomp=13.2.0=h807b86a_3 - pari-seadata=0.0.20090618=0 - sysroot_linux-64=2.12=he073ed8_16 - threejs-sage=122=hd8ed1ab_2 @@ -39,19 +39,19 @@ dependencies: - 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_2 + - libgcc-ng=13.2.0=h807b86a_3 - alsa-lib=1.2.10=hd590300_0 - attr=2.5.1=h166bdaf_1 - bdw-gc=8.0.6=h4bd325d_0 - - bzip2=1.0.8=h7f98852_4 - - c-ares=1.19.1=hd590300_0 + - bzip2=1.0.8=hd590300_5 + - c-ares=1.22.1=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.2.1=h58526e2_0 + - gmp=6.3.0=h59595ed_0 - graphite2=1.3.13=h58526e2_1001 - icu=73.2=h59595ed_0 - keyutils=1.6.1=h166bdaf_0 @@ -64,13 +64,13 @@ dependencies: - libev=4.33=h516909a_1 - libexpat=2.5.0=hcb278e6_1 - libffi=3.4.2=h7f98852_5 - - libgfortran5=13.2.0=ha4646dd_2 + - libgfortran5=13.2.0=ha4646dd_3 - libiconv=1.17=h166bdaf_0 - - libjpeg-turbo=2.1.5.1=hd590300_1 - - libnsl=2.0.0=hd590300_1 + - 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_2 + - libsanitizer=12.3.0=h0f45ef3_3 - libsodium=1.0.18=h36c2ea0_1 - libtool=2.4.7=h27087fc_0 - libuuid=2.38.1=h0b41bf4_0 @@ -84,10 +84,10 @@ dependencies: - metis=5.1.0=h59595ed_1007 - mpg123=1.32.3=h59595ed_0 - nauty=2.7.2=h7f98852_0 - - ncurses=6.4=hcb278e6_0 + - ncurses=6.4=h59595ed_2 - ninja=1.11.1=h924138e_0 - nspr=4.35=h27087fc_0 - - openssl=3.1.3=hd590300_0 + - openssl=3.2.0=hd590300_0 - palp=2.20=h36c2ea0_0 - patch=2.7.6=h7f98852_1002 - pixman=0.42.2=h59595ed_0 @@ -114,7 +114,7 @@ dependencies: - 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_2 + - gcc_impl_linux-64=12.3.0=he2b93b0_3 - givaro=4.1.1=h192cbe9_1 - glpk=5.0=h445213a_0 - libbrotlidec=1.1.0=hd590300_1 @@ -123,27 +123,27 @@ dependencies: - libedit=3.1.20191231=he28a2e2_2 - libevent=2.1.12=hf998b51_1 - libflac=1.4.3=h59595ed_0 - - libgfortran-ng=13.2.0=h69a702a_2 + - libgfortran-ng=13.2.0=h69a702a_3 - libgpg-error=1.47=h71f35ed_0 - libhomfly=1.02r6=h36c2ea0_0 - - libnghttp2=1.52.0=h61bc06f_0 + - libnghttp2=1.58.0=h47da74e_0 - libpng=1.6.39=h753d276_0 - - libsqlite=3.43.0=h2797004_0 + - libsqlite=3.44.2=h2797004_0 - libssh2=1.11.0=h0841786_0 - libvorbis=1.3.7=h9c3ff4c_0 - libxcb=1.15=h0b41bf4_0 - - libxml2=2.11.5=h232c23b_1 - - mpfr=4.2.0=hb012696_0 - - mysql-common=8.0.33=hf1915f5_5 + - libxml2=2.11.6=h232c23b_0 + - mpfr=4.2.1=h9458935_0 + - mysql-common=8.0.33=hf1915f5_6 - ntl=11.4.3=hef3c4d3_1 - - pcre2=10.40=hc3806b6_0 + - pcre2=10.42=hcad00b1_0 - perl=5.32.1=4_hd590300_perl5 - primecount=7.9=hcb278e6_0 - readline=8.2=h8228510_1 - - tk=8.6.13=h2797004_0 + - tk=8.6.13=noxft_h4845f30_101 - xorg-fixesproto=5.0=h7f98852_1002 - xorg-libsm=1.2.4=h7391055_0 - - zeromq=4.3.4=h9c3ff4c_1 + - zeromq=4.3.5=h59595ed_0 - zlib=1.2.13=hd590300_5 - zstd=1.5.5=hfc55251_0 - autoconf=2.71=pl5321h2b4cb7a_1 @@ -156,31 +156,31 @@ dependencies: - 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_2 - - gxx_impl_linux-64=12.3.0=he2b93b0_2 + - gfortran_impl_linux-64=12.3.0=hfcedea8_3 + - gxx_impl_linux-64=12.3.0=he2b93b0_3 - igraph=0.7.1=0 - krb5=1.21.2=h659d440_0 - - libboost=1.82.0=h6fcfa73_6 + - libboost=1.83.0=h6fcfa73_0 - libflint=2.9.0=h2f819a4_ntl_100 - - libgcrypt=1.10.1=h166bdaf_0 - - libglib=2.78.0=hebfc3b9_0 + - libgcrypt=1.10.2=hd590300_0 + - libglib=2.78.1=h783c2da_1 - libhwloc=2.9.3=default_h554bfaf_1009 - libllvm15=15.0.7=h5cf9203_3 - - libopenblas=0.3.24=pthreads_h413a1c8_0 + - libopenblas=0.3.25=pthreads_h413a1c8_0 - libsndfile=1.2.2=hc60ed4a_1 - - libtiff=4.6.0=h29866fb_1 - - llvm-openmp=17.0.2=h4dfa4b3_0 + - libtiff=4.6.0=ha9c0a0a_2 + - llvm-openmp=17.0.5=h4dfa4b3_0 - m4ri=20140914=h7ca028e_1005 - mpc=1.3.1=hfe3b2da_0 - mpfi=1.5.4=h9f54685_1001 - - mysql-libs=8.0.33=hca2cd23_5 + - mysql-libs=8.0.33=hca2cd23_6 - nss=3.94=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 - qd=2.3.22=h2cc385e_1004 - - sqlite=3.43.0=h2c6b66d_0 + - sqlite=3.44.2=h2c6b66d_0 - tachyon=0.99b6=0 - texinfo=7.0=pl5321h0f457ee_0 - tktable=2.10=h0c5db8f_5 @@ -188,7 +188,7 @@ dependencies: - 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.6=h8ee46fc_0 + - 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 @@ -196,19 +196,18 @@ dependencies: - attrs=23.1.0=pyh71513ae_1 - automake=1.16.5=pl5321ha770c72_0 - backcall=0.2.0=pyh9f0ad1d_0 - - backports=1.0=pyhd8ed1ab_3 - 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.1=pyhd8ed1ab_0 - - certifi=2023.7.22=pyhd8ed1ab_0 + - cachetools=5.3.2=pyhd8ed1ab_0 + - certifi=2023.11.17=pyhd8ed1ab_0 - chardet=5.2.0=py39hf3d152e_1 - - charset-normalizer=3.3.0=pyhd8ed1ab_0 + - charset-normalizer=3.3.2=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_0 - cycler=0.12.1=pyhd8ed1ab_0 - cysignals=1.11.2=py39h1ce0973_3 - - cython=3.0.2=py39h3d6467e_2 + - cython=3.0.6=py39h3d6467e_0 - dbus=1.13.6=h5008d03_3 - debugpy=1.8.0=py39h3d6467e_1 - decorator=5.1.1=pyhd8ed1ab_0 @@ -218,46 +217,46 @@ dependencies: - eclib=20230424=hdef1efb_0 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 - - exceptiongroup=1.1.3=pyhd8ed1ab_0 - - executing=1.2.0=pyhd8ed1ab_0 - - filelock=3.12.4=pyhd8ed1ab_0 + - exceptiongroup=1.2.0=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.4=h8780c30_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.0=hfc55251_0 + - glib-tools=2.78.1=hfc55251_1 - gmpy2=2.1.2=py39h376b7d2_1 - gxx_linux-64=12.3.0=h8a814eb_2 - - idna=3.4=pyhd8ed1ab_0 + - 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=1.1.7=pyhd8ed1ab_0 + - jupyterlab_widgets=3.0.9=pyhd8ed1ab_0 - kiwisolver=1.4.5=py39h7633fee_1 - lcalc=2.0.5=h6a8a7c6_1 - - lcms2=2.15=h7f713cb_2 - - libblas=3.9.0=18_linux64_openblas - - libboost-devel=1.82.0=h00ab1b0_6 + - lcms2=2.15=hb7c19ff_3 + - libblas=3.9.0=20_linux64_openblas + - libboost-devel=1.83.0=h00ab1b0_0 - libbrial=1.2.12=h3155cbd_1 - libclang13=15.0.7=default_h9986a30_3 - libcups=2.3.3=h4637d8d_4 - - libcurl=8.3.0=hca28451_0 - - libpq=15.4=hfc447b1_2 + - libcurl=8.4.0=hca28451_0 + - libpq=16.1=hfc447b1_0 - libsystemd0=254=h3516f8a_0 - - libwebp=1.3.2=hdffd6e0_0 + - libwebp=1.3.2=h658648e_1 - m4rie=20150908=h7ca028e_1001 - markupsafe=2.1.3=py39hd1e30aa_1 - maxima=5.45.0=h9d73b02_3 - - mistune=3.0.1=pyhd8ed1ab_0 + - mistune=3.0.2=pyhd8ed1ab_0 - mpmath=1.3.0=pyhd8ed1ab_0 - munkres=1.1.4=pyh9f0ad1d_0 - - nest-asyncio=1.5.6=pyhd8ed1ab_0 - - networkx=2.8.8=pyhd8ed1ab_0 - - openblas=0.3.24=pthreads_h7a3da1a_0 + - nest-asyncio=1.5.8=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 @@ -268,31 +267,31 @@ dependencies: - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 - pluggy=1.3.0=pyhd8ed1ab_0 - ply=3.11=py_1 - - prometheus_client=0.17.1=pyhd8ed1ab_0 + - prometheus_client=0.19.0=pyhd8ed1ab_0 - psutil=5.9.5=py39hd1e30aa_1 - 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.16.1=pyhd8ed1ab_0 + - pygments=2.17.2=pyhd8ed1ab_0 - pyparsing=3.1.1=pyhd8ed1ab_0 - - pyrsistent=0.19.3=py39hd1e30aa_1 + - pyrsistent=0.20.0=py39hd1e30aa_0 - pysocks=1.7.1=pyha2e5f31_6 - - python-fastjsonschema=2.18.1=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 - - pyzmq=25.1.1=py39hb257651_1 + - pyzmq=25.1.1=py39h8c080ef_2 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.10.4=py39h9fdd4d6_0 + - rpds-py=0.13.1=py39h9fdd4d6_0 - rw=0.8=h516909a_1001 - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 - sagetex=3.6.1=pyhd8ed1ab_0 - send2trash=1.8.2=pyh41d4057_0 - - setuptools=63.4.3=py39hf3d152e_0 + - setuptools=68.2.2=pyhd8ed1ab_0 - simplegeneric=0.8.1=py_1 - singular=4.2.1.p3=h1ea75ed_2 - six=1.16.0=pyh6c4a22f_0 @@ -301,23 +300,25 @@ dependencies: - soupsieve=2.5=pyhd8ed1ab_1 - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_0 - sympow=2.023.6=hc6ab17c_3 - - tbb=2021.10.0=h00ab1b0_1 + - tbb=2021.10.0=h00ab1b0_2 - toml=0.10.2=pyhd8ed1ab_0 - tomli=2.0.1=pyhd8ed1ab_0 - tornado=6.3.3=py39hd1e30aa_1 - - traitlets=5.11.2=pyhd8ed1ab_0 - - trove-classifiers=2023.9.19=pyhd8ed1ab_0 + - traitlets=5.13.0=pyhd8ed1ab_0 + - trove-classifiers=2023.11.22=pyhd8ed1ab_0 - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 - typing_extensions=4.8.0=pyha770c72_0 - typing_utils=0.1.0=pyhd8ed1ab_0 - - tzlocal=5.1=py39hf3d152e_0 + - tzlocal=5.2=py39hf3d152e_0 - unicodedata2=15.1.0=py39hd1e30aa_0 - uri-template=1.3.0=pyhd8ed1ab_0 - vcversioner=2.16.0.0=py_1 + - wcwidth=0.2.12=pyhd8ed1ab_0 - webcolors=1.13=pyhd8ed1ab_0 - webencodings=0.5.1=pyhd8ed1ab_2 - websocket-client=1.6.4=pyhd8ed1ab_0 - - wheel=0.41.2=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 @@ -325,60 +326,61 @@ dependencies: - xorg-libxrender=0.9.11=hd590300_0 - xorg-libxt=1.3.0=hd590300_1 - zipp=3.17.0=pyhd8ed1ab_0 - - anyio=4.0.0=pyhd8ed1ab_0 - - asttokens=2.4.0=pyhd8ed1ab_0 + - anyio=4.1.0=pyhd8ed1ab_0 + - asttokens=2.4.1=pyhd8ed1ab_0 - async-lru=2.0.4=pyhd8ed1ab_0 - - babel=2.12.1=pyhd8ed1ab_1 - - backports.functools_lru_cache=1.6.5=pyhd8ed1ab_0 + - babel=2.13.1=pyhd8ed1ab_0 - beautifulsoup4=4.12.2=pyha770c72_0 - beniget=0.4.1=pyhd8ed1ab_0 - bleach=6.1.0=pyhd8ed1ab_0 - - boost-cpp=1.82.0=h44aadfe_6 + - boost-cpp=1.83.0=h44aadfe_0 - brial=1.2.12=pyh694c41f_1 - cached-property=1.5.2=hd8ed1ab_1 - - cairo=1.16.0=h0c91306_1017 + - cairo=1.18.0=h3faef2a_0 - cffi=1.16.0=py39h7a31438_0 - - cmake=3.27.6=hcfe8598_0 + - cmake=3.27.8=hcfe8598_0 - comm=0.1.4=pyhd8ed1ab_0 - cppy=1.2.1=pyhd8ed1ab_0 - - curl=8.3.0=hca28451_0 + - curl=8.4.0=hca28451_0 - cypari2=2.1.3=py39h1698a45_2 - deprecation=2.1.0=pyh9f0ad1d_0 - - fonttools=4.43.1=py39hd1e30aa_0 + - fonttools=4.45.1=py39hd1e30aa_0 - fortran-compiler=1.6.0=heb67821_0 - - glib=2.78.0=hfc55251_0 + - glib=2.78.1=hfc55251_1 - importlib-metadata=6.8.0=pyha770c72_0 - - importlib_resources=6.1.0=pyhd8ed1ab_0 + - importlib_resources=6.1.1=pyhd8ed1ab_0 - jedi=0.19.1=pyhd8ed1ab_0 - jinja2=3.1.2=pyhd8ed1ab_1 - - jupyterlab_pygments=0.2.2=pyhd8ed1ab_0 - - libcblas=3.9.0=18_linux64_openblas + - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 + - libcblas=3.9.0=20_linux64_openblas - libclang=15.0.7=default_h7634d5b_3 - - libgd=2.3.3=he9388d3_8 - - liblapack=3.9.0=18_linux64_openblas + - 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.2=py39hb9d737c_2 + - memory-allocator=0.1.3=py39hd1e30aa_0 - overrides=7.4.0=pyhd8ed1ab_0 - pexpect=4.8.0=pyh1a96a4e_2 - - pillow=10.0.1=py39h444a776_1 - - pip=23.2.1=pyhd8ed1ab_0 + - pillow=10.1.0=py39had0adad_0 + - pip=23.3.1=pyhd8ed1ab_0 + - platformdirs=4.0.0=pyhd8ed1ab_0 - pplpy=0.8.7=py39hba3e9e5_0 - primecountpy=0.1.0=py39h7633fee_4 + - prompt-toolkit=3.0.24=pyha770c72_0 - pulseaudio-client=16.1=hb77b528_5 - pybind11=2.11.1=py39h7633fee_2 - pyproject-api=1.6.1=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - pytz-deprecation-shim=0.1.0.post0=py39hf3d152e_4 - - referencing=0.30.2=pyhd8ed1ab_0 + - referencing=0.31.0=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - sagemath-db-conway-polynomials=0.5.0=ha878542_1 - - sip=6.7.11=py39h3d6467e_1 + - sip=6.7.12=py39h3d6467e_0 - sympy=1.12=pypyh9d50eac_103 - - terminado=0.17.1=pyh41d4057_0 + - terminado=0.18.0=pyh0d859eb_0 - tinycss2=1.2.1=pyhd8ed1ab_0 - typing-extensions=4.8.0=hd8ed1ab_0 - - urllib3=2.0.6=pyhd8ed1ab_0 + - urllib3=2.1.0=pyhd8ed1ab_0 - xorg-libxi=1.7.10=h7f98852_0 - argon2-cffi-bindings=21.2.0=py39hd1e30aa_4 - arrow=1.3.0=pyhd8ed1ab_0 @@ -386,72 +388,67 @@ dependencies: - fflas-ffpack=2.4.3=h912ac81_2 - fqdn=1.5.1=pyhd8ed1ab_0 - gsl=2.7=he838d99_0 - - gstreamer=1.22.6=h98fc4e7_2 - - harfbuzz=8.2.1=h3d44ed6_0 + - gstreamer=1.22.7=h98fc4e7_0 + - harfbuzz=8.3.0=h3d44ed6_0 - hatchling=1.18.0=pyhd8ed1ab_0 - iml=1.0.5=hd75c201_1003 - - importlib-resources=6.1.0=pyhd8ed1ab_0 + - importlib-resources=6.1.1=pyhd8ed1ab_0 - importlib_metadata=6.8.0=hd8ed1ab_0 - - jsonschema-specifications=2023.7.1=pyhd8ed1ab_0 + - jsonschema-specifications=2023.11.1=pyhd8ed1ab_0 + - jupyter_core=5.5.0=py39hf3d152e_0 - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1 - - liblapacke=3.9.0=18_linux64_openblas - - numpy=1.26.0=py39h474f0d3_0 - - platformdirs=3.11.0=pyhd8ed1ab_0 + - liblapacke=3.9.0=20_linux64_openblas + - numpy=1.26.2=py39h474f0d3_0 + - prompt_toolkit=3.0.24=hd8ed1ab_0 - pyqt5-sip=12.12.2=py39h3d6467e_5 - requests=2.31.0=pyhd8ed1ab_0 - setuptools-scm=8.0.4=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 - suitesparse=5.10.1=h9e50725_1 - - wcwidth=0.2.8=pyhd8ed1ab_0 + - virtualenv=20.24.7=pyhd8ed1ab_0 - xorg-libxtst=1.2.3=h7f98852_1002 - argon2-cffi=23.1.0=pyhd8ed1ab_0 - - blas-devel=3.9.0=18_linux64_openblas - - contourpy=1.1.1=py39h7633fee_1 + - blas-devel=3.9.0=20_linux64_openblas + - contourpy=1.2.0=py39h7633fee_0 - cvxopt=1.3.2=py39hef4d4b4_1 - - fpylll=0.5.9=py39hf60ab73_1 + - fpylll=0.6.0=py39h2525e16_1 - giac=1.9.0.21=h673759e_1 - - gst-plugins-base=1.22.6=h8e1006c_2 + - gst-plugins-base=1.22.7=h8e1006c_0 + - ipython=8.8.0=pyh41d4057_0 - isoduration=20.11.0=pyhd8ed1ab_0 - - jsonschema=4.19.1=pyhd8ed1ab_0 - - jupyter_core=5.3.2=py39hf3d152e_0 + - jsonschema=4.20.0=pyhd8ed1ab_0 + - jupyter_client=8.6.0=pyhd8ed1ab_0 - linbox=1.6.3=h9d78c56_7 - - openjdk=20.0.2=hfea2f88_1 + - openjdk=21.0.1=haa376d0_0 - pango=1.50.14=ha41ecd1_2 - - pooch=1.7.0=pyhd8ed1ab_4 - - prompt-toolkit=3.0.39=pyha770c72_0 - pythran=0.14.0=py39hda80f44_1 + - scipy=1.11.4=py39h474f0d3_0 - setuptools_scm=8.0.4=hd8ed1ab_0 - - virtualenv=20.24.4=pyhd8ed1ab_0 - - blas=2.118=openblas + - tox=4.11.3=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.19.1=pyhd8ed1ab_0 - - jupyter_client=8.3.1=pyhd8ed1ab_0 - - matplotlib-base=3.8.0=py39he9076e7_1 + - jsonschema-with-format-nongpl=4.20.0=pyhd8ed1ab_0 + - matplotlib-base=3.8.2=py39he9076e7_0 - nbformat=5.9.2=pyhd8ed1ab_0 - - prompt_toolkit=3.0.39=hd8ed1ab_0 - - qt-main=5.15.8=hc47bfe8_16 - - r-base=4.3.1=h639d9d3_5 - - scipy=1.10.1=py39h6183b62_3 - - tox=4.11.3=pyhd8ed1ab_0 - - ipython=8.16.1=pyh0d859eb_0 - - jupyter_events=0.7.0=pyhd8ed1ab_2 + - qt-main=5.15.8=h82b777d_17 + - r-base=4.3.2=hb8ee39d_1 + - 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 - - ipykernel=6.25.2=pyh2140261_0 - - matplotlib=3.8.0=py39hf3d152e_1 - - nbconvert-core=7.9.2=pyhd8ed1ab_0 - - jupyter_server=2.7.3=pyhd8ed1ab_1 - - nbconvert-pandoc=7.9.2=pyhd8ed1ab_0 + - matplotlib=3.8.2=py39hf3d152e_0 + - nbconvert-core=7.11.0=pyhd8ed1ab_0 + - jupyter_server=2.10.1=pyhd8ed1ab_0 + - nbconvert-pandoc=7.11.0=pyhd8ed1ab_0 - jupyter-lsp=2.2.0=pyhd8ed1ab_0 - - jupyterlab_server=2.25.0=pyhd8ed1ab_0 - - nbconvert=7.9.2=pyhd8ed1ab_0 + - jupyterlab_server=2.25.2=pyhd8ed1ab_0 + - nbconvert=7.11.0=pyhd8ed1ab_0 - notebook-shim=0.2.3=pyhd8ed1ab_0 - - jupyterlab=4.0.6=pyhd8ed1ab_0 - - notebook=7.0.4=pyhd8ed1ab_0 - - widgetsnbextension=3.6.6=pyhd8ed1ab_0 - - ipywidgets=7.8.0=pyhd8ed1ab_0 - - jupyter-jsmol=2022.1.0=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 diff --git a/src/environment-3.9-macos-arm.yml b/src/environment-3.9-macos-arm64.yml similarity index 70% rename from src/environment-3.9-macos-arm.yml rename to src/environment-3.9-macos-arm64.yml index b92b190db05..287fd95be1c 100644 --- a/src/environment-3.9-macos-arm.yml +++ b/src/environment-3.9-macos-arm64.yml @@ -1,20 +1,19 @@ # Generated by conda-lock. # platform: osx-arm64 -# input_hash: 88abf1abcf9dd837d4d334eb64e14b544fd4e901dc9e569f733440e9309f9b85 +# input_hash: 503dc3ea50dcef0a90c44e3c4e801129ab08a33991672f098934a5c9dc5d51ef channels: - conda-forge dependencies: - _r-mutex=1.0.1=anacondar_1 - - bc=1.07.1=h3422bc3_0 - - bzip2=1.0.8=h3422bc3_4 - - c-ares=1.20.1=h93a5062_0 - - ca-certificates=2023.7.22=hf0a4a13_0 + - bzip2=1.0.8=h93a5062_5 + - c-ares=1.22.1=h93a5062_0 + - ca-certificates=2023.11.17=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=hab24e00_0 + - font-ttf-ubuntu=0.83=h77eed37_1 - fribidi=1.0.10=h27ca646_0 - giflib=5.2.1=h1a8c8d9_3 - jpeg=9e=h1a8c8d9_3 @@ -32,13 +31,12 @@ dependencies: - libuv=1.46.0=hb547adb_0 - libwebp-base=1.2.4=h1a8c8d9_0 - libzlib=1.2.13=h53f4e23_5 - - llvm-openmp=17.0.2=h1c12783_0 + - llvm-openmp=17.0.5=hcd81f8e_0 - m4=1.4.18=h642e427_1001 - make=4.3=he57ea6c_1 - mathjax=3.2.2=hce30654_0 - metis=5.1.0=h13dd4ca_1007 - nauty=2.7.2=h3422bc3_0 - - ncurses=6.4=h7ea286d_0 - palp=2.20=h27ca646_0 - pandoc=3.1.3=hce30654_0 - pari-elldata=0.0.20161017=0 @@ -54,6 +52,7 @@ dependencies: - 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 - xorg-libxau=1.0.11=hb547adb_0 @@ -67,7 +66,7 @@ dependencies: - gengetopt=2.23=hbdafb3b_0 - gettext=0.21.1=h0186832_0 - gf2x=1.3.0=hdaa854c_2 - - gmp=6.2.1=h9f76cd9_0 + - gmp=6.3.0=h965bd2d_0 - graphite2=1.3.13=h9f76cd9_1001 - icu=70.1=h6b3803e_0 - isl=0.25=h9a09cb3_0 @@ -75,29 +74,25 @@ dependencies: - libbraiding=1.1=h9f76cd9_0 - libbrotlidec=1.1.0=hb547adb_1 - libbrotlienc=1.1.0=hb547adb_1 - - libedit=3.1.20191231=hc8eb9b7_2 - libgfortran5=13.2.0=hf226fd6_1 - libpng=1.6.39=h76d750c_0 - - libsqlite=3.43.0=hb31c410_0 + - libsqlite=3.44.2=h091b4b1_0 - libxcb=1.13=h9b22ae9_1004 - lrcalc=2.1=hb7217d7_5 + - ncurses=6.4=h463b476_2 - ninja=1.11.1=hffc8910_0 - - openjdk=20.0.2=hbe7ddab_2 - - openssl=3.1.3=h53f4e23_0 + - openjdk=21.0.1=hed44d8b_0 + - openssl=3.2.0=h0d3ecfb_0 - pari-seadata=0.0.20090618=0 - pcre2=10.40=hb34f9b4_0 - pixman=0.42.2=h13dd4ca_0 - primesieve=11.0=hb7217d7_0 - qhull=2020.2=hc021e02_2 - - readline=8.2=h92ec313_1 - symmetrica=3.0.1=hb7217d7_0 - tapi=1100.0.11=he4954df_0 - - tar=1.34=h7cb298e_1 - - tbb=2021.10.0=h1995070_1 - - texinfo=7.0=pl5321h9ea1dce_0 - threejs-sage=122=hd8ed1ab_2 - - tk=8.6.13=hb31c410_0 - - zeromq=4.3.4=hbdafb3b_1 + - 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 @@ -105,126 +100,144 @@ dependencies: - brotli-bin=1.1.0=hb547adb_1 - bwidget=1.9.14=hce30654_1 - cddlib=1!0.94m=h6d7a090_0 - - ecl=21.2.1=h8492d4d_2 - ecm=7.0.4=h47c7c1a_1002 - fonts-conda-ecosystem=1=0 - freetype=2.12.1=hadb7bae_2 - - gap-core=4.12.2=he8f4e70_3 - givaro=4.1.1=h0cdca34_3 - glpk=5.0=h6d7a090_0 - jmol=14.32.10=hce30654_0 - - krb5=1.20.1=h69eda48_0 + - libedit=3.1.20191231=hc8eb9b7_2 - libgfortran=5.0.0=13_2_0_hd922786_1 - - libglib=2.78.0=h24e9cb9_0 + - libglib=2.78.1=hd9b11f9_0 - libhomfly=1.02r6=h27ca646_0 - - libnghttp2=1.52.0=hae82a92_0 + - libnghttp2=1.58.0=ha4dd798_0 - libssh2=1.11.0=h7a5bd25_0 - libtiff=4.5.0=h5dffbdd_2 - libxml2=2.10.3=h67585b2_4 - m4ri=20140914=h17b34a0_1005 - - mpfr=4.2.0=he09a6ba_0 + - mpfr=4.2.1=h9546428_0 - ntl=11.4.3=hbb3f309_1 - - pari=2.15.4=haeeeed7_2_pthread - primecount=7.6=hb6e4faa_0 - - python=3.9.18=hfa1ae8a_0_cpython + - readline=8.2=h92ec313_1 - sigtool=0.1.3=h44b9a77_0 - - sqlite=3.43.0=h203b68d_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 + - libbrial=1.2.12=ha7f5006_1 + - libflint=2.9.0=h173eafc_ntl_100 + - libllvm16=16.0.1=h1e5164c_0 + - libopenblas=0.3.25=openmp_h6c19121_0 + - libwebp=1.2.4=h999c80f_1 + - m4rie=20150908=h17b34a0_1001 + - mpc=1.3.1=h91ba8db_0 + - mpfi=1.5.4=hbde5f5b_1001 + - 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=hfa1ae8a_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 + - arb=2.23.0=he5401aa_0 - attrs=23.1.0=pyh71513ae_1 - backcall=0.2.0=pyh9f0ad1d_0 - - backports=1.0=pyhd8ed1ab_3 - - brotli=1.1.0=hb547adb_1 + - brial=1.2.12=pyh694c41f_1 - brotli-python=1.1.0=py39hb198ff7_1 - cached_property=1.5.2=pyha770c72_1 - - cachetools=5.3.1=pyhd8ed1ab_0 - - certifi=2023.7.22=pyhd8ed1ab_0 + - cachetools=5.3.2=pyhd8ed1ab_0 + - cairo=1.16.0=h73a0509_1014 + - certifi=2023.11.17=pyhd8ed1ab_0 - chardet=5.2.0=py39h2804cbe_1 - - charset-normalizer=3.3.0=pyhd8ed1ab_0 + - charset-normalizer=3.3.2=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_0 - cycler=0.12.1=pyhd8ed1ab_0 - cysignals=1.11.2=py39h65fc70a_3 - - cython=3.0.2=py39hb198ff7_2 + - cython=3.0.6=py39h4ce5507_0 - debugpy=1.8.0=py39hb198ff7_1 - decorator=5.1.1=pyhd8ed1ab_0 - defusedxml=0.7.1=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - docutils=0.20.1=py39h2804cbe_2 + - eclib=20230424=haeb5157_0 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 - - exceptiongroup=1.1.3=pyhd8ed1ab_0 - - executing=1.2.0=pyhd8ed1ab_0 - - fftw=3.3.10=nompi_h3046061_108 - - filelock=3.12.4=pyhd8ed1ab_0 + - exceptiongroup=1.2.0=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=h82840c6_0 + - fplll=5.4.5=hb7d509d_0 - gap-defaults=4.12.2=hce30654_3 - gast=0.5.4=pyhd8ed1ab_0 - - gfan=0.6.2=hec08f5c_1003 - - idna=3.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=1.1.7=pyhd8ed1ab_0 + - jupyterlab_widgets=3.0.9=pyhd8ed1ab_0 - kiwisolver=1.4.5=py39hbd775c9_1 - lcalc=2.0.5=hc94e8e6_1 - - lcms2=2.15=h481adae_0 - - libbrial=1.2.12=ha7f5006_1 + - ld64_osx-arm64=609=h297e91e_13 + - libblas=3.9.0=20_osxarm64_openblas + - libclang-cpp16=16.0.1=default_he7141eb_0 - libcurl=8.1.2=h912dcd9_0 - - libflint=2.9.0=h173eafc_ntl_100 - - libllvm15=15.0.7=h62b9111_1 - - libopenblas=0.3.24=openmp_hd76b1f2_0 - - libwebp=1.2.4=h999c80f_1 - - m4rie=20150908=h17b34a0_1001 + - libgd=2.3.3=h90fb8ed_4 + - llvm-tools=16.0.1=h1e5164c_0 - markupsafe=2.1.3=py39h0f82c59_1 - maxima=5.45.0=h6032a66_2 - - mistune=3.0.1=pyhd8ed1ab_0 - - mpc=1.3.1=h91ba8db_0 - - mpfi=1.5.4=hbde5f5b_1001 + - mistune=3.0.2=pyhd8ed1ab_0 - mpmath=1.3.0=pyhd8ed1ab_0 - munkres=1.1.4=pyh9f0ad1d_0 - - nest-asyncio=1.5.6=pyhd8ed1ab_0 - - networkx=2.8.8=pyhd8ed1ab_0 - - openjpeg=2.5.0=hbc2ba62_2 + - nest-asyncio=1.5.8=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.11.2=pyhd8ed1ab_0 - pickleshare=0.7.5=py_1003 - - pkg-config=0.29.2=hab62308_1008 + - pillow=9.4.0=py39h8bd98a6_1 + - pkgconfig=1.5.5=pyhd8ed1ab_4 - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 - pluggy=1.3.0=pyhd8ed1ab_0 - ply=3.11=py_1 - - ppl=1.2=h8b147cf_1006 - - prometheus_client=0.17.1=pyhd8ed1ab_0 + - prometheus_client=0.19.0=pyhd8ed1ab_0 - psutil=5.9.5=py39h0f82c59_1 - 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.16.1=pyhd8ed1ab_0 + - pygments=2.17.2=pyhd8ed1ab_0 - pyparsing=3.1.1=pyhd8ed1ab_0 - - pyrsistent=0.19.3=py39h0f82c59_1 + - pyrsistent=0.20.0=py39h17cfd9d_0 - pysocks=1.7.1=pyha2e5f31_6 - - python-fastjsonschema=2.18.1=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 - - pyzmq=25.1.1=py39h1e134f0_1 - - qd=2.3.22=hbec66e7_1004 + - pyzmq=25.1.1=py39he0a3c8b_2 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.10.4=py39h8fec3ad_0 + - rpds-py=0.13.1=py39h8fec3ad_0 - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 - sagetex=3.6.1=pyhd8ed1ab_0 - - setuptools=63.4.3=py39h2804cbe_0 + - setuptools=68.2.2=pyhd8ed1ab_0 - simplegeneric=0.8.1=py_1 + - singular=4.2.1.p3=h3b80c97_2 - six=1.16.0=pyh6c4a22f_0 - sniffio=1.3.0=pyhd8ed1ab_0 - snowballstemmer=2.2.0=pyhd8ed1ab_0 @@ -233,165 +246,144 @@ dependencies: - sympow=2.023.6=hb0babe8_3 - tomli=2.0.1=pyhd8ed1ab_0 - tornado=6.3.3=py39h0f82c59_1 - - traitlets=5.11.2=pyhd8ed1ab_0 - - trove-classifiers=2023.9.19=pyhd8ed1ab_0 + - traitlets=5.13.0=pyhd8ed1ab_0 + - trove-classifiers=2023.11.22=pyhd8ed1ab_0 - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 - typing_extensions=4.8.0=pyha770c72_0 - typing_utils=0.1.0=pyhd8ed1ab_0 - - tzlocal=5.1=py39h2804cbe_0 + - tzlocal=5.2=py39h2804cbe_0 - unicodedata2=15.1.0=py39h0f82c59_0 - uri-template=1.3.0=pyhd8ed1ab_0 - vcversioner=2.16.0.0=py_1 + - wcwidth=0.2.12=pyhd8ed1ab_0 - webcolors=1.13=pyhd8ed1ab_0 - webencodings=0.5.1=pyhd8ed1ab_2 - websocket-client=1.6.4=pyhd8ed1ab_0 - - wheel=0.41.2=pyhd8ed1ab_0 + - wheel=0.42.0=pyhd8ed1ab_0 + - widgetsnbextension=4.0.9=pyhd8ed1ab_0 - zipp=3.17.0=pyhd8ed1ab_0 - - anyio=4.0.0=pyhd8ed1ab_0 - - arb=2.23.0=he5401aa_0 - - asttokens=2.4.0=pyhd8ed1ab_0 + - anyio=4.1.0=pyhd8ed1ab_0 + - asttokens=2.4.1=pyhd8ed1ab_0 - async-lru=2.0.4=pyhd8ed1ab_0 - - babel=2.12.1=pyhd8ed1ab_1 - - backports.functools_lru_cache=1.6.5=pyhd8ed1ab_0 + - babel=2.13.1=pyhd8ed1ab_0 - beautifulsoup4=4.12.2=pyha770c72_0 - beniget=0.4.1=pyhd8ed1ab_0 - bleach=6.1.0=pyhd8ed1ab_0 - - brial=1.2.12=pyh694c41f_1 - cached-property=1.5.2=hd8ed1ab_1 - - cairo=1.16.0=h73a0509_1014 + - cctools_osx-arm64=973.0.1=h7a0f565_13 - cffi=1.16.0=py39he153c15_0 + - clang-16=16.0.1=default_he7141eb_0 - 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 - - eclib=20230424=haeb5157_0 - - fonttools=4.43.1=py39h17cfd9d_0 - - fplll=5.4.4=h29209e0_0 - - gfortran_impl_osx-arm64=12.3.0=hbbb9e1e_1 - - gmpy2=2.1.2=py39h0b4f9c6_1 + - fonttools=4.45.1=py39h17cfd9d_0 + - harfbuzz=6.0.0=hddbc195_0 - importlib-metadata=6.8.0=pyha770c72_0 - - importlib_resources=6.1.0=pyhd8ed1ab_0 + - importlib_resources=6.1.1=pyhd8ed1ab_0 - jedi=0.19.1=pyhd8ed1ab_0 - jinja2=3.1.2=pyhd8ed1ab_1 - - jupyterlab_pygments=0.2.2=pyhd8ed1ab_0 - - ld64_osx-arm64=609=hc4dc95b_14 - - libblas=3.9.0=18_osxarm64_openblas - - libclang-cpp15=15.0.7=default_h5dc8d65_3 - - libgd=2.3.3=h90fb8ed_4 - - llvm-tools=15.0.7=h62b9111_1 + - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 + - ld64=609=h634c8be_13 + - 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.2=py39h02fc5c5_2 - - openblas=0.3.24=openmp_hce3e5ba_0 + - memory-allocator=0.1.3=py39h0f82c59_0 - overrides=7.4.0=pyhd8ed1ab_0 - pexpect=4.8.0=pyh1a96a4e_2 - - pillow=9.4.0=py39h8bd98a6_1 - - pip=23.2.1=pyhd8ed1ab_0 - - pkgconfig=1.5.5=pyhd8ed1ab_4 + - pip=23.3.1=pyhd8ed1ab_0 + - platformdirs=4.0.0=pyhd8ed1ab_0 + - pplpy=0.8.7=py39h1364912_0 - primecountpy=0.1.0=py39hbd775c9_4 + - prompt-toolkit=3.0.24=pyha770c72_0 - pybind11=2.11.1=py39hbd775c9_2 - pyobjc-core=10.0=py39h4d1a642_0 - pyproject-api=1.6.1=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - pytz-deprecation-shim=0.1.0.post0=py39h2804cbe_4 - - referencing=0.30.2=pyhd8ed1ab_0 + - referencing=0.31.0=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - sagemath-db-conway-polynomials=0.5.0=h4653dfc_1 - - singular=4.2.1.p3=h3b80c97_2 - - terminado=0.17.1=pyhd1c38e8_0 + - sympy=1.12=pypyh9d50eac_103 + - terminado=0.18.0=pyh31c8845_0 - tinycss2=1.2.1=pyhd8ed1ab_0 - typing-extensions=4.8.0=hd8ed1ab_0 - - urllib3=2.0.6=pyhd8ed1ab_0 + - urllib3=2.1.0=pyhd8ed1ab_0 - argon2-cffi-bindings=21.2.0=py39h0f82c59_4 + - arpack=3.7.0=h58ebc17_2 - arrow=1.3.0=pyhd8ed1ab_0 - - cctools_osx-arm64=973.0.1=h2a25c60_14 - - clang-15=15.0.7=default_h5dc8d65_3 + - cctools=973.0.1=h4faf515_13 + - clang=16.0.1=h1e5164c_0 + - dsdp=5.8=h9397a75_1203 + - fflas-ffpack=2.4.3=h11f2abc_2 - fqdn=1.5.1=pyhd8ed1ab_0 - - harfbuzz=6.0.0=hddbc195_0 + - gsl=2.7=h6e638da_0 - hatchling=1.18.0=pyhd8ed1ab_0 - - importlib-resources=6.1.0=pyhd8ed1ab_0 + - iml=1.0.5=hd52f0d1_1003 + - importlib-resources=6.1.1=pyhd8ed1ab_0 - importlib_metadata=6.8.0=hd8ed1ab_0 - - jsonschema-specifications=2023.7.1=pyhd8ed1ab_0 + - jsonschema-specifications=2023.11.1=pyhd8ed1ab_0 + - jupyter_core=5.5.0=py39h2804cbe_0 - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1 - - ld64=609=h89fa09d_14 - - libcblas=3.9.0=18_osxarm64_openblas - - liblapack=3.9.0=18_osxarm64_openblas - - platformdirs=3.11.0=pyhd8ed1ab_0 - - pplpy=0.8.7=py39h1364912_0 + - liblapacke=3.9.0=20_osxarm64_openblas + - numpy=1.26.2=py39heee92a0_0 + - pango=1.50.14=h6c112b8_0 + - prompt_toolkit=3.0.24=hd8ed1ab_0 - pyobjc-framework-cocoa=10.0=py39h4d1a642_1 - requests=2.31.0=pyhd8ed1ab_0 - setuptools-scm=8.0.4=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 - - sympy=1.12=pypyh9d50eac_103 - - wcwidth=0.2.8=pyhd8ed1ab_0 - - argon2-cffi=23.1.0=pyhd8ed1ab_0 - - arpack=3.7.0=h58ebc17_2 - - cctools=973.0.1=hd1ac623_14 - - clang=15.0.7=hce30654_3 - - dsdp=5.8=h9397a75_1203 - - fflas-ffpack=2.4.3=h11f2abc_2 - - gsl=2.7=h6e638da_0 - - iml=1.0.5=hd52f0d1_1003 - - isoduration=20.11.0=pyhd8ed1ab_0 - - jsonschema=4.19.1=pyhd8ed1ab_0 - - jupyter_core=5.3.2=py39h2804cbe_0 - - liblapacke=3.9.0=18_osxarm64_openblas - - numpy=1.26.0=py39hc348b60_0 - - pango=1.50.14=h6c112b8_0 - - pooch=1.7.0=pyhd8ed1ab_4 - - prompt-toolkit=3.0.39=pyha770c72_0 - - send2trash=1.8.2=pyhd1c38e8_0 - - setuptools_scm=8.0.4=hd8ed1ab_0 - suitesparse=5.10.1=h7cd81ec_1 - - virtualenv=20.24.4=pyhd8ed1ab_0 - - blas-devel=3.9.0=18_osxarm64_openblas - - clangxx=15.0.7=default_h610c423_3 - - contourpy=1.1.1=py39hbd775c9_1 + - virtualenv=20.24.7=pyhd8ed1ab_0 + - argon2-cffi=23.1.0=pyhd8ed1ab_0 + - blas-devel=3.9.0=20_osxarm64_openblas + - clangxx=16.0.1=default_ha0f6327_0 + - contourpy=1.2.0=py39he9de807_0 - cvxopt=1.3.2=py39h76eeb2c_1 - - fpylll=0.5.9=py39h0530aee_1 + - fpylll=0.6.0=py39h947550b_1 - giac=1.9.0.21=h1c96721_1 - igraph=0.9.10=hcec9b84_1 - - jsonschema-with-format-nongpl=4.19.1=pyhd8ed1ab_0 - - jupyter_client=8.3.1=pyhd8ed1ab_0 + - ipython=8.8.0=pyhd1c38e8_0 + - isoduration=20.11.0=pyhd8ed1ab_0 + - jsonschema=4.20.0=pyhd8ed1ab_0 + - jupyter_client=8.6.0=pyhd8ed1ab_0 - linbox=1.6.3=h549c411_7 - - nbformat=5.9.2=pyhd8ed1ab_0 - - prompt_toolkit=3.0.39=hd8ed1ab_0 - - scipy=1.10.1=py39ha6b2cbd_3 + - scipy=1.11.4=py39h36c428d_0 + - send2trash=1.8.2=pyhd1c38e8_0 + - setuptools_scm=8.0.4=hd8ed1ab_0 - tox=4.11.3=pyhd8ed1ab_0 - - blas=2.118=openblas - - compiler-rt_osx-arm64=15.0.7=hf8d1dfb_1 - - ipython=8.16.1=pyh31c8845_0 - - jupyter_events=0.7.0=pyhd8ed1ab_2 - - matplotlib-base=3.8.0=py39h6685e7c_1 - - nbclient=0.8.0=pyhd8ed1ab_0 + - blas=2.120=openblas + - compiler-rt_osx-arm64=16.0.1=h30b49de_0 + - 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=hf8d1dfb_1 - - ipykernel=6.25.2=pyh1050b4e_0 - - matplotlib=3.8.0=py39hdf13c20_1 - - nbconvert-core=7.9.2=pyhd8ed1ab_0 - - clang_osx-arm64=15.0.7=h77e971b_3 - - jupyter_server=2.7.3=pyhd8ed1ab_1 - - nbconvert-pandoc=7.9.2=pyhd8ed1ab_0 - - c-compiler=1.6.0=hd291e01_0 - - clangxx_osx-arm64=15.0.7=h768a7fd_3 + - compiler-rt=16.0.1=h30b49de_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_osx-arm64=16.0.1=hdccda30_1 + - nbconvert-core=7.11.0=pyhd8ed1ab_0 + - clangxx_osx-arm64=16.0.1=h0c1d50e_1 - gfortran_osx-arm64=12.3.0=h57527a5_1 + - jupyter_server=2.10.1=pyhd8ed1ab_0 + - nbconvert-pandoc=7.11.0=pyhd8ed1ab_0 + - gfortran=12.3.0=h1ca8e4b_1 - jupyter-lsp=2.2.0=pyhd8ed1ab_0 - - jupyterlab_server=2.25.0=pyhd8ed1ab_0 - - nbconvert=7.9.2=pyhd8ed1ab_0 + - jupyterlab_server=2.25.2=pyhd8ed1ab_0 + - nbconvert=7.11.0=pyhd8ed1ab_0 - notebook-shim=0.2.3=pyhd8ed1ab_0 - - cxx-compiler=1.6.0=h1995070_0 - - gfortran=12.3.0=h1ca8e4b_1 - - jupyterlab=4.0.6=pyhd8ed1ab_0 - pythran=0.14.0=py39h819cc4c_1 - r-base=4.1.3=h9c4d319_6 - fortran-compiler=1.6.0=h5a50232_0 - - notebook=7.0.4=pyhd8ed1ab_0 + - jupyterlab=4.0.9=pyhd8ed1ab_0 - rpy2=3.5.11=py39r41hf9b1952_0 - - compilers=1.6.0=hce30654_0 - - widgetsnbextension=3.6.6=pyhd8ed1ab_0 - - ipywidgets=7.8.0=pyhd8ed1ab_0 - - jupyter-jsmol=2022.1.0=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 diff --git a/src/environment-3.9-macos.yml b/src/environment-3.9-macos.yml index c5273aa81a2..5ad4dcc3708 100644 --- a/src/environment-3.9-macos.yml +++ b/src/environment-3.9-macos.yml @@ -1,24 +1,24 @@ # Generated by conda-lock. # platform: osx-64 -# input_hash: a4f0adc56e008b24c3e68f6a0f2b95e617f6c975b1cc93dc92512adad93d3512 +# input_hash: a8e0b2ac6ea93b07d880f6bcf37f95f1a4c7d6a2102f733dda4197ccd8908265 channels: - conda-forge dependencies: - _r-mutex=1.0.1=anacondar_1 - - bzip2=1.0.8=h0d85af4_4 - - c-ares=1.19.1=h0dc2134_0 - - ca-certificates=2023.7.22=h8857fd0_0 + - bzip2=1.0.8=h10d778d_5 + - c-ares=1.22.1=h10d778d_0 + - ca-certificates=2023.11.17=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=hab24e00_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.82.0=h694c41f_6 + - libboost-headers=1.83.0=h694c41f_0 - libbrotlicommon=1.1.0=h0dc2134_1 - libcxx=16.0.6=hd57cbcb_0 - libdeflate=1.19=ha4e1b8e_0 @@ -33,13 +33,12 @@ dependencies: - libuv=1.46.0=h0c2f820_0 - libwebp-base=1.3.2=h0dc2134_0 - libzlib=1.2.13=h8a1eda9_5 - - llvm-openmp=17.0.2=hff08bdf_0 + - llvm-openmp=17.0.5=hb6ac08f_0 - m4=1.4.18=haf1e3a3_1001 - make=4.3=h22f3db7_1 - mathjax=3.2.2=h694c41f_0 - metis=5.1.0=he965462_1007 - nauty=2.7.2=h0d85af4_0 - - ncurses=6.4=hf0c8a7f_0 - palp=2.20=hbcb3906_0 - pari-elldata=0.0.20161017=0 - pari-galdata=0.0.20180411=0 @@ -55,6 +54,7 @@ dependencies: - sagemath-db-combinatorial-designs=20140630=1 - sagemath-db-graphs=20210214=hd8ed1ab_0 - sagemath-db-polytopes=20170220=1 + - tbb=2021.10.0=h1c7c39f_2 - three.js=122=hd8ed1ab_2 - tzdata=2023c=h71feb2d_0 - xorg-libxau=1.0.11=h0dc2134_0 @@ -68,168 +68,183 @@ dependencies: - gengetopt=2.23=he49afe7_0 - gettext=0.21.1=h8a4c099_0 - gf2x=1.3.0=hb2a7efb_2 - - gmp=6.2.1=h2e338ed_0 + - 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.1=h2e338ed_0 - libbrotlidec=1.1.0=h0dc2134_1 - libbrotlienc=1.1.0=h0dc2134_1 - - libedit=3.1.20191231=h0678c8f_2 - libgfortran5=13.2.0=h2873a65_1 - libpng=1.6.39=ha978bb4_0 - - libsqlite=3.43.0=h58db7d2_0 + - libsqlite=3.44.2=h92b6c6a_0 - libxcb=1.15=hb7f2c08_0 - - libxml2=2.11.5=h3346baf_1 + - libxml2=2.11.6=hc0ae0f7_0 - lrcalc=2.1=hf0c8a7f_5 + - ncurses=6.4=h93d8f39_2 - ninja=1.11.1=hb8565cd_0 - - openjdk=20.0.2=h7d26f99_2 - - openssl=3.1.3=h8a1eda9_0 + - openjdk=21.0.1=hf4d7fad_0 + - openssl=3.2.0=hd75f5a5_0 - pandoc=3.1.3=h9d075a6_0 - pari-seadata=0.0.20090618=0 - - pcre2=10.40=h1c4e4bc_0 + - pcre2=10.42=h0ad2156_0 - pixman=0.42.2=he965462_0 - pkg-config=0.29.2=ha3d46e9_1008 - primesieve=11.0=hf0c8a7f_0 - qhull=2020.2=h940c156_2 - - readline=8.2=h9e318b2_1 - symmetrica=3.0.1=hf0c8a7f_0 - tapi=1100.0.11=h9ce4665_0 - - tbb=2021.10.0=h1c7c39f_1 - - texinfo=7.0=pl5321hc47821c_0 - threejs-sage=122=hd8ed1ab_2 - - tk=8.6.13=hef22860_0 - - zeromq=4.3.4=he49afe7_1 + - 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 - - ecl=21.2.1=hd029580_2 - ecm=7.0.4=h343d7f2_1002 - fonts-conda-ecosystem=1=0 - freetype=2.12.1=h60636b9_2 - - gap-core=4.12.2=hc16eb5f_3 - givaro=4.1.1=h0a799c6_3 - glpk=5.0=h3cb5acd_0 - jmol=14.32.9=h694c41f_0 - - krb5=1.21.2=hb884880_0 - - libboost=1.82.0=hf0c313a_6 + - libboost=1.83.0=hf44e908_0 + - libedit=3.1.20191231=h0678c8f_2 - libgfortran=5.0.0=13_2_0_h97931a8_1 - - libglib=2.78.0=hc62aa5d_0 + - libglib=2.78.1=h198397b_1 - libhomfly=1.02r6=hc929b4f_0 - libllvm16=16.0.6=he4b1e75_2 - - libnghttp2=1.52.0=he2ab024_0 + - libnghttp2=1.58.0=h64cf6d3_0 - libssh2=1.11.0=hd019ec5_0 - libtiff=4.6.0=h684deea_2 - m4ri=20140914=h3f75d11_1005 - - mpfr=4.2.0=h4f9bd69_0 + - mpfr=4.2.1=h0c69b56_0 - ntl=11.4.3=h0ab3c2f_1 - - pari=2.15.4=h93f793c_2_pthread - primecount=7.6=ha894c9a_0 - - python=3.9.18=h07e1443_0_cpython + - readline=8.2=h9e318b2_1 - sigtool=0.1.3=h88f4db0_0 - - sqlite=3.43.0=h2b0dec6_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.15=hd6ba6f3_3 + - ld64_osx-64=609=ha20a434_15 + - libboost-devel=1.83.0=h7728843_0 + - libbrial=1.2.12=h8d08345_1 + - libclang-cpp16=16.0.6=default_h762fdd7_2 + - libflint=2.9.0=hfd2f71f_ntl_100 + - libopenblas=0.3.25=openmp_hfef2a42_0 + - libwebp=1.3.2=h44782d1_1 + - llvm-tools=16.0.6=he4b1e75_2 + - 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 + - qd=2.3.22=h2beb688_1004 + - sqlite=3.44.2=h7461747_0 - alabaster=0.7.13=pyhd8ed1ab_0 - appdirs=1.4.4=pyh9f0ad1d_0 - appnope=0.1.3=pyhd8ed1ab_0 + - arb=2.23.0=h905a977_0 - attrs=23.1.0=pyh71513ae_1 - backcall=0.2.0=pyh9f0ad1d_0 - - backports=1.0=pyhd8ed1ab_3 - - brotli=1.1.0=h0dc2134_1 + - boost-cpp=1.83.0=h07eb623_0 + - brial=1.2.12=pyh694c41f_1 - brotli-python=1.1.0=py39h840bb9f_1 - cached_property=1.5.2=pyha770c72_1 - - cachetools=5.3.1=pyhd8ed1ab_0 - - certifi=2023.7.22=pyhd8ed1ab_0 + - cachetools=5.3.2=pyhd8ed1ab_0 + - cairo=1.18.0=h99e66fa_0 + - cctools_osx-64=973.0.1=ha1c5b94_15 + - certifi=2023.11.17=pyhd8ed1ab_0 - chardet=5.2.0=py39h6e9494a_1 - - charset-normalizer=3.3.0=pyhd8ed1ab_0 + - charset-normalizer=3.3.2=pyhd8ed1ab_0 + - clang-16=16.0.6=default_h762fdd7_2 - colorama=0.4.6=pyhd8ed1ab_0 - cycler=0.12.1=pyhd8ed1ab_0 - cysignals=1.11.2=py39hf6ae30e_3 - - cython=3.0.2=py39h840bb9f_2 + - cython=3.0.6=py39h110ca85_0 - debugpy=1.8.0=py39h840bb9f_1 - decorator=5.1.1=pyhd8ed1ab_0 - defusedxml=0.7.1=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - docutils=0.20.1=py39h6e9494a_2 + - eclib=20230424=hd00e801_0 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 - - exceptiongroup=1.1.3=pyhd8ed1ab_0 - - executing=1.2.0=pyhd8ed1ab_0 - - fftw=3.3.10=nompi_h4fa670e_108 - - filelock=3.12.4=pyhd8ed1ab_0 + - exceptiongroup=1.2.0=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=h5bb23bf_0 + - fplll=5.4.5=hb7981ad_0 - gap-defaults=4.12.2=h694c41f_3 - gast=0.5.4=pyhd8ed1ab_0 - - gfan=0.6.2=hd793b56_1003 - - idna=3.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=1.1.7=pyhd8ed1ab_0 + - jupyterlab_widgets=3.0.9=pyhd8ed1ab_0 - kiwisolver=1.4.5=py39h8ee36c8_1 - lcalc=2.0.5=h3a941db_1 - - lcms2=2.15=hd6ba6f3_3 - - ld64_osx-64=609=ha20a434_14 - - libboost-devel=1.82.0=h1c7c39f_6 - - libbrial=1.2.12=h8d08345_1 - - libclang-cpp16=16.0.6=default_h762fdd7_1 - - libcurl=8.3.0=h5f667d7_0 - - libflint=2.9.0=hfd2f71f_ntl_100 - - libopenblas=0.3.24=openmp_h48a4ad5_0 - - libwebp=1.3.2=h44782d1_1 - - llvm-tools=16.0.6=he4b1e75_2 - - m4rie=20150908=h3f75d11_1001 + - ld64=609=ha02d983_15 + - libblas=3.9.0=20_osx64_openblas + - libcurl=8.4.0=h726d00d_0 + - libgd=2.3.3=h0dceb68_9 - markupsafe=2.1.3=py39hdc70f33_1 - maxima=5.45.0=hd029580_3 - - mistune=3.0.1=pyhd8ed1ab_0 - - mpc=1.3.1=h81bd1dd_0 - - mpfi=1.5.4=h52b28e3_1001 + - mistune=3.0.2=pyhd8ed1ab_0 - mpmath=1.3.0=pyhd8ed1ab_0 - munkres=1.1.4=pyh9f0ad1d_0 - - nest-asyncio=1.5.6=pyhd8ed1ab_0 - - networkx=2.8.8=pyhd8ed1ab_0 - - openjpeg=2.5.0=ha4da562_3 + - nest-asyncio=1.5.8=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.11.2=pyhd8ed1ab_0 - pickleshare=0.7.5=py_1003 + - pillow=10.1.0=py39hdd30358_0 - pkgconfig=1.5.5=pyhd8ed1ab_4 - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 - pluggy=1.3.0=pyhd8ed1ab_0 - ply=3.11=py_1 - - ppl=1.2=ha60d53e_1006 - - prometheus_client=0.17.1=pyhd8ed1ab_0 + - prometheus_client=0.19.0=pyhd8ed1ab_0 - psutil=5.9.5=py39hdc70f33_1 - 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.16.1=pyhd8ed1ab_0 + - pygments=2.17.2=pyhd8ed1ab_0 - pyparsing=3.1.1=pyhd8ed1ab_0 - - pyrsistent=0.19.3=py39hdc70f33_1 + - pyrsistent=0.20.0=py39ha09f3b3_0 - pysocks=1.7.1=pyha2e5f31_6 - - python-fastjsonschema=2.18.1=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 - - pyzmq=25.1.1=py39hdac9eea_1 - - qd=2.3.22=h2beb688_1004 + - pyzmq=25.1.1=py39h53dde38_2 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.10.4=py39h3f9c672_0 + - rpds-py=0.13.1=py39h3f9c672_0 - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 - sagetex=3.6.1=pyhd8ed1ab_0 - - setuptools=63.4.3=py39h6e9494a_0 + - setuptools=68.2.2=pyhd8ed1ab_0 - simplegeneric=0.8.1=py_1 + - singular=4.2.1.p3=hac851df_2 - six=1.16.0=pyh6c4a22f_0 - sniffio=1.3.0=pyhd8ed1ab_0 - snowballstemmer=2.2.0=pyhd8ed1ab_0 @@ -238,156 +253,140 @@ dependencies: - sympow=2.023.6=h115ba6a_3 - tomli=2.0.1=pyhd8ed1ab_0 - tornado=6.3.3=py39hdc70f33_1 - - traitlets=5.11.2=pyhd8ed1ab_0 - - trove-classifiers=2023.9.19=pyhd8ed1ab_0 + - traitlets=5.13.0=pyhd8ed1ab_0 + - trove-classifiers=2023.11.22=pyhd8ed1ab_0 - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 - typing_extensions=4.8.0=pyha770c72_0 - typing_utils=0.1.0=pyhd8ed1ab_0 - - tzlocal=5.1=py39h6e9494a_0 + - tzlocal=5.2=py39h6e9494a_0 - unicodedata2=15.1.0=py39hdc70f33_0 - uri-template=1.3.0=pyhd8ed1ab_0 - vcversioner=2.16.0.0=py_1 + - wcwidth=0.2.12=pyhd8ed1ab_0 - webcolors=1.13=pyhd8ed1ab_0 - webencodings=0.5.1=pyhd8ed1ab_2 - websocket-client=1.6.4=pyhd8ed1ab_0 - - wheel=0.41.2=pyhd8ed1ab_0 + - wheel=0.42.0=pyhd8ed1ab_0 + - widgetsnbextension=4.0.9=pyhd8ed1ab_0 - zipp=3.17.0=pyhd8ed1ab_0 - - anyio=4.0.0=pyhd8ed1ab_0 - - arb=2.23.0=h905a977_0 - - asttokens=2.4.0=pyhd8ed1ab_0 + - anyio=4.1.0=pyhd8ed1ab_0 + - asttokens=2.4.1=pyhd8ed1ab_0 - async-lru=2.0.4=pyhd8ed1ab_0 - - babel=2.12.1=pyhd8ed1ab_1 - - backports.functools_lru_cache=1.6.5=pyhd8ed1ab_0 + - babel=2.13.1=pyhd8ed1ab_0 - beautifulsoup4=4.12.2=pyha770c72_0 - beniget=0.4.1=pyhd8ed1ab_0 - bleach=6.1.0=pyhd8ed1ab_0 - - boost-cpp=1.82.0=h07eb623_6 - - brial=1.2.12=pyh694c41f_1 - cached-property=1.5.2=hd8ed1ab_1 - - cairo=1.16.0=hfdb49f2_1017 - - cctools_osx-64=973.0.1=ha1c5b94_14 + - cctools=973.0.1=h40f6528_15 - cffi=1.16.0=py39h18ef598_0 - - clang-16=16.0.6=default_h762fdd7_1 - - cmake=3.27.6=hf40c264_0 + - clang=16.0.6=hc177806_2 + - cmake=3.27.8=hc7ee4c4_0 - comm=0.1.4=pyhd8ed1ab_0 - cppy=1.2.1=pyhd8ed1ab_0 - - curl=8.3.0=h5f667d7_0 + - curl=8.4.0=h726d00d_0 - cypari2=2.1.3=py39he2cb11e_2 - deprecation=2.1.0=pyh9f0ad1d_0 - - eclib=20230424=hd00e801_0 - - fonttools=4.43.1=py39ha09f3b3_0 - - fplll=5.4.4=hdfdc905_0 - - gfortran_impl_osx-64=12.3.0=h54fd467_1 - - gmpy2=2.1.2=py39h2da61ea_1 + - fonttools=4.45.1=py39ha09f3b3_0 + - harfbuzz=8.3.0=hf45c392_0 - importlib-metadata=6.8.0=pyha770c72_0 - - importlib_resources=6.1.0=pyhd8ed1ab_0 + - importlib_resources=6.1.1=pyhd8ed1ab_0 - jedi=0.19.1=pyhd8ed1ab_0 - jinja2=3.1.2=pyhd8ed1ab_1 - - jupyterlab_pygments=0.2.2=pyhd8ed1ab_0 - - ld64=609=ha02d983_14 - - libblas=3.9.0=18_osx64_openblas - - libgd=2.3.3=h0dceb68_9 + - jupyterlab_pygments=0.3.0=pyhd8ed1ab_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.2=py39ha30fb19_2 - - openblas=0.3.24=openmp_hd7704e8_0 + - memory-allocator=0.1.3=py39hdc70f33_0 - overrides=7.4.0=pyhd8ed1ab_0 - pexpect=4.8.0=pyh1a96a4e_2 - - pillow=10.0.1=py39h877a9eb_2 - - pip=23.2.1=pyhd8ed1ab_0 + - pip=23.3.1=pyhd8ed1ab_0 + - platformdirs=4.0.0=pyhd8ed1ab_0 + - pplpy=0.8.7=py39hb3e8af0_0 - primecountpy=0.1.0=py39h8ee36c8_4 + - prompt-toolkit=3.0.24=pyha770c72_0 - pybind11=2.11.1=py39h8ee36c8_2 - pyobjc-core=10.0=py39head00df_0 - pyproject-api=1.6.1=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - pytz-deprecation-shim=0.1.0.post0=py39h6e9494a_4 - - referencing=0.30.2=pyhd8ed1ab_0 + - referencing=0.31.0=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - sagemath-db-conway-polynomials=0.5.0=h033912b_1 - - singular=4.2.1.p3=hac851df_2 - - terminado=0.17.1=pyhd1c38e8_0 + - sympy=1.12=pypyh9d50eac_103 + - terminado=0.18.0=pyh31c8845_0 - tinycss2=1.2.1=pyhd8ed1ab_0 - typing-extensions=4.8.0=hd8ed1ab_0 - - urllib3=2.0.6=pyhd8ed1ab_0 + - urllib3=2.1.0=pyhd8ed1ab_0 - argon2-cffi-bindings=21.2.0=py39hdc70f33_4 - arrow=1.3.0=pyhd8ed1ab_0 - - cctools=973.0.1=h40f6528_14 - - clang=16.0.6=hc177806_1 + - clangxx=16.0.6=default_h762fdd7_2 + - dsdp=5.8=h6e329d1_1203 + - fflas-ffpack=2.4.3=h026fd7e_2 - fqdn=1.5.1=pyhd8ed1ab_0 - - harfbuzz=8.2.1=h7666e2a_0 + - gsl=2.7=h93259b0_0 - hatchling=1.18.0=pyhd8ed1ab_0 - - importlib-resources=6.1.0=pyhd8ed1ab_0 + - iml=1.0.5=h64b42ca_1003 + - importlib-resources=6.1.1=pyhd8ed1ab_0 - importlib_metadata=6.8.0=hd8ed1ab_0 - - jsonschema-specifications=2023.7.1=pyhd8ed1ab_0 + - jsonschema-specifications=2023.11.1=pyhd8ed1ab_0 + - jupyter_core=5.5.0=py39h6e9494a_0 - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1 - - libcblas=3.9.0=18_osx64_openblas - - liblapack=3.9.0=18_osx64_openblas - - platformdirs=3.11.0=pyhd8ed1ab_0 - - pplpy=0.8.7=py39hb3e8af0_0 + - liblapacke=3.9.0=20_osx64_openblas + - numpy=1.26.2=py39h14c6d2e_0 + - pango=1.50.14=h19c1c8a_2 + - prompt_toolkit=3.0.24=hd8ed1ab_0 - pyobjc-framework-cocoa=10.0=py39head00df_1 - requests=2.31.0=pyhd8ed1ab_0 - setuptools-scm=8.0.4=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 - - sympy=1.12=pypyh9d50eac_103 - - wcwidth=0.2.8=pyhd8ed1ab_0 - - argon2-cffi=23.1.0=pyhd8ed1ab_0 - - clangxx=16.0.6=default_h762fdd7_1 - - dsdp=5.8=h6e329d1_1203 - - fflas-ffpack=2.4.3=h026fd7e_2 - - gsl=2.7=h93259b0_0 - - iml=1.0.5=h64b42ca_1003 - - isoduration=20.11.0=pyhd8ed1ab_0 - - jsonschema=4.19.1=pyhd8ed1ab_0 - - jupyter_core=5.3.2=py39h6e9494a_0 - - liblapacke=3.9.0=18_osx64_openblas - - numpy=1.26.0=py39h5c76802_0 - - pango=1.50.14=h19c1c8a_2 - - pooch=1.7.0=pyhd8ed1ab_4 - - prompt-toolkit=3.0.39=pyha770c72_0 - - send2trash=1.8.2=pyhd1c38e8_0 - - setuptools_scm=8.0.4=hd8ed1ab_0 - suitesparse=5.10.1=h7aff33d_1 - - virtualenv=20.24.4=pyhd8ed1ab_0 - - blas-devel=3.9.0=18_osx64_openblas - - compiler-rt_osx-64=16.0.6=he1888fc_0 - - contourpy=1.1.1=py39h8ee36c8_1 + - virtualenv=20.24.7=pyhd8ed1ab_0 + - argon2-cffi=23.1.0=pyhd8ed1ab_0 + - blas-devel=3.9.0=20_osx64_openblas + - compiler-rt_osx-64=16.0.6=he1888fc_1 + - contourpy=1.2.0=py39h6be1789_0 - cvxopt=1.3.2=py39h2a3e123_1 - - fpylll=0.5.9=py39hb8d1c6e_1 + - fpylll=0.6.0=py39hec15948_1 - giac=1.9.0.21=h92f3f65_1 - - jsonschema-with-format-nongpl=4.19.1=pyhd8ed1ab_0 - - jupyter_client=8.3.1=pyhd8ed1ab_0 + - ipython=8.8.0=pyhd1c38e8_0 + - isoduration=20.11.0=pyhd8ed1ab_0 + - jsonschema=4.20.0=pyhd8ed1ab_0 + - jupyter_client=8.6.0=pyhd8ed1ab_0 - linbox=1.6.3=hdde8d14_7 - - nbformat=5.9.2=pyhd8ed1ab_0 - - prompt_toolkit=3.0.39=hd8ed1ab_0 - - scipy=1.10.1=py39hded996c_3 + - scipy=1.11.4=py39ha321857_0 + - send2trash=1.8.2=pyhd1c38e8_0 + - setuptools_scm=8.0.4=hd8ed1ab_0 - tox=4.11.3=pyhd8ed1ab_0 - - blas=2.118=openblas - - compiler-rt=16.0.6=he1888fc_0 - - ipython=8.16.1=pyh31c8845_0 - - jupyter_events=0.7.0=pyhd8ed1ab_2 - - matplotlib-base=3.8.0=py39he57df45_1 + - blas=2.120=openblas + - compiler-rt=16.0.6=he1888fc_1 + - 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 + - clang_impl_osx-64=16.0.6=h8787910_6 + - 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=16.0.6=h8787910_1 - - ipykernel=6.25.2=pyh1050b4e_0 - - matplotlib=3.8.0=py39h6e9494a_1 - - nbconvert-core=7.9.2=pyhd8ed1ab_0 - - clangxx_osx-64=16.0.6=h1b7723c_1 + - clang_osx-64=16.0.6=hb91bd55_6 + - nbconvert-core=7.11.0=pyhd8ed1ab_0 + - clangxx_impl_osx-64=16.0.6=h1b7723c_6 - gfortran_osx-64=12.3.0=h18f7dce_1 - - jupyter_server=2.7.3=pyhd8ed1ab_1 - - nbconvert-pandoc=7.9.2=pyhd8ed1ab_0 + - jupyter_server=2.10.1=pyhd8ed1ab_0 + - nbconvert-pandoc=7.11.0=pyhd8ed1ab_0 + - clangxx_osx-64=16.0.6=h2fff7d5_6 - gfortran=12.3.0=h2c809b3_1 - jupyter-lsp=2.2.0=pyhd8ed1ab_0 - - jupyterlab_server=2.25.0=pyhd8ed1ab_0 - - nbconvert=7.9.2=pyhd8ed1ab_0 + - jupyterlab_server=2.25.2=pyhd8ed1ab_0 + - nbconvert=7.11.0=pyhd8ed1ab_0 - notebook-shim=0.2.3=pyhd8ed1ab_0 - - pythran=0.14.0=py39h4aa56a1_1 - - r-base=4.3.1=h0ff45fa_6 - fortran-compiler=1.6.0=h932d759_0 - - jupyterlab=4.0.6=pyhd8ed1ab_0 + - jupyterlab=4.0.9=pyhd8ed1ab_0 + - pythran=0.14.0=py39h4aa56a1_1 + - r-base=4.3.2=h8eaf9e6_1 + - notebook=7.0.6=pyhd8ed1ab_0 - rpy2=3.5.11=py39r43hd01001f_3 - - notebook=7.0.4=pyhd8ed1ab_0 - - widgetsnbextension=3.6.6=pyhd8ed1ab_0 - - ipywidgets=7.8.0=pyhd8ed1ab_0 - - jupyter-jsmol=2022.1.0=pyhd8ed1ab_0 - jupyter_sphinx=0.4.0=py39h6e9494a_1 - sphinx-basic-ng=1.0.0b2=pyhd8ed1ab_1 - furo=2023.9.10=pyhd8ed1ab_0 diff --git a/src/environment-dev-3.10-linux-aarch.yml b/src/environment-dev-3.10-linux-aarch64.yml similarity index 71% rename from src/environment-dev-3.10-linux-aarch.yml rename to src/environment-dev-3.10-linux-aarch64.yml index 15c1cef0e10..6086bede397 100644 --- a/src/environment-dev-3.10-linux-aarch.yml +++ b/src/environment-dev-3.10-linux-aarch64.yml @@ -1,24 +1,24 @@ # Generated by conda-lock. # platform: linux-aarch64 -# input_hash: 3b70fe86359f5fdcf6e40fd29b89eaaf5dec9348711bb3bcd8c51b7f5ade4989 +# input_hash: fccea3cfecb5c0d099045becb55199859eb1a13e71362f54f179819052dfcb14 channels: - conda-forge dependencies: - _r-mutex=1.0.1=anacondar_1 - _sysroot_linux-aarch64_curr_repodata_hack=4=h57d6b7b_13 - - ca-certificates=2023.7.22=hcefe29a_0 + - ca-certificates=2023.11.17=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=hab24e00_0 - - gh=2.36.0=h652cbe9_0 + - font-ttf-ubuntu=0.83=h77eed37_1 + - gh=2.39.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_2 - - libgomp=13.2.0=hf8544c7_2 - - libstdcxx-devel_linux-aarch64=12.3.0=h8b5ab12_2 - - libstdcxx-ng=13.2.0=h9a76618_2 + - 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 - pari-elldata=0.0.20161017=0 @@ -40,20 +40,19 @@ dependencies: - 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_2 + - 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 - bdw-gc=8.0.6=hd62202e_0 - - bzip2=1.0.8=hf897c2e_4 - - c-ares=1.20.1=h31becfc_0 + - bzip2=1.0.8=h31becfc_5 + - c-ares=1.22.1=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.2.1=h7fd3ca4_0 + - gmp=6.3.0=h2f0025b_0 - graphite2=1.3.13=h7fd3ca4_1001 - icu=70.1=ha18d298_0 - jpeg=9e=h2a766a3_3 @@ -67,10 +66,10 @@ dependencies: - libev=4.33=h516909a_1 - libexpat=2.5.0=hd600fc2_1 - libffi=3.4.2=h3557bc0_5 - - libgfortran5=13.2.0=h582850c_2 + - libgfortran5=13.2.0=h582850c_3 - libiconv=1.17=h9cdd2b7_0 - - libnsl=2.0.0=h31becfc_1 - - libsanitizer=12.3.0=h8ebda82_2 + - libnsl=2.0.1=h31becfc_0 + - libsanitizer=12.3.0=h8ebda82_3 - libsodium=1.0.18=hb9de7d4_1 - libtool=2.4.7=h4de3ea5_0 - libuuid=2.38.1=hb4cce97_0 @@ -82,9 +81,9 @@ dependencies: - make=4.3=h309ac5b_1 - metis=5.1.0=h2f0025b_1007 - nauty=2.7.2=hf897c2e_0 - - ncurses=6.4=h2e1726e_0 + - ncurses=6.4=h0425590_2 - ninja=1.11.1=hdd96247_0 - - openssl=3.1.3=h31becfc_0 + - openssl=3.2.0=h31becfc_0 - palp=2.20=hb9de7d4_0 - patch=2.7.6=hf897c2e_1002 - pixman=0.42.2=h2f0025b_0 @@ -110,32 +109,31 @@ dependencies: - 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_2 + - gcc_impl_linux-aarch64=12.3.0=hcde2664_3 - 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_2 + - libgfortran-ng=13.2.0=he9431aa_3 - libhomfly=1.02r6=hb9de7d4_0 - - libnghttp2=1.52.0=h250e5c5_0 + - libnghttp2=1.58.0=hb0e430d_0 - libpng=1.6.39=hf9034f9_0 - - libsqlite=3.43.0=h194ca79_0 + - libsqlite=3.44.2=h194ca79_0 - libssh2=1.11.0=h492db2e_0 - libxcb=1.13=h3557bc0_1004 - libxml2=2.10.3=habe54e3_4 - - mpfr=4.2.0=h96f194b_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 - 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.4=h01db608_1 + - zeromq=4.3.5=h2f0025b_0 - zlib=1.2.13=h31becfc_5 - zstd=1.5.5=h4c53e97_0 - autoconf=2.71=pl5321h2148fe1_1 @@ -149,24 +147,24 @@ dependencies: - 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_2 - - gxx_impl_linux-aarch64=12.3.0=hcde2664_2 + - gfortran_impl_linux-aarch64=12.3.0=hb7244be_3 + - gxx_impl_linux-aarch64=12.3.0=hcde2664_3 - krb5=1.20.1=h113d92e_0 - libflint=2.9.0=hd3470fa_ntl_100 - - libglib=2.78.0=h0464669_0 + - libglib=2.78.1=h0464669_0 - libhwloc=2.9.1=h21e8147_0 - - libopenblas=0.3.23=pthreads_hd703e6f_0 + - libopenblas=0.3.25=pthreads_h5a5ec62_0 - libtiff=4.5.0=h4c1066a_2 - libudev1=254=h31becfc_0 - - llvm-openmp=17.0.2=h8b0cb96_0 + - llvm-openmp=17.0.5=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.12=hbbe8eec_0_cpython + - python=3.10.13=hbbe8eec_0_cpython - qd=2.3.22=h05efe27_1004 - - sqlite=3.43.0=h3b3482f_0 + - sqlite=3.44.2=h3b3482f_0 - tachyon=0.99b6=h63ab1d9_1001 - texinfo=7.0=pl5321h17f021e_0 - tktable=2.10=h4f9ca69_5 @@ -178,19 +176,18 @@ dependencies: - attrs=23.1.0=pyh71513ae_1 - automake=1.16.5=pl5321h8af1aa0_0 - backcall=0.2.0=pyh9f0ad1d_0 - - backports=1.0=pyhd8ed1ab_3 - 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.1=pyhd8ed1ab_0 - - certifi=2023.7.22=pyhd8ed1ab_0 + - cachetools=5.3.2=pyhd8ed1ab_0 + - certifi=2023.11.17=pyhd8ed1ab_0 - chardet=5.2.0=py310hbbe02a8_1 - - charset-normalizer=3.3.0=pyhd8ed1ab_0 + - charset-normalizer=3.3.2=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_0 - cycler=0.12.1=pyhd8ed1ab_0 - cysignals=1.11.2=py310h485802a_3 - - cython=3.0.2=py310hbb3657e_2 + - cython=3.0.6=py310hbb3657e_0 - debugpy=1.8.0=py310hbb3657e_1 - decorator=5.1.1=pyhd8ed1ab_0 - defusedxml=0.7.1=pyhd8ed1ab_0 @@ -199,45 +196,44 @@ dependencies: - eclib=20230424=h0bc7b0f_0 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 - - exceptiongroup=1.1.3=pyhd8ed1ab_0 + - exceptiongroup=1.2.0=pyhd8ed1ab_0 - execnet=2.0.2=pyhd8ed1ab_0 - - executing=1.2.0=pyhd8ed1ab_0 - - filelock=3.12.4=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.4=h5cd656c_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.4=pyhd8ed1ab_0 + - 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=py310h4c7bcd0_3 - - jupyterlab_widgets=1.1.7=pyhd8ed1ab_0 + - jupyterlab_widgets=3.0.9=pyhd8ed1ab_0 - kiwisolver=1.4.5=py310he290b8a_1 - lcalc=2.0.5=h3264cc0_1 - lcms2=2.15=h7576be9_0 - - libblas=3.9.0=17_linuxaarch64_openblas + - libblas=3.9.0=20_linuxaarch64_openblas - libbrial=1.2.12=h17533bf_1 - libcups=2.3.3=h4303303_3 - libcurl=8.1.2=hc34909b_0 - - libfido2=1.13.0=h73a623e_0 + - libfido2=1.14.0=heb3f89f_0 - libwebp=1.2.4=h7bdf6e5_1 - m4rie=20150908=h75e8696_1001 - markupsafe=2.1.3=py310h7c1f4a2_1 - maxima=5.45.0=haa44c19_3 - - mistune=3.0.1=pyhd8ed1ab_0 + - mistune=3.0.2=pyhd8ed1ab_0 - mpmath=1.3.0=pyhd8ed1ab_0 - munkres=1.1.4=pyh9f0ad1d_0 - - nest-asyncio=1.5.6=pyhd8ed1ab_0 - - networkx=2.8.8=pyhd8ed1ab_0 - - openblas=0.3.23=pthreads_hef96516_0 + - nest-asyncio=1.5.8=pyhd8ed1ab_0 + - networkx=3.2.1=pyhd8ed1ab_0 + - openblas=0.3.25=pthreads_h339cbfa_0 - openjpeg=2.5.0=h9508984_2 - packaging=23.2=pyhd8ed1ab_0 - pandocfilters=1.5.0=pyhd8ed1ab_0 @@ -248,32 +244,32 @@ dependencies: - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 - pluggy=1.3.0=pyhd8ed1ab_0 - ply=3.11=py_1 - - prometheus_client=0.17.1=pyhd8ed1ab_0 + - prometheus_client=0.19.0=pyhd8ed1ab_0 - psutil=5.9.5=py310hb299538_1 - 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.0=pyhd8ed1ab_0 + - pycodestyle=2.11.1=pyhd8ed1ab_0 - pycparser=2.21=pyhd8ed1ab_0 - - pygments=2.16.1=pyhd8ed1ab_0 + - pygments=2.17.2=pyhd8ed1ab_0 - pyparsing=3.1.1=pyhd8ed1ab_0 - - pyrsistent=0.19.3=py310h7c1f4a2_1 + - pyrsistent=0.20.0=py310h7c1f4a2_0 - pysocks=1.7.1=pyha2e5f31_6 - pyspellchecker=0.7.2=pyhd8ed1ab_0 - - python-fastjsonschema=2.18.1=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 - - pyzmq=25.1.1=py310hdaec954_1 + - pyzmq=25.1.1=py310h014ca53_2 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.10.4=py310h057607a_0 + - rpds-py=0.13.1=py310h057607a_0 - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 - sagetex=3.6.1=pyhd8ed1ab_0 - send2trash=1.8.2=pyh41d4057_0 - - setuptools=63.4.3=py310hbbe02a8_0 + - setuptools=68.2.2=pyhd8ed1ab_0 - simplegeneric=0.8.1=py_1 - singular=4.2.1.p3=h3d4c4c6_2 - six=1.16.0=pyh6c4a22f_0 @@ -285,81 +281,82 @@ dependencies: - tbb=2021.9.0=h4c384f3_0 - tomli=2.0.1=pyhd8ed1ab_0 - tornado=6.3.3=py310h7c1f4a2_1 - - traitlets=5.11.2=pyhd8ed1ab_0 - - trove-classifiers=2023.9.19=pyhd8ed1ab_0 + - traitlets=5.13.0=pyhd8ed1ab_0 + - trove-classifiers=2023.11.22=pyhd8ed1ab_0 - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 - typing_extensions=4.8.0=pyha770c72_0 - typing_utils=0.1.0=pyhd8ed1ab_0 - - tzlocal=5.1=py310h4c7bcd0_0 + - tzlocal=5.2=py310h4c7bcd0_0 - unicodedata2=15.1.0=py310hb299538_0 - uri-template=1.3.0=pyhd8ed1ab_0 - vcversioner=2.16.0.0=py_1 + - wcwidth=0.2.12=pyhd8ed1ab_0 - webcolors=1.13=pyhd8ed1ab_0 - webencodings=0.5.1=pyhd8ed1ab_2 - websocket-client=1.6.4=pyhd8ed1ab_0 - - wheel=0.41.2=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 - zipp=3.17.0=pyhd8ed1ab_0 - - anyio=4.0.0=pyhd8ed1ab_0 - - asttokens=2.4.0=pyhd8ed1ab_0 + - anyio=4.1.0=pyhd8ed1ab_0 + - asttokens=2.4.1=pyhd8ed1ab_0 - async-lru=2.0.4=pyhd8ed1ab_0 - - babel=2.12.1=pyhd8ed1ab_1 - - backports.functools_lru_cache=1.6.5=pyhd8ed1ab_0 + - babel=2.13.1=pyhd8ed1ab_0 - beautifulsoup4=4.12.2=pyha770c72_0 - beniget=0.4.1=pyhd8ed1ab_0 - bleach=6.1.0=pyhd8ed1ab_0 - brial=1.2.12=pyh694c41f_1 - cached-property=1.5.2=hd8ed1ab_1 - cairo=1.16.0=hd19fb6e_1014 - - cattrs=23.1.2=pyhd8ed1ab_0 - 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 - - cxx-compiler=1.6.0=h2a328a1_0 - cypari2=2.1.3=py310h4cbba44_2 - deprecation=2.1.0=pyh9f0ad1d_0 - - fonttools=4.43.1=py310hb299538_0 + - fonttools=4.45.1=py310hb299538_0 - fortran-compiler=1.6.0=h7048d53_0 - importlib-metadata=6.8.0=pyha770c72_0 - - importlib_resources=6.1.0=pyhd8ed1ab_0 + - importlib_resources=6.1.1=pyhd8ed1ab_0 - jedi=0.19.1=pyhd8ed1ab_0 - jinja2=3.1.2=pyhd8ed1ab_1 - - jupyterlab_pygments=0.2.2=pyhd8ed1ab_0 - - libcblas=3.9.0=17_linuxaarch64_openblas + - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 + - libcblas=3.9.0=20_linuxaarch64_openblas - libgd=2.3.3=h99c6b3b_4 - - liblapack=3.9.0=17_linuxaarch64_openblas + - liblapack=3.9.0=20_linuxaarch64_openblas - matplotlib-inline=0.1.6=pyhd8ed1ab_0 - - memory-allocator=0.1.2=py310h761cc84_2 + - 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.2.1=pyhd8ed1ab_0 + - pip=23.3.1=pyhd8ed1ab_0 + - platformdirs=4.0.0=pyhd8ed1ab_0 - pplpy=0.8.7=py310hd5c817c_0 - primecountpy=0.1.0=py310h586407a_4 + - prompt-toolkit=3.0.24=pyha770c72_0 - pybind11=2.11.1=py310h586407a_2 - pyproject-api=1.6.1=pyhd8ed1ab_0 - - pytest=7.4.2=pyhd8ed1ab_0 + - pytest=7.4.3=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - pytz-deprecation-shim=0.1.0.post0=py310h4c7bcd0_4 - - referencing=0.30.2=pyhd8ed1ab_0 + - referencing=0.31.0=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - sagemath-db-conway-polynomials=0.5.0=h4fd8a4c_1 - sympy=1.12=pypyh9d50eac_103 - - terminado=0.17.1=pyh41d4057_0 + - terminado=0.18.0=pyh0d859eb_0 - tinycss2=1.2.1=pyhd8ed1ab_0 - typing-extensions=4.8.0=hd8ed1ab_0 - - urllib3=2.0.6=pyhd8ed1ab_0 + - urllib3=2.1.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 + - cattrs=23.2.2=pyhd8ed1ab_0 - dsdp=5.8=hb12102e_1203 - fflas-ffpack=2.4.3=hf104d39_2 - fqdn=1.5.1=pyhd8ed1ab_0 @@ -368,70 +365,64 @@ dependencies: - harfbuzz=6.0.0=hbcb8a4f_0 - hatchling=1.18.0=pyhd8ed1ab_0 - iml=1.0.5=h9076c59_1003 - - importlib-resources=6.1.0=pyhd8ed1ab_0 + - importlib-resources=6.1.1=pyhd8ed1ab_0 - importlib_metadata=6.8.0=hd8ed1ab_0 - - jsonschema-specifications=2023.7.1=pyhd8ed1ab_0 + - jsonschema-specifications=2023.11.1=pyhd8ed1ab_0 + - jupyter_core=5.5.0=py310h4c7bcd0_0 - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1 - - liblapacke=3.9.0=17_linuxaarch64_openblas - - lsprotocol=2023.0.0b1=pyhd8ed1ab_0 - - numpy=1.26.0=py310hcbab775_0 - - platformdirs=3.11.0=pyhd8ed1ab_0 - - pytest-xdist=3.3.1=pyhd8ed1ab_0 + - liblapacke=3.9.0=20_linuxaarch64_openblas + - numpy=1.26.2=py310hcbab775_0 + - prompt_toolkit=3.0.24=hd8ed1ab_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 - - wcwidth=0.2.8=pyhd8ed1ab_0 + - virtualenv=20.24.7=pyhd8ed1ab_0 - xorg-libxtst=1.2.3=hf897c2e_1002 - argon2-cffi=23.1.0=pyhd8ed1ab_0 - - blas-devel=3.9.0=17_linuxaarch64_openblas - - contourpy=1.1.1=py310h586407a_1 + - blas-devel=3.9.0=20_linuxaarch64_openblas + - contourpy=1.2.0=py310h586407a_0 - cvxopt=1.3.2=py310h536486b_1 - - fpylll=0.5.9=py310hde12f47_1 + - fpylll=0.6.0=py310hfdbf2a6_1 - giac=1.9.0.21=h04922a4_1 - igraph=0.9.10=hefb87a8_1 + - ipython=8.8.0=pyh41d4057_0 - isoduration=20.11.0=pyhd8ed1ab_0 - - jsonschema=4.19.1=pyhd8ed1ab_0 - - jupyter_core=5.3.2=py310h4c7bcd0_0 + - jsonschema=4.20.0=pyhd8ed1ab_0 + - jupyter_client=8.6.0=pyhd8ed1ab_0 - linbox=1.6.3=h31716a8_7 + - lsprotocol=2023.0.0=pyhd8ed1ab_0 - openjdk=17.0.3=h1a274e0_5 - pango=1.50.14=h1f1e9b3_0 - - pooch=1.7.0=pyhd8ed1ab_4 - - prompt-toolkit=3.0.39=pyha770c72_0 - pythran=0.14.0=py310h5e48e15_1 + - scipy=1.11.3=py310hcbab775_1 - setuptools_scm=8.0.4=hd8ed1ab_0 - - typeguard=3.0.2=pyhd8ed1ab_0 - - virtualenv=20.24.4=pyhd8ed1ab_0 - - blas=2.117=openblas + - tox=4.11.3=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.19.1=pyhd8ed1ab_0 - - jupyter_client=8.3.1=pyhd8ed1ab_0 - - matplotlib-base=3.8.0=py310h0a7f329_1 + - jsonschema-with-format-nongpl=4.20.0=pyhd8ed1ab_0 + - matplotlib-base=3.8.2=py310h0a7f329_0 - nbformat=5.9.2=pyhd8ed1ab_0 - - prompt_toolkit=3.0.39=hd8ed1ab_0 - - pygls=1.1.1=pyhd8ed1ab_0 + - pygls=1.2.0=pyhd8ed1ab_0 - r-base=4.2.3=h620ca72_0 - rw=0.9=hf897c2e_0 - - scipy=1.10.1=py310h7f380f4_3 - - tox=4.11.3=pyhd8ed1ab_0 - - ipython=8.16.1=pyh0d859eb_0 - - jupyter_events=0.7.0=pyhd8ed1ab_2 - - matplotlib=3.8.0=py310hbbe02a8_1 + - 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 - - ipykernel=6.25.2=pyh2140261_0 - - nbconvert-core=7.9.2=pyhd8ed1ab_0 - - jupyter_server=2.7.3=pyhd8ed1ab_1 - - nbconvert-pandoc=7.9.2=pyhd8ed1ab_0 + - nbconvert-core=7.11.0=pyhd8ed1ab_0 + - jupyter_server=2.10.1=pyhd8ed1ab_0 + - nbconvert-pandoc=7.11.0=pyhd8ed1ab_0 - jupyter-lsp=2.2.0=pyhd8ed1ab_0 - - jupyterlab_server=2.25.0=pyhd8ed1ab_0 - - nbconvert=7.9.2=pyhd8ed1ab_0 + - jupyterlab_server=2.25.2=pyhd8ed1ab_0 + - nbconvert=7.11.0=pyhd8ed1ab_0 - notebook-shim=0.2.3=pyhd8ed1ab_0 - - jupyterlab=4.0.6=pyhd8ed1ab_0 - - notebook=7.0.4=pyhd8ed1ab_0 - - widgetsnbextension=3.6.6=pyhd8ed1ab_0 - - ipywidgets=7.8.0=pyhd8ed1ab_0 - - jupyter-jsmol=2022.1.0=pyhd8ed1ab_0 + - jupyterlab=4.0.9=pyhd8ed1ab_0 + - notebook=7.0.6=pyhd8ed1ab_0 - esbonio=0.16.2=pyhd8ed1ab_0 - jupyter_sphinx=0.1.4=py_0 - sphinx-basic-ng=1.0.0b2=pyhd8ed1ab_1 diff --git a/src/environment-dev-3.10-linux.yml b/src/environment-dev-3.10-linux.yml index 1cb2dd87846..85e2d6ebbb4 100644 --- a/src/environment-dev-3.10-linux.yml +++ b/src/environment-dev-3.10-linux.yml @@ -1,24 +1,24 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: 4bb403ecf86d8e54c90fb171f1ba16c8337bcef742e691a5ea15d0420a8e058a +# input_hash: 3bcc71420f123cb056f864915177a9014519e1618fa7c52a7e6f089c93809c13 channels: - conda-forge dependencies: - _libgcc_mutex=0.1=conda_forge - _r-mutex=1.0.1=anacondar_1 - - ca-certificates=2023.7.22=hbcca054_0 + - ca-certificates=2023.11.17=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=hab24e00_0 - - gh=2.36.0=ha8f183a_0 + - font-ttf-ubuntu=0.83=h77eed37_1 + - gh=2.39.1=ha8f183a_0 - kernel-headers_linux-64=2.6.32=he073ed8_16 - ld_impl_linux-64=2.40=h41732ed_0 - - libboost-headers=1.82.0=ha770c72_6 - - libgcc-devel_linux-64=12.3.0=h8bca6fd_2 - - libstdcxx-devel_linux-64=12.3.0=h8bca6fd_2 - - libstdcxx-ng=13.2.0=h7e041cc_2 + - libboost-headers=1.83.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 - pari-elldata=0.0.20161017=0 - pari-galdata=0.0.20180411=0 @@ -31,7 +31,7 @@ dependencies: - three.js=122=hd8ed1ab_2 - tzdata=2023c=h71feb2d_0 - fonts-conda-forge=1=0 - - libgomp=13.2.0=h807b86a_2 + - libgomp=13.2.0=h807b86a_3 - pari-seadata=0.0.20090618=0 - sysroot_linux-64=2.12=he073ed8_16 - threejs-sage=122=hd8ed1ab_2 @@ -40,19 +40,19 @@ dependencies: - 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_2 + - libgcc-ng=13.2.0=h807b86a_3 - alsa-lib=1.2.10=hd590300_0 - attr=2.5.1=h166bdaf_1 - bdw-gc=8.0.6=h4bd325d_0 - - bzip2=1.0.8=h7f98852_4 - - c-ares=1.19.1=hd590300_0 + - bzip2=1.0.8=hd590300_5 + - c-ares=1.22.1=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.2.1=h58526e2_0 + - gmp=6.3.0=h59595ed_0 - graphite2=1.3.13=h58526e2_1001 - icu=73.2=h59595ed_0 - keyutils=1.6.1=h166bdaf_0 @@ -66,13 +66,13 @@ dependencies: - libev=4.33=h516909a_1 - libexpat=2.5.0=hcb278e6_1 - libffi=3.4.2=h7f98852_5 - - libgfortran5=13.2.0=ha4646dd_2 + - libgfortran5=13.2.0=ha4646dd_3 - libiconv=1.17=h166bdaf_0 - - libjpeg-turbo=2.1.5.1=hd590300_1 - - libnsl=2.0.0=hd590300_1 + - 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_2 + - libsanitizer=12.3.0=h0f45ef3_3 - libsodium=1.0.18=h36c2ea0_1 - libtool=2.4.7=h27087fc_0 - libuuid=2.38.1=h0b41bf4_0 @@ -86,10 +86,10 @@ dependencies: - metis=5.1.0=h59595ed_1007 - mpg123=1.32.3=h59595ed_0 - nauty=2.7.2=h7f98852_0 - - ncurses=6.4=hcb278e6_0 + - ncurses=6.4=h59595ed_2 - ninja=1.11.1=h924138e_0 - nspr=4.35=h27087fc_0 - - openssl=3.1.3=hd590300_0 + - openssl=3.2.0=hd590300_0 - palp=2.20=h36c2ea0_0 - patch=2.7.6=h7f98852_1002 - pixman=0.42.2=h59595ed_0 @@ -116,7 +116,7 @@ dependencies: - 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_2 + - gcc_impl_linux-64=12.3.0=he2b93b0_3 - givaro=4.1.1=h192cbe9_1 - glpk=5.0=h445213a_0 - libbrotlidec=1.1.0=hd590300_1 @@ -125,27 +125,27 @@ dependencies: - libedit=3.1.20191231=he28a2e2_2 - libevent=2.1.12=hf998b51_1 - libflac=1.4.3=h59595ed_0 - - libgfortran-ng=13.2.0=h69a702a_2 + - libgfortran-ng=13.2.0=h69a702a_3 - libgpg-error=1.47=h71f35ed_0 - libhomfly=1.02r6=h36c2ea0_0 - - libnghttp2=1.52.0=h61bc06f_0 + - libnghttp2=1.58.0=h47da74e_0 - libpng=1.6.39=h753d276_0 - - libsqlite=3.43.0=h2797004_0 + - libsqlite=3.44.2=h2797004_0 - libssh2=1.11.0=h0841786_0 - libvorbis=1.3.7=h9c3ff4c_0 - libxcb=1.15=h0b41bf4_0 - - libxml2=2.11.5=h232c23b_1 - - mpfr=4.2.0=hb012696_0 - - mysql-common=8.0.33=hf1915f5_5 + - libxml2=2.11.6=h232c23b_0 + - mpfr=4.2.1=h9458935_0 + - mysql-common=8.0.33=hf1915f5_6 - ntl=11.4.3=hef3c4d3_1 - pcre2=10.40=hc3806b6_0 - perl=5.32.1=4_hd590300_perl5 - primecount=7.9=hcb278e6_0 - readline=8.2=h8228510_1 - - tk=8.6.13=h2797004_0 + - tk=8.6.13=noxft_h4845f30_101 - xorg-fixesproto=5.0=h7f98852_1002 - xorg-libsm=1.2.4=h7391055_0 - - zeromq=4.3.4=h9c3ff4c_1 + - zeromq=4.3.5=h59595ed_0 - zlib=1.2.13=hd590300_5 - zstd=1.5.5=hfc55251_0 - autoconf=2.71=pl5321h2b4cb7a_1 @@ -158,32 +158,32 @@ dependencies: - 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_2 - - gxx_impl_linux-64=12.3.0=he2b93b0_2 + - gfortran_impl_linux-64=12.3.0=hfcedea8_3 + - gxx_impl_linux-64=12.3.0=he2b93b0_3 - igraph=0.7.1=0 - krb5=1.21.2=h659d440_0 - - libboost=1.82.0=h6fcfa73_6 + - libboost=1.83.0=h6fcfa73_0 - libflint=2.9.0=h2f819a4_ntl_100 - - libgcrypt=1.10.1=h166bdaf_0 - - libglib=2.78.0=hebfc3b9_0 + - libgcrypt=1.10.2=hd590300_0 + - libglib=2.78.1=hebfc3b9_0 - libhwloc=2.9.3=default_h554bfaf_1009 - libllvm15=15.0.7=h5cf9203_3 - - libopenblas=0.3.24=pthreads_h413a1c8_0 + - libopenblas=0.3.25=pthreads_h413a1c8_0 - libsndfile=1.2.2=hc60ed4a_1 - - libtiff=4.6.0=h29866fb_1 + - libtiff=4.6.0=ha9c0a0a_2 - libudev1=254=h3f72095_0 - - llvm-openmp=17.0.2=h4dfa4b3_0 + - llvm-openmp=17.0.5=h4dfa4b3_0 - m4ri=20140914=h7ca028e_1005 - mpc=1.3.1=hfe3b2da_0 - mpfi=1.5.4=h9f54685_1001 - - mysql-libs=8.0.33=hca2cd23_5 + - mysql-libs=8.0.33=hca2cd23_6 - nss=3.94=h1d7d5a4_0 - pandoc=3.1.3=h32600fe_0 - pari=2.15.4=h4d4ae9b_2_pthread - ppl=1.2=h6ec01c2_1006 - - python=3.10.12=hd12c33a_0_cpython + - python=3.10.13=hd12c33a_0_cpython - qd=2.3.22=h2cc385e_1004 - - sqlite=3.43.0=h2c6b66d_0 + - sqlite=3.44.2=h2c6b66d_0 - tachyon=0.99b6=0 - texinfo=7.0=pl5321h0f457ee_0 - tktable=2.10=h0c5db8f_5 @@ -191,7 +191,7 @@ dependencies: - 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.6=h8ee46fc_0 + - 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 @@ -199,19 +199,18 @@ dependencies: - attrs=23.1.0=pyh71513ae_1 - automake=1.16.5=pl5321ha770c72_0 - backcall=0.2.0=pyh9f0ad1d_0 - - backports=1.0=pyhd8ed1ab_3 - 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.1=pyhd8ed1ab_0 - - certifi=2023.7.22=pyhd8ed1ab_0 + - cachetools=5.3.2=pyhd8ed1ab_0 + - certifi=2023.11.17=pyhd8ed1ab_0 - chardet=5.2.0=py310hff52083_1 - - charset-normalizer=3.3.0=pyhd8ed1ab_0 + - charset-normalizer=3.3.2=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_0 - cycler=0.12.1=pyhd8ed1ab_0 - cysignals=1.11.2=py310h945e7c7_3 - - cython=3.0.2=py310hc6cd4ac_2 + - cython=3.0.6=py310hc6cd4ac_0 - dbus=1.13.6=h5008d03_3 - debugpy=1.8.0=py310hc6cd4ac_1 - decorator=5.1.1=pyhd8ed1ab_0 @@ -221,49 +220,49 @@ dependencies: - eclib=20230424=hdef1efb_0 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 - - exceptiongroup=1.1.3=pyhd8ed1ab_0 + - exceptiongroup=1.2.0=pyhd8ed1ab_0 - execnet=2.0.2=pyhd8ed1ab_0 - - executing=1.2.0=pyhd8ed1ab_0 - - filelock=3.12.4=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.4=h8780c30_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.0=hfc55251_0 + - glib-tools=2.78.1=hfc55251_0 - gmpy2=2.1.2=py310h3ec546c_1 - gxx_linux-64=12.3.0=h8a814eb_2 - - idna=3.4=pyhd8ed1ab_0 + - 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=py310hff52083_3 - - jupyterlab_widgets=1.1.7=pyhd8ed1ab_0 + - jupyterlab_widgets=3.0.9=pyhd8ed1ab_0 - kiwisolver=1.4.5=py310hd41b1e2_1 - lcalc=2.0.5=h6a8a7c6_1 - - lcms2=2.15=h7f713cb_2 - - libblas=3.9.0=18_linux64_openblas - - libboost-devel=1.82.0=h00ab1b0_6 + - lcms2=2.15=hb7c19ff_3 + - libblas=3.9.0=20_linux64_openblas + - libboost-devel=1.83.0=h00ab1b0_0 - libbrial=1.2.12=h3155cbd_1 - libclang13=15.0.7=default_h9986a30_3 - libcups=2.3.3=h4637d8d_4 - - libcurl=8.3.0=hca28451_0 - - libfido2=1.13.0=h2e5b2a7_0 - - libpq=15.4=hfc447b1_2 + - libcurl=8.4.0=hca28451_0 + - libfido2=1.14.0=h4446dcb_0 + - libpq=16.1=hfc447b1_0 - libsystemd0=254=h3516f8a_0 - - libwebp=1.3.2=hdffd6e0_0 + - libwebp=1.3.2=h658648e_1 - m4rie=20150908=h7ca028e_1001 - markupsafe=2.1.3=py310h2372a71_1 - maxima=5.45.0=h9d73b02_3 - - mistune=3.0.1=pyhd8ed1ab_0 + - mistune=3.0.2=pyhd8ed1ab_0 - mpmath=1.3.0=pyhd8ed1ab_0 - munkres=1.1.4=pyh9f0ad1d_0 - - nest-asyncio=1.5.6=pyhd8ed1ab_0 - - networkx=2.8.8=pyhd8ed1ab_0 - - openblas=0.3.24=pthreads_h7a3da1a_0 + - nest-asyncio=1.5.8=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 @@ -274,33 +273,33 @@ dependencies: - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 - pluggy=1.3.0=pyhd8ed1ab_0 - ply=3.11=py_1 - - prometheus_client=0.17.1=pyhd8ed1ab_0 + - prometheus_client=0.19.0=pyhd8ed1ab_0 - psutil=5.9.5=py310h2372a71_1 - 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.0=pyhd8ed1ab_0 + - pycodestyle=2.11.1=pyhd8ed1ab_0 - pycparser=2.21=pyhd8ed1ab_0 - - pygments=2.16.1=pyhd8ed1ab_0 + - pygments=2.17.2=pyhd8ed1ab_0 - pyparsing=3.1.1=pyhd8ed1ab_0 - - pyrsistent=0.19.3=py310h2372a71_1 + - pyrsistent=0.20.0=py310h2372a71_0 - pysocks=1.7.1=pyha2e5f31_6 - pyspellchecker=0.7.2=pyhd8ed1ab_0 - - python-fastjsonschema=2.18.1=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 - - pyzmq=25.1.1=py310h5bbb5d0_1 + - pyzmq=25.1.1=py310h795f18f_2 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.10.4=py310hcb5633a_0 + - rpds-py=0.13.1=py310hcb5633a_0 - rw=0.8=h516909a_1001 - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 - sagetex=3.6.1=pyhd8ed1ab_0 - send2trash=1.8.2=pyh41d4057_0 - - setuptools=63.4.3=py310hff52083_0 + - setuptools=68.2.2=pyhd8ed1ab_0 - simplegeneric=0.8.1=py_1 - singular=4.2.1.p3=h1ea75ed_2 - six=1.16.0=pyh6c4a22f_0 @@ -309,23 +308,25 @@ dependencies: - soupsieve=2.5=pyhd8ed1ab_1 - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_0 - sympow=2.023.6=hc6ab17c_3 - - tbb=2021.10.0=h00ab1b0_1 + - tbb=2021.10.0=h00ab1b0_2 - toml=0.10.2=pyhd8ed1ab_0 - tomli=2.0.1=pyhd8ed1ab_0 - tornado=6.3.3=py310h2372a71_1 - - traitlets=5.11.2=pyhd8ed1ab_0 - - trove-classifiers=2023.9.19=pyhd8ed1ab_0 + - traitlets=5.13.0=pyhd8ed1ab_0 + - trove-classifiers=2023.11.22=pyhd8ed1ab_0 - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 - typing_extensions=4.8.0=pyha770c72_0 - typing_utils=0.1.0=pyhd8ed1ab_0 - - tzlocal=5.1=py310hff52083_0 + - tzlocal=5.2=py310hff52083_0 - unicodedata2=15.1.0=py310h2372a71_0 - uri-template=1.3.0=pyhd8ed1ab_0 - vcversioner=2.16.0.0=py_1 + - wcwidth=0.2.12=pyhd8ed1ab_0 - webcolors=1.13=pyhd8ed1ab_0 - webencodings=0.5.1=pyhd8ed1ab_2 - websocket-client=1.6.4=pyhd8ed1ab_0 - - wheel=0.41.2=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 @@ -333,142 +334,137 @@ dependencies: - xorg-libxrender=0.9.11=hd590300_0 - xorg-libxt=1.3.0=hd590300_1 - zipp=3.17.0=pyhd8ed1ab_0 - - anyio=4.0.0=pyhd8ed1ab_0 - - asttokens=2.4.0=pyhd8ed1ab_0 + - anyio=4.1.0=pyhd8ed1ab_0 + - asttokens=2.4.1=pyhd8ed1ab_0 - async-lru=2.0.4=pyhd8ed1ab_0 - - babel=2.12.1=pyhd8ed1ab_1 - - backports.functools_lru_cache=1.6.5=pyhd8ed1ab_0 + - babel=2.13.1=pyhd8ed1ab_0 - beautifulsoup4=4.12.2=pyha770c72_0 - beniget=0.4.1=pyhd8ed1ab_0 - bleach=6.1.0=pyhd8ed1ab_0 - - boost-cpp=1.82.0=h44aadfe_6 + - boost-cpp=1.83.0=h44aadfe_0 - brial=1.2.12=pyh694c41f_1 - cached-property=1.5.2=hd8ed1ab_1 - - cairo=1.16.0=h0c91306_1017 - - cattrs=23.1.2=pyhd8ed1ab_0 + - cairo=1.18.0=h3faef2a_0 - cffi=1.16.0=py310h2fee648_0 - - cmake=3.27.6=hcfe8598_0 + - cmake=3.27.8=hcfe8598_0 - comm=0.1.4=pyhd8ed1ab_0 - cppy=1.2.1=pyhd8ed1ab_0 - - curl=8.3.0=hca28451_0 + - curl=8.4.0=hca28451_0 - cypari2=2.1.3=py310h14ed79e_2 - deprecation=2.1.0=pyh9f0ad1d_0 - - fonttools=4.43.1=py310h2372a71_0 + - fonttools=4.45.1=py310h2372a71_0 - fortran-compiler=1.6.0=heb67821_0 - - glib=2.78.0=hfc55251_0 + - glib=2.78.1=hfc55251_0 - importlib-metadata=6.8.0=pyha770c72_0 - - importlib_resources=6.1.0=pyhd8ed1ab_0 + - importlib_resources=6.1.1=pyhd8ed1ab_0 - jedi=0.19.1=pyhd8ed1ab_0 - jinja2=3.1.2=pyhd8ed1ab_1 - - jupyterlab_pygments=0.2.2=pyhd8ed1ab_0 - - libcblas=3.9.0=18_linux64_openblas + - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 + - libcblas=3.9.0=20_linux64_openblas - libclang=15.0.7=default_h7634d5b_3 - - libgd=2.3.3=he9388d3_8 - - liblapack=3.9.0=18_linux64_openblas + - 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.2=py310h5764c6d_2 + - 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.0.1=py310h29da1c1_1 - - pip=23.2.1=pyhd8ed1ab_0 + - pillow=10.1.0=py310h01dd4db_0 + - pip=23.3.1=pyhd8ed1ab_0 + - platformdirs=4.0.0=pyhd8ed1ab_0 - pplpy=0.8.7=py310h28f6eb6_0 - primecountpy=0.1.0=py310hd41b1e2_4 + - prompt-toolkit=3.0.24=pyha770c72_0 - pulseaudio-client=16.1=hb77b528_5 - pybind11=2.11.1=py310hd41b1e2_2 - pyproject-api=1.6.1=pyhd8ed1ab_0 - - pytest=7.4.2=pyhd8ed1ab_0 + - pytest=7.4.3=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - pytz-deprecation-shim=0.1.0.post0=py310hff52083_4 - - referencing=0.30.2=pyhd8ed1ab_0 + - referencing=0.31.0=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - sagemath-db-conway-polynomials=0.5.0=ha878542_1 - - sip=6.7.11=py310hc6cd4ac_1 + - sip=6.7.12=py310hc6cd4ac_0 - sympy=1.12=pypyh9d50eac_103 - - terminado=0.17.1=pyh41d4057_0 + - terminado=0.18.0=pyh0d859eb_0 - tinycss2=1.2.1=pyhd8ed1ab_0 - typing-extensions=4.8.0=hd8ed1ab_0 - - urllib3=2.0.6=pyhd8ed1ab_0 + - urllib3=2.1.0=pyhd8ed1ab_0 - xorg-libxi=1.7.10=h7f98852_0 - argon2-cffi-bindings=21.2.0=py310h2372a71_4 - arrow=1.3.0=pyhd8ed1ab_0 + - cattrs=23.2.2=pyhd8ed1ab_0 - dsdp=5.8=hd9d9efa_1203 - fflas-ffpack=2.4.3=h912ac81_2 - fqdn=1.5.1=pyhd8ed1ab_0 - git=2.42.0=pl5321h86e50cf_0 - gsl=2.7=he838d99_0 - - gstreamer=1.22.6=h98fc4e7_2 - - harfbuzz=8.2.1=h3d44ed6_0 + - gstreamer=1.22.7=h98fc4e7_0 + - harfbuzz=8.3.0=h3d44ed6_0 - hatchling=1.18.0=pyhd8ed1ab_0 - iml=1.0.5=hd75c201_1003 - - importlib-resources=6.1.0=pyhd8ed1ab_0 + - importlib-resources=6.1.1=pyhd8ed1ab_0 - importlib_metadata=6.8.0=hd8ed1ab_0 - - jsonschema-specifications=2023.7.1=pyhd8ed1ab_0 + - jsonschema-specifications=2023.11.1=pyhd8ed1ab_0 + - jupyter_core=5.5.0=py310hff52083_0 - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1 - - liblapacke=3.9.0=18_linux64_openblas - - lsprotocol=2023.0.0b1=pyhd8ed1ab_0 - - numpy=1.26.0=py310hb13e2d6_0 - - platformdirs=3.11.0=pyhd8ed1ab_0 + - liblapacke=3.9.0=20_linux64_openblas + - numpy=1.26.2=py310hb13e2d6_0 + - prompt_toolkit=3.0.24=hd8ed1ab_0 - pyqt5-sip=12.12.2=py310hc6cd4ac_5 - - pytest-xdist=3.3.1=pyhd8ed1ab_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=h9e50725_1 - - wcwidth=0.2.8=pyhd8ed1ab_0 + - virtualenv=20.24.7=pyhd8ed1ab_0 - xorg-libxtst=1.2.3=h7f98852_1002 - argon2-cffi=23.1.0=pyhd8ed1ab_0 - - blas-devel=3.9.0=18_linux64_openblas - - contourpy=1.1.1=py310hd41b1e2_1 + - blas-devel=3.9.0=20_linux64_openblas + - contourpy=1.2.0=py310hd41b1e2_0 - cvxopt=1.3.2=py310h14a12bf_1 - - fpylll=0.5.9=py310h0dadf69_1 + - fpylll=0.6.0=py310h7e26f94_1 - giac=1.9.0.21=h673759e_1 - - gst-plugins-base=1.22.6=h8e1006c_2 + - gst-plugins-base=1.22.7=h8e1006c_0 + - ipython=8.8.0=pyh41d4057_0 - isoduration=20.11.0=pyhd8ed1ab_0 - - jsonschema=4.19.1=pyhd8ed1ab_0 - - jupyter_core=5.3.2=py310hff52083_0 + - jsonschema=4.20.0=pyhd8ed1ab_0 + - jupyter_client=8.6.0=pyhd8ed1ab_0 - linbox=1.6.3=h9d78c56_7 - - openjdk=20.0.2=hfea2f88_1 + - lsprotocol=2023.0.0=pyhd8ed1ab_0 + - openjdk=21.0.1=haa376d0_0 - pango=1.50.14=ha41ecd1_2 - - pooch=1.7.0=pyhd8ed1ab_4 - - prompt-toolkit=3.0.39=pyha770c72_0 - pythran=0.14.0=py310hcb52e73_1 + - scipy=1.11.4=py310hb13e2d6_0 - setuptools_scm=8.0.4=hd8ed1ab_0 - - typeguard=3.0.2=pyhd8ed1ab_0 - - virtualenv=20.24.4=pyhd8ed1ab_0 - - blas=2.118=openblas + - tox=4.11.3=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.19.1=pyhd8ed1ab_0 - - jupyter_client=8.3.1=pyhd8ed1ab_0 - - matplotlib-base=3.8.0=py310h62c0568_1 + - jsonschema-with-format-nongpl=4.20.0=pyhd8ed1ab_0 + - matplotlib-base=3.8.2=py310h62c0568_0 - nbformat=5.9.2=pyhd8ed1ab_0 - - prompt_toolkit=3.0.39=hd8ed1ab_0 - - pygls=1.1.1=pyhd8ed1ab_0 - - qt-main=5.15.8=hc47bfe8_16 - - r-base=4.3.1=h639d9d3_5 - - scipy=1.10.1=py310ha4c1d20_3 - - tox=4.11.3=pyhd8ed1ab_0 - - ipython=8.16.1=pyh0d859eb_0 - - jupyter_events=0.7.0=pyhd8ed1ab_2 + - pygls=1.2.0=pyhd8ed1ab_0 + - qt-main=5.15.8=h82b777d_17 + - r-base=4.3.2=h93585b2_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 - - ipykernel=6.25.2=pyh2140261_0 - - matplotlib=3.8.0=py310hff52083_1 - - nbconvert-core=7.9.2=pyhd8ed1ab_0 - - jupyter_server=2.7.3=pyhd8ed1ab_1 - - nbconvert-pandoc=7.9.2=pyhd8ed1ab_0 + - matplotlib=3.8.2=py310hff52083_0 + - nbconvert-core=7.11.0=pyhd8ed1ab_0 + - jupyter_server=2.10.1=pyhd8ed1ab_0 + - nbconvert-pandoc=7.11.0=pyhd8ed1ab_0 - jupyter-lsp=2.2.0=pyhd8ed1ab_0 - - jupyterlab_server=2.25.0=pyhd8ed1ab_0 - - nbconvert=7.9.2=pyhd8ed1ab_0 + - jupyterlab_server=2.25.2=pyhd8ed1ab_0 + - nbconvert=7.11.0=pyhd8ed1ab_0 - notebook-shim=0.2.3=pyhd8ed1ab_0 - - jupyterlab=4.0.6=pyhd8ed1ab_0 - - notebook=7.0.4=pyhd8ed1ab_0 - - widgetsnbextension=3.6.6=pyhd8ed1ab_0 - - ipywidgets=7.8.0=pyhd8ed1ab_0 - - jupyter-jsmol=2022.1.0=pyhd8ed1ab_0 - - esbonio=0.16.1=pyhd8ed1ab_0 + - jupyterlab=4.0.9=pyhd8ed1ab_0 + - notebook=7.0.6=pyhd8ed1ab_0 + - esbonio=0.16.2=pyhd8ed1ab_0 - jupyter_sphinx=0.4.0=py310hff52083_1 - sphinx-basic-ng=1.0.0b2=pyhd8ed1ab_1 - furo=2023.9.10=pyhd8ed1ab_0 diff --git a/src/environment-dev-3.10-macos-arm.yml b/src/environment-dev-3.10-macos-arm64.yml similarity index 69% rename from src/environment-dev-3.10-macos-arm.yml rename to src/environment-dev-3.10-macos-arm64.yml index 5b3969d1f7c..a842d1d2639 100644 --- a/src/environment-dev-3.10-macos-arm.yml +++ b/src/environment-dev-3.10-macos-arm64.yml @@ -1,22 +1,21 @@ # Generated by conda-lock. # platform: osx-arm64 -# input_hash: b362654ed383132e9c4f565f904e91c2c8c20227991a8048b333c6ca61df13d6 +# input_hash: 1b894305985e14d9c09b90b4013afbde426e015256620bce53041a1a5dd759a7 channels: - conda-forge dependencies: - _r-mutex=1.0.1=anacondar_1 - - bc=1.07.1=h3422bc3_0 - - bzip2=1.0.8=h3422bc3_4 - - c-ares=1.20.1=h93a5062_0 - - ca-certificates=2023.7.22=hf0a4a13_0 + - bzip2=1.0.8=h93a5062_5 + - c-ares=1.22.1=h93a5062_0 + - ca-certificates=2023.11.17=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=hab24e00_0 + - font-ttf-ubuntu=0.83=h77eed37_1 - fribidi=1.0.10=h27ca646_0 - - gh=2.36.0=h75b854d_0 + - gh=2.39.1=h75b854d_0 - giflib=5.2.1=h1a8c8d9_3 - jpeg=9e=h1a8c8d9_3 - libatomic_ops=7.6.14=h1a8c8d9_0 @@ -33,13 +32,12 @@ dependencies: - libuv=1.46.0=hb547adb_0 - libwebp-base=1.2.4=h1a8c8d9_0 - libzlib=1.2.13=h53f4e23_5 - - llvm-openmp=17.0.2=h1c12783_0 + - llvm-openmp=17.0.5=hcd81f8e_0 - m4=1.4.18=h642e427_1001 - make=4.3=he57ea6c_1 - mathjax=3.2.2=hce30654_0 - metis=5.1.0=h13dd4ca_1007 - nauty=2.7.2=h3422bc3_0 - - ncurses=6.4=h7ea286d_0 - palp=2.20=h27ca646_0 - pandoc=3.1.3=hce30654_0 - pari-elldata=0.0.20161017=0 @@ -55,6 +53,7 @@ dependencies: - 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 - xorg-libxau=1.0.11=hb547adb_0 @@ -68,7 +67,7 @@ dependencies: - gengetopt=2.23=hbdafb3b_0 - gettext=0.21.1=h0186832_0 - gf2x=1.3.0=hdaa854c_2 - - gmp=6.2.1=h9f76cd9_0 + - gmp=6.3.0=h965bd2d_0 - graphite2=1.3.13=h9f76cd9_1001 - icu=70.1=h6b3803e_0 - isl=0.25=h9a09cb3_0 @@ -77,29 +76,25 @@ dependencies: - libbrotlidec=1.1.0=hb547adb_1 - libbrotlienc=1.1.0=hb547adb_1 - libcbor=0.10.2=hb7217d7_0 - - libedit=3.1.20191231=hc8eb9b7_2 - libgfortran5=13.2.0=hf226fd6_1 - libpng=1.6.39=h76d750c_0 - - libsqlite=3.43.0=hb31c410_0 + - libsqlite=3.44.2=h091b4b1_0 - libxcb=1.13=h9b22ae9_1004 - lrcalc=2.1=hb7217d7_5 + - ncurses=6.4=h463b476_2 - ninja=1.11.1=hffc8910_0 - - openjdk=20.0.2=hbe7ddab_2 - - openssl=3.1.3=h53f4e23_0 + - openjdk=21.0.1=hed44d8b_0 + - openssl=3.2.0=h0d3ecfb_0 - pari-seadata=0.0.20090618=0 - pcre2=10.40=hb34f9b4_0 - pixman=0.42.2=h13dd4ca_0 - primesieve=11.0=hb7217d7_0 - qhull=2020.2=hc021e02_2 - - readline=8.2=h92ec313_1 - symmetrica=3.0.1=hb7217d7_0 - tapi=1100.0.11=he4954df_0 - - tar=1.34=h7cb298e_1 - - tbb=2021.10.0=h1995070_1 - - texinfo=7.0=pl5321h9ea1dce_0 - threejs-sage=122=hd8ed1ab_2 - - tk=8.6.13=hb31c410_0 - - zeromq=4.3.4=hbdafb3b_1 + - 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 @@ -107,132 +102,150 @@ dependencies: - brotli-bin=1.1.0=hb547adb_1 - bwidget=1.9.14=hce30654_1 - cddlib=1!0.94m=h6d7a090_0 - - ecl=21.2.1=h8492d4d_2 - ecm=7.0.4=h47c7c1a_1002 - fonts-conda-ecosystem=1=0 - freetype=2.12.1=hadb7bae_2 - - gap-core=4.12.2=he8f4e70_3 - givaro=4.1.1=h0cdca34_3 - glpk=5.0=h6d7a090_0 - jmol=14.32.10=hce30654_0 - - krb5=1.20.1=h69eda48_0 - - libfido2=1.13.0=h19e3c78_0 + - libedit=3.1.20191231=hc8eb9b7_2 + - libfido2=1.14.0=h8d15234_0 - libgfortran=5.0.0=13_2_0_hd922786_1 - - libglib=2.78.0=h24e9cb9_0 + - libglib=2.78.1=hd9b11f9_0 - libhomfly=1.02r6=h27ca646_0 - - libnghttp2=1.52.0=hae82a92_0 + - libnghttp2=1.58.0=ha4dd798_0 - libssh2=1.11.0=h7a5bd25_0 - libtiff=4.5.0=h5dffbdd_2 - libxml2=2.10.3=h67585b2_4 - m4ri=20140914=h17b34a0_1005 - - mpfr=4.2.0=he09a6ba_0 + - mpfr=4.2.1=h9546428_0 - ntl=11.4.3=hbb3f309_1 - - pari=2.15.4=haeeeed7_2_pthread - primecount=7.6=hb6e4faa_0 - - python=3.10.12=h01493a6_0_cpython + - readline=8.2=h92ec313_1 - sigtool=0.1.3=h44b9a77_0 - - sqlite=3.43.0=h203b68d_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 + - libbrial=1.2.12=ha7f5006_1 + - libflint=2.9.0=h173eafc_ntl_100 + - libllvm16=16.0.1=h1e5164c_0 + - libopenblas=0.3.25=openmp_h6c19121_0 + - libwebp=1.2.4=h999c80f_1 + - m4rie=20150908=h17b34a0_1001 + - mpc=1.3.1=h91ba8db_0 + - mpfi=1.5.4=hbde5f5b_1001 + - 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_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 + - arb=2.23.0=he5401aa_0 - attrs=23.1.0=pyh71513ae_1 - backcall=0.2.0=pyh9f0ad1d_0 - - backports=1.0=pyhd8ed1ab_3 - - brotli=1.1.0=hb547adb_1 + - brial=1.2.12=pyh694c41f_1 - brotli-python=1.1.0=py310h1253130_1 - cached_property=1.5.2=pyha770c72_1 - - cachetools=5.3.1=pyhd8ed1ab_0 - - certifi=2023.7.22=pyhd8ed1ab_0 + - cachetools=5.3.2=pyhd8ed1ab_0 + - cairo=1.16.0=h73a0509_1014 + - certifi=2023.11.17=pyhd8ed1ab_0 - chardet=5.2.0=py310hbe9552e_1 - - charset-normalizer=3.3.0=pyhd8ed1ab_0 + - charset-normalizer=3.3.2=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_0 - cycler=0.12.1=pyhd8ed1ab_0 - cysignals=1.11.2=py310hfd3b3fe_3 - - cython=3.0.2=py310h1253130_2 + - cython=3.0.6=py310hd5a4765_0 - debugpy=1.8.0=py310h1253130_1 - decorator=5.1.1=pyhd8ed1ab_0 - defusedxml=0.7.1=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - docutils=0.20.1=py310hbe9552e_2 + - eclib=20230424=haeb5157_0 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 - - exceptiongroup=1.1.3=pyhd8ed1ab_0 + - exceptiongroup=1.2.0=pyhd8ed1ab_0 - execnet=2.0.2=pyhd8ed1ab_0 - - executing=1.2.0=pyhd8ed1ab_0 - - fftw=3.3.10=nompi_h3046061_108 - - filelock=3.12.4=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=h82840c6_0 + - fplll=5.4.5=hb7d509d_0 - gap-defaults=4.12.2=hce30654_3 - gast=0.5.4=pyhd8ed1ab_0 - - gfan=0.6.2=hec08f5c_1003 - - idna=3.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=1.1.7=pyhd8ed1ab_0 + - jupyterlab_widgets=3.0.9=pyhd8ed1ab_0 - kiwisolver=1.4.5=py310h38f39d4_1 - lcalc=2.0.5=hc94e8e6_1 - - lcms2=2.15=h481adae_0 - - libbrial=1.2.12=ha7f5006_1 + - ld64_osx-arm64=609=h297e91e_13 + - libblas=3.9.0=20_osxarm64_openblas + - libclang-cpp16=16.0.1=default_he7141eb_0 - libcurl=8.1.2=h912dcd9_0 - - libflint=2.9.0=h173eafc_ntl_100 - - libllvm15=15.0.7=h62b9111_1 - - libopenblas=0.3.24=openmp_hd76b1f2_0 - - libwebp=1.2.4=h999c80f_1 - - m4rie=20150908=h17b34a0_1001 + - libgd=2.3.3=h90fb8ed_4 + - llvm-tools=16.0.1=h1e5164c_0 - markupsafe=2.1.3=py310h2aa6e3c_1 - maxima=5.45.0=h6032a66_2 - - mistune=3.0.1=pyhd8ed1ab_0 - - mpc=1.3.1=h91ba8db_0 - - mpfi=1.5.4=hbde5f5b_1001 + - mistune=3.0.2=pyhd8ed1ab_0 - mpmath=1.3.0=pyhd8ed1ab_0 - munkres=1.1.4=pyh9f0ad1d_0 - - nest-asyncio=1.5.6=pyhd8ed1ab_0 - - networkx=2.8.8=pyhd8ed1ab_0 - - openjpeg=2.5.0=hbc2ba62_2 + - nest-asyncio=1.5.8=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 - pathspec=0.11.2=pyhd8ed1ab_0 - pickleshare=0.7.5=py_1003 - - pkg-config=0.29.2=hab62308_1008 + - pillow=9.4.0=py310h5a7539a_1 + - pkgconfig=1.5.5=pyhd8ed1ab_4 - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 - pluggy=1.3.0=pyhd8ed1ab_0 - ply=3.11=py_1 - - ppl=1.2=h8b147cf_1006 - - prometheus_client=0.17.1=pyhd8ed1ab_0 + - prometheus_client=0.19.0=pyhd8ed1ab_0 - psutil=5.9.5=py310h2aa6e3c_1 - 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.0=pyhd8ed1ab_0 + - pycodestyle=2.11.1=pyhd8ed1ab_0 - pycparser=2.21=pyhd8ed1ab_0 - - pygments=2.16.1=pyhd8ed1ab_0 + - pygments=2.17.2=pyhd8ed1ab_0 - pyparsing=3.1.1=pyhd8ed1ab_0 - - pyrsistent=0.19.3=py310h2aa6e3c_1 + - pyrsistent=0.20.0=py310hd125d64_0 - pysocks=1.7.1=pyha2e5f31_6 - pyspellchecker=0.7.2=pyhd8ed1ab_0 - - python-fastjsonschema=2.18.1=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 - - pyzmq=25.1.1=py310h30b7201_1 - - qd=2.3.22=hbec66e7_1004 + - pyzmq=25.1.1=py310h7e65269_2 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.10.4=py310hd442715_0 + - rpds-py=0.13.1=py310hd442715_0 - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 - sagetex=3.6.1=pyhd8ed1ab_0 - - setuptools=63.4.3=py310hbe9552e_0 + - setuptools=68.2.2=pyhd8ed1ab_0 - simplegeneric=0.8.1=py_1 + - singular=4.2.1.p3=h3b80c97_2 - six=1.16.0=pyh6c4a22f_0 - sniffio=1.3.0=pyhd8ed1ab_0 - snowballstemmer=2.2.0=pyhd8ed1ab_0 @@ -241,172 +254,150 @@ dependencies: - sympow=2.023.6=hb0babe8_3 - tomli=2.0.1=pyhd8ed1ab_0 - tornado=6.3.3=py310h2aa6e3c_1 - - traitlets=5.11.2=pyhd8ed1ab_0 - - trove-classifiers=2023.9.19=pyhd8ed1ab_0 + - traitlets=5.13.0=pyhd8ed1ab_0 + - trove-classifiers=2023.11.22=pyhd8ed1ab_0 - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 - typing_extensions=4.8.0=pyha770c72_0 - typing_utils=0.1.0=pyhd8ed1ab_0 - - tzlocal=5.1=py310hbe9552e_0 + - tzlocal=5.2=py310hbe9552e_0 - unicodedata2=15.1.0=py310h2aa6e3c_0 - uri-template=1.3.0=pyhd8ed1ab_0 - vcversioner=2.16.0.0=py_1 + - wcwidth=0.2.12=pyhd8ed1ab_0 - webcolors=1.13=pyhd8ed1ab_0 - webencodings=0.5.1=pyhd8ed1ab_2 - websocket-client=1.6.4=pyhd8ed1ab_0 - - wheel=0.41.2=pyhd8ed1ab_0 + - wheel=0.42.0=pyhd8ed1ab_0 + - widgetsnbextension=4.0.9=pyhd8ed1ab_0 - zipp=3.17.0=pyhd8ed1ab_0 - - anyio=4.0.0=pyhd8ed1ab_0 - - arb=2.23.0=he5401aa_0 - - asttokens=2.4.0=pyhd8ed1ab_0 + - anyio=4.1.0=pyhd8ed1ab_0 + - asttokens=2.4.1=pyhd8ed1ab_0 - async-lru=2.0.4=pyhd8ed1ab_0 - - babel=2.12.1=pyhd8ed1ab_1 - - backports.functools_lru_cache=1.6.5=pyhd8ed1ab_0 + - babel=2.13.1=pyhd8ed1ab_0 - beautifulsoup4=4.12.2=pyha770c72_0 - beniget=0.4.1=pyhd8ed1ab_0 - bleach=6.1.0=pyhd8ed1ab_0 - - brial=1.2.12=pyh694c41f_1 - cached-property=1.5.2=hd8ed1ab_1 - - cairo=1.16.0=h73a0509_1014 - - cattrs=23.1.2=pyhd8ed1ab_0 + - cctools_osx-arm64=973.0.1=h7a0f565_13 - cffi=1.16.0=py310hdcd7c05_0 + - clang-16=16.0.1=default_he7141eb_0 - 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 - - eclib=20230424=haeb5157_0 - - fonttools=4.43.1=py310hd125d64_0 - - fplll=5.4.4=h29209e0_0 - - gfortran_impl_osx-arm64=12.3.0=hbbb9e1e_1 - - gmpy2=2.1.2=py310h2e6cad2_1 + - fonttools=4.45.1=py310hd125d64_0 + - harfbuzz=6.0.0=hddbc195_0 - importlib-metadata=6.8.0=pyha770c72_0 - - importlib_resources=6.1.0=pyhd8ed1ab_0 + - importlib_resources=6.1.1=pyhd8ed1ab_0 - jedi=0.19.1=pyhd8ed1ab_0 - jinja2=3.1.2=pyhd8ed1ab_1 - - jupyterlab_pygments=0.2.2=pyhd8ed1ab_0 - - ld64_osx-arm64=609=hc4dc95b_14 - - libblas=3.9.0=18_osxarm64_openblas - - libclang-cpp15=15.0.7=default_h5dc8d65_3 - - libgd=2.3.3=h90fb8ed_4 - - llvm-tools=15.0.7=h62b9111_1 + - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 + - ld64=609=h634c8be_13 + - 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.2=py310h8e9501a_2 - - openblas=0.3.24=openmp_hce3e5ba_0 + - memory-allocator=0.1.3=py310h2aa6e3c_0 - overrides=7.4.0=pyhd8ed1ab_0 - pexpect=4.8.0=pyh1a96a4e_2 - - pillow=9.4.0=py310h5a7539a_1 - - pip=23.2.1=pyhd8ed1ab_0 - - pkgconfig=1.5.5=pyhd8ed1ab_4 + - pip=23.3.1=pyhd8ed1ab_0 + - platformdirs=4.0.0=pyhd8ed1ab_0 + - pplpy=0.8.7=py310h49c019d_0 - primecountpy=0.1.0=py310h38f39d4_4 + - prompt-toolkit=3.0.24=pyha770c72_0 - pybind11=2.11.1=py310h38f39d4_2 - pyobjc-core=10.0=py310hd07e440_0 - pyproject-api=1.6.1=pyhd8ed1ab_0 - - pytest=7.4.2=pyhd8ed1ab_0 + - pytest=7.4.3=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - pytz-deprecation-shim=0.1.0.post0=py310hbe9552e_4 - - referencing=0.30.2=pyhd8ed1ab_0 + - referencing=0.31.0=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - sagemath-db-conway-polynomials=0.5.0=h4653dfc_1 - - singular=4.2.1.p3=h3b80c97_2 - - terminado=0.17.1=pyhd1c38e8_0 + - sympy=1.12=pypyh9d50eac_103 + - terminado=0.18.0=pyh31c8845_0 - tinycss2=1.2.1=pyhd8ed1ab_0 - typing-extensions=4.8.0=hd8ed1ab_0 - - urllib3=2.0.6=pyhd8ed1ab_0 + - urllib3=2.1.0=pyhd8ed1ab_0 - argon2-cffi-bindings=21.2.0=py310h2aa6e3c_4 + - arpack=3.7.0=h58ebc17_2 - arrow=1.3.0=pyhd8ed1ab_0 - - cctools_osx-arm64=973.0.1=h2a25c60_14 - - clang-15=15.0.7=default_h5dc8d65_3 + - cattrs=23.2.2=pyhd8ed1ab_0 + - cctools=973.0.1=h4faf515_13 + - clang=16.0.1=h1e5164c_0 + - dsdp=5.8=h9397a75_1203 + - fflas-ffpack=2.4.3=h11f2abc_2 - fqdn=1.5.1=pyhd8ed1ab_0 - git=2.42.0=pl5321h46e2b6d_0 - - harfbuzz=6.0.0=hddbc195_0 + - gsl=2.7=h6e638da_0 - hatchling=1.18.0=pyhd8ed1ab_0 - - importlib-resources=6.1.0=pyhd8ed1ab_0 + - iml=1.0.5=hd52f0d1_1003 + - importlib-resources=6.1.1=pyhd8ed1ab_0 - importlib_metadata=6.8.0=hd8ed1ab_0 - - jsonschema-specifications=2023.7.1=pyhd8ed1ab_0 + - jsonschema-specifications=2023.11.1=pyhd8ed1ab_0 + - jupyter_core=5.5.0=py310hbe9552e_0 - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1 - - ld64=609=h89fa09d_14 - - libcblas=3.9.0=18_osxarm64_openblas - - liblapack=3.9.0=18_osxarm64_openblas - - lsprotocol=2023.0.0b1=pyhd8ed1ab_0 - - platformdirs=3.11.0=pyhd8ed1ab_0 - - pplpy=0.8.7=py310h49c019d_0 + - liblapacke=3.9.0=20_osxarm64_openblas + - numpy=1.26.2=py310h30ee222_0 + - pango=1.50.14=h6c112b8_0 + - prompt_toolkit=3.0.24=hd8ed1ab_0 - pyobjc-framework-cocoa=10.0=py310hd07e440_1 - - pytest-xdist=3.3.1=pyhd8ed1ab_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 - - sympy=1.12=pypyh9d50eac_103 - - wcwidth=0.2.8=pyhd8ed1ab_0 - - argon2-cffi=23.1.0=pyhd8ed1ab_0 - - arpack=3.7.0=h58ebc17_2 - - cctools=973.0.1=hd1ac623_14 - - clang=15.0.7=hce30654_3 - - dsdp=5.8=h9397a75_1203 - - fflas-ffpack=2.4.3=h11f2abc_2 - - gsl=2.7=h6e638da_0 - - iml=1.0.5=hd52f0d1_1003 - - isoduration=20.11.0=pyhd8ed1ab_0 - - jsonschema=4.19.1=pyhd8ed1ab_0 - - jupyter_core=5.3.2=py310hbe9552e_0 - - liblapacke=3.9.0=18_osxarm64_openblas - - numpy=1.26.0=py310he2cad68_0 - - pango=1.50.14=h6c112b8_0 - - pooch=1.7.0=pyhd8ed1ab_4 - - prompt-toolkit=3.0.39=pyha770c72_0 - - send2trash=1.8.2=pyhd1c38e8_0 - - setuptools_scm=8.0.4=hd8ed1ab_0 - suitesparse=5.10.1=h7cd81ec_1 - - typeguard=3.0.2=pyhd8ed1ab_0 - - virtualenv=20.24.4=pyhd8ed1ab_0 - - blas-devel=3.9.0=18_osxarm64_openblas - - clangxx=15.0.7=default_h610c423_3 - - contourpy=1.1.1=py310h38f39d4_1 + - virtualenv=20.24.7=pyhd8ed1ab_0 + - argon2-cffi=23.1.0=pyhd8ed1ab_0 + - blas-devel=3.9.0=20_osxarm64_openblas + - clangxx=16.0.1=default_ha0f6327_0 + - contourpy=1.2.0=py310hd137fd4_0 - cvxopt=1.3.2=py310hadc6ad6_1 - - fpylll=0.5.9=py310hce2b5f8_1 + - fpylll=0.6.0=py310hc79cb59_1 - giac=1.9.0.21=h1c96721_1 - igraph=0.9.10=hcec9b84_1 - - jsonschema-with-format-nongpl=4.19.1=pyhd8ed1ab_0 - - jupyter_client=8.3.1=pyhd8ed1ab_0 + - ipython=8.8.0=pyhd1c38e8_0 + - isoduration=20.11.0=pyhd8ed1ab_0 + - jsonschema=4.20.0=pyhd8ed1ab_0 + - jupyter_client=8.6.0=pyhd8ed1ab_0 - linbox=1.6.3=h549c411_7 - - nbformat=5.9.2=pyhd8ed1ab_0 - - prompt_toolkit=3.0.39=hd8ed1ab_0 - - pygls=1.1.1=pyhd8ed1ab_0 - - scipy=1.10.1=py310h0975f3d_3 + - lsprotocol=2023.0.0=pyhd8ed1ab_0 + - scipy=1.11.4=py310h2b794db_0 + - send2trash=1.8.2=pyhd1c38e8_0 + - setuptools_scm=8.0.4=hd8ed1ab_0 - tox=4.11.3=pyhd8ed1ab_0 - - blas=2.118=openblas - - compiler-rt_osx-arm64=15.0.7=hf8d1dfb_1 - - ipython=8.16.1=pyh31c8845_0 - - jupyter_events=0.7.0=pyhd8ed1ab_2 - - matplotlib-base=3.8.0=py310hd1c642d_1 - - nbclient=0.8.0=pyhd8ed1ab_0 + - blas=2.120=openblas + - compiler-rt_osx-arm64=16.0.1=h30b49de_0 + - 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.0=pyhd8ed1ab_0 - rw=0.9=h3422bc3_0 - - compiler-rt=15.0.7=hf8d1dfb_1 - - ipykernel=6.25.2=pyh1050b4e_0 - - matplotlib=3.8.0=py310hb6292c7_1 - - nbconvert-core=7.9.2=pyhd8ed1ab_0 - - clang_osx-arm64=15.0.7=h77e971b_3 - - jupyter_server=2.7.3=pyhd8ed1ab_1 - - nbconvert-pandoc=7.9.2=pyhd8ed1ab_0 - - c-compiler=1.6.0=hd291e01_0 - - clangxx_osx-arm64=15.0.7=h768a7fd_3 + - compiler-rt=16.0.1=h30b49de_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_osx-arm64=16.0.1=hdccda30_1 + - nbconvert-core=7.11.0=pyhd8ed1ab_0 + - clangxx_osx-arm64=16.0.1=h0c1d50e_1 - gfortran_osx-arm64=12.3.0=h57527a5_1 + - jupyter_server=2.10.1=pyhd8ed1ab_0 + - nbconvert-pandoc=7.11.0=pyhd8ed1ab_0 + - gfortran=12.3.0=h1ca8e4b_1 - jupyter-lsp=2.2.0=pyhd8ed1ab_0 - - jupyterlab_server=2.25.0=pyhd8ed1ab_0 - - nbconvert=7.9.2=pyhd8ed1ab_0 + - jupyterlab_server=2.25.2=pyhd8ed1ab_0 + - nbconvert=7.11.0=pyhd8ed1ab_0 - notebook-shim=0.2.3=pyhd8ed1ab_0 - - cxx-compiler=1.6.0=h1995070_0 - - gfortran=12.3.0=h1ca8e4b_1 - - jupyterlab=4.0.6=pyhd8ed1ab_0 - pythran=0.14.0=py310he53c7d2_1 - r-base=4.1.3=h9c4d319_6 - fortran-compiler=1.6.0=h5a50232_0 - - notebook=7.0.4=pyhd8ed1ab_0 + - jupyterlab=4.0.9=pyhd8ed1ab_0 - rpy2=3.5.11=py310r41hf1a086a_0 - - compilers=1.6.0=hce30654_0 - - widgetsnbextension=3.6.6=pyhd8ed1ab_0 - - ipywidgets=7.8.0=pyhd8ed1ab_0 - - jupyter-jsmol=2022.1.0=pyhd8ed1ab_0 + - notebook=7.0.6=pyhd8ed1ab_0 - esbonio=0.16.2=pyhd8ed1ab_0 - jupyter_sphinx=0.1.4=py_0 - sphinx-basic-ng=1.0.0b2=pyhd8ed1ab_1 diff --git a/src/environment-dev-3.10-macos.yml b/src/environment-dev-3.10-macos.yml index 560be46bc2e..3f307a087ad 100644 --- a/src/environment-dev-3.10-macos.yml +++ b/src/environment-dev-3.10-macos.yml @@ -1,25 +1,25 @@ # Generated by conda-lock. # platform: osx-64 -# input_hash: 05606a8745ed0cd143799bea5403a785dbd500c0246a8f542d32ce40d95c7a40 +# input_hash: 0ffa171322ce98977f9f4e681310b16ac55cadf4cf95ab33b85653a9b1765893 channels: - conda-forge dependencies: - _r-mutex=1.0.1=anacondar_1 - - bzip2=1.0.8=h0d85af4_4 - - c-ares=1.19.1=h0dc2134_0 - - ca-certificates=2023.7.22=h8857fd0_0 + - bzip2=1.0.8=h10d778d_5 + - c-ares=1.22.1=h10d778d_0 + - ca-certificates=2023.11.17=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=hab24e00_0 + - font-ttf-ubuntu=0.83=h77eed37_1 - fribidi=1.0.10=hbcb3906_0 - - gh=2.36.0=h990441c_0 + - gh=2.39.1=h990441c_0 - giflib=5.2.1=hb7f2c08_3 - icu=73.2=hf5e326d_0 - libatomic_ops=7.6.14=hb7f2c08_0 - - libboost-headers=1.82.0=h694c41f_6 + - libboost-headers=1.83.0=h694c41f_0 - libbrotlicommon=1.1.0=h0dc2134_1 - libcxx=16.0.6=hd57cbcb_0 - libdeflate=1.19=ha4e1b8e_0 @@ -34,13 +34,12 @@ dependencies: - libuv=1.46.0=h0c2f820_0 - libwebp-base=1.3.2=h0dc2134_0 - libzlib=1.2.13=h8a1eda9_5 - - llvm-openmp=17.0.2=hff08bdf_0 + - llvm-openmp=17.0.5=hb6ac08f_0 - m4=1.4.18=haf1e3a3_1001 - make=4.3=h22f3db7_1 - mathjax=3.2.2=h694c41f_0 - metis=5.1.0=he965462_1007 - nauty=2.7.2=h0d85af4_0 - - ncurses=6.4=hf0c8a7f_0 - palp=2.20=hbcb3906_0 - pari-elldata=0.0.20161017=0 - pari-galdata=0.0.20180411=0 @@ -56,6 +55,7 @@ dependencies: - sagemath-db-combinatorial-designs=20140630=1 - sagemath-db-graphs=20210214=hd8ed1ab_0 - sagemath-db-polytopes=20170220=1 + - tbb=2021.10.0=h1c7c39f_2 - three.js=122=hd8ed1ab_2 - tzdata=2023c=h71feb2d_0 - xorg-libxau=1.0.11=h0dc2134_0 @@ -69,7 +69,7 @@ dependencies: - gengetopt=2.23=he49afe7_0 - gettext=0.21.1=h8a4c099_0 - gf2x=1.3.0=hb2a7efb_2 - - gmp=6.2.1=h2e338ed_0 + - gmp=6.3.0=h93d8f39_0 - graphite2=1.3.13=h2e338ed_1001 - isl=0.25=hb486fe8_0 - lerc=4.0.0=hb486fe8_0 @@ -77,16 +77,16 @@ dependencies: - libbrotlidec=1.1.0=h0dc2134_1 - libbrotlienc=1.1.0=h0dc2134_1 - libcbor=0.10.2=hf0c8a7f_0 - - libedit=3.1.20191231=h0678c8f_2 - libgfortran5=13.2.0=h2873a65_1 - libpng=1.6.39=ha978bb4_0 - - libsqlite=3.43.0=h58db7d2_0 + - libsqlite=3.44.2=h92b6c6a_0 - libxcb=1.15=hb7f2c08_0 - - libxml2=2.11.5=h3346baf_1 + - libxml2=2.11.6=hc0ae0f7_0 - lrcalc=2.1=hf0c8a7f_5 + - ncurses=6.4=h93d8f39_2 - ninja=1.11.1=hb8565cd_0 - - openjdk=20.0.2=h7d26f99_2 - - openssl=3.1.3=h8a1eda9_0 + - openjdk=21.0.1=hf4d7fad_0 + - openssl=3.2.0=hd75f5a5_0 - pandoc=3.1.3=h9d075a6_0 - pari-seadata=0.0.20090618=0 - pcre2=10.40=h1c4e4bc_0 @@ -94,150 +94,165 @@ dependencies: - pkg-config=0.29.2=ha3d46e9_1008 - primesieve=11.0=hf0c8a7f_0 - qhull=2020.2=h940c156_2 - - readline=8.2=h9e318b2_1 - symmetrica=3.0.1=hf0c8a7f_0 - tapi=1100.0.11=h9ce4665_0 - - tbb=2021.10.0=h1c7c39f_1 - - texinfo=7.0=pl5321hc47821c_0 - threejs-sage=122=hd8ed1ab_2 - - tk=8.6.13=hef22860_0 - - zeromq=4.3.4=he49afe7_1 + - 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 - - ecl=21.2.1=hd029580_2 - ecm=7.0.4=h343d7f2_1002 - fonts-conda-ecosystem=1=0 - freetype=2.12.1=h60636b9_2 - - gap-core=4.12.2=hc16eb5f_3 - givaro=4.1.1=h0a799c6_3 - glpk=5.0=h3cb5acd_0 - jmol=14.32.9=h694c41f_0 - - krb5=1.21.2=hb884880_0 - - libboost=1.82.0=hf0c313a_6 - - libfido2=1.13.0=h14e1388_0 + - libboost=1.83.0=hf44e908_0 + - libedit=3.1.20191231=h0678c8f_2 + - libfido2=1.14.0=h3cbcf74_0 - libgfortran=5.0.0=13_2_0_h97931a8_1 - - libglib=2.78.0=hc62aa5d_0 + - libglib=2.78.1=h6d9ecee_0 - libhomfly=1.02r6=hc929b4f_0 - libllvm16=16.0.6=he4b1e75_2 - - libnghttp2=1.52.0=he2ab024_0 + - libnghttp2=1.58.0=h64cf6d3_0 - libssh2=1.11.0=hd019ec5_0 - libtiff=4.6.0=h684deea_2 - m4ri=20140914=h3f75d11_1005 - - mpfr=4.2.0=h4f9bd69_0 + - mpfr=4.2.1=h0c69b56_0 - ntl=11.4.3=h0ab3c2f_1 - - pari=2.15.4=h93f793c_2_pthread - primecount=7.6=ha894c9a_0 - - python=3.10.12=had23ca6_0_cpython + - readline=8.2=h9e318b2_1 - sigtool=0.1.3=h88f4db0_0 - - sqlite=3.43.0=h2b0dec6_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.15=hd6ba6f3_3 + - ld64_osx-64=609=ha20a434_15 + - libboost-devel=1.83.0=h7728843_0 + - libbrial=1.2.12=h8d08345_1 + - libclang-cpp16=16.0.6=default_h762fdd7_2 + - libflint=2.9.0=hfd2f71f_ntl_100 + - libopenblas=0.3.25=openmp_hfef2a42_0 + - libwebp=1.3.2=h44782d1_1 + - llvm-tools=16.0.6=he4b1e75_2 + - 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 + - qd=2.3.22=h2beb688_1004 + - sqlite=3.44.2=h7461747_0 - alabaster=0.7.13=pyhd8ed1ab_0 - appdirs=1.4.4=pyh9f0ad1d_0 - appnope=0.1.3=pyhd8ed1ab_0 + - arb=2.23.0=h905a977_0 - attrs=23.1.0=pyh71513ae_1 - backcall=0.2.0=pyh9f0ad1d_0 - - backports=1.0=pyhd8ed1ab_3 - - brotli=1.1.0=h0dc2134_1 + - boost-cpp=1.83.0=h07eb623_0 + - brial=1.2.12=pyh694c41f_1 - brotli-python=1.1.0=py310h9e9d8ca_1 - cached_property=1.5.2=pyha770c72_1 - - cachetools=5.3.1=pyhd8ed1ab_0 - - certifi=2023.7.22=pyhd8ed1ab_0 + - cachetools=5.3.2=pyhd8ed1ab_0 + - cairo=1.18.0=h99e66fa_0 + - cctools_osx-64=973.0.1=ha1c5b94_15 + - certifi=2023.11.17=pyhd8ed1ab_0 - chardet=5.2.0=py310h2ec42d9_1 - - charset-normalizer=3.3.0=pyhd8ed1ab_0 + - charset-normalizer=3.3.2=pyhd8ed1ab_0 + - clang-16=16.0.6=default_h762fdd7_2 - colorama=0.4.6=pyhd8ed1ab_0 - cycler=0.12.1=pyhd8ed1ab_0 - cysignals=1.11.2=py310h8c82e65_3 - - cython=3.0.2=py310h9e9d8ca_2 + - cython=3.0.6=py310had63691_0 - debugpy=1.8.0=py310h9e9d8ca_1 - decorator=5.1.1=pyhd8ed1ab_0 - defusedxml=0.7.1=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - docutils=0.20.1=py310h2ec42d9_2 + - eclib=20230424=hd00e801_0 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 - - exceptiongroup=1.1.3=pyhd8ed1ab_0 + - exceptiongroup=1.2.0=pyhd8ed1ab_0 - execnet=2.0.2=pyhd8ed1ab_0 - - executing=1.2.0=pyhd8ed1ab_0 - - fftw=3.3.10=nompi_h4fa670e_108 - - filelock=3.12.4=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=h5bb23bf_0 + - fplll=5.4.5=hb7981ad_0 - gap-defaults=4.12.2=h694c41f_3 - gast=0.5.4=pyhd8ed1ab_0 - - gfan=0.6.2=hd793b56_1003 - - idna=3.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=1.1.7=pyhd8ed1ab_0 + - jupyterlab_widgets=3.0.9=pyhd8ed1ab_0 - kiwisolver=1.4.5=py310h88cfcbd_1 - lcalc=2.0.5=h3a941db_1 - - lcms2=2.15=hd6ba6f3_3 - - ld64_osx-64=609=ha20a434_14 - - libboost-devel=1.82.0=h1c7c39f_6 - - libbrial=1.2.12=h8d08345_1 - - libclang-cpp16=16.0.6=default_h762fdd7_1 - - libcurl=8.3.0=h5f667d7_0 - - libflint=2.9.0=hfd2f71f_ntl_100 - - libopenblas=0.3.24=openmp_h48a4ad5_0 - - libwebp=1.3.2=h44782d1_1 - - llvm-tools=16.0.6=he4b1e75_2 - - m4rie=20150908=h3f75d11_1001 + - ld64=609=ha02d983_15 + - libblas=3.9.0=20_osx64_openblas + - libcurl=8.4.0=h726d00d_0 + - libgd=2.3.3=h0dceb68_9 - markupsafe=2.1.3=py310h6729b98_1 - maxima=5.45.0=hd029580_3 - - mistune=3.0.1=pyhd8ed1ab_0 - - mpc=1.3.1=h81bd1dd_0 - - mpfi=1.5.4=h52b28e3_1001 + - mistune=3.0.2=pyhd8ed1ab_0 - mpmath=1.3.0=pyhd8ed1ab_0 - munkres=1.1.4=pyh9f0ad1d_0 - - nest-asyncio=1.5.6=pyhd8ed1ab_0 - - networkx=2.8.8=pyhd8ed1ab_0 - - openjpeg=2.5.0=ha4da562_3 + - nest-asyncio=1.5.8=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 - pathspec=0.11.2=pyhd8ed1ab_0 - pickleshare=0.7.5=py_1003 + - pillow=10.1.0=py310he65384d_0 - pkgconfig=1.5.5=pyhd8ed1ab_4 - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 - pluggy=1.3.0=pyhd8ed1ab_0 - ply=3.11=py_1 - - ppl=1.2=ha60d53e_1006 - - prometheus_client=0.17.1=pyhd8ed1ab_0 + - prometheus_client=0.19.0=pyhd8ed1ab_0 - psutil=5.9.5=py310h6729b98_1 - 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.0=pyhd8ed1ab_0 + - pycodestyle=2.11.1=pyhd8ed1ab_0 - pycparser=2.21=pyhd8ed1ab_0 - - pygments=2.16.1=pyhd8ed1ab_0 + - pygments=2.17.2=pyhd8ed1ab_0 - pyparsing=3.1.1=pyhd8ed1ab_0 - - pyrsistent=0.19.3=py310h6729b98_1 + - pyrsistent=0.20.0=py310hb372a2b_0 - pysocks=1.7.1=pyha2e5f31_6 - pyspellchecker=0.7.2=pyhd8ed1ab_0 - - python-fastjsonschema=2.18.1=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 - - pyzmq=25.1.1=py310h998be00_1 - - qd=2.3.22=h2beb688_1004 + - pyzmq=25.1.1=py310hd8b4af3_2 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.10.4=py310h0e083fb_0 + - rpds-py=0.13.1=py310h0e083fb_0 - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 - sagetex=3.6.1=pyhd8ed1ab_0 - - setuptools=63.4.3=py310h2ec42d9_0 + - setuptools=68.2.2=pyhd8ed1ab_0 - simplegeneric=0.8.1=py_1 + - singular=4.2.1.p3=hac851df_2 - six=1.16.0=pyh6c4a22f_0 - sniffio=1.3.0=pyhd8ed1ab_0 - snowballstemmer=2.2.0=pyhd8ed1ab_0 @@ -246,164 +261,147 @@ dependencies: - sympow=2.023.6=h115ba6a_3 - tomli=2.0.1=pyhd8ed1ab_0 - tornado=6.3.3=py310h6729b98_1 - - traitlets=5.11.2=pyhd8ed1ab_0 - - trove-classifiers=2023.9.19=pyhd8ed1ab_0 + - traitlets=5.13.0=pyhd8ed1ab_0 + - trove-classifiers=2023.11.22=pyhd8ed1ab_0 - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 - typing_extensions=4.8.0=pyha770c72_0 - typing_utils=0.1.0=pyhd8ed1ab_0 - - tzlocal=5.1=py310h2ec42d9_0 + - tzlocal=5.2=py310h2ec42d9_0 - unicodedata2=15.1.0=py310h6729b98_0 - uri-template=1.3.0=pyhd8ed1ab_0 - vcversioner=2.16.0.0=py_1 + - wcwidth=0.2.12=pyhd8ed1ab_0 - webcolors=1.13=pyhd8ed1ab_0 - webencodings=0.5.1=pyhd8ed1ab_2 - websocket-client=1.6.4=pyhd8ed1ab_0 - - wheel=0.41.2=pyhd8ed1ab_0 + - wheel=0.42.0=pyhd8ed1ab_0 + - widgetsnbextension=4.0.9=pyhd8ed1ab_0 - zipp=3.17.0=pyhd8ed1ab_0 - - anyio=4.0.0=pyhd8ed1ab_0 - - arb=2.23.0=h905a977_0 - - asttokens=2.4.0=pyhd8ed1ab_0 + - anyio=4.1.0=pyhd8ed1ab_0 + - asttokens=2.4.1=pyhd8ed1ab_0 - async-lru=2.0.4=pyhd8ed1ab_0 - - babel=2.12.1=pyhd8ed1ab_1 - - backports.functools_lru_cache=1.6.5=pyhd8ed1ab_0 + - babel=2.13.1=pyhd8ed1ab_0 - beautifulsoup4=4.12.2=pyha770c72_0 - beniget=0.4.1=pyhd8ed1ab_0 - bleach=6.1.0=pyhd8ed1ab_0 - - boost-cpp=1.82.0=h07eb623_6 - - brial=1.2.12=pyh694c41f_1 - cached-property=1.5.2=hd8ed1ab_1 - - cairo=1.16.0=hfdb49f2_1017 - - cattrs=23.1.2=pyhd8ed1ab_0 - - cctools_osx-64=973.0.1=ha1c5b94_14 + - cctools=973.0.1=h40f6528_15 - cffi=1.16.0=py310hdca579f_0 - - clang-16=16.0.6=default_h762fdd7_1 - - cmake=3.27.6=hf40c264_0 + - clang=16.0.6=hc177806_2 + - cmake=3.27.8=hc7ee4c4_0 - comm=0.1.4=pyhd8ed1ab_0 - cppy=1.2.1=pyhd8ed1ab_0 - - curl=8.3.0=h5f667d7_0 + - curl=8.4.0=h726d00d_0 - cypari2=2.1.3=py310hb5d31c9_2 - deprecation=2.1.0=pyh9f0ad1d_0 - - eclib=20230424=hd00e801_0 - - fonttools=4.43.1=py310hb372a2b_0 - - fplll=5.4.4=hdfdc905_0 - - gfortran_impl_osx-64=12.3.0=h54fd467_1 - - gmpy2=2.1.2=py310hb691cb2_1 + - fonttools=4.45.1=py310hb372a2b_0 + - harfbuzz=8.3.0=hf45c392_0 - importlib-metadata=6.8.0=pyha770c72_0 - - importlib_resources=6.1.0=pyhd8ed1ab_0 + - importlib_resources=6.1.1=pyhd8ed1ab_0 - jedi=0.19.1=pyhd8ed1ab_0 - jinja2=3.1.2=pyhd8ed1ab_1 - - jupyterlab_pygments=0.2.2=pyhd8ed1ab_0 - - ld64=609=ha02d983_14 - - libblas=3.9.0=18_osx64_openblas - - libgd=2.3.3=h0dceb68_9 + - jupyterlab_pygments=0.3.0=pyhd8ed1ab_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.2=py310h90acd4f_2 - - openblas=0.3.24=openmp_hd7704e8_0 + - memory-allocator=0.1.3=py310h6729b98_0 - overrides=7.4.0=pyhd8ed1ab_0 - pexpect=4.8.0=pyh1a96a4e_2 - - pillow=10.0.1=py310hf317a87_2 - - pip=23.2.1=pyhd8ed1ab_0 + - pip=23.3.1=pyhd8ed1ab_0 + - platformdirs=4.0.0=pyhd8ed1ab_0 + - pplpy=0.8.7=py310h190f582_0 - primecountpy=0.1.0=py310h88cfcbd_4 + - prompt-toolkit=3.0.24=pyha770c72_0 - pybind11=2.11.1=py310h88cfcbd_2 - pyobjc-core=10.0=py310hef2d279_0 - pyproject-api=1.6.1=pyhd8ed1ab_0 - - pytest=7.4.2=pyhd8ed1ab_0 + - pytest=7.4.3=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - pytz-deprecation-shim=0.1.0.post0=py310h2ec42d9_4 - - referencing=0.30.2=pyhd8ed1ab_0 + - referencing=0.31.0=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - sagemath-db-conway-polynomials=0.5.0=h033912b_1 - - singular=4.2.1.p3=hac851df_2 - - terminado=0.17.1=pyhd1c38e8_0 + - sympy=1.12=pypyh9d50eac_103 + - terminado=0.18.0=pyh31c8845_0 - tinycss2=1.2.1=pyhd8ed1ab_0 - typing-extensions=4.8.0=hd8ed1ab_0 - - urllib3=2.0.6=pyhd8ed1ab_0 + - urllib3=2.1.0=pyhd8ed1ab_0 - argon2-cffi-bindings=21.2.0=py310h6729b98_4 - arrow=1.3.0=pyhd8ed1ab_0 - - cctools=973.0.1=h40f6528_14 - - clang=16.0.6=hc177806_1 + - cattrs=23.2.2=pyhd8ed1ab_0 + - clangxx=16.0.6=default_h762fdd7_2 + - dsdp=5.8=h6e329d1_1203 + - fflas-ffpack=2.4.3=h026fd7e_2 - fqdn=1.5.1=pyhd8ed1ab_0 - git=2.42.0=pl5321hbb4c4ee_0 - - harfbuzz=8.2.1=h7666e2a_0 + - gsl=2.7=h93259b0_0 - hatchling=1.18.0=pyhd8ed1ab_0 - - importlib-resources=6.1.0=pyhd8ed1ab_0 + - iml=1.0.5=h64b42ca_1003 + - importlib-resources=6.1.1=pyhd8ed1ab_0 - importlib_metadata=6.8.0=hd8ed1ab_0 - - jsonschema-specifications=2023.7.1=pyhd8ed1ab_0 + - jsonschema-specifications=2023.11.1=pyhd8ed1ab_0 + - jupyter_core=5.5.0=py310h2ec42d9_0 - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1 - - libcblas=3.9.0=18_osx64_openblas - - liblapack=3.9.0=18_osx64_openblas - - lsprotocol=2023.0.0b1=pyhd8ed1ab_0 - - platformdirs=3.11.0=pyhd8ed1ab_0 - - pplpy=0.8.7=py310h190f582_0 + - liblapacke=3.9.0=20_osx64_openblas + - numpy=1.26.2=py310h2a7ecf2_0 + - pango=1.50.14=h19c1c8a_2 + - prompt_toolkit=3.0.24=hd8ed1ab_0 - pyobjc-framework-cocoa=10.0=py310hef2d279_1 - - pytest-xdist=3.3.1=pyhd8ed1ab_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 - - sympy=1.12=pypyh9d50eac_103 - - wcwidth=0.2.8=pyhd8ed1ab_0 - - argon2-cffi=23.1.0=pyhd8ed1ab_0 - - clangxx=16.0.6=default_h762fdd7_1 - - dsdp=5.8=h6e329d1_1203 - - fflas-ffpack=2.4.3=h026fd7e_2 - - gsl=2.7=h93259b0_0 - - iml=1.0.5=h64b42ca_1003 - - isoduration=20.11.0=pyhd8ed1ab_0 - - jsonschema=4.19.1=pyhd8ed1ab_0 - - jupyter_core=5.3.2=py310h2ec42d9_0 - - liblapacke=3.9.0=18_osx64_openblas - - numpy=1.26.0=py310h0171094_0 - - pango=1.50.14=h19c1c8a_2 - - pooch=1.7.0=pyhd8ed1ab_4 - - prompt-toolkit=3.0.39=pyha770c72_0 - - send2trash=1.8.2=pyhd1c38e8_0 - - setuptools_scm=8.0.4=hd8ed1ab_0 - suitesparse=5.10.1=h7aff33d_1 - - typeguard=3.0.2=pyhd8ed1ab_0 - - virtualenv=20.24.4=pyhd8ed1ab_0 - - blas-devel=3.9.0=18_osx64_openblas - - compiler-rt_osx-64=16.0.6=he1888fc_0 - - contourpy=1.1.1=py310h88cfcbd_1 + - virtualenv=20.24.7=pyhd8ed1ab_0 + - argon2-cffi=23.1.0=pyhd8ed1ab_0 + - blas-devel=3.9.0=20_osx64_openblas + - compiler-rt_osx-64=16.0.6=he1888fc_1 + - contourpy=1.2.0=py310ha697434_0 - cvxopt=1.3.2=py310ha550498_1 - - fpylll=0.5.9=py310h0d1ef73_1 + - fpylll=0.6.0=py310h2acdeac_1 - giac=1.9.0.21=h92f3f65_1 - - jsonschema-with-format-nongpl=4.19.1=pyhd8ed1ab_0 - - jupyter_client=8.3.1=pyhd8ed1ab_0 + - ipython=8.8.0=pyhd1c38e8_0 + - isoduration=20.11.0=pyhd8ed1ab_0 + - jsonschema=4.20.0=pyhd8ed1ab_0 + - jupyter_client=8.6.0=pyhd8ed1ab_0 - linbox=1.6.3=hdde8d14_7 - - nbformat=5.9.2=pyhd8ed1ab_0 - - prompt_toolkit=3.0.39=hd8ed1ab_0 - - pygls=1.1.1=pyhd8ed1ab_0 - - scipy=1.10.1=py310h3900cf1_3 + - lsprotocol=2023.0.0=pyhd8ed1ab_0 + - scipy=1.11.4=py310h3f1db6d_0 + - send2trash=1.8.2=pyhd1c38e8_0 + - setuptools_scm=8.0.4=hd8ed1ab_0 - tox=4.11.3=pyhd8ed1ab_0 - - blas=2.118=openblas - - compiler-rt=16.0.6=he1888fc_0 - - ipython=8.16.1=pyh31c8845_0 - - jupyter_events=0.7.0=pyhd8ed1ab_2 - - matplotlib-base=3.8.0=py310hf92ae1b_1 + - blas=2.120=openblas + - compiler-rt=16.0.6=he1888fc_1 + - 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.0=pyhd8ed1ab_0 + - clang_impl_osx-64=16.0.6=h8787910_6 + - 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=16.0.6=h8787910_1 - - ipykernel=6.25.2=pyh1050b4e_0 - - matplotlib=3.8.0=py310h2ec42d9_1 - - nbconvert-core=7.9.2=pyhd8ed1ab_0 - - clangxx_osx-64=16.0.6=h1b7723c_1 + - clang_osx-64=16.0.6=hb91bd55_6 + - nbconvert-core=7.11.0=pyhd8ed1ab_0 + - clangxx_impl_osx-64=16.0.6=h1b7723c_6 - gfortran_osx-64=12.3.0=h18f7dce_1 - - jupyter_server=2.7.3=pyhd8ed1ab_1 - - nbconvert-pandoc=7.9.2=pyhd8ed1ab_0 + - jupyter_server=2.10.1=pyhd8ed1ab_0 + - nbconvert-pandoc=7.11.0=pyhd8ed1ab_0 + - clangxx_osx-64=16.0.6=h2fff7d5_6 - gfortran=12.3.0=h2c809b3_1 - jupyter-lsp=2.2.0=pyhd8ed1ab_0 - - jupyterlab_server=2.25.0=pyhd8ed1ab_0 - - nbconvert=7.9.2=pyhd8ed1ab_0 + - jupyterlab_server=2.25.2=pyhd8ed1ab_0 + - nbconvert=7.11.0=pyhd8ed1ab_0 - notebook-shim=0.2.3=pyhd8ed1ab_0 - - pythran=0.14.0=py310h92ebccd_1 - - r-base=4.3.1=h0ff45fa_6 - fortran-compiler=1.6.0=h932d759_0 - - jupyterlab=4.0.6=pyhd8ed1ab_0 + - jupyterlab=4.0.9=pyhd8ed1ab_0 + - pythran=0.14.0=py310h92ebccd_1 + - r-base=4.3.2=hf996cbc_0 + - notebook=7.0.6=pyhd8ed1ab_0 - rpy2=3.5.11=py310r43hf0b6da5_3 - - notebook=7.0.4=pyhd8ed1ab_0 - - widgetsnbextension=3.6.6=pyhd8ed1ab_0 - - ipywidgets=7.8.0=pyhd8ed1ab_0 - - jupyter-jsmol=2022.1.0=pyhd8ed1ab_0 - - esbonio=0.16.1=pyhd8ed1ab_0 + - esbonio=0.16.2=pyhd8ed1ab_0 - jupyter_sphinx=0.4.0=py310h2ec42d9_1 - sphinx-basic-ng=1.0.0b2=pyhd8ed1ab_1 - furo=2023.9.10=pyhd8ed1ab_0 diff --git a/src/environment-dev-3.11-linux-aarch.yml b/src/environment-dev-3.11-linux-aarch64.yml similarity index 72% rename from src/environment-dev-3.11-linux-aarch.yml rename to src/environment-dev-3.11-linux-aarch64.yml index 6c936d022c8..e452169fa81 100644 --- a/src/environment-dev-3.11-linux-aarch.yml +++ b/src/environment-dev-3.11-linux-aarch64.yml @@ -1,24 +1,24 @@ # Generated by conda-lock. # platform: linux-aarch64 -# input_hash: f9d03a57fe6c1e586872380a32337965394a1820f68ba9f4663d5b12e7510762 +# input_hash: cb9dcbbf96b535f887ef9640f9be87c230ed005797cf9f294c38dcb26d0ad0fa channels: - conda-forge dependencies: - _r-mutex=1.0.1=anacondar_1 - _sysroot_linux-aarch64_curr_repodata_hack=4=h57d6b7b_13 - - ca-certificates=2023.7.22=hcefe29a_0 + - ca-certificates=2023.11.17=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=hab24e00_0 - - gh=2.36.0=h652cbe9_0 + - font-ttf-ubuntu=0.83=h77eed37_1 + - gh=2.39.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_2 - - libgomp=13.2.0=hf8544c7_2 - - libstdcxx-devel_linux-aarch64=12.3.0=h8b5ab12_2 - - libstdcxx-ng=13.2.0=h9a76618_2 + - 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 - pari-elldata=0.0.20161017=0 @@ -40,20 +40,19 @@ dependencies: - 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_2 + - 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 - bdw-gc=8.0.6=hd62202e_0 - - bzip2=1.0.8=hf897c2e_4 - - c-ares=1.20.1=h31becfc_0 + - bzip2=1.0.8=h31becfc_5 + - c-ares=1.22.1=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.2.1=h7fd3ca4_0 + - gmp=6.3.0=h2f0025b_0 - graphite2=1.3.13=h7fd3ca4_1001 - icu=70.1=ha18d298_0 - jpeg=9e=h2a766a3_3 @@ -67,10 +66,10 @@ dependencies: - libev=4.33=h516909a_1 - libexpat=2.5.0=hd600fc2_1 - libffi=3.4.2=h3557bc0_5 - - libgfortran5=13.2.0=h582850c_2 + - libgfortran5=13.2.0=h582850c_3 - libiconv=1.17=h9cdd2b7_0 - - libnsl=2.0.0=h31becfc_1 - - libsanitizer=12.3.0=h8ebda82_2 + - libnsl=2.0.1=h31becfc_0 + - libsanitizer=12.3.0=h8ebda82_3 - libsodium=1.0.18=hb9de7d4_1 - libtool=2.4.7=h4de3ea5_0 - libuuid=2.38.1=hb4cce97_0 @@ -82,9 +81,9 @@ dependencies: - make=4.3=h309ac5b_1 - metis=5.1.0=h2f0025b_1007 - nauty=2.7.2=hf897c2e_0 - - ncurses=6.4=h2e1726e_0 + - ncurses=6.4=h0425590_2 - ninja=1.11.1=hdd96247_0 - - openssl=3.1.3=h31becfc_0 + - openssl=3.2.0=h31becfc_0 - palp=2.20=hb9de7d4_0 - patch=2.7.6=hf897c2e_1002 - pixman=0.42.2=h2f0025b_0 @@ -110,32 +109,31 @@ dependencies: - 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_2 + - gcc_impl_linux-aarch64=12.3.0=hcde2664_3 - 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_2 + - libgfortran-ng=13.2.0=he9431aa_3 - libhomfly=1.02r6=hb9de7d4_0 - - libnghttp2=1.52.0=h250e5c5_0 + - libnghttp2=1.58.0=hb0e430d_0 - libpng=1.6.39=hf9034f9_0 - - libsqlite=3.43.0=h194ca79_0 + - libsqlite=3.44.2=h194ca79_0 - libssh2=1.11.0=h492db2e_0 - libxcb=1.13=h3557bc0_1004 - libxml2=2.10.3=habe54e3_4 - - mpfr=4.2.0=h96f194b_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 - 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.4=h01db608_1 + - zeromq=4.3.5=h2f0025b_0 - zlib=1.2.13=h31becfc_5 - zstd=1.5.5=h4c53e97_0 - autoconf=2.71=pl5321h2148fe1_1 @@ -149,16 +147,16 @@ dependencies: - 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_2 - - gxx_impl_linux-aarch64=12.3.0=hcde2664_2 + - gfortran_impl_linux-aarch64=12.3.0=hb7244be_3 + - gxx_impl_linux-aarch64=12.3.0=hcde2664_3 - krb5=1.20.1=h113d92e_0 - libflint=2.9.0=hd3470fa_ntl_100 - - libglib=2.78.0=h0464669_0 + - libglib=2.78.1=h0464669_0 - libhwloc=2.9.1=h21e8147_0 - - libopenblas=0.3.23=pthreads_hd703e6f_0 + - libopenblas=0.3.25=pthreads_h5a5ec62_0 - libtiff=4.5.0=h4c1066a_2 - libudev1=254=h31becfc_0 - - llvm-openmp=17.0.2=h8b0cb96_0 + - llvm-openmp=17.0.5=h8b0cb96_0 - m4ri=20140914=h75e8696_1005 - mpc=1.3.1=hf4c8f4c_0 - mpfi=1.5.4=h846f343_1001 @@ -166,7 +164,7 @@ dependencies: - ppl=1.2=h984aac9_1006 - python=3.11.6=h43d1f9e_0_cpython - qd=2.3.22=h05efe27_1004 - - sqlite=3.43.0=h3b3482f_0 + - sqlite=3.44.2=h3b3482f_0 - tachyon=0.99b6=h63ab1d9_1001 - texinfo=7.0=pl5321h17f021e_0 - tktable=2.10=h4f9ca69_5 @@ -178,19 +176,18 @@ dependencies: - attrs=23.1.0=pyh71513ae_1 - automake=1.16.5=pl5321h8af1aa0_0 - backcall=0.2.0=pyh9f0ad1d_0 - - backports=1.0=pyhd8ed1ab_3 - 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.1=pyhd8ed1ab_0 - - certifi=2023.7.22=pyhd8ed1ab_0 + - cachetools=5.3.2=pyhd8ed1ab_0 + - certifi=2023.11.17=pyhd8ed1ab_0 - chardet=5.2.0=py311hfecb2dc_1 - - charset-normalizer=3.3.0=pyhd8ed1ab_0 + - charset-normalizer=3.3.2=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_0 - cycler=0.12.1=pyhd8ed1ab_0 - cysignals=1.11.2=py311h644d908_3 - - cython=3.0.2=py311h8715677_2 + - cython=3.0.6=py311h8715677_0 - debugpy=1.8.0=py311h8715677_1 - decorator=5.1.1=pyhd8ed1ab_0 - defusedxml=0.7.1=pyhd8ed1ab_0 @@ -199,45 +196,44 @@ dependencies: - eclib=20230424=h0bc7b0f_0 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 - - exceptiongroup=1.1.3=pyhd8ed1ab_0 + - exceptiongroup=1.2.0=pyhd8ed1ab_0 - execnet=2.0.2=pyhd8ed1ab_0 - - executing=1.2.0=pyhd8ed1ab_0 - - filelock=3.12.4=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.4=h5cd656c_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.4=pyhd8ed1ab_0 + - 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=py311hec3470c_3 - - jupyterlab_widgets=1.1.7=pyhd8ed1ab_0 + - jupyterlab_widgets=3.0.9=pyhd8ed1ab_0 - kiwisolver=1.4.5=py311h0d5d7b0_1 - lcalc=2.0.5=h3264cc0_1 - lcms2=2.15=h7576be9_0 - - libblas=3.9.0=17_linuxaarch64_openblas + - libblas=3.9.0=20_linuxaarch64_openblas - libbrial=1.2.12=h17533bf_1 - libcups=2.3.3=h4303303_3 - libcurl=8.1.2=hc34909b_0 - - libfido2=1.13.0=h73a623e_0 + - libfido2=1.14.0=heb3f89f_0 - libwebp=1.2.4=h7bdf6e5_1 - m4rie=20150908=h75e8696_1001 - markupsafe=2.1.3=py311hc8f2f60_1 - maxima=5.45.0=haa44c19_3 - - mistune=3.0.1=pyhd8ed1ab_0 + - mistune=3.0.2=pyhd8ed1ab_0 - mpmath=1.3.0=pyhd8ed1ab_0 - munkres=1.1.4=pyh9f0ad1d_0 - - nest-asyncio=1.5.6=pyhd8ed1ab_0 - - networkx=2.8.8=pyhd8ed1ab_0 - - openblas=0.3.23=pthreads_hef96516_0 + - nest-asyncio=1.5.8=pyhd8ed1ab_0 + - networkx=3.2.1=pyhd8ed1ab_0 + - openblas=0.3.25=pthreads_h339cbfa_0 - openjpeg=2.5.0=h9508984_2 - packaging=23.2=pyhd8ed1ab_0 - pandocfilters=1.5.0=pyhd8ed1ab_0 @@ -248,32 +244,32 @@ dependencies: - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 - pluggy=1.3.0=pyhd8ed1ab_0 - ply=3.11=py_1 - - prometheus_client=0.17.1=pyhd8ed1ab_0 + - prometheus_client=0.19.0=pyhd8ed1ab_0 - psutil=5.9.5=py311hcd402e7_1 - 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.0=pyhd8ed1ab_0 + - pycodestyle=2.11.1=pyhd8ed1ab_0 - pycparser=2.21=pyhd8ed1ab_0 - - pygments=2.16.1=pyhd8ed1ab_0 + - pygments=2.17.2=pyhd8ed1ab_0 - pyparsing=3.1.1=pyhd8ed1ab_0 - - pyrsistent=0.19.3=py311hc8f2f60_1 + - pyrsistent=0.20.0=py311hc8f2f60_0 - pysocks=1.7.1=pyha2e5f31_6 - pyspellchecker=0.7.2=pyhd8ed1ab_0 - - python-fastjsonschema=2.18.1=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 - - pyzmq=25.1.1=py311hc83961d_1 + - pyzmq=25.1.1=py311h0fdcd05_2 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.10.4=py311h32437ce_0 + - rpds-py=0.13.1=py311h32437ce_0 - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 - sagetex=3.6.1=pyhd8ed1ab_0 - send2trash=1.8.2=pyh41d4057_0 - - setuptools=59.8.0=py311hec3470c_1 + - setuptools=68.2.2=pyhd8ed1ab_0 - simplegeneric=0.8.1=py_1 - singular=4.2.1.p3=h3d4c4c6_2 - six=1.16.0=pyh6c4a22f_0 @@ -285,80 +281,81 @@ dependencies: - tbb=2021.9.0=h4c384f3_0 - tomli=2.0.1=pyhd8ed1ab_0 - tornado=6.3.3=py311hc8f2f60_1 - - traitlets=5.11.2=pyhd8ed1ab_0 - - trove-classifiers=2023.9.19=pyhd8ed1ab_0 + - traitlets=5.13.0=pyhd8ed1ab_0 + - trove-classifiers=2023.11.22=pyhd8ed1ab_0 - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 - typing_extensions=4.8.0=pyha770c72_0 - typing_utils=0.1.0=pyhd8ed1ab_0 - - tzlocal=5.1=py311hec3470c_0 + - tzlocal=5.2=py311hec3470c_0 - uri-template=1.3.0=pyhd8ed1ab_0 - vcversioner=2.16.0.0=py_1 + - wcwidth=0.2.12=pyhd8ed1ab_0 - webcolors=1.13=pyhd8ed1ab_0 - webencodings=0.5.1=pyhd8ed1ab_2 - websocket-client=1.6.4=pyhd8ed1ab_0 - - wheel=0.41.2=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 - zipp=3.17.0=pyhd8ed1ab_0 - - anyio=4.0.0=pyhd8ed1ab_0 - - asttokens=2.4.0=pyhd8ed1ab_0 + - anyio=4.1.0=pyhd8ed1ab_0 + - asttokens=2.4.1=pyhd8ed1ab_0 - async-lru=2.0.4=pyhd8ed1ab_0 - - babel=2.12.1=pyhd8ed1ab_1 - - backports.functools_lru_cache=1.6.5=pyhd8ed1ab_0 + - babel=2.13.1=pyhd8ed1ab_0 - beautifulsoup4=4.12.2=pyha770c72_0 - beniget=0.4.1=pyhd8ed1ab_0 - bleach=6.1.0=pyhd8ed1ab_0 - brial=1.2.12=pyh694c41f_1 - cached-property=1.5.2=hd8ed1ab_1 - cairo=1.16.0=hd19fb6e_1014 - - cattrs=23.1.2=pyhd8ed1ab_0 - 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 - - cxx-compiler=1.6.0=h2a328a1_0 - cypari2=2.1.3=py311h5ab95f0_2 - deprecation=2.1.0=pyh9f0ad1d_0 - - fonttools=4.43.1=py311hcd402e7_0 + - fonttools=4.45.1=py311hcd402e7_0 - fortran-compiler=1.6.0=h7048d53_0 - importlib-metadata=6.8.0=pyha770c72_0 - - importlib_resources=6.1.0=pyhd8ed1ab_0 + - importlib_resources=6.1.1=pyhd8ed1ab_0 - jedi=0.19.1=pyhd8ed1ab_0 - jinja2=3.1.2=pyhd8ed1ab_1 - - jupyterlab_pygments=0.2.2=pyhd8ed1ab_0 - - libcblas=3.9.0=17_linuxaarch64_openblas + - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 + - libcblas=3.9.0=20_linuxaarch64_openblas - libgd=2.3.3=h99c6b3b_4 - - liblapack=3.9.0=17_linuxaarch64_openblas + - liblapack=3.9.0=20_linuxaarch64_openblas - matplotlib-inline=0.1.6=pyhd8ed1ab_0 - - memory-allocator=0.1.2=py311hdfa8b44_2 + - 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.2.1=pyhd8ed1ab_0 + - pip=23.3.1=pyhd8ed1ab_0 + - platformdirs=4.0.0=pyhd8ed1ab_0 - pplpy=0.8.7=py311haefeb0b_0 - primecountpy=0.1.0=py311h098ece5_4 + - prompt-toolkit=3.0.24=pyha770c72_0 - pybind11=2.11.1=py311h098ece5_2 - pyproject-api=1.6.1=pyhd8ed1ab_0 - - pytest=7.4.2=pyhd8ed1ab_0 + - pytest=7.4.3=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - pytz-deprecation-shim=0.1.0.post0=py311hec3470c_4 - - referencing=0.30.2=pyhd8ed1ab_0 + - referencing=0.31.0=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - sagemath-db-conway-polynomials=0.5.0=h4fd8a4c_1 - sympy=1.12=pypyh9d50eac_103 - - terminado=0.17.1=pyh41d4057_0 + - terminado=0.18.0=pyh0d859eb_0 - tinycss2=1.2.1=pyhd8ed1ab_0 - typing-extensions=4.8.0=hd8ed1ab_0 - - urllib3=2.0.6=pyhd8ed1ab_0 + - urllib3=2.1.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 + - cattrs=23.2.2=pyhd8ed1ab_0 - dsdp=5.8=hb12102e_1203 - fflas-ffpack=2.4.3=hf104d39_2 - fqdn=1.5.1=pyhd8ed1ab_0 @@ -367,70 +364,64 @@ dependencies: - harfbuzz=6.0.0=hbcb8a4f_0 - hatchling=1.18.0=pyhd8ed1ab_0 - iml=1.0.5=h9076c59_1003 - - importlib-resources=6.1.0=pyhd8ed1ab_0 + - importlib-resources=6.1.1=pyhd8ed1ab_0 - importlib_metadata=6.8.0=hd8ed1ab_0 - - jsonschema-specifications=2023.7.1=pyhd8ed1ab_0 + - jsonschema-specifications=2023.11.1=pyhd8ed1ab_0 + - jupyter_core=5.5.0=py311hec3470c_0 - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1 - - liblapacke=3.9.0=17_linuxaarch64_openblas - - lsprotocol=2023.0.0b1=pyhd8ed1ab_0 - - numpy=1.26.0=py311h69ead2a_0 - - platformdirs=3.11.0=pyhd8ed1ab_0 - - pytest-xdist=3.3.1=pyhd8ed1ab_0 + - liblapacke=3.9.0=20_linuxaarch64_openblas + - numpy=1.26.2=py311h69ead2a_0 + - prompt_toolkit=3.0.24=hd8ed1ab_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 - - wcwidth=0.2.8=pyhd8ed1ab_0 + - virtualenv=20.24.7=pyhd8ed1ab_0 - xorg-libxtst=1.2.3=hf897c2e_1002 - argon2-cffi=23.1.0=pyhd8ed1ab_0 - - blas-devel=3.9.0=17_linuxaarch64_openblas - - contourpy=1.1.1=py311h098ece5_1 + - blas-devel=3.9.0=20_linuxaarch64_openblas + - contourpy=1.2.0=py311h098ece5_0 - cvxopt=1.3.2=py311hd9cfd3c_1 - - fpylll=0.5.9=py311h5d3d69a_1 + - fpylll=0.6.0=py311h5d3d69a_1 - giac=1.9.0.21=h04922a4_1 - igraph=0.9.10=hefb87a8_1 + - ipython=8.8.0=pyh41d4057_0 - isoduration=20.11.0=pyhd8ed1ab_0 - - jsonschema=4.19.1=pyhd8ed1ab_0 - - jupyter_core=5.3.2=py311hec3470c_0 + - jsonschema=4.20.0=pyhd8ed1ab_0 + - jupyter_client=8.6.0=pyhd8ed1ab_0 - linbox=1.6.3=h31716a8_7 + - lsprotocol=2023.0.0=pyhd8ed1ab_0 - openjdk=17.0.3=h1a274e0_5 - pango=1.50.14=h1f1e9b3_0 - - pooch=1.7.0=pyhd8ed1ab_4 - - prompt-toolkit=3.0.39=pyha770c72_0 - pythran=0.14.0=py311hec5c23b_1 + - scipy=1.11.3=py311h69ead2a_1 - setuptools_scm=8.0.4=hd8ed1ab_0 - - typeguard=3.0.2=pyhd8ed1ab_0 - - virtualenv=20.24.4=pyhd8ed1ab_0 - - blas=2.117=openblas + - tox=4.11.3=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.19.1=pyhd8ed1ab_0 - - jupyter_client=8.3.1=pyhd8ed1ab_0 - - matplotlib-base=3.8.0=py311h1f11223_1 + - jsonschema-with-format-nongpl=4.20.0=pyhd8ed1ab_0 + - matplotlib-base=3.8.2=py311h1f11223_0 - nbformat=5.9.2=pyhd8ed1ab_0 - - prompt_toolkit=3.0.39=hd8ed1ab_0 - - pygls=1.1.1=pyhd8ed1ab_0 + - pygls=1.2.0=pyhd8ed1ab_0 - r-base=4.2.3=h620ca72_0 - rw=0.9=hf897c2e_0 - - scipy=1.10.1=py311h69ead2a_3 - - tox=4.11.3=pyhd8ed1ab_0 - - ipython=8.16.1=pyh0d859eb_0 - - jupyter_events=0.7.0=pyhd8ed1ab_2 - - matplotlib=3.8.0=py311hfecb2dc_1 + - 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 - - ipykernel=6.25.2=pyh2140261_0 - - nbconvert-core=7.9.2=pyhd8ed1ab_0 - - jupyter_server=2.7.3=pyhd8ed1ab_1 - - nbconvert-pandoc=7.9.2=pyhd8ed1ab_0 + - nbconvert-core=7.11.0=pyhd8ed1ab_0 + - jupyter_server=2.10.1=pyhd8ed1ab_0 + - nbconvert-pandoc=7.11.0=pyhd8ed1ab_0 - jupyter-lsp=2.2.0=pyhd8ed1ab_0 - - jupyterlab_server=2.25.0=pyhd8ed1ab_0 - - nbconvert=7.9.2=pyhd8ed1ab_0 + - jupyterlab_server=2.25.2=pyhd8ed1ab_0 + - nbconvert=7.11.0=pyhd8ed1ab_0 - notebook-shim=0.2.3=pyhd8ed1ab_0 - - jupyterlab=4.0.6=pyhd8ed1ab_0 - - notebook=7.0.4=pyhd8ed1ab_0 - - widgetsnbextension=3.6.6=pyhd8ed1ab_0 - - ipywidgets=7.8.0=pyhd8ed1ab_0 - - jupyter-jsmol=2022.1.0=pyhd8ed1ab_0 + - jupyterlab=4.0.9=pyhd8ed1ab_0 + - notebook=7.0.6=pyhd8ed1ab_0 - esbonio=0.16.2=pyhd8ed1ab_0 - jupyter_sphinx=0.1.4=py_0 - sphinx-basic-ng=1.0.0b2=pyhd8ed1ab_1 diff --git a/src/environment-dev-3.11-linux.yml b/src/environment-dev-3.11-linux.yml index dbcefcf1ced..94f17940043 100644 --- a/src/environment-dev-3.11-linux.yml +++ b/src/environment-dev-3.11-linux.yml @@ -1,24 +1,24 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: baf91f69e96e1239daa16487ac8938b2f529aa66bfe4bfbd884854fe3cad7474 +# input_hash: 6b9fd63c60e60d6867ebfc1c01f68c8326c7ca175b348f3a69d78b7b052e75e0 channels: - conda-forge dependencies: - _libgcc_mutex=0.1=conda_forge - _r-mutex=1.0.1=anacondar_1 - - ca-certificates=2023.7.22=hbcca054_0 + - ca-certificates=2023.11.17=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=hab24e00_0 - - gh=2.36.0=ha8f183a_0 + - font-ttf-ubuntu=0.83=h77eed37_1 + - gh=2.39.1=ha8f183a_0 - kernel-headers_linux-64=2.6.32=he073ed8_16 - ld_impl_linux-64=2.40=h41732ed_0 - - libboost-headers=1.82.0=ha770c72_6 - - libgcc-devel_linux-64=12.3.0=h8bca6fd_2 - - libstdcxx-devel_linux-64=12.3.0=h8bca6fd_2 - - libstdcxx-ng=13.2.0=h7e041cc_2 + - libboost-headers=1.83.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 - pari-elldata=0.0.20161017=0 - pari-galdata=0.0.20180411=0 @@ -31,7 +31,7 @@ dependencies: - three.js=122=hd8ed1ab_2 - tzdata=2023c=h71feb2d_0 - fonts-conda-forge=1=0 - - libgomp=13.2.0=h807b86a_2 + - libgomp=13.2.0=h807b86a_3 - pari-seadata=0.0.20090618=0 - sysroot_linux-64=2.12=he073ed8_16 - threejs-sage=122=hd8ed1ab_2 @@ -40,19 +40,19 @@ dependencies: - 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_2 + - libgcc-ng=13.2.0=h807b86a_3 - alsa-lib=1.2.10=hd590300_0 - attr=2.5.1=h166bdaf_1 - bdw-gc=8.0.6=h4bd325d_0 - - bzip2=1.0.8=h7f98852_4 - - c-ares=1.19.1=hd590300_0 + - bzip2=1.0.8=hd590300_5 + - c-ares=1.22.1=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.2.1=h58526e2_0 + - gmp=6.3.0=h59595ed_0 - graphite2=1.3.13=h58526e2_1001 - icu=73.2=h59595ed_0 - keyutils=1.6.1=h166bdaf_0 @@ -66,13 +66,13 @@ dependencies: - libev=4.33=h516909a_1 - libexpat=2.5.0=hcb278e6_1 - libffi=3.4.2=h7f98852_5 - - libgfortran5=13.2.0=ha4646dd_2 + - libgfortran5=13.2.0=ha4646dd_3 - libiconv=1.17=h166bdaf_0 - - libjpeg-turbo=2.1.5.1=hd590300_1 - - libnsl=2.0.0=hd590300_1 + - 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_2 + - libsanitizer=12.3.0=h0f45ef3_3 - libsodium=1.0.18=h36c2ea0_1 - libtool=2.4.7=h27087fc_0 - libuuid=2.38.1=h0b41bf4_0 @@ -86,10 +86,10 @@ dependencies: - metis=5.1.0=h59595ed_1007 - mpg123=1.32.3=h59595ed_0 - nauty=2.7.2=h7f98852_0 - - ncurses=6.4=hcb278e6_0 + - ncurses=6.4=h59595ed_2 - ninja=1.11.1=h924138e_0 - nspr=4.35=h27087fc_0 - - openssl=3.1.3=hd590300_0 + - openssl=3.2.0=hd590300_0 - palp=2.20=h36c2ea0_0 - patch=2.7.6=h7f98852_1002 - pixman=0.42.2=h59595ed_0 @@ -116,7 +116,7 @@ dependencies: - 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_2 + - gcc_impl_linux-64=12.3.0=he2b93b0_3 - givaro=4.1.1=h192cbe9_1 - glpk=5.0=h445213a_0 - libbrotlidec=1.1.0=hd590300_1 @@ -125,27 +125,27 @@ dependencies: - libedit=3.1.20191231=he28a2e2_2 - libevent=2.1.12=hf998b51_1 - libflac=1.4.3=h59595ed_0 - - libgfortran-ng=13.2.0=h69a702a_2 + - libgfortran-ng=13.2.0=h69a702a_3 - libgpg-error=1.47=h71f35ed_0 - libhomfly=1.02r6=h36c2ea0_0 - - libnghttp2=1.52.0=h61bc06f_0 + - libnghttp2=1.58.0=h47da74e_0 - libpng=1.6.39=h753d276_0 - - libsqlite=3.43.0=h2797004_0 + - libsqlite=3.44.2=h2797004_0 - libssh2=1.11.0=h0841786_0 - libvorbis=1.3.7=h9c3ff4c_0 - libxcb=1.15=h0b41bf4_0 - - libxml2=2.11.5=h232c23b_1 - - mpfr=4.2.0=hb012696_0 - - mysql-common=8.0.33=hf1915f5_5 + - libxml2=2.11.6=h232c23b_0 + - mpfr=4.2.1=h9458935_0 + - mysql-common=8.0.33=hf1915f5_6 - ntl=11.4.3=hef3c4d3_1 - pcre2=10.40=hc3806b6_0 - perl=5.32.1=4_hd590300_perl5 - primecount=7.9=hcb278e6_0 - readline=8.2=h8228510_1 - - tk=8.6.13=h2797004_0 + - tk=8.6.13=noxft_h4845f30_101 - xorg-fixesproto=5.0=h7f98852_1002 - xorg-libsm=1.2.4=h7391055_0 - - zeromq=4.3.4=h9c3ff4c_1 + - zeromq=4.3.5=h59595ed_0 - zlib=1.2.13=hd590300_5 - zstd=1.5.5=hfc55251_0 - autoconf=2.71=pl5321h2b4cb7a_1 @@ -158,32 +158,32 @@ dependencies: - 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_2 - - gxx_impl_linux-64=12.3.0=he2b93b0_2 + - gfortran_impl_linux-64=12.3.0=hfcedea8_3 + - gxx_impl_linux-64=12.3.0=he2b93b0_3 - igraph=0.7.1=0 - krb5=1.21.2=h659d440_0 - - libboost=1.82.0=h6fcfa73_6 + - libboost=1.83.0=h6fcfa73_0 - libflint=2.9.0=h2f819a4_ntl_100 - - libgcrypt=1.10.1=h166bdaf_0 - - libglib=2.78.0=hebfc3b9_0 + - libgcrypt=1.10.2=hd590300_0 + - libglib=2.78.1=hebfc3b9_0 - libhwloc=2.9.3=default_h554bfaf_1009 - libllvm15=15.0.7=h5cf9203_3 - - libopenblas=0.3.24=pthreads_h413a1c8_0 + - libopenblas=0.3.25=pthreads_h413a1c8_0 - libsndfile=1.2.2=hc60ed4a_1 - - libtiff=4.6.0=h29866fb_1 + - libtiff=4.6.0=ha9c0a0a_2 - libudev1=254=h3f72095_0 - - llvm-openmp=17.0.2=h4dfa4b3_0 + - llvm-openmp=17.0.5=h4dfa4b3_0 - m4ri=20140914=h7ca028e_1005 - mpc=1.3.1=hfe3b2da_0 - mpfi=1.5.4=h9f54685_1001 - - mysql-libs=8.0.33=hca2cd23_5 + - mysql-libs=8.0.33=hca2cd23_6 - nss=3.94=h1d7d5a4_0 - pandoc=3.1.3=h32600fe_0 - pari=2.15.4=h4d4ae9b_2_pthread - ppl=1.2=h6ec01c2_1006 - python=3.11.6=hab00c5b_0_cpython - qd=2.3.22=h2cc385e_1004 - - sqlite=3.43.0=h2c6b66d_0 + - sqlite=3.44.2=h2c6b66d_0 - tachyon=0.99b6=0 - texinfo=7.0=pl5321h0f457ee_0 - tktable=2.10=h0c5db8f_5 @@ -191,7 +191,7 @@ dependencies: - 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.6=h8ee46fc_0 + - 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 @@ -199,19 +199,18 @@ dependencies: - attrs=23.1.0=pyh71513ae_1 - automake=1.16.5=pl5321ha770c72_0 - backcall=0.2.0=pyh9f0ad1d_0 - - backports=1.0=pyhd8ed1ab_3 - 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.1=pyhd8ed1ab_0 - - certifi=2023.7.22=pyhd8ed1ab_0 + - cachetools=5.3.2=pyhd8ed1ab_0 + - certifi=2023.11.17=pyhd8ed1ab_0 - chardet=5.2.0=py311h38be061_1 - - charset-normalizer=3.3.0=pyhd8ed1ab_0 + - charset-normalizer=3.3.2=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_0 - cycler=0.12.1=pyhd8ed1ab_0 - cysignals=1.11.2=py311h82528dc_3 - - cython=3.0.2=py311hb755f60_2 + - cython=3.0.6=py311hb755f60_0 - dbus=1.13.6=h5008d03_3 - debugpy=1.8.0=py311hb755f60_1 - decorator=5.1.1=pyhd8ed1ab_0 @@ -221,49 +220,49 @@ dependencies: - eclib=20230424=hdef1efb_0 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 - - exceptiongroup=1.1.3=pyhd8ed1ab_0 + - exceptiongroup=1.2.0=pyhd8ed1ab_0 - execnet=2.0.2=pyhd8ed1ab_0 - - executing=1.2.0=pyhd8ed1ab_0 - - filelock=3.12.4=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.4=h8780c30_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.0=hfc55251_0 + - glib-tools=2.78.1=hfc55251_0 - gmpy2=2.1.2=py311h6a5fa03_1 - gxx_linux-64=12.3.0=h8a814eb_2 - - idna=3.4=pyhd8ed1ab_0 + - 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=py311h38be061_3 - - jupyterlab_widgets=1.1.7=pyhd8ed1ab_0 + - jupyterlab_widgets=3.0.9=pyhd8ed1ab_0 - kiwisolver=1.4.5=py311h9547e67_1 - lcalc=2.0.5=h6a8a7c6_1 - - lcms2=2.15=h7f713cb_2 - - libblas=3.9.0=18_linux64_openblas - - libboost-devel=1.82.0=h00ab1b0_6 + - lcms2=2.15=hb7c19ff_3 + - libblas=3.9.0=20_linux64_openblas + - libboost-devel=1.83.0=h00ab1b0_0 - libbrial=1.2.12=h3155cbd_1 - libclang13=15.0.7=default_h9986a30_3 - libcups=2.3.3=h4637d8d_4 - - libcurl=8.3.0=hca28451_0 - - libfido2=1.13.0=h2e5b2a7_0 - - libpq=15.4=hfc447b1_2 + - libcurl=8.4.0=hca28451_0 + - libfido2=1.14.0=h4446dcb_0 + - libpq=16.1=hfc447b1_0 - libsystemd0=254=h3516f8a_0 - - libwebp=1.3.2=hdffd6e0_0 + - libwebp=1.3.2=h658648e_1 - m4rie=20150908=h7ca028e_1001 - markupsafe=2.1.3=py311h459d7ec_1 - maxima=5.45.0=h9d73b02_3 - - mistune=3.0.1=pyhd8ed1ab_0 + - mistune=3.0.2=pyhd8ed1ab_0 - mpmath=1.3.0=pyhd8ed1ab_0 - munkres=1.1.4=pyh9f0ad1d_0 - - nest-asyncio=1.5.6=pyhd8ed1ab_0 - - networkx=2.8.8=pyhd8ed1ab_0 - - openblas=0.3.24=pthreads_h7a3da1a_0 + - nest-asyncio=1.5.8=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 @@ -274,33 +273,33 @@ dependencies: - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 - pluggy=1.3.0=pyhd8ed1ab_0 - ply=3.11=py_1 - - prometheus_client=0.17.1=pyhd8ed1ab_0 + - prometheus_client=0.19.0=pyhd8ed1ab_0 - psutil=5.9.5=py311h459d7ec_1 - 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.0=pyhd8ed1ab_0 + - pycodestyle=2.11.1=pyhd8ed1ab_0 - pycparser=2.21=pyhd8ed1ab_0 - - pygments=2.16.1=pyhd8ed1ab_0 + - pygments=2.17.2=pyhd8ed1ab_0 - pyparsing=3.1.1=pyhd8ed1ab_0 - - pyrsistent=0.19.3=py311h459d7ec_1 + - pyrsistent=0.20.0=py311h459d7ec_0 - pysocks=1.7.1=pyha2e5f31_6 - pyspellchecker=0.7.2=pyhd8ed1ab_0 - - python-fastjsonschema=2.18.1=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 - - pyzmq=25.1.1=py311h75c88c4_1 + - pyzmq=25.1.1=py311h34ded2d_2 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.10.4=py311h46250e7_0 + - rpds-py=0.13.1=py311h46250e7_0 - rw=0.8=h516909a_1001 - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 - sagetex=3.6.1=pyhd8ed1ab_0 - send2trash=1.8.2=pyh41d4057_0 - - setuptools=59.8.0=py311h38be061_1 + - setuptools=68.2.2=pyhd8ed1ab_0 - simplegeneric=0.8.1=py_1 - singular=4.2.1.p3=h1ea75ed_2 - six=1.16.0=pyh6c4a22f_0 @@ -309,22 +308,24 @@ dependencies: - soupsieve=2.5=pyhd8ed1ab_1 - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_0 - sympow=2.023.6=hc6ab17c_3 - - tbb=2021.10.0=h00ab1b0_1 + - tbb=2021.10.0=h00ab1b0_2 - toml=0.10.2=pyhd8ed1ab_0 - tomli=2.0.1=pyhd8ed1ab_0 - tornado=6.3.3=py311h459d7ec_1 - - traitlets=5.11.2=pyhd8ed1ab_0 - - trove-classifiers=2023.9.19=pyhd8ed1ab_0 + - traitlets=5.13.0=pyhd8ed1ab_0 + - trove-classifiers=2023.11.22=pyhd8ed1ab_0 - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 - typing_extensions=4.8.0=pyha770c72_0 - typing_utils=0.1.0=pyhd8ed1ab_0 - - tzlocal=5.1=py311h38be061_0 + - tzlocal=5.2=py311h38be061_0 - uri-template=1.3.0=pyhd8ed1ab_0 - vcversioner=2.16.0.0=py_1 + - wcwidth=0.2.12=pyhd8ed1ab_0 - webcolors=1.13=pyhd8ed1ab_0 - webencodings=0.5.1=pyhd8ed1ab_2 - websocket-client=1.6.4=pyhd8ed1ab_0 - - wheel=0.41.2=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 @@ -332,142 +333,137 @@ dependencies: - xorg-libxrender=0.9.11=hd590300_0 - xorg-libxt=1.3.0=hd590300_1 - zipp=3.17.0=pyhd8ed1ab_0 - - anyio=4.0.0=pyhd8ed1ab_0 - - asttokens=2.4.0=pyhd8ed1ab_0 + - anyio=4.1.0=pyhd8ed1ab_0 + - asttokens=2.4.1=pyhd8ed1ab_0 - async-lru=2.0.4=pyhd8ed1ab_0 - - babel=2.12.1=pyhd8ed1ab_1 - - backports.functools_lru_cache=1.6.5=pyhd8ed1ab_0 + - babel=2.13.1=pyhd8ed1ab_0 - beautifulsoup4=4.12.2=pyha770c72_0 - beniget=0.4.1=pyhd8ed1ab_0 - bleach=6.1.0=pyhd8ed1ab_0 - - boost-cpp=1.82.0=h44aadfe_6 + - boost-cpp=1.83.0=h44aadfe_0 - brial=1.2.12=pyh694c41f_1 - cached-property=1.5.2=hd8ed1ab_1 - - cairo=1.16.0=h0c91306_1017 - - cattrs=23.1.2=pyhd8ed1ab_0 + - cairo=1.18.0=h3faef2a_0 - cffi=1.16.0=py311hb3a22ac_0 - - cmake=3.27.6=hcfe8598_0 + - cmake=3.27.8=hcfe8598_0 - comm=0.1.4=pyhd8ed1ab_0 - cppy=1.2.1=pyhd8ed1ab_0 - - curl=8.3.0=hca28451_0 + - curl=8.4.0=hca28451_0 - cypari2=2.1.3=py311hd2352ae_2 - deprecation=2.1.0=pyh9f0ad1d_0 - - fonttools=4.43.1=py311h459d7ec_0 + - fonttools=4.45.1=py311h459d7ec_0 - fortran-compiler=1.6.0=heb67821_0 - - glib=2.78.0=hfc55251_0 + - glib=2.78.1=hfc55251_0 - importlib-metadata=6.8.0=pyha770c72_0 - - importlib_resources=6.1.0=pyhd8ed1ab_0 + - importlib_resources=6.1.1=pyhd8ed1ab_0 - jedi=0.19.1=pyhd8ed1ab_0 - jinja2=3.1.2=pyhd8ed1ab_1 - - jupyterlab_pygments=0.2.2=pyhd8ed1ab_0 - - libcblas=3.9.0=18_linux64_openblas + - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 + - libcblas=3.9.0=20_linux64_openblas - libclang=15.0.7=default_h7634d5b_3 - - libgd=2.3.3=he9388d3_8 - - liblapack=3.9.0=18_linux64_openblas + - 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.2=py311hd4cff14_2 + - 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.0.1=py311h8aef010_1 - - pip=23.2.1=pyhd8ed1ab_0 + - pillow=10.1.0=py311ha6c5da5_0 + - pip=23.3.1=pyhd8ed1ab_0 + - platformdirs=4.0.0=pyhd8ed1ab_0 - pplpy=0.8.7=py311h85abca9_0 - primecountpy=0.1.0=py311h9547e67_4 + - prompt-toolkit=3.0.24=pyha770c72_0 - pulseaudio-client=16.1=hb77b528_5 - pybind11=2.11.1=py311h9547e67_2 - pyproject-api=1.6.1=pyhd8ed1ab_0 - - pytest=7.4.2=pyhd8ed1ab_0 + - pytest=7.4.3=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - pytz-deprecation-shim=0.1.0.post0=py311h38be061_4 - - referencing=0.30.2=pyhd8ed1ab_0 + - referencing=0.31.0=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - sagemath-db-conway-polynomials=0.5.0=ha878542_1 - - sip=6.7.11=py311hb755f60_1 + - sip=6.7.12=py311hb755f60_0 - sympy=1.12=pypyh9d50eac_103 - - terminado=0.17.1=pyh41d4057_0 + - terminado=0.18.0=pyh0d859eb_0 - tinycss2=1.2.1=pyhd8ed1ab_0 - typing-extensions=4.8.0=hd8ed1ab_0 - - urllib3=2.0.6=pyhd8ed1ab_0 + - urllib3=2.1.0=pyhd8ed1ab_0 - xorg-libxi=1.7.10=h7f98852_0 - argon2-cffi-bindings=21.2.0=py311h459d7ec_4 - arrow=1.3.0=pyhd8ed1ab_0 + - cattrs=23.2.2=pyhd8ed1ab_0 - dsdp=5.8=hd9d9efa_1203 - fflas-ffpack=2.4.3=h912ac81_2 - fqdn=1.5.1=pyhd8ed1ab_0 - git=2.42.0=pl5321h86e50cf_0 - gsl=2.7=he838d99_0 - - gstreamer=1.22.6=h98fc4e7_2 - - harfbuzz=8.2.1=h3d44ed6_0 + - gstreamer=1.22.7=h98fc4e7_0 + - harfbuzz=8.3.0=h3d44ed6_0 - hatchling=1.18.0=pyhd8ed1ab_0 - iml=1.0.5=hd75c201_1003 - - importlib-resources=6.1.0=pyhd8ed1ab_0 + - importlib-resources=6.1.1=pyhd8ed1ab_0 - importlib_metadata=6.8.0=hd8ed1ab_0 - - jsonschema-specifications=2023.7.1=pyhd8ed1ab_0 + - jsonschema-specifications=2023.11.1=pyhd8ed1ab_0 + - jupyter_core=5.5.0=py311h38be061_0 - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1 - - liblapacke=3.9.0=18_linux64_openblas - - lsprotocol=2023.0.0b1=pyhd8ed1ab_0 - - numpy=1.26.0=py311h64a7726_0 - - platformdirs=3.11.0=pyhd8ed1ab_0 + - liblapacke=3.9.0=20_linux64_openblas + - numpy=1.26.2=py311h64a7726_0 + - prompt_toolkit=3.0.24=hd8ed1ab_0 - pyqt5-sip=12.12.2=py311hb755f60_5 - - pytest-xdist=3.3.1=pyhd8ed1ab_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=h9e50725_1 - - wcwidth=0.2.8=pyhd8ed1ab_0 + - virtualenv=20.24.7=pyhd8ed1ab_0 - xorg-libxtst=1.2.3=h7f98852_1002 - argon2-cffi=23.1.0=pyhd8ed1ab_0 - - blas-devel=3.9.0=18_linux64_openblas - - contourpy=1.1.1=py311h9547e67_1 + - blas-devel=3.9.0=20_linux64_openblas + - contourpy=1.2.0=py311h9547e67_0 - cvxopt=1.3.2=py311h2b3fd1d_1 - - fpylll=0.5.9=py311hcfae7cf_1 + - fpylll=0.6.0=py311hcfae7cf_1 - giac=1.9.0.21=h673759e_1 - - gst-plugins-base=1.22.6=h8e1006c_2 + - gst-plugins-base=1.22.7=h8e1006c_0 + - ipython=8.8.0=pyh41d4057_0 - isoduration=20.11.0=pyhd8ed1ab_0 - - jsonschema=4.19.1=pyhd8ed1ab_0 - - jupyter_core=5.3.2=py311h38be061_0 + - jsonschema=4.20.0=pyhd8ed1ab_0 + - jupyter_client=8.6.0=pyhd8ed1ab_0 - linbox=1.6.3=h9d78c56_7 - - openjdk=20.0.2=hfea2f88_1 + - lsprotocol=2023.0.0=pyhd8ed1ab_0 + - openjdk=21.0.1=haa376d0_0 - pango=1.50.14=ha41ecd1_2 - - pooch=1.7.0=pyhd8ed1ab_4 - - prompt-toolkit=3.0.39=pyha770c72_0 - pythran=0.14.0=py311h92ebd52_1 + - scipy=1.11.4=py311h64a7726_0 - setuptools_scm=8.0.4=hd8ed1ab_0 - - typeguard=3.0.2=pyhd8ed1ab_0 - - virtualenv=20.24.4=pyhd8ed1ab_0 - - blas=2.118=openblas + - tox=4.11.3=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.19.1=pyhd8ed1ab_0 - - jupyter_client=8.3.1=pyhd8ed1ab_0 - - matplotlib-base=3.8.0=py311h54ef318_1 + - jsonschema-with-format-nongpl=4.20.0=pyhd8ed1ab_0 + - matplotlib-base=3.8.2=py311h54ef318_0 - nbformat=5.9.2=pyhd8ed1ab_0 - - prompt_toolkit=3.0.39=hd8ed1ab_0 - - pygls=1.1.1=pyhd8ed1ab_0 - - qt-main=5.15.8=hc47bfe8_16 - - r-base=4.3.1=h639d9d3_5 - - scipy=1.10.1=py311h64a7726_3 - - tox=4.11.3=pyhd8ed1ab_0 - - ipython=8.16.1=pyh0d859eb_0 - - jupyter_events=0.7.0=pyhd8ed1ab_2 + - pygls=1.2.0=pyhd8ed1ab_0 + - qt-main=5.15.8=h82b777d_17 + - r-base=4.3.2=h93585b2_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 - - ipykernel=6.25.2=pyh2140261_0 - - matplotlib=3.8.0=py311h38be061_1 - - nbconvert-core=7.9.2=pyhd8ed1ab_0 - - jupyter_server=2.7.3=pyhd8ed1ab_1 - - nbconvert-pandoc=7.9.2=pyhd8ed1ab_0 + - matplotlib=3.8.2=py311h38be061_0 + - nbconvert-core=7.11.0=pyhd8ed1ab_0 + - jupyter_server=2.10.1=pyhd8ed1ab_0 + - nbconvert-pandoc=7.11.0=pyhd8ed1ab_0 - jupyter-lsp=2.2.0=pyhd8ed1ab_0 - - jupyterlab_server=2.25.0=pyhd8ed1ab_0 - - nbconvert=7.9.2=pyhd8ed1ab_0 + - jupyterlab_server=2.25.2=pyhd8ed1ab_0 + - nbconvert=7.11.0=pyhd8ed1ab_0 - notebook-shim=0.2.3=pyhd8ed1ab_0 - - jupyterlab=4.0.6=pyhd8ed1ab_0 - - notebook=7.0.4=pyhd8ed1ab_0 - - widgetsnbextension=3.6.6=pyhd8ed1ab_0 - - ipywidgets=7.8.0=pyhd8ed1ab_0 - - jupyter-jsmol=2022.1.0=pyhd8ed1ab_0 - - esbonio=0.16.1=pyhd8ed1ab_0 + - jupyterlab=4.0.9=pyhd8ed1ab_0 + - notebook=7.0.6=pyhd8ed1ab_0 + - esbonio=0.16.2=pyhd8ed1ab_0 - jupyter_sphinx=0.4.0=py311h38be061_1 - sphinx-basic-ng=1.0.0b2=pyhd8ed1ab_1 - furo=2023.9.10=pyhd8ed1ab_0 diff --git a/src/environment-dev-3.11-macos-arm.yml b/src/environment-dev-3.11-macos-arm64.yml similarity index 69% rename from src/environment-dev-3.11-macos-arm.yml rename to src/environment-dev-3.11-macos-arm64.yml index 4bd63e066d6..2d2fa7961ba 100644 --- a/src/environment-dev-3.11-macos-arm.yml +++ b/src/environment-dev-3.11-macos-arm64.yml @@ -1,22 +1,21 @@ # Generated by conda-lock. # platform: osx-arm64 -# input_hash: 3a8b9b0ddaa006eb8b21927e2cda2949e0a41bb7e73b8fdc300ad9c145a4beac +# input_hash: d5dd608d06712023c5625bcddfc3d5e04e7caff8c54561eae65049445e8c6aa5 channels: - conda-forge dependencies: - _r-mutex=1.0.1=anacondar_1 - - bc=1.07.1=h3422bc3_0 - - bzip2=1.0.8=h3422bc3_4 - - c-ares=1.20.1=h93a5062_0 - - ca-certificates=2023.7.22=hf0a4a13_0 + - bzip2=1.0.8=h93a5062_5 + - c-ares=1.22.1=h93a5062_0 + - ca-certificates=2023.11.17=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=hab24e00_0 + - font-ttf-ubuntu=0.83=h77eed37_1 - fribidi=1.0.10=h27ca646_0 - - gh=2.36.0=h75b854d_0 + - gh=2.39.1=h75b854d_0 - giflib=5.2.1=h1a8c8d9_3 - jpeg=9e=h1a8c8d9_3 - libatomic_ops=7.6.14=h1a8c8d9_0 @@ -33,13 +32,12 @@ dependencies: - libuv=1.46.0=hb547adb_0 - libwebp-base=1.2.4=h1a8c8d9_0 - libzlib=1.2.13=h53f4e23_5 - - llvm-openmp=17.0.2=h1c12783_0 + - llvm-openmp=17.0.5=hcd81f8e_0 - m4=1.4.18=h642e427_1001 - make=4.3=he57ea6c_1 - mathjax=3.2.2=hce30654_0 - metis=5.1.0=h13dd4ca_1007 - nauty=2.7.2=h3422bc3_0 - - ncurses=6.4=h7ea286d_0 - palp=2.20=h27ca646_0 - pandoc=3.1.3=hce30654_0 - pari-elldata=0.0.20161017=0 @@ -55,6 +53,7 @@ dependencies: - 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 - xorg-libxau=1.0.11=hb547adb_0 @@ -68,7 +67,7 @@ dependencies: - gengetopt=2.23=hbdafb3b_0 - gettext=0.21.1=h0186832_0 - gf2x=1.3.0=hdaa854c_2 - - gmp=6.2.1=h9f76cd9_0 + - gmp=6.3.0=h965bd2d_0 - graphite2=1.3.13=h9f76cd9_1001 - icu=70.1=h6b3803e_0 - isl=0.25=h9a09cb3_0 @@ -77,29 +76,25 @@ dependencies: - libbrotlidec=1.1.0=hb547adb_1 - libbrotlienc=1.1.0=hb547adb_1 - libcbor=0.10.2=hb7217d7_0 - - libedit=3.1.20191231=hc8eb9b7_2 - libgfortran5=13.2.0=hf226fd6_1 - libpng=1.6.39=h76d750c_0 - - libsqlite=3.43.0=hb31c410_0 + - libsqlite=3.44.2=h091b4b1_0 - libxcb=1.13=h9b22ae9_1004 - lrcalc=2.1=hb7217d7_5 + - ncurses=6.4=h463b476_2 - ninja=1.11.1=hffc8910_0 - - openjdk=20.0.2=hbe7ddab_2 - - openssl=3.1.3=h53f4e23_0 + - openjdk=21.0.1=hed44d8b_0 + - openssl=3.2.0=h0d3ecfb_0 - pari-seadata=0.0.20090618=0 - pcre2=10.40=hb34f9b4_0 - pixman=0.42.2=h13dd4ca_0 - primesieve=11.0=hb7217d7_0 - qhull=2020.2=hc021e02_2 - - readline=8.2=h92ec313_1 - symmetrica=3.0.1=hb7217d7_0 - tapi=1100.0.11=he4954df_0 - - tar=1.34=h7cb298e_1 - - tbb=2021.10.0=h1995070_1 - - texinfo=7.0=pl5321h9ea1dce_0 - threejs-sage=122=hd8ed1ab_2 - - tk=8.6.13=hb31c410_0 - - zeromq=4.3.4=hbdafb3b_1 + - 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 @@ -107,132 +102,150 @@ dependencies: - brotli-bin=1.1.0=hb547adb_1 - bwidget=1.9.14=hce30654_1 - cddlib=1!0.94m=h6d7a090_0 - - ecl=21.2.1=h8492d4d_2 - ecm=7.0.4=h47c7c1a_1002 - fonts-conda-ecosystem=1=0 - freetype=2.12.1=hadb7bae_2 - - gap-core=4.12.2=he8f4e70_3 - givaro=4.1.1=h0cdca34_3 - glpk=5.0=h6d7a090_0 - jmol=14.32.10=hce30654_0 - - krb5=1.20.1=h69eda48_0 - - libfido2=1.13.0=h19e3c78_0 + - libedit=3.1.20191231=hc8eb9b7_2 + - libfido2=1.14.0=h8d15234_0 - libgfortran=5.0.0=13_2_0_hd922786_1 - - libglib=2.78.0=h24e9cb9_0 + - libglib=2.78.1=hd9b11f9_0 - libhomfly=1.02r6=h27ca646_0 - - libnghttp2=1.52.0=hae82a92_0 + - libnghttp2=1.58.0=ha4dd798_0 - libssh2=1.11.0=h7a5bd25_0 - libtiff=4.5.0=h5dffbdd_2 - libxml2=2.10.3=h67585b2_4 - m4ri=20140914=h17b34a0_1005 - - mpfr=4.2.0=he09a6ba_0 + - mpfr=4.2.1=h9546428_0 - ntl=11.4.3=hbb3f309_1 - - pari=2.15.4=haeeeed7_2_pthread - primecount=7.6=hb6e4faa_0 - - python=3.11.6=h47c9636_0_cpython + - readline=8.2=h92ec313_1 - sigtool=0.1.3=h44b9a77_0 - - sqlite=3.43.0=h203b68d_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 + - libbrial=1.2.12=ha7f5006_1 + - libflint=2.9.0=h173eafc_ntl_100 + - libllvm16=16.0.1=h1e5164c_0 + - libopenblas=0.3.25=openmp_h6c19121_0 + - libwebp=1.2.4=h999c80f_1 + - m4rie=20150908=h17b34a0_1001 + - mpc=1.3.1=h91ba8db_0 + - mpfi=1.5.4=hbde5f5b_1001 + - 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.6=h47c9636_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 + - arb=2.23.0=he5401aa_0 - attrs=23.1.0=pyh71513ae_1 - backcall=0.2.0=pyh9f0ad1d_0 - - backports=1.0=pyhd8ed1ab_3 - - brotli=1.1.0=hb547adb_1 + - brial=1.2.12=pyh694c41f_1 - brotli-python=1.1.0=py311ha891d26_1 - cached_property=1.5.2=pyha770c72_1 - - cachetools=5.3.1=pyhd8ed1ab_0 - - certifi=2023.7.22=pyhd8ed1ab_0 + - cachetools=5.3.2=pyhd8ed1ab_0 + - cairo=1.16.0=h73a0509_1014 + - certifi=2023.11.17=pyhd8ed1ab_0 - chardet=5.2.0=py311h267d04e_1 - - charset-normalizer=3.3.0=pyhd8ed1ab_0 + - charset-normalizer=3.3.2=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_0 - cycler=0.12.1=pyhd8ed1ab_0 - cysignals=1.11.2=py311he42fc87_3 - - cython=3.0.2=py311ha891d26_2 + - cython=3.0.6=py311hbaf5611_0 - debugpy=1.8.0=py311ha891d26_1 - decorator=5.1.1=pyhd8ed1ab_0 - defusedxml=0.7.1=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - docutils=0.20.1=py311h267d04e_2 + - eclib=20230424=haeb5157_0 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 - - exceptiongroup=1.1.3=pyhd8ed1ab_0 + - exceptiongroup=1.2.0=pyhd8ed1ab_0 - execnet=2.0.2=pyhd8ed1ab_0 - - executing=1.2.0=pyhd8ed1ab_0 - - fftw=3.3.10=nompi_h3046061_108 - - filelock=3.12.4=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=h82840c6_0 + - fplll=5.4.5=hb7d509d_0 - gap-defaults=4.12.2=hce30654_3 - gast=0.5.4=pyhd8ed1ab_0 - - gfan=0.6.2=hec08f5c_1003 - - idna=3.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=1.1.7=pyhd8ed1ab_0 + - jupyterlab_widgets=3.0.9=pyhd8ed1ab_0 - kiwisolver=1.4.5=py311he4fd1f5_1 - lcalc=2.0.5=hc94e8e6_1 - - lcms2=2.15=h481adae_0 - - libbrial=1.2.12=ha7f5006_1 + - ld64_osx-arm64=609=h297e91e_13 + - libblas=3.9.0=20_osxarm64_openblas + - libclang-cpp16=16.0.1=default_he7141eb_0 - libcurl=8.1.2=h912dcd9_0 - - libflint=2.9.0=h173eafc_ntl_100 - - libllvm15=15.0.7=h62b9111_1 - - libopenblas=0.3.24=openmp_hd76b1f2_0 - - libwebp=1.2.4=h999c80f_1 - - m4rie=20150908=h17b34a0_1001 + - libgd=2.3.3=h90fb8ed_4 + - llvm-tools=16.0.1=h1e5164c_0 - markupsafe=2.1.3=py311heffc1b2_1 - maxima=5.45.0=h6032a66_2 - - mistune=3.0.1=pyhd8ed1ab_0 - - mpc=1.3.1=h91ba8db_0 - - mpfi=1.5.4=hbde5f5b_1001 + - mistune=3.0.2=pyhd8ed1ab_0 - mpmath=1.3.0=pyhd8ed1ab_0 - munkres=1.1.4=pyh9f0ad1d_0 - - nest-asyncio=1.5.6=pyhd8ed1ab_0 - - networkx=2.8.8=pyhd8ed1ab_0 - - openjpeg=2.5.0=hbc2ba62_2 + - nest-asyncio=1.5.8=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 - pathspec=0.11.2=pyhd8ed1ab_0 - pickleshare=0.7.5=py_1003 - - pkg-config=0.29.2=hab62308_1008 + - pillow=9.4.0=py311h627eb56_1 + - pkgconfig=1.5.5=pyhd8ed1ab_4 - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 - pluggy=1.3.0=pyhd8ed1ab_0 - ply=3.11=py_1 - - ppl=1.2=h8b147cf_1006 - - prometheus_client=0.17.1=pyhd8ed1ab_0 + - prometheus_client=0.19.0=pyhd8ed1ab_0 - psutil=5.9.5=py311heffc1b2_1 - 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.0=pyhd8ed1ab_0 + - pycodestyle=2.11.1=pyhd8ed1ab_0 - pycparser=2.21=pyhd8ed1ab_0 - - pygments=2.16.1=pyhd8ed1ab_0 + - pygments=2.17.2=pyhd8ed1ab_0 - pyparsing=3.1.1=pyhd8ed1ab_0 - - pyrsistent=0.19.3=py311heffc1b2_1 + - pyrsistent=0.20.0=py311h05b510d_0 - pysocks=1.7.1=pyha2e5f31_6 - pyspellchecker=0.7.2=pyhd8ed1ab_0 - - python-fastjsonschema=2.18.1=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 - - pyzmq=25.1.1=py311hb1af645_1 - - qd=2.3.22=hbec66e7_1004 + - pyzmq=25.1.1=py311he9c0408_2 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.10.4=py311h94f323b_0 + - rpds-py=0.13.1=py311h94f323b_0 - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 - sagetex=3.6.1=pyhd8ed1ab_0 - - setuptools=59.8.0=py311h267d04e_1 + - setuptools=68.2.2=pyhd8ed1ab_0 - simplegeneric=0.8.1=py_1 + - singular=4.2.1.p3=h3b80c97_2 - six=1.16.0=pyh6c4a22f_0 - sniffio=1.3.0=pyhd8ed1ab_0 - snowballstemmer=2.2.0=pyhd8ed1ab_0 @@ -241,171 +254,149 @@ dependencies: - sympow=2.023.6=hb0babe8_3 - tomli=2.0.1=pyhd8ed1ab_0 - tornado=6.3.3=py311heffc1b2_1 - - traitlets=5.11.2=pyhd8ed1ab_0 - - trove-classifiers=2023.9.19=pyhd8ed1ab_0 + - traitlets=5.13.0=pyhd8ed1ab_0 + - trove-classifiers=2023.11.22=pyhd8ed1ab_0 - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 - typing_extensions=4.8.0=pyha770c72_0 - typing_utils=0.1.0=pyhd8ed1ab_0 - - tzlocal=5.1=py311h267d04e_0 + - tzlocal=5.2=py311h267d04e_0 - uri-template=1.3.0=pyhd8ed1ab_0 - vcversioner=2.16.0.0=py_1 + - wcwidth=0.2.12=pyhd8ed1ab_0 - webcolors=1.13=pyhd8ed1ab_0 - webencodings=0.5.1=pyhd8ed1ab_2 - websocket-client=1.6.4=pyhd8ed1ab_0 - - wheel=0.41.2=pyhd8ed1ab_0 + - wheel=0.42.0=pyhd8ed1ab_0 + - widgetsnbextension=4.0.9=pyhd8ed1ab_0 - zipp=3.17.0=pyhd8ed1ab_0 - - anyio=4.0.0=pyhd8ed1ab_0 - - arb=2.23.0=he5401aa_0 - - asttokens=2.4.0=pyhd8ed1ab_0 + - anyio=4.1.0=pyhd8ed1ab_0 + - asttokens=2.4.1=pyhd8ed1ab_0 - async-lru=2.0.4=pyhd8ed1ab_0 - - babel=2.12.1=pyhd8ed1ab_1 - - backports.functools_lru_cache=1.6.5=pyhd8ed1ab_0 + - babel=2.13.1=pyhd8ed1ab_0 - beautifulsoup4=4.12.2=pyha770c72_0 - beniget=0.4.1=pyhd8ed1ab_0 - bleach=6.1.0=pyhd8ed1ab_0 - - brial=1.2.12=pyh694c41f_1 - cached-property=1.5.2=hd8ed1ab_1 - - cairo=1.16.0=h73a0509_1014 - - cattrs=23.1.2=pyhd8ed1ab_0 + - cctools_osx-arm64=973.0.1=h7a0f565_13 - cffi=1.16.0=py311h4a08483_0 + - clang-16=16.0.1=default_he7141eb_0 - 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 - - eclib=20230424=haeb5157_0 - - fonttools=4.43.1=py311h05b510d_0 - - fplll=5.4.4=h29209e0_0 - - gfortran_impl_osx-arm64=12.3.0=hbbb9e1e_1 - - gmpy2=2.1.2=py311h2ba9262_1 + - fonttools=4.45.1=py311h05b510d_0 + - harfbuzz=6.0.0=hddbc195_0 - importlib-metadata=6.8.0=pyha770c72_0 - - importlib_resources=6.1.0=pyhd8ed1ab_0 + - importlib_resources=6.1.1=pyhd8ed1ab_0 - jedi=0.19.1=pyhd8ed1ab_0 - jinja2=3.1.2=pyhd8ed1ab_1 - - jupyterlab_pygments=0.2.2=pyhd8ed1ab_0 - - ld64_osx-arm64=609=hc4dc95b_14 - - libblas=3.9.0=18_osxarm64_openblas - - libclang-cpp15=15.0.7=default_h5dc8d65_3 - - libgd=2.3.3=h90fb8ed_4 - - llvm-tools=15.0.7=h62b9111_1 + - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 + - ld64=609=h634c8be_13 + - 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.2=py311he2be06e_2 - - openblas=0.3.24=openmp_hce3e5ba_0 + - memory-allocator=0.1.3=py311heffc1b2_0 - overrides=7.4.0=pyhd8ed1ab_0 - pexpect=4.8.0=pyh1a96a4e_2 - - pillow=9.4.0=py311h627eb56_1 - - pip=23.2.1=pyhd8ed1ab_0 - - pkgconfig=1.5.5=pyhd8ed1ab_4 + - pip=23.3.1=pyhd8ed1ab_0 + - platformdirs=4.0.0=pyhd8ed1ab_0 + - pplpy=0.8.7=py311hb546c2d_0 - primecountpy=0.1.0=py311he4fd1f5_4 + - prompt-toolkit=3.0.24=pyha770c72_0 - pybind11=2.11.1=py311he4fd1f5_2 - pyobjc-core=10.0=py311hb702dc4_0 - pyproject-api=1.6.1=pyhd8ed1ab_0 - - pytest=7.4.2=pyhd8ed1ab_0 + - pytest=7.4.3=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - pytz-deprecation-shim=0.1.0.post0=py311h267d04e_4 - - referencing=0.30.2=pyhd8ed1ab_0 + - referencing=0.31.0=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - sagemath-db-conway-polynomials=0.5.0=h4653dfc_1 - - singular=4.2.1.p3=h3b80c97_2 - - terminado=0.17.1=pyhd1c38e8_0 + - sympy=1.12=pypyh9d50eac_103 + - terminado=0.18.0=pyh31c8845_0 - tinycss2=1.2.1=pyhd8ed1ab_0 - typing-extensions=4.8.0=hd8ed1ab_0 - - urllib3=2.0.6=pyhd8ed1ab_0 + - urllib3=2.1.0=pyhd8ed1ab_0 - argon2-cffi-bindings=21.2.0=py311heffc1b2_4 + - arpack=3.7.0=h58ebc17_2 - arrow=1.3.0=pyhd8ed1ab_0 - - cctools_osx-arm64=973.0.1=h2a25c60_14 - - clang-15=15.0.7=default_h5dc8d65_3 + - cattrs=23.2.2=pyhd8ed1ab_0 + - cctools=973.0.1=h4faf515_13 + - clang=16.0.1=h1e5164c_0 + - dsdp=5.8=h9397a75_1203 + - fflas-ffpack=2.4.3=h11f2abc_2 - fqdn=1.5.1=pyhd8ed1ab_0 - git=2.42.0=pl5321h46e2b6d_0 - - harfbuzz=6.0.0=hddbc195_0 + - gsl=2.7=h6e638da_0 - hatchling=1.18.0=pyhd8ed1ab_0 - - importlib-resources=6.1.0=pyhd8ed1ab_0 + - iml=1.0.5=hd52f0d1_1003 + - importlib-resources=6.1.1=pyhd8ed1ab_0 - importlib_metadata=6.8.0=hd8ed1ab_0 - - jsonschema-specifications=2023.7.1=pyhd8ed1ab_0 + - jsonschema-specifications=2023.11.1=pyhd8ed1ab_0 + - jupyter_core=5.5.0=py311h267d04e_0 - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1 - - ld64=609=h89fa09d_14 - - libcblas=3.9.0=18_osxarm64_openblas - - liblapack=3.9.0=18_osxarm64_openblas - - lsprotocol=2023.0.0b1=pyhd8ed1ab_0 - - platformdirs=3.11.0=pyhd8ed1ab_0 - - pplpy=0.8.7=py311hb546c2d_0 + - liblapacke=3.9.0=20_osxarm64_openblas + - numpy=1.26.2=py311h6d074dd_0 + - pango=1.50.14=h6c112b8_0 + - prompt_toolkit=3.0.24=hd8ed1ab_0 - pyobjc-framework-cocoa=10.0=py311hb702dc4_1 - - pytest-xdist=3.3.1=pyhd8ed1ab_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 - - sympy=1.12=pypyh9d50eac_103 - - wcwidth=0.2.8=pyhd8ed1ab_0 - - argon2-cffi=23.1.0=pyhd8ed1ab_0 - - arpack=3.7.0=h58ebc17_2 - - cctools=973.0.1=hd1ac623_14 - - clang=15.0.7=hce30654_3 - - dsdp=5.8=h9397a75_1203 - - fflas-ffpack=2.4.3=h11f2abc_2 - - gsl=2.7=h6e638da_0 - - iml=1.0.5=hd52f0d1_1003 - - isoduration=20.11.0=pyhd8ed1ab_0 - - jsonschema=4.19.1=pyhd8ed1ab_0 - - jupyter_core=5.3.2=py311h267d04e_0 - - liblapacke=3.9.0=18_osxarm64_openblas - - numpy=1.26.0=py311hb8f3215_0 - - pango=1.50.14=h6c112b8_0 - - pooch=1.7.0=pyhd8ed1ab_4 - - prompt-toolkit=3.0.39=pyha770c72_0 - - send2trash=1.8.2=pyhd1c38e8_0 - - setuptools_scm=8.0.4=hd8ed1ab_0 - suitesparse=5.10.1=h7cd81ec_1 - - typeguard=3.0.2=pyhd8ed1ab_0 - - virtualenv=20.24.4=pyhd8ed1ab_0 - - blas-devel=3.9.0=18_osxarm64_openblas - - clangxx=15.0.7=default_h610c423_3 - - contourpy=1.1.1=py311he4fd1f5_1 + - virtualenv=20.24.7=pyhd8ed1ab_0 + - argon2-cffi=23.1.0=pyhd8ed1ab_0 + - blas-devel=3.9.0=20_osxarm64_openblas + - clangxx=16.0.1=default_ha0f6327_0 + - contourpy=1.2.0=py311hd03642b_0 - cvxopt=1.3.2=py311hd76776f_1 - - fpylll=0.5.9=py311h3ca9eb5_1 + - fpylll=0.6.0=py311he33df0e_1 - giac=1.9.0.21=h1c96721_1 - igraph=0.9.10=hcec9b84_1 - - jsonschema-with-format-nongpl=4.19.1=pyhd8ed1ab_0 - - jupyter_client=8.3.1=pyhd8ed1ab_0 + - ipython=8.8.0=pyhd1c38e8_0 + - isoduration=20.11.0=pyhd8ed1ab_0 + - jsonschema=4.20.0=pyhd8ed1ab_0 + - jupyter_client=8.6.0=pyhd8ed1ab_0 - linbox=1.6.3=h549c411_7 - - nbformat=5.9.2=pyhd8ed1ab_0 - - prompt_toolkit=3.0.39=hd8ed1ab_0 - - pygls=1.1.1=pyhd8ed1ab_0 - - scipy=1.10.1=py311h93d07a4_3 + - lsprotocol=2023.0.0=pyhd8ed1ab_0 + - scipy=1.11.4=py311h2b215a9_0 + - send2trash=1.8.2=pyhd1c38e8_0 + - setuptools_scm=8.0.4=hd8ed1ab_0 - tox=4.11.3=pyhd8ed1ab_0 - - blas=2.118=openblas - - compiler-rt_osx-arm64=15.0.7=hf8d1dfb_1 - - ipython=8.16.1=pyh31c8845_0 - - jupyter_events=0.7.0=pyhd8ed1ab_2 - - matplotlib-base=3.8.0=py311h3bc9839_1 - - nbclient=0.8.0=pyhd8ed1ab_0 + - blas=2.120=openblas + - compiler-rt_osx-arm64=16.0.1=h30b49de_0 + - 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.0=pyhd8ed1ab_0 - rw=0.9=h3422bc3_0 - - compiler-rt=15.0.7=hf8d1dfb_1 - - ipykernel=6.25.2=pyh1050b4e_0 - - matplotlib=3.8.0=py311ha1ab1f8_1 - - nbconvert-core=7.9.2=pyhd8ed1ab_0 - - clang_osx-arm64=15.0.7=h77e971b_3 - - jupyter_server=2.7.3=pyhd8ed1ab_1 - - nbconvert-pandoc=7.9.2=pyhd8ed1ab_0 - - c-compiler=1.6.0=hd291e01_0 - - clangxx_osx-arm64=15.0.7=h768a7fd_3 + - compiler-rt=16.0.1=h30b49de_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_osx-arm64=16.0.1=hdccda30_1 + - nbconvert-core=7.11.0=pyhd8ed1ab_0 + - clangxx_osx-arm64=16.0.1=h0c1d50e_1 - gfortran_osx-arm64=12.3.0=h57527a5_1 + - jupyter_server=2.10.1=pyhd8ed1ab_0 + - nbconvert-pandoc=7.11.0=pyhd8ed1ab_0 + - gfortran=12.3.0=h1ca8e4b_1 - jupyter-lsp=2.2.0=pyhd8ed1ab_0 - - jupyterlab_server=2.25.0=pyhd8ed1ab_0 - - nbconvert=7.9.2=pyhd8ed1ab_0 + - jupyterlab_server=2.25.2=pyhd8ed1ab_0 + - nbconvert=7.11.0=pyhd8ed1ab_0 - notebook-shim=0.2.3=pyhd8ed1ab_0 - - cxx-compiler=1.6.0=h1995070_0 - - gfortran=12.3.0=h1ca8e4b_1 - - jupyterlab=4.0.6=pyhd8ed1ab_0 - pythran=0.14.0=py311hddbb800_1 - r-base=4.1.3=h9c4d319_6 - fortran-compiler=1.6.0=h5a50232_0 - - notebook=7.0.4=pyhd8ed1ab_0 + - jupyterlab=4.0.9=pyhd8ed1ab_0 - rpy2=3.5.11=py311r41h4add359_0 - - compilers=1.6.0=hce30654_0 - - widgetsnbextension=3.6.6=pyhd8ed1ab_0 - - ipywidgets=7.8.0=pyhd8ed1ab_0 - - jupyter-jsmol=2022.1.0=pyhd8ed1ab_0 + - notebook=7.0.6=pyhd8ed1ab_0 - esbonio=0.16.2=pyhd8ed1ab_0 - jupyter_sphinx=0.1.4=py_0 - sphinx-basic-ng=1.0.0b2=pyhd8ed1ab_1 diff --git a/src/environment-dev-3.11-macos.yml b/src/environment-dev-3.11-macos.yml index 4ecc6d62da6..451134eefc5 100644 --- a/src/environment-dev-3.11-macos.yml +++ b/src/environment-dev-3.11-macos.yml @@ -1,25 +1,25 @@ # Generated by conda-lock. # platform: osx-64 -# input_hash: 080056230f04b2498e1124e83732af17da45ea9412a8c78b3f320d01a84b18a9 +# input_hash: f5044538ba92e3ff43e1a13d239dfbd2f33a0e7394ffeaae8116d7f47b628a9a channels: - conda-forge dependencies: - _r-mutex=1.0.1=anacondar_1 - - bzip2=1.0.8=h0d85af4_4 - - c-ares=1.19.1=h0dc2134_0 - - ca-certificates=2023.7.22=h8857fd0_0 + - bzip2=1.0.8=h10d778d_5 + - c-ares=1.22.1=h10d778d_0 + - ca-certificates=2023.11.17=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=hab24e00_0 + - font-ttf-ubuntu=0.83=h77eed37_1 - fribidi=1.0.10=hbcb3906_0 - - gh=2.36.0=h990441c_0 + - gh=2.39.1=h990441c_0 - giflib=5.2.1=hb7f2c08_3 - icu=73.2=hf5e326d_0 - libatomic_ops=7.6.14=hb7f2c08_0 - - libboost-headers=1.82.0=h694c41f_6 + - libboost-headers=1.83.0=h694c41f_0 - libbrotlicommon=1.1.0=h0dc2134_1 - libcxx=16.0.6=hd57cbcb_0 - libdeflate=1.19=ha4e1b8e_0 @@ -34,13 +34,12 @@ dependencies: - libuv=1.46.0=h0c2f820_0 - libwebp-base=1.3.2=h0dc2134_0 - libzlib=1.2.13=h8a1eda9_5 - - llvm-openmp=17.0.2=hff08bdf_0 + - llvm-openmp=17.0.5=hb6ac08f_0 - m4=1.4.18=haf1e3a3_1001 - make=4.3=h22f3db7_1 - mathjax=3.2.2=h694c41f_0 - metis=5.1.0=he965462_1007 - nauty=2.7.2=h0d85af4_0 - - ncurses=6.4=hf0c8a7f_0 - palp=2.20=hbcb3906_0 - pari-elldata=0.0.20161017=0 - pari-galdata=0.0.20180411=0 @@ -56,6 +55,7 @@ dependencies: - sagemath-db-combinatorial-designs=20140630=1 - sagemath-db-graphs=20210214=hd8ed1ab_0 - sagemath-db-polytopes=20170220=1 + - tbb=2021.10.0=h1c7c39f_2 - three.js=122=hd8ed1ab_2 - tzdata=2023c=h71feb2d_0 - xorg-libxau=1.0.11=h0dc2134_0 @@ -69,7 +69,7 @@ dependencies: - gengetopt=2.23=he49afe7_0 - gettext=0.21.1=h8a4c099_0 - gf2x=1.3.0=hb2a7efb_2 - - gmp=6.2.1=h2e338ed_0 + - gmp=6.3.0=h93d8f39_0 - graphite2=1.3.13=h2e338ed_1001 - isl=0.25=hb486fe8_0 - lerc=4.0.0=hb486fe8_0 @@ -77,16 +77,16 @@ dependencies: - libbrotlidec=1.1.0=h0dc2134_1 - libbrotlienc=1.1.0=h0dc2134_1 - libcbor=0.10.2=hf0c8a7f_0 - - libedit=3.1.20191231=h0678c8f_2 - libgfortran5=13.2.0=h2873a65_1 - libpng=1.6.39=ha978bb4_0 - - libsqlite=3.43.0=h58db7d2_0 + - libsqlite=3.44.2=h92b6c6a_0 - libxcb=1.15=hb7f2c08_0 - - libxml2=2.11.5=h3346baf_1 + - libxml2=2.11.6=hc0ae0f7_0 - lrcalc=2.1=hf0c8a7f_5 + - ncurses=6.4=h93d8f39_2 - ninja=1.11.1=hb8565cd_0 - - openjdk=20.0.2=h7d26f99_2 - - openssl=3.1.3=h8a1eda9_0 + - openjdk=21.0.1=hf4d7fad_0 + - openssl=3.2.0=hd75f5a5_0 - pandoc=3.1.3=h9d075a6_0 - pari-seadata=0.0.20090618=0 - pcre2=10.40=h1c4e4bc_0 @@ -94,150 +94,165 @@ dependencies: - pkg-config=0.29.2=ha3d46e9_1008 - primesieve=11.0=hf0c8a7f_0 - qhull=2020.2=h940c156_2 - - readline=8.2=h9e318b2_1 - symmetrica=3.0.1=hf0c8a7f_0 - tapi=1100.0.11=h9ce4665_0 - - tbb=2021.10.0=h1c7c39f_1 - - texinfo=7.0=pl5321hc47821c_0 - threejs-sage=122=hd8ed1ab_2 - - tk=8.6.13=hef22860_0 - - zeromq=4.3.4=he49afe7_1 + - 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 - - ecl=21.2.1=hd029580_2 - ecm=7.0.4=h343d7f2_1002 - fonts-conda-ecosystem=1=0 - freetype=2.12.1=h60636b9_2 - - gap-core=4.12.2=hc16eb5f_3 - givaro=4.1.1=h0a799c6_3 - glpk=5.0=h3cb5acd_0 - jmol=14.32.9=h694c41f_0 - - krb5=1.21.2=hb884880_0 - - libboost=1.82.0=hf0c313a_6 - - libfido2=1.13.0=h14e1388_0 + - libboost=1.83.0=hf44e908_0 + - libedit=3.1.20191231=h0678c8f_2 + - libfido2=1.14.0=h3cbcf74_0 - libgfortran=5.0.0=13_2_0_h97931a8_1 - - libglib=2.78.0=hc62aa5d_0 + - libglib=2.78.1=h6d9ecee_0 - libhomfly=1.02r6=hc929b4f_0 - libllvm16=16.0.6=he4b1e75_2 - - libnghttp2=1.52.0=he2ab024_0 + - libnghttp2=1.58.0=h64cf6d3_0 - libssh2=1.11.0=hd019ec5_0 - libtiff=4.6.0=h684deea_2 - m4ri=20140914=h3f75d11_1005 - - mpfr=4.2.0=h4f9bd69_0 + - mpfr=4.2.1=h0c69b56_0 - ntl=11.4.3=h0ab3c2f_1 - - pari=2.15.4=h93f793c_2_pthread - primecount=7.6=ha894c9a_0 - - python=3.11.6=h30d4d87_0_cpython + - readline=8.2=h9e318b2_1 - sigtool=0.1.3=h88f4db0_0 - - sqlite=3.43.0=h2b0dec6_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.15=hd6ba6f3_3 + - ld64_osx-64=609=ha20a434_15 + - libboost-devel=1.83.0=h7728843_0 + - libbrial=1.2.12=h8d08345_1 + - libclang-cpp16=16.0.6=default_h762fdd7_2 + - libflint=2.9.0=hfd2f71f_ntl_100 + - libopenblas=0.3.25=openmp_hfef2a42_0 + - libwebp=1.3.2=h44782d1_1 + - llvm-tools=16.0.6=he4b1e75_2 + - 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.6=h30d4d87_0_cpython + - qd=2.3.22=h2beb688_1004 + - sqlite=3.44.2=h7461747_0 - alabaster=0.7.13=pyhd8ed1ab_0 - appdirs=1.4.4=pyh9f0ad1d_0 - appnope=0.1.3=pyhd8ed1ab_0 + - arb=2.23.0=h905a977_0 - attrs=23.1.0=pyh71513ae_1 - backcall=0.2.0=pyh9f0ad1d_0 - - backports=1.0=pyhd8ed1ab_3 - - brotli=1.1.0=h0dc2134_1 + - boost-cpp=1.83.0=h07eb623_0 + - brial=1.2.12=pyh694c41f_1 - brotli-python=1.1.0=py311hdf8f085_1 - cached_property=1.5.2=pyha770c72_1 - - cachetools=5.3.1=pyhd8ed1ab_0 - - certifi=2023.7.22=pyhd8ed1ab_0 + - cachetools=5.3.2=pyhd8ed1ab_0 + - cairo=1.18.0=h99e66fa_0 + - cctools_osx-64=973.0.1=ha1c5b94_15 + - certifi=2023.11.17=pyhd8ed1ab_0 - chardet=5.2.0=py311h6eed73b_1 - - charset-normalizer=3.3.0=pyhd8ed1ab_0 + - charset-normalizer=3.3.2=pyhd8ed1ab_0 + - clang-16=16.0.6=default_h762fdd7_2 - colorama=0.4.6=pyhd8ed1ab_0 - cycler=0.12.1=pyhd8ed1ab_0 - cysignals=1.11.2=py311h8a58447_3 - - cython=3.0.2=py311hdf8f085_2 + - cython=3.0.6=py311hd39e593_0 - debugpy=1.8.0=py311hdf8f085_1 - decorator=5.1.1=pyhd8ed1ab_0 - defusedxml=0.7.1=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - docutils=0.20.1=py311h6eed73b_2 + - eclib=20230424=hd00e801_0 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 - - exceptiongroup=1.1.3=pyhd8ed1ab_0 + - exceptiongroup=1.2.0=pyhd8ed1ab_0 - execnet=2.0.2=pyhd8ed1ab_0 - - executing=1.2.0=pyhd8ed1ab_0 - - fftw=3.3.10=nompi_h4fa670e_108 - - filelock=3.12.4=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=h5bb23bf_0 + - fplll=5.4.5=hb7981ad_0 - gap-defaults=4.12.2=h694c41f_3 - gast=0.5.4=pyhd8ed1ab_0 - - gfan=0.6.2=hd793b56_1003 - - idna=3.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=1.1.7=pyhd8ed1ab_0 + - jupyterlab_widgets=3.0.9=pyhd8ed1ab_0 - kiwisolver=1.4.5=py311h5fe6e05_1 - lcalc=2.0.5=h3a941db_1 - - lcms2=2.15=hd6ba6f3_3 - - ld64_osx-64=609=ha20a434_14 - - libboost-devel=1.82.0=h1c7c39f_6 - - libbrial=1.2.12=h8d08345_1 - - libclang-cpp16=16.0.6=default_h762fdd7_1 - - libcurl=8.3.0=h5f667d7_0 - - libflint=2.9.0=hfd2f71f_ntl_100 - - libopenblas=0.3.24=openmp_h48a4ad5_0 - - libwebp=1.3.2=h44782d1_1 - - llvm-tools=16.0.6=he4b1e75_2 - - m4rie=20150908=h3f75d11_1001 + - ld64=609=ha02d983_15 + - libblas=3.9.0=20_osx64_openblas + - libcurl=8.4.0=h726d00d_0 + - libgd=2.3.3=h0dceb68_9 - markupsafe=2.1.3=py311h2725bcf_1 - maxima=5.45.0=hd029580_3 - - mistune=3.0.1=pyhd8ed1ab_0 - - mpc=1.3.1=h81bd1dd_0 - - mpfi=1.5.4=h52b28e3_1001 + - mistune=3.0.2=pyhd8ed1ab_0 - mpmath=1.3.0=pyhd8ed1ab_0 - munkres=1.1.4=pyh9f0ad1d_0 - - nest-asyncio=1.5.6=pyhd8ed1ab_0 - - networkx=2.8.8=pyhd8ed1ab_0 - - openjpeg=2.5.0=ha4da562_3 + - nest-asyncio=1.5.8=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 - pathspec=0.11.2=pyhd8ed1ab_0 - pickleshare=0.7.5=py_1003 + - pillow=10.1.0=py311hea5c87a_0 - pkgconfig=1.5.5=pyhd8ed1ab_4 - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 - pluggy=1.3.0=pyhd8ed1ab_0 - ply=3.11=py_1 - - ppl=1.2=ha60d53e_1006 - - prometheus_client=0.17.1=pyhd8ed1ab_0 + - prometheus_client=0.19.0=pyhd8ed1ab_0 - psutil=5.9.5=py311h2725bcf_1 - 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.0=pyhd8ed1ab_0 + - pycodestyle=2.11.1=pyhd8ed1ab_0 - pycparser=2.21=pyhd8ed1ab_0 - - pygments=2.16.1=pyhd8ed1ab_0 + - pygments=2.17.2=pyhd8ed1ab_0 - pyparsing=3.1.1=pyhd8ed1ab_0 - - pyrsistent=0.19.3=py311h2725bcf_1 + - pyrsistent=0.20.0=py311he705e18_0 - pysocks=1.7.1=pyha2e5f31_6 - pyspellchecker=0.7.2=pyhd8ed1ab_0 - - python-fastjsonschema=2.18.1=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 - - pyzmq=25.1.1=py311h5dacc12_1 - - qd=2.3.22=h2beb688_1004 + - pyzmq=25.1.1=py311he3804a1_2 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.10.4=py311h5e0f0e4_0 + - rpds-py=0.13.1=py311h5e0f0e4_0 - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 - sagetex=3.6.1=pyhd8ed1ab_0 - - setuptools=59.8.0=py311h6eed73b_1 + - setuptools=68.2.2=pyhd8ed1ab_0 - simplegeneric=0.8.1=py_1 + - singular=4.2.1.p3=hac851df_2 - six=1.16.0=pyh6c4a22f_0 - sniffio=1.3.0=pyhd8ed1ab_0 - snowballstemmer=2.2.0=pyhd8ed1ab_0 @@ -246,163 +261,146 @@ dependencies: - sympow=2.023.6=h115ba6a_3 - tomli=2.0.1=pyhd8ed1ab_0 - tornado=6.3.3=py311h2725bcf_1 - - traitlets=5.11.2=pyhd8ed1ab_0 - - trove-classifiers=2023.9.19=pyhd8ed1ab_0 + - traitlets=5.13.0=pyhd8ed1ab_0 + - trove-classifiers=2023.11.22=pyhd8ed1ab_0 - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 - typing_extensions=4.8.0=pyha770c72_0 - typing_utils=0.1.0=pyhd8ed1ab_0 - - tzlocal=5.1=py311h6eed73b_0 + - tzlocal=5.2=py311h6eed73b_0 - uri-template=1.3.0=pyhd8ed1ab_0 - vcversioner=2.16.0.0=py_1 + - wcwidth=0.2.12=pyhd8ed1ab_0 - webcolors=1.13=pyhd8ed1ab_0 - webencodings=0.5.1=pyhd8ed1ab_2 - websocket-client=1.6.4=pyhd8ed1ab_0 - - wheel=0.41.2=pyhd8ed1ab_0 + - wheel=0.42.0=pyhd8ed1ab_0 + - widgetsnbextension=4.0.9=pyhd8ed1ab_0 - zipp=3.17.0=pyhd8ed1ab_0 - - anyio=4.0.0=pyhd8ed1ab_0 - - arb=2.23.0=h905a977_0 - - asttokens=2.4.0=pyhd8ed1ab_0 + - anyio=4.1.0=pyhd8ed1ab_0 + - asttokens=2.4.1=pyhd8ed1ab_0 - async-lru=2.0.4=pyhd8ed1ab_0 - - babel=2.12.1=pyhd8ed1ab_1 - - backports.functools_lru_cache=1.6.5=pyhd8ed1ab_0 + - babel=2.13.1=pyhd8ed1ab_0 - beautifulsoup4=4.12.2=pyha770c72_0 - beniget=0.4.1=pyhd8ed1ab_0 - bleach=6.1.0=pyhd8ed1ab_0 - - boost-cpp=1.82.0=h07eb623_6 - - brial=1.2.12=pyh694c41f_1 - cached-property=1.5.2=hd8ed1ab_1 - - cairo=1.16.0=hfdb49f2_1017 - - cattrs=23.1.2=pyhd8ed1ab_0 - - cctools_osx-64=973.0.1=ha1c5b94_14 + - cctools=973.0.1=h40f6528_15 - cffi=1.16.0=py311hc0b63fd_0 - - clang-16=16.0.6=default_h762fdd7_1 - - cmake=3.27.6=hf40c264_0 + - clang=16.0.6=hc177806_2 + - cmake=3.27.8=hc7ee4c4_0 - comm=0.1.4=pyhd8ed1ab_0 - cppy=1.2.1=pyhd8ed1ab_0 - - curl=8.3.0=h5f667d7_0 + - curl=8.4.0=h726d00d_0 - cypari2=2.1.3=py311h7d823c7_2 - deprecation=2.1.0=pyh9f0ad1d_0 - - eclib=20230424=hd00e801_0 - - fonttools=4.43.1=py311he705e18_0 - - fplll=5.4.4=hdfdc905_0 - - gfortran_impl_osx-64=12.3.0=h54fd467_1 - - gmpy2=2.1.2=py311hc5b4402_1 + - fonttools=4.45.1=py311he705e18_0 + - harfbuzz=8.3.0=hf45c392_0 - importlib-metadata=6.8.0=pyha770c72_0 - - importlib_resources=6.1.0=pyhd8ed1ab_0 + - importlib_resources=6.1.1=pyhd8ed1ab_0 - jedi=0.19.1=pyhd8ed1ab_0 - jinja2=3.1.2=pyhd8ed1ab_1 - - jupyterlab_pygments=0.2.2=pyhd8ed1ab_0 - - ld64=609=ha02d983_14 - - libblas=3.9.0=18_osx64_openblas - - libgd=2.3.3=h0dceb68_9 + - jupyterlab_pygments=0.3.0=pyhd8ed1ab_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.2=py311h5547dcb_2 - - openblas=0.3.24=openmp_hd7704e8_0 + - memory-allocator=0.1.3=py311h2725bcf_0 - overrides=7.4.0=pyhd8ed1ab_0 - pexpect=4.8.0=pyh1a96a4e_2 - - pillow=10.0.1=py311h0beca62_2 - - pip=23.2.1=pyhd8ed1ab_0 + - pip=23.3.1=pyhd8ed1ab_0 + - platformdirs=4.0.0=pyhd8ed1ab_0 + - pplpy=0.8.7=py311h47e80fe_0 - primecountpy=0.1.0=py311h5fe6e05_4 + - prompt-toolkit=3.0.24=pyha770c72_0 - pybind11=2.11.1=py311h5fe6e05_2 - pyobjc-core=10.0=py311hf110eff_0 - pyproject-api=1.6.1=pyhd8ed1ab_0 - - pytest=7.4.2=pyhd8ed1ab_0 + - pytest=7.4.3=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - pytz-deprecation-shim=0.1.0.post0=py311h6eed73b_4 - - referencing=0.30.2=pyhd8ed1ab_0 + - referencing=0.31.0=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - sagemath-db-conway-polynomials=0.5.0=h033912b_1 - - singular=4.2.1.p3=hac851df_2 - - terminado=0.17.1=pyhd1c38e8_0 + - sympy=1.12=pypyh9d50eac_103 + - terminado=0.18.0=pyh31c8845_0 - tinycss2=1.2.1=pyhd8ed1ab_0 - typing-extensions=4.8.0=hd8ed1ab_0 - - urllib3=2.0.6=pyhd8ed1ab_0 + - urllib3=2.1.0=pyhd8ed1ab_0 - argon2-cffi-bindings=21.2.0=py311h2725bcf_4 - arrow=1.3.0=pyhd8ed1ab_0 - - cctools=973.0.1=h40f6528_14 - - clang=16.0.6=hc177806_1 + - cattrs=23.2.2=pyhd8ed1ab_0 + - clangxx=16.0.6=default_h762fdd7_2 + - dsdp=5.8=h6e329d1_1203 + - fflas-ffpack=2.4.3=h026fd7e_2 - fqdn=1.5.1=pyhd8ed1ab_0 - git=2.42.0=pl5321hbb4c4ee_0 - - harfbuzz=8.2.1=h7666e2a_0 + - gsl=2.7=h93259b0_0 - hatchling=1.18.0=pyhd8ed1ab_0 - - importlib-resources=6.1.0=pyhd8ed1ab_0 + - iml=1.0.5=h64b42ca_1003 + - importlib-resources=6.1.1=pyhd8ed1ab_0 - importlib_metadata=6.8.0=hd8ed1ab_0 - - jsonschema-specifications=2023.7.1=pyhd8ed1ab_0 + - jsonschema-specifications=2023.11.1=pyhd8ed1ab_0 + - jupyter_core=5.5.0=py311h6eed73b_0 - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1 - - libcblas=3.9.0=18_osx64_openblas - - liblapack=3.9.0=18_osx64_openblas - - lsprotocol=2023.0.0b1=pyhd8ed1ab_0 - - platformdirs=3.11.0=pyhd8ed1ab_0 - - pplpy=0.8.7=py311h47e80fe_0 + - liblapacke=3.9.0=20_osx64_openblas + - numpy=1.26.2=py311h93c810c_0 + - pango=1.50.14=h19c1c8a_2 + - prompt_toolkit=3.0.24=hd8ed1ab_0 - pyobjc-framework-cocoa=10.0=py311hf110eff_1 - - pytest-xdist=3.3.1=pyhd8ed1ab_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 - - sympy=1.12=pypyh9d50eac_103 - - wcwidth=0.2.8=pyhd8ed1ab_0 - - argon2-cffi=23.1.0=pyhd8ed1ab_0 - - clangxx=16.0.6=default_h762fdd7_1 - - dsdp=5.8=h6e329d1_1203 - - fflas-ffpack=2.4.3=h026fd7e_2 - - gsl=2.7=h93259b0_0 - - iml=1.0.5=h64b42ca_1003 - - isoduration=20.11.0=pyhd8ed1ab_0 - - jsonschema=4.19.1=pyhd8ed1ab_0 - - jupyter_core=5.3.2=py311h6eed73b_0 - - liblapacke=3.9.0=18_osx64_openblas - - numpy=1.26.0=py311hc44ba51_0 - - pango=1.50.14=h19c1c8a_2 - - pooch=1.7.0=pyhd8ed1ab_4 - - prompt-toolkit=3.0.39=pyha770c72_0 - - send2trash=1.8.2=pyhd1c38e8_0 - - setuptools_scm=8.0.4=hd8ed1ab_0 - suitesparse=5.10.1=h7aff33d_1 - - typeguard=3.0.2=pyhd8ed1ab_0 - - virtualenv=20.24.4=pyhd8ed1ab_0 - - blas-devel=3.9.0=18_osx64_openblas - - compiler-rt_osx-64=16.0.6=he1888fc_0 - - contourpy=1.1.1=py311h5fe6e05_1 + - virtualenv=20.24.7=pyhd8ed1ab_0 + - argon2-cffi=23.1.0=pyhd8ed1ab_0 + - blas-devel=3.9.0=20_osx64_openblas + - compiler-rt_osx-64=16.0.6=he1888fc_1 + - contourpy=1.2.0=py311h7bea37d_0 - cvxopt=1.3.2=py311ha4c19de_1 - - fpylll=0.5.9=py311ha75317a_1 + - fpylll=0.6.0=py311hc863427_1 - giac=1.9.0.21=h92f3f65_1 - - jsonschema-with-format-nongpl=4.19.1=pyhd8ed1ab_0 - - jupyter_client=8.3.1=pyhd8ed1ab_0 + - ipython=8.8.0=pyhd1c38e8_0 + - isoduration=20.11.0=pyhd8ed1ab_0 + - jsonschema=4.20.0=pyhd8ed1ab_0 + - jupyter_client=8.6.0=pyhd8ed1ab_0 - linbox=1.6.3=hdde8d14_7 - - nbformat=5.9.2=pyhd8ed1ab_0 - - prompt_toolkit=3.0.39=hd8ed1ab_0 - - pygls=1.1.1=pyhd8ed1ab_0 - - scipy=1.10.1=py311h16c3c4d_3 + - lsprotocol=2023.0.0=pyhd8ed1ab_0 + - scipy=1.11.4=py311he0bea55_0 + - send2trash=1.8.2=pyhd1c38e8_0 + - setuptools_scm=8.0.4=hd8ed1ab_0 - tox=4.11.3=pyhd8ed1ab_0 - - blas=2.118=openblas - - compiler-rt=16.0.6=he1888fc_0 - - ipython=8.16.1=pyh31c8845_0 - - jupyter_events=0.7.0=pyhd8ed1ab_2 - - matplotlib-base=3.8.0=py311haff9b01_0 + - blas=2.120=openblas + - compiler-rt=16.0.6=he1888fc_1 + - 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.0=pyhd8ed1ab_0 + - clang_impl_osx-64=16.0.6=h8787910_6 + - 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=16.0.6=h8787910_1 - - ipykernel=6.25.2=pyh1050b4e_0 - - matplotlib=3.8.0=py311h6eed73b_0 - - nbconvert-core=7.9.2=pyhd8ed1ab_0 - - clangxx_osx-64=16.0.6=h1b7723c_1 + - clang_osx-64=16.0.6=hb91bd55_6 + - nbconvert-core=7.11.0=pyhd8ed1ab_0 + - clangxx_impl_osx-64=16.0.6=h1b7723c_6 - gfortran_osx-64=12.3.0=h18f7dce_1 - - jupyter_server=2.7.3=pyhd8ed1ab_1 - - nbconvert-pandoc=7.9.2=pyhd8ed1ab_0 + - jupyter_server=2.10.1=pyhd8ed1ab_0 + - nbconvert-pandoc=7.11.0=pyhd8ed1ab_0 + - clangxx_osx-64=16.0.6=h2fff7d5_6 - gfortran=12.3.0=h2c809b3_1 - jupyter-lsp=2.2.0=pyhd8ed1ab_0 - - jupyterlab_server=2.25.0=pyhd8ed1ab_0 - - nbconvert=7.9.2=pyhd8ed1ab_0 + - jupyterlab_server=2.25.2=pyhd8ed1ab_0 + - nbconvert=7.11.0=pyhd8ed1ab_0 - notebook-shim=0.2.3=pyhd8ed1ab_0 - - pythran=0.14.0=py311hd5c4f45_1 - - r-base=4.3.1=h0ff45fa_6 - fortran-compiler=1.6.0=h932d759_0 - - jupyterlab=4.0.6=pyhd8ed1ab_0 + - jupyterlab=4.0.9=pyhd8ed1ab_0 + - pythran=0.14.0=py311hd5c4f45_1 + - r-base=4.3.2=hf996cbc_0 + - notebook=7.0.6=pyhd8ed1ab_0 - rpy2=3.5.11=py311r43h4a70a88_3 - - notebook=7.0.4=pyhd8ed1ab_0 - - widgetsnbextension=3.6.6=pyhd8ed1ab_0 - - ipywidgets=7.8.0=pyhd8ed1ab_0 - - jupyter-jsmol=2022.1.0=pyhd8ed1ab_0 - - esbonio=0.16.1=pyhd8ed1ab_0 + - esbonio=0.16.2=pyhd8ed1ab_0 - jupyter_sphinx=0.4.0=py311h6eed73b_1 - sphinx-basic-ng=1.0.0b2=pyhd8ed1ab_1 - furo=2023.9.10=pyhd8ed1ab_0 diff --git a/src/environment-dev-3.9-linux-aarch.yml b/src/environment-dev-3.9-linux-aarch64.yml similarity index 72% rename from src/environment-dev-3.9-linux-aarch.yml rename to src/environment-dev-3.9-linux-aarch64.yml index dbf4ebd1182..bf733635f6d 100644 --- a/src/environment-dev-3.9-linux-aarch.yml +++ b/src/environment-dev-3.9-linux-aarch64.yml @@ -1,24 +1,24 @@ # Generated by conda-lock. # platform: linux-aarch64 -# input_hash: 0950075e63799ed2a88a2aed491c4c2e16171fbe60cb8b4fc9ef8e426886a44b +# input_hash: 99c44983fb102a9c8d2e3d4de2a8ecb1413190e731fbfac063f23bdf99bce05f channels: - conda-forge dependencies: - _r-mutex=1.0.1=anacondar_1 - _sysroot_linux-aarch64_curr_repodata_hack=4=h57d6b7b_13 - - ca-certificates=2023.7.22=hcefe29a_0 + - ca-certificates=2023.11.17=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=hab24e00_0 - - gh=2.36.0=h652cbe9_0 + - font-ttf-ubuntu=0.83=h77eed37_1 + - gh=2.39.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_2 - - libgomp=13.2.0=hf8544c7_2 - - libstdcxx-devel_linux-aarch64=12.3.0=h8b5ab12_2 - - libstdcxx-ng=13.2.0=h9a76618_2 + - 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 - pari-elldata=0.0.20161017=0 @@ -40,20 +40,19 @@ dependencies: - 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_2 + - 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 - bdw-gc=8.0.6=hd62202e_0 - - bzip2=1.0.8=hf897c2e_4 - - c-ares=1.20.1=h31becfc_0 + - bzip2=1.0.8=h31becfc_5 + - c-ares=1.22.1=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.2.1=h7fd3ca4_0 + - gmp=6.3.0=h2f0025b_0 - graphite2=1.3.13=h7fd3ca4_1001 - icu=70.1=ha18d298_0 - jpeg=9e=h2a766a3_3 @@ -67,10 +66,10 @@ dependencies: - libev=4.33=h516909a_1 - libexpat=2.5.0=hd600fc2_1 - libffi=3.4.2=h3557bc0_5 - - libgfortran5=13.2.0=h582850c_2 + - libgfortran5=13.2.0=h582850c_3 - libiconv=1.17=h9cdd2b7_0 - - libnsl=2.0.0=h31becfc_1 - - libsanitizer=12.3.0=h8ebda82_2 + - libnsl=2.0.1=h31becfc_0 + - libsanitizer=12.3.0=h8ebda82_3 - libsodium=1.0.18=hb9de7d4_1 - libtool=2.4.7=h4de3ea5_0 - libuuid=2.38.1=hb4cce97_0 @@ -82,9 +81,9 @@ dependencies: - make=4.3=h309ac5b_1 - metis=5.1.0=h2f0025b_1007 - nauty=2.7.2=hf897c2e_0 - - ncurses=6.4=h2e1726e_0 + - ncurses=6.4=h0425590_2 - ninja=1.11.1=hdd96247_0 - - openssl=3.1.3=h31becfc_0 + - openssl=3.2.0=h31becfc_0 - palp=2.20=hb9de7d4_0 - patch=2.7.6=hf897c2e_1002 - pixman=0.42.2=h2f0025b_0 @@ -110,32 +109,31 @@ dependencies: - 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_2 + - gcc_impl_linux-aarch64=12.3.0=hcde2664_3 - 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_2 + - libgfortran-ng=13.2.0=he9431aa_3 - libhomfly=1.02r6=hb9de7d4_0 - - libnghttp2=1.52.0=h250e5c5_0 + - libnghttp2=1.58.0=hb0e430d_0 - libpng=1.6.39=hf9034f9_0 - - libsqlite=3.43.0=h194ca79_0 + - libsqlite=3.44.2=h194ca79_0 - libssh2=1.11.0=h492db2e_0 - libxcb=1.13=h3557bc0_1004 - libxml2=2.10.3=habe54e3_4 - - mpfr=4.2.0=h96f194b_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 - 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.4=h01db608_1 + - zeromq=4.3.5=h2f0025b_0 - zlib=1.2.13=h31becfc_5 - zstd=1.5.5=h4c53e97_0 - autoconf=2.71=pl5321h2148fe1_1 @@ -149,16 +147,16 @@ dependencies: - 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_2 - - gxx_impl_linux-aarch64=12.3.0=hcde2664_2 + - gfortran_impl_linux-aarch64=12.3.0=hb7244be_3 + - gxx_impl_linux-aarch64=12.3.0=hcde2664_3 - krb5=1.20.1=h113d92e_0 - libflint=2.9.0=hd3470fa_ntl_100 - - libglib=2.78.0=h0464669_0 + - libglib=2.78.1=h0464669_0 - libhwloc=2.9.1=h21e8147_0 - - libopenblas=0.3.23=pthreads_hd703e6f_0 + - libopenblas=0.3.25=pthreads_h5a5ec62_0 - libtiff=4.5.0=h4c1066a_2 - libudev1=254=h31becfc_0 - - llvm-openmp=17.0.2=h8b0cb96_0 + - llvm-openmp=17.0.5=h8b0cb96_0 - m4ri=20140914=h75e8696_1005 - mpc=1.3.1=hf4c8f4c_0 - mpfi=1.5.4=h846f343_1001 @@ -166,7 +164,7 @@ dependencies: - ppl=1.2=h984aac9_1006 - python=3.9.18=h4ac3b42_0_cpython - qd=2.3.22=h05efe27_1004 - - sqlite=3.43.0=h3b3482f_0 + - sqlite=3.44.2=h3b3482f_0 - tachyon=0.99b6=h63ab1d9_1001 - texinfo=7.0=pl5321h17f021e_0 - tktable=2.10=h4f9ca69_5 @@ -178,19 +176,18 @@ dependencies: - attrs=23.1.0=pyh71513ae_1 - automake=1.16.5=pl5321h8af1aa0_0 - backcall=0.2.0=pyh9f0ad1d_0 - - backports=1.0=pyhd8ed1ab_3 - 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.1=pyhd8ed1ab_0 - - certifi=2023.7.22=pyhd8ed1ab_0 + - cachetools=5.3.2=pyhd8ed1ab_0 + - certifi=2023.11.17=pyhd8ed1ab_0 - chardet=5.2.0=py39ha65689a_1 - - charset-normalizer=3.3.0=pyhd8ed1ab_0 + - charset-normalizer=3.3.2=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_0 - cycler=0.12.1=pyhd8ed1ab_0 - cysignals=1.11.2=py39hfa81392_3 - - cython=3.0.2=py39h387a81e_2 + - cython=3.0.6=py39h387a81e_0 - debugpy=1.8.0=py39h387a81e_1 - decorator=5.1.1=pyhd8ed1ab_0 - defusedxml=0.7.1=pyhd8ed1ab_0 @@ -199,45 +196,44 @@ dependencies: - eclib=20230424=h0bc7b0f_0 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 - - exceptiongroup=1.1.3=pyhd8ed1ab_0 + - exceptiongroup=1.2.0=pyhd8ed1ab_0 - execnet=2.0.2=pyhd8ed1ab_0 - - executing=1.2.0=pyhd8ed1ab_0 - - filelock=3.12.4=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.4=h5cd656c_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.4=pyhd8ed1ab_0 + - 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=py39h4420490_3 - - jupyterlab_widgets=1.1.7=pyhd8ed1ab_0 + - jupyterlab_widgets=3.0.9=pyhd8ed1ab_0 - kiwisolver=1.4.5=py39had2cf8c_1 - lcalc=2.0.5=h3264cc0_1 - lcms2=2.15=h7576be9_0 - - libblas=3.9.0=17_linuxaarch64_openblas + - libblas=3.9.0=20_linuxaarch64_openblas - libbrial=1.2.12=h17533bf_1 - libcups=2.3.3=h4303303_3 - libcurl=8.1.2=hc34909b_0 - - libfido2=1.13.0=h73a623e_0 + - libfido2=1.14.0=heb3f89f_0 - libwebp=1.2.4=h7bdf6e5_1 - m4rie=20150908=h75e8696_1001 - markupsafe=2.1.3=py39h7cc1d5f_1 - maxima=5.45.0=haa44c19_3 - - mistune=3.0.1=pyhd8ed1ab_0 + - mistune=3.0.2=pyhd8ed1ab_0 - mpmath=1.3.0=pyhd8ed1ab_0 - munkres=1.1.4=pyh9f0ad1d_0 - - nest-asyncio=1.5.6=pyhd8ed1ab_0 - - networkx=2.8.8=pyhd8ed1ab_0 - - openblas=0.3.23=pthreads_hef96516_0 + - nest-asyncio=1.5.8=pyhd8ed1ab_0 + - networkx=3.2.1=pyhd8ed1ab_0 + - openblas=0.3.25=pthreads_h339cbfa_0 - openjpeg=2.5.0=h9508984_2 - packaging=23.2=pyhd8ed1ab_0 - pandocfilters=1.5.0=pyhd8ed1ab_0 @@ -248,32 +244,32 @@ dependencies: - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 - pluggy=1.3.0=pyhd8ed1ab_0 - ply=3.11=py_1 - - prometheus_client=0.17.1=pyhd8ed1ab_0 + - prometheus_client=0.19.0=pyhd8ed1ab_0 - psutil=5.9.5=py39h898b7ef_1 - 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.0=pyhd8ed1ab_0 + - pycodestyle=2.11.1=pyhd8ed1ab_0 - pycparser=2.21=pyhd8ed1ab_0 - - pygments=2.16.1=pyhd8ed1ab_0 + - pygments=2.17.2=pyhd8ed1ab_0 - pyparsing=3.1.1=pyhd8ed1ab_0 - - pyrsistent=0.19.3=py39h7cc1d5f_1 + - pyrsistent=0.20.0=py39h7cc1d5f_0 - pysocks=1.7.1=pyha2e5f31_6 - pyspellchecker=0.7.2=pyhd8ed1ab_0 - - python-fastjsonschema=2.18.1=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 - - pyzmq=25.1.1=py39h7ea2324_1 + - pyzmq=25.1.1=py39hbab03a2_2 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.10.4=py39hfe8b3a4_0 + - rpds-py=0.13.1=py39hfe8b3a4_0 - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 - sagetex=3.6.1=pyhd8ed1ab_0 - send2trash=1.8.2=pyh41d4057_0 - - setuptools=63.4.3=py39ha65689a_0 + - setuptools=68.2.2=pyhd8ed1ab_0 - simplegeneric=0.8.1=py_1 - singular=4.2.1.p3=h3d4c4c6_2 - six=1.16.0=pyh6c4a22f_0 @@ -285,81 +281,82 @@ dependencies: - tbb=2021.9.0=h4c384f3_0 - tomli=2.0.1=pyhd8ed1ab_0 - tornado=6.3.3=py39h7cc1d5f_1 - - traitlets=5.11.2=pyhd8ed1ab_0 - - trove-classifiers=2023.9.19=pyhd8ed1ab_0 + - traitlets=5.13.0=pyhd8ed1ab_0 + - trove-classifiers=2023.11.22=pyhd8ed1ab_0 - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 - typing_extensions=4.8.0=pyha770c72_0 - typing_utils=0.1.0=pyhd8ed1ab_0 - - tzlocal=5.1=py39h4420490_0 + - tzlocal=5.2=py39h4420490_0 - unicodedata2=15.1.0=py39h898b7ef_0 - uri-template=1.3.0=pyhd8ed1ab_0 - vcversioner=2.16.0.0=py_1 + - wcwidth=0.2.12=pyhd8ed1ab_0 - webcolors=1.13=pyhd8ed1ab_0 - webencodings=0.5.1=pyhd8ed1ab_2 - websocket-client=1.6.4=pyhd8ed1ab_0 - - wheel=0.41.2=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 - zipp=3.17.0=pyhd8ed1ab_0 - - anyio=4.0.0=pyhd8ed1ab_0 - - asttokens=2.4.0=pyhd8ed1ab_0 + - anyio=4.1.0=pyhd8ed1ab_0 + - asttokens=2.4.1=pyhd8ed1ab_0 - async-lru=2.0.4=pyhd8ed1ab_0 - - babel=2.12.1=pyhd8ed1ab_1 - - backports.functools_lru_cache=1.6.5=pyhd8ed1ab_0 + - babel=2.13.1=pyhd8ed1ab_0 - beautifulsoup4=4.12.2=pyha770c72_0 - beniget=0.4.1=pyhd8ed1ab_0 - bleach=6.1.0=pyhd8ed1ab_0 - brial=1.2.12=pyh694c41f_1 - cached-property=1.5.2=hd8ed1ab_1 - cairo=1.16.0=hd19fb6e_1014 - - cattrs=23.1.2=pyhd8ed1ab_0 - 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 - - cxx-compiler=1.6.0=h2a328a1_0 - cypari2=2.1.3=py39h532d932_2 - deprecation=2.1.0=pyh9f0ad1d_0 - - fonttools=4.43.1=py39h898b7ef_0 + - fonttools=4.45.1=py39h898b7ef_0 - fortran-compiler=1.6.0=h7048d53_0 - importlib-metadata=6.8.0=pyha770c72_0 - - importlib_resources=6.1.0=pyhd8ed1ab_0 + - importlib_resources=6.1.1=pyhd8ed1ab_0 - jedi=0.19.1=pyhd8ed1ab_0 - jinja2=3.1.2=pyhd8ed1ab_1 - - jupyterlab_pygments=0.2.2=pyhd8ed1ab_0 - - libcblas=3.9.0=17_linuxaarch64_openblas + - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 + - libcblas=3.9.0=20_linuxaarch64_openblas - libgd=2.3.3=h99c6b3b_4 - - liblapack=3.9.0=17_linuxaarch64_openblas + - liblapack=3.9.0=20_linuxaarch64_openblas - matplotlib-inline=0.1.6=pyhd8ed1ab_0 - - memory-allocator=0.1.2=py39h0fd3b05_2 + - 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.2.1=pyhd8ed1ab_0 + - pip=23.3.1=pyhd8ed1ab_0 + - platformdirs=4.0.0=pyhd8ed1ab_0 - pplpy=0.8.7=py39h087fc0e_0 - primecountpy=0.1.0=py39hd16970a_3 + - prompt-toolkit=3.0.24=pyha770c72_0 - pybind11=2.11.1=py39hd16970a_2 - pyproject-api=1.6.1=pyhd8ed1ab_0 - - pytest=7.4.2=pyhd8ed1ab_0 + - pytest=7.4.3=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - pytz-deprecation-shim=0.1.0.post0=py39h4420490_4 - - referencing=0.30.2=pyhd8ed1ab_0 + - referencing=0.31.0=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - sagemath-db-conway-polynomials=0.5.0=h4fd8a4c_1 - sympy=1.12=pypyh9d50eac_103 - - terminado=0.17.1=pyh41d4057_0 + - terminado=0.18.0=pyh0d859eb_0 - tinycss2=1.2.1=pyhd8ed1ab_0 - typing-extensions=4.8.0=hd8ed1ab_0 - - urllib3=2.0.6=pyhd8ed1ab_0 + - urllib3=2.1.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 + - cattrs=23.2.2=pyhd8ed1ab_0 - dsdp=5.8=hb12102e_1203 - fflas-ffpack=2.4.3=hf104d39_2 - fqdn=1.5.1=pyhd8ed1ab_0 @@ -368,70 +365,64 @@ dependencies: - harfbuzz=6.0.0=hbcb8a4f_0 - hatchling=1.18.0=pyhd8ed1ab_0 - iml=1.0.5=h9076c59_1003 - - importlib-resources=6.1.0=pyhd8ed1ab_0 + - importlib-resources=6.1.1=pyhd8ed1ab_0 - importlib_metadata=6.8.0=hd8ed1ab_0 - - jsonschema-specifications=2023.7.1=pyhd8ed1ab_0 + - jsonschema-specifications=2023.11.1=pyhd8ed1ab_0 + - jupyter_core=5.5.0=py39h4420490_0 - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1 - - liblapacke=3.9.0=17_linuxaarch64_openblas - - lsprotocol=2023.0.0b1=pyhd8ed1ab_0 - - numpy=1.26.0=py39h91c28bb_0 - - platformdirs=3.11.0=pyhd8ed1ab_0 - - pytest-xdist=3.3.1=pyhd8ed1ab_0 + - liblapacke=3.9.0=20_linuxaarch64_openblas + - numpy=1.26.2=py39h91c28bb_0 + - prompt_toolkit=3.0.24=hd8ed1ab_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 - - wcwidth=0.2.8=pyhd8ed1ab_0 + - virtualenv=20.24.7=pyhd8ed1ab_0 - xorg-libxtst=1.2.3=hf897c2e_1002 - argon2-cffi=23.1.0=pyhd8ed1ab_0 - - blas-devel=3.9.0=17_linuxaarch64_openblas - - contourpy=1.1.1=py39hd16970a_1 + - blas-devel=3.9.0=20_linuxaarch64_openblas + - contourpy=1.2.0=py39hd16970a_0 - cvxopt=1.3.2=py39h9d7d0b6_1 - - fpylll=0.5.9=py39h373d583_1 + - fpylll=0.6.0=py39h97065f7_1 - giac=1.9.0.21=h04922a4_1 - igraph=0.9.10=hefb87a8_1 + - ipython=8.8.0=pyh41d4057_0 - isoduration=20.11.0=pyhd8ed1ab_0 - - jsonschema=4.19.1=pyhd8ed1ab_0 - - jupyter_core=5.3.2=py39h4420490_0 + - jsonschema=4.20.0=pyhd8ed1ab_0 + - jupyter_client=8.6.0=pyhd8ed1ab_0 - linbox=1.6.3=h31716a8_7 + - lsprotocol=2023.0.0=pyhd8ed1ab_0 - openjdk=17.0.3=h1a274e0_5 - pango=1.50.14=h1f1e9b3_0 - - pooch=1.7.0=pyhd8ed1ab_4 - - prompt-toolkit=3.0.39=pyha770c72_0 - pythran=0.14.0=py39hc2250db_1 + - scipy=1.11.3=py39h91c28bb_1 - setuptools_scm=8.0.4=hd8ed1ab_0 - - typeguard=3.0.2=pyhd8ed1ab_0 - - virtualenv=20.24.4=pyhd8ed1ab_0 - - blas=2.117=openblas + - tox=4.11.3=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.19.1=pyhd8ed1ab_0 - - jupyter_client=8.3.1=pyhd8ed1ab_0 - - matplotlib-base=3.8.0=py39h8e43113_1 + - jsonschema-with-format-nongpl=4.20.0=pyhd8ed1ab_0 + - matplotlib-base=3.8.2=py39h8e43113_0 - nbformat=5.9.2=pyhd8ed1ab_0 - - prompt_toolkit=3.0.39=hd8ed1ab_0 - - pygls=1.1.1=pyhd8ed1ab_0 + - pygls=1.2.0=pyhd8ed1ab_0 - r-base=4.2.3=h620ca72_0 - rw=0.9=hf897c2e_0 - - scipy=1.10.1=py39hf88902c_3 - - tox=4.11.3=pyhd8ed1ab_0 - - ipython=8.16.1=pyh0d859eb_0 - - jupyter_events=0.7.0=pyhd8ed1ab_2 - - matplotlib=3.8.0=py39ha65689a_1 + - 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 - - ipykernel=6.25.2=pyh2140261_0 - - nbconvert-core=7.9.2=pyhd8ed1ab_0 - - jupyter_server=2.7.3=pyhd8ed1ab_1 - - nbconvert-pandoc=7.9.2=pyhd8ed1ab_0 + - nbconvert-core=7.11.0=pyhd8ed1ab_0 + - jupyter_server=2.10.1=pyhd8ed1ab_0 + - nbconvert-pandoc=7.11.0=pyhd8ed1ab_0 - jupyter-lsp=2.2.0=pyhd8ed1ab_0 - - jupyterlab_server=2.25.0=pyhd8ed1ab_0 - - nbconvert=7.9.2=pyhd8ed1ab_0 + - jupyterlab_server=2.25.2=pyhd8ed1ab_0 + - nbconvert=7.11.0=pyhd8ed1ab_0 - notebook-shim=0.2.3=pyhd8ed1ab_0 - - jupyterlab=4.0.6=pyhd8ed1ab_0 - - notebook=7.0.4=pyhd8ed1ab_0 - - widgetsnbextension=3.6.6=pyhd8ed1ab_0 - - ipywidgets=7.8.0=pyhd8ed1ab_0 - - jupyter-jsmol=2022.1.0=pyhd8ed1ab_0 + - jupyterlab=4.0.9=pyhd8ed1ab_0 + - notebook=7.0.6=pyhd8ed1ab_0 - esbonio=0.16.2=pyhd8ed1ab_0 - jupyter_sphinx=0.1.4=py_0 - sphinx-basic-ng=1.0.0b2=pyhd8ed1ab_1 diff --git a/src/environment-dev-3.9-linux.yml b/src/environment-dev-3.9-linux.yml index c25b266fa6a..4c2015d6308 100644 --- a/src/environment-dev-3.9-linux.yml +++ b/src/environment-dev-3.9-linux.yml @@ -1,24 +1,24 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: 7ce2ad7a12e23c359657f2aeb3058ef6622a4bbfc247452fb69f2c774473dc92 +# input_hash: 70419024fc9f59fff9d09abe9e85b6e5c3afcdedd2dbe4caf6c174fe743d187b channels: - conda-forge dependencies: - _libgcc_mutex=0.1=conda_forge - _r-mutex=1.0.1=anacondar_1 - - ca-certificates=2023.7.22=hbcca054_0 + - ca-certificates=2023.11.17=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=hab24e00_0 - - gh=2.36.0=ha8f183a_0 + - font-ttf-ubuntu=0.83=h77eed37_1 + - gh=2.39.1=ha8f183a_0 - kernel-headers_linux-64=2.6.32=he073ed8_16 - ld_impl_linux-64=2.40=h41732ed_0 - - libboost-headers=1.82.0=ha770c72_6 - - libgcc-devel_linux-64=12.3.0=h8bca6fd_2 - - libstdcxx-devel_linux-64=12.3.0=h8bca6fd_2 - - libstdcxx-ng=13.2.0=h7e041cc_2 + - libboost-headers=1.83.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 - pari-elldata=0.0.20161017=0 - pari-galdata=0.0.20180411=0 @@ -31,7 +31,7 @@ dependencies: - three.js=122=hd8ed1ab_2 - tzdata=2023c=h71feb2d_0 - fonts-conda-forge=1=0 - - libgomp=13.2.0=h807b86a_2 + - libgomp=13.2.0=h807b86a_3 - pari-seadata=0.0.20090618=0 - sysroot_linux-64=2.12=he073ed8_16 - threejs-sage=122=hd8ed1ab_2 @@ -40,19 +40,19 @@ dependencies: - 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_2 + - libgcc-ng=13.2.0=h807b86a_3 - alsa-lib=1.2.10=hd590300_0 - attr=2.5.1=h166bdaf_1 - bdw-gc=8.0.6=h4bd325d_0 - - bzip2=1.0.8=h7f98852_4 - - c-ares=1.19.1=hd590300_0 + - bzip2=1.0.8=hd590300_5 + - c-ares=1.22.1=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.2.1=h58526e2_0 + - gmp=6.3.0=h59595ed_0 - graphite2=1.3.13=h58526e2_1001 - icu=73.2=h59595ed_0 - keyutils=1.6.1=h166bdaf_0 @@ -66,13 +66,13 @@ dependencies: - libev=4.33=h516909a_1 - libexpat=2.5.0=hcb278e6_1 - libffi=3.4.2=h7f98852_5 - - libgfortran5=13.2.0=ha4646dd_2 + - libgfortran5=13.2.0=ha4646dd_3 - libiconv=1.17=h166bdaf_0 - - libjpeg-turbo=2.1.5.1=hd590300_1 - - libnsl=2.0.0=hd590300_1 + - 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_2 + - libsanitizer=12.3.0=h0f45ef3_3 - libsodium=1.0.18=h36c2ea0_1 - libtool=2.4.7=h27087fc_0 - libuuid=2.38.1=h0b41bf4_0 @@ -86,10 +86,10 @@ dependencies: - metis=5.1.0=h59595ed_1007 - mpg123=1.32.3=h59595ed_0 - nauty=2.7.2=h7f98852_0 - - ncurses=6.4=hcb278e6_0 + - ncurses=6.4=h59595ed_2 - ninja=1.11.1=h924138e_0 - nspr=4.35=h27087fc_0 - - openssl=3.1.3=hd590300_0 + - openssl=3.2.0=hd590300_0 - palp=2.20=h36c2ea0_0 - patch=2.7.6=h7f98852_1002 - pixman=0.42.2=h59595ed_0 @@ -116,7 +116,7 @@ dependencies: - 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_2 + - gcc_impl_linux-64=12.3.0=he2b93b0_3 - givaro=4.1.1=h192cbe9_1 - glpk=5.0=h445213a_0 - libbrotlidec=1.1.0=hd590300_1 @@ -125,27 +125,27 @@ dependencies: - libedit=3.1.20191231=he28a2e2_2 - libevent=2.1.12=hf998b51_1 - libflac=1.4.3=h59595ed_0 - - libgfortran-ng=13.2.0=h69a702a_2 + - libgfortran-ng=13.2.0=h69a702a_3 - libgpg-error=1.47=h71f35ed_0 - libhomfly=1.02r6=h36c2ea0_0 - - libnghttp2=1.52.0=h61bc06f_0 + - libnghttp2=1.58.0=h47da74e_0 - libpng=1.6.39=h753d276_0 - - libsqlite=3.43.0=h2797004_0 + - libsqlite=3.44.2=h2797004_0 - libssh2=1.11.0=h0841786_0 - libvorbis=1.3.7=h9c3ff4c_0 - libxcb=1.15=h0b41bf4_0 - - libxml2=2.11.5=h232c23b_1 - - mpfr=4.2.0=hb012696_0 - - mysql-common=8.0.33=hf1915f5_5 + - libxml2=2.11.6=h232c23b_0 + - mpfr=4.2.1=h9458935_0 + - mysql-common=8.0.33=hf1915f5_6 - ntl=11.4.3=hef3c4d3_1 - pcre2=10.40=hc3806b6_0 - perl=5.32.1=4_hd590300_perl5 - primecount=7.9=hcb278e6_0 - readline=8.2=h8228510_1 - - tk=8.6.13=h2797004_0 + - tk=8.6.13=noxft_h4845f30_101 - xorg-fixesproto=5.0=h7f98852_1002 - xorg-libsm=1.2.4=h7391055_0 - - zeromq=4.3.4=h9c3ff4c_1 + - zeromq=4.3.5=h59595ed_0 - zlib=1.2.13=hd590300_5 - zstd=1.5.5=hfc55251_0 - autoconf=2.71=pl5321h2b4cb7a_1 @@ -158,32 +158,32 @@ dependencies: - 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_2 - - gxx_impl_linux-64=12.3.0=he2b93b0_2 + - gfortran_impl_linux-64=12.3.0=hfcedea8_3 + - gxx_impl_linux-64=12.3.0=he2b93b0_3 - igraph=0.7.1=0 - krb5=1.21.2=h659d440_0 - - libboost=1.82.0=h6fcfa73_6 + - libboost=1.83.0=h6fcfa73_0 - libflint=2.9.0=h2f819a4_ntl_100 - - libgcrypt=1.10.1=h166bdaf_0 - - libglib=2.78.0=hebfc3b9_0 + - libgcrypt=1.10.2=hd590300_0 + - libglib=2.78.1=hebfc3b9_0 - libhwloc=2.9.3=default_h554bfaf_1009 - libllvm15=15.0.7=h5cf9203_3 - - libopenblas=0.3.24=pthreads_h413a1c8_0 + - libopenblas=0.3.25=pthreads_h413a1c8_0 - libsndfile=1.2.2=hc60ed4a_1 - - libtiff=4.6.0=h29866fb_1 + - libtiff=4.6.0=ha9c0a0a_2 - libudev1=254=h3f72095_0 - - llvm-openmp=17.0.2=h4dfa4b3_0 + - llvm-openmp=17.0.5=h4dfa4b3_0 - m4ri=20140914=h7ca028e_1005 - mpc=1.3.1=hfe3b2da_0 - mpfi=1.5.4=h9f54685_1001 - - mysql-libs=8.0.33=hca2cd23_5 + - mysql-libs=8.0.33=hca2cd23_6 - nss=3.94=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 - qd=2.3.22=h2cc385e_1004 - - sqlite=3.43.0=h2c6b66d_0 + - sqlite=3.44.2=h2c6b66d_0 - tachyon=0.99b6=0 - texinfo=7.0=pl5321h0f457ee_0 - tktable=2.10=h0c5db8f_5 @@ -191,7 +191,7 @@ dependencies: - 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.6=h8ee46fc_0 + - 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 @@ -199,19 +199,18 @@ dependencies: - attrs=23.1.0=pyh71513ae_1 - automake=1.16.5=pl5321ha770c72_0 - backcall=0.2.0=pyh9f0ad1d_0 - - backports=1.0=pyhd8ed1ab_3 - 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.1=pyhd8ed1ab_0 - - certifi=2023.7.22=pyhd8ed1ab_0 + - cachetools=5.3.2=pyhd8ed1ab_0 + - certifi=2023.11.17=pyhd8ed1ab_0 - chardet=5.2.0=py39hf3d152e_1 - - charset-normalizer=3.3.0=pyhd8ed1ab_0 + - charset-normalizer=3.3.2=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_0 - cycler=0.12.1=pyhd8ed1ab_0 - cysignals=1.11.2=py39h1ce0973_3 - - cython=3.0.2=py39h3d6467e_2 + - cython=3.0.6=py39h3d6467e_0 - dbus=1.13.6=h5008d03_3 - debugpy=1.8.0=py39h3d6467e_1 - decorator=5.1.1=pyhd8ed1ab_0 @@ -221,49 +220,49 @@ dependencies: - eclib=20230424=hdef1efb_0 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 - - exceptiongroup=1.1.3=pyhd8ed1ab_0 + - exceptiongroup=1.2.0=pyhd8ed1ab_0 - execnet=2.0.2=pyhd8ed1ab_0 - - executing=1.2.0=pyhd8ed1ab_0 - - filelock=3.12.4=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.4=h8780c30_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.0=hfc55251_0 + - glib-tools=2.78.1=hfc55251_0 - gmpy2=2.1.2=py39h376b7d2_1 - gxx_linux-64=12.3.0=h8a814eb_2 - - idna=3.4=pyhd8ed1ab_0 + - 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=py39hf3d152e_3 - - jupyterlab_widgets=1.1.7=pyhd8ed1ab_0 + - jupyterlab_widgets=3.0.9=pyhd8ed1ab_0 - kiwisolver=1.4.5=py39h7633fee_1 - lcalc=2.0.5=h6a8a7c6_1 - - lcms2=2.15=h7f713cb_2 - - libblas=3.9.0=18_linux64_openblas - - libboost-devel=1.82.0=h00ab1b0_6 + - lcms2=2.15=hb7c19ff_3 + - libblas=3.9.0=20_linux64_openblas + - libboost-devel=1.83.0=h00ab1b0_0 - libbrial=1.2.12=h3155cbd_1 - libclang13=15.0.7=default_h9986a30_3 - libcups=2.3.3=h4637d8d_4 - - libcurl=8.3.0=hca28451_0 - - libfido2=1.13.0=h2e5b2a7_0 - - libpq=15.4=hfc447b1_2 + - libcurl=8.4.0=hca28451_0 + - libfido2=1.14.0=h4446dcb_0 + - libpq=16.1=hfc447b1_0 - libsystemd0=254=h3516f8a_0 - - libwebp=1.3.2=hdffd6e0_0 + - libwebp=1.3.2=h658648e_1 - m4rie=20150908=h7ca028e_1001 - markupsafe=2.1.3=py39hd1e30aa_1 - maxima=5.45.0=h9d73b02_3 - - mistune=3.0.1=pyhd8ed1ab_0 + - mistune=3.0.2=pyhd8ed1ab_0 - mpmath=1.3.0=pyhd8ed1ab_0 - munkres=1.1.4=pyh9f0ad1d_0 - - nest-asyncio=1.5.6=pyhd8ed1ab_0 - - networkx=2.8.8=pyhd8ed1ab_0 - - openblas=0.3.24=pthreads_h7a3da1a_0 + - nest-asyncio=1.5.8=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 @@ -274,33 +273,33 @@ dependencies: - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 - pluggy=1.3.0=pyhd8ed1ab_0 - ply=3.11=py_1 - - prometheus_client=0.17.1=pyhd8ed1ab_0 + - prometheus_client=0.19.0=pyhd8ed1ab_0 - psutil=5.9.5=py39hd1e30aa_1 - 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.0=pyhd8ed1ab_0 + - pycodestyle=2.11.1=pyhd8ed1ab_0 - pycparser=2.21=pyhd8ed1ab_0 - - pygments=2.16.1=pyhd8ed1ab_0 + - pygments=2.17.2=pyhd8ed1ab_0 - pyparsing=3.1.1=pyhd8ed1ab_0 - - pyrsistent=0.19.3=py39hd1e30aa_1 + - pyrsistent=0.20.0=py39hd1e30aa_0 - pysocks=1.7.1=pyha2e5f31_6 - pyspellchecker=0.7.2=pyhd8ed1ab_0 - - python-fastjsonschema=2.18.1=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 - - pyzmq=25.1.1=py39hb257651_1 + - pyzmq=25.1.1=py39h8c080ef_2 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.10.4=py39h9fdd4d6_0 + - rpds-py=0.13.1=py39h9fdd4d6_0 - rw=0.8=h516909a_1001 - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 - sagetex=3.6.1=pyhd8ed1ab_0 - send2trash=1.8.2=pyh41d4057_0 - - setuptools=63.4.3=py39hf3d152e_0 + - setuptools=68.2.2=pyhd8ed1ab_0 - simplegeneric=0.8.1=py_1 - singular=4.2.1.p3=h1ea75ed_2 - six=1.16.0=pyh6c4a22f_0 @@ -309,23 +308,25 @@ dependencies: - soupsieve=2.5=pyhd8ed1ab_1 - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_0 - sympow=2.023.6=hc6ab17c_3 - - tbb=2021.10.0=h00ab1b0_1 + - tbb=2021.10.0=h00ab1b0_2 - toml=0.10.2=pyhd8ed1ab_0 - tomli=2.0.1=pyhd8ed1ab_0 - tornado=6.3.3=py39hd1e30aa_1 - - traitlets=5.11.2=pyhd8ed1ab_0 - - trove-classifiers=2023.9.19=pyhd8ed1ab_0 + - traitlets=5.13.0=pyhd8ed1ab_0 + - trove-classifiers=2023.11.22=pyhd8ed1ab_0 - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 - typing_extensions=4.8.0=pyha770c72_0 - typing_utils=0.1.0=pyhd8ed1ab_0 - - tzlocal=5.1=py39hf3d152e_0 + - tzlocal=5.2=py39hf3d152e_0 - unicodedata2=15.1.0=py39hd1e30aa_0 - uri-template=1.3.0=pyhd8ed1ab_0 - vcversioner=2.16.0.0=py_1 + - wcwidth=0.2.12=pyhd8ed1ab_0 - webcolors=1.13=pyhd8ed1ab_0 - webencodings=0.5.1=pyhd8ed1ab_2 - websocket-client=1.6.4=pyhd8ed1ab_0 - - wheel=0.41.2=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 @@ -333,142 +334,137 @@ dependencies: - xorg-libxrender=0.9.11=hd590300_0 - xorg-libxt=1.3.0=hd590300_1 - zipp=3.17.0=pyhd8ed1ab_0 - - anyio=4.0.0=pyhd8ed1ab_0 - - asttokens=2.4.0=pyhd8ed1ab_0 + - anyio=4.1.0=pyhd8ed1ab_0 + - asttokens=2.4.1=pyhd8ed1ab_0 - async-lru=2.0.4=pyhd8ed1ab_0 - - babel=2.12.1=pyhd8ed1ab_1 - - backports.functools_lru_cache=1.6.5=pyhd8ed1ab_0 + - babel=2.13.1=pyhd8ed1ab_0 - beautifulsoup4=4.12.2=pyha770c72_0 - beniget=0.4.1=pyhd8ed1ab_0 - bleach=6.1.0=pyhd8ed1ab_0 - - boost-cpp=1.82.0=h44aadfe_6 + - boost-cpp=1.83.0=h44aadfe_0 - brial=1.2.12=pyh694c41f_1 - cached-property=1.5.2=hd8ed1ab_1 - - cairo=1.16.0=h0c91306_1017 - - cattrs=23.1.2=pyhd8ed1ab_0 + - cairo=1.18.0=h3faef2a_0 - cffi=1.16.0=py39h7a31438_0 - - cmake=3.27.6=hcfe8598_0 + - cmake=3.27.8=hcfe8598_0 - comm=0.1.4=pyhd8ed1ab_0 - cppy=1.2.1=pyhd8ed1ab_0 - - curl=8.3.0=hca28451_0 + - curl=8.4.0=hca28451_0 - cypari2=2.1.3=py39h1698a45_2 - deprecation=2.1.0=pyh9f0ad1d_0 - - fonttools=4.43.1=py39hd1e30aa_0 + - fonttools=4.45.1=py39hd1e30aa_0 - fortran-compiler=1.6.0=heb67821_0 - - glib=2.78.0=hfc55251_0 + - glib=2.78.1=hfc55251_0 - importlib-metadata=6.8.0=pyha770c72_0 - - importlib_resources=6.1.0=pyhd8ed1ab_0 + - importlib_resources=6.1.1=pyhd8ed1ab_0 - jedi=0.19.1=pyhd8ed1ab_0 - jinja2=3.1.2=pyhd8ed1ab_1 - - jupyterlab_pygments=0.2.2=pyhd8ed1ab_0 - - libcblas=3.9.0=18_linux64_openblas + - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 + - libcblas=3.9.0=20_linux64_openblas - libclang=15.0.7=default_h7634d5b_3 - - libgd=2.3.3=he9388d3_8 - - liblapack=3.9.0=18_linux64_openblas + - 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.2=py39hb9d737c_2 + - 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.0.1=py39h444a776_1 - - pip=23.2.1=pyhd8ed1ab_0 + - pillow=10.1.0=py39had0adad_0 + - pip=23.3.1=pyhd8ed1ab_0 + - platformdirs=4.0.0=pyhd8ed1ab_0 - pplpy=0.8.7=py39hba3e9e5_0 - primecountpy=0.1.0=py39h7633fee_4 + - prompt-toolkit=3.0.24=pyha770c72_0 - pulseaudio-client=16.1=hb77b528_5 - pybind11=2.11.1=py39h7633fee_2 - pyproject-api=1.6.1=pyhd8ed1ab_0 - - pytest=7.4.2=pyhd8ed1ab_0 + - pytest=7.4.3=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - pytz-deprecation-shim=0.1.0.post0=py39hf3d152e_4 - - referencing=0.30.2=pyhd8ed1ab_0 + - referencing=0.31.0=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - sagemath-db-conway-polynomials=0.5.0=ha878542_1 - - sip=6.7.11=py39h3d6467e_1 + - sip=6.7.12=py39h3d6467e_0 - sympy=1.12=pypyh9d50eac_103 - - terminado=0.17.1=pyh41d4057_0 + - terminado=0.18.0=pyh0d859eb_0 - tinycss2=1.2.1=pyhd8ed1ab_0 - typing-extensions=4.8.0=hd8ed1ab_0 - - urllib3=2.0.6=pyhd8ed1ab_0 + - urllib3=2.1.0=pyhd8ed1ab_0 - xorg-libxi=1.7.10=h7f98852_0 - argon2-cffi-bindings=21.2.0=py39hd1e30aa_4 - arrow=1.3.0=pyhd8ed1ab_0 + - cattrs=23.2.2=pyhd8ed1ab_0 - dsdp=5.8=hd9d9efa_1203 - fflas-ffpack=2.4.3=h912ac81_2 - fqdn=1.5.1=pyhd8ed1ab_0 - git=2.42.0=pl5321h86e50cf_0 - gsl=2.7=he838d99_0 - - gstreamer=1.22.6=h98fc4e7_2 - - harfbuzz=8.2.1=h3d44ed6_0 + - gstreamer=1.22.7=h98fc4e7_0 + - harfbuzz=8.3.0=h3d44ed6_0 - hatchling=1.18.0=pyhd8ed1ab_0 - iml=1.0.5=hd75c201_1003 - - importlib-resources=6.1.0=pyhd8ed1ab_0 + - importlib-resources=6.1.1=pyhd8ed1ab_0 - importlib_metadata=6.8.0=hd8ed1ab_0 - - jsonschema-specifications=2023.7.1=pyhd8ed1ab_0 + - jsonschema-specifications=2023.11.1=pyhd8ed1ab_0 + - jupyter_core=5.5.0=py39hf3d152e_0 - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1 - - liblapacke=3.9.0=18_linux64_openblas - - lsprotocol=2023.0.0b1=pyhd8ed1ab_0 - - numpy=1.26.0=py39h474f0d3_0 - - platformdirs=3.11.0=pyhd8ed1ab_0 + - liblapacke=3.9.0=20_linux64_openblas + - numpy=1.26.2=py39h474f0d3_0 + - prompt_toolkit=3.0.24=hd8ed1ab_0 - pyqt5-sip=12.12.2=py39h3d6467e_5 - - pytest-xdist=3.3.1=pyhd8ed1ab_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=h9e50725_1 - - wcwidth=0.2.8=pyhd8ed1ab_0 + - virtualenv=20.24.7=pyhd8ed1ab_0 - xorg-libxtst=1.2.3=h7f98852_1002 - argon2-cffi=23.1.0=pyhd8ed1ab_0 - - blas-devel=3.9.0=18_linux64_openblas - - contourpy=1.1.1=py39h7633fee_1 + - blas-devel=3.9.0=20_linux64_openblas + - contourpy=1.2.0=py39h7633fee_0 - cvxopt=1.3.2=py39hef4d4b4_1 - - fpylll=0.5.9=py39hf60ab73_1 + - fpylll=0.6.0=py39h2525e16_1 - giac=1.9.0.21=h673759e_1 - - gst-plugins-base=1.22.6=h8e1006c_2 + - gst-plugins-base=1.22.7=h8e1006c_0 + - ipython=8.8.0=pyh41d4057_0 - isoduration=20.11.0=pyhd8ed1ab_0 - - jsonschema=4.19.1=pyhd8ed1ab_0 - - jupyter_core=5.3.2=py39hf3d152e_0 + - jsonschema=4.20.0=pyhd8ed1ab_0 + - jupyter_client=8.6.0=pyhd8ed1ab_0 - linbox=1.6.3=h9d78c56_7 - - openjdk=20.0.2=hfea2f88_1 + - lsprotocol=2023.0.0=pyhd8ed1ab_0 + - openjdk=21.0.1=haa376d0_0 - pango=1.50.14=ha41ecd1_2 - - pooch=1.7.0=pyhd8ed1ab_4 - - prompt-toolkit=3.0.39=pyha770c72_0 - pythran=0.14.0=py39hda80f44_1 + - scipy=1.11.4=py39h474f0d3_0 - setuptools_scm=8.0.4=hd8ed1ab_0 - - typeguard=3.0.2=pyhd8ed1ab_0 - - virtualenv=20.24.4=pyhd8ed1ab_0 - - blas=2.118=openblas + - tox=4.11.3=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.19.1=pyhd8ed1ab_0 - - jupyter_client=8.3.1=pyhd8ed1ab_0 - - matplotlib-base=3.8.0=py39he9076e7_1 + - jsonschema-with-format-nongpl=4.20.0=pyhd8ed1ab_0 + - matplotlib-base=3.8.2=py39he9076e7_0 - nbformat=5.9.2=pyhd8ed1ab_0 - - prompt_toolkit=3.0.39=hd8ed1ab_0 - - pygls=1.1.1=pyhd8ed1ab_0 - - qt-main=5.15.8=hc47bfe8_16 - - r-base=4.3.1=h639d9d3_5 - - scipy=1.10.1=py39h6183b62_3 - - tox=4.11.3=pyhd8ed1ab_0 - - ipython=8.16.1=pyh0d859eb_0 - - jupyter_events=0.7.0=pyhd8ed1ab_2 + - pygls=1.2.0=pyhd8ed1ab_0 + - qt-main=5.15.8=h82b777d_17 + - r-base=4.3.2=h93585b2_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 - - ipykernel=6.25.2=pyh2140261_0 - - matplotlib=3.8.0=py39hf3d152e_1 - - nbconvert-core=7.9.2=pyhd8ed1ab_0 - - jupyter_server=2.7.3=pyhd8ed1ab_1 - - nbconvert-pandoc=7.9.2=pyhd8ed1ab_0 + - matplotlib=3.8.2=py39hf3d152e_0 + - nbconvert-core=7.11.0=pyhd8ed1ab_0 + - jupyter_server=2.10.1=pyhd8ed1ab_0 + - nbconvert-pandoc=7.11.0=pyhd8ed1ab_0 - jupyter-lsp=2.2.0=pyhd8ed1ab_0 - - jupyterlab_server=2.25.0=pyhd8ed1ab_0 - - nbconvert=7.9.2=pyhd8ed1ab_0 + - jupyterlab_server=2.25.2=pyhd8ed1ab_0 + - nbconvert=7.11.0=pyhd8ed1ab_0 - notebook-shim=0.2.3=pyhd8ed1ab_0 - - jupyterlab=4.0.6=pyhd8ed1ab_0 - - notebook=7.0.4=pyhd8ed1ab_0 - - widgetsnbextension=3.6.6=pyhd8ed1ab_0 - - ipywidgets=7.8.0=pyhd8ed1ab_0 - - jupyter-jsmol=2022.1.0=pyhd8ed1ab_0 - - esbonio=0.16.1=pyhd8ed1ab_0 + - jupyterlab=4.0.9=pyhd8ed1ab_0 + - notebook=7.0.6=pyhd8ed1ab_0 + - esbonio=0.16.2=pyhd8ed1ab_0 - jupyter_sphinx=0.4.0=py39hf3d152e_1 - sphinx-basic-ng=1.0.0b2=pyhd8ed1ab_1 - furo=2023.9.10=pyhd8ed1ab_0 diff --git a/src/environment-dev-3.9-macos-arm.yml b/src/environment-dev-3.9-macos-arm64.yml similarity index 69% rename from src/environment-dev-3.9-macos-arm.yml rename to src/environment-dev-3.9-macos-arm64.yml index 9d6aa75207d..d1ea4b6e8ac 100644 --- a/src/environment-dev-3.9-macos-arm.yml +++ b/src/environment-dev-3.9-macos-arm64.yml @@ -1,22 +1,21 @@ # Generated by conda-lock. # platform: osx-arm64 -# input_hash: 4b97fbc5dd589774772e4d2a4bf2288dcb9deee653a9b32cf3a24ac7f27cdf46 +# input_hash: 884dc9dbdc4d48a49dfbf58e989445ee37529c22ad468a9e39a9000ccb825e5b channels: - conda-forge dependencies: - _r-mutex=1.0.1=anacondar_1 - - bc=1.07.1=h3422bc3_0 - - bzip2=1.0.8=h3422bc3_4 - - c-ares=1.20.1=h93a5062_0 - - ca-certificates=2023.7.22=hf0a4a13_0 + - bzip2=1.0.8=h93a5062_5 + - c-ares=1.22.1=h93a5062_0 + - ca-certificates=2023.11.17=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=hab24e00_0 + - font-ttf-ubuntu=0.83=h77eed37_1 - fribidi=1.0.10=h27ca646_0 - - gh=2.36.0=h75b854d_0 + - gh=2.39.1=h75b854d_0 - giflib=5.2.1=h1a8c8d9_3 - jpeg=9e=h1a8c8d9_3 - libatomic_ops=7.6.14=h1a8c8d9_0 @@ -33,13 +32,12 @@ dependencies: - libuv=1.46.0=hb547adb_0 - libwebp-base=1.2.4=h1a8c8d9_0 - libzlib=1.2.13=h53f4e23_5 - - llvm-openmp=17.0.2=h1c12783_0 + - llvm-openmp=17.0.5=hcd81f8e_0 - m4=1.4.18=h642e427_1001 - make=4.3=he57ea6c_1 - mathjax=3.2.2=hce30654_0 - metis=5.1.0=h13dd4ca_1007 - nauty=2.7.2=h3422bc3_0 - - ncurses=6.4=h7ea286d_0 - palp=2.20=h27ca646_0 - pandoc=3.1.3=hce30654_0 - pari-elldata=0.0.20161017=0 @@ -55,6 +53,7 @@ dependencies: - 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 - xorg-libxau=1.0.11=hb547adb_0 @@ -68,7 +67,7 @@ dependencies: - gengetopt=2.23=hbdafb3b_0 - gettext=0.21.1=h0186832_0 - gf2x=1.3.0=hdaa854c_2 - - gmp=6.2.1=h9f76cd9_0 + - gmp=6.3.0=h965bd2d_0 - graphite2=1.3.13=h9f76cd9_1001 - icu=70.1=h6b3803e_0 - isl=0.25=h9a09cb3_0 @@ -77,29 +76,25 @@ dependencies: - libbrotlidec=1.1.0=hb547adb_1 - libbrotlienc=1.1.0=hb547adb_1 - libcbor=0.10.2=hb7217d7_0 - - libedit=3.1.20191231=hc8eb9b7_2 - libgfortran5=13.2.0=hf226fd6_1 - libpng=1.6.39=h76d750c_0 - - libsqlite=3.43.0=hb31c410_0 + - libsqlite=3.44.2=h091b4b1_0 - libxcb=1.13=h9b22ae9_1004 - lrcalc=2.1=hb7217d7_5 + - ncurses=6.4=h463b476_2 - ninja=1.11.1=hffc8910_0 - - openjdk=20.0.2=hbe7ddab_2 - - openssl=3.1.3=h53f4e23_0 + - openjdk=21.0.1=hed44d8b_0 + - openssl=3.2.0=h0d3ecfb_0 - pari-seadata=0.0.20090618=0 - pcre2=10.40=hb34f9b4_0 - pixman=0.42.2=h13dd4ca_0 - primesieve=11.0=hb7217d7_0 - qhull=2020.2=hc021e02_2 - - readline=8.2=h92ec313_1 - symmetrica=3.0.1=hb7217d7_0 - tapi=1100.0.11=he4954df_0 - - tar=1.34=h7cb298e_1 - - tbb=2021.10.0=h1995070_1 - - texinfo=7.0=pl5321h9ea1dce_0 - threejs-sage=122=hd8ed1ab_2 - - tk=8.6.13=hb31c410_0 - - zeromq=4.3.4=hbdafb3b_1 + - 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 @@ -107,132 +102,150 @@ dependencies: - brotli-bin=1.1.0=hb547adb_1 - bwidget=1.9.14=hce30654_1 - cddlib=1!0.94m=h6d7a090_0 - - ecl=21.2.1=h8492d4d_2 - ecm=7.0.4=h47c7c1a_1002 - fonts-conda-ecosystem=1=0 - freetype=2.12.1=hadb7bae_2 - - gap-core=4.12.2=he8f4e70_3 - givaro=4.1.1=h0cdca34_3 - glpk=5.0=h6d7a090_0 - jmol=14.32.10=hce30654_0 - - krb5=1.20.1=h69eda48_0 - - libfido2=1.13.0=h19e3c78_0 + - libedit=3.1.20191231=hc8eb9b7_2 + - libfido2=1.14.0=h8d15234_0 - libgfortran=5.0.0=13_2_0_hd922786_1 - - libglib=2.78.0=h24e9cb9_0 + - libglib=2.78.1=hd9b11f9_0 - libhomfly=1.02r6=h27ca646_0 - - libnghttp2=1.52.0=hae82a92_0 + - libnghttp2=1.58.0=ha4dd798_0 - libssh2=1.11.0=h7a5bd25_0 - libtiff=4.5.0=h5dffbdd_2 - libxml2=2.10.3=h67585b2_4 - m4ri=20140914=h17b34a0_1005 - - mpfr=4.2.0=he09a6ba_0 + - mpfr=4.2.1=h9546428_0 - ntl=11.4.3=hbb3f309_1 - - pari=2.15.4=haeeeed7_2_pthread - primecount=7.6=hb6e4faa_0 - - python=3.9.18=hfa1ae8a_0_cpython + - readline=8.2=h92ec313_1 - sigtool=0.1.3=h44b9a77_0 - - sqlite=3.43.0=h203b68d_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 + - libbrial=1.2.12=ha7f5006_1 + - libflint=2.9.0=h173eafc_ntl_100 + - libllvm16=16.0.1=h1e5164c_0 + - libopenblas=0.3.25=openmp_h6c19121_0 + - libwebp=1.2.4=h999c80f_1 + - m4rie=20150908=h17b34a0_1001 + - mpc=1.3.1=h91ba8db_0 + - mpfi=1.5.4=hbde5f5b_1001 + - 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=hfa1ae8a_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 + - arb=2.23.0=he5401aa_0 - attrs=23.1.0=pyh71513ae_1 - backcall=0.2.0=pyh9f0ad1d_0 - - backports=1.0=pyhd8ed1ab_3 - - brotli=1.1.0=hb547adb_1 + - brial=1.2.12=pyh694c41f_1 - brotli-python=1.1.0=py39hb198ff7_1 - cached_property=1.5.2=pyha770c72_1 - - cachetools=5.3.1=pyhd8ed1ab_0 - - certifi=2023.7.22=pyhd8ed1ab_0 + - cachetools=5.3.2=pyhd8ed1ab_0 + - cairo=1.16.0=h73a0509_1014 + - certifi=2023.11.17=pyhd8ed1ab_0 - chardet=5.2.0=py39h2804cbe_1 - - charset-normalizer=3.3.0=pyhd8ed1ab_0 + - charset-normalizer=3.3.2=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_0 - cycler=0.12.1=pyhd8ed1ab_0 - cysignals=1.11.2=py39h65fc70a_3 - - cython=3.0.2=py39hb198ff7_2 + - cython=3.0.6=py39h4ce5507_0 - debugpy=1.8.0=py39hb198ff7_1 - decorator=5.1.1=pyhd8ed1ab_0 - defusedxml=0.7.1=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - docutils=0.20.1=py39h2804cbe_2 + - eclib=20230424=haeb5157_0 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 - - exceptiongroup=1.1.3=pyhd8ed1ab_0 + - exceptiongroup=1.2.0=pyhd8ed1ab_0 - execnet=2.0.2=pyhd8ed1ab_0 - - executing=1.2.0=pyhd8ed1ab_0 - - fftw=3.3.10=nompi_h3046061_108 - - filelock=3.12.4=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=h82840c6_0 + - fplll=5.4.5=hb7d509d_0 - gap-defaults=4.12.2=hce30654_3 - gast=0.5.4=pyhd8ed1ab_0 - - gfan=0.6.2=hec08f5c_1003 - - idna=3.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=1.1.7=pyhd8ed1ab_0 + - jupyterlab_widgets=3.0.9=pyhd8ed1ab_0 - kiwisolver=1.4.5=py39hbd775c9_1 - lcalc=2.0.5=hc94e8e6_1 - - lcms2=2.15=h481adae_0 - - libbrial=1.2.12=ha7f5006_1 + - ld64_osx-arm64=609=h297e91e_13 + - libblas=3.9.0=20_osxarm64_openblas + - libclang-cpp16=16.0.1=default_he7141eb_0 - libcurl=8.1.2=h912dcd9_0 - - libflint=2.9.0=h173eafc_ntl_100 - - libllvm15=15.0.7=h62b9111_1 - - libopenblas=0.3.24=openmp_hd76b1f2_0 - - libwebp=1.2.4=h999c80f_1 - - m4rie=20150908=h17b34a0_1001 + - libgd=2.3.3=h90fb8ed_4 + - llvm-tools=16.0.1=h1e5164c_0 - markupsafe=2.1.3=py39h0f82c59_1 - maxima=5.45.0=h6032a66_2 - - mistune=3.0.1=pyhd8ed1ab_0 - - mpc=1.3.1=h91ba8db_0 - - mpfi=1.5.4=hbde5f5b_1001 + - mistune=3.0.2=pyhd8ed1ab_0 - mpmath=1.3.0=pyhd8ed1ab_0 - munkres=1.1.4=pyh9f0ad1d_0 - - nest-asyncio=1.5.6=pyhd8ed1ab_0 - - networkx=2.8.8=pyhd8ed1ab_0 - - openjpeg=2.5.0=hbc2ba62_2 + - nest-asyncio=1.5.8=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 - pathspec=0.11.2=pyhd8ed1ab_0 - pickleshare=0.7.5=py_1003 - - pkg-config=0.29.2=hab62308_1008 + - pillow=9.4.0=py39h8bd98a6_1 + - pkgconfig=1.5.5=pyhd8ed1ab_4 - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 - pluggy=1.3.0=pyhd8ed1ab_0 - ply=3.11=py_1 - - ppl=1.2=h8b147cf_1006 - - prometheus_client=0.17.1=pyhd8ed1ab_0 + - prometheus_client=0.19.0=pyhd8ed1ab_0 - psutil=5.9.5=py39h0f82c59_1 - 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.0=pyhd8ed1ab_0 + - pycodestyle=2.11.1=pyhd8ed1ab_0 - pycparser=2.21=pyhd8ed1ab_0 - - pygments=2.16.1=pyhd8ed1ab_0 + - pygments=2.17.2=pyhd8ed1ab_0 - pyparsing=3.1.1=pyhd8ed1ab_0 - - pyrsistent=0.19.3=py39h0f82c59_1 + - pyrsistent=0.20.0=py39h17cfd9d_0 - pysocks=1.7.1=pyha2e5f31_6 - pyspellchecker=0.7.2=pyhd8ed1ab_0 - - python-fastjsonschema=2.18.1=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 - - pyzmq=25.1.1=py39h1e134f0_1 - - qd=2.3.22=hbec66e7_1004 + - pyzmq=25.1.1=py39he0a3c8b_2 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.10.4=py39h8fec3ad_0 + - rpds-py=0.13.1=py39h8fec3ad_0 - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 - sagetex=3.6.1=pyhd8ed1ab_0 - - setuptools=63.4.3=py39h2804cbe_0 + - setuptools=68.2.2=pyhd8ed1ab_0 - simplegeneric=0.8.1=py_1 + - singular=4.2.1.p3=h3b80c97_2 - six=1.16.0=pyh6c4a22f_0 - sniffio=1.3.0=pyhd8ed1ab_0 - snowballstemmer=2.2.0=pyhd8ed1ab_0 @@ -241,172 +254,150 @@ dependencies: - sympow=2.023.6=hb0babe8_3 - tomli=2.0.1=pyhd8ed1ab_0 - tornado=6.3.3=py39h0f82c59_1 - - traitlets=5.11.2=pyhd8ed1ab_0 - - trove-classifiers=2023.9.19=pyhd8ed1ab_0 + - traitlets=5.13.0=pyhd8ed1ab_0 + - trove-classifiers=2023.11.22=pyhd8ed1ab_0 - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 - typing_extensions=4.8.0=pyha770c72_0 - typing_utils=0.1.0=pyhd8ed1ab_0 - - tzlocal=5.1=py39h2804cbe_0 + - tzlocal=5.2=py39h2804cbe_0 - unicodedata2=15.1.0=py39h0f82c59_0 - uri-template=1.3.0=pyhd8ed1ab_0 - vcversioner=2.16.0.0=py_1 + - wcwidth=0.2.12=pyhd8ed1ab_0 - webcolors=1.13=pyhd8ed1ab_0 - webencodings=0.5.1=pyhd8ed1ab_2 - websocket-client=1.6.4=pyhd8ed1ab_0 - - wheel=0.41.2=pyhd8ed1ab_0 + - wheel=0.42.0=pyhd8ed1ab_0 + - widgetsnbextension=4.0.9=pyhd8ed1ab_0 - zipp=3.17.0=pyhd8ed1ab_0 - - anyio=4.0.0=pyhd8ed1ab_0 - - arb=2.23.0=he5401aa_0 - - asttokens=2.4.0=pyhd8ed1ab_0 + - anyio=4.1.0=pyhd8ed1ab_0 + - asttokens=2.4.1=pyhd8ed1ab_0 - async-lru=2.0.4=pyhd8ed1ab_0 - - babel=2.12.1=pyhd8ed1ab_1 - - backports.functools_lru_cache=1.6.5=pyhd8ed1ab_0 + - babel=2.13.1=pyhd8ed1ab_0 - beautifulsoup4=4.12.2=pyha770c72_0 - beniget=0.4.1=pyhd8ed1ab_0 - bleach=6.1.0=pyhd8ed1ab_0 - - brial=1.2.12=pyh694c41f_1 - cached-property=1.5.2=hd8ed1ab_1 - - cairo=1.16.0=h73a0509_1014 - - cattrs=23.1.2=pyhd8ed1ab_0 + - cctools_osx-arm64=973.0.1=h7a0f565_13 - cffi=1.16.0=py39he153c15_0 + - clang-16=16.0.1=default_he7141eb_0 - 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 - - eclib=20230424=haeb5157_0 - - fonttools=4.43.1=py39h17cfd9d_0 - - fplll=5.4.4=h29209e0_0 - - gfortran_impl_osx-arm64=12.3.0=hbbb9e1e_1 - - gmpy2=2.1.2=py39h0b4f9c6_1 + - fonttools=4.45.1=py39h17cfd9d_0 + - harfbuzz=6.0.0=hddbc195_0 - importlib-metadata=6.8.0=pyha770c72_0 - - importlib_resources=6.1.0=pyhd8ed1ab_0 + - importlib_resources=6.1.1=pyhd8ed1ab_0 - jedi=0.19.1=pyhd8ed1ab_0 - jinja2=3.1.2=pyhd8ed1ab_1 - - jupyterlab_pygments=0.2.2=pyhd8ed1ab_0 - - ld64_osx-arm64=609=hc4dc95b_14 - - libblas=3.9.0=18_osxarm64_openblas - - libclang-cpp15=15.0.7=default_h5dc8d65_3 - - libgd=2.3.3=h90fb8ed_4 - - llvm-tools=15.0.7=h62b9111_1 + - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 + - ld64=609=h634c8be_13 + - 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.2=py39h02fc5c5_2 - - openblas=0.3.24=openmp_hce3e5ba_0 + - memory-allocator=0.1.3=py39h0f82c59_0 - overrides=7.4.0=pyhd8ed1ab_0 - pexpect=4.8.0=pyh1a96a4e_2 - - pillow=9.4.0=py39h8bd98a6_1 - - pip=23.2.1=pyhd8ed1ab_0 - - pkgconfig=1.5.5=pyhd8ed1ab_4 + - pip=23.3.1=pyhd8ed1ab_0 + - platformdirs=4.0.0=pyhd8ed1ab_0 + - pplpy=0.8.7=py39h1364912_0 - primecountpy=0.1.0=py39hbd775c9_4 + - prompt-toolkit=3.0.24=pyha770c72_0 - pybind11=2.11.1=py39hbd775c9_2 - pyobjc-core=10.0=py39h4d1a642_0 - pyproject-api=1.6.1=pyhd8ed1ab_0 - - pytest=7.4.2=pyhd8ed1ab_0 + - pytest=7.4.3=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - pytz-deprecation-shim=0.1.0.post0=py39h2804cbe_4 - - referencing=0.30.2=pyhd8ed1ab_0 + - referencing=0.31.0=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - sagemath-db-conway-polynomials=0.5.0=h4653dfc_1 - - singular=4.2.1.p3=h3b80c97_2 - - terminado=0.17.1=pyhd1c38e8_0 + - sympy=1.12=pypyh9d50eac_103 + - terminado=0.18.0=pyh31c8845_0 - tinycss2=1.2.1=pyhd8ed1ab_0 - typing-extensions=4.8.0=hd8ed1ab_0 - - urllib3=2.0.6=pyhd8ed1ab_0 + - urllib3=2.1.0=pyhd8ed1ab_0 - argon2-cffi-bindings=21.2.0=py39h0f82c59_4 + - arpack=3.7.0=h58ebc17_2 - arrow=1.3.0=pyhd8ed1ab_0 - - cctools_osx-arm64=973.0.1=h2a25c60_14 - - clang-15=15.0.7=default_h5dc8d65_3 + - cattrs=23.2.2=pyhd8ed1ab_0 + - cctools=973.0.1=h4faf515_13 + - clang=16.0.1=h1e5164c_0 + - dsdp=5.8=h9397a75_1203 + - fflas-ffpack=2.4.3=h11f2abc_2 - fqdn=1.5.1=pyhd8ed1ab_0 - git=2.42.0=pl5321h46e2b6d_0 - - harfbuzz=6.0.0=hddbc195_0 + - gsl=2.7=h6e638da_0 - hatchling=1.18.0=pyhd8ed1ab_0 - - importlib-resources=6.1.0=pyhd8ed1ab_0 + - iml=1.0.5=hd52f0d1_1003 + - importlib-resources=6.1.1=pyhd8ed1ab_0 - importlib_metadata=6.8.0=hd8ed1ab_0 - - jsonschema-specifications=2023.7.1=pyhd8ed1ab_0 + - jsonschema-specifications=2023.11.1=pyhd8ed1ab_0 + - jupyter_core=5.5.0=py39h2804cbe_0 - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1 - - ld64=609=h89fa09d_14 - - libcblas=3.9.0=18_osxarm64_openblas - - liblapack=3.9.0=18_osxarm64_openblas - - lsprotocol=2023.0.0b1=pyhd8ed1ab_0 - - platformdirs=3.11.0=pyhd8ed1ab_0 - - pplpy=0.8.7=py39h1364912_0 + - liblapacke=3.9.0=20_osxarm64_openblas + - numpy=1.26.2=py39heee92a0_0 + - pango=1.50.14=h6c112b8_0 + - prompt_toolkit=3.0.24=hd8ed1ab_0 - pyobjc-framework-cocoa=10.0=py39h4d1a642_1 - - pytest-xdist=3.3.1=pyhd8ed1ab_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 - - sympy=1.12=pypyh9d50eac_103 - - wcwidth=0.2.8=pyhd8ed1ab_0 - - argon2-cffi=23.1.0=pyhd8ed1ab_0 - - arpack=3.7.0=h58ebc17_2 - - cctools=973.0.1=hd1ac623_14 - - clang=15.0.7=hce30654_3 - - dsdp=5.8=h9397a75_1203 - - fflas-ffpack=2.4.3=h11f2abc_2 - - gsl=2.7=h6e638da_0 - - iml=1.0.5=hd52f0d1_1003 - - isoduration=20.11.0=pyhd8ed1ab_0 - - jsonschema=4.19.1=pyhd8ed1ab_0 - - jupyter_core=5.3.2=py39h2804cbe_0 - - liblapacke=3.9.0=18_osxarm64_openblas - - numpy=1.26.0=py39hc348b60_0 - - pango=1.50.14=h6c112b8_0 - - pooch=1.7.0=pyhd8ed1ab_4 - - prompt-toolkit=3.0.39=pyha770c72_0 - - send2trash=1.8.2=pyhd1c38e8_0 - - setuptools_scm=8.0.4=hd8ed1ab_0 - suitesparse=5.10.1=h7cd81ec_1 - - typeguard=3.0.2=pyhd8ed1ab_0 - - virtualenv=20.24.4=pyhd8ed1ab_0 - - blas-devel=3.9.0=18_osxarm64_openblas - - clangxx=15.0.7=default_h610c423_3 - - contourpy=1.1.1=py39hbd775c9_1 + - virtualenv=20.24.7=pyhd8ed1ab_0 + - argon2-cffi=23.1.0=pyhd8ed1ab_0 + - blas-devel=3.9.0=20_osxarm64_openblas + - clangxx=16.0.1=default_ha0f6327_0 + - contourpy=1.2.0=py39he9de807_0 - cvxopt=1.3.2=py39h76eeb2c_1 - - fpylll=0.5.9=py39h0530aee_1 + - fpylll=0.6.0=py39h947550b_1 - giac=1.9.0.21=h1c96721_1 - igraph=0.9.10=hcec9b84_1 - - jsonschema-with-format-nongpl=4.19.1=pyhd8ed1ab_0 - - jupyter_client=8.3.1=pyhd8ed1ab_0 + - ipython=8.8.0=pyhd1c38e8_0 + - isoduration=20.11.0=pyhd8ed1ab_0 + - jsonschema=4.20.0=pyhd8ed1ab_0 + - jupyter_client=8.6.0=pyhd8ed1ab_0 - linbox=1.6.3=h549c411_7 - - nbformat=5.9.2=pyhd8ed1ab_0 - - prompt_toolkit=3.0.39=hd8ed1ab_0 - - pygls=1.1.1=pyhd8ed1ab_0 - - scipy=1.10.1=py39ha6b2cbd_3 + - lsprotocol=2023.0.0=pyhd8ed1ab_0 + - scipy=1.11.4=py39h36c428d_0 + - send2trash=1.8.2=pyhd1c38e8_0 + - setuptools_scm=8.0.4=hd8ed1ab_0 - tox=4.11.3=pyhd8ed1ab_0 - - blas=2.118=openblas - - compiler-rt_osx-arm64=15.0.7=hf8d1dfb_1 - - ipython=8.16.1=pyh31c8845_0 - - jupyter_events=0.7.0=pyhd8ed1ab_2 - - matplotlib-base=3.8.0=py39h6685e7c_1 - - nbclient=0.8.0=pyhd8ed1ab_0 + - blas=2.120=openblas + - compiler-rt_osx-arm64=16.0.1=h30b49de_0 + - 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.0=pyhd8ed1ab_0 - rw=0.9=h3422bc3_0 - - compiler-rt=15.0.7=hf8d1dfb_1 - - ipykernel=6.25.2=pyh1050b4e_0 - - matplotlib=3.8.0=py39hdf13c20_1 - - nbconvert-core=7.9.2=pyhd8ed1ab_0 - - clang_osx-arm64=15.0.7=h77e971b_3 - - jupyter_server=2.7.3=pyhd8ed1ab_1 - - nbconvert-pandoc=7.9.2=pyhd8ed1ab_0 - - c-compiler=1.6.0=hd291e01_0 - - clangxx_osx-arm64=15.0.7=h768a7fd_3 + - compiler-rt=16.0.1=h30b49de_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_osx-arm64=16.0.1=hdccda30_1 + - nbconvert-core=7.11.0=pyhd8ed1ab_0 + - clangxx_osx-arm64=16.0.1=h0c1d50e_1 - gfortran_osx-arm64=12.3.0=h57527a5_1 + - jupyter_server=2.10.1=pyhd8ed1ab_0 + - nbconvert-pandoc=7.11.0=pyhd8ed1ab_0 + - gfortran=12.3.0=h1ca8e4b_1 - jupyter-lsp=2.2.0=pyhd8ed1ab_0 - - jupyterlab_server=2.25.0=pyhd8ed1ab_0 - - nbconvert=7.9.2=pyhd8ed1ab_0 + - jupyterlab_server=2.25.2=pyhd8ed1ab_0 + - nbconvert=7.11.0=pyhd8ed1ab_0 - notebook-shim=0.2.3=pyhd8ed1ab_0 - - cxx-compiler=1.6.0=h1995070_0 - - gfortran=12.3.0=h1ca8e4b_1 - - jupyterlab=4.0.6=pyhd8ed1ab_0 - pythran=0.14.0=py39h819cc4c_1 - r-base=4.1.3=h9c4d319_6 - fortran-compiler=1.6.0=h5a50232_0 - - notebook=7.0.4=pyhd8ed1ab_0 + - jupyterlab=4.0.9=pyhd8ed1ab_0 - rpy2=3.5.11=py39r41hf9b1952_0 - - compilers=1.6.0=hce30654_0 - - widgetsnbextension=3.6.6=pyhd8ed1ab_0 - - ipywidgets=7.8.0=pyhd8ed1ab_0 - - jupyter-jsmol=2022.1.0=pyhd8ed1ab_0 + - notebook=7.0.6=pyhd8ed1ab_0 - esbonio=0.16.2=pyhd8ed1ab_0 - jupyter_sphinx=0.1.4=py_0 - sphinx-basic-ng=1.0.0b2=pyhd8ed1ab_1 diff --git a/src/environment-dev-3.9-macos.yml b/src/environment-dev-3.9-macos.yml index 6de9b881461..b1d3ead0ea9 100644 --- a/src/environment-dev-3.9-macos.yml +++ b/src/environment-dev-3.9-macos.yml @@ -1,25 +1,25 @@ # Generated by conda-lock. # platform: osx-64 -# input_hash: 8964dc3816a1a8f02bd15584b85322b280d9570fb653054220117e384f3497ed +# input_hash: 717e926e3fb7aec030cc6fd2b13a4cf3de3e82ba34882443590d39643189d24f channels: - conda-forge dependencies: - _r-mutex=1.0.1=anacondar_1 - - bzip2=1.0.8=h0d85af4_4 - - c-ares=1.19.1=h0dc2134_0 - - ca-certificates=2023.7.22=h8857fd0_0 + - bzip2=1.0.8=h10d778d_5 + - c-ares=1.22.1=h10d778d_0 + - ca-certificates=2023.11.17=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=hab24e00_0 + - font-ttf-ubuntu=0.83=h77eed37_1 - fribidi=1.0.10=hbcb3906_0 - - gh=2.36.0=h990441c_0 + - gh=2.39.1=h990441c_0 - giflib=5.2.1=hb7f2c08_3 - icu=73.2=hf5e326d_0 - libatomic_ops=7.6.14=hb7f2c08_0 - - libboost-headers=1.82.0=h694c41f_6 + - libboost-headers=1.83.0=h694c41f_0 - libbrotlicommon=1.1.0=h0dc2134_1 - libcxx=16.0.6=hd57cbcb_0 - libdeflate=1.19=ha4e1b8e_0 @@ -34,13 +34,12 @@ dependencies: - libuv=1.46.0=h0c2f820_0 - libwebp-base=1.3.2=h0dc2134_0 - libzlib=1.2.13=h8a1eda9_5 - - llvm-openmp=17.0.2=hff08bdf_0 + - llvm-openmp=17.0.5=hb6ac08f_0 - m4=1.4.18=haf1e3a3_1001 - make=4.3=h22f3db7_1 - mathjax=3.2.2=h694c41f_0 - metis=5.1.0=he965462_1007 - nauty=2.7.2=h0d85af4_0 - - ncurses=6.4=hf0c8a7f_0 - palp=2.20=hbcb3906_0 - pari-elldata=0.0.20161017=0 - pari-galdata=0.0.20180411=0 @@ -56,6 +55,7 @@ dependencies: - sagemath-db-combinatorial-designs=20140630=1 - sagemath-db-graphs=20210214=hd8ed1ab_0 - sagemath-db-polytopes=20170220=1 + - tbb=2021.10.0=h1c7c39f_2 - three.js=122=hd8ed1ab_2 - tzdata=2023c=h71feb2d_0 - xorg-libxau=1.0.11=h0dc2134_0 @@ -69,7 +69,7 @@ dependencies: - gengetopt=2.23=he49afe7_0 - gettext=0.21.1=h8a4c099_0 - gf2x=1.3.0=hb2a7efb_2 - - gmp=6.2.1=h2e338ed_0 + - gmp=6.3.0=h93d8f39_0 - graphite2=1.3.13=h2e338ed_1001 - isl=0.25=hb486fe8_0 - lerc=4.0.0=hb486fe8_0 @@ -77,16 +77,16 @@ dependencies: - libbrotlidec=1.1.0=h0dc2134_1 - libbrotlienc=1.1.0=h0dc2134_1 - libcbor=0.10.2=hf0c8a7f_0 - - libedit=3.1.20191231=h0678c8f_2 - libgfortran5=13.2.0=h2873a65_1 - libpng=1.6.39=ha978bb4_0 - - libsqlite=3.43.0=h58db7d2_0 + - libsqlite=3.44.2=h92b6c6a_0 - libxcb=1.15=hb7f2c08_0 - - libxml2=2.11.5=h3346baf_1 + - libxml2=2.11.6=hc0ae0f7_0 - lrcalc=2.1=hf0c8a7f_5 + - ncurses=6.4=h93d8f39_2 - ninja=1.11.1=hb8565cd_0 - - openjdk=20.0.2=h7d26f99_2 - - openssl=3.1.3=h8a1eda9_0 + - openjdk=21.0.1=hf4d7fad_0 + - openssl=3.2.0=hd75f5a5_0 - pandoc=3.1.3=h9d075a6_0 - pari-seadata=0.0.20090618=0 - pcre2=10.40=h1c4e4bc_0 @@ -94,150 +94,165 @@ dependencies: - pkg-config=0.29.2=ha3d46e9_1008 - primesieve=11.0=hf0c8a7f_0 - qhull=2020.2=h940c156_2 - - readline=8.2=h9e318b2_1 - symmetrica=3.0.1=hf0c8a7f_0 - tapi=1100.0.11=h9ce4665_0 - - tbb=2021.10.0=h1c7c39f_1 - - texinfo=7.0=pl5321hc47821c_0 - threejs-sage=122=hd8ed1ab_2 - - tk=8.6.13=hef22860_0 - - zeromq=4.3.4=he49afe7_1 + - 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 - - ecl=21.2.1=hd029580_2 - ecm=7.0.4=h343d7f2_1002 - fonts-conda-ecosystem=1=0 - freetype=2.12.1=h60636b9_2 - - gap-core=4.12.2=hc16eb5f_3 - givaro=4.1.1=h0a799c6_3 - glpk=5.0=h3cb5acd_0 - jmol=14.32.9=h694c41f_0 - - krb5=1.21.2=hb884880_0 - - libboost=1.82.0=hf0c313a_6 - - libfido2=1.13.0=h14e1388_0 + - libboost=1.83.0=hf44e908_0 + - libedit=3.1.20191231=h0678c8f_2 + - libfido2=1.14.0=h3cbcf74_0 - libgfortran=5.0.0=13_2_0_h97931a8_1 - - libglib=2.78.0=hc62aa5d_0 + - libglib=2.78.1=h6d9ecee_0 - libhomfly=1.02r6=hc929b4f_0 - libllvm16=16.0.6=he4b1e75_2 - - libnghttp2=1.52.0=he2ab024_0 + - libnghttp2=1.58.0=h64cf6d3_0 - libssh2=1.11.0=hd019ec5_0 - libtiff=4.6.0=h684deea_2 - m4ri=20140914=h3f75d11_1005 - - mpfr=4.2.0=h4f9bd69_0 + - mpfr=4.2.1=h0c69b56_0 - ntl=11.4.3=h0ab3c2f_1 - - pari=2.15.4=h93f793c_2_pthread - primecount=7.6=ha894c9a_0 - - python=3.9.18=h07e1443_0_cpython + - readline=8.2=h9e318b2_1 - sigtool=0.1.3=h88f4db0_0 - - sqlite=3.43.0=h2b0dec6_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.15=hd6ba6f3_3 + - ld64_osx-64=609=ha20a434_15 + - libboost-devel=1.83.0=h7728843_0 + - libbrial=1.2.12=h8d08345_1 + - libclang-cpp16=16.0.6=default_h762fdd7_2 + - libflint=2.9.0=hfd2f71f_ntl_100 + - libopenblas=0.3.25=openmp_hfef2a42_0 + - libwebp=1.3.2=h44782d1_1 + - llvm-tools=16.0.6=he4b1e75_2 + - 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 + - qd=2.3.22=h2beb688_1004 + - sqlite=3.44.2=h7461747_0 - alabaster=0.7.13=pyhd8ed1ab_0 - appdirs=1.4.4=pyh9f0ad1d_0 - appnope=0.1.3=pyhd8ed1ab_0 + - arb=2.23.0=h905a977_0 - attrs=23.1.0=pyh71513ae_1 - backcall=0.2.0=pyh9f0ad1d_0 - - backports=1.0=pyhd8ed1ab_3 - - brotli=1.1.0=h0dc2134_1 + - boost-cpp=1.83.0=h07eb623_0 + - brial=1.2.12=pyh694c41f_1 - brotli-python=1.1.0=py39h840bb9f_1 - cached_property=1.5.2=pyha770c72_1 - - cachetools=5.3.1=pyhd8ed1ab_0 - - certifi=2023.7.22=pyhd8ed1ab_0 + - cachetools=5.3.2=pyhd8ed1ab_0 + - cairo=1.18.0=h99e66fa_0 + - cctools_osx-64=973.0.1=ha1c5b94_15 + - certifi=2023.11.17=pyhd8ed1ab_0 - chardet=5.2.0=py39h6e9494a_1 - - charset-normalizer=3.3.0=pyhd8ed1ab_0 + - charset-normalizer=3.3.2=pyhd8ed1ab_0 + - clang-16=16.0.6=default_h762fdd7_2 - colorama=0.4.6=pyhd8ed1ab_0 - cycler=0.12.1=pyhd8ed1ab_0 - cysignals=1.11.2=py39hf6ae30e_3 - - cython=3.0.2=py39h840bb9f_2 + - cython=3.0.6=py39h110ca85_0 - debugpy=1.8.0=py39h840bb9f_1 - decorator=5.1.1=pyhd8ed1ab_0 - defusedxml=0.7.1=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - docutils=0.20.1=py39h6e9494a_2 + - eclib=20230424=hd00e801_0 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 - - exceptiongroup=1.1.3=pyhd8ed1ab_0 + - exceptiongroup=1.2.0=pyhd8ed1ab_0 - execnet=2.0.2=pyhd8ed1ab_0 - - executing=1.2.0=pyhd8ed1ab_0 - - fftw=3.3.10=nompi_h4fa670e_108 - - filelock=3.12.4=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=h5bb23bf_0 + - fplll=5.4.5=hb7981ad_0 - gap-defaults=4.12.2=h694c41f_3 - gast=0.5.4=pyhd8ed1ab_0 - - gfan=0.6.2=hd793b56_1003 - - idna=3.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=1.1.7=pyhd8ed1ab_0 + - jupyterlab_widgets=3.0.9=pyhd8ed1ab_0 - kiwisolver=1.4.5=py39h8ee36c8_1 - lcalc=2.0.5=h3a941db_1 - - lcms2=2.15=hd6ba6f3_3 - - ld64_osx-64=609=ha20a434_14 - - libboost-devel=1.82.0=h1c7c39f_6 - - libbrial=1.2.12=h8d08345_1 - - libclang-cpp16=16.0.6=default_h762fdd7_1 - - libcurl=8.3.0=h5f667d7_0 - - libflint=2.9.0=hfd2f71f_ntl_100 - - libopenblas=0.3.24=openmp_h48a4ad5_0 - - libwebp=1.3.2=h44782d1_1 - - llvm-tools=16.0.6=he4b1e75_2 - - m4rie=20150908=h3f75d11_1001 + - ld64=609=ha02d983_15 + - libblas=3.9.0=20_osx64_openblas + - libcurl=8.4.0=h726d00d_0 + - libgd=2.3.3=h0dceb68_9 - markupsafe=2.1.3=py39hdc70f33_1 - maxima=5.45.0=hd029580_3 - - mistune=3.0.1=pyhd8ed1ab_0 - - mpc=1.3.1=h81bd1dd_0 - - mpfi=1.5.4=h52b28e3_1001 + - mistune=3.0.2=pyhd8ed1ab_0 - mpmath=1.3.0=pyhd8ed1ab_0 - munkres=1.1.4=pyh9f0ad1d_0 - - nest-asyncio=1.5.6=pyhd8ed1ab_0 - - networkx=2.8.8=pyhd8ed1ab_0 - - openjpeg=2.5.0=ha4da562_3 + - nest-asyncio=1.5.8=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 - pathspec=0.11.2=pyhd8ed1ab_0 - pickleshare=0.7.5=py_1003 + - pillow=10.1.0=py39hdd30358_0 - pkgconfig=1.5.5=pyhd8ed1ab_4 - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 - pluggy=1.3.0=pyhd8ed1ab_0 - ply=3.11=py_1 - - ppl=1.2=ha60d53e_1006 - - prometheus_client=0.17.1=pyhd8ed1ab_0 + - prometheus_client=0.19.0=pyhd8ed1ab_0 - psutil=5.9.5=py39hdc70f33_1 - 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.0=pyhd8ed1ab_0 + - pycodestyle=2.11.1=pyhd8ed1ab_0 - pycparser=2.21=pyhd8ed1ab_0 - - pygments=2.16.1=pyhd8ed1ab_0 + - pygments=2.17.2=pyhd8ed1ab_0 - pyparsing=3.1.1=pyhd8ed1ab_0 - - pyrsistent=0.19.3=py39hdc70f33_1 + - pyrsistent=0.20.0=py39ha09f3b3_0 - pysocks=1.7.1=pyha2e5f31_6 - pyspellchecker=0.7.2=pyhd8ed1ab_0 - - python-fastjsonschema=2.18.1=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 - - pyzmq=25.1.1=py39hdac9eea_1 - - qd=2.3.22=h2beb688_1004 + - pyzmq=25.1.1=py39h53dde38_2 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.10.4=py39h3f9c672_0 + - rpds-py=0.13.1=py39h3f9c672_0 - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 - sagetex=3.6.1=pyhd8ed1ab_0 - - setuptools=63.4.3=py39h6e9494a_0 + - setuptools=68.2.2=pyhd8ed1ab_0 - simplegeneric=0.8.1=py_1 + - singular=4.2.1.p3=hac851df_2 - six=1.16.0=pyh6c4a22f_0 - sniffio=1.3.0=pyhd8ed1ab_0 - snowballstemmer=2.2.0=pyhd8ed1ab_0 @@ -246,164 +261,147 @@ dependencies: - sympow=2.023.6=h115ba6a_3 - tomli=2.0.1=pyhd8ed1ab_0 - tornado=6.3.3=py39hdc70f33_1 - - traitlets=5.11.2=pyhd8ed1ab_0 - - trove-classifiers=2023.9.19=pyhd8ed1ab_0 + - traitlets=5.13.0=pyhd8ed1ab_0 + - trove-classifiers=2023.11.22=pyhd8ed1ab_0 - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 - typing_extensions=4.8.0=pyha770c72_0 - typing_utils=0.1.0=pyhd8ed1ab_0 - - tzlocal=5.1=py39h6e9494a_0 + - tzlocal=5.2=py39h6e9494a_0 - unicodedata2=15.1.0=py39hdc70f33_0 - uri-template=1.3.0=pyhd8ed1ab_0 - vcversioner=2.16.0.0=py_1 + - wcwidth=0.2.12=pyhd8ed1ab_0 - webcolors=1.13=pyhd8ed1ab_0 - webencodings=0.5.1=pyhd8ed1ab_2 - websocket-client=1.6.4=pyhd8ed1ab_0 - - wheel=0.41.2=pyhd8ed1ab_0 + - wheel=0.42.0=pyhd8ed1ab_0 + - widgetsnbextension=4.0.9=pyhd8ed1ab_0 - zipp=3.17.0=pyhd8ed1ab_0 - - anyio=4.0.0=pyhd8ed1ab_0 - - arb=2.23.0=h905a977_0 - - asttokens=2.4.0=pyhd8ed1ab_0 + - anyio=4.1.0=pyhd8ed1ab_0 + - asttokens=2.4.1=pyhd8ed1ab_0 - async-lru=2.0.4=pyhd8ed1ab_0 - - babel=2.12.1=pyhd8ed1ab_1 - - backports.functools_lru_cache=1.6.5=pyhd8ed1ab_0 + - babel=2.13.1=pyhd8ed1ab_0 - beautifulsoup4=4.12.2=pyha770c72_0 - beniget=0.4.1=pyhd8ed1ab_0 - bleach=6.1.0=pyhd8ed1ab_0 - - boost-cpp=1.82.0=h07eb623_6 - - brial=1.2.12=pyh694c41f_1 - cached-property=1.5.2=hd8ed1ab_1 - - cairo=1.16.0=hfdb49f2_1017 - - cattrs=23.1.2=pyhd8ed1ab_0 - - cctools_osx-64=973.0.1=ha1c5b94_14 + - cctools=973.0.1=h40f6528_15 - cffi=1.16.0=py39h18ef598_0 - - clang-16=16.0.6=default_h762fdd7_1 - - cmake=3.27.6=hf40c264_0 + - clang=16.0.6=hc177806_2 + - cmake=3.27.8=hc7ee4c4_0 - comm=0.1.4=pyhd8ed1ab_0 - cppy=1.2.1=pyhd8ed1ab_0 - - curl=8.3.0=h5f667d7_0 + - curl=8.4.0=h726d00d_0 - cypari2=2.1.3=py39he2cb11e_2 - deprecation=2.1.0=pyh9f0ad1d_0 - - eclib=20230424=hd00e801_0 - - fonttools=4.43.1=py39ha09f3b3_0 - - fplll=5.4.4=hdfdc905_0 - - gfortran_impl_osx-64=12.3.0=h54fd467_1 - - gmpy2=2.1.2=py39h2da61ea_1 + - fonttools=4.45.1=py39ha09f3b3_0 + - harfbuzz=8.3.0=hf45c392_0 - importlib-metadata=6.8.0=pyha770c72_0 - - importlib_resources=6.1.0=pyhd8ed1ab_0 + - importlib_resources=6.1.1=pyhd8ed1ab_0 - jedi=0.19.1=pyhd8ed1ab_0 - jinja2=3.1.2=pyhd8ed1ab_1 - - jupyterlab_pygments=0.2.2=pyhd8ed1ab_0 - - ld64=609=ha02d983_14 - - libblas=3.9.0=18_osx64_openblas - - libgd=2.3.3=h0dceb68_9 + - jupyterlab_pygments=0.3.0=pyhd8ed1ab_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.2=py39ha30fb19_2 - - openblas=0.3.24=openmp_hd7704e8_0 + - memory-allocator=0.1.3=py39hdc70f33_0 - overrides=7.4.0=pyhd8ed1ab_0 - pexpect=4.8.0=pyh1a96a4e_2 - - pillow=10.0.1=py39h877a9eb_2 - - pip=23.2.1=pyhd8ed1ab_0 + - pip=23.3.1=pyhd8ed1ab_0 + - platformdirs=4.0.0=pyhd8ed1ab_0 + - pplpy=0.8.7=py39hb3e8af0_0 - primecountpy=0.1.0=py39h8ee36c8_4 + - prompt-toolkit=3.0.24=pyha770c72_0 - pybind11=2.11.1=py39h8ee36c8_2 - pyobjc-core=10.0=py39head00df_0 - pyproject-api=1.6.1=pyhd8ed1ab_0 - - pytest=7.4.2=pyhd8ed1ab_0 + - pytest=7.4.3=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - pytz-deprecation-shim=0.1.0.post0=py39h6e9494a_4 - - referencing=0.30.2=pyhd8ed1ab_0 + - referencing=0.31.0=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - sagemath-db-conway-polynomials=0.5.0=h033912b_1 - - singular=4.2.1.p3=hac851df_2 - - terminado=0.17.1=pyhd1c38e8_0 + - sympy=1.12=pypyh9d50eac_103 + - terminado=0.18.0=pyh31c8845_0 - tinycss2=1.2.1=pyhd8ed1ab_0 - typing-extensions=4.8.0=hd8ed1ab_0 - - urllib3=2.0.6=pyhd8ed1ab_0 + - urllib3=2.1.0=pyhd8ed1ab_0 - argon2-cffi-bindings=21.2.0=py39hdc70f33_4 - arrow=1.3.0=pyhd8ed1ab_0 - - cctools=973.0.1=h40f6528_14 - - clang=16.0.6=hc177806_1 + - cattrs=23.2.2=pyhd8ed1ab_0 + - clangxx=16.0.6=default_h762fdd7_2 + - dsdp=5.8=h6e329d1_1203 + - fflas-ffpack=2.4.3=h026fd7e_2 - fqdn=1.5.1=pyhd8ed1ab_0 - git=2.42.0=pl5321hbb4c4ee_0 - - harfbuzz=8.2.1=h7666e2a_0 + - gsl=2.7=h93259b0_0 - hatchling=1.18.0=pyhd8ed1ab_0 - - importlib-resources=6.1.0=pyhd8ed1ab_0 + - iml=1.0.5=h64b42ca_1003 + - importlib-resources=6.1.1=pyhd8ed1ab_0 - importlib_metadata=6.8.0=hd8ed1ab_0 - - jsonschema-specifications=2023.7.1=pyhd8ed1ab_0 + - jsonschema-specifications=2023.11.1=pyhd8ed1ab_0 + - jupyter_core=5.5.0=py39h6e9494a_0 - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1 - - libcblas=3.9.0=18_osx64_openblas - - liblapack=3.9.0=18_osx64_openblas - - lsprotocol=2023.0.0b1=pyhd8ed1ab_0 - - platformdirs=3.11.0=pyhd8ed1ab_0 - - pplpy=0.8.7=py39hb3e8af0_0 + - liblapacke=3.9.0=20_osx64_openblas + - numpy=1.26.2=py39h14c6d2e_0 + - pango=1.50.14=h19c1c8a_2 + - prompt_toolkit=3.0.24=hd8ed1ab_0 - pyobjc-framework-cocoa=10.0=py39head00df_1 - - pytest-xdist=3.3.1=pyhd8ed1ab_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 - - sympy=1.12=pypyh9d50eac_103 - - wcwidth=0.2.8=pyhd8ed1ab_0 - - argon2-cffi=23.1.0=pyhd8ed1ab_0 - - clangxx=16.0.6=default_h762fdd7_1 - - dsdp=5.8=h6e329d1_1203 - - fflas-ffpack=2.4.3=h026fd7e_2 - - gsl=2.7=h93259b0_0 - - iml=1.0.5=h64b42ca_1003 - - isoduration=20.11.0=pyhd8ed1ab_0 - - jsonschema=4.19.1=pyhd8ed1ab_0 - - jupyter_core=5.3.2=py39h6e9494a_0 - - liblapacke=3.9.0=18_osx64_openblas - - numpy=1.26.0=py39h5c76802_0 - - pango=1.50.14=h19c1c8a_2 - - pooch=1.7.0=pyhd8ed1ab_4 - - prompt-toolkit=3.0.39=pyha770c72_0 - - send2trash=1.8.2=pyhd1c38e8_0 - - setuptools_scm=8.0.4=hd8ed1ab_0 - suitesparse=5.10.1=h7aff33d_1 - - typeguard=3.0.2=pyhd8ed1ab_0 - - virtualenv=20.24.4=pyhd8ed1ab_0 - - blas-devel=3.9.0=18_osx64_openblas - - compiler-rt_osx-64=16.0.6=he1888fc_0 - - contourpy=1.1.1=py39h8ee36c8_1 + - virtualenv=20.24.7=pyhd8ed1ab_0 + - argon2-cffi=23.1.0=pyhd8ed1ab_0 + - blas-devel=3.9.0=20_osx64_openblas + - compiler-rt_osx-64=16.0.6=he1888fc_1 + - contourpy=1.2.0=py39h6be1789_0 - cvxopt=1.3.2=py39h2a3e123_1 - - fpylll=0.5.9=py39hb8d1c6e_1 + - fpylll=0.6.0=py39hec15948_1 - giac=1.9.0.21=h92f3f65_1 - - jsonschema-with-format-nongpl=4.19.1=pyhd8ed1ab_0 - - jupyter_client=8.3.1=pyhd8ed1ab_0 + - ipython=8.8.0=pyhd1c38e8_0 + - isoduration=20.11.0=pyhd8ed1ab_0 + - jsonschema=4.20.0=pyhd8ed1ab_0 + - jupyter_client=8.6.0=pyhd8ed1ab_0 - linbox=1.6.3=hdde8d14_7 - - nbformat=5.9.2=pyhd8ed1ab_0 - - prompt_toolkit=3.0.39=hd8ed1ab_0 - - pygls=1.1.1=pyhd8ed1ab_0 - - scipy=1.10.1=py39hded996c_3 + - lsprotocol=2023.0.0=pyhd8ed1ab_0 + - scipy=1.11.4=py39ha321857_0 + - send2trash=1.8.2=pyhd1c38e8_0 + - setuptools_scm=8.0.4=hd8ed1ab_0 - tox=4.11.3=pyhd8ed1ab_0 - - blas=2.118=openblas - - compiler-rt=16.0.6=he1888fc_0 - - ipython=8.16.1=pyh31c8845_0 - - jupyter_events=0.7.0=pyhd8ed1ab_2 - - matplotlib-base=3.8.0=py39he57df45_1 + - blas=2.120=openblas + - compiler-rt=16.0.6=he1888fc_1 + - 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.0=pyhd8ed1ab_0 + - clang_impl_osx-64=16.0.6=h8787910_6 + - 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=16.0.6=h8787910_1 - - ipykernel=6.25.2=pyh1050b4e_0 - - matplotlib=3.8.0=py39h6e9494a_1 - - nbconvert-core=7.9.2=pyhd8ed1ab_0 - - clangxx_osx-64=16.0.6=h1b7723c_1 + - clang_osx-64=16.0.6=hb91bd55_6 + - nbconvert-core=7.11.0=pyhd8ed1ab_0 + - clangxx_impl_osx-64=16.0.6=h1b7723c_6 - gfortran_osx-64=12.3.0=h18f7dce_1 - - jupyter_server=2.7.3=pyhd8ed1ab_1 - - nbconvert-pandoc=7.9.2=pyhd8ed1ab_0 + - jupyter_server=2.10.1=pyhd8ed1ab_0 + - nbconvert-pandoc=7.11.0=pyhd8ed1ab_0 + - clangxx_osx-64=16.0.6=h2fff7d5_6 - gfortran=12.3.0=h2c809b3_1 - jupyter-lsp=2.2.0=pyhd8ed1ab_0 - - jupyterlab_server=2.25.0=pyhd8ed1ab_0 - - nbconvert=7.9.2=pyhd8ed1ab_0 + - jupyterlab_server=2.25.2=pyhd8ed1ab_0 + - nbconvert=7.11.0=pyhd8ed1ab_0 - notebook-shim=0.2.3=pyhd8ed1ab_0 - - pythran=0.14.0=py39h4aa56a1_1 - - r-base=4.3.1=h0ff45fa_6 - fortran-compiler=1.6.0=h932d759_0 - - jupyterlab=4.0.6=pyhd8ed1ab_0 + - jupyterlab=4.0.9=pyhd8ed1ab_0 + - pythran=0.14.0=py39h4aa56a1_1 + - r-base=4.3.2=hf996cbc_0 + - notebook=7.0.6=pyhd8ed1ab_0 - rpy2=3.5.11=py39r43hd01001f_3 - - notebook=7.0.4=pyhd8ed1ab_0 - - widgetsnbextension=3.6.6=pyhd8ed1ab_0 - - ipywidgets=7.8.0=pyhd8ed1ab_0 - - jupyter-jsmol=2022.1.0=pyhd8ed1ab_0 - - esbonio=0.16.1=pyhd8ed1ab_0 + - esbonio=0.16.2=pyhd8ed1ab_0 - jupyter_sphinx=0.4.0=py39h6e9494a_1 - sphinx-basic-ng=1.0.0b2=pyhd8ed1ab_1 - furo=2023.9.10=pyhd8ed1ab_0 From ed1613d0a0a9e13da485d84d0eae60f5b122f2ab Mon Sep 17 00:00:00 2001 From: Tobias Diez Date: Thu, 7 Dec 2023 08:02:20 +0000 Subject: [PATCH 25/33] revert changes to prereq --- build/pkgs/_prereq/distros/conda.txt | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/build/pkgs/_prereq/distros/conda.txt b/build/pkgs/_prereq/distros/conda.txt index 6bef4a9ab60..d76388ce7bb 100644 --- a/build/pkgs/_prereq/distros/conda.txt +++ b/build/pkgs/_prereq/distros/conda.txt @@ -1,8 +1,7 @@ +compilers +make +m4 +perl python -# Not needed on conda -# compilers -# make -# m4 -# perl -# tar -# bc +tar +bc From b1bc95eb231d776d6fb76a0935b701372f53b209 Mon Sep 17 00:00:00 2001 From: Tobias Diez Date: Thu, 7 Dec 2023 08:15:33 +0000 Subject: [PATCH 26/33] Limit to older compilers to fix ci issues on macos --- build/pkgs/_prereq/distros/conda.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/pkgs/_prereq/distros/conda.txt b/build/pkgs/_prereq/distros/conda.txt index d76388ce7bb..ae48cd46819 100644 --- a/build/pkgs/_prereq/distros/conda.txt +++ b/build/pkgs/_prereq/distros/conda.txt @@ -1,4 +1,4 @@ -compilers +compilers<=1.6.0 # 1.7 pulls in c-compiler v.16, which is not working on macos make m4 perl From f17a1708022c7ca15b8de5fcd0dcf5b1f417dda7 Mon Sep 17 00:00:00 2001 From: Tobias Diez Date: Thu, 7 Dec 2023 08:16:01 +0000 Subject: [PATCH 27/33] fix name of lock file update script in docs --- src/doc/en/installation/conda.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/doc/en/installation/conda.rst b/src/doc/en/installation/conda.rst index af2a559ff31..58c29b1e424 100644 --- a/src/doc/en/installation/conda.rst +++ b/src/doc/en/installation/conda.rst @@ -175,6 +175,6 @@ To build the documentation, use:: .. NOTE:: You can update the conda lock files by running - ``.github/workflows/conda-lock-update.ps1`` or by running + ``.github/workflows/conda-lock-update.py`` or by running ``conda-lock --platform linux-64 --filename src/environment-dev-3.11-linux.yml --lockfile src/environment-dev-3.11-linux.lock`` manually. From 1936aeb4337928b06cd4420f080487bbe8b6bb31 Mon Sep 17 00:00:00 2001 From: Tobias Diez Date: Thu, 7 Dec 2023 08:17:08 +0000 Subject: [PATCH 28/33] install conda-lock in conda dev env --- bootstrap-conda | 1 + 1 file changed, 1 insertion(+) diff --git a/bootstrap-conda b/bootstrap-conda index faa29513db4..97a21fad567 100755 --- a/bootstrap-conda +++ b/bootstrap-conda @@ -115,6 +115,7 @@ echo >&2 $0:$LINENO: generate conda environment files ( sed 's/name: sage/name: sage-dev/' src/environment-template.yml echo " # Additional dev tools" + echo " - conda-lock" for pkg in $DEVELOP_SYSTEM_PACKAGES; do echo " - $pkg" done From 8915be4e3a84ad6a2d148efb127ee3946f1cfb34 Mon Sep 17 00:00:00 2001 From: Tobias Diez Date: Thu, 7 Dec 2023 08:28:12 +0000 Subject: [PATCH 29/33] rerender lock files --- environment-3.10-linux-aarch64.yml | 37 +++--- environment-3.10-linux.yml | 37 +++--- environment-3.10-macos-arm64.yml | 48 ++++--- environment-3.10-macos.yml | 66 +++++----- environment-3.11-linux-aarch64.yml | 37 +++--- environment-3.11-linux.yml | 37 +++--- environment-3.11-macos-arm64.yml | 48 ++++--- environment-3.11-macos.yml | 66 +++++----- environment-3.9-linux-aarch64.yml | 37 +++--- environment-3.9-linux.yml | 37 +++--- environment-3.9-macos-arm64.yml | 48 ++++--- environment-3.9-macos.yml | 66 +++++----- src/environment-3.10-linux-aarch64.yml | 59 +++++---- src/environment-3.10-linux.yml | 77 ++++++------ src/environment-3.10-macos-arm64.yml | 95 +++++++------- src/environment-3.10-macos.yml | 107 ++++++++-------- src/environment-3.11-linux-aarch64.yml | 59 +++++---- src/environment-3.11-linux.yml | 77 ++++++------ src/environment-3.11-macos-arm64.yml | 95 +++++++------- src/environment-3.11-macos.yml | 107 ++++++++-------- src/environment-3.9-linux-aarch64.yml | 59 +++++---- src/environment-3.9-linux.yml | 77 ++++++------ src/environment-3.9-macos-arm64.yml | 95 +++++++------- src/environment-3.9-macos.yml | 107 ++++++++-------- src/environment-dev-3.10-linux-aarch64.yml | 100 ++++++++++----- src/environment-dev-3.10-linux.yml | 111 ++++++++++------ src/environment-dev-3.10-macos-arm64.yml | 132 +++++++++++-------- src/environment-dev-3.10-macos.yml | 140 +++++++++++++-------- src/environment-dev-3.11-linux-aarch64.yml | 100 ++++++++++----- src/environment-dev-3.11-linux.yml | 111 ++++++++++------ src/environment-dev-3.11-macos-arm64.yml | 132 +++++++++++-------- src/environment-dev-3.11-macos.yml | 140 +++++++++++++-------- src/environment-dev-3.9-linux-aarch64.yml | 100 ++++++++++----- src/environment-dev-3.9-linux.yml | 111 ++++++++++------ src/environment-dev-3.9-macos-arm64.yml | 132 +++++++++++-------- src/environment-dev-3.9-macos.yml | 140 +++++++++++++-------- 36 files changed, 1803 insertions(+), 1224 deletions(-) diff --git a/environment-3.10-linux-aarch64.yml b/environment-3.10-linux-aarch64.yml index 4778ba7f9b9..58441de898d 100644 --- a/environment-3.10-linux-aarch64.yml +++ b/environment-3.10-linux-aarch64.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: linux-aarch64 -# input_hash: ddd16b3654887a2a3c5b8fddf279463d0f440db11bc7c6b3ffe8f9a207973164 +# input_hash: 13100da9fa197861b47f4fae6d1b75fe30c01e9efdc39c0d4f096fe51270cfe8 channels: - conda-forge @@ -16,6 +16,7 @@ dependencies: - libboost-headers=1.82.0=h8af1aa0_2 - 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 - pari-elldata=0.0.20161017=0 @@ -33,9 +34,10 @@ dependencies: - binutils_linux-aarch64=2.40=h94bbfa1_2 - _openmp_mutex=4.5=2_kmp_llvm - libgcc-ng=13.2.0=hf8544c7_3 + - bc=1.07.1=hf897c2e_0 - bdw-gc=8.0.6=hd62202e_0 - bzip2=1.0.8=h31becfc_5 - - c-ares=1.22.1=h31becfc_0 + - c-ares=1.23.0=h31becfc_0 - cliquer=1.22=hb9de7d4_0 - gengetopt=2.23=h01db608_0 - gf2x=1.3.0=h1b3b3a3_2 @@ -46,7 +48,7 @@ dependencies: - keyutils=1.6.1=h4e544f5_0 - lerc=4.0.0=h4de3ea5_0 - libatomic_ops=7.6.14=h4e544f5_0 - - libbraiding=1.1=h7fd3ca4_0 + - libbraiding=1.2=hd600fc2_0 - libdeflate=1.17=hb4cce97_0 - libev=4.33=h516909a_1 - libexpat=2.5.0=hd600fc2_1 @@ -63,11 +65,12 @@ dependencies: - 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.7.2=hf897c2e_0 - ncurses=6.4=h0425590_2 - ninja=1.11.1=hdd96247_0 - - openssl=3.2.0=h31becfc_0 + - openssl=3.2.0=h31becfc_1 - palp=2.20=hb9de7d4_0 - patch=2.7.6=hf897c2e_1002 - pkg-config=0.29.2=hb9de7d4_1008 @@ -96,6 +99,7 @@ dependencies: - perl=5.32.1=4_h31becfc_perl5 - primecount=7.9=hd600fc2_0 - readline=8.2=h8fc344f_1 + - tar=1.34=h048efde_0 - tk=8.6.13=h194ca79_0 - zeromq=4.3.5=h2f0025b_0 - zlib=1.2.13=h31becfc_5 @@ -107,13 +111,14 @@ dependencies: - 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.21.2=hc419048_0 - libboost=1.82.0=hbfc56d7_2 - libflint=2.9.0=hd3470fa_ntl_100 - libhwloc=2.9.1=h21e8147_0 - libopenblas=0.3.25=pthreads_h5a5ec62_0 - libtiff=4.5.0=h4c1066a_2 - - llvm-openmp=17.0.5=h8b0cb96_0 + - llvm-openmp=17.0.6=h8b0cb96_0 - m4ri=20140914=h75e8696_1005 - mpc=1.3.1=hf4c8f4c_0 - mpfi=1.5.4=h846f343_1001 @@ -138,16 +143,19 @@ dependencies: - fplll=5.4.5=hb3a790e_0 - gfortran=12.3.0=h8d4031d_2 - gfortran_linux-aarch64=12.3.0=h1993883_2 + - gxx=12.3.0=hc1b51f9_2 + - gxx_linux-aarch64=12.3.0=h21accf6_2 - lcalc=2.0.5=h3264cc0_1 - libblas=3.9.0=20_linuxaarch64_openblas - libboost-devel=1.82.0=h37bb5a9_2 - libbrial=1.2.12=h17533bf_1 - - libcurl=8.4.0=h4e8248e_0 + - libcurl=8.5.0=h4e8248e_0 - libwebp=1.2.4=h7bdf6e5_1 - m4rie=20150908=h75e8696_1001 - - maxima=5.45.0=haa44c19_3 + - maxima=5.46.0=h6475f26_0 - openblas=0.3.25=pthreads_h339cbfa_0 - packaging=23.2=pyhd8ed1ab_0 + - platformdirs=4.1.0=pyhd8ed1ab_0 - pluggy=1.3.0=pyhd8ed1ab_0 - singular=4.2.1.p3=h3d4c4c6_2 - sympow=2.023.6=h157afb5_3 @@ -157,28 +165,29 @@ dependencies: - zipp=3.17.0=pyhd8ed1ab_0 - boost-cpp=1.82.0=h62f3a30_2 - brial=1.2.12=pyh694c41f_1 - - cmake=3.27.8=hef020d8_0 - - curl=8.4.0=h4e8248e_0 + - cmake=3.28.0=hef020d8_0 + - curl=8.5.0=h4e8248e_0 + - cxx-compiler=1.6.0=h2a328a1_0 - fortran-compiler=1.6.0=h7048d53_0 - - importlib-metadata=6.8.0=pyha770c72_0 + - importlib-metadata=7.0.0=pyha770c72_0 - libcblas=3.9.0=20_linuxaarch64_openblas - libgd=2.3.3=h5fc1a20_5 - liblapack=3.9.0=20_linuxaarch64_openblas - - platformdirs=4.0.0=pyhd8ed1ab_0 - pyproject-api=1.6.1=pyhd8ed1ab_0 - typing-extensions=4.8.0=hd8ed1ab_0 + - virtualenv=20.25.0=pyhd8ed1ab_0 - arpack=3.7.0=hf862f49_2 + - compilers=1.6.0=h8af1aa0_0 - fflas-ffpack=2.4.3=hf104d39_2 - gsl=2.7=h294027d_0 - iml=1.0.5=h9076c59_1003 - - importlib_metadata=6.8.0=hd8ed1ab_0 + - importlib_metadata=7.0.0=hd8ed1ab_0 - liblapacke=3.9.0=20_linuxaarch64_openblas - suitesparse=5.10.1=h1404dd6_1 - - virtualenv=20.24.7=pyhd8ed1ab_0 - blas-devel=3.9.0=20_linuxaarch64_openblas - giac=1.9.0.21=h04922a4_1 - igraph=0.9.10=hefb87a8_1 - linbox=1.6.3=h31716a8_7 - - tox=4.11.3=pyhd8ed1ab_0 + - tox=4.11.4=pyhd8ed1ab_0 - blas=2.120=openblas - rw=0.9=hf897c2e_0 diff --git a/environment-3.10-linux.yml b/environment-3.10-linux.yml index 2d3bb04ca19..bbaa99dac63 100644 --- a/environment-3.10-linux.yml +++ b/environment-3.10-linux.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: 722f5cecf921eb12ba9c645f0b616fed4ffaff10b7e29c286b3a70f8df40a036 +# input_hash: 5bb9993b41d8fddd3fd4194d10f7f079a4d65f0cfeee41d46bd8590310cf99eb channels: - conda-forge @@ -15,6 +15,7 @@ dependencies: - ld_impl_linux-64=2.40=h41732ed_0 - libboost-headers=1.83.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 - pari-elldata=0.0.20161017=0 @@ -33,9 +34,10 @@ dependencies: - binutils_linux-64=2.40=hbdbef99_2 - _openmp_mutex=4.5=2_kmp_llvm - libgcc-ng=13.2.0=h807b86a_3 + - bc=1.07.1=h7f98852_0 - bdw-gc=8.0.6=h4bd325d_0 - bzip2=1.0.8=hd590300_5 - - c-ares=1.22.1=hd590300_0 + - c-ares=1.23.0=hd590300_0 - cliquer=1.22=h36c2ea0_0 - gengetopt=2.23=h9c3ff4c_0 - gf2x=1.3.0=ha476b99_2 @@ -45,7 +47,7 @@ dependencies: - keyutils=1.6.1=h166bdaf_0 - lerc=4.0.0=h27087fc_0 - libatomic_ops=7.6.14=h166bdaf_0 - - libbraiding=1.1=h58526e2_0 + - libbraiding=1.2=hcb278e6_0 - libdeflate=1.19=hd590300_0 - libev=4.33=h516909a_1 - libexpat=2.5.0=hcb278e6_1 @@ -63,11 +65,12 @@ dependencies: - libzlib=1.2.13=hd590300_5 - lrcalc=2.1=h27087fc_5 - m4=1.4.18=h516909a_1001 + - make=4.3=hd18ef5c_1 - metis=5.1.0=h59595ed_1007 - nauty=2.7.2=h7f98852_0 - ncurses=6.4=h59595ed_2 - ninja=1.11.1=h924138e_0 - - openssl=3.2.0=hd590300_0 + - openssl=3.2.0=hd590300_1 - palp=2.20=h36c2ea0_0 - patch=2.7.6=h7f98852_1002 - pkg-config=0.29.2=h36c2ea0_1008 @@ -96,6 +99,7 @@ dependencies: - perl=5.32.1=4_hd590300_perl5 - primecount=7.9=hcb278e6_0 - readline=8.2=h8228510_1 + - tar=1.34=hb2e2bae_1 - tk=8.6.13=noxft_h4845f30_101 - zeromq=4.3.5=h59595ed_0 - zlib=1.2.13=hd590300_5 @@ -107,6 +111,7 @@ dependencies: - 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 - igraph=0.7.1=0 - krb5=1.21.2=h659d440_0 - libboost=1.83.0=h6fcfa73_0 @@ -114,7 +119,7 @@ dependencies: - libhwloc=2.9.3=default_h554bfaf_1009 - libopenblas=0.3.25=pthreads_h413a1c8_0 - libtiff=4.6.0=ha9c0a0a_2 - - llvm-openmp=17.0.5=h4dfa4b3_0 + - llvm-openmp=17.0.6=h4dfa4b3_0 - m4ri=20140914=h7ca028e_1005 - mpc=1.3.1=hfe3b2da_0 - mpfi=1.5.4=h9f54685_1001 @@ -139,16 +144,19 @@ dependencies: - fplll=5.4.5=h384768b_0 - gfortran=12.3.0=h499e0f7_2 - gfortran_linux-64=12.3.0=h7fe76b4_2 + - gxx=12.3.0=h8d2909c_2 + - gxx_linux-64=12.3.0=h8a814eb_2 - lcalc=2.0.5=h6a8a7c6_1 - libblas=3.9.0=20_linux64_openblas - libboost-devel=1.83.0=h00ab1b0_0 - libbrial=1.2.12=h3155cbd_1 - - libcurl=8.4.0=hca28451_0 + - libcurl=8.5.0=hca28451_0 - libwebp=1.3.2=h658648e_1 - m4rie=20150908=h7ca028e_1001 - - maxima=5.45.0=h9d73b02_3 + - maxima=5.46.0=hed6455c_0 - openblas=0.3.25=pthreads_h7a3da1a_0 - packaging=23.2=pyhd8ed1ab_0 + - platformdirs=4.1.0=pyhd8ed1ab_0 - pluggy=1.3.0=pyhd8ed1ab_0 - rw=0.8=h516909a_1001 - singular=4.2.1.p3=h1ea75ed_2 @@ -159,25 +167,26 @@ dependencies: - zipp=3.17.0=pyhd8ed1ab_0 - boost-cpp=1.83.0=h44aadfe_0 - brial=1.2.12=pyh694c41f_1 - - cmake=3.27.8=hcfe8598_0 - - curl=8.4.0=hca28451_0 + - cmake=3.27.9=hcfe8598_0 + - curl=8.5.0=hca28451_0 + - cxx-compiler=1.6.0=h00ab1b0_0 - fortran-compiler=1.6.0=heb67821_0 - - importlib-metadata=6.8.0=pyha770c72_0 + - importlib-metadata=7.0.0=pyha770c72_0 - libcblas=3.9.0=20_linux64_openblas - libgd=2.3.3=h119a65a_9 - liblapack=3.9.0=20_linux64_openblas - - platformdirs=4.0.0=pyhd8ed1ab_0 - pyproject-api=1.6.1=pyhd8ed1ab_0 - typing-extensions=4.8.0=hd8ed1ab_0 + - virtualenv=20.25.0=pyhd8ed1ab_0 + - compilers=1.6.0=ha770c72_0 - fflas-ffpack=2.4.3=h912ac81_2 - gsl=2.7=he838d99_0 - iml=1.0.5=hd75c201_1003 - - importlib_metadata=6.8.0=hd8ed1ab_0 + - importlib_metadata=7.0.0=hd8ed1ab_0 - liblapacke=3.9.0=20_linux64_openblas - suitesparse=5.10.1=h9e50725_1 - - virtualenv=20.24.7=pyhd8ed1ab_0 - blas-devel=3.9.0=20_linux64_openblas - giac=1.9.0.21=h673759e_1 - linbox=1.6.3=h9d78c56_7 - - tox=4.11.3=pyhd8ed1ab_0 + - tox=4.11.4=pyhd8ed1ab_0 - blas=2.120=openblas diff --git a/environment-3.10-macos-arm64.yml b/environment-3.10-macos-arm64.yml index bd9c4f8342d..aa596a2ec96 100644 --- a/environment-3.10-macos-arm64.yml +++ b/environment-3.10-macos-arm64.yml @@ -1,12 +1,13 @@ # Generated by conda-lock. # platform: osx-arm64 -# input_hash: a6f9e84b6c69a03aa7cdec77208a1ef2c833c950d53daed83473a91fb2c0b0c2 +# input_hash: e7e18847839b6f3b2324fadc8a3afa19821b52c4fa701a11e3f1cc1071d9ce82 channels: - conda-forge dependencies: + - bc=1.07.1=h3422bc3_0 - bzip2=1.0.8=h93a5062_5 - - c-ares=1.22.1=h93a5062_0 + - c-ares=1.23.0=h93a5062_0 - ca-certificates=2023.11.17=hf0a4a13_0 - cliquer=1.22=h27ca646_0 - font-ttf-dejavu-sans-mono=2.37=hab24e00_0 @@ -30,8 +31,9 @@ dependencies: - libuv=1.46.0=hb547adb_0 - libwebp-base=1.2.4=h1a8c8d9_0 - libzlib=1.2.13=h53f4e23_5 - - llvm-openmp=17.0.5=hcd81f8e_0 + - llvm-openmp=17.0.6=hcd81f8e_0 - m4=1.4.18=h642e427_1001 + - make=4.3=he57ea6c_1 - mathjax=3.2.2=hce30654_0 - metis=5.1.0=h13dd4ca_1007 - nauty=2.7.2=h3422bc3_0 @@ -58,7 +60,7 @@ dependencies: - gmp=6.3.0=h965bd2d_0 - isl=0.25=h9a09cb3_0 - lerc=4.0.0=h9a09cb3_0 - - libbraiding=1.1=h9f76cd9_0 + - libbraiding=1.2=hb7217d7_0 - libgfortran5=13.2.0=hf226fd6_1 - libpng=1.6.39=h76d750c_0 - libsqlite=3.44.2=h091b4b1_0 @@ -66,13 +68,14 @@ dependencies: - lrcalc=2.1=hb7217d7_5 - ncurses=6.4=h463b476_2 - ninja=1.11.1=hffc8910_0 - - openssl=3.2.0=h0d3ecfb_0 + - openssl=3.2.0=h0d3ecfb_1 - pari-seadata=0.0.20090618=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 - tk=8.6.13=h5083fa2_1 - zeromq=4.3.5=h965bd2d_0 - zlib=1.2.13=h53f4e23_5 @@ -87,7 +90,7 @@ dependencies: - libboost=1.82.0=h3f31f7c_2 - libedit=3.1.20191231=hc8eb9b7_2 - libgfortran=5.0.0=13_2_0_hd922786_1 - - libglib=2.78.1=hb438215_1 + - libglib=2.78.2=hb438215_0 - libhomfly=1.02r6=h27ca646_0 - libllvm15=15.0.7=h62b9111_1 - libnghttp2=1.58.0=ha4dd798_0 @@ -108,7 +111,7 @@ dependencies: - ld64_osx-arm64=609=hc4dc95b_15 - libboost-devel=1.82.0=hf450f58_2 - libbrial=1.2.12=ha7f5006_1 - - libclang-cpp15=15.0.7=default_h5dc8d65_3 + - libclang-cpp15=15.0.7=default_hd209bcb_4 - libflint=2.9.0=h173eafc_ntl_100 - libopenblas=0.3.25=openmp_h6c19121_0 - libwebp=1.2.4=h999c80f_1 @@ -129,7 +132,7 @@ dependencies: - cachetools=5.3.2=pyhd8ed1ab_0 - cctools_osx-arm64=973.0.1=h2a25c60_15 - chardet=5.2.0=py310hbe9552e_1 - - clang-15=15.0.7=default_h5dc8d65_3 + - clang-15=15.0.7=default_hd209bcb_4 - colorama=0.4.6=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - eclib=20230424=haeb5157_0 @@ -139,11 +142,12 @@ dependencies: - lcalc=2.0.5=hc94e8e6_1 - ld64=609=h89fa09d_15 - libblas=3.9.0=20_osxarm64_openblas - - libcurl=8.4.0=h2d989ff_0 + - libcurl=8.5.0=h2d989ff_0 - libgd=2.3.3=h8db8f0b_5 - maxima=5.45.0=h6032a66_2 - openblas=0.3.25=openmp_h55c453e_0 - packaging=23.2=pyhd8ed1ab_0 + - platformdirs=4.1.0=pyhd8ed1ab_0 - pluggy=1.3.0=pyhd8ed1ab_0 - singular=4.2.1.p3=h3b80c97_2 - sympow=2.023.6=hb0babe8_3 @@ -151,35 +155,39 @@ dependencies: - typing_extensions=4.8.0=pyha770c72_0 - zipp=3.17.0=pyhd8ed1ab_0 - cctools=973.0.1=hd1ac623_15 - - clang=15.0.7=hce30654_3 - - cmake=3.27.8=h04763b9_0 - - curl=8.4.0=h2d989ff_0 - - importlib-metadata=6.8.0=pyha770c72_0 + - clang=15.0.7=haab561b_4 + - cmake=3.28.0=h04763b9_0 + - curl=8.5.0=h2d989ff_0 + - importlib-metadata=7.0.0=pyha770c72_0 - libcblas=3.9.0=20_osxarm64_openblas - liblapack=3.9.0=20_osxarm64_openblas - - platformdirs=4.0.0=pyhd8ed1ab_0 - pyproject-api=1.6.1=pyhd8ed1ab_0 - typing-extensions=4.8.0=hd8ed1ab_0 + - virtualenv=20.25.0=pyhd8ed1ab_0 - arpack=3.7.0=h58ebc17_2 - - clangxx=15.0.7=default_h610c423_3 + - clangxx=15.0.7=default_h5c94ee4_4 - fflas-ffpack=2.4.3=h11f2abc_2 - gsl=2.7=h6e638da_0 - iml=1.0.5=hd52f0d1_1003 - - importlib_metadata=6.8.0=hd8ed1ab_0 + - importlib_metadata=7.0.0=hd8ed1ab_0 - liblapacke=3.9.0=20_osxarm64_openblas - suitesparse=5.10.1=h7cd81ec_1 - - virtualenv=20.24.7=pyhd8ed1ab_0 - blas-devel=3.9.0=20_osxarm64_openblas - - compiler-rt_osx-arm64=15.0.7=hf8d1dfb_1 + - compiler-rt_osx-arm64=15.0.7=h3808999_2 - giac=1.9.0.21=h1c96721_1 - igraph=0.9.10=hcec9b84_1 - linbox=1.6.3=h549c411_7 - - tox=4.11.3=pyhd8ed1ab_0 + - tox=4.11.4=pyhd8ed1ab_0 - blas=2.120=openblas - - compiler-rt=15.0.7=hf8d1dfb_1 + - compiler-rt=15.0.7=h3808999_2 - rw=0.9=h3422bc3_0 - clang_impl_osx-arm64=15.0.7=h77e971b_6 - clang_osx-arm64=15.0.7=h54d7cd3_6 + - c-compiler=1.6.0=hd291e01_0 + - clangxx_impl_osx-arm64=15.0.7=h768a7fd_6 - gfortran_osx-arm64=12.3.0=h57527a5_1 + - clangxx_osx-arm64=15.0.7=h77e971b_6 - gfortran=12.3.0=h1ca8e4b_1 + - cxx-compiler=1.6.0=h1995070_0 - fortran-compiler=1.6.0=h5a50232_0 + - compilers=1.6.0=hce30654_0 diff --git a/environment-3.10-macos.yml b/environment-3.10-macos.yml index 3576b36cf28..d3d39fcde40 100644 --- a/environment-3.10-macos.yml +++ b/environment-3.10-macos.yml @@ -1,12 +1,13 @@ # Generated by conda-lock. # platform: osx-64 -# input_hash: ad1863c4c234387e342663b8a7b1b3b9d462975583ba7826c37c0c8ff03598a5 +# input_hash: 4f8408e2532a702e261da60904754dc09d4f796480679ca0fef1f7e5fed19a2b channels: - conda-forge dependencies: + - bc=1.07.1=h0d85af4_0 - bzip2=1.0.8=h10d778d_5 - - c-ares=1.22.1=h10d778d_0 + - c-ares=1.23.0=h10d778d_0 - ca-certificates=2023.11.17=h8857fd0_0 - cliquer=1.22=hbcb3906_0 - font-ttf-dejavu-sans-mono=2.37=hab24e00_0 @@ -30,8 +31,9 @@ dependencies: - libuv=1.46.0=h0c2f820_0 - libwebp-base=1.3.2=h0dc2134_0 - libzlib=1.2.13=h8a1eda9_5 - - llvm-openmp=17.0.5=hb6ac08f_0 + - llvm-openmp=17.0.6=hb6ac08f_0 - m4=1.4.18=haf1e3a3_1001 + - make=4.3=h22f3db7_1 - mathjax=3.2.2=h694c41f_0 - metis=5.1.0=he965462_1007 - nauty=2.7.2=h0d85af4_0 @@ -59,21 +61,22 @@ dependencies: - gmp=6.3.0=h93d8f39_0 - isl=0.25=hb486fe8_0 - lerc=4.0.0=hb486fe8_0 - - libbraiding=1.1=h2e338ed_0 + - libbraiding=1.2=hf0c8a7f_0 - libgfortran5=13.2.0=h2873a65_1 - libpng=1.6.39=ha978bb4_0 - libsqlite=3.44.2=h92b6c6a_0 - - libxml2=2.11.6=hc0ae0f7_0 + - libxml2=2.12.2=hc0ae0f7_0 - lrcalc=2.1=hf0c8a7f_5 - ncurses=6.4=h93d8f39_2 - ninja=1.11.1=hb8565cd_0 - - openssl=3.2.0=hd75f5a5_0 + - openssl=3.2.0=hd75f5a5_1 - pari-seadata=0.0.20090618=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 - tk=8.6.13=h1abcd95_1 - zeromq=4.3.5=h93d8f39_0 - zlib=1.2.13=h8a1eda9_5 @@ -89,7 +92,7 @@ dependencies: - libedit=3.1.20191231=h0678c8f_2 - libgfortran=5.0.0=13_2_0_h97931a8_1 - libhomfly=1.02r6=hc929b4f_0 - - libllvm16=16.0.6=he4b1e75_2 + - libllvm15=15.0.7=hbedff68_4 - libnghttp2=1.58.0=h64cf6d3_0 - libssh2=1.11.0=hd019ec5_0 - libtiff=4.6.0=h684deea_2 @@ -105,14 +108,14 @@ dependencies: - fontconfig=2.14.2=h5bb23bf_0 - gfan=0.6.2=hd793b56_1003 - krb5=1.21.2=hb884880_0 - - ld64_osx-64=609=ha20a434_15 + - ld64_osx-64=609=h0fd476b_15 - libboost-devel=1.83.0=h7728843_0 - libbrial=1.2.12=h8d08345_1 - - libclang-cpp16=16.0.6=default_h762fdd7_2 + - libclang-cpp15=15.0.7=default_h6b1ee41_4 - libflint=2.9.0=hfd2f71f_ntl_100 - libopenblas=0.3.25=openmp_hfef2a42_0 - libwebp=1.3.2=h44782d1_1 - - llvm-tools=16.0.6=he4b1e75_2 + - llvm-tools=15.0.7=hbedff68_4 - m4rie=20150908=h3f75d11_1001 - mpc=1.3.1=h81bd1dd_0 - mpfi=1.5.4=h52b28e3_1001 @@ -126,9 +129,9 @@ dependencies: - boost-cpp=1.83.0=h07eb623_0 - brial=1.2.12=pyh694c41f_1 - cachetools=5.3.2=pyhd8ed1ab_0 - - cctools_osx-64=973.0.1=ha1c5b94_15 + - cctools_osx-64=973.0.1=habff3f6_15 - chardet=5.2.0=py310h2ec42d9_1 - - clang-16=16.0.6=default_h762fdd7_2 + - clang-15=15.0.7=default_h6b1ee41_4 - colorama=0.4.6=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - eclib=20230424=hd00e801_0 @@ -136,46 +139,51 @@ dependencies: - fplll=5.4.5=hb7981ad_0 - gfortran_impl_osx-64=12.3.0=h54fd467_1 - lcalc=2.0.5=h3a941db_1 - - ld64=609=ha02d983_15 + - ld64=609=ha91a046_15 - libblas=3.9.0=20_osx64_openblas - - libcurl=8.4.0=h726d00d_0 + - libcurl=8.5.0=h726d00d_0 - libgd=2.3.3=h0dceb68_9 - - maxima=5.45.0=hd029580_3 + - maxima=5.46.0=h2b27fa8_0 - openblas=0.3.25=openmp_h6794695_0 - packaging=23.2=pyhd8ed1ab_0 + - platformdirs=4.1.0=pyhd8ed1ab_0 - pluggy=1.3.0=pyhd8ed1ab_0 - singular=4.2.1.p3=hac851df_2 - sympow=2.023.6=h115ba6a_3 - tomli=2.0.1=pyhd8ed1ab_0 - typing_extensions=4.8.0=pyha770c72_0 - zipp=3.17.0=pyhd8ed1ab_0 - - cctools=973.0.1=h40f6528_15 - - clang=16.0.6=hc177806_2 - - cmake=3.27.8=hc7ee4c4_0 - - curl=8.4.0=h726d00d_0 - - importlib-metadata=6.8.0=pyha770c72_0 + - cctools=973.0.1=hd9ad811_15 + - clang=15.0.7=hac416ee_4 + - cmake=3.28.0=hc7ee4c4_0 + - curl=8.5.0=h726d00d_0 + - importlib-metadata=7.0.0=pyha770c72_0 - libcblas=3.9.0=20_osx64_openblas - liblapack=3.9.0=20_osx64_openblas - - platformdirs=4.0.0=pyhd8ed1ab_0 - pyproject-api=1.6.1=pyhd8ed1ab_0 - typing-extensions=4.8.0=hd8ed1ab_0 - - clangxx=16.0.6=default_h762fdd7_2 + - virtualenv=20.25.0=pyhd8ed1ab_0 + - clangxx=15.0.7=default_h6b1ee41_4 - fflas-ffpack=2.4.3=h026fd7e_2 - gsl=2.7=h93259b0_0 - iml=1.0.5=h64b42ca_1003 - - importlib_metadata=6.8.0=hd8ed1ab_0 + - importlib_metadata=7.0.0=hd8ed1ab_0 - liblapacke=3.9.0=20_osx64_openblas - suitesparse=5.10.1=h7aff33d_1 - - virtualenv=20.24.7=pyhd8ed1ab_0 - blas-devel=3.9.0=20_osx64_openblas - - compiler-rt_osx-64=16.0.6=he1888fc_1 + - compiler-rt_osx-64=15.0.7=ha38d28d_2 - giac=1.9.0.21=h92f3f65_1 - linbox=1.6.3=hdde8d14_7 - - tox=4.11.3=pyhd8ed1ab_0 + - tox=4.11.4=pyhd8ed1ab_0 - blas=2.120=openblas - - compiler-rt=16.0.6=he1888fc_1 - - clang_impl_osx-64=16.0.6=h8787910_6 - - clang_osx-64=16.0.6=hb91bd55_6 + - compiler-rt=15.0.7=ha38d28d_2 + - clang_impl_osx-64=15.0.7=h03d6864_6 + - clang_osx-64=15.0.7=hb91bd55_6 + - c-compiler=1.6.0=h63c33a9_0 + - clangxx_impl_osx-64=15.0.7=h3d2d1bf_6 - gfortran_osx-64=12.3.0=h18f7dce_1 + - clangxx_osx-64=15.0.7=h655633e_6 - gfortran=12.3.0=h2c809b3_1 + - cxx-compiler=1.6.0=h1c7c39f_0 - fortran-compiler=1.6.0=h932d759_0 + - compilers=1.6.0=h694c41f_0 diff --git a/environment-3.11-linux-aarch64.yml b/environment-3.11-linux-aarch64.yml index d1e7e9dce22..3d525502c72 100644 --- a/environment-3.11-linux-aarch64.yml +++ b/environment-3.11-linux-aarch64.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: linux-aarch64 -# input_hash: 229550b8790010a81dfce381ec57a11a25291fcecd1bc4ffb99341c1c0e739e6 +# input_hash: 5eb636b1a3f517db2df984926560d9718b220d1073712472884f15b994b8cd76 channels: - conda-forge @@ -16,6 +16,7 @@ dependencies: - libboost-headers=1.82.0=h8af1aa0_2 - 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 - pari-elldata=0.0.20161017=0 @@ -33,9 +34,10 @@ dependencies: - binutils_linux-aarch64=2.40=h94bbfa1_2 - _openmp_mutex=4.5=2_kmp_llvm - libgcc-ng=13.2.0=hf8544c7_3 + - bc=1.07.1=hf897c2e_0 - bdw-gc=8.0.6=hd62202e_0 - bzip2=1.0.8=h31becfc_5 - - c-ares=1.22.1=h31becfc_0 + - c-ares=1.23.0=h31becfc_0 - cliquer=1.22=hb9de7d4_0 - gengetopt=2.23=h01db608_0 - gf2x=1.3.0=h1b3b3a3_2 @@ -46,7 +48,7 @@ dependencies: - keyutils=1.6.1=h4e544f5_0 - lerc=4.0.0=h4de3ea5_0 - libatomic_ops=7.6.14=h4e544f5_0 - - libbraiding=1.1=h7fd3ca4_0 + - libbraiding=1.2=hd600fc2_0 - libdeflate=1.17=hb4cce97_0 - libev=4.33=h516909a_1 - libexpat=2.5.0=hd600fc2_1 @@ -63,11 +65,12 @@ dependencies: - 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.7.2=hf897c2e_0 - ncurses=6.4=h0425590_2 - ninja=1.11.1=hdd96247_0 - - openssl=3.2.0=h31becfc_0 + - openssl=3.2.0=h31becfc_1 - palp=2.20=hb9de7d4_0 - patch=2.7.6=hf897c2e_1002 - pkg-config=0.29.2=hb9de7d4_1008 @@ -96,6 +99,7 @@ dependencies: - perl=5.32.1=4_h31becfc_perl5 - primecount=7.9=hd600fc2_0 - readline=8.2=h8fc344f_1 + - tar=1.34=h048efde_0 - tk=8.6.13=h194ca79_0 - zeromq=4.3.5=h2f0025b_0 - zlib=1.2.13=h31becfc_5 @@ -107,13 +111,14 @@ dependencies: - 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.21.2=hc419048_0 - libboost=1.82.0=hbfc56d7_2 - libflint=2.9.0=hd3470fa_ntl_100 - libhwloc=2.9.1=h21e8147_0 - libopenblas=0.3.25=pthreads_h5a5ec62_0 - libtiff=4.5.0=h4c1066a_2 - - llvm-openmp=17.0.5=h8b0cb96_0 + - llvm-openmp=17.0.6=h8b0cb96_0 - m4ri=20140914=h75e8696_1005 - mpc=1.3.1=hf4c8f4c_0 - mpfi=1.5.4=h846f343_1001 @@ -138,16 +143,19 @@ dependencies: - fplll=5.4.5=hb3a790e_0 - gfortran=12.3.0=h8d4031d_2 - gfortran_linux-aarch64=12.3.0=h1993883_2 + - gxx=12.3.0=hc1b51f9_2 + - gxx_linux-aarch64=12.3.0=h21accf6_2 - lcalc=2.0.5=h3264cc0_1 - libblas=3.9.0=20_linuxaarch64_openblas - libboost-devel=1.82.0=h37bb5a9_2 - libbrial=1.2.12=h17533bf_1 - - libcurl=8.4.0=h4e8248e_0 + - libcurl=8.5.0=h4e8248e_0 - libwebp=1.2.4=h7bdf6e5_1 - m4rie=20150908=h75e8696_1001 - - maxima=5.45.0=haa44c19_3 + - maxima=5.46.0=h6475f26_0 - openblas=0.3.25=pthreads_h339cbfa_0 - packaging=23.2=pyhd8ed1ab_0 + - platformdirs=4.1.0=pyhd8ed1ab_0 - pluggy=1.3.0=pyhd8ed1ab_0 - singular=4.2.1.p3=h3d4c4c6_2 - sympow=2.023.6=h157afb5_3 @@ -157,28 +165,29 @@ dependencies: - zipp=3.17.0=pyhd8ed1ab_0 - boost-cpp=1.82.0=h62f3a30_2 - brial=1.2.12=pyh694c41f_1 - - cmake=3.27.8=hef020d8_0 - - curl=8.4.0=h4e8248e_0 + - cmake=3.28.0=hef020d8_0 + - curl=8.5.0=h4e8248e_0 + - cxx-compiler=1.6.0=h2a328a1_0 - fortran-compiler=1.6.0=h7048d53_0 - - importlib-metadata=6.8.0=pyha770c72_0 + - importlib-metadata=7.0.0=pyha770c72_0 - libcblas=3.9.0=20_linuxaarch64_openblas - libgd=2.3.3=h5fc1a20_5 - liblapack=3.9.0=20_linuxaarch64_openblas - - platformdirs=4.0.0=pyhd8ed1ab_0 - pyproject-api=1.6.1=pyhd8ed1ab_0 - typing-extensions=4.8.0=hd8ed1ab_0 + - virtualenv=20.25.0=pyhd8ed1ab_0 - arpack=3.7.0=hf862f49_2 + - compilers=1.6.0=h8af1aa0_0 - fflas-ffpack=2.4.3=hf104d39_2 - gsl=2.7=h294027d_0 - iml=1.0.5=h9076c59_1003 - - importlib_metadata=6.8.0=hd8ed1ab_0 + - importlib_metadata=7.0.0=hd8ed1ab_0 - liblapacke=3.9.0=20_linuxaarch64_openblas - suitesparse=5.10.1=h1404dd6_1 - - virtualenv=20.24.7=pyhd8ed1ab_0 - blas-devel=3.9.0=20_linuxaarch64_openblas - giac=1.9.0.21=h04922a4_1 - igraph=0.9.10=hefb87a8_1 - linbox=1.6.3=h31716a8_7 - - tox=4.11.3=pyhd8ed1ab_0 + - tox=4.11.4=pyhd8ed1ab_0 - blas=2.120=openblas - rw=0.9=hf897c2e_0 diff --git a/environment-3.11-linux.yml b/environment-3.11-linux.yml index b7eb9b1c160..01c0d8e20ea 100644 --- a/environment-3.11-linux.yml +++ b/environment-3.11-linux.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: fc529502a5b958b2cb03ef381b882ec2ecf7eee4b33d67c64f4ffb192391cc63 +# input_hash: 92f3c444c9ab54966fe934a99acdf962b625bb31ebfd8fa80a426ec15e70114e channels: - conda-forge @@ -15,6 +15,7 @@ dependencies: - ld_impl_linux-64=2.40=h41732ed_0 - libboost-headers=1.83.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 - pari-elldata=0.0.20161017=0 @@ -33,9 +34,10 @@ dependencies: - binutils_linux-64=2.40=hbdbef99_2 - _openmp_mutex=4.5=2_kmp_llvm - libgcc-ng=13.2.0=h807b86a_3 + - bc=1.07.1=h7f98852_0 - bdw-gc=8.0.6=h4bd325d_0 - bzip2=1.0.8=hd590300_5 - - c-ares=1.22.1=hd590300_0 + - c-ares=1.23.0=hd590300_0 - cliquer=1.22=h36c2ea0_0 - gengetopt=2.23=h9c3ff4c_0 - gf2x=1.3.0=ha476b99_2 @@ -45,7 +47,7 @@ dependencies: - keyutils=1.6.1=h166bdaf_0 - lerc=4.0.0=h27087fc_0 - libatomic_ops=7.6.14=h166bdaf_0 - - libbraiding=1.1=h58526e2_0 + - libbraiding=1.2=hcb278e6_0 - libdeflate=1.19=hd590300_0 - libev=4.33=h516909a_1 - libexpat=2.5.0=hcb278e6_1 @@ -63,11 +65,12 @@ dependencies: - libzlib=1.2.13=hd590300_5 - lrcalc=2.1=h27087fc_5 - m4=1.4.18=h516909a_1001 + - make=4.3=hd18ef5c_1 - metis=5.1.0=h59595ed_1007 - nauty=2.7.2=h7f98852_0 - ncurses=6.4=h59595ed_2 - ninja=1.11.1=h924138e_0 - - openssl=3.2.0=hd590300_0 + - openssl=3.2.0=hd590300_1 - palp=2.20=h36c2ea0_0 - patch=2.7.6=h7f98852_1002 - pkg-config=0.29.2=h36c2ea0_1008 @@ -96,6 +99,7 @@ dependencies: - perl=5.32.1=4_hd590300_perl5 - primecount=7.9=hcb278e6_0 - readline=8.2=h8228510_1 + - tar=1.34=hb2e2bae_1 - tk=8.6.13=noxft_h4845f30_101 - zeromq=4.3.5=h59595ed_0 - zlib=1.2.13=hd590300_5 @@ -107,6 +111,7 @@ dependencies: - 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 - igraph=0.7.1=0 - krb5=1.21.2=h659d440_0 - libboost=1.83.0=h6fcfa73_0 @@ -114,7 +119,7 @@ dependencies: - libhwloc=2.9.3=default_h554bfaf_1009 - libopenblas=0.3.25=pthreads_h413a1c8_0 - libtiff=4.6.0=ha9c0a0a_2 - - llvm-openmp=17.0.5=h4dfa4b3_0 + - llvm-openmp=17.0.6=h4dfa4b3_0 - m4ri=20140914=h7ca028e_1005 - mpc=1.3.1=hfe3b2da_0 - mpfi=1.5.4=h9f54685_1001 @@ -139,16 +144,19 @@ dependencies: - fplll=5.4.5=h384768b_0 - gfortran=12.3.0=h499e0f7_2 - gfortran_linux-64=12.3.0=h7fe76b4_2 + - gxx=12.3.0=h8d2909c_2 + - gxx_linux-64=12.3.0=h8a814eb_2 - lcalc=2.0.5=h6a8a7c6_1 - libblas=3.9.0=20_linux64_openblas - libboost-devel=1.83.0=h00ab1b0_0 - libbrial=1.2.12=h3155cbd_1 - - libcurl=8.4.0=hca28451_0 + - libcurl=8.5.0=hca28451_0 - libwebp=1.3.2=h658648e_1 - m4rie=20150908=h7ca028e_1001 - - maxima=5.45.0=h9d73b02_3 + - maxima=5.46.0=hed6455c_0 - openblas=0.3.25=pthreads_h7a3da1a_0 - packaging=23.2=pyhd8ed1ab_0 + - platformdirs=4.1.0=pyhd8ed1ab_0 - pluggy=1.3.0=pyhd8ed1ab_0 - rw=0.8=h516909a_1001 - singular=4.2.1.p3=h1ea75ed_2 @@ -159,25 +167,26 @@ dependencies: - zipp=3.17.0=pyhd8ed1ab_0 - boost-cpp=1.83.0=h44aadfe_0 - brial=1.2.12=pyh694c41f_1 - - cmake=3.27.8=hcfe8598_0 - - curl=8.4.0=hca28451_0 + - cmake=3.28.0=hcfe8598_0 + - curl=8.5.0=hca28451_0 + - cxx-compiler=1.6.0=h00ab1b0_0 - fortran-compiler=1.6.0=heb67821_0 - - importlib-metadata=6.8.0=pyha770c72_0 + - importlib-metadata=7.0.0=pyha770c72_0 - libcblas=3.9.0=20_linux64_openblas - libgd=2.3.3=h119a65a_9 - liblapack=3.9.0=20_linux64_openblas - - platformdirs=4.0.0=pyhd8ed1ab_0 - pyproject-api=1.6.1=pyhd8ed1ab_0 - typing-extensions=4.8.0=hd8ed1ab_0 + - virtualenv=20.25.0=pyhd8ed1ab_0 + - compilers=1.6.0=ha770c72_0 - fflas-ffpack=2.4.3=h912ac81_2 - gsl=2.7=he838d99_0 - iml=1.0.5=hd75c201_1003 - - importlib_metadata=6.8.0=hd8ed1ab_0 + - importlib_metadata=7.0.0=hd8ed1ab_0 - liblapacke=3.9.0=20_linux64_openblas - suitesparse=5.10.1=h9e50725_1 - - virtualenv=20.24.7=pyhd8ed1ab_0 - blas-devel=3.9.0=20_linux64_openblas - giac=1.9.0.21=h673759e_1 - linbox=1.6.3=h9d78c56_7 - - tox=4.11.3=pyhd8ed1ab_0 + - tox=4.11.4=pyhd8ed1ab_0 - blas=2.120=openblas diff --git a/environment-3.11-macos-arm64.yml b/environment-3.11-macos-arm64.yml index c0bc623db53..c4e86911c6c 100644 --- a/environment-3.11-macos-arm64.yml +++ b/environment-3.11-macos-arm64.yml @@ -1,12 +1,13 @@ # Generated by conda-lock. # platform: osx-arm64 -# input_hash: 78100abf3f5c6da42435a898d4060f1359ee86442dbbdcd6b2d357e84f82080f +# input_hash: 613fd642595e54d68ddf19f481e06df6dd1781be3c62b812a52c4c18efa50cfb channels: - conda-forge dependencies: + - bc=1.07.1=h3422bc3_0 - bzip2=1.0.8=h93a5062_5 - - c-ares=1.22.1=h93a5062_0 + - c-ares=1.23.0=h93a5062_0 - ca-certificates=2023.11.17=hf0a4a13_0 - cliquer=1.22=h27ca646_0 - font-ttf-dejavu-sans-mono=2.37=hab24e00_0 @@ -30,8 +31,9 @@ dependencies: - libuv=1.46.0=hb547adb_0 - libwebp-base=1.2.4=h1a8c8d9_0 - libzlib=1.2.13=h53f4e23_5 - - llvm-openmp=17.0.5=hcd81f8e_0 + - llvm-openmp=17.0.6=hcd81f8e_0 - m4=1.4.18=h642e427_1001 + - make=4.3=he57ea6c_1 - mathjax=3.2.2=hce30654_0 - metis=5.1.0=h13dd4ca_1007 - nauty=2.7.2=h3422bc3_0 @@ -58,7 +60,7 @@ dependencies: - gmp=6.3.0=h965bd2d_0 - isl=0.25=h9a09cb3_0 - lerc=4.0.0=h9a09cb3_0 - - libbraiding=1.1=h9f76cd9_0 + - libbraiding=1.2=hb7217d7_0 - libgfortran5=13.2.0=hf226fd6_1 - libpng=1.6.39=h76d750c_0 - libsqlite=3.44.2=h091b4b1_0 @@ -66,13 +68,14 @@ dependencies: - lrcalc=2.1=hb7217d7_5 - ncurses=6.4=h463b476_2 - ninja=1.11.1=hffc8910_0 - - openssl=3.2.0=h0d3ecfb_0 + - openssl=3.2.0=h0d3ecfb_1 - pari-seadata=0.0.20090618=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 - tk=8.6.13=h5083fa2_1 - zeromq=4.3.5=h965bd2d_0 - zlib=1.2.13=h53f4e23_5 @@ -87,7 +90,7 @@ dependencies: - libboost=1.82.0=h3f31f7c_2 - libedit=3.1.20191231=hc8eb9b7_2 - libgfortran=5.0.0=13_2_0_hd922786_1 - - libglib=2.78.1=hb438215_1 + - libglib=2.78.2=hb438215_0 - libhomfly=1.02r6=h27ca646_0 - libllvm15=15.0.7=h62b9111_1 - libnghttp2=1.58.0=ha4dd798_0 @@ -108,7 +111,7 @@ dependencies: - ld64_osx-arm64=609=hc4dc95b_15 - libboost-devel=1.82.0=hf450f58_2 - libbrial=1.2.12=ha7f5006_1 - - libclang-cpp15=15.0.7=default_h5dc8d65_3 + - libclang-cpp15=15.0.7=default_hd209bcb_4 - libflint=2.9.0=h173eafc_ntl_100 - libopenblas=0.3.25=openmp_h6c19121_0 - libwebp=1.2.4=h999c80f_1 @@ -129,7 +132,7 @@ dependencies: - cachetools=5.3.2=pyhd8ed1ab_0 - cctools_osx-arm64=973.0.1=h2a25c60_15 - chardet=5.2.0=py311h267d04e_1 - - clang-15=15.0.7=default_h5dc8d65_3 + - clang-15=15.0.7=default_hd209bcb_4 - colorama=0.4.6=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - eclib=20230424=haeb5157_0 @@ -139,11 +142,12 @@ dependencies: - lcalc=2.0.5=hc94e8e6_1 - ld64=609=h89fa09d_15 - libblas=3.9.0=20_osxarm64_openblas - - libcurl=8.4.0=h2d989ff_0 + - libcurl=8.5.0=h2d989ff_0 - libgd=2.3.3=h8db8f0b_5 - maxima=5.45.0=h6032a66_2 - openblas=0.3.25=openmp_h55c453e_0 - packaging=23.2=pyhd8ed1ab_0 + - platformdirs=4.1.0=pyhd8ed1ab_0 - pluggy=1.3.0=pyhd8ed1ab_0 - singular=4.2.1.p3=h3b80c97_2 - sympow=2.023.6=hb0babe8_3 @@ -151,35 +155,39 @@ dependencies: - typing_extensions=4.8.0=pyha770c72_0 - zipp=3.17.0=pyhd8ed1ab_0 - cctools=973.0.1=hd1ac623_15 - - clang=15.0.7=hce30654_3 - - cmake=3.27.8=h04763b9_0 - - curl=8.4.0=h2d989ff_0 - - importlib-metadata=6.8.0=pyha770c72_0 + - clang=15.0.7=haab561b_4 + - cmake=3.28.0=h04763b9_0 + - curl=8.5.0=h2d989ff_0 + - importlib-metadata=7.0.0=pyha770c72_0 - libcblas=3.9.0=20_osxarm64_openblas - liblapack=3.9.0=20_osxarm64_openblas - - platformdirs=4.0.0=pyhd8ed1ab_0 - pyproject-api=1.6.1=pyhd8ed1ab_0 - typing-extensions=4.8.0=hd8ed1ab_0 + - virtualenv=20.25.0=pyhd8ed1ab_0 - arpack=3.7.0=h58ebc17_2 - - clangxx=15.0.7=default_h610c423_3 + - clangxx=15.0.7=default_h5c94ee4_4 - fflas-ffpack=2.4.3=h11f2abc_2 - gsl=2.7=h6e638da_0 - iml=1.0.5=hd52f0d1_1003 - - importlib_metadata=6.8.0=hd8ed1ab_0 + - importlib_metadata=7.0.0=hd8ed1ab_0 - liblapacke=3.9.0=20_osxarm64_openblas - suitesparse=5.10.1=h7cd81ec_1 - - virtualenv=20.24.7=pyhd8ed1ab_0 - blas-devel=3.9.0=20_osxarm64_openblas - - compiler-rt_osx-arm64=15.0.7=hf8d1dfb_1 + - compiler-rt_osx-arm64=15.0.7=h3808999_2 - giac=1.9.0.21=h1c96721_1 - igraph=0.9.10=hcec9b84_1 - linbox=1.6.3=h549c411_7 - - tox=4.11.3=pyhd8ed1ab_0 + - tox=4.11.4=pyhd8ed1ab_0 - blas=2.120=openblas - - compiler-rt=15.0.7=hf8d1dfb_1 + - compiler-rt=15.0.7=h3808999_2 - rw=0.9=h3422bc3_0 - clang_impl_osx-arm64=15.0.7=h77e971b_6 - clang_osx-arm64=15.0.7=h54d7cd3_6 + - c-compiler=1.6.0=hd291e01_0 + - clangxx_impl_osx-arm64=15.0.7=h768a7fd_6 - gfortran_osx-arm64=12.3.0=h57527a5_1 + - clangxx_osx-arm64=15.0.7=h77e971b_6 - gfortran=12.3.0=h1ca8e4b_1 + - cxx-compiler=1.6.0=h1995070_0 - fortran-compiler=1.6.0=h5a50232_0 + - compilers=1.6.0=hce30654_0 diff --git a/environment-3.11-macos.yml b/environment-3.11-macos.yml index de380722fac..a7fada426dd 100644 --- a/environment-3.11-macos.yml +++ b/environment-3.11-macos.yml @@ -1,12 +1,13 @@ # Generated by conda-lock. # platform: osx-64 -# input_hash: 6e980c8c1348c68b8f6ed19f5da964dea4576b3bba4061b3baf4f46f0e4e72d7 +# input_hash: 56de45bc82805aa688e9f76e61f730254d15268d8139cf161c294495da5efad3 channels: - conda-forge dependencies: + - bc=1.07.1=h0d85af4_0 - bzip2=1.0.8=h10d778d_5 - - c-ares=1.22.1=h10d778d_0 + - c-ares=1.23.0=h10d778d_0 - ca-certificates=2023.11.17=h8857fd0_0 - cliquer=1.22=hbcb3906_0 - font-ttf-dejavu-sans-mono=2.37=hab24e00_0 @@ -30,8 +31,9 @@ dependencies: - libuv=1.46.0=h0c2f820_0 - libwebp-base=1.3.2=h0dc2134_0 - libzlib=1.2.13=h8a1eda9_5 - - llvm-openmp=17.0.5=hb6ac08f_0 + - llvm-openmp=17.0.6=hb6ac08f_0 - m4=1.4.18=haf1e3a3_1001 + - make=4.3=h22f3db7_1 - mathjax=3.2.2=h694c41f_0 - metis=5.1.0=he965462_1007 - nauty=2.7.2=h0d85af4_0 @@ -59,21 +61,22 @@ dependencies: - gmp=6.3.0=h93d8f39_0 - isl=0.25=hb486fe8_0 - lerc=4.0.0=hb486fe8_0 - - libbraiding=1.1=h2e338ed_0 + - libbraiding=1.2=hf0c8a7f_0 - libgfortran5=13.2.0=h2873a65_1 - libpng=1.6.39=ha978bb4_0 - libsqlite=3.44.2=h92b6c6a_0 - - libxml2=2.11.6=hc0ae0f7_0 + - libxml2=2.12.2=hc0ae0f7_0 - lrcalc=2.1=hf0c8a7f_5 - ncurses=6.4=h93d8f39_2 - ninja=1.11.1=hb8565cd_0 - - openssl=3.2.0=hd75f5a5_0 + - openssl=3.2.0=hd75f5a5_1 - pari-seadata=0.0.20090618=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 - tk=8.6.13=h1abcd95_1 - zeromq=4.3.5=h93d8f39_0 - zlib=1.2.13=h8a1eda9_5 @@ -89,7 +92,7 @@ dependencies: - libedit=3.1.20191231=h0678c8f_2 - libgfortran=5.0.0=13_2_0_h97931a8_1 - libhomfly=1.02r6=hc929b4f_0 - - libllvm16=16.0.6=he4b1e75_2 + - libllvm15=15.0.7=hbedff68_4 - libnghttp2=1.58.0=h64cf6d3_0 - libssh2=1.11.0=hd019ec5_0 - libtiff=4.6.0=h684deea_2 @@ -105,14 +108,14 @@ dependencies: - fontconfig=2.14.2=h5bb23bf_0 - gfan=0.6.2=hd793b56_1003 - krb5=1.21.2=hb884880_0 - - ld64_osx-64=609=ha20a434_15 + - ld64_osx-64=609=h0fd476b_15 - libboost-devel=1.83.0=h7728843_0 - libbrial=1.2.12=h8d08345_1 - - libclang-cpp16=16.0.6=default_h762fdd7_2 + - libclang-cpp15=15.0.7=default_h6b1ee41_4 - libflint=2.9.0=hfd2f71f_ntl_100 - libopenblas=0.3.25=openmp_hfef2a42_0 - libwebp=1.3.2=h44782d1_1 - - llvm-tools=16.0.6=he4b1e75_2 + - llvm-tools=15.0.7=hbedff68_4 - m4rie=20150908=h3f75d11_1001 - mpc=1.3.1=h81bd1dd_0 - mpfi=1.5.4=h52b28e3_1001 @@ -126,9 +129,9 @@ dependencies: - boost-cpp=1.83.0=h07eb623_0 - brial=1.2.12=pyh694c41f_1 - cachetools=5.3.2=pyhd8ed1ab_0 - - cctools_osx-64=973.0.1=ha1c5b94_15 + - cctools_osx-64=973.0.1=habff3f6_15 - chardet=5.2.0=py311h6eed73b_1 - - clang-16=16.0.6=default_h762fdd7_2 + - clang-15=15.0.7=default_h6b1ee41_4 - colorama=0.4.6=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - eclib=20230424=hd00e801_0 @@ -136,46 +139,51 @@ dependencies: - fplll=5.4.5=hb7981ad_0 - gfortran_impl_osx-64=12.3.0=h54fd467_1 - lcalc=2.0.5=h3a941db_1 - - ld64=609=ha02d983_15 + - ld64=609=ha91a046_15 - libblas=3.9.0=20_osx64_openblas - - libcurl=8.4.0=h726d00d_0 + - libcurl=8.5.0=h726d00d_0 - libgd=2.3.3=h0dceb68_9 - - maxima=5.45.0=hd029580_3 + - maxima=5.46.0=h2b27fa8_0 - openblas=0.3.25=openmp_h6794695_0 - packaging=23.2=pyhd8ed1ab_0 + - platformdirs=4.1.0=pyhd8ed1ab_0 - pluggy=1.3.0=pyhd8ed1ab_0 - singular=4.2.1.p3=hac851df_2 - sympow=2.023.6=h115ba6a_3 - tomli=2.0.1=pyhd8ed1ab_0 - typing_extensions=4.8.0=pyha770c72_0 - zipp=3.17.0=pyhd8ed1ab_0 - - cctools=973.0.1=h40f6528_15 - - clang=16.0.6=hc177806_2 - - cmake=3.27.8=hc7ee4c4_0 - - curl=8.4.0=h726d00d_0 - - importlib-metadata=6.8.0=pyha770c72_0 + - cctools=973.0.1=hd9ad811_15 + - clang=15.0.7=hac416ee_4 + - cmake=3.28.0=hc7ee4c4_0 + - curl=8.5.0=h726d00d_0 + - importlib-metadata=7.0.0=pyha770c72_0 - libcblas=3.9.0=20_osx64_openblas - liblapack=3.9.0=20_osx64_openblas - - platformdirs=4.0.0=pyhd8ed1ab_0 - pyproject-api=1.6.1=pyhd8ed1ab_0 - typing-extensions=4.8.0=hd8ed1ab_0 - - clangxx=16.0.6=default_h762fdd7_2 + - virtualenv=20.25.0=pyhd8ed1ab_0 + - clangxx=15.0.7=default_h6b1ee41_4 - fflas-ffpack=2.4.3=h026fd7e_2 - gsl=2.7=h93259b0_0 - iml=1.0.5=h64b42ca_1003 - - importlib_metadata=6.8.0=hd8ed1ab_0 + - importlib_metadata=7.0.0=hd8ed1ab_0 - liblapacke=3.9.0=20_osx64_openblas - suitesparse=5.10.1=h7aff33d_1 - - virtualenv=20.24.7=pyhd8ed1ab_0 - blas-devel=3.9.0=20_osx64_openblas - - compiler-rt_osx-64=16.0.6=he1888fc_1 + - compiler-rt_osx-64=15.0.7=ha38d28d_2 - giac=1.9.0.21=h92f3f65_1 - linbox=1.6.3=hdde8d14_7 - - tox=4.11.3=pyhd8ed1ab_0 + - tox=4.11.4=pyhd8ed1ab_0 - blas=2.120=openblas - - compiler-rt=16.0.6=he1888fc_1 - - clang_impl_osx-64=16.0.6=h8787910_6 - - clang_osx-64=16.0.6=hb91bd55_6 + - compiler-rt=15.0.7=ha38d28d_2 + - clang_impl_osx-64=15.0.7=h03d6864_6 + - clang_osx-64=15.0.7=hb91bd55_6 + - c-compiler=1.6.0=h63c33a9_0 + - clangxx_impl_osx-64=15.0.7=h3d2d1bf_6 - gfortran_osx-64=12.3.0=h18f7dce_1 + - clangxx_osx-64=15.0.7=h655633e_6 - gfortran=12.3.0=h2c809b3_1 + - cxx-compiler=1.6.0=h1c7c39f_0 - fortran-compiler=1.6.0=h932d759_0 + - compilers=1.6.0=h694c41f_0 diff --git a/environment-3.9-linux-aarch64.yml b/environment-3.9-linux-aarch64.yml index acc3b63f38d..11c74aec688 100644 --- a/environment-3.9-linux-aarch64.yml +++ b/environment-3.9-linux-aarch64.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: linux-aarch64 -# input_hash: a3caa90ef4560e5282e0114e88588a68e568e700f51893dc423ff92aa324272c +# input_hash: e4f28cd92fad4a067ebc71bcd54af8fdacc4d384ca2b9c40c559aa5c8a0eaf09 channels: - conda-forge @@ -16,6 +16,7 @@ dependencies: - libboost-headers=1.82.0=h8af1aa0_2 - 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 - pari-elldata=0.0.20161017=0 @@ -33,9 +34,10 @@ dependencies: - binutils_linux-aarch64=2.40=h94bbfa1_2 - _openmp_mutex=4.5=2_kmp_llvm - libgcc-ng=13.2.0=hf8544c7_3 + - bc=1.07.1=hf897c2e_0 - bdw-gc=8.0.6=hd62202e_0 - bzip2=1.0.8=h31becfc_5 - - c-ares=1.22.1=h31becfc_0 + - c-ares=1.23.0=h31becfc_0 - cliquer=1.22=hb9de7d4_0 - gengetopt=2.23=h01db608_0 - gf2x=1.3.0=h1b3b3a3_2 @@ -46,7 +48,7 @@ dependencies: - keyutils=1.6.1=h4e544f5_0 - lerc=4.0.0=h4de3ea5_0 - libatomic_ops=7.6.14=h4e544f5_0 - - libbraiding=1.1=h7fd3ca4_0 + - libbraiding=1.2=hd600fc2_0 - libdeflate=1.17=hb4cce97_0 - libev=4.33=h516909a_1 - libexpat=2.5.0=hd600fc2_1 @@ -63,11 +65,12 @@ dependencies: - 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.7.2=hf897c2e_0 - ncurses=6.4=h0425590_2 - ninja=1.11.1=hdd96247_0 - - openssl=3.2.0=h31becfc_0 + - openssl=3.2.0=h31becfc_1 - palp=2.20=hb9de7d4_0 - patch=2.7.6=hf897c2e_1002 - pkg-config=0.29.2=hb9de7d4_1008 @@ -96,6 +99,7 @@ dependencies: - perl=5.32.1=4_h31becfc_perl5 - primecount=7.9=hd600fc2_0 - readline=8.2=h8fc344f_1 + - tar=1.34=h048efde_0 - tk=8.6.13=h194ca79_0 - zeromq=4.3.5=h2f0025b_0 - zlib=1.2.13=h31becfc_5 @@ -107,13 +111,14 @@ dependencies: - 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.21.2=hc419048_0 - libboost=1.82.0=hbfc56d7_2 - libflint=2.9.0=hd3470fa_ntl_100 - libhwloc=2.9.1=h21e8147_0 - libopenblas=0.3.25=pthreads_h5a5ec62_0 - libtiff=4.5.0=h4c1066a_2 - - llvm-openmp=17.0.5=h8b0cb96_0 + - llvm-openmp=17.0.6=h8b0cb96_0 - m4ri=20140914=h75e8696_1005 - mpc=1.3.1=hf4c8f4c_0 - mpfi=1.5.4=h846f343_1001 @@ -138,16 +143,19 @@ dependencies: - fplll=5.4.5=hb3a790e_0 - gfortran=12.3.0=h8d4031d_2 - gfortran_linux-aarch64=12.3.0=h1993883_2 + - gxx=12.3.0=hc1b51f9_2 + - gxx_linux-aarch64=12.3.0=h21accf6_2 - lcalc=2.0.5=h3264cc0_1 - libblas=3.9.0=20_linuxaarch64_openblas - libboost-devel=1.82.0=h37bb5a9_2 - libbrial=1.2.12=h17533bf_1 - - libcurl=8.4.0=h4e8248e_0 + - libcurl=8.5.0=h4e8248e_0 - libwebp=1.2.4=h7bdf6e5_1 - m4rie=20150908=h75e8696_1001 - - maxima=5.45.0=haa44c19_3 + - maxima=5.46.0=h6475f26_0 - openblas=0.3.25=pthreads_h339cbfa_0 - packaging=23.2=pyhd8ed1ab_0 + - platformdirs=4.1.0=pyhd8ed1ab_0 - pluggy=1.3.0=pyhd8ed1ab_0 - singular=4.2.1.p3=h3d4c4c6_2 - sympow=2.023.6=h157afb5_3 @@ -157,28 +165,29 @@ dependencies: - zipp=3.17.0=pyhd8ed1ab_0 - boost-cpp=1.82.0=h62f3a30_2 - brial=1.2.12=pyh694c41f_1 - - cmake=3.27.8=hef020d8_0 - - curl=8.4.0=h4e8248e_0 + - cmake=3.28.0=hef020d8_0 + - curl=8.5.0=h4e8248e_0 + - cxx-compiler=1.6.0=h2a328a1_0 - fortran-compiler=1.6.0=h7048d53_0 - - importlib-metadata=6.8.0=pyha770c72_0 + - importlib-metadata=7.0.0=pyha770c72_0 - libcblas=3.9.0=20_linuxaarch64_openblas - libgd=2.3.3=h5fc1a20_5 - liblapack=3.9.0=20_linuxaarch64_openblas - - platformdirs=4.0.0=pyhd8ed1ab_0 - pyproject-api=1.6.1=pyhd8ed1ab_0 - typing-extensions=4.8.0=hd8ed1ab_0 + - virtualenv=20.25.0=pyhd8ed1ab_0 - arpack=3.7.0=hf862f49_2 + - compilers=1.6.0=h8af1aa0_0 - fflas-ffpack=2.4.3=hf104d39_2 - gsl=2.7=h294027d_0 - iml=1.0.5=h9076c59_1003 - - importlib_metadata=6.8.0=hd8ed1ab_0 + - importlib_metadata=7.0.0=hd8ed1ab_0 - liblapacke=3.9.0=20_linuxaarch64_openblas - suitesparse=5.10.1=h1404dd6_1 - - virtualenv=20.24.7=pyhd8ed1ab_0 - blas-devel=3.9.0=20_linuxaarch64_openblas - giac=1.9.0.21=h04922a4_1 - igraph=0.9.10=hefb87a8_1 - linbox=1.6.3=h31716a8_7 - - tox=4.11.3=pyhd8ed1ab_0 + - tox=4.11.4=pyhd8ed1ab_0 - blas=2.120=openblas - rw=0.9=hf897c2e_0 diff --git a/environment-3.9-linux.yml b/environment-3.9-linux.yml index 7697a423966..42b7777d84c 100644 --- a/environment-3.9-linux.yml +++ b/environment-3.9-linux.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: f33930103d5fd6d2387e86192a02abc6ed30ddf0ecbd5551d3caefe9f1bd57a9 +# input_hash: 555621541a8b539cc815289cd9ca4ec17306ea3559291cc955ebfb0e1cee3246 channels: - conda-forge @@ -15,6 +15,7 @@ dependencies: - ld_impl_linux-64=2.40=h41732ed_0 - libboost-headers=1.83.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 - pari-elldata=0.0.20161017=0 @@ -33,9 +34,10 @@ dependencies: - binutils_linux-64=2.40=hbdbef99_2 - _openmp_mutex=4.5=2_kmp_llvm - libgcc-ng=13.2.0=h807b86a_3 + - bc=1.07.1=h7f98852_0 - bdw-gc=8.0.6=h4bd325d_0 - bzip2=1.0.8=hd590300_5 - - c-ares=1.22.1=hd590300_0 + - c-ares=1.23.0=hd590300_0 - cliquer=1.22=h36c2ea0_0 - gengetopt=2.23=h9c3ff4c_0 - gf2x=1.3.0=ha476b99_2 @@ -45,7 +47,7 @@ dependencies: - keyutils=1.6.1=h166bdaf_0 - lerc=4.0.0=h27087fc_0 - libatomic_ops=7.6.14=h166bdaf_0 - - libbraiding=1.1=h58526e2_0 + - libbraiding=1.2=hcb278e6_0 - libdeflate=1.19=hd590300_0 - libev=4.33=h516909a_1 - libexpat=2.5.0=hcb278e6_1 @@ -63,11 +65,12 @@ dependencies: - libzlib=1.2.13=hd590300_5 - lrcalc=2.1=h27087fc_5 - m4=1.4.18=h516909a_1001 + - make=4.3=hd18ef5c_1 - metis=5.1.0=h59595ed_1007 - nauty=2.7.2=h7f98852_0 - ncurses=6.4=h59595ed_2 - ninja=1.11.1=h924138e_0 - - openssl=3.2.0=hd590300_0 + - openssl=3.2.0=hd590300_1 - palp=2.20=h36c2ea0_0 - patch=2.7.6=h7f98852_1002 - pkg-config=0.29.2=h36c2ea0_1008 @@ -96,6 +99,7 @@ dependencies: - perl=5.32.1=4_hd590300_perl5 - primecount=7.9=hcb278e6_0 - readline=8.2=h8228510_1 + - tar=1.34=hb2e2bae_1 - tk=8.6.13=noxft_h4845f30_101 - zeromq=4.3.5=h59595ed_0 - zlib=1.2.13=hd590300_5 @@ -107,6 +111,7 @@ dependencies: - 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 - igraph=0.7.1=0 - krb5=1.21.2=h659d440_0 - libboost=1.83.0=h6fcfa73_0 @@ -114,7 +119,7 @@ dependencies: - libhwloc=2.9.3=default_h554bfaf_1009 - libopenblas=0.3.25=pthreads_h413a1c8_0 - libtiff=4.6.0=ha9c0a0a_2 - - llvm-openmp=17.0.5=h4dfa4b3_0 + - llvm-openmp=17.0.6=h4dfa4b3_0 - m4ri=20140914=h7ca028e_1005 - mpc=1.3.1=hfe3b2da_0 - mpfi=1.5.4=h9f54685_1001 @@ -139,16 +144,19 @@ dependencies: - fplll=5.4.5=h384768b_0 - gfortran=12.3.0=h499e0f7_2 - gfortran_linux-64=12.3.0=h7fe76b4_2 + - gxx=12.3.0=h8d2909c_2 + - gxx_linux-64=12.3.0=h8a814eb_2 - lcalc=2.0.5=h6a8a7c6_1 - libblas=3.9.0=20_linux64_openblas - libboost-devel=1.83.0=h00ab1b0_0 - libbrial=1.2.12=h3155cbd_1 - - libcurl=8.4.0=hca28451_0 + - libcurl=8.5.0=hca28451_0 - libwebp=1.3.2=h658648e_1 - m4rie=20150908=h7ca028e_1001 - - maxima=5.45.0=h9d73b02_3 + - maxima=5.46.0=hed6455c_0 - openblas=0.3.25=pthreads_h7a3da1a_0 - packaging=23.2=pyhd8ed1ab_0 + - platformdirs=4.1.0=pyhd8ed1ab_0 - pluggy=1.3.0=pyhd8ed1ab_0 - rw=0.8=h516909a_1001 - singular=4.2.1.p3=h1ea75ed_2 @@ -159,25 +167,26 @@ dependencies: - zipp=3.17.0=pyhd8ed1ab_0 - boost-cpp=1.83.0=h44aadfe_0 - brial=1.2.12=pyh694c41f_1 - - cmake=3.27.8=hcfe8598_0 - - curl=8.4.0=hca28451_0 + - cmake=3.27.9=hcfe8598_0 + - curl=8.5.0=hca28451_0 + - cxx-compiler=1.6.0=h00ab1b0_0 - fortran-compiler=1.6.0=heb67821_0 - - importlib-metadata=6.8.0=pyha770c72_0 + - importlib-metadata=7.0.0=pyha770c72_0 - libcblas=3.9.0=20_linux64_openblas - libgd=2.3.3=h119a65a_9 - liblapack=3.9.0=20_linux64_openblas - - platformdirs=4.0.0=pyhd8ed1ab_0 - pyproject-api=1.6.1=pyhd8ed1ab_0 - typing-extensions=4.8.0=hd8ed1ab_0 + - virtualenv=20.25.0=pyhd8ed1ab_0 + - compilers=1.6.0=ha770c72_0 - fflas-ffpack=2.4.3=h912ac81_2 - gsl=2.7=he838d99_0 - iml=1.0.5=hd75c201_1003 - - importlib_metadata=6.8.0=hd8ed1ab_0 + - importlib_metadata=7.0.0=hd8ed1ab_0 - liblapacke=3.9.0=20_linux64_openblas - suitesparse=5.10.1=h9e50725_1 - - virtualenv=20.24.7=pyhd8ed1ab_0 - blas-devel=3.9.0=20_linux64_openblas - giac=1.9.0.21=h673759e_1 - linbox=1.6.3=h9d78c56_7 - - tox=4.11.3=pyhd8ed1ab_0 + - tox=4.11.4=pyhd8ed1ab_0 - blas=2.120=openblas diff --git a/environment-3.9-macos-arm64.yml b/environment-3.9-macos-arm64.yml index 91b06c1e39d..dd677763e2e 100644 --- a/environment-3.9-macos-arm64.yml +++ b/environment-3.9-macos-arm64.yml @@ -1,12 +1,13 @@ # Generated by conda-lock. # platform: osx-arm64 -# input_hash: c87d22a55df9a357c3991187ec471140cbfc4bcbc956cf4e84edce39459d9306 +# input_hash: 4cffd740aeccb33c67846c0871ab46b91d0251e032c33506f7cb643588bfe748 channels: - conda-forge dependencies: + - bc=1.07.1=h3422bc3_0 - bzip2=1.0.8=h93a5062_5 - - c-ares=1.22.1=h93a5062_0 + - c-ares=1.23.0=h93a5062_0 - ca-certificates=2023.11.17=hf0a4a13_0 - cliquer=1.22=h27ca646_0 - font-ttf-dejavu-sans-mono=2.37=hab24e00_0 @@ -30,8 +31,9 @@ dependencies: - libuv=1.46.0=hb547adb_0 - libwebp-base=1.2.4=h1a8c8d9_0 - libzlib=1.2.13=h53f4e23_5 - - llvm-openmp=17.0.5=hcd81f8e_0 + - llvm-openmp=17.0.6=hcd81f8e_0 - m4=1.4.18=h642e427_1001 + - make=4.3=he57ea6c_1 - mathjax=3.2.2=hce30654_0 - metis=5.1.0=h13dd4ca_1007 - nauty=2.7.2=h3422bc3_0 @@ -58,7 +60,7 @@ dependencies: - gmp=6.3.0=h965bd2d_0 - isl=0.25=h9a09cb3_0 - lerc=4.0.0=h9a09cb3_0 - - libbraiding=1.1=h9f76cd9_0 + - libbraiding=1.2=hb7217d7_0 - libgfortran5=13.2.0=hf226fd6_1 - libpng=1.6.39=h76d750c_0 - libsqlite=3.44.2=h091b4b1_0 @@ -66,13 +68,14 @@ dependencies: - lrcalc=2.1=hb7217d7_5 - ncurses=6.4=h463b476_2 - ninja=1.11.1=hffc8910_0 - - openssl=3.2.0=h0d3ecfb_0 + - openssl=3.2.0=h0d3ecfb_1 - pari-seadata=0.0.20090618=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 - tk=8.6.13=h5083fa2_1 - zeromq=4.3.5=h965bd2d_0 - zlib=1.2.13=h53f4e23_5 @@ -87,7 +90,7 @@ dependencies: - libboost=1.82.0=h3f31f7c_2 - libedit=3.1.20191231=hc8eb9b7_2 - libgfortran=5.0.0=13_2_0_hd922786_1 - - libglib=2.78.1=hb438215_1 + - libglib=2.78.2=hb438215_0 - libhomfly=1.02r6=h27ca646_0 - libllvm15=15.0.7=h62b9111_1 - libnghttp2=1.58.0=ha4dd798_0 @@ -108,7 +111,7 @@ dependencies: - ld64_osx-arm64=609=hc4dc95b_15 - libboost-devel=1.82.0=hf450f58_2 - libbrial=1.2.12=ha7f5006_1 - - libclang-cpp15=15.0.7=default_h5dc8d65_3 + - libclang-cpp15=15.0.7=default_hd209bcb_4 - libflint=2.9.0=h173eafc_ntl_100 - libopenblas=0.3.25=openmp_h6c19121_0 - libwebp=1.2.4=h999c80f_1 @@ -129,7 +132,7 @@ dependencies: - cachetools=5.3.2=pyhd8ed1ab_0 - cctools_osx-arm64=973.0.1=h2a25c60_15 - chardet=5.2.0=py39h2804cbe_1 - - clang-15=15.0.7=default_h5dc8d65_3 + - clang-15=15.0.7=default_hd209bcb_4 - colorama=0.4.6=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - eclib=20230424=haeb5157_0 @@ -139,11 +142,12 @@ dependencies: - lcalc=2.0.5=hc94e8e6_1 - ld64=609=h89fa09d_15 - libblas=3.9.0=20_osxarm64_openblas - - libcurl=8.4.0=h2d989ff_0 + - libcurl=8.5.0=h2d989ff_0 - libgd=2.3.3=h8db8f0b_5 - maxima=5.45.0=h6032a66_2 - openblas=0.3.25=openmp_h55c453e_0 - packaging=23.2=pyhd8ed1ab_0 + - platformdirs=4.1.0=pyhd8ed1ab_0 - pluggy=1.3.0=pyhd8ed1ab_0 - singular=4.2.1.p3=h3b80c97_2 - sympow=2.023.6=hb0babe8_3 @@ -151,35 +155,39 @@ dependencies: - typing_extensions=4.8.0=pyha770c72_0 - zipp=3.17.0=pyhd8ed1ab_0 - cctools=973.0.1=hd1ac623_15 - - clang=15.0.7=hce30654_3 - - cmake=3.27.8=h04763b9_0 - - curl=8.4.0=h2d989ff_0 - - importlib-metadata=6.8.0=pyha770c72_0 + - clang=15.0.7=haab561b_4 + - cmake=3.28.0=h04763b9_0 + - curl=8.5.0=h2d989ff_0 + - importlib-metadata=7.0.0=pyha770c72_0 - libcblas=3.9.0=20_osxarm64_openblas - liblapack=3.9.0=20_osxarm64_openblas - - platformdirs=4.0.0=pyhd8ed1ab_0 - pyproject-api=1.6.1=pyhd8ed1ab_0 - typing-extensions=4.8.0=hd8ed1ab_0 + - virtualenv=20.25.0=pyhd8ed1ab_0 - arpack=3.7.0=h58ebc17_2 - - clangxx=15.0.7=default_h610c423_3 + - clangxx=15.0.7=default_h5c94ee4_4 - fflas-ffpack=2.4.3=h11f2abc_2 - gsl=2.7=h6e638da_0 - iml=1.0.5=hd52f0d1_1003 - - importlib_metadata=6.8.0=hd8ed1ab_0 + - importlib_metadata=7.0.0=hd8ed1ab_0 - liblapacke=3.9.0=20_osxarm64_openblas - suitesparse=5.10.1=h7cd81ec_1 - - virtualenv=20.24.7=pyhd8ed1ab_0 - blas-devel=3.9.0=20_osxarm64_openblas - - compiler-rt_osx-arm64=15.0.7=hf8d1dfb_1 + - compiler-rt_osx-arm64=15.0.7=h3808999_2 - giac=1.9.0.21=h1c96721_1 - igraph=0.9.10=hcec9b84_1 - linbox=1.6.3=h549c411_7 - - tox=4.11.3=pyhd8ed1ab_0 + - tox=4.11.4=pyhd8ed1ab_0 - blas=2.120=openblas - - compiler-rt=15.0.7=hf8d1dfb_1 + - compiler-rt=15.0.7=h3808999_2 - rw=0.9=h3422bc3_0 - clang_impl_osx-arm64=15.0.7=h77e971b_6 - clang_osx-arm64=15.0.7=h54d7cd3_6 + - c-compiler=1.6.0=hd291e01_0 + - clangxx_impl_osx-arm64=15.0.7=h768a7fd_6 - gfortran_osx-arm64=12.3.0=h57527a5_1 + - clangxx_osx-arm64=15.0.7=h77e971b_6 - gfortran=12.3.0=h1ca8e4b_1 + - cxx-compiler=1.6.0=h1995070_0 - fortran-compiler=1.6.0=h5a50232_0 + - compilers=1.6.0=hce30654_0 diff --git a/environment-3.9-macos.yml b/environment-3.9-macos.yml index c126c65a0ee..2dbd23c328f 100644 --- a/environment-3.9-macos.yml +++ b/environment-3.9-macos.yml @@ -1,12 +1,13 @@ # Generated by conda-lock. # platform: osx-64 -# input_hash: 9c80846c49ff1d646e5a0eeec9eb4c7b2495fe3a5e4b8a0b1ea8673ae89a3bac +# input_hash: 5d2b674b77dcb2601635b0eb473d2a95315ac335496eff15f52b8084245ebe84 channels: - conda-forge dependencies: + - bc=1.07.1=h0d85af4_0 - bzip2=1.0.8=h10d778d_5 - - c-ares=1.22.1=h10d778d_0 + - c-ares=1.23.0=h10d778d_0 - ca-certificates=2023.11.17=h8857fd0_0 - cliquer=1.22=hbcb3906_0 - font-ttf-dejavu-sans-mono=2.37=hab24e00_0 @@ -30,8 +31,9 @@ dependencies: - libuv=1.46.0=h0c2f820_0 - libwebp-base=1.3.2=h0dc2134_0 - libzlib=1.2.13=h8a1eda9_5 - - llvm-openmp=17.0.5=hb6ac08f_0 + - llvm-openmp=17.0.6=hb6ac08f_0 - m4=1.4.18=haf1e3a3_1001 + - make=4.3=h22f3db7_1 - mathjax=3.2.2=h694c41f_0 - metis=5.1.0=he965462_1007 - nauty=2.7.2=h0d85af4_0 @@ -59,21 +61,22 @@ dependencies: - gmp=6.3.0=h93d8f39_0 - isl=0.25=hb486fe8_0 - lerc=4.0.0=hb486fe8_0 - - libbraiding=1.1=h2e338ed_0 + - libbraiding=1.2=hf0c8a7f_0 - libgfortran5=13.2.0=h2873a65_1 - libpng=1.6.39=ha978bb4_0 - libsqlite=3.44.2=h92b6c6a_0 - - libxml2=2.11.6=hc0ae0f7_0 + - libxml2=2.12.2=hc0ae0f7_0 - lrcalc=2.1=hf0c8a7f_5 - ncurses=6.4=h93d8f39_2 - ninja=1.11.1=hb8565cd_0 - - openssl=3.2.0=hd75f5a5_0 + - openssl=3.2.0=hd75f5a5_1 - pari-seadata=0.0.20090618=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 - tk=8.6.13=h1abcd95_1 - zeromq=4.3.5=h93d8f39_0 - zlib=1.2.13=h8a1eda9_5 @@ -89,7 +92,7 @@ dependencies: - libedit=3.1.20191231=h0678c8f_2 - libgfortran=5.0.0=13_2_0_h97931a8_1 - libhomfly=1.02r6=hc929b4f_0 - - libllvm16=16.0.6=he4b1e75_2 + - libllvm15=15.0.7=hbedff68_4 - libnghttp2=1.58.0=h64cf6d3_0 - libssh2=1.11.0=hd019ec5_0 - libtiff=4.6.0=h684deea_2 @@ -105,14 +108,14 @@ dependencies: - fontconfig=2.14.2=h5bb23bf_0 - gfan=0.6.2=hd793b56_1003 - krb5=1.21.2=hb884880_0 - - ld64_osx-64=609=ha20a434_15 + - ld64_osx-64=609=h0fd476b_15 - libboost-devel=1.83.0=h7728843_0 - libbrial=1.2.12=h8d08345_1 - - libclang-cpp16=16.0.6=default_h762fdd7_2 + - libclang-cpp15=15.0.7=default_h6b1ee41_4 - libflint=2.9.0=hfd2f71f_ntl_100 - libopenblas=0.3.25=openmp_hfef2a42_0 - libwebp=1.3.2=h44782d1_1 - - llvm-tools=16.0.6=he4b1e75_2 + - llvm-tools=15.0.7=hbedff68_4 - m4rie=20150908=h3f75d11_1001 - mpc=1.3.1=h81bd1dd_0 - mpfi=1.5.4=h52b28e3_1001 @@ -126,9 +129,9 @@ dependencies: - boost-cpp=1.83.0=h07eb623_0 - brial=1.2.12=pyh694c41f_1 - cachetools=5.3.2=pyhd8ed1ab_0 - - cctools_osx-64=973.0.1=ha1c5b94_15 + - cctools_osx-64=973.0.1=habff3f6_15 - chardet=5.2.0=py39h6e9494a_1 - - clang-16=16.0.6=default_h762fdd7_2 + - clang-15=15.0.7=default_h6b1ee41_4 - colorama=0.4.6=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - eclib=20230424=hd00e801_0 @@ -136,46 +139,51 @@ dependencies: - fplll=5.4.5=hb7981ad_0 - gfortran_impl_osx-64=12.3.0=h54fd467_1 - lcalc=2.0.5=h3a941db_1 - - ld64=609=ha02d983_15 + - ld64=609=ha91a046_15 - libblas=3.9.0=20_osx64_openblas - - libcurl=8.4.0=h726d00d_0 + - libcurl=8.5.0=h726d00d_0 - libgd=2.3.3=h0dceb68_9 - - maxima=5.45.0=hd029580_3 + - maxima=5.46.0=h2b27fa8_0 - openblas=0.3.25=openmp_h6794695_0 - packaging=23.2=pyhd8ed1ab_0 + - platformdirs=4.1.0=pyhd8ed1ab_0 - pluggy=1.3.0=pyhd8ed1ab_0 - singular=4.2.1.p3=hac851df_2 - sympow=2.023.6=h115ba6a_3 - tomli=2.0.1=pyhd8ed1ab_0 - typing_extensions=4.8.0=pyha770c72_0 - zipp=3.17.0=pyhd8ed1ab_0 - - cctools=973.0.1=h40f6528_15 - - clang=16.0.6=hc177806_2 - - cmake=3.27.8=hc7ee4c4_0 - - curl=8.4.0=h726d00d_0 - - importlib-metadata=6.8.0=pyha770c72_0 + - cctools=973.0.1=hd9ad811_15 + - clang=15.0.7=hac416ee_4 + - cmake=3.28.0=hc7ee4c4_0 + - curl=8.5.0=h726d00d_0 + - importlib-metadata=7.0.0=pyha770c72_0 - libcblas=3.9.0=20_osx64_openblas - liblapack=3.9.0=20_osx64_openblas - - platformdirs=4.0.0=pyhd8ed1ab_0 - pyproject-api=1.6.1=pyhd8ed1ab_0 - typing-extensions=4.8.0=hd8ed1ab_0 - - clangxx=16.0.6=default_h762fdd7_2 + - virtualenv=20.25.0=pyhd8ed1ab_0 + - clangxx=15.0.7=default_h6b1ee41_4 - fflas-ffpack=2.4.3=h026fd7e_2 - gsl=2.7=h93259b0_0 - iml=1.0.5=h64b42ca_1003 - - importlib_metadata=6.8.0=hd8ed1ab_0 + - importlib_metadata=7.0.0=hd8ed1ab_0 - liblapacke=3.9.0=20_osx64_openblas - suitesparse=5.10.1=h7aff33d_1 - - virtualenv=20.24.7=pyhd8ed1ab_0 - blas-devel=3.9.0=20_osx64_openblas - - compiler-rt_osx-64=16.0.6=he1888fc_1 + - compiler-rt_osx-64=15.0.7=ha38d28d_2 - giac=1.9.0.21=h92f3f65_1 - linbox=1.6.3=hdde8d14_7 - - tox=4.11.3=pyhd8ed1ab_0 + - tox=4.11.4=pyhd8ed1ab_0 - blas=2.120=openblas - - compiler-rt=16.0.6=he1888fc_1 - - clang_impl_osx-64=16.0.6=h8787910_6 - - clang_osx-64=16.0.6=hb91bd55_6 + - compiler-rt=15.0.7=ha38d28d_2 + - clang_impl_osx-64=15.0.7=h03d6864_6 + - clang_osx-64=15.0.7=hb91bd55_6 + - c-compiler=1.6.0=h63c33a9_0 + - clangxx_impl_osx-64=15.0.7=h3d2d1bf_6 - gfortran_osx-64=12.3.0=h18f7dce_1 + - clangxx_osx-64=15.0.7=h655633e_6 - gfortran=12.3.0=h2c809b3_1 + - cxx-compiler=1.6.0=h1c7c39f_0 - fortran-compiler=1.6.0=h932d759_0 + - compilers=1.6.0=h694c41f_0 diff --git a/src/environment-3.10-linux-aarch64.yml b/src/environment-3.10-linux-aarch64.yml index 5bba6aed652..dc9bf6e650a 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: 6c3b2c90762c877dd876c8090f0d92aee12867e33275cf36f315c8cfdb98f28a +# input_hash: baa728b41d57dd74d6c81508f97c5c09ae65517a224def7af07ce47940fbd22f channels: - conda-forge @@ -41,9 +41,10 @@ dependencies: - _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 - bdw-gc=8.0.6=hd62202e_0 - bzip2=1.0.8=h31becfc_5 - - c-ares=1.22.1=h31becfc_0 + - c-ares=1.23.0=h31becfc_0 - cliquer=1.22=hb9de7d4_0 - fribidi=1.0.10=hb9de7d4_0 - gengetopt=2.23=h01db608_0 @@ -57,7 +58,7 @@ dependencies: - keyutils=1.6.1=h4e544f5_0 - lerc=4.0.0=h4de3ea5_0 - libatomic_ops=7.6.14=h4e544f5_0 - - libbraiding=1.1=h7fd3ca4_0 + - libbraiding=1.2=hd600fc2_0 - libbrotlicommon=1.1.0=h31becfc_1 - libdeflate=1.17=hb4cce97_0 - libev=4.33=h516909a_1 @@ -80,7 +81,7 @@ dependencies: - nauty=2.7.2=hf897c2e_0 - ncurses=6.4=h0425590_2 - ninja=1.11.1=hdd96247_0 - - openssl=3.2.0=h31becfc_0 + - openssl=3.2.0=h31becfc_1 - palp=2.20=hb9de7d4_0 - patch=2.7.6=hf897c2e_1002 - pixman=0.42.2=h2f0025b_0 @@ -126,6 +127,7 @@ dependencies: - perl=5.32.1=4_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 @@ -151,7 +153,7 @@ dependencies: - libhwloc=2.9.1=h21e8147_0 - libopenblas=0.3.25=pthreads_h5a5ec62_0 - libtiff=4.5.0=h4c1066a_2 - - llvm-openmp=17.0.5=h8b0cb96_0 + - llvm-openmp=17.0.6=h8b0cb96_0 - m4ri=20140914=h75e8696_1005 - mpc=1.3.1=hf4c8f4c_0 - mpfi=1.5.4=h846f343_1001 @@ -187,7 +189,7 @@ dependencies: - decorator=5.1.1=pyhd8ed1ab_0 - defusedxml=0.7.1=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - - docutils=0.20.1=py310hbbe02a8_2 + - docutils=0.20.1=py310hbbe02a8_3 - eclib=20230424=h0bc7b0f_0 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 @@ -202,6 +204,7 @@ dependencies: - 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 @@ -219,7 +222,7 @@ dependencies: - libwebp=1.2.4=h7bdf6e5_1 - m4rie=20150908=h75e8696_1001 - markupsafe=2.1.3=py310h7c1f4a2_1 - - maxima=5.45.0=haa44c19_3 + - maxima=5.46.0=h6475f26_0 - mistune=3.0.2=pyhd8ed1ab_0 - mpmath=1.3.0=pyhd8ed1ab_0 - munkres=1.1.4=pyh9f0ad1d_0 @@ -234,6 +237,7 @@ dependencies: - 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 @@ -253,9 +257,9 @@ dependencies: - python-tzdata=2023.3=pyhd8ed1ab_0 - pytz=2023.3.post1=pyhd8ed1ab_0 - pyyaml=6.0.1=py310hb299538_1 - - pyzmq=25.1.1=py310h014ca53_2 + - pyzmq=25.1.2=py310h014ca53_0 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.13.1=py310h057607a_0 + - rpds-py=0.13.2=py310h057607a_0 - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 - sagetex=3.6.1=pyhd8ed1ab_0 - send2trash=1.8.2=pyh41d4057_0 @@ -271,8 +275,8 @@ dependencies: - tbb=2021.9.0=h4c384f3_0 - tomli=2.0.1=pyhd8ed1ab_0 - tornado=6.3.3=py310h7c1f4a2_1 - - traitlets=5.13.0=pyhd8ed1ab_0 - - trove-classifiers=2023.11.22=pyhd8ed1ab_0 + - traitlets=5.14.0=pyhd8ed1ab_0 + - trove-classifiers=2023.11.29=pyhd8ed1ab_0 - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 - typing_extensions=4.8.0=pyha770c72_0 - typing_utils=0.1.0=pyhd8ed1ab_0 @@ -283,7 +287,7 @@ dependencies: - wcwidth=0.2.12=pyhd8ed1ab_0 - webcolors=1.13=pyhd8ed1ab_0 - webencodings=0.5.1=pyhd8ed1ab_2 - - websocket-client=1.6.4=pyhd8ed1ab_0 + - websocket-client=1.7.0=pyhd8ed1ab_0 - wheel=0.42.0=pyhd8ed1ab_0 - widgetsnbextension=4.0.9=pyhd8ed1ab_0 - xorg-libxext=1.3.4=h2a766a3_2 @@ -306,14 +310,16 @@ dependencies: - comm=0.1.4=pyhd8ed1ab_0 - cppy=1.2.1=pyhd8ed1ab_0 - curl=8.1.2=hc34909b_0 + - cxx-compiler=1.6.0=h2a328a1_0 - cypari2=2.1.3=py310h4cbba44_2 - deprecation=2.1.0=pyh9f0ad1d_0 - - fonttools=4.45.1=py310hb299538_0 + - fonttools=4.46.0=py310hb299538_0 - fortran-compiler=1.6.0=h7048d53_0 - - importlib-metadata=6.8.0=pyha770c72_0 + - importlib-metadata=7.0.0=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.0=py310h4c7bcd0_0 - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 - libcblas=3.9.0=20_linuxaarch64_openblas - libgd=2.3.3=h99c6b3b_4 @@ -324,15 +330,14 @@ dependencies: - pexpect=4.8.0=pyh1a96a4e_2 - pillow=9.4.0=py310h2843b5e_1 - pip=23.3.1=pyhd8ed1ab_0 - - platformdirs=4.0.0=pyhd8ed1ab_0 - - pplpy=0.8.7=py310hd5c817c_0 + - pplpy=0.8.9=py310hd5c817c_0 - primecountpy=0.1.0=py310h586407a_4 - prompt-toolkit=3.0.24=pyha770c72_0 - pybind11=2.11.1=py310h586407a_2 - pyproject-api=1.6.1=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - pytz-deprecation-shim=0.1.0.post0=py310h4c7bcd0_4 - - referencing=0.31.0=pyhd8ed1ab_0 + - referencing=0.31.1=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - sagemath-db-conway-polynomials=0.5.0=h4fd8a4c_1 - sympy=1.12=pypyh9d50eac_103 @@ -340,10 +345,12 @@ dependencies: - tinycss2=1.2.1=pyhd8ed1ab_0 - typing-extensions=4.8.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 - fflas-ffpack=2.4.3=hf104d39_2 - fqdn=1.5.1=pyhd8ed1ab_0 @@ -352,9 +359,8 @@ dependencies: - hatchling=1.18.0=pyhd8ed1ab_0 - iml=1.0.5=h9076c59_1003 - importlib-resources=6.1.1=pyhd8ed1ab_0 - - importlib_metadata=6.8.0=hd8ed1ab_0 - - jsonschema-specifications=2023.11.1=pyhd8ed1ab_0 - - jupyter_core=5.5.0=py310h4c7bcd0_0 + - importlib_metadata=7.0.0=hd8ed1ab_0 + - jsonschema-specifications=2023.11.2=pyhd8ed1ab_0 - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1 - liblapacke=3.9.0=20_linuxaarch64_openblas - numpy=1.26.2=py310hcbab775_0 @@ -363,7 +369,6 @@ dependencies: - setuptools-scm=8.0.4=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 - suitesparse=5.10.1=h1404dd6_1 - - virtualenv=20.24.7=pyhd8ed1ab_0 - xorg-libxtst=1.2.3=hf897c2e_1002 - argon2-cffi=23.1.0=pyhd8ed1ab_0 - blas-devel=3.9.0=20_linuxaarch64_openblas @@ -382,7 +387,7 @@ dependencies: - pythran=0.14.0=py310h5e48e15_1 - scipy=1.11.3=py310hcbab775_1 - setuptools_scm=8.0.4=hd8ed1ab_0 - - tox=4.11.3=pyhd8ed1ab_0 + - tox=4.11.4=pyhd8ed1ab_0 - blas=2.120=openblas - ipykernel=6.26.0=pyhf8b6a83_0 - ipywidgets=8.1.1=pyhd8ed1ab_0 @@ -397,12 +402,12 @@ dependencies: - matplotlib=3.8.2=py310hbbe02a8_0 - nbclient=0.8.0=pyhd8ed1ab_0 - rpy2=3.5.11=py310r42h8b6b5fc_3 - - nbconvert-core=7.11.0=pyhd8ed1ab_0 - - jupyter_server=2.10.1=pyhd8ed1ab_0 - - nbconvert-pandoc=7.11.0=pyhd8ed1ab_0 - - jupyter-lsp=2.2.0=pyhd8ed1ab_0 + - nbconvert-core=7.12.0=pyhd8ed1ab_0 + - jupyter_server=2.12.1=pyhd8ed1ab_0 + - nbconvert-pandoc=7.12.0=pyhd8ed1ab_0 + - jupyter-lsp=2.2.1=pyhd8ed1ab_0 - jupyterlab_server=2.25.2=pyhd8ed1ab_0 - - nbconvert=7.11.0=pyhd8ed1ab_0 + - nbconvert=7.12.0=pyhd8ed1ab_0 - notebook-shim=0.2.3=pyhd8ed1ab_0 - jupyterlab=4.0.9=pyhd8ed1ab_0 - notebook=7.0.6=pyhd8ed1ab_0 diff --git a/src/environment-3.10-linux.yml b/src/environment-3.10-linux.yml index a29b7f6e90d..0bd89fd3442 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: 39332fde0a8df8a2cc800bd79bddff293a535f2a94d46a827e103fad057c59c8 +# input_hash: e2b4786b134bcab87cda399b040c70f0978505a41adce855ef14eb8acb0fa214 channels: - conda-forge @@ -42,9 +42,10 @@ dependencies: - 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 - bdw-gc=8.0.6=h4bd325d_0 - bzip2=1.0.8=hd590300_5 - - c-ares=1.22.1=hd590300_0 + - c-ares=1.23.0=hd590300_0 - cliquer=1.22=h36c2ea0_0 - fribidi=1.0.10=h36c2ea0_0 - gengetopt=2.23=h9c3ff4c_0 @@ -58,7 +59,7 @@ dependencies: - lame=3.100=h166bdaf_1003 - lerc=4.0.0=h27087fc_0 - libatomic_ops=7.6.14=h166bdaf_0 - - libbraiding=1.1=h58526e2_0 + - libbraiding=1.2=hcb278e6_0 - libbrotlicommon=1.1.0=hd590300_1 - libdeflate=1.19=hd590300_0 - libev=4.33=h516909a_1 @@ -87,7 +88,7 @@ dependencies: - ncurses=6.4=h59595ed_2 - ninja=1.11.1=h924138e_0 - nspr=4.35=h27087fc_0 - - openssl=3.2.0=hd590300_0 + - openssl=3.1.4=hd590300_0 - palp=2.20=h36c2ea0_0 - patch=2.7.6=h7f98852_1002 - pixman=0.42.2=h59595ed_0 @@ -140,6 +141,7 @@ dependencies: - perl=5.32.1=4_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 @@ -162,19 +164,19 @@ dependencies: - krb5=1.21.2=h659d440_0 - libboost=1.83.0=h6fcfa73_0 - libflint=2.9.0=h2f819a4_ntl_100 - - libgcrypt=1.10.2=hd590300_0 - - libglib=2.78.1=h783c2da_1 + - libgcrypt=1.10.3=hd590300_0 + - libglib=2.78.2=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.5=h4dfa4b3_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.94=h1d7d5a4_0 + - nss=3.95=h1d7d5a4_0 - pandoc=3.1.3=h32600fe_0 - pari=2.15.4=h4d4ae9b_2_pthread - ppl=1.2=h6ec01c2_1006 @@ -213,7 +215,7 @@ dependencies: - decorator=5.1.1=pyhd8ed1ab_0 - defusedxml=0.7.1=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - - docutils=0.20.1=py310hff52083_2 + - docutils=0.20.1=py310hff52083_3 - eclib=20230424=hdef1efb_0 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 @@ -227,8 +229,9 @@ dependencies: - gast=0.5.4=pyhd8ed1ab_0 - gfortran=12.3.0=h499e0f7_2 - gfortran_linux-64=12.3.0=h7fe76b4_2 - - glib-tools=2.78.1=hfc55251_1 + - glib-tools=2.78.2=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 @@ -238,11 +241,11 @@ dependencies: - jupyterlab_widgets=3.0.9=pyhd8ed1ab_0 - kiwisolver=1.4.5=py310hd41b1e2_1 - lcalc=2.0.5=h6a8a7c6_1 - - lcms2=2.15=hb7c19ff_3 + - lcms2=2.16=hb7c19ff_0 - libblas=3.9.0=20_linux64_openblas - libboost-devel=1.83.0=h00ab1b0_0 - libbrial=1.2.12=h3155cbd_1 - - libclang13=15.0.7=default_h9986a30_3 + - libclang13=15.0.7=default_ha2b6cf4_4 - libcups=2.3.3=h4637d8d_4 - libcurl=8.4.0=hca28451_0 - libpq=16.1=hfc447b1_0 @@ -250,7 +253,7 @@ dependencies: - libwebp=1.3.2=h658648e_1 - m4rie=20150908=h7ca028e_1001 - markupsafe=2.1.3=py310h2372a71_1 - - maxima=5.45.0=h9d73b02_3 + - maxima=5.46.0=hed6455c_0 - mistune=3.0.2=pyhd8ed1ab_0 - mpmath=1.3.0=pyhd8ed1ab_0 - munkres=1.1.4=pyh9f0ad1d_0 @@ -265,6 +268,7 @@ dependencies: - 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 @@ -284,9 +288,9 @@ dependencies: - python-tzdata=2023.3=pyhd8ed1ab_0 - pytz=2023.3.post1=pyhd8ed1ab_0 - pyyaml=6.0.1=py310h2372a71_1 - - pyzmq=25.1.1=py310h795f18f_2 + - pyzmq=25.1.2=py310h795f18f_0 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.13.1=py310hcb5633a_0 + - rpds-py=0.13.2=py310hcb5633a_0 - rw=0.8=h516909a_1001 - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 - sagetex=3.6.1=pyhd8ed1ab_0 @@ -304,8 +308,8 @@ dependencies: - toml=0.10.2=pyhd8ed1ab_0 - tomli=2.0.1=pyhd8ed1ab_0 - tornado=6.3.3=py310h2372a71_1 - - traitlets=5.13.0=pyhd8ed1ab_0 - - trove-classifiers=2023.11.22=pyhd8ed1ab_0 + - traitlets=5.14.0=pyhd8ed1ab_0 + - trove-classifiers=2023.11.29=pyhd8ed1ab_0 - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 - typing_extensions=4.8.0=pyha770c72_0 - typing_utils=0.1.0=pyhd8ed1ab_0 @@ -316,7 +320,7 @@ dependencies: - wcwidth=0.2.12=pyhd8ed1ab_0 - webcolors=1.13=pyhd8ed1ab_0 - webencodings=0.5.1=pyhd8ed1ab_2 - - websocket-client=1.6.4=pyhd8ed1ab_0 + - websocket-client=1.7.0=pyhd8ed1ab_0 - wheel=0.42.0=pyhd8ed1ab_0 - widgetsnbextension=4.0.9=pyhd8ed1ab_0 - xcb-util-image=0.4.0=h8ee46fc_1 @@ -338,22 +342,24 @@ dependencies: - cached-property=1.5.2=hd8ed1ab_1 - cairo=1.18.0=h3faef2a_0 - cffi=1.16.0=py310h2fee648_0 - - cmake=3.27.8=hcfe8598_0 + - cmake=3.27.9=hcfe8598_0 - comm=0.1.4=pyhd8ed1ab_0 - cppy=1.2.1=pyhd8ed1ab_0 - curl=8.4.0=hca28451_0 + - cxx-compiler=1.6.0=h00ab1b0_0 - cypari2=2.1.3=py310h14ed79e_2 - deprecation=2.1.0=pyh9f0ad1d_0 - - fonttools=4.45.1=py310h2372a71_0 + - fonttools=4.46.0=py310h2372a71_0 - fortran-compiler=1.6.0=heb67821_0 - - glib=2.78.1=hfc55251_1 - - importlib-metadata=6.8.0=pyha770c72_0 + - glib=2.78.2=hfc55251_0 + - importlib-metadata=7.0.0=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.0=py310hff52083_0 - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 - libcblas=3.9.0=20_linux64_openblas - - libclang=15.0.7=default_h7634d5b_3 + - 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 @@ -363,8 +369,7 @@ dependencies: - pexpect=4.8.0=pyh1a96a4e_2 - pillow=10.1.0=py310h01dd4db_0 - pip=23.3.1=pyhd8ed1ab_0 - - platformdirs=4.0.0=pyhd8ed1ab_0 - - pplpy=0.8.7=py310h28f6eb6_0 + - pplpy=0.8.9=py310h28f6eb6_0 - primecountpy=0.1.0=py310hd41b1e2_4 - prompt-toolkit=3.0.24=pyha770c72_0 - pulseaudio-client=16.1=hb77b528_5 @@ -372,7 +377,7 @@ dependencies: - pyproject-api=1.6.1=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - pytz-deprecation-shim=0.1.0.post0=py310hff52083_4 - - referencing=0.31.0=pyhd8ed1ab_0 + - referencing=0.31.1=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - sagemath-db-conway-polynomials=0.5.0=ha878542_1 - sip=6.7.12=py310hc6cd4ac_0 @@ -381,9 +386,11 @@ dependencies: - tinycss2=1.2.1=pyhd8ed1ab_0 - typing-extensions=4.8.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 - 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 @@ -393,9 +400,8 @@ dependencies: - hatchling=1.18.0=pyhd8ed1ab_0 - iml=1.0.5=hd75c201_1003 - importlib-resources=6.1.1=pyhd8ed1ab_0 - - importlib_metadata=6.8.0=hd8ed1ab_0 - - jsonschema-specifications=2023.11.1=pyhd8ed1ab_0 - - jupyter_core=5.5.0=py310hff52083_0 + - importlib_metadata=7.0.0=hd8ed1ab_0 + - jsonschema-specifications=2023.11.2=pyhd8ed1ab_0 - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1 - liblapacke=3.9.0=20_linux64_openblas - numpy=1.26.2=py310hb13e2d6_0 @@ -405,7 +411,6 @@ dependencies: - setuptools-scm=8.0.4=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 - suitesparse=5.10.1=h9e50725_1 - - virtualenv=20.24.7=pyhd8ed1ab_0 - xorg-libxtst=1.2.3=h7f98852_1002 - argon2-cffi=23.1.0=pyhd8ed1ab_0 - blas-devel=3.9.0=20_linux64_openblas @@ -424,7 +429,7 @@ dependencies: - pythran=0.14.0=py310hcb52e73_1 - scipy=1.11.4=py310hb13e2d6_0 - setuptools_scm=8.0.4=hd8ed1ab_0 - - tox=4.11.3=pyhd8ed1ab_0 + - tox=4.11.4=pyhd8ed1ab_0 - blas=2.120=openblas - ipykernel=6.26.0=pyhf8b6a83_0 - ipywidgets=8.1.1=pyhd8ed1ab_0 @@ -440,12 +445,12 @@ dependencies: - pyqt=5.15.9=py310h04931ad_5 - rpy2=3.5.11=py310r43h1f7b6fc_3 - matplotlib=3.8.2=py310hff52083_0 - - nbconvert-core=7.11.0=pyhd8ed1ab_0 - - jupyter_server=2.10.1=pyhd8ed1ab_0 - - nbconvert-pandoc=7.11.0=pyhd8ed1ab_0 - - jupyter-lsp=2.2.0=pyhd8ed1ab_0 + - nbconvert-core=7.12.0=pyhd8ed1ab_0 + - jupyter_server=2.12.1=pyhd8ed1ab_0 + - nbconvert-pandoc=7.12.0=pyhd8ed1ab_0 + - jupyter-lsp=2.2.1=pyhd8ed1ab_0 - jupyterlab_server=2.25.2=pyhd8ed1ab_0 - - nbconvert=7.11.0=pyhd8ed1ab_0 + - nbconvert=7.12.0=pyhd8ed1ab_0 - notebook-shim=0.2.3=pyhd8ed1ab_0 - jupyterlab=4.0.9=pyhd8ed1ab_0 - notebook=7.0.6=pyhd8ed1ab_0 diff --git a/src/environment-3.10-macos-arm64.yml b/src/environment-3.10-macos-arm64.yml index f1d5f8bafe8..7293ed807ce 100644 --- a/src/environment-3.10-macos-arm64.yml +++ b/src/environment-3.10-macos-arm64.yml @@ -1,13 +1,14 @@ # Generated by conda-lock. # platform: osx-arm64 -# input_hash: 585071ed56d431dae82b97c5d5cf0b2e0379db8bf933d5ad6ac26f9191d930e2 +# input_hash: ffdfe4e4f1286bfbf2f9dabd94980811433a96835938b9d3c18068ffd4ba63b4 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.22.1=h93a5062_0 + - c-ares=1.23.0=h93a5062_0 - ca-certificates=2023.11.17=hf0a4a13_0 - cliquer=1.22=h27ca646_0 - font-ttf-dejavu-sans-mono=2.37=hab24e00_0 @@ -31,7 +32,7 @@ dependencies: - libuv=1.46.0=hb547adb_0 - libwebp-base=1.2.4=h1a8c8d9_0 - libzlib=1.2.13=h53f4e23_5 - - llvm-openmp=17.0.5=hcd81f8e_0 + - llvm-openmp=17.0.6=hcd81f8e_0 - m4=1.4.18=h642e427_1001 - make=4.3=he57ea6c_1 - mathjax=3.2.2=hce30654_0 @@ -71,7 +72,7 @@ dependencies: - icu=70.1=h6b3803e_0 - isl=0.25=h9a09cb3_0 - lerc=4.0.0=h9a09cb3_0 - - libbraiding=1.1=h9f76cd9_0 + - libbraiding=1.2=hb7217d7_0 - libbrotlidec=1.1.0=hb547adb_1 - libbrotlienc=1.1.0=hb547adb_1 - libgfortran5=13.2.0=hf226fd6_1 @@ -82,7 +83,7 @@ dependencies: - ncurses=6.4=h463b476_2 - ninja=1.11.1=hffc8910_0 - openjdk=21.0.1=hed44d8b_0 - - openssl=3.2.0=h0d3ecfb_0 + - openssl=3.2.0=h0d3ecfb_1 - pari-seadata=0.0.20090618=0 - pcre2=10.40=hb34f9b4_0 - pixman=0.42.2=h13dd4ca_0 @@ -90,6 +91,7 @@ dependencies: - 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 @@ -133,7 +135,7 @@ dependencies: - lcms2=2.15=h481adae_0 - libbrial=1.2.12=ha7f5006_1 - libflint=2.9.0=h173eafc_ntl_100 - - libllvm16=16.0.1=h1e5164c_0 + - libllvm15=15.0.7=h62b9111_1 - libopenblas=0.3.25=openmp_h6c19121_0 - libwebp=1.2.4=h999c80f_1 - m4rie=20150908=h17b34a0_1001 @@ -168,7 +170,7 @@ dependencies: - decorator=5.1.1=pyhd8ed1ab_0 - defusedxml=0.7.1=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - - docutils=0.20.1=py310hbe9552e_2 + - docutils=0.20.1=py310hbe9552e_3 - eclib=20230424=haeb5157_0 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 @@ -189,12 +191,12 @@ dependencies: - jupyterlab_widgets=3.0.9=pyhd8ed1ab_0 - kiwisolver=1.4.5=py310h38f39d4_1 - lcalc=2.0.5=hc94e8e6_1 - - ld64_osx-arm64=609=h297e91e_13 + - ld64_osx-arm64=609=hc4dc95b_15 - libblas=3.9.0=20_osxarm64_openblas - - libclang-cpp16=16.0.1=default_he7141eb_0 + - libclang-cpp15=15.0.7=default_hd209bcb_4 - libcurl=8.1.2=h912dcd9_0 - libgd=2.3.3=h90fb8ed_4 - - llvm-tools=16.0.1=h1e5164c_0 + - llvm-tools=15.0.7=h62b9111_1 - markupsafe=2.1.3=py310h2aa6e3c_1 - maxima=5.45.0=h6032a66_2 - mistune=3.0.2=pyhd8ed1ab_0 @@ -211,6 +213,7 @@ dependencies: - pillow=9.4.0=py310h5a7539a_1 - 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 @@ -230,9 +233,9 @@ dependencies: - python-tzdata=2023.3=pyhd8ed1ab_0 - pytz=2023.3.post1=pyhd8ed1ab_0 - pyyaml=6.0.1=py310h2aa6e3c_1 - - pyzmq=25.1.1=py310h7e65269_2 + - pyzmq=25.1.2=py310hbb13138_0 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.13.1=py310hd442715_0 + - rpds-py=0.13.2=py310hd442715_0 - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 - sagetex=3.6.1=pyhd8ed1ab_0 - setuptools=68.2.2=pyhd8ed1ab_0 @@ -246,8 +249,8 @@ dependencies: - sympow=2.023.6=hb0babe8_3 - tomli=2.0.1=pyhd8ed1ab_0 - tornado=6.3.3=py310h2aa6e3c_1 - - traitlets=5.13.0=pyhd8ed1ab_0 - - trove-classifiers=2023.11.22=pyhd8ed1ab_0 + - traitlets=5.14.0=pyhd8ed1ab_0 + - trove-classifiers=2023.11.29=pyhd8ed1ab_0 - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 - typing_extensions=4.8.0=pyha770c72_0 - typing_utils=0.1.0=pyhd8ed1ab_0 @@ -258,7 +261,7 @@ dependencies: - wcwidth=0.2.12=pyhd8ed1ab_0 - webcolors=1.13=pyhd8ed1ab_0 - webencodings=0.5.1=pyhd8ed1ab_2 - - websocket-client=1.6.4=pyhd8ed1ab_0 + - websocket-client=1.7.0=pyhd8ed1ab_0 - wheel=0.42.0=pyhd8ed1ab_0 - widgetsnbextension=4.0.9=pyhd8ed1ab_0 - zipp=3.17.0=pyhd8ed1ab_0 @@ -270,23 +273,24 @@ dependencies: - 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=h7a0f565_13 + - cctools_osx-arm64=973.0.1=h2a25c60_15 - cffi=1.16.0=py310hdcd7c05_0 - - clang-16=16.0.1=default_he7141eb_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.45.1=py310hd125d64_0 + - fonttools=4.46.0=py310hd125d64_0 - harfbuzz=6.0.0=hddbc195_0 - - importlib-metadata=6.8.0=pyha770c72_0 + - importlib-metadata=7.0.0=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.0=py310hbe9552e_0 - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 - - ld64=609=h634c8be_13 + - ld64=609=h89fa09d_15 - libcblas=3.9.0=20_osxarm64_openblas - liblapack=3.9.0=20_osxarm64_openblas - matplotlib-inline=0.1.6=pyhd8ed1ab_0 @@ -294,8 +298,7 @@ dependencies: - overrides=7.4.0=pyhd8ed1ab_0 - pexpect=4.8.0=pyh1a96a4e_2 - pip=23.3.1=pyhd8ed1ab_0 - - platformdirs=4.0.0=pyhd8ed1ab_0 - - pplpy=0.8.7=py310h49c019d_0 + - pplpy=0.8.9=py310hab1f656_0 - primecountpy=0.1.0=py310h38f39d4_4 - prompt-toolkit=3.0.24=pyha770c72_0 - pybind11=2.11.1=py310h38f39d4_2 @@ -303,7 +306,7 @@ dependencies: - pyproject-api=1.6.1=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - pytz-deprecation-shim=0.1.0.post0=py310hbe9552e_4 - - referencing=0.31.0=pyhd8ed1ab_0 + - referencing=0.31.1=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - sagemath-db-conway-polynomials=0.5.0=h4653dfc_1 - sympy=1.12=pypyh9d50eac_103 @@ -311,11 +314,12 @@ dependencies: - tinycss2=1.2.1=pyhd8ed1ab_0 - typing-extensions=4.8.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=h4faf515_13 - - clang=16.0.1=h1e5164c_0 + - cctools=973.0.1=hd1ac623_15 + - clang=15.0.7=haab561b_4 - dsdp=5.8=h9397a75_1203 - fflas-ffpack=2.4.3=h11f2abc_2 - fqdn=1.5.1=pyhd8ed1ab_0 @@ -323,9 +327,8 @@ dependencies: - hatchling=1.18.0=pyhd8ed1ab_0 - iml=1.0.5=hd52f0d1_1003 - importlib-resources=6.1.1=pyhd8ed1ab_0 - - importlib_metadata=6.8.0=hd8ed1ab_0 - - jsonschema-specifications=2023.11.1=pyhd8ed1ab_0 - - jupyter_core=5.5.0=py310hbe9552e_0 + - importlib_metadata=7.0.0=hd8ed1ab_0 + - jsonschema-specifications=2023.11.2=pyhd8ed1ab_0 - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1 - liblapacke=3.9.0=20_osxarm64_openblas - numpy=1.26.2=py310h30ee222_0 @@ -336,10 +339,9 @@ dependencies: - setuptools-scm=8.0.4=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 - suitesparse=5.10.1=h7cd81ec_1 - - virtualenv=20.24.7=pyhd8ed1ab_0 - argon2-cffi=23.1.0=pyhd8ed1ab_0 - blas-devel=3.9.0=20_osxarm64_openblas - - clangxx=16.0.1=default_ha0f6327_0 + - clangxx=15.0.7=default_h5c94ee4_4 - contourpy=1.2.0=py310hd137fd4_0 - cvxopt=1.3.2=py310hadc6ad6_1 - fpylll=0.6.0=py310hc79cb59_1 @@ -353,37 +355,42 @@ dependencies: - scipy=1.11.4=py310h2b794db_0 - send2trash=1.8.2=pyhd1c38e8_0 - setuptools_scm=8.0.4=hd8ed1ab_0 - - tox=4.11.3=pyhd8ed1ab_0 + - tox=4.11.4=pyhd8ed1ab_0 - blas=2.120=openblas - - compiler-rt_osx-arm64=16.0.1=h30b49de_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 - rw=0.9=h3422bc3_0 - - compiler-rt=16.0.1=h30b49de_0 + - compiler-rt=15.0.7=h3808999_2 - 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_osx-arm64=16.0.1=hdccda30_1 - - nbconvert-core=7.11.0=pyhd8ed1ab_0 - - clangxx_osx-arm64=16.0.1=h0c1d50e_1 + - clang_impl_osx-arm64=15.0.7=h77e971b_6 + - nbconvert-core=7.12.0=pyhd8ed1ab_0 + - clang_osx-arm64=15.0.7=h54d7cd3_6 + - jupyter_server=2.12.1=pyhd8ed1ab_0 + - nbconvert-pandoc=7.12.0=pyhd8ed1ab_0 + - c-compiler=1.6.0=hd291e01_0 + - clangxx_impl_osx-arm64=15.0.7=h768a7fd_6 - gfortran_osx-arm64=12.3.0=h57527a5_1 - - jupyter_server=2.10.1=pyhd8ed1ab_0 - - nbconvert-pandoc=7.11.0=pyhd8ed1ab_0 - - gfortran=12.3.0=h1ca8e4b_1 - - jupyter-lsp=2.2.0=pyhd8ed1ab_0 + - jupyter-lsp=2.2.1=pyhd8ed1ab_0 - jupyterlab_server=2.25.2=pyhd8ed1ab_0 - - nbconvert=7.11.0=pyhd8ed1ab_0 + - nbconvert=7.12.0=pyhd8ed1ab_0 - notebook-shim=0.2.3=pyhd8ed1ab_0 + - clangxx_osx-arm64=15.0.7=h77e971b_6 + - 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 - - fortran-compiler=1.6.0=h5a50232_0 - - jupyterlab=4.0.9=pyhd8ed1ab_0 + - compilers=1.6.0=hce30654_0 - rpy2=3.5.11=py310r41hf1a086a_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 diff --git a/src/environment-3.10-macos.yml b/src/environment-3.10-macos.yml index fdfa67f1998..9e68109ee92 100644 --- a/src/environment-3.10-macos.yml +++ b/src/environment-3.10-macos.yml @@ -1,13 +1,14 @@ # Generated by conda-lock. # platform: osx-64 -# input_hash: 90a86d8a6a2eefd493e12a0bf2fa088140f3d8e1defb1ef16d0116b2d090f0c9 +# input_hash: 8559700c75500d6c4a80fb5cb94f546973afc548a5b4fdfd3363819c939eb08a 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.22.1=h10d778d_0 + - c-ares=1.23.0=h10d778d_0 - ca-certificates=2023.11.17=h8857fd0_0 - cliquer=1.22=hbcb3906_0 - font-ttf-dejavu-sans-mono=2.37=hab24e00_0 @@ -33,7 +34,7 @@ dependencies: - libuv=1.46.0=h0c2f820_0 - libwebp-base=1.3.2=h0dc2134_0 - libzlib=1.2.13=h8a1eda9_5 - - llvm-openmp=17.0.5=hb6ac08f_0 + - llvm-openmp=17.0.6=hb6ac08f_0 - m4=1.4.18=haf1e3a3_1001 - make=4.3=h22f3db7_1 - mathjax=3.2.2=h694c41f_0 @@ -72,28 +73,29 @@ dependencies: - graphite2=1.3.13=h2e338ed_1001 - isl=0.25=hb486fe8_0 - lerc=4.0.0=hb486fe8_0 - - libbraiding=1.1=h2e338ed_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 - libxcb=1.15=hb7f2c08_0 - - libxml2=2.11.6=hc0ae0f7_0 + - libxml2=2.12.2=hc0ae0f7_0 - lrcalc=2.1=hf0c8a7f_5 - ncurses=6.4=h93d8f39_2 - ninja=1.11.1=hb8565cd_0 - openjdk=21.0.1=hf4d7fad_0 - - openssl=3.2.0=hd75f5a5_0 + - openssl=3.2.0=hd75f5a5_1 - pandoc=3.1.3=h9d075a6_0 - pari-seadata=0.0.20090618=0 - - pcre2=10.42=h0ad2156_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 @@ -112,9 +114,9 @@ dependencies: - libboost=1.83.0=hf44e908_0 - libedit=3.1.20191231=h0678c8f_2 - libgfortran=5.0.0=13_2_0_h97931a8_1 - - libglib=2.78.1=h198397b_1 + - libglib=2.78.1=h6d9ecee_0 - libhomfly=1.02r6=hc929b4f_0 - - libllvm16=16.0.6=he4b1e75_2 + - libllvm15=15.0.7=hbedff68_4 - libnghttp2=1.58.0=h64cf6d3_0 - libssh2=1.11.0=hd019ec5_0 - libtiff=4.6.0=h684deea_2 @@ -134,15 +136,15 @@ dependencies: - gap-core=4.12.2=hc16eb5f_3 - gfan=0.6.2=hd793b56_1003 - krb5=1.21.2=hb884880_0 - - lcms2=2.15=hd6ba6f3_3 - - ld64_osx-64=609=ha20a434_15 + - lcms2=2.16=ha2f27b4_0 + - ld64_osx-64=609=h0fd476b_15 - libboost-devel=1.83.0=h7728843_0 - libbrial=1.2.12=h8d08345_1 - - libclang-cpp16=16.0.6=default_h762fdd7_2 + - libclang-cpp15=15.0.7=default_h6b1ee41_4 - libflint=2.9.0=hfd2f71f_ntl_100 - libopenblas=0.3.25=openmp_hfef2a42_0 - libwebp=1.3.2=h44782d1_1 - - llvm-tools=16.0.6=he4b1e75_2 + - llvm-tools=15.0.7=hbedff68_4 - m4rie=20150908=h3f75d11_1001 - mpc=1.3.1=h81bd1dd_0 - mpfi=1.5.4=h52b28e3_1001 @@ -164,11 +166,11 @@ dependencies: - 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=ha1c5b94_15 + - cctools_osx-64=973.0.1=habff3f6_15 - certifi=2023.11.17=pyhd8ed1ab_0 - chardet=5.2.0=py310h2ec42d9_1 - charset-normalizer=3.3.2=pyhd8ed1ab_0 - - clang-16=16.0.6=default_h762fdd7_2 + - clang-15=15.0.7=default_h6b1ee41_4 - colorama=0.4.6=pyhd8ed1ab_0 - cycler=0.12.1=pyhd8ed1ab_0 - cysignals=1.11.2=py310h8c82e65_3 @@ -177,7 +179,7 @@ dependencies: - decorator=5.1.1=pyhd8ed1ab_0 - defusedxml=0.7.1=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - - docutils=0.20.1=py310h2ec42d9_2 + - docutils=0.20.1=py310h2ec42d9_3 - eclib=20230424=hd00e801_0 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 @@ -198,12 +200,12 @@ dependencies: - jupyterlab_widgets=3.0.9=pyhd8ed1ab_0 - kiwisolver=1.4.5=py310h88cfcbd_1 - lcalc=2.0.5=h3a941db_1 - - ld64=609=ha02d983_15 + - ld64=609=ha91a046_15 - libblas=3.9.0=20_osx64_openblas - - libcurl=8.4.0=h726d00d_0 + - libcurl=8.5.0=h726d00d_0 - libgd=2.3.3=h0dceb68_9 - markupsafe=2.1.3=py310h6729b98_1 - - maxima=5.45.0=hd029580_3 + - maxima=5.46.0=h2b27fa8_0 - mistune=3.0.2=pyhd8ed1ab_0 - mpmath=1.3.0=pyhd8ed1ab_0 - munkres=1.1.4=pyh9f0ad1d_0 @@ -218,6 +220,7 @@ dependencies: - pillow=10.1.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 @@ -237,9 +240,9 @@ dependencies: - python-tzdata=2023.3=pyhd8ed1ab_0 - pytz=2023.3.post1=pyhd8ed1ab_0 - pyyaml=6.0.1=py310h6729b98_1 - - pyzmq=25.1.1=py310hd8b4af3_2 + - pyzmq=25.1.2=py310h6b67f7f_0 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.13.1=py310h0e083fb_0 + - rpds-py=0.13.2=py310h0e083fb_0 - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 - sagetex=3.6.1=pyhd8ed1ab_0 - setuptools=68.2.2=pyhd8ed1ab_0 @@ -253,8 +256,8 @@ dependencies: - sympow=2.023.6=h115ba6a_3 - tomli=2.0.1=pyhd8ed1ab_0 - tornado=6.3.3=py310h6729b98_1 - - traitlets=5.13.0=pyhd8ed1ab_0 - - trove-classifiers=2023.11.22=pyhd8ed1ab_0 + - traitlets=5.14.0=pyhd8ed1ab_0 + - trove-classifiers=2023.11.29=pyhd8ed1ab_0 - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 - typing_extensions=4.8.0=pyha770c72_0 - typing_utils=0.1.0=pyhd8ed1ab_0 @@ -265,7 +268,7 @@ dependencies: - wcwidth=0.2.12=pyhd8ed1ab_0 - webcolors=1.13=pyhd8ed1ab_0 - webencodings=0.5.1=pyhd8ed1ab_2 - - websocket-client=1.6.4=pyhd8ed1ab_0 + - websocket-client=1.7.0=pyhd8ed1ab_0 - wheel=0.42.0=pyhd8ed1ab_0 - widgetsnbextension=4.0.9=pyhd8ed1ab_0 - zipp=3.17.0=pyhd8ed1ab_0 @@ -277,21 +280,22 @@ dependencies: - beniget=0.4.1=pyhd8ed1ab_0 - bleach=6.1.0=pyhd8ed1ab_0 - cached-property=1.5.2=hd8ed1ab_1 - - cctools=973.0.1=h40f6528_15 + - cctools=973.0.1=hd9ad811_15 - cffi=1.16.0=py310hdca579f_0 - - clang=16.0.6=hc177806_2 - - cmake=3.27.8=hc7ee4c4_0 + - clang=15.0.7=hac416ee_4 + - cmake=3.28.0=hc7ee4c4_0 - comm=0.1.4=pyhd8ed1ab_0 - cppy=1.2.1=pyhd8ed1ab_0 - - curl=8.4.0=h726d00d_0 + - curl=8.5.0=h726d00d_0 - cypari2=2.1.3=py310hb5d31c9_2 - deprecation=2.1.0=pyh9f0ad1d_0 - - fonttools=4.45.1=py310hb372a2b_0 + - fonttools=4.46.0=py310hb372a2b_0 - harfbuzz=8.3.0=hf45c392_0 - - importlib-metadata=6.8.0=pyha770c72_0 + - importlib-metadata=7.0.0=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.0=py310h2ec42d9_0 - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 - libcblas=3.9.0=20_osx64_openblas - liblapack=3.9.0=20_osx64_openblas @@ -300,8 +304,7 @@ dependencies: - overrides=7.4.0=pyhd8ed1ab_0 - pexpect=4.8.0=pyh1a96a4e_2 - pip=23.3.1=pyhd8ed1ab_0 - - platformdirs=4.0.0=pyhd8ed1ab_0 - - pplpy=0.8.7=py310h190f582_0 + - pplpy=0.8.9=py310hd89f7aa_0 - primecountpy=0.1.0=py310h88cfcbd_4 - prompt-toolkit=3.0.24=pyha770c72_0 - pybind11=2.11.1=py310h88cfcbd_2 @@ -309,7 +312,7 @@ dependencies: - pyproject-api=1.6.1=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - pytz-deprecation-shim=0.1.0.post0=py310h2ec42d9_4 - - referencing=0.31.0=pyhd8ed1ab_0 + - referencing=0.31.1=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - sagemath-db-conway-polynomials=0.5.0=h033912b_1 - sympy=1.12=pypyh9d50eac_103 @@ -317,9 +320,10 @@ dependencies: - tinycss2=1.2.1=pyhd8ed1ab_0 - typing-extensions=4.8.0=hd8ed1ab_0 - urllib3=2.1.0=pyhd8ed1ab_0 + - virtualenv=20.25.0=pyhd8ed1ab_0 - argon2-cffi-bindings=21.2.0=py310h6729b98_4 - arrow=1.3.0=pyhd8ed1ab_0 - - clangxx=16.0.6=default_h762fdd7_2 + - clangxx=15.0.7=default_h6b1ee41_4 - dsdp=5.8=h6e329d1_1203 - fflas-ffpack=2.4.3=h026fd7e_2 - fqdn=1.5.1=pyhd8ed1ab_0 @@ -327,9 +331,8 @@ dependencies: - hatchling=1.18.0=pyhd8ed1ab_0 - iml=1.0.5=h64b42ca_1003 - importlib-resources=6.1.1=pyhd8ed1ab_0 - - importlib_metadata=6.8.0=hd8ed1ab_0 - - jsonschema-specifications=2023.11.1=pyhd8ed1ab_0 - - jupyter_core=5.5.0=py310h2ec42d9_0 + - importlib_metadata=7.0.0=hd8ed1ab_0 + - jsonschema-specifications=2023.11.2=pyhd8ed1ab_0 - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1 - liblapacke=3.9.0=20_osx64_openblas - numpy=1.26.2=py310h2a7ecf2_0 @@ -340,10 +343,9 @@ dependencies: - setuptools-scm=8.0.4=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 - suitesparse=5.10.1=h7aff33d_1 - - virtualenv=20.24.7=pyhd8ed1ab_0 - argon2-cffi=23.1.0=pyhd8ed1ab_0 - blas-devel=3.9.0=20_osx64_openblas - - compiler-rt_osx-64=16.0.6=he1888fc_1 + - compiler-rt_osx-64=15.0.7=ha38d28d_2 - contourpy=1.2.0=py310ha697434_0 - cvxopt=1.3.2=py310ha550498_1 - fpylll=0.6.0=py310h2acdeac_1 @@ -356,35 +358,38 @@ dependencies: - scipy=1.11.4=py310h3f1db6d_0 - send2trash=1.8.2=pyhd1c38e8_0 - setuptools_scm=8.0.4=hd8ed1ab_0 - - tox=4.11.3=pyhd8ed1ab_0 + - tox=4.11.4=pyhd8ed1ab_0 - blas=2.120=openblas - - compiler-rt=16.0.6=he1888fc_1 + - 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 - - clang_impl_osx-64=16.0.6=h8787910_6 + - clang_impl_osx-64=15.0.7=h03d6864_6 - 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=16.0.6=hb91bd55_6 - - nbconvert-core=7.11.0=pyhd8ed1ab_0 - - clangxx_impl_osx-64=16.0.6=h1b7723c_6 + - clang_osx-64=15.0.7=hb91bd55_6 + - nbconvert-core=7.12.0=pyhd8ed1ab_0 + - c-compiler=1.6.0=h63c33a9_0 + - clangxx_impl_osx-64=15.0.7=h3d2d1bf_6 - gfortran_osx-64=12.3.0=h18f7dce_1 - - jupyter_server=2.10.1=pyhd8ed1ab_0 - - nbconvert-pandoc=7.11.0=pyhd8ed1ab_0 - - clangxx_osx-64=16.0.6=h2fff7d5_6 + - jupyter_server=2.12.1=pyhd8ed1ab_0 + - nbconvert-pandoc=7.12.0=pyhd8ed1ab_0 + - clangxx_osx-64=15.0.7=h655633e_6 - gfortran=12.3.0=h2c809b3_1 - - jupyter-lsp=2.2.0=pyhd8ed1ab_0 + - jupyter-lsp=2.2.1=pyhd8ed1ab_0 - jupyterlab_server=2.25.2=pyhd8ed1ab_0 - - nbconvert=7.11.0=pyhd8ed1ab_0 + - nbconvert=7.12.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.2=h8eaf9e6_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 diff --git a/src/environment-3.11-linux-aarch64.yml b/src/environment-3.11-linux-aarch64.yml index d71cc8adc26..55bf5bf2212 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: 193b84ac1f83e3237670ab8ccff1f55453755ae6b9d709e741c029ac5e764b56 +# input_hash: 442494bd5a0ce760a6c4355bf8bc83eaa119797a154e31f317a55684fe4122be channels: - conda-forge @@ -41,9 +41,10 @@ dependencies: - _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 - bdw-gc=8.0.6=hd62202e_0 - bzip2=1.0.8=h31becfc_5 - - c-ares=1.22.1=h31becfc_0 + - c-ares=1.23.0=h31becfc_0 - cliquer=1.22=hb9de7d4_0 - fribidi=1.0.10=hb9de7d4_0 - gengetopt=2.23=h01db608_0 @@ -57,7 +58,7 @@ dependencies: - keyutils=1.6.1=h4e544f5_0 - lerc=4.0.0=h4de3ea5_0 - libatomic_ops=7.6.14=h4e544f5_0 - - libbraiding=1.1=h7fd3ca4_0 + - libbraiding=1.2=hd600fc2_0 - libbrotlicommon=1.1.0=h31becfc_1 - libdeflate=1.17=hb4cce97_0 - libev=4.33=h516909a_1 @@ -80,7 +81,7 @@ dependencies: - nauty=2.7.2=hf897c2e_0 - ncurses=6.4=h0425590_2 - ninja=1.11.1=hdd96247_0 - - openssl=3.2.0=h31becfc_0 + - openssl=3.2.0=h31becfc_1 - palp=2.20=hb9de7d4_0 - patch=2.7.6=hf897c2e_1002 - pixman=0.42.2=h2f0025b_0 @@ -126,6 +127,7 @@ dependencies: - perl=5.32.1=4_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 @@ -151,7 +153,7 @@ dependencies: - libhwloc=2.9.1=h21e8147_0 - libopenblas=0.3.25=pthreads_h5a5ec62_0 - libtiff=4.5.0=h4c1066a_2 - - llvm-openmp=17.0.5=h8b0cb96_0 + - llvm-openmp=17.0.6=h8b0cb96_0 - m4ri=20140914=h75e8696_1005 - mpc=1.3.1=hf4c8f4c_0 - mpfi=1.5.4=h846f343_1001 @@ -187,7 +189,7 @@ dependencies: - decorator=5.1.1=pyhd8ed1ab_0 - defusedxml=0.7.1=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - - docutils=0.20.1=py311hfecb2dc_2 + - docutils=0.20.1=py311hfecb2dc_3 - eclib=20230424=h0bc7b0f_0 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 @@ -202,6 +204,7 @@ dependencies: - 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 @@ -219,7 +222,7 @@ dependencies: - libwebp=1.2.4=h7bdf6e5_1 - m4rie=20150908=h75e8696_1001 - markupsafe=2.1.3=py311hc8f2f60_1 - - maxima=5.45.0=haa44c19_3 + - maxima=5.46.0=h6475f26_0 - mistune=3.0.2=pyhd8ed1ab_0 - mpmath=1.3.0=pyhd8ed1ab_0 - munkres=1.1.4=pyh9f0ad1d_0 @@ -234,6 +237,7 @@ dependencies: - 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 @@ -253,9 +257,9 @@ dependencies: - python-tzdata=2023.3=pyhd8ed1ab_0 - pytz=2023.3.post1=pyhd8ed1ab_0 - pyyaml=6.0.1=py311hcd402e7_1 - - pyzmq=25.1.1=py311h0fdcd05_2 + - pyzmq=25.1.2=py311h0fdcd05_0 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.13.1=py311h32437ce_0 + - rpds-py=0.13.2=py311h32437ce_0 - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 - sagetex=3.6.1=pyhd8ed1ab_0 - send2trash=1.8.2=pyh41d4057_0 @@ -271,8 +275,8 @@ dependencies: - tbb=2021.9.0=h4c384f3_0 - tomli=2.0.1=pyhd8ed1ab_0 - tornado=6.3.3=py311hc8f2f60_1 - - traitlets=5.13.0=pyhd8ed1ab_0 - - trove-classifiers=2023.11.22=pyhd8ed1ab_0 + - traitlets=5.14.0=pyhd8ed1ab_0 + - trove-classifiers=2023.11.29=pyhd8ed1ab_0 - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 - typing_extensions=4.8.0=pyha770c72_0 - typing_utils=0.1.0=pyhd8ed1ab_0 @@ -282,7 +286,7 @@ dependencies: - wcwidth=0.2.12=pyhd8ed1ab_0 - webcolors=1.13=pyhd8ed1ab_0 - webencodings=0.5.1=pyhd8ed1ab_2 - - websocket-client=1.6.4=pyhd8ed1ab_0 + - websocket-client=1.7.0=pyhd8ed1ab_0 - wheel=0.42.0=pyhd8ed1ab_0 - widgetsnbextension=4.0.9=pyhd8ed1ab_0 - xorg-libxext=1.3.4=h2a766a3_2 @@ -305,14 +309,16 @@ dependencies: - comm=0.1.4=pyhd8ed1ab_0 - cppy=1.2.1=pyhd8ed1ab_0 - curl=8.1.2=hc34909b_0 + - cxx-compiler=1.6.0=h2a328a1_0 - cypari2=2.1.3=py311h5ab95f0_2 - deprecation=2.1.0=pyh9f0ad1d_0 - - fonttools=4.45.1=py311hcd402e7_0 + - fonttools=4.46.0=py311hcd402e7_0 - fortran-compiler=1.6.0=h7048d53_0 - - importlib-metadata=6.8.0=pyha770c72_0 + - importlib-metadata=7.0.0=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.0=py311hec3470c_0 - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 - libcblas=3.9.0=20_linuxaarch64_openblas - libgd=2.3.3=h99c6b3b_4 @@ -323,15 +329,14 @@ dependencies: - pexpect=4.8.0=pyh1a96a4e_2 - pillow=9.4.0=py311hf18358d_1 - pip=23.3.1=pyhd8ed1ab_0 - - platformdirs=4.0.0=pyhd8ed1ab_0 - - pplpy=0.8.7=py311haefeb0b_0 + - pplpy=0.8.9=py311haefeb0b_0 - primecountpy=0.1.0=py311h098ece5_4 - prompt-toolkit=3.0.24=pyha770c72_0 - pybind11=2.11.1=py311h098ece5_2 - pyproject-api=1.6.1=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - pytz-deprecation-shim=0.1.0.post0=py311hec3470c_4 - - referencing=0.31.0=pyhd8ed1ab_0 + - referencing=0.31.1=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - sagemath-db-conway-polynomials=0.5.0=h4fd8a4c_1 - sympy=1.12=pypyh9d50eac_103 @@ -339,10 +344,12 @@ dependencies: - tinycss2=1.2.1=pyhd8ed1ab_0 - typing-extensions=4.8.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 - fflas-ffpack=2.4.3=hf104d39_2 - fqdn=1.5.1=pyhd8ed1ab_0 @@ -351,9 +358,8 @@ dependencies: - hatchling=1.18.0=pyhd8ed1ab_0 - iml=1.0.5=h9076c59_1003 - importlib-resources=6.1.1=pyhd8ed1ab_0 - - importlib_metadata=6.8.0=hd8ed1ab_0 - - jsonschema-specifications=2023.11.1=pyhd8ed1ab_0 - - jupyter_core=5.5.0=py311hec3470c_0 + - importlib_metadata=7.0.0=hd8ed1ab_0 + - jsonschema-specifications=2023.11.2=pyhd8ed1ab_0 - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1 - liblapacke=3.9.0=20_linuxaarch64_openblas - numpy=1.26.2=py311h69ead2a_0 @@ -362,7 +368,6 @@ dependencies: - setuptools-scm=8.0.4=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 - suitesparse=5.10.1=h1404dd6_1 - - virtualenv=20.24.7=pyhd8ed1ab_0 - xorg-libxtst=1.2.3=hf897c2e_1002 - argon2-cffi=23.1.0=pyhd8ed1ab_0 - blas-devel=3.9.0=20_linuxaarch64_openblas @@ -381,7 +386,7 @@ dependencies: - pythran=0.14.0=py311hec5c23b_1 - scipy=1.11.3=py311h69ead2a_1 - setuptools_scm=8.0.4=hd8ed1ab_0 - - tox=4.11.3=pyhd8ed1ab_0 + - tox=4.11.4=pyhd8ed1ab_0 - blas=2.120=openblas - ipykernel=6.26.0=pyhf8b6a83_0 - ipywidgets=8.1.1=pyhd8ed1ab_0 @@ -396,12 +401,12 @@ dependencies: - matplotlib=3.8.2=py311hfecb2dc_0 - nbclient=0.8.0=pyhd8ed1ab_0 - rpy2=3.5.11=py311r42hf13da56_3 - - nbconvert-core=7.11.0=pyhd8ed1ab_0 - - jupyter_server=2.10.1=pyhd8ed1ab_0 - - nbconvert-pandoc=7.11.0=pyhd8ed1ab_0 - - jupyter-lsp=2.2.0=pyhd8ed1ab_0 + - nbconvert-core=7.12.0=pyhd8ed1ab_0 + - jupyter_server=2.12.1=pyhd8ed1ab_0 + - nbconvert-pandoc=7.12.0=pyhd8ed1ab_0 + - jupyter-lsp=2.2.1=pyhd8ed1ab_0 - jupyterlab_server=2.25.2=pyhd8ed1ab_0 - - nbconvert=7.11.0=pyhd8ed1ab_0 + - nbconvert=7.12.0=pyhd8ed1ab_0 - notebook-shim=0.2.3=pyhd8ed1ab_0 - jupyterlab=4.0.9=pyhd8ed1ab_0 - notebook=7.0.6=pyhd8ed1ab_0 diff --git a/src/environment-3.11-linux.yml b/src/environment-3.11-linux.yml index 7156dc0c6be..8d9508ee5c9 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: 9680f8f7a18903f75ef9458ee55f204cfda53726834f0cebc7357c744d809e58 +# input_hash: 6d6ecc95e0c89d8f01be60115bada743f108afb7c8fe60d41ad305a79a3f9de1 channels: - conda-forge @@ -42,9 +42,10 @@ dependencies: - 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 - bdw-gc=8.0.6=h4bd325d_0 - bzip2=1.0.8=hd590300_5 - - c-ares=1.22.1=hd590300_0 + - c-ares=1.23.0=hd590300_0 - cliquer=1.22=h36c2ea0_0 - fribidi=1.0.10=h36c2ea0_0 - gengetopt=2.23=h9c3ff4c_0 @@ -58,7 +59,7 @@ dependencies: - lame=3.100=h166bdaf_1003 - lerc=4.0.0=h27087fc_0 - libatomic_ops=7.6.14=h166bdaf_0 - - libbraiding=1.1=h58526e2_0 + - libbraiding=1.2=hcb278e6_0 - libbrotlicommon=1.1.0=hd590300_1 - libdeflate=1.19=hd590300_0 - libev=4.33=h516909a_1 @@ -87,7 +88,7 @@ dependencies: - ncurses=6.4=h59595ed_2 - ninja=1.11.1=h924138e_0 - nspr=4.35=h27087fc_0 - - openssl=3.2.0=hd590300_0 + - openssl=3.1.4=hd590300_0 - palp=2.20=h36c2ea0_0 - patch=2.7.6=h7f98852_1002 - pixman=0.42.2=h59595ed_0 @@ -140,6 +141,7 @@ dependencies: - perl=5.32.1=4_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 @@ -162,19 +164,19 @@ dependencies: - krb5=1.21.2=h659d440_0 - libboost=1.83.0=h6fcfa73_0 - libflint=2.9.0=h2f819a4_ntl_100 - - libgcrypt=1.10.2=hd590300_0 - - libglib=2.78.1=h783c2da_1 + - libgcrypt=1.10.3=hd590300_0 + - libglib=2.78.2=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.5=h4dfa4b3_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.94=h1d7d5a4_0 + - nss=3.95=h1d7d5a4_0 - pandoc=3.1.3=h32600fe_0 - pari=2.15.4=h4d4ae9b_2_pthread - ppl=1.2=h6ec01c2_1006 @@ -213,7 +215,7 @@ dependencies: - decorator=5.1.1=pyhd8ed1ab_0 - defusedxml=0.7.1=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - - docutils=0.20.1=py311h38be061_2 + - docutils=0.20.1=py311h38be061_3 - eclib=20230424=hdef1efb_0 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 @@ -227,8 +229,9 @@ dependencies: - gast=0.5.4=pyhd8ed1ab_0 - gfortran=12.3.0=h499e0f7_2 - gfortran_linux-64=12.3.0=h7fe76b4_2 - - glib-tools=2.78.1=hfc55251_1 + - glib-tools=2.78.2=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 @@ -238,11 +241,11 @@ dependencies: - jupyterlab_widgets=3.0.9=pyhd8ed1ab_0 - kiwisolver=1.4.5=py311h9547e67_1 - lcalc=2.0.5=h6a8a7c6_1 - - lcms2=2.15=hb7c19ff_3 + - lcms2=2.16=hb7c19ff_0 - libblas=3.9.0=20_linux64_openblas - libboost-devel=1.83.0=h00ab1b0_0 - libbrial=1.2.12=h3155cbd_1 - - libclang13=15.0.7=default_h9986a30_3 + - libclang13=15.0.7=default_ha2b6cf4_4 - libcups=2.3.3=h4637d8d_4 - libcurl=8.4.0=hca28451_0 - libpq=16.1=hfc447b1_0 @@ -250,7 +253,7 @@ dependencies: - libwebp=1.3.2=h658648e_1 - m4rie=20150908=h7ca028e_1001 - markupsafe=2.1.3=py311h459d7ec_1 - - maxima=5.45.0=h9d73b02_3 + - maxima=5.46.0=hed6455c_0 - mistune=3.0.2=pyhd8ed1ab_0 - mpmath=1.3.0=pyhd8ed1ab_0 - munkres=1.1.4=pyh9f0ad1d_0 @@ -265,6 +268,7 @@ dependencies: - 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 @@ -284,9 +288,9 @@ dependencies: - python-tzdata=2023.3=pyhd8ed1ab_0 - pytz=2023.3.post1=pyhd8ed1ab_0 - pyyaml=6.0.1=py311h459d7ec_1 - - pyzmq=25.1.1=py311h34ded2d_2 + - pyzmq=25.1.2=py311h34ded2d_0 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.13.1=py311h46250e7_0 + - rpds-py=0.13.2=py311h46250e7_0 - rw=0.8=h516909a_1001 - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 - sagetex=3.6.1=pyhd8ed1ab_0 @@ -304,8 +308,8 @@ dependencies: - toml=0.10.2=pyhd8ed1ab_0 - tomli=2.0.1=pyhd8ed1ab_0 - tornado=6.3.3=py311h459d7ec_1 - - traitlets=5.13.0=pyhd8ed1ab_0 - - trove-classifiers=2023.11.22=pyhd8ed1ab_0 + - traitlets=5.14.0=pyhd8ed1ab_0 + - trove-classifiers=2023.11.29=pyhd8ed1ab_0 - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 - typing_extensions=4.8.0=pyha770c72_0 - typing_utils=0.1.0=pyhd8ed1ab_0 @@ -315,7 +319,7 @@ dependencies: - wcwidth=0.2.12=pyhd8ed1ab_0 - webcolors=1.13=pyhd8ed1ab_0 - webencodings=0.5.1=pyhd8ed1ab_2 - - websocket-client=1.6.4=pyhd8ed1ab_0 + - websocket-client=1.7.0=pyhd8ed1ab_0 - wheel=0.42.0=pyhd8ed1ab_0 - widgetsnbextension=4.0.9=pyhd8ed1ab_0 - xcb-util-image=0.4.0=h8ee46fc_1 @@ -337,22 +341,24 @@ dependencies: - cached-property=1.5.2=hd8ed1ab_1 - cairo=1.18.0=h3faef2a_0 - cffi=1.16.0=py311hb3a22ac_0 - - cmake=3.27.8=hcfe8598_0 + - cmake=3.27.9=hcfe8598_0 - comm=0.1.4=pyhd8ed1ab_0 - cppy=1.2.1=pyhd8ed1ab_0 - curl=8.4.0=hca28451_0 + - cxx-compiler=1.6.0=h00ab1b0_0 - cypari2=2.1.3=py311hd2352ae_2 - deprecation=2.1.0=pyh9f0ad1d_0 - - fonttools=4.45.1=py311h459d7ec_0 + - fonttools=4.46.0=py311h459d7ec_0 - fortran-compiler=1.6.0=heb67821_0 - - glib=2.78.1=hfc55251_1 - - importlib-metadata=6.8.0=pyha770c72_0 + - glib=2.78.2=hfc55251_0 + - importlib-metadata=7.0.0=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.0=py311h38be061_0 - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 - libcblas=3.9.0=20_linux64_openblas - - libclang=15.0.7=default_h7634d5b_3 + - 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 @@ -362,8 +368,7 @@ dependencies: - pexpect=4.8.0=pyh1a96a4e_2 - pillow=10.1.0=py311ha6c5da5_0 - pip=23.3.1=pyhd8ed1ab_0 - - platformdirs=4.0.0=pyhd8ed1ab_0 - - pplpy=0.8.7=py311h85abca9_0 + - pplpy=0.8.9=py311h85abca9_0 - primecountpy=0.1.0=py311h9547e67_4 - prompt-toolkit=3.0.24=pyha770c72_0 - pulseaudio-client=16.1=hb77b528_5 @@ -371,7 +376,7 @@ dependencies: - pyproject-api=1.6.1=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - pytz-deprecation-shim=0.1.0.post0=py311h38be061_4 - - referencing=0.31.0=pyhd8ed1ab_0 + - referencing=0.31.1=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - sagemath-db-conway-polynomials=0.5.0=ha878542_1 - sip=6.7.12=py311hb755f60_0 @@ -380,9 +385,11 @@ dependencies: - tinycss2=1.2.1=pyhd8ed1ab_0 - typing-extensions=4.8.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 - 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 @@ -392,9 +399,8 @@ dependencies: - hatchling=1.18.0=pyhd8ed1ab_0 - iml=1.0.5=hd75c201_1003 - importlib-resources=6.1.1=pyhd8ed1ab_0 - - importlib_metadata=6.8.0=hd8ed1ab_0 - - jsonschema-specifications=2023.11.1=pyhd8ed1ab_0 - - jupyter_core=5.5.0=py311h38be061_0 + - importlib_metadata=7.0.0=hd8ed1ab_0 + - jsonschema-specifications=2023.11.2=pyhd8ed1ab_0 - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1 - liblapacke=3.9.0=20_linux64_openblas - numpy=1.26.2=py311h64a7726_0 @@ -404,7 +410,6 @@ dependencies: - setuptools-scm=8.0.4=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 - suitesparse=5.10.1=h9e50725_1 - - virtualenv=20.24.7=pyhd8ed1ab_0 - xorg-libxtst=1.2.3=h7f98852_1002 - argon2-cffi=23.1.0=pyhd8ed1ab_0 - blas-devel=3.9.0=20_linux64_openblas @@ -423,7 +428,7 @@ dependencies: - pythran=0.14.0=py311h92ebd52_1 - scipy=1.11.4=py311h64a7726_0 - setuptools_scm=8.0.4=hd8ed1ab_0 - - tox=4.11.3=pyhd8ed1ab_0 + - tox=4.11.4=pyhd8ed1ab_0 - blas=2.120=openblas - ipykernel=6.26.0=pyhf8b6a83_0 - ipywidgets=8.1.1=pyhd8ed1ab_0 @@ -439,12 +444,12 @@ dependencies: - pyqt=5.15.9=py311hf0fb5b6_5 - rpy2=3.5.11=py311r43h1f0f07a_3 - matplotlib=3.8.2=py311h38be061_0 - - nbconvert-core=7.11.0=pyhd8ed1ab_0 - - jupyter_server=2.10.1=pyhd8ed1ab_0 - - nbconvert-pandoc=7.11.0=pyhd8ed1ab_0 - - jupyter-lsp=2.2.0=pyhd8ed1ab_0 + - nbconvert-core=7.12.0=pyhd8ed1ab_0 + - jupyter_server=2.12.1=pyhd8ed1ab_0 + - nbconvert-pandoc=7.12.0=pyhd8ed1ab_0 + - jupyter-lsp=2.2.1=pyhd8ed1ab_0 - jupyterlab_server=2.25.2=pyhd8ed1ab_0 - - nbconvert=7.11.0=pyhd8ed1ab_0 + - nbconvert=7.12.0=pyhd8ed1ab_0 - notebook-shim=0.2.3=pyhd8ed1ab_0 - jupyterlab=4.0.9=pyhd8ed1ab_0 - notebook=7.0.6=pyhd8ed1ab_0 diff --git a/src/environment-3.11-macos-arm64.yml b/src/environment-3.11-macos-arm64.yml index 7bf0942990c..301847b5a92 100644 --- a/src/environment-3.11-macos-arm64.yml +++ b/src/environment-3.11-macos-arm64.yml @@ -1,13 +1,14 @@ # Generated by conda-lock. # platform: osx-arm64 -# input_hash: dccf1ba41cc9c40db7915523f6954f39d162880893931054bc742893c48f8b6b +# input_hash: ad64c3d6ad5b2bf0fc23750ec7e1b16ad2ba693074eb779369f0d37a25da04fe 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.22.1=h93a5062_0 + - c-ares=1.23.0=h93a5062_0 - ca-certificates=2023.11.17=hf0a4a13_0 - cliquer=1.22=h27ca646_0 - font-ttf-dejavu-sans-mono=2.37=hab24e00_0 @@ -31,7 +32,7 @@ dependencies: - libuv=1.46.0=hb547adb_0 - libwebp-base=1.2.4=h1a8c8d9_0 - libzlib=1.2.13=h53f4e23_5 - - llvm-openmp=17.0.5=hcd81f8e_0 + - llvm-openmp=17.0.6=hcd81f8e_0 - m4=1.4.18=h642e427_1001 - make=4.3=he57ea6c_1 - mathjax=3.2.2=hce30654_0 @@ -71,7 +72,7 @@ dependencies: - icu=70.1=h6b3803e_0 - isl=0.25=h9a09cb3_0 - lerc=4.0.0=h9a09cb3_0 - - libbraiding=1.1=h9f76cd9_0 + - libbraiding=1.2=hb7217d7_0 - libbrotlidec=1.1.0=hb547adb_1 - libbrotlienc=1.1.0=hb547adb_1 - libgfortran5=13.2.0=hf226fd6_1 @@ -82,7 +83,7 @@ dependencies: - ncurses=6.4=h463b476_2 - ninja=1.11.1=hffc8910_0 - openjdk=21.0.1=hed44d8b_0 - - openssl=3.2.0=h0d3ecfb_0 + - openssl=3.2.0=h0d3ecfb_1 - pari-seadata=0.0.20090618=0 - pcre2=10.40=hb34f9b4_0 - pixman=0.42.2=h13dd4ca_0 @@ -90,6 +91,7 @@ dependencies: - 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 @@ -133,7 +135,7 @@ dependencies: - lcms2=2.15=h481adae_0 - libbrial=1.2.12=ha7f5006_1 - libflint=2.9.0=h173eafc_ntl_100 - - libllvm16=16.0.1=h1e5164c_0 + - libllvm15=15.0.7=h62b9111_1 - libopenblas=0.3.25=openmp_h6c19121_0 - libwebp=1.2.4=h999c80f_1 - m4rie=20150908=h17b34a0_1001 @@ -168,7 +170,7 @@ dependencies: - decorator=5.1.1=pyhd8ed1ab_0 - defusedxml=0.7.1=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - - docutils=0.20.1=py311h267d04e_2 + - docutils=0.20.1=py311h267d04e_3 - eclib=20230424=haeb5157_0 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 @@ -189,12 +191,12 @@ dependencies: - jupyterlab_widgets=3.0.9=pyhd8ed1ab_0 - kiwisolver=1.4.5=py311he4fd1f5_1 - lcalc=2.0.5=hc94e8e6_1 - - ld64_osx-arm64=609=h297e91e_13 + - ld64_osx-arm64=609=hc4dc95b_15 - libblas=3.9.0=20_osxarm64_openblas - - libclang-cpp16=16.0.1=default_he7141eb_0 + - libclang-cpp15=15.0.7=default_hd209bcb_4 - libcurl=8.1.2=h912dcd9_0 - libgd=2.3.3=h90fb8ed_4 - - llvm-tools=16.0.1=h1e5164c_0 + - llvm-tools=15.0.7=h62b9111_1 - markupsafe=2.1.3=py311heffc1b2_1 - maxima=5.45.0=h6032a66_2 - mistune=3.0.2=pyhd8ed1ab_0 @@ -211,6 +213,7 @@ dependencies: - pillow=9.4.0=py311h627eb56_1 - 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 @@ -230,9 +233,9 @@ dependencies: - python-tzdata=2023.3=pyhd8ed1ab_0 - pytz=2023.3.post1=pyhd8ed1ab_0 - pyyaml=6.0.1=py311heffc1b2_1 - - pyzmq=25.1.1=py311he9c0408_2 + - pyzmq=25.1.2=py311h6727e71_0 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.13.1=py311h94f323b_0 + - rpds-py=0.13.2=py311h94f323b_0 - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 - sagetex=3.6.1=pyhd8ed1ab_0 - setuptools=68.2.2=pyhd8ed1ab_0 @@ -246,8 +249,8 @@ dependencies: - sympow=2.023.6=hb0babe8_3 - tomli=2.0.1=pyhd8ed1ab_0 - tornado=6.3.3=py311heffc1b2_1 - - traitlets=5.13.0=pyhd8ed1ab_0 - - trove-classifiers=2023.11.22=pyhd8ed1ab_0 + - traitlets=5.14.0=pyhd8ed1ab_0 + - trove-classifiers=2023.11.29=pyhd8ed1ab_0 - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 - typing_extensions=4.8.0=pyha770c72_0 - typing_utils=0.1.0=pyhd8ed1ab_0 @@ -257,7 +260,7 @@ dependencies: - wcwidth=0.2.12=pyhd8ed1ab_0 - webcolors=1.13=pyhd8ed1ab_0 - webencodings=0.5.1=pyhd8ed1ab_2 - - websocket-client=1.6.4=pyhd8ed1ab_0 + - websocket-client=1.7.0=pyhd8ed1ab_0 - wheel=0.42.0=pyhd8ed1ab_0 - widgetsnbextension=4.0.9=pyhd8ed1ab_0 - zipp=3.17.0=pyhd8ed1ab_0 @@ -269,23 +272,24 @@ dependencies: - 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=h7a0f565_13 + - cctools_osx-arm64=973.0.1=h2a25c60_15 - cffi=1.16.0=py311h4a08483_0 - - clang-16=16.0.1=default_he7141eb_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.45.1=py311h05b510d_0 + - fonttools=4.46.0=py311h05b510d_0 - harfbuzz=6.0.0=hddbc195_0 - - importlib-metadata=6.8.0=pyha770c72_0 + - importlib-metadata=7.0.0=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.0=py311h267d04e_0 - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 - - ld64=609=h634c8be_13 + - ld64=609=h89fa09d_15 - libcblas=3.9.0=20_osxarm64_openblas - liblapack=3.9.0=20_osxarm64_openblas - matplotlib-inline=0.1.6=pyhd8ed1ab_0 @@ -293,8 +297,7 @@ dependencies: - overrides=7.4.0=pyhd8ed1ab_0 - pexpect=4.8.0=pyh1a96a4e_2 - pip=23.3.1=pyhd8ed1ab_0 - - platformdirs=4.0.0=pyhd8ed1ab_0 - - pplpy=0.8.7=py311hb546c2d_0 + - pplpy=0.8.9=py311h5ba3760_0 - primecountpy=0.1.0=py311he4fd1f5_4 - prompt-toolkit=3.0.24=pyha770c72_0 - pybind11=2.11.1=py311he4fd1f5_2 @@ -302,7 +305,7 @@ dependencies: - pyproject-api=1.6.1=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - pytz-deprecation-shim=0.1.0.post0=py311h267d04e_4 - - referencing=0.31.0=pyhd8ed1ab_0 + - referencing=0.31.1=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - sagemath-db-conway-polynomials=0.5.0=h4653dfc_1 - sympy=1.12=pypyh9d50eac_103 @@ -310,11 +313,12 @@ dependencies: - tinycss2=1.2.1=pyhd8ed1ab_0 - typing-extensions=4.8.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=h4faf515_13 - - clang=16.0.1=h1e5164c_0 + - cctools=973.0.1=hd1ac623_15 + - clang=15.0.7=haab561b_4 - dsdp=5.8=h9397a75_1203 - fflas-ffpack=2.4.3=h11f2abc_2 - fqdn=1.5.1=pyhd8ed1ab_0 @@ -322,9 +326,8 @@ dependencies: - hatchling=1.18.0=pyhd8ed1ab_0 - iml=1.0.5=hd52f0d1_1003 - importlib-resources=6.1.1=pyhd8ed1ab_0 - - importlib_metadata=6.8.0=hd8ed1ab_0 - - jsonschema-specifications=2023.11.1=pyhd8ed1ab_0 - - jupyter_core=5.5.0=py311h267d04e_0 + - importlib_metadata=7.0.0=hd8ed1ab_0 + - jsonschema-specifications=2023.11.2=pyhd8ed1ab_0 - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1 - liblapacke=3.9.0=20_osxarm64_openblas - numpy=1.26.2=py311h6d074dd_0 @@ -335,10 +338,9 @@ dependencies: - setuptools-scm=8.0.4=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 - suitesparse=5.10.1=h7cd81ec_1 - - virtualenv=20.24.7=pyhd8ed1ab_0 - argon2-cffi=23.1.0=pyhd8ed1ab_0 - blas-devel=3.9.0=20_osxarm64_openblas - - clangxx=16.0.1=default_ha0f6327_0 + - clangxx=15.0.7=default_h5c94ee4_4 - contourpy=1.2.0=py311hd03642b_0 - cvxopt=1.3.2=py311hd76776f_1 - fpylll=0.6.0=py311he33df0e_1 @@ -352,37 +354,42 @@ dependencies: - scipy=1.11.4=py311h2b215a9_0 - send2trash=1.8.2=pyhd1c38e8_0 - setuptools_scm=8.0.4=hd8ed1ab_0 - - tox=4.11.3=pyhd8ed1ab_0 + - tox=4.11.4=pyhd8ed1ab_0 - blas=2.120=openblas - - compiler-rt_osx-arm64=16.0.1=h30b49de_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 - rw=0.9=h3422bc3_0 - - compiler-rt=16.0.1=h30b49de_0 + - compiler-rt=15.0.7=h3808999_2 - 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_osx-arm64=16.0.1=hdccda30_1 - - nbconvert-core=7.11.0=pyhd8ed1ab_0 - - clangxx_osx-arm64=16.0.1=h0c1d50e_1 + - clang_impl_osx-arm64=15.0.7=h77e971b_6 + - nbconvert-core=7.12.0=pyhd8ed1ab_0 + - clang_osx-arm64=15.0.7=h54d7cd3_6 + - jupyter_server=2.12.1=pyhd8ed1ab_0 + - nbconvert-pandoc=7.12.0=pyhd8ed1ab_0 + - c-compiler=1.6.0=hd291e01_0 + - clangxx_impl_osx-arm64=15.0.7=h768a7fd_6 - gfortran_osx-arm64=12.3.0=h57527a5_1 - - jupyter_server=2.10.1=pyhd8ed1ab_0 - - nbconvert-pandoc=7.11.0=pyhd8ed1ab_0 - - gfortran=12.3.0=h1ca8e4b_1 - - jupyter-lsp=2.2.0=pyhd8ed1ab_0 + - jupyter-lsp=2.2.1=pyhd8ed1ab_0 - jupyterlab_server=2.25.2=pyhd8ed1ab_0 - - nbconvert=7.11.0=pyhd8ed1ab_0 + - nbconvert=7.12.0=pyhd8ed1ab_0 - notebook-shim=0.2.3=pyhd8ed1ab_0 + - clangxx_osx-arm64=15.0.7=h77e971b_6 + - 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 - - fortran-compiler=1.6.0=h5a50232_0 - - jupyterlab=4.0.9=pyhd8ed1ab_0 + - compilers=1.6.0=hce30654_0 - rpy2=3.5.11=py311r41h4add359_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 diff --git a/src/environment-3.11-macos.yml b/src/environment-3.11-macos.yml index c3b73177645..cda21078a3d 100644 --- a/src/environment-3.11-macos.yml +++ b/src/environment-3.11-macos.yml @@ -1,13 +1,14 @@ # Generated by conda-lock. # platform: osx-64 -# input_hash: 9e55a3e3c14fb14381a08b8920fff7872e04f0e42c4f78cc95189f975d3bcb24 +# input_hash: bb92870fa42ce70f8a3e380e70c39da550358f0a406f334229520fd46af275c9 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.22.1=h10d778d_0 + - c-ares=1.23.0=h10d778d_0 - ca-certificates=2023.11.17=h8857fd0_0 - cliquer=1.22=hbcb3906_0 - font-ttf-dejavu-sans-mono=2.37=hab24e00_0 @@ -33,7 +34,7 @@ dependencies: - libuv=1.46.0=h0c2f820_0 - libwebp-base=1.3.2=h0dc2134_0 - libzlib=1.2.13=h8a1eda9_5 - - llvm-openmp=17.0.5=hb6ac08f_0 + - llvm-openmp=17.0.6=hb6ac08f_0 - m4=1.4.18=haf1e3a3_1001 - make=4.3=h22f3db7_1 - mathjax=3.2.2=h694c41f_0 @@ -72,28 +73,29 @@ dependencies: - graphite2=1.3.13=h2e338ed_1001 - isl=0.25=hb486fe8_0 - lerc=4.0.0=hb486fe8_0 - - libbraiding=1.1=h2e338ed_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 - libxcb=1.15=hb7f2c08_0 - - libxml2=2.11.6=hc0ae0f7_0 + - libxml2=2.12.2=hc0ae0f7_0 - lrcalc=2.1=hf0c8a7f_5 - ncurses=6.4=h93d8f39_2 - ninja=1.11.1=hb8565cd_0 - openjdk=21.0.1=hf4d7fad_0 - - openssl=3.2.0=hd75f5a5_0 + - openssl=3.2.0=hd75f5a5_1 - pandoc=3.1.3=h9d075a6_0 - pari-seadata=0.0.20090618=0 - - pcre2=10.42=h0ad2156_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 @@ -112,9 +114,9 @@ dependencies: - libboost=1.83.0=hf44e908_0 - libedit=3.1.20191231=h0678c8f_2 - libgfortran=5.0.0=13_2_0_h97931a8_1 - - libglib=2.78.1=h198397b_1 + - libglib=2.78.1=h6d9ecee_0 - libhomfly=1.02r6=hc929b4f_0 - - libllvm16=16.0.6=he4b1e75_2 + - libllvm15=15.0.7=hbedff68_4 - libnghttp2=1.58.0=h64cf6d3_0 - libssh2=1.11.0=hd019ec5_0 - libtiff=4.6.0=h684deea_2 @@ -134,15 +136,15 @@ dependencies: - gap-core=4.12.2=hc16eb5f_3 - gfan=0.6.2=hd793b56_1003 - krb5=1.21.2=hb884880_0 - - lcms2=2.15=hd6ba6f3_3 - - ld64_osx-64=609=ha20a434_15 + - lcms2=2.16=ha2f27b4_0 + - ld64_osx-64=609=h0fd476b_15 - libboost-devel=1.83.0=h7728843_0 - libbrial=1.2.12=h8d08345_1 - - libclang-cpp16=16.0.6=default_h762fdd7_2 + - libclang-cpp15=15.0.7=default_h6b1ee41_4 - libflint=2.9.0=hfd2f71f_ntl_100 - libopenblas=0.3.25=openmp_hfef2a42_0 - libwebp=1.3.2=h44782d1_1 - - llvm-tools=16.0.6=he4b1e75_2 + - llvm-tools=15.0.7=hbedff68_4 - m4rie=20150908=h3f75d11_1001 - mpc=1.3.1=h81bd1dd_0 - mpfi=1.5.4=h52b28e3_1001 @@ -164,11 +166,11 @@ dependencies: - 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=ha1c5b94_15 + - cctools_osx-64=973.0.1=habff3f6_15 - certifi=2023.11.17=pyhd8ed1ab_0 - chardet=5.2.0=py311h6eed73b_1 - charset-normalizer=3.3.2=pyhd8ed1ab_0 - - clang-16=16.0.6=default_h762fdd7_2 + - clang-15=15.0.7=default_h6b1ee41_4 - colorama=0.4.6=pyhd8ed1ab_0 - cycler=0.12.1=pyhd8ed1ab_0 - cysignals=1.11.2=py311h8a58447_3 @@ -177,7 +179,7 @@ dependencies: - decorator=5.1.1=pyhd8ed1ab_0 - defusedxml=0.7.1=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - - docutils=0.20.1=py311h6eed73b_2 + - docutils=0.20.1=py311h6eed73b_3 - eclib=20230424=hd00e801_0 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 @@ -198,12 +200,12 @@ dependencies: - jupyterlab_widgets=3.0.9=pyhd8ed1ab_0 - kiwisolver=1.4.5=py311h5fe6e05_1 - lcalc=2.0.5=h3a941db_1 - - ld64=609=ha02d983_15 + - ld64=609=ha91a046_15 - libblas=3.9.0=20_osx64_openblas - - libcurl=8.4.0=h726d00d_0 + - libcurl=8.5.0=h726d00d_0 - libgd=2.3.3=h0dceb68_9 - markupsafe=2.1.3=py311h2725bcf_1 - - maxima=5.45.0=hd029580_3 + - maxima=5.46.0=h2b27fa8_0 - mistune=3.0.2=pyhd8ed1ab_0 - mpmath=1.3.0=pyhd8ed1ab_0 - munkres=1.1.4=pyh9f0ad1d_0 @@ -218,6 +220,7 @@ dependencies: - pillow=10.1.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 @@ -237,9 +240,9 @@ dependencies: - python-tzdata=2023.3=pyhd8ed1ab_0 - pytz=2023.3.post1=pyhd8ed1ab_0 - pyyaml=6.0.1=py311h2725bcf_1 - - pyzmq=25.1.1=py311he3804a1_2 + - pyzmq=25.1.2=py311h889d6d6_0 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.13.1=py311h5e0f0e4_0 + - rpds-py=0.13.2=py311h5e0f0e4_0 - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 - sagetex=3.6.1=pyhd8ed1ab_0 - setuptools=68.2.2=pyhd8ed1ab_0 @@ -253,8 +256,8 @@ dependencies: - sympow=2.023.6=h115ba6a_3 - tomli=2.0.1=pyhd8ed1ab_0 - tornado=6.3.3=py311h2725bcf_1 - - traitlets=5.13.0=pyhd8ed1ab_0 - - trove-classifiers=2023.11.22=pyhd8ed1ab_0 + - traitlets=5.14.0=pyhd8ed1ab_0 + - trove-classifiers=2023.11.29=pyhd8ed1ab_0 - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 - typing_extensions=4.8.0=pyha770c72_0 - typing_utils=0.1.0=pyhd8ed1ab_0 @@ -264,7 +267,7 @@ dependencies: - wcwidth=0.2.12=pyhd8ed1ab_0 - webcolors=1.13=pyhd8ed1ab_0 - webencodings=0.5.1=pyhd8ed1ab_2 - - websocket-client=1.6.4=pyhd8ed1ab_0 + - websocket-client=1.7.0=pyhd8ed1ab_0 - wheel=0.42.0=pyhd8ed1ab_0 - widgetsnbextension=4.0.9=pyhd8ed1ab_0 - zipp=3.17.0=pyhd8ed1ab_0 @@ -276,21 +279,22 @@ dependencies: - beniget=0.4.1=pyhd8ed1ab_0 - bleach=6.1.0=pyhd8ed1ab_0 - cached-property=1.5.2=hd8ed1ab_1 - - cctools=973.0.1=h40f6528_15 + - cctools=973.0.1=hd9ad811_15 - cffi=1.16.0=py311hc0b63fd_0 - - clang=16.0.6=hc177806_2 - - cmake=3.27.8=hc7ee4c4_0 + - clang=15.0.7=hac416ee_4 + - cmake=3.28.0=hc7ee4c4_0 - comm=0.1.4=pyhd8ed1ab_0 - cppy=1.2.1=pyhd8ed1ab_0 - - curl=8.4.0=h726d00d_0 + - curl=8.5.0=h726d00d_0 - cypari2=2.1.3=py311h7d823c7_2 - deprecation=2.1.0=pyh9f0ad1d_0 - - fonttools=4.45.1=py311he705e18_0 + - fonttools=4.46.0=py311he705e18_0 - harfbuzz=8.3.0=hf45c392_0 - - importlib-metadata=6.8.0=pyha770c72_0 + - importlib-metadata=7.0.0=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.0=py311h6eed73b_0 - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 - libcblas=3.9.0=20_osx64_openblas - liblapack=3.9.0=20_osx64_openblas @@ -299,8 +303,7 @@ dependencies: - overrides=7.4.0=pyhd8ed1ab_0 - pexpect=4.8.0=pyh1a96a4e_2 - pip=23.3.1=pyhd8ed1ab_0 - - platformdirs=4.0.0=pyhd8ed1ab_0 - - pplpy=0.8.7=py311h47e80fe_0 + - pplpy=0.8.9=py311h7355a2a_0 - primecountpy=0.1.0=py311h5fe6e05_4 - prompt-toolkit=3.0.24=pyha770c72_0 - pybind11=2.11.1=py311h5fe6e05_2 @@ -308,7 +311,7 @@ dependencies: - pyproject-api=1.6.1=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - pytz-deprecation-shim=0.1.0.post0=py311h6eed73b_4 - - referencing=0.31.0=pyhd8ed1ab_0 + - referencing=0.31.1=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - sagemath-db-conway-polynomials=0.5.0=h033912b_1 - sympy=1.12=pypyh9d50eac_103 @@ -316,9 +319,10 @@ dependencies: - tinycss2=1.2.1=pyhd8ed1ab_0 - typing-extensions=4.8.0=hd8ed1ab_0 - urllib3=2.1.0=pyhd8ed1ab_0 + - virtualenv=20.25.0=pyhd8ed1ab_0 - argon2-cffi-bindings=21.2.0=py311h2725bcf_4 - arrow=1.3.0=pyhd8ed1ab_0 - - clangxx=16.0.6=default_h762fdd7_2 + - clangxx=15.0.7=default_h6b1ee41_4 - dsdp=5.8=h6e329d1_1203 - fflas-ffpack=2.4.3=h026fd7e_2 - fqdn=1.5.1=pyhd8ed1ab_0 @@ -326,9 +330,8 @@ dependencies: - hatchling=1.18.0=pyhd8ed1ab_0 - iml=1.0.5=h64b42ca_1003 - importlib-resources=6.1.1=pyhd8ed1ab_0 - - importlib_metadata=6.8.0=hd8ed1ab_0 - - jsonschema-specifications=2023.11.1=pyhd8ed1ab_0 - - jupyter_core=5.5.0=py311h6eed73b_0 + - importlib_metadata=7.0.0=hd8ed1ab_0 + - jsonschema-specifications=2023.11.2=pyhd8ed1ab_0 - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1 - liblapacke=3.9.0=20_osx64_openblas - numpy=1.26.2=py311h93c810c_0 @@ -339,10 +342,9 @@ dependencies: - setuptools-scm=8.0.4=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 - suitesparse=5.10.1=h7aff33d_1 - - virtualenv=20.24.7=pyhd8ed1ab_0 - argon2-cffi=23.1.0=pyhd8ed1ab_0 - blas-devel=3.9.0=20_osx64_openblas - - compiler-rt_osx-64=16.0.6=he1888fc_1 + - compiler-rt_osx-64=15.0.7=ha38d28d_2 - contourpy=1.2.0=py311h7bea37d_0 - cvxopt=1.3.2=py311ha4c19de_1 - fpylll=0.6.0=py311hc863427_1 @@ -355,35 +357,38 @@ dependencies: - scipy=1.11.4=py311he0bea55_0 - send2trash=1.8.2=pyhd1c38e8_0 - setuptools_scm=8.0.4=hd8ed1ab_0 - - tox=4.11.3=pyhd8ed1ab_0 + - tox=4.11.4=pyhd8ed1ab_0 - blas=2.120=openblas - - compiler-rt=16.0.6=he1888fc_1 + - 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 - - clang_impl_osx-64=16.0.6=h8787910_6 + - clang_impl_osx-64=15.0.7=h03d6864_6 - 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=16.0.6=hb91bd55_6 - - nbconvert-core=7.11.0=pyhd8ed1ab_0 - - clangxx_impl_osx-64=16.0.6=h1b7723c_6 + - clang_osx-64=15.0.7=hb91bd55_6 + - nbconvert-core=7.12.0=pyhd8ed1ab_0 + - c-compiler=1.6.0=h63c33a9_0 + - clangxx_impl_osx-64=15.0.7=h3d2d1bf_6 - gfortran_osx-64=12.3.0=h18f7dce_1 - - jupyter_server=2.10.1=pyhd8ed1ab_0 - - nbconvert-pandoc=7.11.0=pyhd8ed1ab_0 - - clangxx_osx-64=16.0.6=h2fff7d5_6 + - jupyter_server=2.12.1=pyhd8ed1ab_0 + - nbconvert-pandoc=7.12.0=pyhd8ed1ab_0 + - clangxx_osx-64=15.0.7=h655633e_6 - gfortran=12.3.0=h2c809b3_1 - - jupyter-lsp=2.2.0=pyhd8ed1ab_0 + - jupyter-lsp=2.2.1=pyhd8ed1ab_0 - jupyterlab_server=2.25.2=pyhd8ed1ab_0 - - nbconvert=7.11.0=pyhd8ed1ab_0 + - nbconvert=7.12.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.2=h8eaf9e6_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 diff --git a/src/environment-3.9-linux-aarch64.yml b/src/environment-3.9-linux-aarch64.yml index 51042106214..686c3be393e 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: aaf53487f0b471c22bf838e953b1be67935d024285572f1236c3b0f4acca6b05 +# input_hash: a10e3a467cf458fcb840256ae6cfa5842a184c5de4230665e4897dccf096fb8b channels: - conda-forge @@ -41,9 +41,10 @@ dependencies: - _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 - bdw-gc=8.0.6=hd62202e_0 - bzip2=1.0.8=h31becfc_5 - - c-ares=1.22.1=h31becfc_0 + - c-ares=1.23.0=h31becfc_0 - cliquer=1.22=hb9de7d4_0 - fribidi=1.0.10=hb9de7d4_0 - gengetopt=2.23=h01db608_0 @@ -57,7 +58,7 @@ dependencies: - keyutils=1.6.1=h4e544f5_0 - lerc=4.0.0=h4de3ea5_0 - libatomic_ops=7.6.14=h4e544f5_0 - - libbraiding=1.1=h7fd3ca4_0 + - libbraiding=1.2=hd600fc2_0 - libbrotlicommon=1.1.0=h31becfc_1 - libdeflate=1.17=hb4cce97_0 - libev=4.33=h516909a_1 @@ -80,7 +81,7 @@ dependencies: - nauty=2.7.2=hf897c2e_0 - ncurses=6.4=h0425590_2 - ninja=1.11.1=hdd96247_0 - - openssl=3.2.0=h31becfc_0 + - openssl=3.2.0=h31becfc_1 - palp=2.20=hb9de7d4_0 - patch=2.7.6=hf897c2e_1002 - pixman=0.42.2=h2f0025b_0 @@ -126,6 +127,7 @@ dependencies: - perl=5.32.1=4_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 @@ -151,7 +153,7 @@ dependencies: - libhwloc=2.9.1=h21e8147_0 - libopenblas=0.3.25=pthreads_h5a5ec62_0 - libtiff=4.5.0=h4c1066a_2 - - llvm-openmp=17.0.5=h8b0cb96_0 + - llvm-openmp=17.0.6=h8b0cb96_0 - m4ri=20140914=h75e8696_1005 - mpc=1.3.1=hf4c8f4c_0 - mpfi=1.5.4=h846f343_1001 @@ -187,7 +189,7 @@ dependencies: - decorator=5.1.1=pyhd8ed1ab_0 - defusedxml=0.7.1=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - - docutils=0.20.1=py39ha65689a_2 + - docutils=0.20.1=py39ha65689a_3 - eclib=20230424=h0bc7b0f_0 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 @@ -202,6 +204,7 @@ dependencies: - 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 @@ -219,7 +222,7 @@ dependencies: - libwebp=1.2.4=h7bdf6e5_1 - m4rie=20150908=h75e8696_1001 - markupsafe=2.1.3=py39h7cc1d5f_1 - - maxima=5.45.0=haa44c19_3 + - maxima=5.46.0=h6475f26_0 - mistune=3.0.2=pyhd8ed1ab_0 - mpmath=1.3.0=pyhd8ed1ab_0 - munkres=1.1.4=pyh9f0ad1d_0 @@ -234,6 +237,7 @@ dependencies: - 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 @@ -253,9 +257,9 @@ dependencies: - python-tzdata=2023.3=pyhd8ed1ab_0 - pytz=2023.3.post1=pyhd8ed1ab_0 - pyyaml=6.0.1=py39h898b7ef_1 - - pyzmq=25.1.1=py39hbab03a2_2 + - pyzmq=25.1.2=py39hbab03a2_0 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.13.1=py39hfe8b3a4_0 + - rpds-py=0.13.2=py39hfe8b3a4_0 - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 - sagetex=3.6.1=pyhd8ed1ab_0 - send2trash=1.8.2=pyh41d4057_0 @@ -271,8 +275,8 @@ dependencies: - tbb=2021.9.0=h4c384f3_0 - tomli=2.0.1=pyhd8ed1ab_0 - tornado=6.3.3=py39h7cc1d5f_1 - - traitlets=5.13.0=pyhd8ed1ab_0 - - trove-classifiers=2023.11.22=pyhd8ed1ab_0 + - traitlets=5.14.0=pyhd8ed1ab_0 + - trove-classifiers=2023.11.29=pyhd8ed1ab_0 - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 - typing_extensions=4.8.0=pyha770c72_0 - typing_utils=0.1.0=pyhd8ed1ab_0 @@ -283,7 +287,7 @@ dependencies: - wcwidth=0.2.12=pyhd8ed1ab_0 - webcolors=1.13=pyhd8ed1ab_0 - webencodings=0.5.1=pyhd8ed1ab_2 - - websocket-client=1.6.4=pyhd8ed1ab_0 + - websocket-client=1.7.0=pyhd8ed1ab_0 - wheel=0.42.0=pyhd8ed1ab_0 - widgetsnbextension=4.0.9=pyhd8ed1ab_0 - xorg-libxext=1.3.4=h2a766a3_2 @@ -306,14 +310,16 @@ dependencies: - comm=0.1.4=pyhd8ed1ab_0 - cppy=1.2.1=pyhd8ed1ab_0 - curl=8.1.2=hc34909b_0 + - cxx-compiler=1.6.0=h2a328a1_0 - cypari2=2.1.3=py39h532d932_2 - deprecation=2.1.0=pyh9f0ad1d_0 - - fonttools=4.45.1=py39h898b7ef_0 + - fonttools=4.46.0=py39h898b7ef_0 - fortran-compiler=1.6.0=h7048d53_0 - - importlib-metadata=6.8.0=pyha770c72_0 + - importlib-metadata=7.0.0=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.0=py39h4420490_0 - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 - libcblas=3.9.0=20_linuxaarch64_openblas - libgd=2.3.3=h99c6b3b_4 @@ -324,15 +330,14 @@ dependencies: - pexpect=4.8.0=pyh1a96a4e_2 - pillow=9.4.0=py39h72365ce_1 - pip=23.3.1=pyhd8ed1ab_0 - - platformdirs=4.0.0=pyhd8ed1ab_0 - - pplpy=0.8.7=py39h087fc0e_0 + - pplpy=0.8.9=py39h087fc0e_0 - primecountpy=0.1.0=py39hd16970a_3 - prompt-toolkit=3.0.24=pyha770c72_0 - pybind11=2.11.1=py39hd16970a_2 - pyproject-api=1.6.1=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - pytz-deprecation-shim=0.1.0.post0=py39h4420490_4 - - referencing=0.31.0=pyhd8ed1ab_0 + - referencing=0.31.1=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - sagemath-db-conway-polynomials=0.5.0=h4fd8a4c_1 - sympy=1.12=pypyh9d50eac_103 @@ -340,10 +345,12 @@ dependencies: - tinycss2=1.2.1=pyhd8ed1ab_0 - typing-extensions=4.8.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 - fflas-ffpack=2.4.3=hf104d39_2 - fqdn=1.5.1=pyhd8ed1ab_0 @@ -352,9 +359,8 @@ dependencies: - hatchling=1.18.0=pyhd8ed1ab_0 - iml=1.0.5=h9076c59_1003 - importlib-resources=6.1.1=pyhd8ed1ab_0 - - importlib_metadata=6.8.0=hd8ed1ab_0 - - jsonschema-specifications=2023.11.1=pyhd8ed1ab_0 - - jupyter_core=5.5.0=py39h4420490_0 + - importlib_metadata=7.0.0=hd8ed1ab_0 + - jsonschema-specifications=2023.11.2=pyhd8ed1ab_0 - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1 - liblapacke=3.9.0=20_linuxaarch64_openblas - numpy=1.26.2=py39h91c28bb_0 @@ -363,7 +369,6 @@ dependencies: - setuptools-scm=8.0.4=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 - suitesparse=5.10.1=h1404dd6_1 - - virtualenv=20.24.7=pyhd8ed1ab_0 - xorg-libxtst=1.2.3=hf897c2e_1002 - argon2-cffi=23.1.0=pyhd8ed1ab_0 - blas-devel=3.9.0=20_linuxaarch64_openblas @@ -382,7 +387,7 @@ dependencies: - pythran=0.14.0=py39hc2250db_1 - scipy=1.11.3=py39h91c28bb_1 - setuptools_scm=8.0.4=hd8ed1ab_0 - - tox=4.11.3=pyhd8ed1ab_0 + - tox=4.11.4=pyhd8ed1ab_0 - blas=2.120=openblas - ipykernel=6.26.0=pyhf8b6a83_0 - ipywidgets=8.1.1=pyhd8ed1ab_0 @@ -397,12 +402,12 @@ dependencies: - matplotlib=3.8.2=py39ha65689a_0 - nbclient=0.8.0=pyhd8ed1ab_0 - rpy2=3.5.11=py39r42h1ae4408_3 - - nbconvert-core=7.11.0=pyhd8ed1ab_0 - - jupyter_server=2.10.1=pyhd8ed1ab_0 - - nbconvert-pandoc=7.11.0=pyhd8ed1ab_0 - - jupyter-lsp=2.2.0=pyhd8ed1ab_0 + - nbconvert-core=7.12.0=pyhd8ed1ab_0 + - jupyter_server=2.12.1=pyhd8ed1ab_0 + - nbconvert-pandoc=7.12.0=pyhd8ed1ab_0 + - jupyter-lsp=2.2.1=pyhd8ed1ab_0 - jupyterlab_server=2.25.2=pyhd8ed1ab_0 - - nbconvert=7.11.0=pyhd8ed1ab_0 + - nbconvert=7.12.0=pyhd8ed1ab_0 - notebook-shim=0.2.3=pyhd8ed1ab_0 - jupyterlab=4.0.9=pyhd8ed1ab_0 - notebook=7.0.6=pyhd8ed1ab_0 diff --git a/src/environment-3.9-linux.yml b/src/environment-3.9-linux.yml index c9f960d0c19..bd0469b0d60 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: 51f5a1e6f1a84b15b52a7337ff32e5d572b51151a440db928e3d3098c709fee4 +# input_hash: 8bed86538f4d3558cf28685dc8abd2422a7035f5386ec172d6c3561182e27a1f channels: - conda-forge @@ -42,9 +42,10 @@ dependencies: - 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 - bdw-gc=8.0.6=h4bd325d_0 - bzip2=1.0.8=hd590300_5 - - c-ares=1.22.1=hd590300_0 + - c-ares=1.23.0=hd590300_0 - cliquer=1.22=h36c2ea0_0 - fribidi=1.0.10=h36c2ea0_0 - gengetopt=2.23=h9c3ff4c_0 @@ -58,7 +59,7 @@ dependencies: - lame=3.100=h166bdaf_1003 - lerc=4.0.0=h27087fc_0 - libatomic_ops=7.6.14=h166bdaf_0 - - libbraiding=1.1=h58526e2_0 + - libbraiding=1.2=hcb278e6_0 - libbrotlicommon=1.1.0=hd590300_1 - libdeflate=1.19=hd590300_0 - libev=4.33=h516909a_1 @@ -87,7 +88,7 @@ dependencies: - ncurses=6.4=h59595ed_2 - ninja=1.11.1=h924138e_0 - nspr=4.35=h27087fc_0 - - openssl=3.2.0=hd590300_0 + - openssl=3.1.4=hd590300_0 - palp=2.20=h36c2ea0_0 - patch=2.7.6=h7f98852_1002 - pixman=0.42.2=h59595ed_0 @@ -140,6 +141,7 @@ dependencies: - perl=5.32.1=4_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 @@ -162,19 +164,19 @@ dependencies: - krb5=1.21.2=h659d440_0 - libboost=1.83.0=h6fcfa73_0 - libflint=2.9.0=h2f819a4_ntl_100 - - libgcrypt=1.10.2=hd590300_0 - - libglib=2.78.1=h783c2da_1 + - libgcrypt=1.10.3=hd590300_0 + - libglib=2.78.2=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.5=h4dfa4b3_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.94=h1d7d5a4_0 + - nss=3.95=h1d7d5a4_0 - pandoc=3.1.3=h32600fe_0 - pari=2.15.4=h4d4ae9b_2_pthread - ppl=1.2=h6ec01c2_1006 @@ -213,7 +215,7 @@ dependencies: - decorator=5.1.1=pyhd8ed1ab_0 - defusedxml=0.7.1=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - - docutils=0.20.1=py39hf3d152e_2 + - docutils=0.20.1=py39hf3d152e_3 - eclib=20230424=hdef1efb_0 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 @@ -227,8 +229,9 @@ dependencies: - gast=0.5.4=pyhd8ed1ab_0 - gfortran=12.3.0=h499e0f7_2 - gfortran_linux-64=12.3.0=h7fe76b4_2 - - glib-tools=2.78.1=hfc55251_1 + - glib-tools=2.78.2=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 @@ -238,11 +241,11 @@ dependencies: - jupyterlab_widgets=3.0.9=pyhd8ed1ab_0 - kiwisolver=1.4.5=py39h7633fee_1 - lcalc=2.0.5=h6a8a7c6_1 - - lcms2=2.15=hb7c19ff_3 + - lcms2=2.16=hb7c19ff_0 - libblas=3.9.0=20_linux64_openblas - libboost-devel=1.83.0=h00ab1b0_0 - libbrial=1.2.12=h3155cbd_1 - - libclang13=15.0.7=default_h9986a30_3 + - libclang13=15.0.7=default_ha2b6cf4_4 - libcups=2.3.3=h4637d8d_4 - libcurl=8.4.0=hca28451_0 - libpq=16.1=hfc447b1_0 @@ -250,7 +253,7 @@ dependencies: - libwebp=1.3.2=h658648e_1 - m4rie=20150908=h7ca028e_1001 - markupsafe=2.1.3=py39hd1e30aa_1 - - maxima=5.45.0=h9d73b02_3 + - maxima=5.46.0=hed6455c_0 - mistune=3.0.2=pyhd8ed1ab_0 - mpmath=1.3.0=pyhd8ed1ab_0 - munkres=1.1.4=pyh9f0ad1d_0 @@ -265,6 +268,7 @@ dependencies: - 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 @@ -284,9 +288,9 @@ dependencies: - python-tzdata=2023.3=pyhd8ed1ab_0 - pytz=2023.3.post1=pyhd8ed1ab_0 - pyyaml=6.0.1=py39hd1e30aa_1 - - pyzmq=25.1.1=py39h8c080ef_2 + - pyzmq=25.1.2=py39h8c080ef_0 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.13.1=py39h9fdd4d6_0 + - rpds-py=0.13.2=py39h9fdd4d6_0 - rw=0.8=h516909a_1001 - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 - sagetex=3.6.1=pyhd8ed1ab_0 @@ -304,8 +308,8 @@ dependencies: - toml=0.10.2=pyhd8ed1ab_0 - tomli=2.0.1=pyhd8ed1ab_0 - tornado=6.3.3=py39hd1e30aa_1 - - traitlets=5.13.0=pyhd8ed1ab_0 - - trove-classifiers=2023.11.22=pyhd8ed1ab_0 + - traitlets=5.14.0=pyhd8ed1ab_0 + - trove-classifiers=2023.11.29=pyhd8ed1ab_0 - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 - typing_extensions=4.8.0=pyha770c72_0 - typing_utils=0.1.0=pyhd8ed1ab_0 @@ -316,7 +320,7 @@ dependencies: - wcwidth=0.2.12=pyhd8ed1ab_0 - webcolors=1.13=pyhd8ed1ab_0 - webencodings=0.5.1=pyhd8ed1ab_2 - - websocket-client=1.6.4=pyhd8ed1ab_0 + - websocket-client=1.7.0=pyhd8ed1ab_0 - wheel=0.42.0=pyhd8ed1ab_0 - widgetsnbextension=4.0.9=pyhd8ed1ab_0 - xcb-util-image=0.4.0=h8ee46fc_1 @@ -338,22 +342,24 @@ dependencies: - cached-property=1.5.2=hd8ed1ab_1 - cairo=1.18.0=h3faef2a_0 - cffi=1.16.0=py39h7a31438_0 - - cmake=3.27.8=hcfe8598_0 + - cmake=3.27.9=hcfe8598_0 - comm=0.1.4=pyhd8ed1ab_0 - cppy=1.2.1=pyhd8ed1ab_0 - curl=8.4.0=hca28451_0 + - cxx-compiler=1.6.0=h00ab1b0_0 - cypari2=2.1.3=py39h1698a45_2 - deprecation=2.1.0=pyh9f0ad1d_0 - - fonttools=4.45.1=py39hd1e30aa_0 + - fonttools=4.46.0=py39hd1e30aa_0 - fortran-compiler=1.6.0=heb67821_0 - - glib=2.78.1=hfc55251_1 - - importlib-metadata=6.8.0=pyha770c72_0 + - glib=2.78.2=hfc55251_0 + - importlib-metadata=7.0.0=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.0=py39hf3d152e_0 - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 - libcblas=3.9.0=20_linux64_openblas - - libclang=15.0.7=default_h7634d5b_3 + - 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 @@ -363,8 +369,7 @@ dependencies: - pexpect=4.8.0=pyh1a96a4e_2 - pillow=10.1.0=py39had0adad_0 - pip=23.3.1=pyhd8ed1ab_0 - - platformdirs=4.0.0=pyhd8ed1ab_0 - - pplpy=0.8.7=py39hba3e9e5_0 + - pplpy=0.8.9=py39hba3e9e5_0 - primecountpy=0.1.0=py39h7633fee_4 - prompt-toolkit=3.0.24=pyha770c72_0 - pulseaudio-client=16.1=hb77b528_5 @@ -372,7 +377,7 @@ dependencies: - pyproject-api=1.6.1=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - pytz-deprecation-shim=0.1.0.post0=py39hf3d152e_4 - - referencing=0.31.0=pyhd8ed1ab_0 + - referencing=0.31.1=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - sagemath-db-conway-polynomials=0.5.0=ha878542_1 - sip=6.7.12=py39h3d6467e_0 @@ -381,9 +386,11 @@ dependencies: - tinycss2=1.2.1=pyhd8ed1ab_0 - typing-extensions=4.8.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 - 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 @@ -393,9 +400,8 @@ dependencies: - hatchling=1.18.0=pyhd8ed1ab_0 - iml=1.0.5=hd75c201_1003 - importlib-resources=6.1.1=pyhd8ed1ab_0 - - importlib_metadata=6.8.0=hd8ed1ab_0 - - jsonschema-specifications=2023.11.1=pyhd8ed1ab_0 - - jupyter_core=5.5.0=py39hf3d152e_0 + - importlib_metadata=7.0.0=hd8ed1ab_0 + - jsonschema-specifications=2023.11.2=pyhd8ed1ab_0 - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1 - liblapacke=3.9.0=20_linux64_openblas - numpy=1.26.2=py39h474f0d3_0 @@ -405,7 +411,6 @@ dependencies: - setuptools-scm=8.0.4=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 - suitesparse=5.10.1=h9e50725_1 - - virtualenv=20.24.7=pyhd8ed1ab_0 - xorg-libxtst=1.2.3=h7f98852_1002 - argon2-cffi=23.1.0=pyhd8ed1ab_0 - blas-devel=3.9.0=20_linux64_openblas @@ -424,7 +429,7 @@ dependencies: - pythran=0.14.0=py39hda80f44_1 - scipy=1.11.4=py39h474f0d3_0 - setuptools_scm=8.0.4=hd8ed1ab_0 - - tox=4.11.3=pyhd8ed1ab_0 + - tox=4.11.4=pyhd8ed1ab_0 - blas=2.120=openblas - ipykernel=6.26.0=pyhf8b6a83_0 - ipywidgets=8.1.1=pyhd8ed1ab_0 @@ -440,12 +445,12 @@ dependencies: - pyqt=5.15.9=py39h52134e7_5 - rpy2=3.5.11=py39r43h44dd56e_3 - matplotlib=3.8.2=py39hf3d152e_0 - - nbconvert-core=7.11.0=pyhd8ed1ab_0 - - jupyter_server=2.10.1=pyhd8ed1ab_0 - - nbconvert-pandoc=7.11.0=pyhd8ed1ab_0 - - jupyter-lsp=2.2.0=pyhd8ed1ab_0 + - nbconvert-core=7.12.0=pyhd8ed1ab_0 + - jupyter_server=2.12.1=pyhd8ed1ab_0 + - nbconvert-pandoc=7.12.0=pyhd8ed1ab_0 + - jupyter-lsp=2.2.1=pyhd8ed1ab_0 - jupyterlab_server=2.25.2=pyhd8ed1ab_0 - - nbconvert=7.11.0=pyhd8ed1ab_0 + - nbconvert=7.12.0=pyhd8ed1ab_0 - notebook-shim=0.2.3=pyhd8ed1ab_0 - jupyterlab=4.0.9=pyhd8ed1ab_0 - notebook=7.0.6=pyhd8ed1ab_0 diff --git a/src/environment-3.9-macos-arm64.yml b/src/environment-3.9-macos-arm64.yml index 287fd95be1c..f42cff7056a 100644 --- a/src/environment-3.9-macos-arm64.yml +++ b/src/environment-3.9-macos-arm64.yml @@ -1,13 +1,14 @@ # Generated by conda-lock. # platform: osx-arm64 -# input_hash: 503dc3ea50dcef0a90c44e3c4e801129ab08a33991672f098934a5c9dc5d51ef +# input_hash: 10f4873e3d8377ce2db7561ab924eeced59ad04d8209d689ad56ded859aaf325 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.22.1=h93a5062_0 + - c-ares=1.23.0=h93a5062_0 - ca-certificates=2023.11.17=hf0a4a13_0 - cliquer=1.22=h27ca646_0 - font-ttf-dejavu-sans-mono=2.37=hab24e00_0 @@ -31,7 +32,7 @@ dependencies: - libuv=1.46.0=hb547adb_0 - libwebp-base=1.2.4=h1a8c8d9_0 - libzlib=1.2.13=h53f4e23_5 - - llvm-openmp=17.0.5=hcd81f8e_0 + - llvm-openmp=17.0.6=hcd81f8e_0 - m4=1.4.18=h642e427_1001 - make=4.3=he57ea6c_1 - mathjax=3.2.2=hce30654_0 @@ -71,7 +72,7 @@ dependencies: - icu=70.1=h6b3803e_0 - isl=0.25=h9a09cb3_0 - lerc=4.0.0=h9a09cb3_0 - - libbraiding=1.1=h9f76cd9_0 + - libbraiding=1.2=hb7217d7_0 - libbrotlidec=1.1.0=hb547adb_1 - libbrotlienc=1.1.0=hb547adb_1 - libgfortran5=13.2.0=hf226fd6_1 @@ -82,7 +83,7 @@ dependencies: - ncurses=6.4=h463b476_2 - ninja=1.11.1=hffc8910_0 - openjdk=21.0.1=hed44d8b_0 - - openssl=3.2.0=h0d3ecfb_0 + - openssl=3.2.0=h0d3ecfb_1 - pari-seadata=0.0.20090618=0 - pcre2=10.40=hb34f9b4_0 - pixman=0.42.2=h13dd4ca_0 @@ -90,6 +91,7 @@ dependencies: - 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 @@ -133,7 +135,7 @@ dependencies: - lcms2=2.15=h481adae_0 - libbrial=1.2.12=ha7f5006_1 - libflint=2.9.0=h173eafc_ntl_100 - - libllvm16=16.0.1=h1e5164c_0 + - libllvm15=15.0.7=h62b9111_1 - libopenblas=0.3.25=openmp_h6c19121_0 - libwebp=1.2.4=h999c80f_1 - m4rie=20150908=h17b34a0_1001 @@ -168,7 +170,7 @@ dependencies: - decorator=5.1.1=pyhd8ed1ab_0 - defusedxml=0.7.1=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - - docutils=0.20.1=py39h2804cbe_2 + - docutils=0.20.1=py39h2804cbe_3 - eclib=20230424=haeb5157_0 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 @@ -189,12 +191,12 @@ dependencies: - jupyterlab_widgets=3.0.9=pyhd8ed1ab_0 - kiwisolver=1.4.5=py39hbd775c9_1 - lcalc=2.0.5=hc94e8e6_1 - - ld64_osx-arm64=609=h297e91e_13 + - ld64_osx-arm64=609=hc4dc95b_15 - libblas=3.9.0=20_osxarm64_openblas - - libclang-cpp16=16.0.1=default_he7141eb_0 + - libclang-cpp15=15.0.7=default_hd209bcb_4 - libcurl=8.1.2=h912dcd9_0 - libgd=2.3.3=h90fb8ed_4 - - llvm-tools=16.0.1=h1e5164c_0 + - llvm-tools=15.0.7=h62b9111_1 - markupsafe=2.1.3=py39h0f82c59_1 - maxima=5.45.0=h6032a66_2 - mistune=3.0.2=pyhd8ed1ab_0 @@ -211,6 +213,7 @@ dependencies: - pillow=9.4.0=py39h8bd98a6_1 - 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 @@ -230,9 +233,9 @@ dependencies: - python-tzdata=2023.3=pyhd8ed1ab_0 - pytz=2023.3.post1=pyhd8ed1ab_0 - pyyaml=6.0.1=py39h0f82c59_1 - - pyzmq=25.1.1=py39he0a3c8b_2 + - pyzmq=25.1.2=py39he1e2164_0 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.13.1=py39h8fec3ad_0 + - rpds-py=0.13.2=py39h8fec3ad_0 - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 - sagetex=3.6.1=pyhd8ed1ab_0 - setuptools=68.2.2=pyhd8ed1ab_0 @@ -246,8 +249,8 @@ dependencies: - sympow=2.023.6=hb0babe8_3 - tomli=2.0.1=pyhd8ed1ab_0 - tornado=6.3.3=py39h0f82c59_1 - - traitlets=5.13.0=pyhd8ed1ab_0 - - trove-classifiers=2023.11.22=pyhd8ed1ab_0 + - traitlets=5.14.0=pyhd8ed1ab_0 + - trove-classifiers=2023.11.29=pyhd8ed1ab_0 - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 - typing_extensions=4.8.0=pyha770c72_0 - typing_utils=0.1.0=pyhd8ed1ab_0 @@ -258,7 +261,7 @@ dependencies: - wcwidth=0.2.12=pyhd8ed1ab_0 - webcolors=1.13=pyhd8ed1ab_0 - webencodings=0.5.1=pyhd8ed1ab_2 - - websocket-client=1.6.4=pyhd8ed1ab_0 + - websocket-client=1.7.0=pyhd8ed1ab_0 - wheel=0.42.0=pyhd8ed1ab_0 - widgetsnbextension=4.0.9=pyhd8ed1ab_0 - zipp=3.17.0=pyhd8ed1ab_0 @@ -270,23 +273,24 @@ dependencies: - 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=h7a0f565_13 + - cctools_osx-arm64=973.0.1=h2a25c60_15 - cffi=1.16.0=py39he153c15_0 - - clang-16=16.0.1=default_he7141eb_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.45.1=py39h17cfd9d_0 + - fonttools=4.46.0=py39h17cfd9d_0 - harfbuzz=6.0.0=hddbc195_0 - - importlib-metadata=6.8.0=pyha770c72_0 + - importlib-metadata=7.0.0=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.0=py39h2804cbe_0 - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 - - ld64=609=h634c8be_13 + - ld64=609=h89fa09d_15 - libcblas=3.9.0=20_osxarm64_openblas - liblapack=3.9.0=20_osxarm64_openblas - matplotlib-inline=0.1.6=pyhd8ed1ab_0 @@ -294,8 +298,7 @@ dependencies: - overrides=7.4.0=pyhd8ed1ab_0 - pexpect=4.8.0=pyh1a96a4e_2 - pip=23.3.1=pyhd8ed1ab_0 - - platformdirs=4.0.0=pyhd8ed1ab_0 - - pplpy=0.8.7=py39h1364912_0 + - pplpy=0.8.9=py39haf103f8_0 - primecountpy=0.1.0=py39hbd775c9_4 - prompt-toolkit=3.0.24=pyha770c72_0 - pybind11=2.11.1=py39hbd775c9_2 @@ -303,7 +306,7 @@ dependencies: - pyproject-api=1.6.1=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - pytz-deprecation-shim=0.1.0.post0=py39h2804cbe_4 - - referencing=0.31.0=pyhd8ed1ab_0 + - referencing=0.31.1=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - sagemath-db-conway-polynomials=0.5.0=h4653dfc_1 - sympy=1.12=pypyh9d50eac_103 @@ -311,11 +314,12 @@ dependencies: - tinycss2=1.2.1=pyhd8ed1ab_0 - typing-extensions=4.8.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=h4faf515_13 - - clang=16.0.1=h1e5164c_0 + - cctools=973.0.1=hd1ac623_15 + - clang=15.0.7=haab561b_4 - dsdp=5.8=h9397a75_1203 - fflas-ffpack=2.4.3=h11f2abc_2 - fqdn=1.5.1=pyhd8ed1ab_0 @@ -323,9 +327,8 @@ dependencies: - hatchling=1.18.0=pyhd8ed1ab_0 - iml=1.0.5=hd52f0d1_1003 - importlib-resources=6.1.1=pyhd8ed1ab_0 - - importlib_metadata=6.8.0=hd8ed1ab_0 - - jsonschema-specifications=2023.11.1=pyhd8ed1ab_0 - - jupyter_core=5.5.0=py39h2804cbe_0 + - importlib_metadata=7.0.0=hd8ed1ab_0 + - jsonschema-specifications=2023.11.2=pyhd8ed1ab_0 - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1 - liblapacke=3.9.0=20_osxarm64_openblas - numpy=1.26.2=py39heee92a0_0 @@ -336,10 +339,9 @@ dependencies: - setuptools-scm=8.0.4=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 - suitesparse=5.10.1=h7cd81ec_1 - - virtualenv=20.24.7=pyhd8ed1ab_0 - argon2-cffi=23.1.0=pyhd8ed1ab_0 - blas-devel=3.9.0=20_osxarm64_openblas - - clangxx=16.0.1=default_ha0f6327_0 + - clangxx=15.0.7=default_h5c94ee4_4 - contourpy=1.2.0=py39he9de807_0 - cvxopt=1.3.2=py39h76eeb2c_1 - fpylll=0.6.0=py39h947550b_1 @@ -353,37 +355,42 @@ dependencies: - scipy=1.11.4=py39h36c428d_0 - send2trash=1.8.2=pyhd1c38e8_0 - setuptools_scm=8.0.4=hd8ed1ab_0 - - tox=4.11.3=pyhd8ed1ab_0 + - tox=4.11.4=pyhd8ed1ab_0 - blas=2.120=openblas - - compiler-rt_osx-arm64=16.0.1=h30b49de_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 - rw=0.9=h3422bc3_0 - - compiler-rt=16.0.1=h30b49de_0 + - compiler-rt=15.0.7=h3808999_2 - 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_osx-arm64=16.0.1=hdccda30_1 - - nbconvert-core=7.11.0=pyhd8ed1ab_0 - - clangxx_osx-arm64=16.0.1=h0c1d50e_1 + - clang_impl_osx-arm64=15.0.7=h77e971b_6 + - nbconvert-core=7.12.0=pyhd8ed1ab_0 + - clang_osx-arm64=15.0.7=h54d7cd3_6 + - jupyter_server=2.12.1=pyhd8ed1ab_0 + - nbconvert-pandoc=7.12.0=pyhd8ed1ab_0 + - c-compiler=1.6.0=hd291e01_0 + - clangxx_impl_osx-arm64=15.0.7=h768a7fd_6 - gfortran_osx-arm64=12.3.0=h57527a5_1 - - jupyter_server=2.10.1=pyhd8ed1ab_0 - - nbconvert-pandoc=7.11.0=pyhd8ed1ab_0 - - gfortran=12.3.0=h1ca8e4b_1 - - jupyter-lsp=2.2.0=pyhd8ed1ab_0 + - jupyter-lsp=2.2.1=pyhd8ed1ab_0 - jupyterlab_server=2.25.2=pyhd8ed1ab_0 - - nbconvert=7.11.0=pyhd8ed1ab_0 + - nbconvert=7.12.0=pyhd8ed1ab_0 - notebook-shim=0.2.3=pyhd8ed1ab_0 + - clangxx_osx-arm64=15.0.7=h77e971b_6 + - 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 - - fortran-compiler=1.6.0=h5a50232_0 - - jupyterlab=4.0.9=pyhd8ed1ab_0 + - compilers=1.6.0=hce30654_0 - rpy2=3.5.11=py39r41hf9b1952_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 diff --git a/src/environment-3.9-macos.yml b/src/environment-3.9-macos.yml index 5ad4dcc3708..d34f7c3ed68 100644 --- a/src/environment-3.9-macos.yml +++ b/src/environment-3.9-macos.yml @@ -1,13 +1,14 @@ # Generated by conda-lock. # platform: osx-64 -# input_hash: a8e0b2ac6ea93b07d880f6bcf37f95f1a4c7d6a2102f733dda4197ccd8908265 +# input_hash: 123881d0fb332973ee22953db00fab5eaf41b4792479a7dc62fde362eeb39a9a 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.22.1=h10d778d_0 + - c-ares=1.23.0=h10d778d_0 - ca-certificates=2023.11.17=h8857fd0_0 - cliquer=1.22=hbcb3906_0 - font-ttf-dejavu-sans-mono=2.37=hab24e00_0 @@ -33,7 +34,7 @@ dependencies: - libuv=1.46.0=h0c2f820_0 - libwebp-base=1.3.2=h0dc2134_0 - libzlib=1.2.13=h8a1eda9_5 - - llvm-openmp=17.0.5=hb6ac08f_0 + - llvm-openmp=17.0.6=hb6ac08f_0 - m4=1.4.18=haf1e3a3_1001 - make=4.3=h22f3db7_1 - mathjax=3.2.2=h694c41f_0 @@ -72,28 +73,29 @@ dependencies: - graphite2=1.3.13=h2e338ed_1001 - isl=0.25=hb486fe8_0 - lerc=4.0.0=hb486fe8_0 - - libbraiding=1.1=h2e338ed_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 - libxcb=1.15=hb7f2c08_0 - - libxml2=2.11.6=hc0ae0f7_0 + - libxml2=2.12.2=hc0ae0f7_0 - lrcalc=2.1=hf0c8a7f_5 - ncurses=6.4=h93d8f39_2 - ninja=1.11.1=hb8565cd_0 - openjdk=21.0.1=hf4d7fad_0 - - openssl=3.2.0=hd75f5a5_0 + - openssl=3.2.0=hd75f5a5_1 - pandoc=3.1.3=h9d075a6_0 - pari-seadata=0.0.20090618=0 - - pcre2=10.42=h0ad2156_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 @@ -112,9 +114,9 @@ dependencies: - libboost=1.83.0=hf44e908_0 - libedit=3.1.20191231=h0678c8f_2 - libgfortran=5.0.0=13_2_0_h97931a8_1 - - libglib=2.78.1=h198397b_1 + - libglib=2.78.1=h6d9ecee_0 - libhomfly=1.02r6=hc929b4f_0 - - libllvm16=16.0.6=he4b1e75_2 + - libllvm15=15.0.7=hbedff68_4 - libnghttp2=1.58.0=h64cf6d3_0 - libssh2=1.11.0=hd019ec5_0 - libtiff=4.6.0=h684deea_2 @@ -134,15 +136,15 @@ dependencies: - gap-core=4.12.2=hc16eb5f_3 - gfan=0.6.2=hd793b56_1003 - krb5=1.21.2=hb884880_0 - - lcms2=2.15=hd6ba6f3_3 - - ld64_osx-64=609=ha20a434_15 + - lcms2=2.16=ha2f27b4_0 + - ld64_osx-64=609=h0fd476b_15 - libboost-devel=1.83.0=h7728843_0 - libbrial=1.2.12=h8d08345_1 - - libclang-cpp16=16.0.6=default_h762fdd7_2 + - libclang-cpp15=15.0.7=default_h6b1ee41_4 - libflint=2.9.0=hfd2f71f_ntl_100 - libopenblas=0.3.25=openmp_hfef2a42_0 - libwebp=1.3.2=h44782d1_1 - - llvm-tools=16.0.6=he4b1e75_2 + - llvm-tools=15.0.7=hbedff68_4 - m4rie=20150908=h3f75d11_1001 - mpc=1.3.1=h81bd1dd_0 - mpfi=1.5.4=h52b28e3_1001 @@ -164,11 +166,11 @@ dependencies: - 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=ha1c5b94_15 + - cctools_osx-64=973.0.1=habff3f6_15 - certifi=2023.11.17=pyhd8ed1ab_0 - chardet=5.2.0=py39h6e9494a_1 - charset-normalizer=3.3.2=pyhd8ed1ab_0 - - clang-16=16.0.6=default_h762fdd7_2 + - clang-15=15.0.7=default_h6b1ee41_4 - colorama=0.4.6=pyhd8ed1ab_0 - cycler=0.12.1=pyhd8ed1ab_0 - cysignals=1.11.2=py39hf6ae30e_3 @@ -177,7 +179,7 @@ dependencies: - decorator=5.1.1=pyhd8ed1ab_0 - defusedxml=0.7.1=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - - docutils=0.20.1=py39h6e9494a_2 + - docutils=0.20.1=py39h6e9494a_3 - eclib=20230424=hd00e801_0 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 @@ -198,12 +200,12 @@ dependencies: - jupyterlab_widgets=3.0.9=pyhd8ed1ab_0 - kiwisolver=1.4.5=py39h8ee36c8_1 - lcalc=2.0.5=h3a941db_1 - - ld64=609=ha02d983_15 + - ld64=609=ha91a046_15 - libblas=3.9.0=20_osx64_openblas - - libcurl=8.4.0=h726d00d_0 + - libcurl=8.5.0=h726d00d_0 - libgd=2.3.3=h0dceb68_9 - markupsafe=2.1.3=py39hdc70f33_1 - - maxima=5.45.0=hd029580_3 + - maxima=5.46.0=h2b27fa8_0 - mistune=3.0.2=pyhd8ed1ab_0 - mpmath=1.3.0=pyhd8ed1ab_0 - munkres=1.1.4=pyh9f0ad1d_0 @@ -218,6 +220,7 @@ dependencies: - pillow=10.1.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 @@ -237,9 +240,9 @@ dependencies: - python-tzdata=2023.3=pyhd8ed1ab_0 - pytz=2023.3.post1=pyhd8ed1ab_0 - pyyaml=6.0.1=py39hdc70f33_1 - - pyzmq=25.1.1=py39h53dde38_2 + - pyzmq=25.1.2=py39hcb7a90d_0 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.13.1=py39h3f9c672_0 + - rpds-py=0.13.2=py39h3f9c672_0 - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 - sagetex=3.6.1=pyhd8ed1ab_0 - setuptools=68.2.2=pyhd8ed1ab_0 @@ -253,8 +256,8 @@ dependencies: - sympow=2.023.6=h115ba6a_3 - tomli=2.0.1=pyhd8ed1ab_0 - tornado=6.3.3=py39hdc70f33_1 - - traitlets=5.13.0=pyhd8ed1ab_0 - - trove-classifiers=2023.11.22=pyhd8ed1ab_0 + - traitlets=5.14.0=pyhd8ed1ab_0 + - trove-classifiers=2023.11.29=pyhd8ed1ab_0 - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 - typing_extensions=4.8.0=pyha770c72_0 - typing_utils=0.1.0=pyhd8ed1ab_0 @@ -265,7 +268,7 @@ dependencies: - wcwidth=0.2.12=pyhd8ed1ab_0 - webcolors=1.13=pyhd8ed1ab_0 - webencodings=0.5.1=pyhd8ed1ab_2 - - websocket-client=1.6.4=pyhd8ed1ab_0 + - websocket-client=1.7.0=pyhd8ed1ab_0 - wheel=0.42.0=pyhd8ed1ab_0 - widgetsnbextension=4.0.9=pyhd8ed1ab_0 - zipp=3.17.0=pyhd8ed1ab_0 @@ -277,21 +280,22 @@ dependencies: - beniget=0.4.1=pyhd8ed1ab_0 - bleach=6.1.0=pyhd8ed1ab_0 - cached-property=1.5.2=hd8ed1ab_1 - - cctools=973.0.1=h40f6528_15 + - cctools=973.0.1=hd9ad811_15 - cffi=1.16.0=py39h18ef598_0 - - clang=16.0.6=hc177806_2 - - cmake=3.27.8=hc7ee4c4_0 + - clang=15.0.7=hac416ee_4 + - cmake=3.28.0=hc7ee4c4_0 - comm=0.1.4=pyhd8ed1ab_0 - cppy=1.2.1=pyhd8ed1ab_0 - - curl=8.4.0=h726d00d_0 + - curl=8.5.0=h726d00d_0 - cypari2=2.1.3=py39he2cb11e_2 - deprecation=2.1.0=pyh9f0ad1d_0 - - fonttools=4.45.1=py39ha09f3b3_0 + - fonttools=4.46.0=py39ha09f3b3_0 - harfbuzz=8.3.0=hf45c392_0 - - importlib-metadata=6.8.0=pyha770c72_0 + - importlib-metadata=7.0.0=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.0=py39h6e9494a_0 - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 - libcblas=3.9.0=20_osx64_openblas - liblapack=3.9.0=20_osx64_openblas @@ -300,8 +304,7 @@ dependencies: - overrides=7.4.0=pyhd8ed1ab_0 - pexpect=4.8.0=pyh1a96a4e_2 - pip=23.3.1=pyhd8ed1ab_0 - - platformdirs=4.0.0=pyhd8ed1ab_0 - - pplpy=0.8.7=py39hb3e8af0_0 + - pplpy=0.8.9=py39h248ee18_0 - primecountpy=0.1.0=py39h8ee36c8_4 - prompt-toolkit=3.0.24=pyha770c72_0 - pybind11=2.11.1=py39h8ee36c8_2 @@ -309,7 +312,7 @@ dependencies: - pyproject-api=1.6.1=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - pytz-deprecation-shim=0.1.0.post0=py39h6e9494a_4 - - referencing=0.31.0=pyhd8ed1ab_0 + - referencing=0.31.1=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - sagemath-db-conway-polynomials=0.5.0=h033912b_1 - sympy=1.12=pypyh9d50eac_103 @@ -317,9 +320,10 @@ dependencies: - tinycss2=1.2.1=pyhd8ed1ab_0 - typing-extensions=4.8.0=hd8ed1ab_0 - urllib3=2.1.0=pyhd8ed1ab_0 + - virtualenv=20.25.0=pyhd8ed1ab_0 - argon2-cffi-bindings=21.2.0=py39hdc70f33_4 - arrow=1.3.0=pyhd8ed1ab_0 - - clangxx=16.0.6=default_h762fdd7_2 + - clangxx=15.0.7=default_h6b1ee41_4 - dsdp=5.8=h6e329d1_1203 - fflas-ffpack=2.4.3=h026fd7e_2 - fqdn=1.5.1=pyhd8ed1ab_0 @@ -327,9 +331,8 @@ dependencies: - hatchling=1.18.0=pyhd8ed1ab_0 - iml=1.0.5=h64b42ca_1003 - importlib-resources=6.1.1=pyhd8ed1ab_0 - - importlib_metadata=6.8.0=hd8ed1ab_0 - - jsonschema-specifications=2023.11.1=pyhd8ed1ab_0 - - jupyter_core=5.5.0=py39h6e9494a_0 + - importlib_metadata=7.0.0=hd8ed1ab_0 + - jsonschema-specifications=2023.11.2=pyhd8ed1ab_0 - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1 - liblapacke=3.9.0=20_osx64_openblas - numpy=1.26.2=py39h14c6d2e_0 @@ -340,10 +343,9 @@ dependencies: - setuptools-scm=8.0.4=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 - suitesparse=5.10.1=h7aff33d_1 - - virtualenv=20.24.7=pyhd8ed1ab_0 - argon2-cffi=23.1.0=pyhd8ed1ab_0 - blas-devel=3.9.0=20_osx64_openblas - - compiler-rt_osx-64=16.0.6=he1888fc_1 + - compiler-rt_osx-64=15.0.7=ha38d28d_2 - contourpy=1.2.0=py39h6be1789_0 - cvxopt=1.3.2=py39h2a3e123_1 - fpylll=0.6.0=py39hec15948_1 @@ -356,35 +358,38 @@ dependencies: - scipy=1.11.4=py39ha321857_0 - send2trash=1.8.2=pyhd1c38e8_0 - setuptools_scm=8.0.4=hd8ed1ab_0 - - tox=4.11.3=pyhd8ed1ab_0 + - tox=4.11.4=pyhd8ed1ab_0 - blas=2.120=openblas - - compiler-rt=16.0.6=he1888fc_1 + - 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 - - clang_impl_osx-64=16.0.6=h8787910_6 + - clang_impl_osx-64=15.0.7=h03d6864_6 - 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=16.0.6=hb91bd55_6 - - nbconvert-core=7.11.0=pyhd8ed1ab_0 - - clangxx_impl_osx-64=16.0.6=h1b7723c_6 + - clang_osx-64=15.0.7=hb91bd55_6 + - nbconvert-core=7.12.0=pyhd8ed1ab_0 + - c-compiler=1.6.0=h63c33a9_0 + - clangxx_impl_osx-64=15.0.7=h3d2d1bf_6 - gfortran_osx-64=12.3.0=h18f7dce_1 - - jupyter_server=2.10.1=pyhd8ed1ab_0 - - nbconvert-pandoc=7.11.0=pyhd8ed1ab_0 - - clangxx_osx-64=16.0.6=h2fff7d5_6 + - jupyter_server=2.12.1=pyhd8ed1ab_0 + - nbconvert-pandoc=7.12.0=pyhd8ed1ab_0 + - clangxx_osx-64=15.0.7=h655633e_6 - gfortran=12.3.0=h2c809b3_1 - - jupyter-lsp=2.2.0=pyhd8ed1ab_0 + - jupyter-lsp=2.2.1=pyhd8ed1ab_0 - jupyterlab_server=2.25.2=pyhd8ed1ab_0 - - nbconvert=7.11.0=pyhd8ed1ab_0 + - nbconvert=7.12.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.2=h8eaf9e6_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 diff --git a/src/environment-dev-3.10-linux-aarch64.yml b/src/environment-dev-3.10-linux-aarch64.yml index 6086bede397..2fe79592400 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: fccea3cfecb5c0d099045becb55199859eb1a13e71362f54f179819052dfcb14 +# input_hash: 375fe24c4a34c0121f52876f9e44c4a225b5c3b792acbe0066d3549f2fa4521b channels: - conda-forge @@ -12,7 +12,7 @@ dependencies: - 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.39.1=h652cbe9_0 + - gh=2.39.2=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 @@ -43,9 +43,10 @@ dependencies: - 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 - bdw-gc=8.0.6=hd62202e_0 - bzip2=1.0.8=h31becfc_5 - - c-ares=1.22.1=h31becfc_0 + - c-ares=1.23.0=h31becfc_0 - cliquer=1.22=hb9de7d4_0 - fribidi=1.0.10=hb9de7d4_0 - gengetopt=2.23=h01db608_0 @@ -59,7 +60,7 @@ dependencies: - keyutils=1.6.1=h4e544f5_0 - lerc=4.0.0=h4de3ea5_0 - libatomic_ops=7.6.14=h4e544f5_0 - - libbraiding=1.1=h7fd3ca4_0 + - libbraiding=1.2=hd600fc2_0 - libbrotlicommon=1.1.0=h31becfc_1 - libcbor=0.9.0=h01db608_0 - libdeflate=1.17=hb4cce97_0 @@ -83,7 +84,7 @@ dependencies: - nauty=2.7.2=hf897c2e_0 - ncurses=6.4=h0425590_2 - ninja=1.11.1=hdd96247_0 - - openssl=3.2.0=h31becfc_0 + - openssl=3.2.0=h31becfc_1 - palp=2.20=hb9de7d4_0 - patch=2.7.6=hf897c2e_1002 - pixman=0.42.2=h2f0025b_0 @@ -130,6 +131,7 @@ dependencies: - perl=5.32.1=4_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 @@ -156,7 +158,7 @@ dependencies: - libopenblas=0.3.25=pthreads_h5a5ec62_0 - libtiff=4.5.0=h4c1066a_2 - libudev1=254=h31becfc_0 - - llvm-openmp=17.0.5=h8b0cb96_0 + - llvm-openmp=17.0.6=h8b0cb96_0 - m4ri=20140914=h75e8696_1005 - mpc=1.3.1=hf4c8f4c_0 - mpfi=1.5.4=h846f343_1001 @@ -181,18 +183,22 @@ dependencies: - 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 - charset-normalizer=3.3.2=pyhd8ed1ab_0 + - click=8.1.7=unix_pyh707e725_0 - colorama=0.4.6=pyhd8ed1ab_0 + - crashtest=0.4.1=pyhd8ed1ab_0 - cycler=0.12.1=pyhd8ed1ab_0 - cysignals=1.11.2=py310h485802a_3 - cython=3.0.6=py310hbb3657e_0 + - dbus=1.13.6=h12b9eeb_3 - debugpy=1.8.0=py310hbb3657e_1 - decorator=5.1.1=pyhd8ed1ab_0 - defusedxml=0.7.1=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - - docutils=0.20.1=py310hbbe02a8_2 + - docutils=0.20.1=py310hbbe02a8_3 - eclib=20230424=h0bc7b0f_0 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 @@ -208,11 +214,13 @@ dependencies: - 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 @@ -227,9 +235,11 @@ dependencies: - libwebp=1.2.4=h7bdf6e5_1 - m4rie=20150908=h75e8696_1001 - markupsafe=2.1.3=py310h7c1f4a2_1 - - maxima=5.45.0=haa44c19_3 + - maxima=5.46.0=h6475f26_0 - 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 - networkx=3.2.1=pyhd8ed1ab_0 @@ -238,10 +248,13 @@ dependencies: - 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.11.2=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 @@ -253,6 +266,7 @@ dependencies: - 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 @@ -263,9 +277,10 @@ dependencies: - python-tzdata=2023.3=pyhd8ed1ab_0 - pytz=2023.3.post1=pyhd8ed1ab_0 - pyyaml=6.0.1=py310hb299538_1 - - pyzmq=25.1.1=py310h014ca53_2 + - pyzmq=25.1.2=py310h014ca53_0 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.13.1=py310h057607a_0 + - rpds-py=0.13.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 @@ -273,6 +288,7 @@ dependencies: - simplegeneric=0.8.1=py_1 - singular=4.2.1.p3=h3d4c4c6_2 - 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 @@ -280,9 +296,11 @@ dependencies: - 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.13.0=pyhd8ed1ab_0 - - trove-classifiers=2023.11.22=pyhd8ed1ab_0 + - traitlets=5.14.0=pyhd8ed1ab_0 + - trove-classifiers=2023.11.29=pyhd8ed1ab_0 - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 - typing_extensions=4.8.0=pyha770c72_0 - typing_utils=0.1.0=pyhd8ed1ab_0 @@ -293,7 +311,7 @@ dependencies: - wcwidth=0.2.12=pyhd8ed1ab_0 - webcolors=1.13=pyhd8ed1ab_0 - webencodings=0.5.1=pyhd8ed1ab_2 - - websocket-client=1.6.4=pyhd8ed1ab_0 + - websocket-client=1.7.0=pyhd8ed1ab_0 - wheel=0.42.0=pyhd8ed1ab_0 - widgetsnbextension=4.0.9=pyhd8ed1ab_0 - xorg-libxext=1.3.4=h2a766a3_2 @@ -312,18 +330,25 @@ dependencies: - 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 + - cxx-compiler=1.6.0=h2a328a1_0 - cypari2=2.1.3=py310h4cbba44_2 - deprecation=2.1.0=pyh9f0ad1d_0 - - fonttools=4.45.1=py310hb299538_0 + - fonttools=4.46.0=py310hb299538_0 - fortran-compiler=1.6.0=h7048d53_0 - - importlib-metadata=6.8.0=pyha770c72_0 + - gitdb=4.0.11=pyhd8ed1ab_0 + - html5lib=1.1=pyh9f0ad1d_0 + - importlib-metadata=7.0.0=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.0=py310h4c7bcd0_0 - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 - libcblas=3.9.0=20_linuxaarch64_openblas - libgd=2.3.3=h99c6b3b_4 @@ -335,8 +360,7 @@ dependencies: - pexpect=4.8.0=pyh1a96a4e_2 - pillow=9.4.0=py310h2843b5e_1 - pip=23.3.1=pyhd8ed1ab_0 - - platformdirs=4.0.0=pyhd8ed1ab_0 - - pplpy=0.8.7=py310hd5c817c_0 + - pplpy=0.8.9=py310hd5c817c_0 - primecountpy=0.1.0=py310h586407a_4 - prompt-toolkit=3.0.24=pyha770c72_0 - pybind11=2.11.1=py310h586407a_2 @@ -344,46 +368,53 @@ dependencies: - pytest=7.4.3=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - pytz-deprecation-shim=0.1.0.post0=py310h4c7bcd0_4 - - referencing=0.31.0=pyhd8ed1ab_0 + - referencing=0.31.1=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 + - ruamel.yaml=0.18.5=py310hb299538_0 - sagemath-db-conway-polynomials=0.5.0=h4fd8a4c_1 - sympy=1.12=pypyh9d50eac_103 - terminado=0.18.0=pyh0d859eb_0 - tinycss2=1.2.1=pyhd8ed1ab_0 - typing-extensions=4.8.0=hd8ed1ab_0 - - urllib3=2.1.0=pyhd8ed1ab_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.2=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 - 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.18.0=pyhd8ed1ab_0 - iml=1.0.5=h9076c59_1003 - importlib-resources=6.1.1=pyhd8ed1ab_0 - - importlib_metadata=6.8.0=hd8ed1ab_0 - - jsonschema-specifications=2023.11.1=pyhd8ed1ab_0 - - jupyter_core=5.5.0=py310h4c7bcd0_0 + - importlib_metadata=7.0.0=hd8ed1ab_0 + - jsonschema-specifications=2023.11.2=pyhd8ed1ab_0 - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1 - liblapacke=3.9.0=20_linuxaarch64_openblas - numpy=1.26.2=py310hcbab775_0 - prompt_toolkit=3.0.24=hd8ed1ab_0 + - pydantic-core=2.14.5=py310hfd680ee_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 - - virtualenv=20.24.7=pyhd8ed1ab_0 - 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 - giac=1.9.0.21=h04922a4_1 - igraph=0.9.10=hefb87a8_1 @@ -395,35 +426,40 @@ dependencies: - 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.3=pyhd8ed1ab_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.0=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 - 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.11.0=pyhd8ed1ab_0 - - jupyter_server=2.10.1=pyhd8ed1ab_0 - - nbconvert-pandoc=7.11.0=pyhd8ed1ab_0 - - jupyter-lsp=2.2.0=pyhd8ed1ab_0 + - nbconvert-core=7.12.0=pyhd8ed1ab_0 + - jupyter_server=2.12.1=pyhd8ed1ab_0 + - nbconvert-pandoc=7.12.0=pyhd8ed1ab_0 + - jupyter-lsp=2.2.1=pyhd8ed1ab_0 - jupyterlab_server=2.25.2=pyhd8ed1ab_0 - - nbconvert=7.11.0=pyhd8ed1ab_0 + - nbconvert=7.12.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.2=pyhd8ed1ab_0 + - esbonio=0.16.3=pyhd8ed1ab_0 - jupyter_sphinx=0.1.4=py_0 - sphinx-basic-ng=1.0.0b2=pyhd8ed1ab_1 - furo=2023.9.10=pyhd8ed1ab_0 diff --git a/src/environment-dev-3.10-linux.yml b/src/environment-dev-3.10-linux.yml index 85e2d6ebbb4..b26eea131a9 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: 3bcc71420f123cb056f864915177a9014519e1618fa7c52a7e6f089c93809c13 +# input_hash: 1cc348691c9758ac6709380ff0d372c1fcdb69cb5caebc5464851253f89eff62 channels: - conda-forge @@ -12,7 +12,7 @@ dependencies: - 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.39.1=ha8f183a_0 + - gh=2.39.2=ha8f183a_0 - kernel-headers_linux-64=2.6.32=he073ed8_16 - ld_impl_linux-64=2.40=h41732ed_0 - libboost-headers=1.83.0=ha770c72_0 @@ -43,9 +43,10 @@ dependencies: - 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 - bdw-gc=8.0.6=h4bd325d_0 - bzip2=1.0.8=hd590300_5 - - c-ares=1.22.1=hd590300_0 + - c-ares=1.23.0=hd590300_0 - cliquer=1.22=h36c2ea0_0 - fribidi=1.0.10=h36c2ea0_0 - gengetopt=2.23=h9c3ff4c_0 @@ -59,7 +60,7 @@ dependencies: - lame=3.100=h166bdaf_1003 - lerc=4.0.0=h27087fc_0 - libatomic_ops=7.6.14=h166bdaf_0 - - libbraiding=1.1=h58526e2_0 + - libbraiding=1.2=hcb278e6_0 - libbrotlicommon=1.1.0=hd590300_1 - libcbor=0.10.2=hcb278e6_0 - libdeflate=1.19=hd590300_0 @@ -89,7 +90,7 @@ dependencies: - ncurses=6.4=h59595ed_2 - ninja=1.11.1=h924138e_0 - nspr=4.35=h27087fc_0 - - openssl=3.2.0=hd590300_0 + - openssl=3.1.4=hd590300_0 - palp=2.20=h36c2ea0_0 - patch=2.7.6=h7f98852_1002 - pixman=0.42.2=h59595ed_0 @@ -142,6 +143,7 @@ dependencies: - perl=5.32.1=4_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 @@ -164,7 +166,7 @@ dependencies: - krb5=1.21.2=h659d440_0 - libboost=1.83.0=h6fcfa73_0 - libflint=2.9.0=h2f819a4_ntl_100 - - libgcrypt=1.10.2=hd590300_0 + - libgcrypt=1.10.3=hd590300_0 - libglib=2.78.1=hebfc3b9_0 - libhwloc=2.9.3=default_h554bfaf_1009 - libllvm15=15.0.7=h5cf9203_3 @@ -172,12 +174,12 @@ dependencies: - libsndfile=1.2.2=hc60ed4a_1 - libtiff=4.6.0=ha9c0a0a_2 - libudev1=254=h3f72095_0 - - llvm-openmp=17.0.5=h4dfa4b3_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.94=h1d7d5a4_0 + - nss=3.95=h1d7d5a4_0 - pandoc=3.1.3=h32600fe_0 - pari=2.15.4=h4d4ae9b_2_pthread - ppl=1.2=h6ec01c2_1006 @@ -204,10 +206,13 @@ dependencies: - 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 - charset-normalizer=3.3.2=pyhd8ed1ab_0 + - click=8.1.7=unix_pyh707e725_0 - colorama=0.4.6=pyhd8ed1ab_0 + - crashtest=0.4.1=pyhd8ed1ab_0 - cycler=0.12.1=pyhd8ed1ab_0 - cysignals=1.11.2=py310h945e7c7_3 - cython=3.0.6=py310hc6cd4ac_0 @@ -216,7 +221,7 @@ dependencies: - decorator=5.1.1=pyhd8ed1ab_0 - defusedxml=0.7.1=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - - docutils=0.20.1=py310hff52083_2 + - docutils=0.20.1=py310hff52083_3 - eclib=20230424=hdef1efb_0 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 @@ -233,21 +238,23 @@ dependencies: - gfortran_linux-64=12.3.0=h7fe76b4_2 - glib-tools=2.78.1=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 - kiwisolver=1.4.5=py310hd41b1e2_1 - lcalc=2.0.5=h6a8a7c6_1 - - lcms2=2.15=hb7c19ff_3 + - lcms2=2.16=hb7c19ff_0 - libblas=3.9.0=20_linux64_openblas - libboost-devel=1.83.0=h00ab1b0_0 - libbrial=1.2.12=h3155cbd_1 - - libclang13=15.0.7=default_h9986a30_3 + - libclang13=15.0.7=default_ha2b6cf4_4 - libcups=2.3.3=h4637d8d_4 - libcurl=8.4.0=hca28451_0 - libfido2=1.14.0=h4446dcb_0 @@ -256,9 +263,11 @@ dependencies: - libwebp=1.3.2=h658648e_1 - m4rie=20150908=h7ca028e_1001 - markupsafe=2.1.3=py310h2372a71_1 - - maxima=5.45.0=h9d73b02_3 + - maxima=5.46.0=hed6455c_0 - 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 - networkx=3.2.1=pyhd8ed1ab_0 @@ -267,10 +276,13 @@ dependencies: - 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.11.2=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 @@ -282,6 +294,7 @@ dependencies: - 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 @@ -292,9 +305,10 @@ dependencies: - python-tzdata=2023.3=pyhd8ed1ab_0 - pytz=2023.3.post1=pyhd8ed1ab_0 - pyyaml=6.0.1=py310h2372a71_1 - - pyzmq=25.1.1=py310h795f18f_2 + - pyzmq=25.1.2=py310h795f18f_0 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.13.1=py310hcb5633a_0 + - rpds-py=0.13.2=py310hcb5633a_0 + - ruamel.yaml.clib=0.2.7=py310h2372a71_2 - rw=0.8=h516909a_1001 - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 - sagetex=3.6.1=pyhd8ed1ab_0 @@ -303,6 +317,7 @@ dependencies: - simplegeneric=0.8.1=py_1 - singular=4.2.1.p3=h1ea75ed_2 - 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 @@ -311,9 +326,11 @@ dependencies: - tbb=2021.10.0=h00ab1b0_2 - 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.13.0=pyhd8ed1ab_0 - - trove-classifiers=2023.11.22=pyhd8ed1ab_0 + - traitlets=5.14.0=pyhd8ed1ab_0 + - trove-classifiers=2023.11.29=pyhd8ed1ab_0 - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 - typing_extensions=4.8.0=pyha770c72_0 - typing_utils=0.1.0=pyhd8ed1ab_0 @@ -324,7 +341,7 @@ dependencies: - wcwidth=0.2.12=pyhd8ed1ab_0 - webcolors=1.13=pyhd8ed1ab_0 - webencodings=0.5.1=pyhd8ed1ab_2 - - websocket-client=1.6.4=pyhd8ed1ab_0 + - websocket-client=1.7.0=pyhd8ed1ab_0 - wheel=0.42.0=pyhd8ed1ab_0 - widgetsnbextension=4.0.9=pyhd8ed1ab_0 - xcb-util-image=0.4.0=h8ee46fc_1 @@ -346,22 +363,29 @@ dependencies: - cached-property=1.5.2=hd8ed1ab_1 - cairo=1.18.0=h3faef2a_0 - cffi=1.16.0=py310h2fee648_0 - - cmake=3.27.8=hcfe8598_0 + - click-default-group=1.2.4=pyhd8ed1ab_0 + - clikit=0.6.2=pyhd8ed1ab_2 + - cmake=3.27.9=hcfe8598_0 - comm=0.1.4=pyhd8ed1ab_0 - cppy=1.2.1=pyhd8ed1ab_0 - curl=8.4.0=hca28451_0 + - cxx-compiler=1.6.0=h00ab1b0_0 - cypari2=2.1.3=py310h14ed79e_2 - deprecation=2.1.0=pyh9f0ad1d_0 - - fonttools=4.45.1=py310h2372a71_0 + - fonttools=4.46.0=py310h2372a71_0 - fortran-compiler=1.6.0=heb67821_0 + - gitdb=4.0.11=pyhd8ed1ab_0 - glib=2.78.1=hfc55251_0 - - importlib-metadata=6.8.0=pyha770c72_0 + - html5lib=1.1=pyh9f0ad1d_0 + - importlib-metadata=7.0.0=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.0=py310hff52083_0 - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 - libcblas=3.9.0=20_linux64_openblas - - libclang=15.0.7=default_h7634d5b_3 + - 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 @@ -372,8 +396,7 @@ dependencies: - pexpect=4.8.0=pyh1a96a4e_2 - pillow=10.1.0=py310h01dd4db_0 - pip=23.3.1=pyhd8ed1ab_0 - - platformdirs=4.0.0=pyhd8ed1ab_0 - - pplpy=0.8.7=py310h28f6eb6_0 + - pplpy=0.8.9=py310h28f6eb6_0 - primecountpy=0.1.0=py310hd41b1e2_4 - prompt-toolkit=3.0.24=pyha770c72_0 - pulseaudio-client=16.1=hb77b528_5 @@ -382,48 +405,55 @@ dependencies: - pytest=7.4.3=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - pytz-deprecation-shim=0.1.0.post0=py310hff52083_4 - - referencing=0.31.0=pyhd8ed1ab_0 + - referencing=0.31.1=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 + - ruamel.yaml=0.18.5=py310h2372a71_0 - sagemath-db-conway-polynomials=0.5.0=ha878542_1 - 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.8.0=hd8ed1ab_0 - - urllib3=2.1.0=pyhd8ed1ab_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 - arrow=1.3.0=pyhd8ed1ab_0 - - cattrs=23.2.2=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.42.0=pl5321h86e50cf_0 + - gitpython=3.1.40=pyhd8ed1ab_0 - gsl=2.7=he838d99_0 - gstreamer=1.22.7=h98fc4e7_0 - harfbuzz=8.3.0=h3d44ed6_0 - hatchling=1.18.0=pyhd8ed1ab_0 - iml=1.0.5=hd75c201_1003 - importlib-resources=6.1.1=pyhd8ed1ab_0 - - importlib_metadata=6.8.0=hd8ed1ab_0 - - jsonschema-specifications=2023.11.1=pyhd8ed1ab_0 - - jupyter_core=5.5.0=py310hff52083_0 + - importlib_metadata=7.0.0=hd8ed1ab_0 + - jsonschema-specifications=2023.11.2=pyhd8ed1ab_0 - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1 - liblapacke=3.9.0=20_linux64_openblas - numpy=1.26.2=py310hb13e2d6_0 - prompt_toolkit=3.0.24=hd8ed1ab_0 + - pydantic-core=2.14.5=py310hcb5633a_0 - pyqt5-sip=12.12.2=py310hc6cd4ac_5 - 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=h9e50725_1 - - virtualenv=20.24.7=pyhd8ed1ab_0 - 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 - giac=1.9.0.21=h673759e_1 - gst-plugins-base=1.22.7=h8e1006c_0 @@ -435,36 +465,41 @@ dependencies: - 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.3=pyhd8ed1ab_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.0=pyhd8ed1ab_0 + - pygls=1.2.1=pyhd8ed1ab_0 - qt-main=5.15.8=h82b777d_17 - r-base=4.3.2=h93585b2_0 + - conda-lock=2.5.1=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.11.0=pyhd8ed1ab_0 - - jupyter_server=2.10.1=pyhd8ed1ab_0 - - nbconvert-pandoc=7.11.0=pyhd8ed1ab_0 - - jupyter-lsp=2.2.0=pyhd8ed1ab_0 + - nbconvert-core=7.12.0=pyhd8ed1ab_0 + - jupyter_server=2.12.1=pyhd8ed1ab_0 + - nbconvert-pandoc=7.12.0=pyhd8ed1ab_0 + - jupyter-lsp=2.2.1=pyhd8ed1ab_0 - jupyterlab_server=2.25.2=pyhd8ed1ab_0 - - nbconvert=7.11.0=pyhd8ed1ab_0 + - nbconvert=7.12.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.2=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 diff --git a/src/environment-dev-3.10-macos-arm64.yml b/src/environment-dev-3.10-macos-arm64.yml index a842d1d2639..ec792a668e0 100644 --- a/src/environment-dev-3.10-macos-arm64.yml +++ b/src/environment-dev-3.10-macos-arm64.yml @@ -1,13 +1,14 @@ # Generated by conda-lock. # platform: osx-arm64 -# input_hash: 1b894305985e14d9c09b90b4013afbde426e015256620bce53041a1a5dd759a7 +# input_hash: d65e398e49f606bc32f5211282171eccd79fd0276ee1b6ed49dbd9bb1dff4146 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.22.1=h93a5062_0 + - c-ares=1.23.0=h93a5062_0 - ca-certificates=2023.11.17=hf0a4a13_0 - cliquer=1.22=h27ca646_0 - font-ttf-dejavu-sans-mono=2.37=hab24e00_0 @@ -15,7 +16,7 @@ dependencies: - font-ttf-source-code-pro=2.038=h77eed37_0 - font-ttf-ubuntu=0.83=h77eed37_1 - fribidi=1.0.10=h27ca646_0 - - gh=2.39.1=h75b854d_0 + - gh=2.39.2=h75b854d_0 - giflib=5.2.1=h1a8c8d9_3 - jpeg=9e=h1a8c8d9_3 - libatomic_ops=7.6.14=h1a8c8d9_0 @@ -32,7 +33,7 @@ dependencies: - libuv=1.46.0=hb547adb_0 - libwebp-base=1.2.4=h1a8c8d9_0 - libzlib=1.2.13=h53f4e23_5 - - llvm-openmp=17.0.5=hcd81f8e_0 + - llvm-openmp=17.0.6=hcd81f8e_0 - m4=1.4.18=h642e427_1001 - make=4.3=he57ea6c_1 - mathjax=3.2.2=hce30654_0 @@ -72,7 +73,7 @@ dependencies: - icu=70.1=h6b3803e_0 - isl=0.25=h9a09cb3_0 - lerc=4.0.0=h9a09cb3_0 - - libbraiding=1.1=h9f76cd9_0 + - libbraiding=1.2=hb7217d7_0 - libbrotlidec=1.1.0=hb547adb_1 - libbrotlienc=1.1.0=hb547adb_1 - libcbor=0.10.2=hb7217d7_0 @@ -84,7 +85,7 @@ dependencies: - ncurses=6.4=h463b476_2 - ninja=1.11.1=hffc8910_0 - openjdk=21.0.1=hed44d8b_0 - - openssl=3.2.0=h0d3ecfb_0 + - openssl=3.2.0=h0d3ecfb_1 - pari-seadata=0.0.20090618=0 - pcre2=10.40=hb34f9b4_0 - pixman=0.42.2=h13dd4ca_0 @@ -92,6 +93,7 @@ dependencies: - 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 @@ -136,7 +138,7 @@ dependencies: - lcms2=2.15=h481adae_0 - libbrial=1.2.12=ha7f5006_1 - libflint=2.9.0=h173eafc_ntl_100 - - libllvm16=16.0.1=h1e5164c_0 + - libllvm15=15.0.7=h62b9111_1 - libopenblas=0.3.25=openmp_h6c19121_0 - libwebp=1.2.4=h999c80f_1 - m4rie=20150908=h17b34a0_1001 @@ -159,11 +161,14 @@ dependencies: - 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 - charset-normalizer=3.3.2=pyhd8ed1ab_0 + - click=8.1.7=unix_pyh707e725_0 - colorama=0.4.6=pyhd8ed1ab_0 + - crashtest=0.4.1=pyhd8ed1ab_0 - cycler=0.12.1=pyhd8ed1ab_0 - cysignals=1.11.2=py310hfd3b3fe_3 - cython=3.0.6=py310hd5a4765_0 @@ -171,7 +176,7 @@ dependencies: - decorator=5.1.1=pyhd8ed1ab_0 - defusedxml=0.7.1=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - - docutils=0.20.1=py310hbe9552e_2 + - docutils=0.20.1=py310hbe9552e_3 - eclib=20230424=haeb5157_0 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 @@ -194,16 +199,18 @@ dependencies: - jupyterlab_widgets=3.0.9=pyhd8ed1ab_0 - kiwisolver=1.4.5=py310h38f39d4_1 - lcalc=2.0.5=hc94e8e6_1 - - ld64_osx-arm64=609=h297e91e_13 + - ld64_osx-arm64=609=hc4dc95b_15 - libblas=3.9.0=20_osxarm64_openblas - - libclang-cpp16=16.0.1=default_he7141eb_0 + - libclang-cpp15=15.0.7=default_hd209bcb_4 - libcurl=8.1.2=h912dcd9_0 - libgd=2.3.3=h90fb8ed_4 - - llvm-tools=16.0.1=h1e5164c_0 + - llvm-tools=15.0.7=h62b9111_1 - markupsafe=2.1.3=py310h2aa6e3c_1 - 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 - networkx=3.2.1=pyhd8ed1ab_0 @@ -212,11 +219,14 @@ dependencies: - 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.11.2=pyhd8ed1ab_0 - pickleshare=0.7.5=py_1003 - pillow=9.4.0=py310h5a7539a_1 - 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 @@ -228,6 +238,7 @@ dependencies: - 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 @@ -238,24 +249,28 @@ dependencies: - python-tzdata=2023.3=pyhd8ed1ab_0 - pytz=2023.3.post1=pyhd8ed1ab_0 - pyyaml=6.0.1=py310h2aa6e3c_1 - - pyzmq=25.1.1=py310h7e65269_2 + - pyzmq=25.1.2=py310hbb13138_0 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.13.1=py310hd442715_0 + - rpds-py=0.13.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 - singular=4.2.1.p3=h3b80c97_2 - 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.13.0=pyhd8ed1ab_0 - - trove-classifiers=2023.11.22=pyhd8ed1ab_0 + - traitlets=5.14.0=pyhd8ed1ab_0 + - trove-classifiers=2023.11.29=pyhd8ed1ab_0 - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 - typing_extensions=4.8.0=pyha770c72_0 - typing_utils=0.1.0=pyhd8ed1ab_0 @@ -266,7 +281,7 @@ dependencies: - wcwidth=0.2.12=pyhd8ed1ab_0 - webcolors=1.13=pyhd8ed1ab_0 - webencodings=0.5.1=pyhd8ed1ab_2 - - websocket-client=1.6.4=pyhd8ed1ab_0 + - websocket-client=1.7.0=pyhd8ed1ab_0 - wheel=0.42.0=pyhd8ed1ab_0 - widgetsnbextension=4.0.9=pyhd8ed1ab_0 - zipp=3.17.0=pyhd8ed1ab_0 @@ -278,23 +293,29 @@ dependencies: - 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=h7a0f565_13 + - cctools_osx-arm64=973.0.1=h2a25c60_15 - cffi=1.16.0=py310hdcd7c05_0 - - clang-16=16.0.1=default_he7141eb_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.45.1=py310hd125d64_0 + - fonttools=4.46.0=py310hd125d64_0 + - gitdb=4.0.11=pyhd8ed1ab_0 - harfbuzz=6.0.0=hddbc195_0 - - importlib-metadata=6.8.0=pyha770c72_0 + - html5lib=1.1=pyh9f0ad1d_0 + - importlib-metadata=7.0.0=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.0=py310hbe9552e_0 - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 - - ld64=609=h634c8be_13 + - ld64=609=h89fa09d_15 - libcblas=3.9.0=20_osxarm64_openblas - liblapack=3.9.0=20_osxarm64_openblas - matplotlib-inline=0.1.6=pyhd8ed1ab_0 @@ -302,8 +323,7 @@ dependencies: - overrides=7.4.0=pyhd8ed1ab_0 - pexpect=4.8.0=pyh1a96a4e_2 - pip=23.3.1=pyhd8ed1ab_0 - - platformdirs=4.0.0=pyhd8ed1ab_0 - - pplpy=0.8.7=py310h49c019d_0 + - pplpy=0.8.9=py310hab1f656_0 - primecountpy=0.1.0=py310h38f39d4_4 - prompt-toolkit=3.0.24=pyha770c72_0 - pybind11=2.11.1=py310h38f39d4_2 @@ -312,48 +332,53 @@ dependencies: - pytest=7.4.3=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - pytz-deprecation-shim=0.1.0.post0=py310hbe9552e_4 - - referencing=0.31.0=pyhd8ed1ab_0 + - referencing=0.31.1=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 + - ruamel.yaml=0.18.5=py310hd125d64_0 - sagemath-db-conway-polynomials=0.5.0=h4653dfc_1 - sympy=1.12=pypyh9d50eac_103 - terminado=0.18.0=pyh31c8845_0 - tinycss2=1.2.1=pyhd8ed1ab_0 - typing-extensions=4.8.0=hd8ed1ab_0 - - urllib3=2.1.0=pyhd8ed1ab_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.2=pyhd8ed1ab_0 - - cctools=973.0.1=h4faf515_13 - - clang=16.0.1=h1e5164c_0 + - cattrs=23.2.3=pyhd8ed1ab_0 + - cctools=973.0.1=hd1ac623_15 + - clang=15.0.7=haab561b_4 - dsdp=5.8=h9397a75_1203 - 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.18.0=pyhd8ed1ab_0 - iml=1.0.5=hd52f0d1_1003 - importlib-resources=6.1.1=pyhd8ed1ab_0 - - importlib_metadata=6.8.0=hd8ed1ab_0 - - jsonschema-specifications=2023.11.1=pyhd8ed1ab_0 - - jupyter_core=5.5.0=py310hbe9552e_0 + - importlib_metadata=7.0.0=hd8ed1ab_0 + - jsonschema-specifications=2023.11.2=pyhd8ed1ab_0 - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1 - liblapacke=3.9.0=20_osxarm64_openblas - numpy=1.26.2=py310h30ee222_0 - pango=1.50.14=h6c112b8_0 - prompt_toolkit=3.0.24=hd8ed1ab_0 + - pydantic-core=2.14.5=py310hd442715_0 - pyobjc-framework-cocoa=10.0=py310hd07e440_1 - 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=h7cd81ec_1 - - virtualenv=20.24.7=pyhd8ed1ab_0 - argon2-cffi=23.1.0=pyhd8ed1ab_0 - blas-devel=3.9.0=20_osxarm64_openblas - - clangxx=16.0.1=default_ha0f6327_0 + - cachecontrol=0.13.1=pyhd8ed1ab_0 + - clangxx=15.0.7=default_h5c94ee4_4 - contourpy=1.2.0=py310hd137fd4_0 - cvxopt=1.3.2=py310hadc6ad6_1 + - ensureconda=1.4.3=pyhd8ed1ab_0 - fpylll=0.6.0=py310hc79cb59_1 - giac=1.9.0.21=h1c96721_1 - igraph=0.9.10=hcec9b84_1 @@ -361,44 +386,53 @@ dependencies: - isoduration=20.11.0=pyhd8ed1ab_0 - jsonschema=4.20.0=pyhd8ed1ab_0 - jupyter_client=8.6.0=pyhd8ed1ab_0 + - keyring=24.3.0=py310hbe9552e_0 - linbox=1.6.3=h549c411_7 - 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.3=pyhd8ed1ab_0 + - tox=4.11.4=pyhd8ed1ab_0 - blas=2.120=openblas - - compiler-rt_osx-arm64=16.0.1=h30b49de_0 + - 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.0=pyhd8ed1ab_0 + - pygls=1.2.1=pyhd8ed1ab_0 - rw=0.9=h3422bc3_0 - - compiler-rt=16.0.1=h30b49de_0 + - compiler-rt=15.0.7=h3808999_2 + - conda-lock=2.5.1=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_osx-arm64=16.0.1=hdccda30_1 - - nbconvert-core=7.11.0=pyhd8ed1ab_0 - - clangxx_osx-arm64=16.0.1=h0c1d50e_1 + - clang_impl_osx-arm64=15.0.7=h77e971b_6 + - nbconvert-core=7.12.0=pyhd8ed1ab_0 + - clang_osx-arm64=15.0.7=h54d7cd3_6 + - jupyter_server=2.12.1=pyhd8ed1ab_0 + - nbconvert-pandoc=7.12.0=pyhd8ed1ab_0 + - c-compiler=1.6.0=hd291e01_0 + - clangxx_impl_osx-arm64=15.0.7=h768a7fd_6 - gfortran_osx-arm64=12.3.0=h57527a5_1 - - jupyter_server=2.10.1=pyhd8ed1ab_0 - - nbconvert-pandoc=7.11.0=pyhd8ed1ab_0 - - gfortran=12.3.0=h1ca8e4b_1 - - jupyter-lsp=2.2.0=pyhd8ed1ab_0 + - jupyter-lsp=2.2.1=pyhd8ed1ab_0 - jupyterlab_server=2.25.2=pyhd8ed1ab_0 - - nbconvert=7.11.0=pyhd8ed1ab_0 + - nbconvert=7.12.0=pyhd8ed1ab_0 - notebook-shim=0.2.3=pyhd8ed1ab_0 + - clangxx_osx-arm64=15.0.7=h77e971b_6 + - 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 - - fortran-compiler=1.6.0=h5a50232_0 - - jupyterlab=4.0.9=pyhd8ed1ab_0 + - compilers=1.6.0=hce30654_0 - rpy2=3.5.11=py310r41hf1a086a_0 - - notebook=7.0.6=pyhd8ed1ab_0 - - esbonio=0.16.2=pyhd8ed1ab_0 + - esbonio=0.16.3=pyhd8ed1ab_0 - jupyter_sphinx=0.1.4=py_0 - sphinx-basic-ng=1.0.0b2=pyhd8ed1ab_1 - furo=2023.9.10=pyhd8ed1ab_0 diff --git a/src/environment-dev-3.10-macos.yml b/src/environment-dev-3.10-macos.yml index 3f307a087ad..cf35d76b609 100644 --- a/src/environment-dev-3.10-macos.yml +++ b/src/environment-dev-3.10-macos.yml @@ -1,13 +1,14 @@ # Generated by conda-lock. # platform: osx-64 -# input_hash: 0ffa171322ce98977f9f4e681310b16ac55cadf4cf95ab33b85653a9b1765893 +# input_hash: a2af7089f9a3597bb091b635e5309be02160750fcb6c4d06feee2cbc318bf41a 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.22.1=h10d778d_0 + - c-ares=1.23.0=h10d778d_0 - ca-certificates=2023.11.17=h8857fd0_0 - cliquer=1.22=hbcb3906_0 - font-ttf-dejavu-sans-mono=2.37=hab24e00_0 @@ -15,7 +16,7 @@ dependencies: - font-ttf-source-code-pro=2.038=h77eed37_0 - font-ttf-ubuntu=0.83=h77eed37_1 - fribidi=1.0.10=hbcb3906_0 - - gh=2.39.1=h990441c_0 + - gh=2.39.2=h990441c_0 - giflib=5.2.1=hb7f2c08_3 - icu=73.2=hf5e326d_0 - libatomic_ops=7.6.14=hb7f2c08_0 @@ -34,7 +35,7 @@ dependencies: - libuv=1.46.0=h0c2f820_0 - libwebp-base=1.3.2=h0dc2134_0 - libzlib=1.2.13=h8a1eda9_5 - - llvm-openmp=17.0.5=hb6ac08f_0 + - llvm-openmp=17.0.6=hb6ac08f_0 - m4=1.4.18=haf1e3a3_1001 - make=4.3=h22f3db7_1 - mathjax=3.2.2=h694c41f_0 @@ -73,7 +74,7 @@ dependencies: - graphite2=1.3.13=h2e338ed_1001 - isl=0.25=hb486fe8_0 - lerc=4.0.0=hb486fe8_0 - - libbraiding=1.1=h2e338ed_0 + - libbraiding=1.2=hf0c8a7f_0 - libbrotlidec=1.1.0=h0dc2134_1 - libbrotlienc=1.1.0=h0dc2134_1 - libcbor=0.10.2=hf0c8a7f_0 @@ -81,12 +82,12 @@ dependencies: - libpng=1.6.39=ha978bb4_0 - libsqlite=3.44.2=h92b6c6a_0 - libxcb=1.15=hb7f2c08_0 - - libxml2=2.11.6=hc0ae0f7_0 + - libxml2=2.12.2=hc0ae0f7_0 - lrcalc=2.1=hf0c8a7f_5 - ncurses=6.4=h93d8f39_2 - ninja=1.11.1=hb8565cd_0 - openjdk=21.0.1=hf4d7fad_0 - - openssl=3.2.0=hd75f5a5_0 + - openssl=3.2.0=hd75f5a5_1 - pandoc=3.1.3=h9d075a6_0 - pari-seadata=0.0.20090618=0 - pcre2=10.40=h1c4e4bc_0 @@ -96,6 +97,7 @@ dependencies: - 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 @@ -117,7 +119,7 @@ dependencies: - libgfortran=5.0.0=13_2_0_h97931a8_1 - libglib=2.78.1=h6d9ecee_0 - libhomfly=1.02r6=hc929b4f_0 - - libllvm16=16.0.6=he4b1e75_2 + - libllvm15=15.0.7=hbedff68_4 - libnghttp2=1.58.0=h64cf6d3_0 - libssh2=1.11.0=hd019ec5_0 - libtiff=4.6.0=h684deea_2 @@ -137,15 +139,15 @@ dependencies: - gap-core=4.12.2=hc16eb5f_3 - gfan=0.6.2=hd793b56_1003 - krb5=1.21.2=hb884880_0 - - lcms2=2.15=hd6ba6f3_3 - - ld64_osx-64=609=ha20a434_15 + - lcms2=2.16=ha2f27b4_0 + - ld64_osx-64=609=h0fd476b_15 - libboost-devel=1.83.0=h7728843_0 - libbrial=1.2.12=h8d08345_1 - - libclang-cpp16=16.0.6=default_h762fdd7_2 + - libclang-cpp15=15.0.7=default_h6b1ee41_4 - libflint=2.9.0=hfd2f71f_ntl_100 - libopenblas=0.3.25=openmp_hfef2a42_0 - libwebp=1.3.2=h44782d1_1 - - llvm-tools=16.0.6=he4b1e75_2 + - llvm-tools=15.0.7=hbedff68_4 - m4rie=20150908=h3f75d11_1001 - mpc=1.3.1=h81bd1dd_0 - mpfi=1.5.4=h52b28e3_1001 @@ -166,13 +168,16 @@ dependencies: - 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=ha1c5b94_15 + - cctools_osx-64=973.0.1=habff3f6_15 - certifi=2023.11.17=pyhd8ed1ab_0 - chardet=5.2.0=py310h2ec42d9_1 - charset-normalizer=3.3.2=pyhd8ed1ab_0 - - clang-16=16.0.6=default_h762fdd7_2 + - clang-15=15.0.7=default_h6b1ee41_4 + - click=8.1.7=unix_pyh707e725_0 - colorama=0.4.6=pyhd8ed1ab_0 + - crashtest=0.4.1=pyhd8ed1ab_0 - cycler=0.12.1=pyhd8ed1ab_0 - cysignals=1.11.2=py310h8c82e65_3 - cython=3.0.6=py310had63691_0 @@ -180,7 +185,7 @@ dependencies: - decorator=5.1.1=pyhd8ed1ab_0 - defusedxml=0.7.1=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - - docutils=0.20.1=py310h2ec42d9_2 + - docutils=0.20.1=py310h2ec42d9_3 - eclib=20230424=hd00e801_0 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 @@ -203,14 +208,16 @@ dependencies: - jupyterlab_widgets=3.0.9=pyhd8ed1ab_0 - kiwisolver=1.4.5=py310h88cfcbd_1 - lcalc=2.0.5=h3a941db_1 - - ld64=609=ha02d983_15 + - ld64=609=ha91a046_15 - libblas=3.9.0=20_osx64_openblas - - libcurl=8.4.0=h726d00d_0 + - libcurl=8.5.0=h726d00d_0 - libgd=2.3.3=h0dceb68_9 - markupsafe=2.1.3=py310h6729b98_1 - - maxima=5.45.0=hd029580_3 + - maxima=5.46.0=h2b27fa8_0 - 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 - networkx=3.2.1=pyhd8ed1ab_0 @@ -219,11 +226,14 @@ dependencies: - 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.11.2=pyhd8ed1ab_0 - pickleshare=0.7.5=py_1003 - pillow=10.1.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 @@ -235,6 +245,7 @@ dependencies: - 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 @@ -245,24 +256,28 @@ dependencies: - python-tzdata=2023.3=pyhd8ed1ab_0 - pytz=2023.3.post1=pyhd8ed1ab_0 - pyyaml=6.0.1=py310h6729b98_1 - - pyzmq=25.1.1=py310hd8b4af3_2 + - pyzmq=25.1.2=py310h6b67f7f_0 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.13.1=py310h0e083fb_0 + - rpds-py=0.13.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 - singular=4.2.1.p3=hac851df_2 - 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.13.0=pyhd8ed1ab_0 - - trove-classifiers=2023.11.22=pyhd8ed1ab_0 + - traitlets=5.14.0=pyhd8ed1ab_0 + - trove-classifiers=2023.11.29=pyhd8ed1ab_0 - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 - typing_extensions=4.8.0=pyha770c72_0 - typing_utils=0.1.0=pyhd8ed1ab_0 @@ -273,7 +288,7 @@ dependencies: - wcwidth=0.2.12=pyhd8ed1ab_0 - webcolors=1.13=pyhd8ed1ab_0 - webencodings=0.5.1=pyhd8ed1ab_2 - - websocket-client=1.6.4=pyhd8ed1ab_0 + - websocket-client=1.7.0=pyhd8ed1ab_0 - wheel=0.42.0=pyhd8ed1ab_0 - widgetsnbextension=4.0.9=pyhd8ed1ab_0 - zipp=3.17.0=pyhd8ed1ab_0 @@ -285,21 +300,27 @@ dependencies: - beniget=0.4.1=pyhd8ed1ab_0 - bleach=6.1.0=pyhd8ed1ab_0 - cached-property=1.5.2=hd8ed1ab_1 - - cctools=973.0.1=h40f6528_15 + - cctools=973.0.1=hd9ad811_15 - cffi=1.16.0=py310hdca579f_0 - - clang=16.0.6=hc177806_2 - - cmake=3.27.8=hc7ee4c4_0 + - clang=15.0.7=hac416ee_4 + - click-default-group=1.2.4=pyhd8ed1ab_0 + - clikit=0.6.2=pyhd8ed1ab_2 + - cmake=3.28.0=hc7ee4c4_0 - comm=0.1.4=pyhd8ed1ab_0 - cppy=1.2.1=pyhd8ed1ab_0 - - curl=8.4.0=h726d00d_0 + - curl=8.5.0=h726d00d_0 - cypari2=2.1.3=py310hb5d31c9_2 - deprecation=2.1.0=pyh9f0ad1d_0 - - fonttools=4.45.1=py310hb372a2b_0 + - fonttools=4.46.0=py310hb372a2b_0 + - gitdb=4.0.11=pyhd8ed1ab_0 - harfbuzz=8.3.0=hf45c392_0 - - importlib-metadata=6.8.0=pyha770c72_0 + - html5lib=1.1=pyh9f0ad1d_0 + - importlib-metadata=7.0.0=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.0=py310h2ec42d9_0 - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 - libcblas=3.9.0=20_osx64_openblas - liblapack=3.9.0=20_osx64_openblas @@ -308,8 +329,7 @@ dependencies: - overrides=7.4.0=pyhd8ed1ab_0 - pexpect=4.8.0=pyh1a96a4e_2 - pip=23.3.1=pyhd8ed1ab_0 - - platformdirs=4.0.0=pyhd8ed1ab_0 - - pplpy=0.8.7=py310h190f582_0 + - pplpy=0.8.9=py310hd89f7aa_0 - primecountpy=0.1.0=py310h88cfcbd_4 - prompt-toolkit=3.0.24=pyha770c72_0 - pybind11=2.11.1=py310h88cfcbd_2 @@ -318,90 +338,102 @@ dependencies: - pytest=7.4.3=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - pytz-deprecation-shim=0.1.0.post0=py310h2ec42d9_4 - - referencing=0.31.0=pyhd8ed1ab_0 + - referencing=0.31.1=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 + - ruamel.yaml=0.18.5=py310hb372a2b_0 - sagemath-db-conway-polynomials=0.5.0=h033912b_1 - sympy=1.12=pypyh9d50eac_103 - terminado=0.18.0=pyh31c8845_0 - tinycss2=1.2.1=pyhd8ed1ab_0 - typing-extensions=4.8.0=hd8ed1ab_0 - - urllib3=2.1.0=pyhd8ed1ab_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 - arrow=1.3.0=pyhd8ed1ab_0 - - cattrs=23.2.2=pyhd8ed1ab_0 - - clangxx=16.0.6=default_h762fdd7_2 + - cattrs=23.2.3=pyhd8ed1ab_0 + - clangxx=15.0.7=default_h6b1ee41_4 - dsdp=5.8=h6e329d1_1203 - 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.18.0=pyhd8ed1ab_0 - iml=1.0.5=h64b42ca_1003 - importlib-resources=6.1.1=pyhd8ed1ab_0 - - importlib_metadata=6.8.0=hd8ed1ab_0 - - jsonschema-specifications=2023.11.1=pyhd8ed1ab_0 - - jupyter_core=5.5.0=py310h2ec42d9_0 + - importlib_metadata=7.0.0=hd8ed1ab_0 + - jsonschema-specifications=2023.11.2=pyhd8ed1ab_0 - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1 - liblapacke=3.9.0=20_osx64_openblas - numpy=1.26.2=py310h2a7ecf2_0 - pango=1.50.14=h19c1c8a_2 - prompt_toolkit=3.0.24=hd8ed1ab_0 + - pydantic-core=2.14.5=py310h0e083fb_0 - pyobjc-framework-cocoa=10.0=py310hef2d279_1 - 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=h7aff33d_1 - - virtualenv=20.24.7=pyhd8ed1ab_0 - argon2-cffi=23.1.0=pyhd8ed1ab_0 - blas-devel=3.9.0=20_osx64_openblas - - compiler-rt_osx-64=16.0.6=he1888fc_1 + - cachecontrol=0.13.1=pyhd8ed1ab_0 + - compiler-rt_osx-64=15.0.7=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 - giac=1.9.0.21=h92f3f65_1 - ipython=8.8.0=pyhd1c38e8_0 - isoduration=20.11.0=pyhd8ed1ab_0 - jsonschema=4.20.0=pyhd8ed1ab_0 - jupyter_client=8.6.0=pyhd8ed1ab_0 + - keyring=24.3.0=py310h2ec42d9_0 - linbox=1.6.3=hdde8d14_7 - 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.3=pyhd8ed1ab_0 + - tox=4.11.4=pyhd8ed1ab_0 - blas=2.120=openblas - - compiler-rt=16.0.6=he1888fc_1 + - 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.0=pyhd8ed1ab_0 - - clang_impl_osx-64=16.0.6=h8787910_6 + - pygls=1.2.1=pyhd8ed1ab_0 + - clang_impl_osx-64=15.0.7=h03d6864_6 + - conda-lock=2.5.1=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=16.0.6=hb91bd55_6 - - nbconvert-core=7.11.0=pyhd8ed1ab_0 - - clangxx_impl_osx-64=16.0.6=h1b7723c_6 + - clang_osx-64=15.0.7=hb91bd55_6 + - nbconvert-core=7.12.0=pyhd8ed1ab_0 + - c-compiler=1.6.0=h63c33a9_0 + - clangxx_impl_osx-64=15.0.7=h3d2d1bf_6 - gfortran_osx-64=12.3.0=h18f7dce_1 - - jupyter_server=2.10.1=pyhd8ed1ab_0 - - nbconvert-pandoc=7.11.0=pyhd8ed1ab_0 - - clangxx_osx-64=16.0.6=h2fff7d5_6 + - jupyter_server=2.12.1=pyhd8ed1ab_0 + - nbconvert-pandoc=7.12.0=pyhd8ed1ab_0 + - clangxx_osx-64=15.0.7=h655633e_6 - gfortran=12.3.0=h2c809b3_1 - - jupyter-lsp=2.2.0=pyhd8ed1ab_0 + - jupyter-lsp=2.2.1=pyhd8ed1ab_0 - jupyterlab_server=2.25.2=pyhd8ed1ab_0 - - nbconvert=7.11.0=pyhd8ed1ab_0 + - nbconvert=7.12.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.2=hf996cbc_0 + - 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.2=pyhd8ed1ab_0 + - esbonio=0.16.3=pyhd8ed1ab_0 - jupyter_sphinx=0.4.0=py310h2ec42d9_1 - sphinx-basic-ng=1.0.0b2=pyhd8ed1ab_1 - furo=2023.9.10=pyhd8ed1ab_0 diff --git a/src/environment-dev-3.11-linux-aarch64.yml b/src/environment-dev-3.11-linux-aarch64.yml index e452169fa81..390a2321824 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: cb9dcbbf96b535f887ef9640f9be87c230ed005797cf9f294c38dcb26d0ad0fa +# input_hash: bc46b6b39a31a956e05347a8c6f718c74059a101816f42dcef9e717a879b479f channels: - conda-forge @@ -12,7 +12,7 @@ dependencies: - 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.39.1=h652cbe9_0 + - gh=2.39.2=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 @@ -43,9 +43,10 @@ dependencies: - 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 - bdw-gc=8.0.6=hd62202e_0 - bzip2=1.0.8=h31becfc_5 - - c-ares=1.22.1=h31becfc_0 + - c-ares=1.23.0=h31becfc_0 - cliquer=1.22=hb9de7d4_0 - fribidi=1.0.10=hb9de7d4_0 - gengetopt=2.23=h01db608_0 @@ -59,7 +60,7 @@ dependencies: - keyutils=1.6.1=h4e544f5_0 - lerc=4.0.0=h4de3ea5_0 - libatomic_ops=7.6.14=h4e544f5_0 - - libbraiding=1.1=h7fd3ca4_0 + - libbraiding=1.2=hd600fc2_0 - libbrotlicommon=1.1.0=h31becfc_1 - libcbor=0.9.0=h01db608_0 - libdeflate=1.17=hb4cce97_0 @@ -83,7 +84,7 @@ dependencies: - nauty=2.7.2=hf897c2e_0 - ncurses=6.4=h0425590_2 - ninja=1.11.1=hdd96247_0 - - openssl=3.2.0=h31becfc_0 + - openssl=3.2.0=h31becfc_1 - palp=2.20=hb9de7d4_0 - patch=2.7.6=hf897c2e_1002 - pixman=0.42.2=h2f0025b_0 @@ -130,6 +131,7 @@ dependencies: - perl=5.32.1=4_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 @@ -156,7 +158,7 @@ dependencies: - libopenblas=0.3.25=pthreads_h5a5ec62_0 - libtiff=4.5.0=h4c1066a_2 - libudev1=254=h31becfc_0 - - llvm-openmp=17.0.5=h8b0cb96_0 + - llvm-openmp=17.0.6=h8b0cb96_0 - m4ri=20140914=h75e8696_1005 - mpc=1.3.1=hf4c8f4c_0 - mpfi=1.5.4=h846f343_1001 @@ -181,18 +183,22 @@ dependencies: - 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 - charset-normalizer=3.3.2=pyhd8ed1ab_0 + - click=8.1.7=unix_pyh707e725_0 - colorama=0.4.6=pyhd8ed1ab_0 + - crashtest=0.4.1=pyhd8ed1ab_0 - cycler=0.12.1=pyhd8ed1ab_0 - cysignals=1.11.2=py311h644d908_3 - cython=3.0.6=py311h8715677_0 + - dbus=1.13.6=h12b9eeb_3 - debugpy=1.8.0=py311h8715677_1 - decorator=5.1.1=pyhd8ed1ab_0 - defusedxml=0.7.1=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - - docutils=0.20.1=py311hfecb2dc_2 + - docutils=0.20.1=py311hfecb2dc_3 - eclib=20230424=h0bc7b0f_0 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 @@ -208,11 +214,13 @@ dependencies: - 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 @@ -227,9 +235,11 @@ dependencies: - libwebp=1.2.4=h7bdf6e5_1 - m4rie=20150908=h75e8696_1001 - markupsafe=2.1.3=py311hc8f2f60_1 - - maxima=5.45.0=haa44c19_3 + - maxima=5.46.0=h6475f26_0 - 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 - networkx=3.2.1=pyhd8ed1ab_0 @@ -238,10 +248,13 @@ dependencies: - 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.11.2=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 @@ -253,6 +266,7 @@ dependencies: - 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 @@ -263,9 +277,10 @@ dependencies: - python-tzdata=2023.3=pyhd8ed1ab_0 - pytz=2023.3.post1=pyhd8ed1ab_0 - pyyaml=6.0.1=py311hcd402e7_1 - - pyzmq=25.1.1=py311h0fdcd05_2 + - pyzmq=25.1.2=py311h0fdcd05_0 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.13.1=py311h32437ce_0 + - rpds-py=0.13.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 @@ -273,6 +288,7 @@ dependencies: - simplegeneric=0.8.1=py_1 - singular=4.2.1.p3=h3d4c4c6_2 - 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 @@ -280,9 +296,11 @@ dependencies: - 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.13.0=pyhd8ed1ab_0 - - trove-classifiers=2023.11.22=pyhd8ed1ab_0 + - traitlets=5.14.0=pyhd8ed1ab_0 + - trove-classifiers=2023.11.29=pyhd8ed1ab_0 - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 - typing_extensions=4.8.0=pyha770c72_0 - typing_utils=0.1.0=pyhd8ed1ab_0 @@ -292,7 +310,7 @@ dependencies: - wcwidth=0.2.12=pyhd8ed1ab_0 - webcolors=1.13=pyhd8ed1ab_0 - webencodings=0.5.1=pyhd8ed1ab_2 - - websocket-client=1.6.4=pyhd8ed1ab_0 + - websocket-client=1.7.0=pyhd8ed1ab_0 - wheel=0.42.0=pyhd8ed1ab_0 - widgetsnbextension=4.0.9=pyhd8ed1ab_0 - xorg-libxext=1.3.4=h2a766a3_2 @@ -311,18 +329,25 @@ dependencies: - 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 + - cxx-compiler=1.6.0=h2a328a1_0 - cypari2=2.1.3=py311h5ab95f0_2 - deprecation=2.1.0=pyh9f0ad1d_0 - - fonttools=4.45.1=py311hcd402e7_0 + - fonttools=4.46.0=py311hcd402e7_0 - fortran-compiler=1.6.0=h7048d53_0 - - importlib-metadata=6.8.0=pyha770c72_0 + - gitdb=4.0.11=pyhd8ed1ab_0 + - html5lib=1.1=pyh9f0ad1d_0 + - importlib-metadata=7.0.0=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.0=py311hec3470c_0 - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 - libcblas=3.9.0=20_linuxaarch64_openblas - libgd=2.3.3=h99c6b3b_4 @@ -334,8 +359,7 @@ dependencies: - pexpect=4.8.0=pyh1a96a4e_2 - pillow=9.4.0=py311hf18358d_1 - pip=23.3.1=pyhd8ed1ab_0 - - platformdirs=4.0.0=pyhd8ed1ab_0 - - pplpy=0.8.7=py311haefeb0b_0 + - pplpy=0.8.9=py311haefeb0b_0 - primecountpy=0.1.0=py311h098ece5_4 - prompt-toolkit=3.0.24=pyha770c72_0 - pybind11=2.11.1=py311h098ece5_2 @@ -343,46 +367,53 @@ dependencies: - pytest=7.4.3=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - pytz-deprecation-shim=0.1.0.post0=py311hec3470c_4 - - referencing=0.31.0=pyhd8ed1ab_0 + - referencing=0.31.1=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 + - ruamel.yaml=0.18.5=py311hcd402e7_0 - sagemath-db-conway-polynomials=0.5.0=h4fd8a4c_1 - sympy=1.12=pypyh9d50eac_103 - terminado=0.18.0=pyh0d859eb_0 - tinycss2=1.2.1=pyhd8ed1ab_0 - typing-extensions=4.8.0=hd8ed1ab_0 - - urllib3=2.1.0=pyhd8ed1ab_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.2=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 - 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.18.0=pyhd8ed1ab_0 - iml=1.0.5=h9076c59_1003 - importlib-resources=6.1.1=pyhd8ed1ab_0 - - importlib_metadata=6.8.0=hd8ed1ab_0 - - jsonschema-specifications=2023.11.1=pyhd8ed1ab_0 - - jupyter_core=5.5.0=py311hec3470c_0 + - importlib_metadata=7.0.0=hd8ed1ab_0 + - jsonschema-specifications=2023.11.2=pyhd8ed1ab_0 - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1 - liblapacke=3.9.0=20_linuxaarch64_openblas - numpy=1.26.2=py311h69ead2a_0 - prompt_toolkit=3.0.24=hd8ed1ab_0 + - pydantic-core=2.14.5=py311h2bdde80_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 - - virtualenv=20.24.7=pyhd8ed1ab_0 - 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 - giac=1.9.0.21=h04922a4_1 - igraph=0.9.10=hefb87a8_1 @@ -394,35 +425,40 @@ dependencies: - 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.3=pyhd8ed1ab_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.0=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 - 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.11.0=pyhd8ed1ab_0 - - jupyter_server=2.10.1=pyhd8ed1ab_0 - - nbconvert-pandoc=7.11.0=pyhd8ed1ab_0 - - jupyter-lsp=2.2.0=pyhd8ed1ab_0 + - nbconvert-core=7.12.0=pyhd8ed1ab_0 + - jupyter_server=2.12.1=pyhd8ed1ab_0 + - nbconvert-pandoc=7.12.0=pyhd8ed1ab_0 + - jupyter-lsp=2.2.1=pyhd8ed1ab_0 - jupyterlab_server=2.25.2=pyhd8ed1ab_0 - - nbconvert=7.11.0=pyhd8ed1ab_0 + - nbconvert=7.12.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.2=pyhd8ed1ab_0 + - esbonio=0.16.3=pyhd8ed1ab_0 - jupyter_sphinx=0.1.4=py_0 - sphinx-basic-ng=1.0.0b2=pyhd8ed1ab_1 - furo=2023.9.10=pyhd8ed1ab_0 diff --git a/src/environment-dev-3.11-linux.yml b/src/environment-dev-3.11-linux.yml index 94f17940043..dcd239e4409 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: 6b9fd63c60e60d6867ebfc1c01f68c8326c7ca175b348f3a69d78b7b052e75e0 +# input_hash: 88a09023b8c7df4fda364f14fdea597052b008d537d5be0bb4358a92075d035e channels: - conda-forge @@ -12,7 +12,7 @@ dependencies: - 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.39.1=ha8f183a_0 + - gh=2.39.2=ha8f183a_0 - kernel-headers_linux-64=2.6.32=he073ed8_16 - ld_impl_linux-64=2.40=h41732ed_0 - libboost-headers=1.83.0=ha770c72_0 @@ -43,9 +43,10 @@ dependencies: - 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 - bdw-gc=8.0.6=h4bd325d_0 - bzip2=1.0.8=hd590300_5 - - c-ares=1.22.1=hd590300_0 + - c-ares=1.23.0=hd590300_0 - cliquer=1.22=h36c2ea0_0 - fribidi=1.0.10=h36c2ea0_0 - gengetopt=2.23=h9c3ff4c_0 @@ -59,7 +60,7 @@ dependencies: - lame=3.100=h166bdaf_1003 - lerc=4.0.0=h27087fc_0 - libatomic_ops=7.6.14=h166bdaf_0 - - libbraiding=1.1=h58526e2_0 + - libbraiding=1.2=hcb278e6_0 - libbrotlicommon=1.1.0=hd590300_1 - libcbor=0.10.2=hcb278e6_0 - libdeflate=1.19=hd590300_0 @@ -89,7 +90,7 @@ dependencies: - ncurses=6.4=h59595ed_2 - ninja=1.11.1=h924138e_0 - nspr=4.35=h27087fc_0 - - openssl=3.2.0=hd590300_0 + - openssl=3.1.4=hd590300_0 - palp=2.20=h36c2ea0_0 - patch=2.7.6=h7f98852_1002 - pixman=0.42.2=h59595ed_0 @@ -142,6 +143,7 @@ dependencies: - perl=5.32.1=4_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 @@ -164,7 +166,7 @@ dependencies: - krb5=1.21.2=h659d440_0 - libboost=1.83.0=h6fcfa73_0 - libflint=2.9.0=h2f819a4_ntl_100 - - libgcrypt=1.10.2=hd590300_0 + - libgcrypt=1.10.3=hd590300_0 - libglib=2.78.1=hebfc3b9_0 - libhwloc=2.9.3=default_h554bfaf_1009 - libllvm15=15.0.7=h5cf9203_3 @@ -172,12 +174,12 @@ dependencies: - libsndfile=1.2.2=hc60ed4a_1 - libtiff=4.6.0=ha9c0a0a_2 - libudev1=254=h3f72095_0 - - llvm-openmp=17.0.5=h4dfa4b3_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.94=h1d7d5a4_0 + - nss=3.95=h1d7d5a4_0 - pandoc=3.1.3=h32600fe_0 - pari=2.15.4=h4d4ae9b_2_pthread - ppl=1.2=h6ec01c2_1006 @@ -204,10 +206,13 @@ dependencies: - 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 - charset-normalizer=3.3.2=pyhd8ed1ab_0 + - click=8.1.7=unix_pyh707e725_0 - colorama=0.4.6=pyhd8ed1ab_0 + - crashtest=0.4.1=pyhd8ed1ab_0 - cycler=0.12.1=pyhd8ed1ab_0 - cysignals=1.11.2=py311h82528dc_3 - cython=3.0.6=py311hb755f60_0 @@ -216,7 +221,7 @@ dependencies: - decorator=5.1.1=pyhd8ed1ab_0 - defusedxml=0.7.1=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - - docutils=0.20.1=py311h38be061_2 + - docutils=0.20.1=py311h38be061_3 - eclib=20230424=hdef1efb_0 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 @@ -233,21 +238,23 @@ dependencies: - gfortran_linux-64=12.3.0=h7fe76b4_2 - glib-tools=2.78.1=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 - kiwisolver=1.4.5=py311h9547e67_1 - lcalc=2.0.5=h6a8a7c6_1 - - lcms2=2.15=hb7c19ff_3 + - lcms2=2.16=hb7c19ff_0 - libblas=3.9.0=20_linux64_openblas - libboost-devel=1.83.0=h00ab1b0_0 - libbrial=1.2.12=h3155cbd_1 - - libclang13=15.0.7=default_h9986a30_3 + - libclang13=15.0.7=default_ha2b6cf4_4 - libcups=2.3.3=h4637d8d_4 - libcurl=8.4.0=hca28451_0 - libfido2=1.14.0=h4446dcb_0 @@ -256,9 +263,11 @@ dependencies: - libwebp=1.3.2=h658648e_1 - m4rie=20150908=h7ca028e_1001 - markupsafe=2.1.3=py311h459d7ec_1 - - maxima=5.45.0=h9d73b02_3 + - maxima=5.46.0=hed6455c_0 - 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 - networkx=3.2.1=pyhd8ed1ab_0 @@ -267,10 +276,13 @@ dependencies: - 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.11.2=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 @@ -282,6 +294,7 @@ dependencies: - 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 @@ -292,9 +305,10 @@ dependencies: - python-tzdata=2023.3=pyhd8ed1ab_0 - pytz=2023.3.post1=pyhd8ed1ab_0 - pyyaml=6.0.1=py311h459d7ec_1 - - pyzmq=25.1.1=py311h34ded2d_2 + - pyzmq=25.1.2=py311h34ded2d_0 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.13.1=py311h46250e7_0 + - rpds-py=0.13.2=py311h46250e7_0 + - ruamel.yaml.clib=0.2.7=py311h459d7ec_2 - rw=0.8=h516909a_1001 - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 - sagetex=3.6.1=pyhd8ed1ab_0 @@ -303,6 +317,7 @@ dependencies: - simplegeneric=0.8.1=py_1 - singular=4.2.1.p3=h1ea75ed_2 - 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 @@ -311,9 +326,11 @@ dependencies: - tbb=2021.10.0=h00ab1b0_2 - 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.13.0=pyhd8ed1ab_0 - - trove-classifiers=2023.11.22=pyhd8ed1ab_0 + - traitlets=5.14.0=pyhd8ed1ab_0 + - trove-classifiers=2023.11.29=pyhd8ed1ab_0 - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 - typing_extensions=4.8.0=pyha770c72_0 - typing_utils=0.1.0=pyhd8ed1ab_0 @@ -323,7 +340,7 @@ dependencies: - wcwidth=0.2.12=pyhd8ed1ab_0 - webcolors=1.13=pyhd8ed1ab_0 - webencodings=0.5.1=pyhd8ed1ab_2 - - websocket-client=1.6.4=pyhd8ed1ab_0 + - websocket-client=1.7.0=pyhd8ed1ab_0 - wheel=0.42.0=pyhd8ed1ab_0 - widgetsnbextension=4.0.9=pyhd8ed1ab_0 - xcb-util-image=0.4.0=h8ee46fc_1 @@ -345,22 +362,29 @@ dependencies: - cached-property=1.5.2=hd8ed1ab_1 - cairo=1.18.0=h3faef2a_0 - cffi=1.16.0=py311hb3a22ac_0 - - cmake=3.27.8=hcfe8598_0 + - click-default-group=1.2.4=pyhd8ed1ab_0 + - clikit=0.6.2=pyhd8ed1ab_2 + - cmake=3.27.9=hcfe8598_0 - comm=0.1.4=pyhd8ed1ab_0 - cppy=1.2.1=pyhd8ed1ab_0 - curl=8.4.0=hca28451_0 + - cxx-compiler=1.6.0=h00ab1b0_0 - cypari2=2.1.3=py311hd2352ae_2 - deprecation=2.1.0=pyh9f0ad1d_0 - - fonttools=4.45.1=py311h459d7ec_0 + - fonttools=4.46.0=py311h459d7ec_0 - fortran-compiler=1.6.0=heb67821_0 + - gitdb=4.0.11=pyhd8ed1ab_0 - glib=2.78.1=hfc55251_0 - - importlib-metadata=6.8.0=pyha770c72_0 + - html5lib=1.1=pyh9f0ad1d_0 + - importlib-metadata=7.0.0=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.0=py311h38be061_0 - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 - libcblas=3.9.0=20_linux64_openblas - - libclang=15.0.7=default_h7634d5b_3 + - 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 @@ -371,8 +395,7 @@ dependencies: - pexpect=4.8.0=pyh1a96a4e_2 - pillow=10.1.0=py311ha6c5da5_0 - pip=23.3.1=pyhd8ed1ab_0 - - platformdirs=4.0.0=pyhd8ed1ab_0 - - pplpy=0.8.7=py311h85abca9_0 + - pplpy=0.8.9=py311h85abca9_0 - primecountpy=0.1.0=py311h9547e67_4 - prompt-toolkit=3.0.24=pyha770c72_0 - pulseaudio-client=16.1=hb77b528_5 @@ -381,48 +404,55 @@ dependencies: - pytest=7.4.3=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - pytz-deprecation-shim=0.1.0.post0=py311h38be061_4 - - referencing=0.31.0=pyhd8ed1ab_0 + - referencing=0.31.1=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 + - ruamel.yaml=0.18.5=py311h459d7ec_0 - sagemath-db-conway-polynomials=0.5.0=ha878542_1 - 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.8.0=hd8ed1ab_0 - - urllib3=2.1.0=pyhd8ed1ab_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 - arrow=1.3.0=pyhd8ed1ab_0 - - cattrs=23.2.2=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.42.0=pl5321h86e50cf_0 + - gitpython=3.1.40=pyhd8ed1ab_0 - gsl=2.7=he838d99_0 - gstreamer=1.22.7=h98fc4e7_0 - harfbuzz=8.3.0=h3d44ed6_0 - hatchling=1.18.0=pyhd8ed1ab_0 - iml=1.0.5=hd75c201_1003 - importlib-resources=6.1.1=pyhd8ed1ab_0 - - importlib_metadata=6.8.0=hd8ed1ab_0 - - jsonschema-specifications=2023.11.1=pyhd8ed1ab_0 - - jupyter_core=5.5.0=py311h38be061_0 + - importlib_metadata=7.0.0=hd8ed1ab_0 + - jsonschema-specifications=2023.11.2=pyhd8ed1ab_0 - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1 - liblapacke=3.9.0=20_linux64_openblas - numpy=1.26.2=py311h64a7726_0 - prompt_toolkit=3.0.24=hd8ed1ab_0 + - pydantic-core=2.14.5=py311h46250e7_0 - pyqt5-sip=12.12.2=py311hb755f60_5 - 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=h9e50725_1 - - virtualenv=20.24.7=pyhd8ed1ab_0 - 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 - giac=1.9.0.21=h673759e_1 - gst-plugins-base=1.22.7=h8e1006c_0 @@ -434,36 +464,41 @@ dependencies: - 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.3=pyhd8ed1ab_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.0=pyhd8ed1ab_0 + - pygls=1.2.1=pyhd8ed1ab_0 - qt-main=5.15.8=h82b777d_17 - r-base=4.3.2=h93585b2_0 + - conda-lock=2.5.1=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.11.0=pyhd8ed1ab_0 - - jupyter_server=2.10.1=pyhd8ed1ab_0 - - nbconvert-pandoc=7.11.0=pyhd8ed1ab_0 - - jupyter-lsp=2.2.0=pyhd8ed1ab_0 + - nbconvert-core=7.12.0=pyhd8ed1ab_0 + - jupyter_server=2.12.1=pyhd8ed1ab_0 + - nbconvert-pandoc=7.12.0=pyhd8ed1ab_0 + - jupyter-lsp=2.2.1=pyhd8ed1ab_0 - jupyterlab_server=2.25.2=pyhd8ed1ab_0 - - nbconvert=7.11.0=pyhd8ed1ab_0 + - nbconvert=7.12.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.2=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 diff --git a/src/environment-dev-3.11-macos-arm64.yml b/src/environment-dev-3.11-macos-arm64.yml index 2d2fa7961ba..fd67e7abc3f 100644 --- a/src/environment-dev-3.11-macos-arm64.yml +++ b/src/environment-dev-3.11-macos-arm64.yml @@ -1,13 +1,14 @@ # Generated by conda-lock. # platform: osx-arm64 -# input_hash: d5dd608d06712023c5625bcddfc3d5e04e7caff8c54561eae65049445e8c6aa5 +# input_hash: 73255cd2c73d15324e35ddedc880902f6ca5f69390db91ec08bb6f8e8695b45d 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.22.1=h93a5062_0 + - c-ares=1.23.0=h93a5062_0 - ca-certificates=2023.11.17=hf0a4a13_0 - cliquer=1.22=h27ca646_0 - font-ttf-dejavu-sans-mono=2.37=hab24e00_0 @@ -15,7 +16,7 @@ dependencies: - font-ttf-source-code-pro=2.038=h77eed37_0 - font-ttf-ubuntu=0.83=h77eed37_1 - fribidi=1.0.10=h27ca646_0 - - gh=2.39.1=h75b854d_0 + - gh=2.39.2=h75b854d_0 - giflib=5.2.1=h1a8c8d9_3 - jpeg=9e=h1a8c8d9_3 - libatomic_ops=7.6.14=h1a8c8d9_0 @@ -32,7 +33,7 @@ dependencies: - libuv=1.46.0=hb547adb_0 - libwebp-base=1.2.4=h1a8c8d9_0 - libzlib=1.2.13=h53f4e23_5 - - llvm-openmp=17.0.5=hcd81f8e_0 + - llvm-openmp=17.0.6=hcd81f8e_0 - m4=1.4.18=h642e427_1001 - make=4.3=he57ea6c_1 - mathjax=3.2.2=hce30654_0 @@ -72,7 +73,7 @@ dependencies: - icu=70.1=h6b3803e_0 - isl=0.25=h9a09cb3_0 - lerc=4.0.0=h9a09cb3_0 - - libbraiding=1.1=h9f76cd9_0 + - libbraiding=1.2=hb7217d7_0 - libbrotlidec=1.1.0=hb547adb_1 - libbrotlienc=1.1.0=hb547adb_1 - libcbor=0.10.2=hb7217d7_0 @@ -84,7 +85,7 @@ dependencies: - ncurses=6.4=h463b476_2 - ninja=1.11.1=hffc8910_0 - openjdk=21.0.1=hed44d8b_0 - - openssl=3.2.0=h0d3ecfb_0 + - openssl=3.2.0=h0d3ecfb_1 - pari-seadata=0.0.20090618=0 - pcre2=10.40=hb34f9b4_0 - pixman=0.42.2=h13dd4ca_0 @@ -92,6 +93,7 @@ dependencies: - 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 @@ -136,7 +138,7 @@ dependencies: - lcms2=2.15=h481adae_0 - libbrial=1.2.12=ha7f5006_1 - libflint=2.9.0=h173eafc_ntl_100 - - libllvm16=16.0.1=h1e5164c_0 + - libllvm15=15.0.7=h62b9111_1 - libopenblas=0.3.25=openmp_h6c19121_0 - libwebp=1.2.4=h999c80f_1 - m4rie=20150908=h17b34a0_1001 @@ -159,11 +161,14 @@ dependencies: - 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 - charset-normalizer=3.3.2=pyhd8ed1ab_0 + - click=8.1.7=unix_pyh707e725_0 - colorama=0.4.6=pyhd8ed1ab_0 + - crashtest=0.4.1=pyhd8ed1ab_0 - cycler=0.12.1=pyhd8ed1ab_0 - cysignals=1.11.2=py311he42fc87_3 - cython=3.0.6=py311hbaf5611_0 @@ -171,7 +176,7 @@ dependencies: - decorator=5.1.1=pyhd8ed1ab_0 - defusedxml=0.7.1=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - - docutils=0.20.1=py311h267d04e_2 + - docutils=0.20.1=py311h267d04e_3 - eclib=20230424=haeb5157_0 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 @@ -194,16 +199,18 @@ dependencies: - jupyterlab_widgets=3.0.9=pyhd8ed1ab_0 - kiwisolver=1.4.5=py311he4fd1f5_1 - lcalc=2.0.5=hc94e8e6_1 - - ld64_osx-arm64=609=h297e91e_13 + - ld64_osx-arm64=609=hc4dc95b_15 - libblas=3.9.0=20_osxarm64_openblas - - libclang-cpp16=16.0.1=default_he7141eb_0 + - libclang-cpp15=15.0.7=default_hd209bcb_4 - libcurl=8.1.2=h912dcd9_0 - libgd=2.3.3=h90fb8ed_4 - - llvm-tools=16.0.1=h1e5164c_0 + - llvm-tools=15.0.7=h62b9111_1 - markupsafe=2.1.3=py311heffc1b2_1 - 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 - networkx=3.2.1=pyhd8ed1ab_0 @@ -212,11 +219,14 @@ dependencies: - 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.11.2=pyhd8ed1ab_0 - pickleshare=0.7.5=py_1003 - pillow=9.4.0=py311h627eb56_1 - 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 @@ -228,6 +238,7 @@ dependencies: - 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 @@ -238,24 +249,28 @@ dependencies: - python-tzdata=2023.3=pyhd8ed1ab_0 - pytz=2023.3.post1=pyhd8ed1ab_0 - pyyaml=6.0.1=py311heffc1b2_1 - - pyzmq=25.1.1=py311he9c0408_2 + - pyzmq=25.1.2=py311h6727e71_0 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.13.1=py311h94f323b_0 + - rpds-py=0.13.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 - singular=4.2.1.p3=h3b80c97_2 - 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.13.0=pyhd8ed1ab_0 - - trove-classifiers=2023.11.22=pyhd8ed1ab_0 + - traitlets=5.14.0=pyhd8ed1ab_0 + - trove-classifiers=2023.11.29=pyhd8ed1ab_0 - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 - typing_extensions=4.8.0=pyha770c72_0 - typing_utils=0.1.0=pyhd8ed1ab_0 @@ -265,7 +280,7 @@ dependencies: - wcwidth=0.2.12=pyhd8ed1ab_0 - webcolors=1.13=pyhd8ed1ab_0 - webencodings=0.5.1=pyhd8ed1ab_2 - - websocket-client=1.6.4=pyhd8ed1ab_0 + - websocket-client=1.7.0=pyhd8ed1ab_0 - wheel=0.42.0=pyhd8ed1ab_0 - widgetsnbextension=4.0.9=pyhd8ed1ab_0 - zipp=3.17.0=pyhd8ed1ab_0 @@ -277,23 +292,29 @@ dependencies: - 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=h7a0f565_13 + - cctools_osx-arm64=973.0.1=h2a25c60_15 - cffi=1.16.0=py311h4a08483_0 - - clang-16=16.0.1=default_he7141eb_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.45.1=py311h05b510d_0 + - fonttools=4.46.0=py311h05b510d_0 + - gitdb=4.0.11=pyhd8ed1ab_0 - harfbuzz=6.0.0=hddbc195_0 - - importlib-metadata=6.8.0=pyha770c72_0 + - html5lib=1.1=pyh9f0ad1d_0 + - importlib-metadata=7.0.0=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.0=py311h267d04e_0 - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 - - ld64=609=h634c8be_13 + - ld64=609=h89fa09d_15 - libcblas=3.9.0=20_osxarm64_openblas - liblapack=3.9.0=20_osxarm64_openblas - matplotlib-inline=0.1.6=pyhd8ed1ab_0 @@ -301,8 +322,7 @@ dependencies: - overrides=7.4.0=pyhd8ed1ab_0 - pexpect=4.8.0=pyh1a96a4e_2 - pip=23.3.1=pyhd8ed1ab_0 - - platformdirs=4.0.0=pyhd8ed1ab_0 - - pplpy=0.8.7=py311hb546c2d_0 + - pplpy=0.8.9=py311h5ba3760_0 - primecountpy=0.1.0=py311he4fd1f5_4 - prompt-toolkit=3.0.24=pyha770c72_0 - pybind11=2.11.1=py311he4fd1f5_2 @@ -311,48 +331,53 @@ dependencies: - pytest=7.4.3=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - pytz-deprecation-shim=0.1.0.post0=py311h267d04e_4 - - referencing=0.31.0=pyhd8ed1ab_0 + - referencing=0.31.1=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 + - ruamel.yaml=0.18.5=py311h05b510d_0 - sagemath-db-conway-polynomials=0.5.0=h4653dfc_1 - sympy=1.12=pypyh9d50eac_103 - terminado=0.18.0=pyh31c8845_0 - tinycss2=1.2.1=pyhd8ed1ab_0 - typing-extensions=4.8.0=hd8ed1ab_0 - - urllib3=2.1.0=pyhd8ed1ab_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.2=pyhd8ed1ab_0 - - cctools=973.0.1=h4faf515_13 - - clang=16.0.1=h1e5164c_0 + - cattrs=23.2.3=pyhd8ed1ab_0 + - cctools=973.0.1=hd1ac623_15 + - clang=15.0.7=haab561b_4 - dsdp=5.8=h9397a75_1203 - 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.18.0=pyhd8ed1ab_0 - iml=1.0.5=hd52f0d1_1003 - importlib-resources=6.1.1=pyhd8ed1ab_0 - - importlib_metadata=6.8.0=hd8ed1ab_0 - - jsonschema-specifications=2023.11.1=pyhd8ed1ab_0 - - jupyter_core=5.5.0=py311h267d04e_0 + - importlib_metadata=7.0.0=hd8ed1ab_0 + - jsonschema-specifications=2023.11.2=pyhd8ed1ab_0 - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1 - liblapacke=3.9.0=20_osxarm64_openblas - numpy=1.26.2=py311h6d074dd_0 - pango=1.50.14=h6c112b8_0 - prompt_toolkit=3.0.24=hd8ed1ab_0 + - pydantic-core=2.14.5=py311h94f323b_0 - pyobjc-framework-cocoa=10.0=py311hb702dc4_1 - 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=h7cd81ec_1 - - virtualenv=20.24.7=pyhd8ed1ab_0 - argon2-cffi=23.1.0=pyhd8ed1ab_0 - blas-devel=3.9.0=20_osxarm64_openblas - - clangxx=16.0.1=default_ha0f6327_0 + - cachecontrol=0.13.1=pyhd8ed1ab_0 + - clangxx=15.0.7=default_h5c94ee4_4 - contourpy=1.2.0=py311hd03642b_0 - cvxopt=1.3.2=py311hd76776f_1 + - ensureconda=1.4.3=pyhd8ed1ab_0 - fpylll=0.6.0=py311he33df0e_1 - giac=1.9.0.21=h1c96721_1 - igraph=0.9.10=hcec9b84_1 @@ -360,44 +385,53 @@ dependencies: - isoduration=20.11.0=pyhd8ed1ab_0 - jsonschema=4.20.0=pyhd8ed1ab_0 - jupyter_client=8.6.0=pyhd8ed1ab_0 + - keyring=24.3.0=py311h267d04e_0 - linbox=1.6.3=h549c411_7 - 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.3=pyhd8ed1ab_0 + - tox=4.11.4=pyhd8ed1ab_0 - blas=2.120=openblas - - compiler-rt_osx-arm64=16.0.1=h30b49de_0 + - 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.0=pyhd8ed1ab_0 + - pygls=1.2.1=pyhd8ed1ab_0 - rw=0.9=h3422bc3_0 - - compiler-rt=16.0.1=h30b49de_0 + - compiler-rt=15.0.7=h3808999_2 + - conda-lock=2.5.1=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_osx-arm64=16.0.1=hdccda30_1 - - nbconvert-core=7.11.0=pyhd8ed1ab_0 - - clangxx_osx-arm64=16.0.1=h0c1d50e_1 + - clang_impl_osx-arm64=15.0.7=h77e971b_6 + - nbconvert-core=7.12.0=pyhd8ed1ab_0 + - clang_osx-arm64=15.0.7=h54d7cd3_6 + - jupyter_server=2.12.1=pyhd8ed1ab_0 + - nbconvert-pandoc=7.12.0=pyhd8ed1ab_0 + - c-compiler=1.6.0=hd291e01_0 + - clangxx_impl_osx-arm64=15.0.7=h768a7fd_6 - gfortran_osx-arm64=12.3.0=h57527a5_1 - - jupyter_server=2.10.1=pyhd8ed1ab_0 - - nbconvert-pandoc=7.11.0=pyhd8ed1ab_0 - - gfortran=12.3.0=h1ca8e4b_1 - - jupyter-lsp=2.2.0=pyhd8ed1ab_0 + - jupyter-lsp=2.2.1=pyhd8ed1ab_0 - jupyterlab_server=2.25.2=pyhd8ed1ab_0 - - nbconvert=7.11.0=pyhd8ed1ab_0 + - nbconvert=7.12.0=pyhd8ed1ab_0 - notebook-shim=0.2.3=pyhd8ed1ab_0 + - clangxx_osx-arm64=15.0.7=h77e971b_6 + - 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 - - fortran-compiler=1.6.0=h5a50232_0 - - jupyterlab=4.0.9=pyhd8ed1ab_0 + - compilers=1.6.0=hce30654_0 - rpy2=3.5.11=py311r41h4add359_0 - - notebook=7.0.6=pyhd8ed1ab_0 - - esbonio=0.16.2=pyhd8ed1ab_0 + - esbonio=0.16.3=pyhd8ed1ab_0 - jupyter_sphinx=0.1.4=py_0 - sphinx-basic-ng=1.0.0b2=pyhd8ed1ab_1 - furo=2023.9.10=pyhd8ed1ab_0 diff --git a/src/environment-dev-3.11-macos.yml b/src/environment-dev-3.11-macos.yml index 451134eefc5..e49ad105be4 100644 --- a/src/environment-dev-3.11-macos.yml +++ b/src/environment-dev-3.11-macos.yml @@ -1,13 +1,14 @@ # Generated by conda-lock. # platform: osx-64 -# input_hash: f5044538ba92e3ff43e1a13d239dfbd2f33a0e7394ffeaae8116d7f47b628a9a +# input_hash: 1150a4bf7df9fbe67bc9377e0d38ade7a3455b25e71bf3e26dfb77b0f4220612 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.22.1=h10d778d_0 + - c-ares=1.23.0=h10d778d_0 - ca-certificates=2023.11.17=h8857fd0_0 - cliquer=1.22=hbcb3906_0 - font-ttf-dejavu-sans-mono=2.37=hab24e00_0 @@ -15,7 +16,7 @@ dependencies: - font-ttf-source-code-pro=2.038=h77eed37_0 - font-ttf-ubuntu=0.83=h77eed37_1 - fribidi=1.0.10=hbcb3906_0 - - gh=2.39.1=h990441c_0 + - gh=2.39.2=h990441c_0 - giflib=5.2.1=hb7f2c08_3 - icu=73.2=hf5e326d_0 - libatomic_ops=7.6.14=hb7f2c08_0 @@ -34,7 +35,7 @@ dependencies: - libuv=1.46.0=h0c2f820_0 - libwebp-base=1.3.2=h0dc2134_0 - libzlib=1.2.13=h8a1eda9_5 - - llvm-openmp=17.0.5=hb6ac08f_0 + - llvm-openmp=17.0.6=hb6ac08f_0 - m4=1.4.18=haf1e3a3_1001 - make=4.3=h22f3db7_1 - mathjax=3.2.2=h694c41f_0 @@ -73,7 +74,7 @@ dependencies: - graphite2=1.3.13=h2e338ed_1001 - isl=0.25=hb486fe8_0 - lerc=4.0.0=hb486fe8_0 - - libbraiding=1.1=h2e338ed_0 + - libbraiding=1.2=hf0c8a7f_0 - libbrotlidec=1.1.0=h0dc2134_1 - libbrotlienc=1.1.0=h0dc2134_1 - libcbor=0.10.2=hf0c8a7f_0 @@ -81,12 +82,12 @@ dependencies: - libpng=1.6.39=ha978bb4_0 - libsqlite=3.44.2=h92b6c6a_0 - libxcb=1.15=hb7f2c08_0 - - libxml2=2.11.6=hc0ae0f7_0 + - libxml2=2.12.2=hc0ae0f7_0 - lrcalc=2.1=hf0c8a7f_5 - ncurses=6.4=h93d8f39_2 - ninja=1.11.1=hb8565cd_0 - openjdk=21.0.1=hf4d7fad_0 - - openssl=3.2.0=hd75f5a5_0 + - openssl=3.2.0=hd75f5a5_1 - pandoc=3.1.3=h9d075a6_0 - pari-seadata=0.0.20090618=0 - pcre2=10.40=h1c4e4bc_0 @@ -96,6 +97,7 @@ dependencies: - 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 @@ -117,7 +119,7 @@ dependencies: - libgfortran=5.0.0=13_2_0_h97931a8_1 - libglib=2.78.1=h6d9ecee_0 - libhomfly=1.02r6=hc929b4f_0 - - libllvm16=16.0.6=he4b1e75_2 + - libllvm15=15.0.7=hbedff68_4 - libnghttp2=1.58.0=h64cf6d3_0 - libssh2=1.11.0=hd019ec5_0 - libtiff=4.6.0=h684deea_2 @@ -137,15 +139,15 @@ dependencies: - gap-core=4.12.2=hc16eb5f_3 - gfan=0.6.2=hd793b56_1003 - krb5=1.21.2=hb884880_0 - - lcms2=2.15=hd6ba6f3_3 - - ld64_osx-64=609=ha20a434_15 + - lcms2=2.16=ha2f27b4_0 + - ld64_osx-64=609=h0fd476b_15 - libboost-devel=1.83.0=h7728843_0 - libbrial=1.2.12=h8d08345_1 - - libclang-cpp16=16.0.6=default_h762fdd7_2 + - libclang-cpp15=15.0.7=default_h6b1ee41_4 - libflint=2.9.0=hfd2f71f_ntl_100 - libopenblas=0.3.25=openmp_hfef2a42_0 - libwebp=1.3.2=h44782d1_1 - - llvm-tools=16.0.6=he4b1e75_2 + - llvm-tools=15.0.7=hbedff68_4 - m4rie=20150908=h3f75d11_1001 - mpc=1.3.1=h81bd1dd_0 - mpfi=1.5.4=h52b28e3_1001 @@ -166,13 +168,16 @@ dependencies: - 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=ha1c5b94_15 + - cctools_osx-64=973.0.1=habff3f6_15 - certifi=2023.11.17=pyhd8ed1ab_0 - chardet=5.2.0=py311h6eed73b_1 - charset-normalizer=3.3.2=pyhd8ed1ab_0 - - clang-16=16.0.6=default_h762fdd7_2 + - clang-15=15.0.7=default_h6b1ee41_4 + - click=8.1.7=unix_pyh707e725_0 - colorama=0.4.6=pyhd8ed1ab_0 + - crashtest=0.4.1=pyhd8ed1ab_0 - cycler=0.12.1=pyhd8ed1ab_0 - cysignals=1.11.2=py311h8a58447_3 - cython=3.0.6=py311hd39e593_0 @@ -180,7 +185,7 @@ dependencies: - decorator=5.1.1=pyhd8ed1ab_0 - defusedxml=0.7.1=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - - docutils=0.20.1=py311h6eed73b_2 + - docutils=0.20.1=py311h6eed73b_3 - eclib=20230424=hd00e801_0 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 @@ -203,14 +208,16 @@ dependencies: - jupyterlab_widgets=3.0.9=pyhd8ed1ab_0 - kiwisolver=1.4.5=py311h5fe6e05_1 - lcalc=2.0.5=h3a941db_1 - - ld64=609=ha02d983_15 + - ld64=609=ha91a046_15 - libblas=3.9.0=20_osx64_openblas - - libcurl=8.4.0=h726d00d_0 + - libcurl=8.5.0=h726d00d_0 - libgd=2.3.3=h0dceb68_9 - markupsafe=2.1.3=py311h2725bcf_1 - - maxima=5.45.0=hd029580_3 + - maxima=5.46.0=h2b27fa8_0 - 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 - networkx=3.2.1=pyhd8ed1ab_0 @@ -219,11 +226,14 @@ dependencies: - 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.11.2=pyhd8ed1ab_0 - pickleshare=0.7.5=py_1003 - pillow=10.1.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 @@ -235,6 +245,7 @@ dependencies: - 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 @@ -245,24 +256,28 @@ dependencies: - python-tzdata=2023.3=pyhd8ed1ab_0 - pytz=2023.3.post1=pyhd8ed1ab_0 - pyyaml=6.0.1=py311h2725bcf_1 - - pyzmq=25.1.1=py311he3804a1_2 + - pyzmq=25.1.2=py311h889d6d6_0 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.13.1=py311h5e0f0e4_0 + - rpds-py=0.13.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 - singular=4.2.1.p3=hac851df_2 - 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.13.0=pyhd8ed1ab_0 - - trove-classifiers=2023.11.22=pyhd8ed1ab_0 + - traitlets=5.14.0=pyhd8ed1ab_0 + - trove-classifiers=2023.11.29=pyhd8ed1ab_0 - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 - typing_extensions=4.8.0=pyha770c72_0 - typing_utils=0.1.0=pyhd8ed1ab_0 @@ -272,7 +287,7 @@ dependencies: - wcwidth=0.2.12=pyhd8ed1ab_0 - webcolors=1.13=pyhd8ed1ab_0 - webencodings=0.5.1=pyhd8ed1ab_2 - - websocket-client=1.6.4=pyhd8ed1ab_0 + - websocket-client=1.7.0=pyhd8ed1ab_0 - wheel=0.42.0=pyhd8ed1ab_0 - widgetsnbextension=4.0.9=pyhd8ed1ab_0 - zipp=3.17.0=pyhd8ed1ab_0 @@ -284,21 +299,27 @@ dependencies: - beniget=0.4.1=pyhd8ed1ab_0 - bleach=6.1.0=pyhd8ed1ab_0 - cached-property=1.5.2=hd8ed1ab_1 - - cctools=973.0.1=h40f6528_15 + - cctools=973.0.1=hd9ad811_15 - cffi=1.16.0=py311hc0b63fd_0 - - clang=16.0.6=hc177806_2 - - cmake=3.27.8=hc7ee4c4_0 + - clang=15.0.7=hac416ee_4 + - click-default-group=1.2.4=pyhd8ed1ab_0 + - clikit=0.6.2=pyhd8ed1ab_2 + - cmake=3.28.0=hc7ee4c4_0 - comm=0.1.4=pyhd8ed1ab_0 - cppy=1.2.1=pyhd8ed1ab_0 - - curl=8.4.0=h726d00d_0 + - curl=8.5.0=h726d00d_0 - cypari2=2.1.3=py311h7d823c7_2 - deprecation=2.1.0=pyh9f0ad1d_0 - - fonttools=4.45.1=py311he705e18_0 + - fonttools=4.46.0=py311he705e18_0 + - gitdb=4.0.11=pyhd8ed1ab_0 - harfbuzz=8.3.0=hf45c392_0 - - importlib-metadata=6.8.0=pyha770c72_0 + - html5lib=1.1=pyh9f0ad1d_0 + - importlib-metadata=7.0.0=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.0=py311h6eed73b_0 - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 - libcblas=3.9.0=20_osx64_openblas - liblapack=3.9.0=20_osx64_openblas @@ -307,8 +328,7 @@ dependencies: - overrides=7.4.0=pyhd8ed1ab_0 - pexpect=4.8.0=pyh1a96a4e_2 - pip=23.3.1=pyhd8ed1ab_0 - - platformdirs=4.0.0=pyhd8ed1ab_0 - - pplpy=0.8.7=py311h47e80fe_0 + - pplpy=0.8.9=py311h7355a2a_0 - primecountpy=0.1.0=py311h5fe6e05_4 - prompt-toolkit=3.0.24=pyha770c72_0 - pybind11=2.11.1=py311h5fe6e05_2 @@ -317,90 +337,102 @@ dependencies: - pytest=7.4.3=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - pytz-deprecation-shim=0.1.0.post0=py311h6eed73b_4 - - referencing=0.31.0=pyhd8ed1ab_0 + - referencing=0.31.1=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 + - ruamel.yaml=0.18.5=py311he705e18_0 - sagemath-db-conway-polynomials=0.5.0=h033912b_1 - sympy=1.12=pypyh9d50eac_103 - terminado=0.18.0=pyh31c8845_0 - tinycss2=1.2.1=pyhd8ed1ab_0 - typing-extensions=4.8.0=hd8ed1ab_0 - - urllib3=2.1.0=pyhd8ed1ab_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 - arrow=1.3.0=pyhd8ed1ab_0 - - cattrs=23.2.2=pyhd8ed1ab_0 - - clangxx=16.0.6=default_h762fdd7_2 + - cattrs=23.2.3=pyhd8ed1ab_0 + - clangxx=15.0.7=default_h6b1ee41_4 - dsdp=5.8=h6e329d1_1203 - 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.18.0=pyhd8ed1ab_0 - iml=1.0.5=h64b42ca_1003 - importlib-resources=6.1.1=pyhd8ed1ab_0 - - importlib_metadata=6.8.0=hd8ed1ab_0 - - jsonschema-specifications=2023.11.1=pyhd8ed1ab_0 - - jupyter_core=5.5.0=py311h6eed73b_0 + - importlib_metadata=7.0.0=hd8ed1ab_0 + - jsonschema-specifications=2023.11.2=pyhd8ed1ab_0 - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1 - liblapacke=3.9.0=20_osx64_openblas - numpy=1.26.2=py311h93c810c_0 - pango=1.50.14=h19c1c8a_2 - prompt_toolkit=3.0.24=hd8ed1ab_0 + - pydantic-core=2.14.5=py311h5e0f0e4_0 - pyobjc-framework-cocoa=10.0=py311hf110eff_1 - 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=h7aff33d_1 - - virtualenv=20.24.7=pyhd8ed1ab_0 - argon2-cffi=23.1.0=pyhd8ed1ab_0 - blas-devel=3.9.0=20_osx64_openblas - - compiler-rt_osx-64=16.0.6=he1888fc_1 + - cachecontrol=0.13.1=pyhd8ed1ab_0 + - compiler-rt_osx-64=15.0.7=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 - giac=1.9.0.21=h92f3f65_1 - ipython=8.8.0=pyhd1c38e8_0 - isoduration=20.11.0=pyhd8ed1ab_0 - jsonschema=4.20.0=pyhd8ed1ab_0 - jupyter_client=8.6.0=pyhd8ed1ab_0 + - keyring=24.3.0=py311h6eed73b_0 - linbox=1.6.3=hdde8d14_7 - 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.3=pyhd8ed1ab_0 + - tox=4.11.4=pyhd8ed1ab_0 - blas=2.120=openblas - - compiler-rt=16.0.6=he1888fc_1 + - 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.0=pyhd8ed1ab_0 - - clang_impl_osx-64=16.0.6=h8787910_6 + - pygls=1.2.1=pyhd8ed1ab_0 + - clang_impl_osx-64=15.0.7=h03d6864_6 + - conda-lock=2.5.1=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=16.0.6=hb91bd55_6 - - nbconvert-core=7.11.0=pyhd8ed1ab_0 - - clangxx_impl_osx-64=16.0.6=h1b7723c_6 + - clang_osx-64=15.0.7=hb91bd55_6 + - nbconvert-core=7.12.0=pyhd8ed1ab_0 + - c-compiler=1.6.0=h63c33a9_0 + - clangxx_impl_osx-64=15.0.7=h3d2d1bf_6 - gfortran_osx-64=12.3.0=h18f7dce_1 - - jupyter_server=2.10.1=pyhd8ed1ab_0 - - nbconvert-pandoc=7.11.0=pyhd8ed1ab_0 - - clangxx_osx-64=16.0.6=h2fff7d5_6 + - jupyter_server=2.12.1=pyhd8ed1ab_0 + - nbconvert-pandoc=7.12.0=pyhd8ed1ab_0 + - clangxx_osx-64=15.0.7=h655633e_6 - gfortran=12.3.0=h2c809b3_1 - - jupyter-lsp=2.2.0=pyhd8ed1ab_0 + - jupyter-lsp=2.2.1=pyhd8ed1ab_0 - jupyterlab_server=2.25.2=pyhd8ed1ab_0 - - nbconvert=7.11.0=pyhd8ed1ab_0 + - nbconvert=7.12.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.2=hf996cbc_0 + - 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.2=pyhd8ed1ab_0 + - esbonio=0.16.3=pyhd8ed1ab_0 - jupyter_sphinx=0.4.0=py311h6eed73b_1 - sphinx-basic-ng=1.0.0b2=pyhd8ed1ab_1 - furo=2023.9.10=pyhd8ed1ab_0 diff --git a/src/environment-dev-3.9-linux-aarch64.yml b/src/environment-dev-3.9-linux-aarch64.yml index bf733635f6d..c6943bae3df 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: 99c44983fb102a9c8d2e3d4de2a8ecb1413190e731fbfac063f23bdf99bce05f +# input_hash: 10b7d40894f209a147b1d988d6a53c725a4faafa1c485e6c714b72fec8fefe3a channels: - conda-forge @@ -12,7 +12,7 @@ dependencies: - 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.39.1=h652cbe9_0 + - gh=2.39.2=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 @@ -43,9 +43,10 @@ dependencies: - 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 - bdw-gc=8.0.6=hd62202e_0 - bzip2=1.0.8=h31becfc_5 - - c-ares=1.22.1=h31becfc_0 + - c-ares=1.23.0=h31becfc_0 - cliquer=1.22=hb9de7d4_0 - fribidi=1.0.10=hb9de7d4_0 - gengetopt=2.23=h01db608_0 @@ -59,7 +60,7 @@ dependencies: - keyutils=1.6.1=h4e544f5_0 - lerc=4.0.0=h4de3ea5_0 - libatomic_ops=7.6.14=h4e544f5_0 - - libbraiding=1.1=h7fd3ca4_0 + - libbraiding=1.2=hd600fc2_0 - libbrotlicommon=1.1.0=h31becfc_1 - libcbor=0.9.0=h01db608_0 - libdeflate=1.17=hb4cce97_0 @@ -83,7 +84,7 @@ dependencies: - nauty=2.7.2=hf897c2e_0 - ncurses=6.4=h0425590_2 - ninja=1.11.1=hdd96247_0 - - openssl=3.2.0=h31becfc_0 + - openssl=3.2.0=h31becfc_1 - palp=2.20=hb9de7d4_0 - patch=2.7.6=hf897c2e_1002 - pixman=0.42.2=h2f0025b_0 @@ -130,6 +131,7 @@ dependencies: - perl=5.32.1=4_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 @@ -156,7 +158,7 @@ dependencies: - libopenblas=0.3.25=pthreads_h5a5ec62_0 - libtiff=4.5.0=h4c1066a_2 - libudev1=254=h31becfc_0 - - llvm-openmp=17.0.5=h8b0cb96_0 + - llvm-openmp=17.0.6=h8b0cb96_0 - m4ri=20140914=h75e8696_1005 - mpc=1.3.1=hf4c8f4c_0 - mpfi=1.5.4=h846f343_1001 @@ -181,18 +183,22 @@ dependencies: - 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 - charset-normalizer=3.3.2=pyhd8ed1ab_0 + - click=8.1.7=unix_pyh707e725_0 - colorama=0.4.6=pyhd8ed1ab_0 + - crashtest=0.4.1=pyhd8ed1ab_0 - cycler=0.12.1=pyhd8ed1ab_0 - cysignals=1.11.2=py39hfa81392_3 - cython=3.0.6=py39h387a81e_0 + - dbus=1.13.6=h12b9eeb_3 - debugpy=1.8.0=py39h387a81e_1 - decorator=5.1.1=pyhd8ed1ab_0 - defusedxml=0.7.1=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - - docutils=0.20.1=py39ha65689a_2 + - docutils=0.20.1=py39ha65689a_3 - eclib=20230424=h0bc7b0f_0 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 @@ -208,11 +214,13 @@ dependencies: - 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 @@ -227,9 +235,11 @@ dependencies: - libwebp=1.2.4=h7bdf6e5_1 - m4rie=20150908=h75e8696_1001 - markupsafe=2.1.3=py39h7cc1d5f_1 - - maxima=5.45.0=haa44c19_3 + - maxima=5.46.0=h6475f26_0 - 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 - networkx=3.2.1=pyhd8ed1ab_0 @@ -238,10 +248,13 @@ dependencies: - 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.11.2=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 @@ -253,6 +266,7 @@ dependencies: - 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 @@ -263,9 +277,10 @@ dependencies: - python-tzdata=2023.3=pyhd8ed1ab_0 - pytz=2023.3.post1=pyhd8ed1ab_0 - pyyaml=6.0.1=py39h898b7ef_1 - - pyzmq=25.1.1=py39hbab03a2_2 + - pyzmq=25.1.2=py39hbab03a2_0 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.13.1=py39hfe8b3a4_0 + - rpds-py=0.13.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 @@ -273,6 +288,7 @@ dependencies: - simplegeneric=0.8.1=py_1 - singular=4.2.1.p3=h3d4c4c6_2 - 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 @@ -280,9 +296,11 @@ dependencies: - 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.13.0=pyhd8ed1ab_0 - - trove-classifiers=2023.11.22=pyhd8ed1ab_0 + - traitlets=5.14.0=pyhd8ed1ab_0 + - trove-classifiers=2023.11.29=pyhd8ed1ab_0 - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 - typing_extensions=4.8.0=pyha770c72_0 - typing_utils=0.1.0=pyhd8ed1ab_0 @@ -293,7 +311,7 @@ dependencies: - wcwidth=0.2.12=pyhd8ed1ab_0 - webcolors=1.13=pyhd8ed1ab_0 - webencodings=0.5.1=pyhd8ed1ab_2 - - websocket-client=1.6.4=pyhd8ed1ab_0 + - websocket-client=1.7.0=pyhd8ed1ab_0 - wheel=0.42.0=pyhd8ed1ab_0 - widgetsnbextension=4.0.9=pyhd8ed1ab_0 - xorg-libxext=1.3.4=h2a766a3_2 @@ -312,18 +330,25 @@ dependencies: - 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 + - cxx-compiler=1.6.0=h2a328a1_0 - cypari2=2.1.3=py39h532d932_2 - deprecation=2.1.0=pyh9f0ad1d_0 - - fonttools=4.45.1=py39h898b7ef_0 + - fonttools=4.46.0=py39h898b7ef_0 - fortran-compiler=1.6.0=h7048d53_0 - - importlib-metadata=6.8.0=pyha770c72_0 + - gitdb=4.0.11=pyhd8ed1ab_0 + - html5lib=1.1=pyh9f0ad1d_0 + - importlib-metadata=7.0.0=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.0=py39h4420490_0 - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 - libcblas=3.9.0=20_linuxaarch64_openblas - libgd=2.3.3=h99c6b3b_4 @@ -335,8 +360,7 @@ dependencies: - pexpect=4.8.0=pyh1a96a4e_2 - pillow=9.4.0=py39h72365ce_1 - pip=23.3.1=pyhd8ed1ab_0 - - platformdirs=4.0.0=pyhd8ed1ab_0 - - pplpy=0.8.7=py39h087fc0e_0 + - pplpy=0.8.9=py39h087fc0e_0 - primecountpy=0.1.0=py39hd16970a_3 - prompt-toolkit=3.0.24=pyha770c72_0 - pybind11=2.11.1=py39hd16970a_2 @@ -344,46 +368,53 @@ dependencies: - pytest=7.4.3=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - pytz-deprecation-shim=0.1.0.post0=py39h4420490_4 - - referencing=0.31.0=pyhd8ed1ab_0 + - referencing=0.31.1=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 + - ruamel.yaml=0.18.5=py39h898b7ef_0 - sagemath-db-conway-polynomials=0.5.0=h4fd8a4c_1 - sympy=1.12=pypyh9d50eac_103 - terminado=0.18.0=pyh0d859eb_0 - tinycss2=1.2.1=pyhd8ed1ab_0 - typing-extensions=4.8.0=hd8ed1ab_0 - - urllib3=2.1.0=pyhd8ed1ab_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.2=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 - 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.18.0=pyhd8ed1ab_0 - iml=1.0.5=h9076c59_1003 - importlib-resources=6.1.1=pyhd8ed1ab_0 - - importlib_metadata=6.8.0=hd8ed1ab_0 - - jsonschema-specifications=2023.11.1=pyhd8ed1ab_0 - - jupyter_core=5.5.0=py39h4420490_0 + - importlib_metadata=7.0.0=hd8ed1ab_0 + - jsonschema-specifications=2023.11.2=pyhd8ed1ab_0 - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1 - liblapacke=3.9.0=20_linuxaarch64_openblas - numpy=1.26.2=py39h91c28bb_0 - prompt_toolkit=3.0.24=hd8ed1ab_0 + - pydantic-core=2.14.5=py39hf916c31_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 - - virtualenv=20.24.7=pyhd8ed1ab_0 - 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 - giac=1.9.0.21=h04922a4_1 - igraph=0.9.10=hefb87a8_1 @@ -395,35 +426,40 @@ dependencies: - 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.3=pyhd8ed1ab_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.0=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 - 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.11.0=pyhd8ed1ab_0 - - jupyter_server=2.10.1=pyhd8ed1ab_0 - - nbconvert-pandoc=7.11.0=pyhd8ed1ab_0 - - jupyter-lsp=2.2.0=pyhd8ed1ab_0 + - nbconvert-core=7.12.0=pyhd8ed1ab_0 + - jupyter_server=2.12.1=pyhd8ed1ab_0 + - nbconvert-pandoc=7.12.0=pyhd8ed1ab_0 + - jupyter-lsp=2.2.1=pyhd8ed1ab_0 - jupyterlab_server=2.25.2=pyhd8ed1ab_0 - - nbconvert=7.11.0=pyhd8ed1ab_0 + - nbconvert=7.12.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.2=pyhd8ed1ab_0 + - esbonio=0.16.3=pyhd8ed1ab_0 - jupyter_sphinx=0.1.4=py_0 - sphinx-basic-ng=1.0.0b2=pyhd8ed1ab_1 - furo=2023.9.10=pyhd8ed1ab_0 diff --git a/src/environment-dev-3.9-linux.yml b/src/environment-dev-3.9-linux.yml index 4c2015d6308..d14cc0c53fd 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: 70419024fc9f59fff9d09abe9e85b6e5c3afcdedd2dbe4caf6c174fe743d187b +# input_hash: fb0cfa32250948c5786876fece25bce6597aeb61f0f486f7ae594bb06e18c11c channels: - conda-forge @@ -12,7 +12,7 @@ dependencies: - 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.39.1=ha8f183a_0 + - gh=2.39.2=ha8f183a_0 - kernel-headers_linux-64=2.6.32=he073ed8_16 - ld_impl_linux-64=2.40=h41732ed_0 - libboost-headers=1.83.0=ha770c72_0 @@ -43,9 +43,10 @@ dependencies: - 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 - bdw-gc=8.0.6=h4bd325d_0 - bzip2=1.0.8=hd590300_5 - - c-ares=1.22.1=hd590300_0 + - c-ares=1.23.0=hd590300_0 - cliquer=1.22=h36c2ea0_0 - fribidi=1.0.10=h36c2ea0_0 - gengetopt=2.23=h9c3ff4c_0 @@ -59,7 +60,7 @@ dependencies: - lame=3.100=h166bdaf_1003 - lerc=4.0.0=h27087fc_0 - libatomic_ops=7.6.14=h166bdaf_0 - - libbraiding=1.1=h58526e2_0 + - libbraiding=1.2=hcb278e6_0 - libbrotlicommon=1.1.0=hd590300_1 - libcbor=0.10.2=hcb278e6_0 - libdeflate=1.19=hd590300_0 @@ -89,7 +90,7 @@ dependencies: - ncurses=6.4=h59595ed_2 - ninja=1.11.1=h924138e_0 - nspr=4.35=h27087fc_0 - - openssl=3.2.0=hd590300_0 + - openssl=3.1.4=hd590300_0 - palp=2.20=h36c2ea0_0 - patch=2.7.6=h7f98852_1002 - pixman=0.42.2=h59595ed_0 @@ -142,6 +143,7 @@ dependencies: - perl=5.32.1=4_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 @@ -164,7 +166,7 @@ dependencies: - krb5=1.21.2=h659d440_0 - libboost=1.83.0=h6fcfa73_0 - libflint=2.9.0=h2f819a4_ntl_100 - - libgcrypt=1.10.2=hd590300_0 + - libgcrypt=1.10.3=hd590300_0 - libglib=2.78.1=hebfc3b9_0 - libhwloc=2.9.3=default_h554bfaf_1009 - libllvm15=15.0.7=h5cf9203_3 @@ -172,12 +174,12 @@ dependencies: - libsndfile=1.2.2=hc60ed4a_1 - libtiff=4.6.0=ha9c0a0a_2 - libudev1=254=h3f72095_0 - - llvm-openmp=17.0.5=h4dfa4b3_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.94=h1d7d5a4_0 + - nss=3.95=h1d7d5a4_0 - pandoc=3.1.3=h32600fe_0 - pari=2.15.4=h4d4ae9b_2_pthread - ppl=1.2=h6ec01c2_1006 @@ -204,10 +206,13 @@ dependencies: - 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 - charset-normalizer=3.3.2=pyhd8ed1ab_0 + - click=8.1.7=unix_pyh707e725_0 - colorama=0.4.6=pyhd8ed1ab_0 + - crashtest=0.4.1=pyhd8ed1ab_0 - cycler=0.12.1=pyhd8ed1ab_0 - cysignals=1.11.2=py39h1ce0973_3 - cython=3.0.6=py39h3d6467e_0 @@ -216,7 +221,7 @@ dependencies: - decorator=5.1.1=pyhd8ed1ab_0 - defusedxml=0.7.1=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - - docutils=0.20.1=py39hf3d152e_2 + - docutils=0.20.1=py39hf3d152e_3 - eclib=20230424=hdef1efb_0 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 @@ -233,21 +238,23 @@ dependencies: - gfortran_linux-64=12.3.0=h7fe76b4_2 - glib-tools=2.78.1=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 - kiwisolver=1.4.5=py39h7633fee_1 - lcalc=2.0.5=h6a8a7c6_1 - - lcms2=2.15=hb7c19ff_3 + - lcms2=2.16=hb7c19ff_0 - libblas=3.9.0=20_linux64_openblas - libboost-devel=1.83.0=h00ab1b0_0 - libbrial=1.2.12=h3155cbd_1 - - libclang13=15.0.7=default_h9986a30_3 + - libclang13=15.0.7=default_ha2b6cf4_4 - libcups=2.3.3=h4637d8d_4 - libcurl=8.4.0=hca28451_0 - libfido2=1.14.0=h4446dcb_0 @@ -256,9 +263,11 @@ dependencies: - libwebp=1.3.2=h658648e_1 - m4rie=20150908=h7ca028e_1001 - markupsafe=2.1.3=py39hd1e30aa_1 - - maxima=5.45.0=h9d73b02_3 + - maxima=5.46.0=hed6455c_0 - 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 - networkx=3.2.1=pyhd8ed1ab_0 @@ -267,10 +276,13 @@ dependencies: - 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.11.2=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 @@ -282,6 +294,7 @@ dependencies: - 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 @@ -292,9 +305,10 @@ dependencies: - python-tzdata=2023.3=pyhd8ed1ab_0 - pytz=2023.3.post1=pyhd8ed1ab_0 - pyyaml=6.0.1=py39hd1e30aa_1 - - pyzmq=25.1.1=py39h8c080ef_2 + - pyzmq=25.1.2=py39h8c080ef_0 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.13.1=py39h9fdd4d6_0 + - rpds-py=0.13.2=py39h9fdd4d6_0 + - ruamel.yaml.clib=0.2.7=py39hd1e30aa_2 - rw=0.8=h516909a_1001 - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 - sagetex=3.6.1=pyhd8ed1ab_0 @@ -303,6 +317,7 @@ dependencies: - simplegeneric=0.8.1=py_1 - singular=4.2.1.p3=h1ea75ed_2 - 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 @@ -311,9 +326,11 @@ dependencies: - tbb=2021.10.0=h00ab1b0_2 - 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.13.0=pyhd8ed1ab_0 - - trove-classifiers=2023.11.22=pyhd8ed1ab_0 + - traitlets=5.14.0=pyhd8ed1ab_0 + - trove-classifiers=2023.11.29=pyhd8ed1ab_0 - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 - typing_extensions=4.8.0=pyha770c72_0 - typing_utils=0.1.0=pyhd8ed1ab_0 @@ -324,7 +341,7 @@ dependencies: - wcwidth=0.2.12=pyhd8ed1ab_0 - webcolors=1.13=pyhd8ed1ab_0 - webencodings=0.5.1=pyhd8ed1ab_2 - - websocket-client=1.6.4=pyhd8ed1ab_0 + - websocket-client=1.7.0=pyhd8ed1ab_0 - wheel=0.42.0=pyhd8ed1ab_0 - widgetsnbextension=4.0.9=pyhd8ed1ab_0 - xcb-util-image=0.4.0=h8ee46fc_1 @@ -346,22 +363,29 @@ dependencies: - cached-property=1.5.2=hd8ed1ab_1 - cairo=1.18.0=h3faef2a_0 - cffi=1.16.0=py39h7a31438_0 - - cmake=3.27.8=hcfe8598_0 + - click-default-group=1.2.4=pyhd8ed1ab_0 + - clikit=0.6.2=pyhd8ed1ab_2 + - cmake=3.27.9=hcfe8598_0 - comm=0.1.4=pyhd8ed1ab_0 - cppy=1.2.1=pyhd8ed1ab_0 - curl=8.4.0=hca28451_0 + - cxx-compiler=1.6.0=h00ab1b0_0 - cypari2=2.1.3=py39h1698a45_2 - deprecation=2.1.0=pyh9f0ad1d_0 - - fonttools=4.45.1=py39hd1e30aa_0 + - fonttools=4.46.0=py39hd1e30aa_0 - fortran-compiler=1.6.0=heb67821_0 + - gitdb=4.0.11=pyhd8ed1ab_0 - glib=2.78.1=hfc55251_0 - - importlib-metadata=6.8.0=pyha770c72_0 + - html5lib=1.1=pyh9f0ad1d_0 + - importlib-metadata=7.0.0=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.0=py39hf3d152e_0 - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 - libcblas=3.9.0=20_linux64_openblas - - libclang=15.0.7=default_h7634d5b_3 + - 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 @@ -372,8 +396,7 @@ dependencies: - pexpect=4.8.0=pyh1a96a4e_2 - pillow=10.1.0=py39had0adad_0 - pip=23.3.1=pyhd8ed1ab_0 - - platformdirs=4.0.0=pyhd8ed1ab_0 - - pplpy=0.8.7=py39hba3e9e5_0 + - pplpy=0.8.9=py39hba3e9e5_0 - primecountpy=0.1.0=py39h7633fee_4 - prompt-toolkit=3.0.24=pyha770c72_0 - pulseaudio-client=16.1=hb77b528_5 @@ -382,48 +405,55 @@ dependencies: - pytest=7.4.3=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - pytz-deprecation-shim=0.1.0.post0=py39hf3d152e_4 - - referencing=0.31.0=pyhd8ed1ab_0 + - referencing=0.31.1=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 + - ruamel.yaml=0.18.5=py39hd1e30aa_0 - sagemath-db-conway-polynomials=0.5.0=ha878542_1 - 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.8.0=hd8ed1ab_0 - - urllib3=2.1.0=pyhd8ed1ab_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 - arrow=1.3.0=pyhd8ed1ab_0 - - cattrs=23.2.2=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.42.0=pl5321h86e50cf_0 + - gitpython=3.1.40=pyhd8ed1ab_0 - gsl=2.7=he838d99_0 - gstreamer=1.22.7=h98fc4e7_0 - harfbuzz=8.3.0=h3d44ed6_0 - hatchling=1.18.0=pyhd8ed1ab_0 - iml=1.0.5=hd75c201_1003 - importlib-resources=6.1.1=pyhd8ed1ab_0 - - importlib_metadata=6.8.0=hd8ed1ab_0 - - jsonschema-specifications=2023.11.1=pyhd8ed1ab_0 - - jupyter_core=5.5.0=py39hf3d152e_0 + - importlib_metadata=7.0.0=hd8ed1ab_0 + - jsonschema-specifications=2023.11.2=pyhd8ed1ab_0 - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1 - liblapacke=3.9.0=20_linux64_openblas - numpy=1.26.2=py39h474f0d3_0 - prompt_toolkit=3.0.24=hd8ed1ab_0 + - pydantic-core=2.14.5=py39h9fdd4d6_0 - pyqt5-sip=12.12.2=py39h3d6467e_5 - 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=h9e50725_1 - - virtualenv=20.24.7=pyhd8ed1ab_0 - 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 - giac=1.9.0.21=h673759e_1 - gst-plugins-base=1.22.7=h8e1006c_0 @@ -435,36 +465,41 @@ dependencies: - 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.3=pyhd8ed1ab_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.0=pyhd8ed1ab_0 + - pygls=1.2.1=pyhd8ed1ab_0 - qt-main=5.15.8=h82b777d_17 - r-base=4.3.2=h93585b2_0 + - conda-lock=2.5.1=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.11.0=pyhd8ed1ab_0 - - jupyter_server=2.10.1=pyhd8ed1ab_0 - - nbconvert-pandoc=7.11.0=pyhd8ed1ab_0 - - jupyter-lsp=2.2.0=pyhd8ed1ab_0 + - nbconvert-core=7.12.0=pyhd8ed1ab_0 + - jupyter_server=2.12.1=pyhd8ed1ab_0 + - nbconvert-pandoc=7.12.0=pyhd8ed1ab_0 + - jupyter-lsp=2.2.1=pyhd8ed1ab_0 - jupyterlab_server=2.25.2=pyhd8ed1ab_0 - - nbconvert=7.11.0=pyhd8ed1ab_0 + - nbconvert=7.12.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.2=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 diff --git a/src/environment-dev-3.9-macos-arm64.yml b/src/environment-dev-3.9-macos-arm64.yml index d1ea4b6e8ac..3f0cb9e3bdd 100644 --- a/src/environment-dev-3.9-macos-arm64.yml +++ b/src/environment-dev-3.9-macos-arm64.yml @@ -1,13 +1,14 @@ # Generated by conda-lock. # platform: osx-arm64 -# input_hash: 884dc9dbdc4d48a49dfbf58e989445ee37529c22ad468a9e39a9000ccb825e5b +# input_hash: d30c1926d1ba48f011cf40b43a8b34a9e2163a008456fc69fc5649dc39ca62eb 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.22.1=h93a5062_0 + - c-ares=1.23.0=h93a5062_0 - ca-certificates=2023.11.17=hf0a4a13_0 - cliquer=1.22=h27ca646_0 - font-ttf-dejavu-sans-mono=2.37=hab24e00_0 @@ -15,7 +16,7 @@ dependencies: - font-ttf-source-code-pro=2.038=h77eed37_0 - font-ttf-ubuntu=0.83=h77eed37_1 - fribidi=1.0.10=h27ca646_0 - - gh=2.39.1=h75b854d_0 + - gh=2.39.2=h75b854d_0 - giflib=5.2.1=h1a8c8d9_3 - jpeg=9e=h1a8c8d9_3 - libatomic_ops=7.6.14=h1a8c8d9_0 @@ -32,7 +33,7 @@ dependencies: - libuv=1.46.0=hb547adb_0 - libwebp-base=1.2.4=h1a8c8d9_0 - libzlib=1.2.13=h53f4e23_5 - - llvm-openmp=17.0.5=hcd81f8e_0 + - llvm-openmp=17.0.6=hcd81f8e_0 - m4=1.4.18=h642e427_1001 - make=4.3=he57ea6c_1 - mathjax=3.2.2=hce30654_0 @@ -72,7 +73,7 @@ dependencies: - icu=70.1=h6b3803e_0 - isl=0.25=h9a09cb3_0 - lerc=4.0.0=h9a09cb3_0 - - libbraiding=1.1=h9f76cd9_0 + - libbraiding=1.2=hb7217d7_0 - libbrotlidec=1.1.0=hb547adb_1 - libbrotlienc=1.1.0=hb547adb_1 - libcbor=0.10.2=hb7217d7_0 @@ -84,7 +85,7 @@ dependencies: - ncurses=6.4=h463b476_2 - ninja=1.11.1=hffc8910_0 - openjdk=21.0.1=hed44d8b_0 - - openssl=3.2.0=h0d3ecfb_0 + - openssl=3.2.0=h0d3ecfb_1 - pari-seadata=0.0.20090618=0 - pcre2=10.40=hb34f9b4_0 - pixman=0.42.2=h13dd4ca_0 @@ -92,6 +93,7 @@ dependencies: - 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 @@ -136,7 +138,7 @@ dependencies: - lcms2=2.15=h481adae_0 - libbrial=1.2.12=ha7f5006_1 - libflint=2.9.0=h173eafc_ntl_100 - - libllvm16=16.0.1=h1e5164c_0 + - libllvm15=15.0.7=h62b9111_1 - libopenblas=0.3.25=openmp_h6c19121_0 - libwebp=1.2.4=h999c80f_1 - m4rie=20150908=h17b34a0_1001 @@ -159,11 +161,14 @@ dependencies: - 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 - charset-normalizer=3.3.2=pyhd8ed1ab_0 + - click=8.1.7=unix_pyh707e725_0 - colorama=0.4.6=pyhd8ed1ab_0 + - crashtest=0.4.1=pyhd8ed1ab_0 - cycler=0.12.1=pyhd8ed1ab_0 - cysignals=1.11.2=py39h65fc70a_3 - cython=3.0.6=py39h4ce5507_0 @@ -171,7 +176,7 @@ dependencies: - decorator=5.1.1=pyhd8ed1ab_0 - defusedxml=0.7.1=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - - docutils=0.20.1=py39h2804cbe_2 + - docutils=0.20.1=py39h2804cbe_3 - eclib=20230424=haeb5157_0 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 @@ -194,16 +199,18 @@ dependencies: - jupyterlab_widgets=3.0.9=pyhd8ed1ab_0 - kiwisolver=1.4.5=py39hbd775c9_1 - lcalc=2.0.5=hc94e8e6_1 - - ld64_osx-arm64=609=h297e91e_13 + - ld64_osx-arm64=609=hc4dc95b_15 - libblas=3.9.0=20_osxarm64_openblas - - libclang-cpp16=16.0.1=default_he7141eb_0 + - libclang-cpp15=15.0.7=default_hd209bcb_4 - libcurl=8.1.2=h912dcd9_0 - libgd=2.3.3=h90fb8ed_4 - - llvm-tools=16.0.1=h1e5164c_0 + - llvm-tools=15.0.7=h62b9111_1 - markupsafe=2.1.3=py39h0f82c59_1 - 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 - networkx=3.2.1=pyhd8ed1ab_0 @@ -212,11 +219,14 @@ dependencies: - 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.11.2=pyhd8ed1ab_0 - pickleshare=0.7.5=py_1003 - pillow=9.4.0=py39h8bd98a6_1 - 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 @@ -228,6 +238,7 @@ dependencies: - 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 @@ -238,24 +249,28 @@ dependencies: - python-tzdata=2023.3=pyhd8ed1ab_0 - pytz=2023.3.post1=pyhd8ed1ab_0 - pyyaml=6.0.1=py39h0f82c59_1 - - pyzmq=25.1.1=py39he0a3c8b_2 + - pyzmq=25.1.2=py39he1e2164_0 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.13.1=py39h8fec3ad_0 + - rpds-py=0.13.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 - singular=4.2.1.p3=h3b80c97_2 - 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.13.0=pyhd8ed1ab_0 - - trove-classifiers=2023.11.22=pyhd8ed1ab_0 + - traitlets=5.14.0=pyhd8ed1ab_0 + - trove-classifiers=2023.11.29=pyhd8ed1ab_0 - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 - typing_extensions=4.8.0=pyha770c72_0 - typing_utils=0.1.0=pyhd8ed1ab_0 @@ -266,7 +281,7 @@ dependencies: - wcwidth=0.2.12=pyhd8ed1ab_0 - webcolors=1.13=pyhd8ed1ab_0 - webencodings=0.5.1=pyhd8ed1ab_2 - - websocket-client=1.6.4=pyhd8ed1ab_0 + - websocket-client=1.7.0=pyhd8ed1ab_0 - wheel=0.42.0=pyhd8ed1ab_0 - widgetsnbextension=4.0.9=pyhd8ed1ab_0 - zipp=3.17.0=pyhd8ed1ab_0 @@ -278,23 +293,29 @@ dependencies: - 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=h7a0f565_13 + - cctools_osx-arm64=973.0.1=h2a25c60_15 - cffi=1.16.0=py39he153c15_0 - - clang-16=16.0.1=default_he7141eb_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.45.1=py39h17cfd9d_0 + - fonttools=4.46.0=py39h17cfd9d_0 + - gitdb=4.0.11=pyhd8ed1ab_0 - harfbuzz=6.0.0=hddbc195_0 - - importlib-metadata=6.8.0=pyha770c72_0 + - html5lib=1.1=pyh9f0ad1d_0 + - importlib-metadata=7.0.0=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.0=py39h2804cbe_0 - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 - - ld64=609=h634c8be_13 + - ld64=609=h89fa09d_15 - libcblas=3.9.0=20_osxarm64_openblas - liblapack=3.9.0=20_osxarm64_openblas - matplotlib-inline=0.1.6=pyhd8ed1ab_0 @@ -302,8 +323,7 @@ dependencies: - overrides=7.4.0=pyhd8ed1ab_0 - pexpect=4.8.0=pyh1a96a4e_2 - pip=23.3.1=pyhd8ed1ab_0 - - platformdirs=4.0.0=pyhd8ed1ab_0 - - pplpy=0.8.7=py39h1364912_0 + - pplpy=0.8.9=py39haf103f8_0 - primecountpy=0.1.0=py39hbd775c9_4 - prompt-toolkit=3.0.24=pyha770c72_0 - pybind11=2.11.1=py39hbd775c9_2 @@ -312,48 +332,53 @@ dependencies: - pytest=7.4.3=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - pytz-deprecation-shim=0.1.0.post0=py39h2804cbe_4 - - referencing=0.31.0=pyhd8ed1ab_0 + - referencing=0.31.1=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 + - ruamel.yaml=0.18.5=py39h17cfd9d_0 - sagemath-db-conway-polynomials=0.5.0=h4653dfc_1 - sympy=1.12=pypyh9d50eac_103 - terminado=0.18.0=pyh31c8845_0 - tinycss2=1.2.1=pyhd8ed1ab_0 - typing-extensions=4.8.0=hd8ed1ab_0 - - urllib3=2.1.0=pyhd8ed1ab_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.2=pyhd8ed1ab_0 - - cctools=973.0.1=h4faf515_13 - - clang=16.0.1=h1e5164c_0 + - cattrs=23.2.3=pyhd8ed1ab_0 + - cctools=973.0.1=hd1ac623_15 + - clang=15.0.7=haab561b_4 - dsdp=5.8=h9397a75_1203 - 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.18.0=pyhd8ed1ab_0 - iml=1.0.5=hd52f0d1_1003 - importlib-resources=6.1.1=pyhd8ed1ab_0 - - importlib_metadata=6.8.0=hd8ed1ab_0 - - jsonschema-specifications=2023.11.1=pyhd8ed1ab_0 - - jupyter_core=5.5.0=py39h2804cbe_0 + - importlib_metadata=7.0.0=hd8ed1ab_0 + - jsonschema-specifications=2023.11.2=pyhd8ed1ab_0 - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1 - liblapacke=3.9.0=20_osxarm64_openblas - numpy=1.26.2=py39heee92a0_0 - pango=1.50.14=h6c112b8_0 - prompt_toolkit=3.0.24=hd8ed1ab_0 + - pydantic-core=2.14.5=py39h8fec3ad_0 - pyobjc-framework-cocoa=10.0=py39h4d1a642_1 - 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=h7cd81ec_1 - - virtualenv=20.24.7=pyhd8ed1ab_0 - argon2-cffi=23.1.0=pyhd8ed1ab_0 - blas-devel=3.9.0=20_osxarm64_openblas - - clangxx=16.0.1=default_ha0f6327_0 + - cachecontrol=0.13.1=pyhd8ed1ab_0 + - clangxx=15.0.7=default_h5c94ee4_4 - contourpy=1.2.0=py39he9de807_0 - cvxopt=1.3.2=py39h76eeb2c_1 + - ensureconda=1.4.3=pyhd8ed1ab_0 - fpylll=0.6.0=py39h947550b_1 - giac=1.9.0.21=h1c96721_1 - igraph=0.9.10=hcec9b84_1 @@ -361,44 +386,53 @@ dependencies: - 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=h549c411_7 - 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.3=pyhd8ed1ab_0 + - tox=4.11.4=pyhd8ed1ab_0 - blas=2.120=openblas - - compiler-rt_osx-arm64=16.0.1=h30b49de_0 + - 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.0=pyhd8ed1ab_0 + - pygls=1.2.1=pyhd8ed1ab_0 - rw=0.9=h3422bc3_0 - - compiler-rt=16.0.1=h30b49de_0 + - compiler-rt=15.0.7=h3808999_2 + - conda-lock=2.5.1=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_osx-arm64=16.0.1=hdccda30_1 - - nbconvert-core=7.11.0=pyhd8ed1ab_0 - - clangxx_osx-arm64=16.0.1=h0c1d50e_1 + - clang_impl_osx-arm64=15.0.7=h77e971b_6 + - nbconvert-core=7.12.0=pyhd8ed1ab_0 + - clang_osx-arm64=15.0.7=h54d7cd3_6 + - jupyter_server=2.12.1=pyhd8ed1ab_0 + - nbconvert-pandoc=7.12.0=pyhd8ed1ab_0 + - c-compiler=1.6.0=hd291e01_0 + - clangxx_impl_osx-arm64=15.0.7=h768a7fd_6 - gfortran_osx-arm64=12.3.0=h57527a5_1 - - jupyter_server=2.10.1=pyhd8ed1ab_0 - - nbconvert-pandoc=7.11.0=pyhd8ed1ab_0 - - gfortran=12.3.0=h1ca8e4b_1 - - jupyter-lsp=2.2.0=pyhd8ed1ab_0 + - jupyter-lsp=2.2.1=pyhd8ed1ab_0 - jupyterlab_server=2.25.2=pyhd8ed1ab_0 - - nbconvert=7.11.0=pyhd8ed1ab_0 + - nbconvert=7.12.0=pyhd8ed1ab_0 - notebook-shim=0.2.3=pyhd8ed1ab_0 + - clangxx_osx-arm64=15.0.7=h77e971b_6 + - 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 - - fortran-compiler=1.6.0=h5a50232_0 - - jupyterlab=4.0.9=pyhd8ed1ab_0 + - compilers=1.6.0=hce30654_0 - rpy2=3.5.11=py39r41hf9b1952_0 - - notebook=7.0.6=pyhd8ed1ab_0 - - esbonio=0.16.2=pyhd8ed1ab_0 + - esbonio=0.16.3=pyhd8ed1ab_0 - jupyter_sphinx=0.1.4=py_0 - sphinx-basic-ng=1.0.0b2=pyhd8ed1ab_1 - furo=2023.9.10=pyhd8ed1ab_0 diff --git a/src/environment-dev-3.9-macos.yml b/src/environment-dev-3.9-macos.yml index b1d3ead0ea9..1021e1ad3dc 100644 --- a/src/environment-dev-3.9-macos.yml +++ b/src/environment-dev-3.9-macos.yml @@ -1,13 +1,14 @@ # Generated by conda-lock. # platform: osx-64 -# input_hash: 717e926e3fb7aec030cc6fd2b13a4cf3de3e82ba34882443590d39643189d24f +# input_hash: a9fc9d0ce3120c2f7f968ca75c8f4de2fadf28a142eb717bb9523e90f5657779 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.22.1=h10d778d_0 + - c-ares=1.23.0=h10d778d_0 - ca-certificates=2023.11.17=h8857fd0_0 - cliquer=1.22=hbcb3906_0 - font-ttf-dejavu-sans-mono=2.37=hab24e00_0 @@ -15,7 +16,7 @@ dependencies: - font-ttf-source-code-pro=2.038=h77eed37_0 - font-ttf-ubuntu=0.83=h77eed37_1 - fribidi=1.0.10=hbcb3906_0 - - gh=2.39.1=h990441c_0 + - gh=2.39.2=h990441c_0 - giflib=5.2.1=hb7f2c08_3 - icu=73.2=hf5e326d_0 - libatomic_ops=7.6.14=hb7f2c08_0 @@ -34,7 +35,7 @@ dependencies: - libuv=1.46.0=h0c2f820_0 - libwebp-base=1.3.2=h0dc2134_0 - libzlib=1.2.13=h8a1eda9_5 - - llvm-openmp=17.0.5=hb6ac08f_0 + - llvm-openmp=17.0.6=hb6ac08f_0 - m4=1.4.18=haf1e3a3_1001 - make=4.3=h22f3db7_1 - mathjax=3.2.2=h694c41f_0 @@ -73,7 +74,7 @@ dependencies: - graphite2=1.3.13=h2e338ed_1001 - isl=0.25=hb486fe8_0 - lerc=4.0.0=hb486fe8_0 - - libbraiding=1.1=h2e338ed_0 + - libbraiding=1.2=hf0c8a7f_0 - libbrotlidec=1.1.0=h0dc2134_1 - libbrotlienc=1.1.0=h0dc2134_1 - libcbor=0.10.2=hf0c8a7f_0 @@ -81,12 +82,12 @@ dependencies: - libpng=1.6.39=ha978bb4_0 - libsqlite=3.44.2=h92b6c6a_0 - libxcb=1.15=hb7f2c08_0 - - libxml2=2.11.6=hc0ae0f7_0 + - libxml2=2.12.2=hc0ae0f7_0 - lrcalc=2.1=hf0c8a7f_5 - ncurses=6.4=h93d8f39_2 - ninja=1.11.1=hb8565cd_0 - openjdk=21.0.1=hf4d7fad_0 - - openssl=3.2.0=hd75f5a5_0 + - openssl=3.2.0=hd75f5a5_1 - pandoc=3.1.3=h9d075a6_0 - pari-seadata=0.0.20090618=0 - pcre2=10.40=h1c4e4bc_0 @@ -96,6 +97,7 @@ dependencies: - 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 @@ -117,7 +119,7 @@ dependencies: - libgfortran=5.0.0=13_2_0_h97931a8_1 - libglib=2.78.1=h6d9ecee_0 - libhomfly=1.02r6=hc929b4f_0 - - libllvm16=16.0.6=he4b1e75_2 + - libllvm15=15.0.7=hbedff68_4 - libnghttp2=1.58.0=h64cf6d3_0 - libssh2=1.11.0=hd019ec5_0 - libtiff=4.6.0=h684deea_2 @@ -137,15 +139,15 @@ dependencies: - gap-core=4.12.2=hc16eb5f_3 - gfan=0.6.2=hd793b56_1003 - krb5=1.21.2=hb884880_0 - - lcms2=2.15=hd6ba6f3_3 - - ld64_osx-64=609=ha20a434_15 + - lcms2=2.16=ha2f27b4_0 + - ld64_osx-64=609=h0fd476b_15 - libboost-devel=1.83.0=h7728843_0 - libbrial=1.2.12=h8d08345_1 - - libclang-cpp16=16.0.6=default_h762fdd7_2 + - libclang-cpp15=15.0.7=default_h6b1ee41_4 - libflint=2.9.0=hfd2f71f_ntl_100 - libopenblas=0.3.25=openmp_hfef2a42_0 - libwebp=1.3.2=h44782d1_1 - - llvm-tools=16.0.6=he4b1e75_2 + - llvm-tools=15.0.7=hbedff68_4 - m4rie=20150908=h3f75d11_1001 - mpc=1.3.1=h81bd1dd_0 - mpfi=1.5.4=h52b28e3_1001 @@ -166,13 +168,16 @@ dependencies: - 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=ha1c5b94_15 + - cctools_osx-64=973.0.1=habff3f6_15 - certifi=2023.11.17=pyhd8ed1ab_0 - chardet=5.2.0=py39h6e9494a_1 - charset-normalizer=3.3.2=pyhd8ed1ab_0 - - clang-16=16.0.6=default_h762fdd7_2 + - clang-15=15.0.7=default_h6b1ee41_4 + - click=8.1.7=unix_pyh707e725_0 - colorama=0.4.6=pyhd8ed1ab_0 + - crashtest=0.4.1=pyhd8ed1ab_0 - cycler=0.12.1=pyhd8ed1ab_0 - cysignals=1.11.2=py39hf6ae30e_3 - cython=3.0.6=py39h110ca85_0 @@ -180,7 +185,7 @@ dependencies: - decorator=5.1.1=pyhd8ed1ab_0 - defusedxml=0.7.1=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - - docutils=0.20.1=py39h6e9494a_2 + - docutils=0.20.1=py39h6e9494a_3 - eclib=20230424=hd00e801_0 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 @@ -203,14 +208,16 @@ dependencies: - jupyterlab_widgets=3.0.9=pyhd8ed1ab_0 - kiwisolver=1.4.5=py39h8ee36c8_1 - lcalc=2.0.5=h3a941db_1 - - ld64=609=ha02d983_15 + - ld64=609=ha91a046_15 - libblas=3.9.0=20_osx64_openblas - - libcurl=8.4.0=h726d00d_0 + - libcurl=8.5.0=h726d00d_0 - libgd=2.3.3=h0dceb68_9 - markupsafe=2.1.3=py39hdc70f33_1 - - maxima=5.45.0=hd029580_3 + - maxima=5.46.0=h2b27fa8_0 - 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 - networkx=3.2.1=pyhd8ed1ab_0 @@ -219,11 +226,14 @@ dependencies: - 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.11.2=pyhd8ed1ab_0 - pickleshare=0.7.5=py_1003 - pillow=10.1.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 @@ -235,6 +245,7 @@ dependencies: - 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 @@ -245,24 +256,28 @@ dependencies: - python-tzdata=2023.3=pyhd8ed1ab_0 - pytz=2023.3.post1=pyhd8ed1ab_0 - pyyaml=6.0.1=py39hdc70f33_1 - - pyzmq=25.1.1=py39h53dde38_2 + - pyzmq=25.1.2=py39hcb7a90d_0 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.13.1=py39h3f9c672_0 + - rpds-py=0.13.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 - singular=4.2.1.p3=hac851df_2 - 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.13.0=pyhd8ed1ab_0 - - trove-classifiers=2023.11.22=pyhd8ed1ab_0 + - traitlets=5.14.0=pyhd8ed1ab_0 + - trove-classifiers=2023.11.29=pyhd8ed1ab_0 - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 - typing_extensions=4.8.0=pyha770c72_0 - typing_utils=0.1.0=pyhd8ed1ab_0 @@ -273,7 +288,7 @@ dependencies: - wcwidth=0.2.12=pyhd8ed1ab_0 - webcolors=1.13=pyhd8ed1ab_0 - webencodings=0.5.1=pyhd8ed1ab_2 - - websocket-client=1.6.4=pyhd8ed1ab_0 + - websocket-client=1.7.0=pyhd8ed1ab_0 - wheel=0.42.0=pyhd8ed1ab_0 - widgetsnbextension=4.0.9=pyhd8ed1ab_0 - zipp=3.17.0=pyhd8ed1ab_0 @@ -285,21 +300,27 @@ dependencies: - beniget=0.4.1=pyhd8ed1ab_0 - bleach=6.1.0=pyhd8ed1ab_0 - cached-property=1.5.2=hd8ed1ab_1 - - cctools=973.0.1=h40f6528_15 + - cctools=973.0.1=hd9ad811_15 - cffi=1.16.0=py39h18ef598_0 - - clang=16.0.6=hc177806_2 - - cmake=3.27.8=hc7ee4c4_0 + - clang=15.0.7=hac416ee_4 + - click-default-group=1.2.4=pyhd8ed1ab_0 + - clikit=0.6.2=pyhd8ed1ab_2 + - cmake=3.28.0=hc7ee4c4_0 - comm=0.1.4=pyhd8ed1ab_0 - cppy=1.2.1=pyhd8ed1ab_0 - - curl=8.4.0=h726d00d_0 + - curl=8.5.0=h726d00d_0 - cypari2=2.1.3=py39he2cb11e_2 - deprecation=2.1.0=pyh9f0ad1d_0 - - fonttools=4.45.1=py39ha09f3b3_0 + - fonttools=4.46.0=py39ha09f3b3_0 + - gitdb=4.0.11=pyhd8ed1ab_0 - harfbuzz=8.3.0=hf45c392_0 - - importlib-metadata=6.8.0=pyha770c72_0 + - html5lib=1.1=pyh9f0ad1d_0 + - importlib-metadata=7.0.0=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.0=py39h6e9494a_0 - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 - libcblas=3.9.0=20_osx64_openblas - liblapack=3.9.0=20_osx64_openblas @@ -308,8 +329,7 @@ dependencies: - overrides=7.4.0=pyhd8ed1ab_0 - pexpect=4.8.0=pyh1a96a4e_2 - pip=23.3.1=pyhd8ed1ab_0 - - platformdirs=4.0.0=pyhd8ed1ab_0 - - pplpy=0.8.7=py39hb3e8af0_0 + - pplpy=0.8.9=py39h248ee18_0 - primecountpy=0.1.0=py39h8ee36c8_4 - prompt-toolkit=3.0.24=pyha770c72_0 - pybind11=2.11.1=py39h8ee36c8_2 @@ -318,90 +338,102 @@ dependencies: - pytest=7.4.3=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - pytz-deprecation-shim=0.1.0.post0=py39h6e9494a_4 - - referencing=0.31.0=pyhd8ed1ab_0 + - referencing=0.31.1=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 + - ruamel.yaml=0.18.5=py39ha09f3b3_0 - sagemath-db-conway-polynomials=0.5.0=h033912b_1 - sympy=1.12=pypyh9d50eac_103 - terminado=0.18.0=pyh31c8845_0 - tinycss2=1.2.1=pyhd8ed1ab_0 - typing-extensions=4.8.0=hd8ed1ab_0 - - urllib3=2.1.0=pyhd8ed1ab_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 - arrow=1.3.0=pyhd8ed1ab_0 - - cattrs=23.2.2=pyhd8ed1ab_0 - - clangxx=16.0.6=default_h762fdd7_2 + - cattrs=23.2.3=pyhd8ed1ab_0 + - clangxx=15.0.7=default_h6b1ee41_4 - dsdp=5.8=h6e329d1_1203 - 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.18.0=pyhd8ed1ab_0 - iml=1.0.5=h64b42ca_1003 - importlib-resources=6.1.1=pyhd8ed1ab_0 - - importlib_metadata=6.8.0=hd8ed1ab_0 - - jsonschema-specifications=2023.11.1=pyhd8ed1ab_0 - - jupyter_core=5.5.0=py39h6e9494a_0 + - importlib_metadata=7.0.0=hd8ed1ab_0 + - jsonschema-specifications=2023.11.2=pyhd8ed1ab_0 - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1 - liblapacke=3.9.0=20_osx64_openblas - numpy=1.26.2=py39h14c6d2e_0 - pango=1.50.14=h19c1c8a_2 - prompt_toolkit=3.0.24=hd8ed1ab_0 + - pydantic-core=2.14.5=py39h3f9c672_0 - pyobjc-framework-cocoa=10.0=py39head00df_1 - 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=h7aff33d_1 - - virtualenv=20.24.7=pyhd8ed1ab_0 - argon2-cffi=23.1.0=pyhd8ed1ab_0 - blas-devel=3.9.0=20_osx64_openblas - - compiler-rt_osx-64=16.0.6=he1888fc_1 + - cachecontrol=0.13.1=pyhd8ed1ab_0 + - compiler-rt_osx-64=15.0.7=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 - giac=1.9.0.21=h92f3f65_1 - ipython=8.8.0=pyhd1c38e8_0 - 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=hdde8d14_7 - 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.3=pyhd8ed1ab_0 + - tox=4.11.4=pyhd8ed1ab_0 - blas=2.120=openblas - - compiler-rt=16.0.6=he1888fc_1 + - 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.0=pyhd8ed1ab_0 - - clang_impl_osx-64=16.0.6=h8787910_6 + - pygls=1.2.1=pyhd8ed1ab_0 + - clang_impl_osx-64=15.0.7=h03d6864_6 + - conda-lock=2.5.1=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=16.0.6=hb91bd55_6 - - nbconvert-core=7.11.0=pyhd8ed1ab_0 - - clangxx_impl_osx-64=16.0.6=h1b7723c_6 + - clang_osx-64=15.0.7=hb91bd55_6 + - nbconvert-core=7.12.0=pyhd8ed1ab_0 + - c-compiler=1.6.0=h63c33a9_0 + - clangxx_impl_osx-64=15.0.7=h3d2d1bf_6 - gfortran_osx-64=12.3.0=h18f7dce_1 - - jupyter_server=2.10.1=pyhd8ed1ab_0 - - nbconvert-pandoc=7.11.0=pyhd8ed1ab_0 - - clangxx_osx-64=16.0.6=h2fff7d5_6 + - jupyter_server=2.12.1=pyhd8ed1ab_0 + - nbconvert-pandoc=7.12.0=pyhd8ed1ab_0 + - clangxx_osx-64=15.0.7=h655633e_6 - gfortran=12.3.0=h2c809b3_1 - - jupyter-lsp=2.2.0=pyhd8ed1ab_0 + - jupyter-lsp=2.2.1=pyhd8ed1ab_0 - jupyterlab_server=2.25.2=pyhd8ed1ab_0 - - nbconvert=7.11.0=pyhd8ed1ab_0 + - nbconvert=7.12.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.2=hf996cbc_0 + - 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.2=pyhd8ed1ab_0 + - esbonio=0.16.3=pyhd8ed1ab_0 - jupyter_sphinx=0.4.0=py39h6e9494a_1 - sphinx-basic-ng=1.0.0b2=pyhd8ed1ab_1 - furo=2023.9.10=pyhd8ed1ab_0 From 234dd3b6c680e4255ac77dfd1a297fbd2f6340b6 Mon Sep 17 00:00:00 2001 From: Tobias Diez Date: Thu, 7 Dec 2023 10:36:48 +0000 Subject: [PATCH 30/33] add arb explicitly --- build/pkgs/flint/distros/conda.txt | 1 + environment-3.10-linux-aarch64.yml | 2 +- environment-3.10-linux.yml | 14 +++++++------- environment-3.10-macos-arm64.yml | 2 +- environment-3.10-macos.yml | 10 +++++----- environment-3.11-linux-aarch64.yml | 2 +- environment-3.11-linux.yml | 12 ++++++------ environment-3.11-macos-arm64.yml | 2 +- environment-3.11-macos.yml | 10 +++++----- environment-3.9-linux-aarch64.yml | 2 +- environment-3.9-linux.yml | 14 +++++++------- environment-3.9-macos-arm64.yml | 2 +- environment-3.9-macos.yml | 10 +++++----- src/environment-3.10-linux-aarch64.yml | 12 ++++++------ src/environment-3.10-linux.yml | 22 +++++++++++----------- src/environment-3.10-macos-arm64.yml | 12 ++++++------ src/environment-3.10-macos.yml | 20 ++++++++++---------- src/environment-3.11-linux-aarch64.yml | 12 ++++++------ src/environment-3.11-linux.yml | 22 +++++++++++----------- src/environment-3.11-macos-arm64.yml | 12 ++++++------ src/environment-3.11-macos.yml | 20 ++++++++++---------- src/environment-3.9-linux-aarch64.yml | 12 ++++++------ src/environment-3.9-linux.yml | 22 +++++++++++----------- src/environment-3.9-macos-arm64.yml | 12 ++++++------ src/environment-3.9-macos.yml | 20 ++++++++++---------- src/environment-dev-3.10-linux-aarch64.yml | 12 ++++++------ src/environment-dev-3.10-linux.yml | 22 +++++++++++----------- src/environment-dev-3.10-macos-arm64.yml | 12 ++++++------ src/environment-dev-3.10-macos.yml | 20 ++++++++++---------- src/environment-dev-3.11-linux-aarch64.yml | 12 ++++++------ src/environment-dev-3.11-linux.yml | 22 +++++++++++----------- src/environment-dev-3.11-macos-arm64.yml | 12 ++++++------ src/environment-dev-3.11-macos.yml | 20 ++++++++++---------- src/environment-dev-3.9-linux-aarch64.yml | 12 ++++++------ src/environment-dev-3.9-linux.yml | 22 +++++++++++----------- src/environment-dev-3.9-macos-arm64.yml | 12 ++++++------ src/environment-dev-3.9-macos.yml | 20 ++++++++++---------- 37 files changed, 240 insertions(+), 239 deletions(-) diff --git a/build/pkgs/flint/distros/conda.txt b/build/pkgs/flint/distros/conda.txt index 944940a3f2b..320151bb6fe 100644 --- a/build/pkgs/flint/distros/conda.txt +++ b/build/pkgs/flint/distros/conda.txt @@ -1 +1,2 @@ libflint +arb # flint 2 pulled in arb, but v3 does not diff --git a/environment-3.10-linux-aarch64.yml b/environment-3.10-linux-aarch64.yml index 58441de898d..d248ee3f558 100644 --- a/environment-3.10-linux-aarch64.yml +++ b/environment-3.10-linux-aarch64.yml @@ -67,7 +67,7 @@ dependencies: - m4=1.4.18=h516909a_1001 - make=4.3=h309ac5b_1 - metis=5.1.0=h2f0025b_1007 - - nauty=2.7.2=hf897c2e_0 + - nauty=2.8.6=h31becfc_0 - ncurses=6.4=h0425590_2 - ninja=1.11.1=hdd96247_0 - openssl=3.2.0=h31becfc_1 diff --git a/environment-3.10-linux.yml b/environment-3.10-linux.yml index bbaa99dac63..2d8b4b3a269 100644 --- a/environment-3.10-linux.yml +++ b/environment-3.10-linux.yml @@ -67,7 +67,7 @@ dependencies: - m4=1.4.18=h516909a_1001 - make=4.3=hd18ef5c_1 - metis=5.1.0=h59595ed_1007 - - nauty=2.7.2=h7f98852_0 + - nauty=2.8.6=hd590300_0 - ncurses=6.4=h59595ed_2 - ninja=1.11.1=h924138e_0 - openssl=3.2.0=hd590300_1 @@ -115,7 +115,7 @@ dependencies: - igraph=0.7.1=0 - krb5=1.21.2=h659d440_0 - libboost=1.83.0=h6fcfa73_0 - - libflint=2.9.0=h2f819a4_ntl_100 + - libflint=3.0.1=h5f2e117_ntl_100 - libhwloc=2.9.3=default_h554bfaf_1009 - libopenblas=0.3.25=pthreads_h413a1c8_0 - libtiff=4.6.0=ha9c0a0a_2 @@ -131,14 +131,14 @@ dependencies: - tachyon=0.99b6=0 - texinfo=7.0=pl5321h0f457ee_0 - appdirs=1.4.4=pyh9f0ad1d_0 - - arb=2.23.0=h44d021b_0 + - arb=2.9.0=0 - automake=1.16.5=pl5321ha770c72_0 - c-compiler=1.6.0=hd590300_0 - cachetools=5.3.2=pyhd8ed1ab_0 - chardet=5.2.0=py310hff52083_1 - colorama=0.4.6=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - - eclib=20230424=hdef1efb_0 + - eclib=20230424=h96f522a_1 - filelock=3.13.1=pyhd8ed1ab_0 - fontconfig=2.14.2=h14ed4e7_0 - fplll=5.4.5=h384768b_0 @@ -159,7 +159,7 @@ dependencies: - platformdirs=4.1.0=pyhd8ed1ab_0 - pluggy=1.3.0=pyhd8ed1ab_0 - rw=0.8=h516909a_1001 - - singular=4.2.1.p3=h1ea75ed_2 + - singular=4.3.2.p8=h33f5c3f_0 - sympow=2.023.6=hc6ab17c_3 - tbb=2021.10.0=h00ab1b0_2 - tomli=2.0.1=pyhd8ed1ab_0 @@ -167,7 +167,7 @@ dependencies: - zipp=3.17.0=pyhd8ed1ab_0 - boost-cpp=1.83.0=h44aadfe_0 - brial=1.2.12=pyh694c41f_1 - - cmake=3.27.9=hcfe8598_0 + - cmake=3.28.0=hcfe8598_0 - curl=8.5.0=hca28451_0 - cxx-compiler=1.6.0=h00ab1b0_0 - fortran-compiler=1.6.0=heb67821_0 @@ -187,6 +187,6 @@ dependencies: - suitesparse=5.10.1=h9e50725_1 - blas-devel=3.9.0=20_linux64_openblas - giac=1.9.0.21=h673759e_1 - - linbox=1.6.3=h9d78c56_7 + - linbox=1.6.3=ha329b40_8 - tox=4.11.4=pyhd8ed1ab_0 - blas=2.120=openblas diff --git a/environment-3.10-macos-arm64.yml b/environment-3.10-macos-arm64.yml index aa596a2ec96..171438edb59 100644 --- a/environment-3.10-macos-arm64.yml +++ b/environment-3.10-macos-arm64.yml @@ -36,7 +36,7 @@ dependencies: - make=4.3=he57ea6c_1 - mathjax=3.2.2=hce30654_0 - metis=5.1.0=h13dd4ca_1007 - - nauty=2.7.2=h3422bc3_0 + - nauty=2.8.6=h93a5062_0 - palp=2.20=h27ca646_0 - pari-elldata=0.0.20161017=0 - pari-galdata=0.0.20180411=0 diff --git a/environment-3.10-macos.yml b/environment-3.10-macos.yml index d3d39fcde40..71c3585ef6b 100644 --- a/environment-3.10-macos.yml +++ b/environment-3.10-macos.yml @@ -112,7 +112,7 @@ dependencies: - libboost-devel=1.83.0=h7728843_0 - libbrial=1.2.12=h8d08345_1 - libclang-cpp15=15.0.7=default_h6b1ee41_4 - - libflint=2.9.0=hfd2f71f_ntl_100 + - 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=hbedff68_4 @@ -125,7 +125,7 @@ dependencies: - qd=2.3.22=h2beb688_1004 - sqlite=3.44.2=h7461747_0 - appdirs=1.4.4=pyh9f0ad1d_0 - - arb=2.23.0=h905a977_0 + - arb=2.9.0=0 - boost-cpp=1.83.0=h07eb623_0 - brial=1.2.12=pyh694c41f_1 - cachetools=5.3.2=pyhd8ed1ab_0 @@ -134,7 +134,7 @@ dependencies: - clang-15=15.0.7=default_h6b1ee41_4 - colorama=0.4.6=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - - eclib=20230424=hd00e801_0 + - eclib=20230424=h563f520_1 - filelock=3.13.1=pyhd8ed1ab_0 - fplll=5.4.5=hb7981ad_0 - gfortran_impl_osx-64=12.3.0=h54fd467_1 @@ -148,7 +148,7 @@ dependencies: - packaging=23.2=pyhd8ed1ab_0 - platformdirs=4.1.0=pyhd8ed1ab_0 - pluggy=1.3.0=pyhd8ed1ab_0 - - singular=4.2.1.p3=hac851df_2 + - singular=4.3.2.p8=h0d51a9f_0 - sympow=2.023.6=h115ba6a_3 - tomli=2.0.1=pyhd8ed1ab_0 - typing_extensions=4.8.0=pyha770c72_0 @@ -173,7 +173,7 @@ dependencies: - blas-devel=3.9.0=20_osx64_openblas - compiler-rt_osx-64=15.0.7=ha38d28d_2 - giac=1.9.0.21=h92f3f65_1 - - linbox=1.6.3=hdde8d14_7 + - linbox=1.6.3=hfb9b24e_8 - tox=4.11.4=pyhd8ed1ab_0 - blas=2.120=openblas - compiler-rt=15.0.7=ha38d28d_2 diff --git a/environment-3.11-linux-aarch64.yml b/environment-3.11-linux-aarch64.yml index 3d525502c72..e9dff603e52 100644 --- a/environment-3.11-linux-aarch64.yml +++ b/environment-3.11-linux-aarch64.yml @@ -67,7 +67,7 @@ dependencies: - m4=1.4.18=h516909a_1001 - make=4.3=h309ac5b_1 - metis=5.1.0=h2f0025b_1007 - - nauty=2.7.2=hf897c2e_0 + - nauty=2.8.6=h31becfc_0 - ncurses=6.4=h0425590_2 - ninja=1.11.1=hdd96247_0 - openssl=3.2.0=h31becfc_1 diff --git a/environment-3.11-linux.yml b/environment-3.11-linux.yml index 01c0d8e20ea..a00458e539a 100644 --- a/environment-3.11-linux.yml +++ b/environment-3.11-linux.yml @@ -67,7 +67,7 @@ dependencies: - m4=1.4.18=h516909a_1001 - make=4.3=hd18ef5c_1 - metis=5.1.0=h59595ed_1007 - - nauty=2.7.2=h7f98852_0 + - nauty=2.8.6=hd590300_0 - ncurses=6.4=h59595ed_2 - ninja=1.11.1=h924138e_0 - openssl=3.2.0=hd590300_1 @@ -115,7 +115,7 @@ dependencies: - igraph=0.7.1=0 - krb5=1.21.2=h659d440_0 - libboost=1.83.0=h6fcfa73_0 - - libflint=2.9.0=h2f819a4_ntl_100 + - libflint=3.0.1=h5f2e117_ntl_100 - libhwloc=2.9.3=default_h554bfaf_1009 - libopenblas=0.3.25=pthreads_h413a1c8_0 - libtiff=4.6.0=ha9c0a0a_2 @@ -131,14 +131,14 @@ dependencies: - tachyon=0.99b6=0 - texinfo=7.0=pl5321h0f457ee_0 - appdirs=1.4.4=pyh9f0ad1d_0 - - arb=2.23.0=h44d021b_0 + - arb=2.9.0=0 - automake=1.16.5=pl5321ha770c72_0 - c-compiler=1.6.0=hd590300_0 - cachetools=5.3.2=pyhd8ed1ab_0 - chardet=5.2.0=py311h38be061_1 - colorama=0.4.6=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - - eclib=20230424=hdef1efb_0 + - eclib=20230424=h96f522a_1 - filelock=3.13.1=pyhd8ed1ab_0 - fontconfig=2.14.2=h14ed4e7_0 - fplll=5.4.5=h384768b_0 @@ -159,7 +159,7 @@ dependencies: - platformdirs=4.1.0=pyhd8ed1ab_0 - pluggy=1.3.0=pyhd8ed1ab_0 - rw=0.8=h516909a_1001 - - singular=4.2.1.p3=h1ea75ed_2 + - singular=4.3.2.p8=h33f5c3f_0 - sympow=2.023.6=hc6ab17c_3 - tbb=2021.10.0=h00ab1b0_2 - tomli=2.0.1=pyhd8ed1ab_0 @@ -187,6 +187,6 @@ dependencies: - suitesparse=5.10.1=h9e50725_1 - blas-devel=3.9.0=20_linux64_openblas - giac=1.9.0.21=h673759e_1 - - linbox=1.6.3=h9d78c56_7 + - linbox=1.6.3=ha329b40_8 - tox=4.11.4=pyhd8ed1ab_0 - blas=2.120=openblas diff --git a/environment-3.11-macos-arm64.yml b/environment-3.11-macos-arm64.yml index c4e86911c6c..d389aba31ad 100644 --- a/environment-3.11-macos-arm64.yml +++ b/environment-3.11-macos-arm64.yml @@ -36,7 +36,7 @@ dependencies: - make=4.3=he57ea6c_1 - mathjax=3.2.2=hce30654_0 - metis=5.1.0=h13dd4ca_1007 - - nauty=2.7.2=h3422bc3_0 + - nauty=2.8.6=h93a5062_0 - palp=2.20=h27ca646_0 - pari-elldata=0.0.20161017=0 - pari-galdata=0.0.20180411=0 diff --git a/environment-3.11-macos.yml b/environment-3.11-macos.yml index a7fada426dd..f467c642397 100644 --- a/environment-3.11-macos.yml +++ b/environment-3.11-macos.yml @@ -112,7 +112,7 @@ dependencies: - libboost-devel=1.83.0=h7728843_0 - libbrial=1.2.12=h8d08345_1 - libclang-cpp15=15.0.7=default_h6b1ee41_4 - - libflint=2.9.0=hfd2f71f_ntl_100 + - 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=hbedff68_4 @@ -125,7 +125,7 @@ dependencies: - qd=2.3.22=h2beb688_1004 - sqlite=3.44.2=h7461747_0 - appdirs=1.4.4=pyh9f0ad1d_0 - - arb=2.23.0=h905a977_0 + - arb=2.9.0=0 - boost-cpp=1.83.0=h07eb623_0 - brial=1.2.12=pyh694c41f_1 - cachetools=5.3.2=pyhd8ed1ab_0 @@ -134,7 +134,7 @@ dependencies: - clang-15=15.0.7=default_h6b1ee41_4 - colorama=0.4.6=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - - eclib=20230424=hd00e801_0 + - eclib=20230424=h563f520_1 - filelock=3.13.1=pyhd8ed1ab_0 - fplll=5.4.5=hb7981ad_0 - gfortran_impl_osx-64=12.3.0=h54fd467_1 @@ -148,7 +148,7 @@ dependencies: - packaging=23.2=pyhd8ed1ab_0 - platformdirs=4.1.0=pyhd8ed1ab_0 - pluggy=1.3.0=pyhd8ed1ab_0 - - singular=4.2.1.p3=hac851df_2 + - singular=4.3.2.p8=h0d51a9f_0 - sympow=2.023.6=h115ba6a_3 - tomli=2.0.1=pyhd8ed1ab_0 - typing_extensions=4.8.0=pyha770c72_0 @@ -173,7 +173,7 @@ dependencies: - blas-devel=3.9.0=20_osx64_openblas - compiler-rt_osx-64=15.0.7=ha38d28d_2 - giac=1.9.0.21=h92f3f65_1 - - linbox=1.6.3=hdde8d14_7 + - linbox=1.6.3=hfb9b24e_8 - tox=4.11.4=pyhd8ed1ab_0 - blas=2.120=openblas - compiler-rt=15.0.7=ha38d28d_2 diff --git a/environment-3.9-linux-aarch64.yml b/environment-3.9-linux-aarch64.yml index 11c74aec688..db99634eee6 100644 --- a/environment-3.9-linux-aarch64.yml +++ b/environment-3.9-linux-aarch64.yml @@ -67,7 +67,7 @@ dependencies: - m4=1.4.18=h516909a_1001 - make=4.3=h309ac5b_1 - metis=5.1.0=h2f0025b_1007 - - nauty=2.7.2=hf897c2e_0 + - nauty=2.8.6=h31becfc_0 - ncurses=6.4=h0425590_2 - ninja=1.11.1=hdd96247_0 - openssl=3.2.0=h31becfc_1 diff --git a/environment-3.9-linux.yml b/environment-3.9-linux.yml index 42b7777d84c..2a4bef4737b 100644 --- a/environment-3.9-linux.yml +++ b/environment-3.9-linux.yml @@ -67,7 +67,7 @@ dependencies: - m4=1.4.18=h516909a_1001 - make=4.3=hd18ef5c_1 - metis=5.1.0=h59595ed_1007 - - nauty=2.7.2=h7f98852_0 + - nauty=2.8.6=hd590300_0 - ncurses=6.4=h59595ed_2 - ninja=1.11.1=h924138e_0 - openssl=3.2.0=hd590300_1 @@ -115,7 +115,7 @@ dependencies: - igraph=0.7.1=0 - krb5=1.21.2=h659d440_0 - libboost=1.83.0=h6fcfa73_0 - - libflint=2.9.0=h2f819a4_ntl_100 + - libflint=3.0.1=h5f2e117_ntl_100 - libhwloc=2.9.3=default_h554bfaf_1009 - libopenblas=0.3.25=pthreads_h413a1c8_0 - libtiff=4.6.0=ha9c0a0a_2 @@ -131,14 +131,14 @@ dependencies: - tachyon=0.99b6=0 - texinfo=7.0=pl5321h0f457ee_0 - appdirs=1.4.4=pyh9f0ad1d_0 - - arb=2.23.0=h44d021b_0 + - arb=2.9.0=0 - automake=1.16.5=pl5321ha770c72_0 - c-compiler=1.6.0=hd590300_0 - cachetools=5.3.2=pyhd8ed1ab_0 - chardet=5.2.0=py39hf3d152e_1 - colorama=0.4.6=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - - eclib=20230424=hdef1efb_0 + - eclib=20230424=h96f522a_1 - filelock=3.13.1=pyhd8ed1ab_0 - fontconfig=2.14.2=h14ed4e7_0 - fplll=5.4.5=h384768b_0 @@ -159,7 +159,7 @@ dependencies: - platformdirs=4.1.0=pyhd8ed1ab_0 - pluggy=1.3.0=pyhd8ed1ab_0 - rw=0.8=h516909a_1001 - - singular=4.2.1.p3=h1ea75ed_2 + - singular=4.3.2.p8=h33f5c3f_0 - sympow=2.023.6=hc6ab17c_3 - tbb=2021.10.0=h00ab1b0_2 - tomli=2.0.1=pyhd8ed1ab_0 @@ -167,7 +167,7 @@ dependencies: - zipp=3.17.0=pyhd8ed1ab_0 - boost-cpp=1.83.0=h44aadfe_0 - brial=1.2.12=pyh694c41f_1 - - cmake=3.27.9=hcfe8598_0 + - cmake=3.28.0=hcfe8598_0 - curl=8.5.0=hca28451_0 - cxx-compiler=1.6.0=h00ab1b0_0 - fortran-compiler=1.6.0=heb67821_0 @@ -187,6 +187,6 @@ dependencies: - suitesparse=5.10.1=h9e50725_1 - blas-devel=3.9.0=20_linux64_openblas - giac=1.9.0.21=h673759e_1 - - linbox=1.6.3=h9d78c56_7 + - linbox=1.6.3=ha329b40_8 - tox=4.11.4=pyhd8ed1ab_0 - blas=2.120=openblas diff --git a/environment-3.9-macos-arm64.yml b/environment-3.9-macos-arm64.yml index dd677763e2e..4e81c8b2c2a 100644 --- a/environment-3.9-macos-arm64.yml +++ b/environment-3.9-macos-arm64.yml @@ -36,7 +36,7 @@ dependencies: - make=4.3=he57ea6c_1 - mathjax=3.2.2=hce30654_0 - metis=5.1.0=h13dd4ca_1007 - - nauty=2.7.2=h3422bc3_0 + - nauty=2.8.6=h93a5062_0 - palp=2.20=h27ca646_0 - pari-elldata=0.0.20161017=0 - pari-galdata=0.0.20180411=0 diff --git a/environment-3.9-macos.yml b/environment-3.9-macos.yml index 2dbd23c328f..c7361fb53ca 100644 --- a/environment-3.9-macos.yml +++ b/environment-3.9-macos.yml @@ -112,7 +112,7 @@ dependencies: - libboost-devel=1.83.0=h7728843_0 - libbrial=1.2.12=h8d08345_1 - libclang-cpp15=15.0.7=default_h6b1ee41_4 - - libflint=2.9.0=hfd2f71f_ntl_100 + - 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=hbedff68_4 @@ -125,7 +125,7 @@ dependencies: - qd=2.3.22=h2beb688_1004 - sqlite=3.44.2=h7461747_0 - appdirs=1.4.4=pyh9f0ad1d_0 - - arb=2.23.0=h905a977_0 + - arb=2.9.0=0 - boost-cpp=1.83.0=h07eb623_0 - brial=1.2.12=pyh694c41f_1 - cachetools=5.3.2=pyhd8ed1ab_0 @@ -134,7 +134,7 @@ dependencies: - clang-15=15.0.7=default_h6b1ee41_4 - colorama=0.4.6=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - - eclib=20230424=hd00e801_0 + - eclib=20230424=h563f520_1 - filelock=3.13.1=pyhd8ed1ab_0 - fplll=5.4.5=hb7981ad_0 - gfortran_impl_osx-64=12.3.0=h54fd467_1 @@ -148,7 +148,7 @@ dependencies: - packaging=23.2=pyhd8ed1ab_0 - platformdirs=4.1.0=pyhd8ed1ab_0 - pluggy=1.3.0=pyhd8ed1ab_0 - - singular=4.2.1.p3=hac851df_2 + - singular=4.3.2.p8=h0d51a9f_0 - sympow=2.023.6=h115ba6a_3 - tomli=2.0.1=pyhd8ed1ab_0 - typing_extensions=4.8.0=pyha770c72_0 @@ -173,7 +173,7 @@ dependencies: - blas-devel=3.9.0=20_osx64_openblas - compiler-rt_osx-64=15.0.7=ha38d28d_2 - giac=1.9.0.21=h92f3f65_1 - - linbox=1.6.3=hdde8d14_7 + - linbox=1.6.3=hfb9b24e_8 - tox=4.11.4=pyhd8ed1ab_0 - blas=2.120=openblas - compiler-rt=15.0.7=ha38d28d_2 diff --git a/src/environment-3.10-linux-aarch64.yml b/src/environment-3.10-linux-aarch64.yml index dc9bf6e650a..3850e3ef78f 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: baa728b41d57dd74d6c81508f97c5c09ae65517a224def7af07ce47940fbd22f +# input_hash: 686e378d5977ae860308e03c54dd13f1ca8cf500d8a0cb6cff7c356fc8a13ce3 channels: - conda-forge @@ -78,7 +78,7 @@ dependencies: - m4=1.4.18=h516909a_1001 - make=4.3=h309ac5b_1 - metis=5.1.0=h2f0025b_1007 - - nauty=2.7.2=hf897c2e_0 + - nauty=2.8.6=h31becfc_0 - ncurses=6.4=h0425590_2 - ninja=1.11.1=hdd96247_0 - openssl=3.2.0=h31becfc_1 @@ -283,7 +283,6 @@ dependencies: - tzlocal=5.2=py310h4c7bcd0_0 - unicodedata2=15.1.0=py310hb299538_0 - uri-template=1.3.0=pyhd8ed1ab_0 - - vcversioner=2.16.0.0=py_1 - wcwidth=0.2.12=pyhd8ed1ab_0 - webcolors=1.13=pyhd8ed1ab_0 - webencodings=0.5.1=pyhd8ed1ab_2 @@ -332,7 +331,7 @@ dependencies: - pip=23.3.1=pyhd8ed1ab_0 - pplpy=0.8.9=py310hd5c817c_0 - primecountpy=0.1.0=py310h586407a_4 - - prompt-toolkit=3.0.24=pyha770c72_0 + - prompt-toolkit=3.0.41=pyha770c72_0 - pybind11=2.11.1=py310h586407a_2 - pyproject-api=1.6.1=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 @@ -364,7 +363,7 @@ dependencies: - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1 - liblapacke=3.9.0=20_linuxaarch64_openblas - numpy=1.26.2=py310hcbab775_0 - - prompt_toolkit=3.0.24=hd8ed1ab_0 + - prompt_toolkit=3.0.41=hd8ed1ab_0 - requests=2.31.0=pyhd8ed1ab_0 - setuptools-scm=8.0.4=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 @@ -377,7 +376,7 @@ dependencies: - fpylll=0.6.0=py310hfdbf2a6_1 - giac=1.9.0.21=h04922a4_1 - igraph=0.9.10=hefb87a8_1 - - ipython=8.8.0=pyh41d4057_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 @@ -397,6 +396,7 @@ dependencies: - 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 diff --git a/src/environment-3.10-linux.yml b/src/environment-3.10-linux.yml index 0bd89fd3442..31ba67db25f 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: e2b4786b134bcab87cda399b040c70f0978505a41adce855ef14eb8acb0fa214 +# input_hash: c544099b4f3b132930ae5d9ca91ee34b4e9955e629f8e7fca57bf638b4f74705 channels: - conda-forge @@ -84,7 +84,7 @@ dependencies: - make=4.3=hd18ef5c_1 - metis=5.1.0=h59595ed_1007 - mpg123=1.32.3=h59595ed_0 - - nauty=2.7.2=h7f98852_0 + - nauty=2.8.6=hd590300_0 - ncurses=6.4=h59595ed_2 - ninja=1.11.1=h924138e_0 - nspr=4.35=h27087fc_0 @@ -163,7 +163,7 @@ dependencies: - igraph=0.7.1=0 - krb5=1.21.2=h659d440_0 - libboost=1.83.0=h6fcfa73_0 - - libflint=2.9.0=h2f819a4_ntl_100 + - libflint=3.0.1=h5f2e117_ntl_100 - libgcrypt=1.10.3=hd590300_0 - libglib=2.78.2=h783c2da_0 - libhwloc=2.9.3=default_h554bfaf_1009 @@ -194,7 +194,7 @@ dependencies: - alabaster=0.7.13=pyhd8ed1ab_0 - appdirs=1.4.4=pyh9f0ad1d_0 - appnope=0.1.3=pyhd8ed1ab_0 - - arb=2.23.0=h44d021b_0 + - arb=2.9.0=0 - attrs=23.1.0=pyh71513ae_1 - automake=1.16.5=pl5321ha770c72_0 - backcall=0.2.0=pyh9f0ad1d_0 @@ -216,7 +216,7 @@ dependencies: - defusedxml=0.7.1=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - docutils=0.20.1=py310hff52083_3 - - eclib=20230424=hdef1efb_0 + - eclib=20230424=h96f522a_1 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 - exceptiongroup=1.2.0=pyhd8ed1ab_0 @@ -297,7 +297,7 @@ dependencies: - send2trash=1.8.2=pyh41d4057_0 - setuptools=68.2.2=pyhd8ed1ab_0 - simplegeneric=0.8.1=py_1 - - singular=4.2.1.p3=h1ea75ed_2 + - singular=4.3.2.p8=h33f5c3f_0 - six=1.16.0=pyh6c4a22f_0 - sniffio=1.3.0=pyhd8ed1ab_0 - snowballstemmer=2.2.0=pyhd8ed1ab_0 @@ -316,7 +316,6 @@ dependencies: - tzlocal=5.2=py310hff52083_0 - unicodedata2=15.1.0=py310h2372a71_0 - uri-template=1.3.0=pyhd8ed1ab_0 - - vcversioner=2.16.0.0=py_1 - wcwidth=0.2.12=pyhd8ed1ab_0 - webcolors=1.13=pyhd8ed1ab_0 - webencodings=0.5.1=pyhd8ed1ab_2 @@ -371,7 +370,7 @@ dependencies: - pip=23.3.1=pyhd8ed1ab_0 - pplpy=0.8.9=py310h28f6eb6_0 - primecountpy=0.1.0=py310hd41b1e2_4 - - prompt-toolkit=3.0.24=pyha770c72_0 + - prompt-toolkit=3.0.41=pyha770c72_0 - pulseaudio-client=16.1=hb77b528_5 - pybind11=2.11.1=py310hd41b1e2_2 - pyproject-api=1.6.1=pyhd8ed1ab_0 @@ -405,7 +404,7 @@ dependencies: - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1 - liblapacke=3.9.0=20_linux64_openblas - numpy=1.26.2=py310hb13e2d6_0 - - prompt_toolkit=3.0.24=hd8ed1ab_0 + - prompt_toolkit=3.0.41=hd8ed1ab_0 - pyqt5-sip=12.12.2=py310hc6cd4ac_5 - requests=2.31.0=pyhd8ed1ab_0 - setuptools-scm=8.0.4=pyhd8ed1ab_0 @@ -419,11 +418,11 @@ dependencies: - fpylll=0.6.0=py310h7e26f94_1 - giac=1.9.0.21=h673759e_1 - gst-plugins-base=1.22.7=h8e1006c_0 - - ipython=8.8.0=pyh41d4057_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=h9d78c56_7 + - linbox=1.6.3=ha329b40_8 - openjdk=21.0.1=haa376d0_0 - pango=1.50.14=ha41ecd1_2 - pythran=0.14.0=py310hcb52e73_1 @@ -439,6 +438,7 @@ dependencies: - nbformat=5.9.2=pyhd8ed1ab_0 - qt-main=5.15.8=h82b777d_17 - r-base=4.3.2=hb8ee39d_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 diff --git a/src/environment-3.10-macos-arm64.yml b/src/environment-3.10-macos-arm64.yml index 7293ed807ce..e54f2570adc 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: ffdfe4e4f1286bfbf2f9dabd94980811433a96835938b9d3c18068ffd4ba63b4 +# input_hash: aa5ed3c06de5b315b0e00f8cf54d8bbfcd42b210fb0cc6c93c3c0f7584976bff channels: - conda-forge @@ -37,7 +37,7 @@ dependencies: - make=4.3=he57ea6c_1 - mathjax=3.2.2=hce30654_0 - metis=5.1.0=h13dd4ca_1007 - - nauty=2.7.2=h3422bc3_0 + - nauty=2.8.6=h93a5062_0 - palp=2.20=h27ca646_0 - pandoc=3.1.3=hce30654_0 - pari-elldata=0.0.20161017=0 @@ -257,7 +257,6 @@ dependencies: - tzlocal=5.2=py310hbe9552e_0 - unicodedata2=15.1.0=py310h2aa6e3c_0 - uri-template=1.3.0=pyhd8ed1ab_0 - - vcversioner=2.16.0.0=py_1 - wcwidth=0.2.12=pyhd8ed1ab_0 - webcolors=1.13=pyhd8ed1ab_0 - webencodings=0.5.1=pyhd8ed1ab_2 @@ -300,7 +299,7 @@ dependencies: - pip=23.3.1=pyhd8ed1ab_0 - pplpy=0.8.9=py310hab1f656_0 - primecountpy=0.1.0=py310h38f39d4_4 - - prompt-toolkit=3.0.24=pyha770c72_0 + - prompt-toolkit=3.0.41=pyha770c72_0 - pybind11=2.11.1=py310h38f39d4_2 - pyobjc-core=10.0=py310hd07e440_0 - pyproject-api=1.6.1=pyhd8ed1ab_0 @@ -333,7 +332,7 @@ dependencies: - liblapacke=3.9.0=20_osxarm64_openblas - numpy=1.26.2=py310h30ee222_0 - pango=1.50.14=h6c112b8_0 - - prompt_toolkit=3.0.24=hd8ed1ab_0 + - prompt_toolkit=3.0.41=hd8ed1ab_0 - pyobjc-framework-cocoa=10.0=py310hd07e440_1 - requests=2.31.0=pyhd8ed1ab_0 - setuptools-scm=8.0.4=pyhd8ed1ab_0 @@ -347,7 +346,7 @@ dependencies: - fpylll=0.6.0=py310hc79cb59_1 - giac=1.9.0.21=h1c96721_1 - igraph=0.9.10=hcec9b84_1 - - ipython=8.8.0=pyhd1c38e8_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 @@ -365,6 +364,7 @@ dependencies: - 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 diff --git a/src/environment-3.10-macos.yml b/src/environment-3.10-macos.yml index 9e68109ee92..f53920cca73 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: 8559700c75500d6c4a80fb5cb94f546973afc548a5b4fdfd3363819c939eb08a +# input_hash: 5335f611d811190b9a60e80f9e79c7b3c50ecb52b060060d1c5575bb539a632e channels: - conda-forge @@ -141,7 +141,7 @@ dependencies: - libboost-devel=1.83.0=h7728843_0 - libbrial=1.2.12=h8d08345_1 - libclang-cpp15=15.0.7=default_h6b1ee41_4 - - libflint=2.9.0=hfd2f71f_ntl_100 + - 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=hbedff68_4 @@ -157,7 +157,7 @@ dependencies: - alabaster=0.7.13=pyhd8ed1ab_0 - appdirs=1.4.4=pyh9f0ad1d_0 - appnope=0.1.3=pyhd8ed1ab_0 - - arb=2.23.0=h905a977_0 + - arb=2.9.0=0 - attrs=23.1.0=pyh71513ae_1 - backcall=0.2.0=pyh9f0ad1d_0 - boost-cpp=1.83.0=h07eb623_0 @@ -180,7 +180,7 @@ dependencies: - defusedxml=0.7.1=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - docutils=0.20.1=py310h2ec42d9_3 - - eclib=20230424=hd00e801_0 + - eclib=20230424=h563f520_1 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 - exceptiongroup=1.2.0=pyhd8ed1ab_0 @@ -247,7 +247,7 @@ dependencies: - sagetex=3.6.1=pyhd8ed1ab_0 - setuptools=68.2.2=pyhd8ed1ab_0 - simplegeneric=0.8.1=py_1 - - singular=4.2.1.p3=hac851df_2 + - singular=4.3.2.p8=h0d51a9f_0 - six=1.16.0=pyh6c4a22f_0 - sniffio=1.3.0=pyhd8ed1ab_0 - snowballstemmer=2.2.0=pyhd8ed1ab_0 @@ -264,7 +264,6 @@ dependencies: - tzlocal=5.2=py310h2ec42d9_0 - unicodedata2=15.1.0=py310h6729b98_0 - uri-template=1.3.0=pyhd8ed1ab_0 - - vcversioner=2.16.0.0=py_1 - wcwidth=0.2.12=pyhd8ed1ab_0 - webcolors=1.13=pyhd8ed1ab_0 - webencodings=0.5.1=pyhd8ed1ab_2 @@ -306,7 +305,7 @@ dependencies: - pip=23.3.1=pyhd8ed1ab_0 - pplpy=0.8.9=py310hd89f7aa_0 - primecountpy=0.1.0=py310h88cfcbd_4 - - prompt-toolkit=3.0.24=pyha770c72_0 + - prompt-toolkit=3.0.41=pyha770c72_0 - pybind11=2.11.1=py310h88cfcbd_2 - pyobjc-core=10.0=py310hef2d279_0 - pyproject-api=1.6.1=pyhd8ed1ab_0 @@ -337,7 +336,7 @@ dependencies: - liblapacke=3.9.0=20_osx64_openblas - numpy=1.26.2=py310h2a7ecf2_0 - pango=1.50.14=h19c1c8a_2 - - prompt_toolkit=3.0.24=hd8ed1ab_0 + - prompt_toolkit=3.0.41=hd8ed1ab_0 - pyobjc-framework-cocoa=10.0=py310hef2d279_1 - requests=2.31.0=pyhd8ed1ab_0 - setuptools-scm=8.0.4=pyhd8ed1ab_0 @@ -350,11 +349,11 @@ dependencies: - cvxopt=1.3.2=py310ha550498_1 - fpylll=0.6.0=py310h2acdeac_1 - giac=1.9.0.21=h92f3f65_1 - - ipython=8.8.0=pyhd1c38e8_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=hdde8d14_7 + - 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 @@ -367,6 +366,7 @@ dependencies: - matplotlib-base=3.8.2=py310hec49e92_0 - nbformat=5.9.2=pyhd8ed1ab_0 - clang_impl_osx-64=15.0.7=h03d6864_6 + - 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 diff --git a/src/environment-3.11-linux-aarch64.yml b/src/environment-3.11-linux-aarch64.yml index 55bf5bf2212..01dba650e25 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: 442494bd5a0ce760a6c4355bf8bc83eaa119797a154e31f317a55684fe4122be +# input_hash: 0a6ac34c356068128c187cbe06d057fb0fc2687a505a6ef2f8c4b5edd4f08483 channels: - conda-forge @@ -78,7 +78,7 @@ dependencies: - m4=1.4.18=h516909a_1001 - make=4.3=h309ac5b_1 - metis=5.1.0=h2f0025b_1007 - - nauty=2.7.2=hf897c2e_0 + - nauty=2.8.6=h31becfc_0 - ncurses=6.4=h0425590_2 - ninja=1.11.1=hdd96247_0 - openssl=3.2.0=h31becfc_1 @@ -282,7 +282,6 @@ dependencies: - typing_utils=0.1.0=pyhd8ed1ab_0 - tzlocal=5.2=py311hec3470c_0 - uri-template=1.3.0=pyhd8ed1ab_0 - - vcversioner=2.16.0.0=py_1 - wcwidth=0.2.12=pyhd8ed1ab_0 - webcolors=1.13=pyhd8ed1ab_0 - webencodings=0.5.1=pyhd8ed1ab_2 @@ -331,7 +330,7 @@ dependencies: - pip=23.3.1=pyhd8ed1ab_0 - pplpy=0.8.9=py311haefeb0b_0 - primecountpy=0.1.0=py311h098ece5_4 - - prompt-toolkit=3.0.24=pyha770c72_0 + - prompt-toolkit=3.0.41=pyha770c72_0 - pybind11=2.11.1=py311h098ece5_2 - pyproject-api=1.6.1=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 @@ -363,7 +362,7 @@ dependencies: - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1 - liblapacke=3.9.0=20_linuxaarch64_openblas - numpy=1.26.2=py311h69ead2a_0 - - prompt_toolkit=3.0.24=hd8ed1ab_0 + - prompt_toolkit=3.0.41=hd8ed1ab_0 - requests=2.31.0=pyhd8ed1ab_0 - setuptools-scm=8.0.4=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 @@ -376,7 +375,7 @@ dependencies: - fpylll=0.6.0=py311h5d3d69a_1 - giac=1.9.0.21=h04922a4_1 - igraph=0.9.10=hefb87a8_1 - - ipython=8.8.0=pyh41d4057_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 @@ -396,6 +395,7 @@ dependencies: - 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 diff --git a/src/environment-3.11-linux.yml b/src/environment-3.11-linux.yml index 8d9508ee5c9..50e3b0855af 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: 6d6ecc95e0c89d8f01be60115bada743f108afb7c8fe60d41ad305a79a3f9de1 +# input_hash: 31265ea1fab649873eaae986e5ef06a6354be2fe29d2bc0fca24a8220c7ee81f channels: - conda-forge @@ -84,7 +84,7 @@ dependencies: - make=4.3=hd18ef5c_1 - metis=5.1.0=h59595ed_1007 - mpg123=1.32.3=h59595ed_0 - - nauty=2.7.2=h7f98852_0 + - nauty=2.8.6=hd590300_0 - ncurses=6.4=h59595ed_2 - ninja=1.11.1=h924138e_0 - nspr=4.35=h27087fc_0 @@ -163,7 +163,7 @@ dependencies: - igraph=0.7.1=0 - krb5=1.21.2=h659d440_0 - libboost=1.83.0=h6fcfa73_0 - - libflint=2.9.0=h2f819a4_ntl_100 + - libflint=3.0.1=h5f2e117_ntl_100 - libgcrypt=1.10.3=hd590300_0 - libglib=2.78.2=h783c2da_0 - libhwloc=2.9.3=default_h554bfaf_1009 @@ -194,7 +194,7 @@ dependencies: - alabaster=0.7.13=pyhd8ed1ab_0 - appdirs=1.4.4=pyh9f0ad1d_0 - appnope=0.1.3=pyhd8ed1ab_0 - - arb=2.23.0=h44d021b_0 + - arb=2.9.0=0 - attrs=23.1.0=pyh71513ae_1 - automake=1.16.5=pl5321ha770c72_0 - backcall=0.2.0=pyh9f0ad1d_0 @@ -216,7 +216,7 @@ dependencies: - defusedxml=0.7.1=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - docutils=0.20.1=py311h38be061_3 - - eclib=20230424=hdef1efb_0 + - eclib=20230424=h96f522a_1 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 - exceptiongroup=1.2.0=pyhd8ed1ab_0 @@ -297,7 +297,7 @@ dependencies: - send2trash=1.8.2=pyh41d4057_0 - setuptools=68.2.2=pyhd8ed1ab_0 - simplegeneric=0.8.1=py_1 - - singular=4.2.1.p3=h1ea75ed_2 + - singular=4.3.2.p8=h33f5c3f_0 - six=1.16.0=pyh6c4a22f_0 - sniffio=1.3.0=pyhd8ed1ab_0 - snowballstemmer=2.2.0=pyhd8ed1ab_0 @@ -315,7 +315,6 @@ dependencies: - typing_utils=0.1.0=pyhd8ed1ab_0 - tzlocal=5.2=py311h38be061_0 - uri-template=1.3.0=pyhd8ed1ab_0 - - vcversioner=2.16.0.0=py_1 - wcwidth=0.2.12=pyhd8ed1ab_0 - webcolors=1.13=pyhd8ed1ab_0 - webencodings=0.5.1=pyhd8ed1ab_2 @@ -370,7 +369,7 @@ dependencies: - pip=23.3.1=pyhd8ed1ab_0 - pplpy=0.8.9=py311h85abca9_0 - primecountpy=0.1.0=py311h9547e67_4 - - prompt-toolkit=3.0.24=pyha770c72_0 + - prompt-toolkit=3.0.41=pyha770c72_0 - pulseaudio-client=16.1=hb77b528_5 - pybind11=2.11.1=py311h9547e67_2 - pyproject-api=1.6.1=pyhd8ed1ab_0 @@ -404,7 +403,7 @@ dependencies: - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1 - liblapacke=3.9.0=20_linux64_openblas - numpy=1.26.2=py311h64a7726_0 - - prompt_toolkit=3.0.24=hd8ed1ab_0 + - prompt_toolkit=3.0.41=hd8ed1ab_0 - pyqt5-sip=12.12.2=py311hb755f60_5 - requests=2.31.0=pyhd8ed1ab_0 - setuptools-scm=8.0.4=pyhd8ed1ab_0 @@ -418,11 +417,11 @@ dependencies: - fpylll=0.6.0=py311hcfae7cf_1 - giac=1.9.0.21=h673759e_1 - gst-plugins-base=1.22.7=h8e1006c_0 - - ipython=8.8.0=pyh41d4057_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=h9d78c56_7 + - linbox=1.6.3=ha329b40_8 - openjdk=21.0.1=haa376d0_0 - pango=1.50.14=ha41ecd1_2 - pythran=0.14.0=py311h92ebd52_1 @@ -438,6 +437,7 @@ dependencies: - nbformat=5.9.2=pyhd8ed1ab_0 - qt-main=5.15.8=h82b777d_17 - r-base=4.3.2=hb8ee39d_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 diff --git a/src/environment-3.11-macos-arm64.yml b/src/environment-3.11-macos-arm64.yml index 301847b5a92..9dab1059a84 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: ad64c3d6ad5b2bf0fc23750ec7e1b16ad2ba693074eb779369f0d37a25da04fe +# input_hash: e618c00b905fa56c7bf6c6e3710492b69214374c3067f54656034f7e618d0b45 channels: - conda-forge @@ -37,7 +37,7 @@ dependencies: - make=4.3=he57ea6c_1 - mathjax=3.2.2=hce30654_0 - metis=5.1.0=h13dd4ca_1007 - - nauty=2.7.2=h3422bc3_0 + - nauty=2.8.6=h93a5062_0 - palp=2.20=h27ca646_0 - pandoc=3.1.3=hce30654_0 - pari-elldata=0.0.20161017=0 @@ -256,7 +256,6 @@ dependencies: - typing_utils=0.1.0=pyhd8ed1ab_0 - tzlocal=5.2=py311h267d04e_0 - uri-template=1.3.0=pyhd8ed1ab_0 - - vcversioner=2.16.0.0=py_1 - wcwidth=0.2.12=pyhd8ed1ab_0 - webcolors=1.13=pyhd8ed1ab_0 - webencodings=0.5.1=pyhd8ed1ab_2 @@ -299,7 +298,7 @@ dependencies: - pip=23.3.1=pyhd8ed1ab_0 - pplpy=0.8.9=py311h5ba3760_0 - primecountpy=0.1.0=py311he4fd1f5_4 - - prompt-toolkit=3.0.24=pyha770c72_0 + - prompt-toolkit=3.0.41=pyha770c72_0 - pybind11=2.11.1=py311he4fd1f5_2 - pyobjc-core=10.0=py311hb702dc4_0 - pyproject-api=1.6.1=pyhd8ed1ab_0 @@ -332,7 +331,7 @@ dependencies: - liblapacke=3.9.0=20_osxarm64_openblas - numpy=1.26.2=py311h6d074dd_0 - pango=1.50.14=h6c112b8_0 - - prompt_toolkit=3.0.24=hd8ed1ab_0 + - prompt_toolkit=3.0.41=hd8ed1ab_0 - pyobjc-framework-cocoa=10.0=py311hb702dc4_1 - requests=2.31.0=pyhd8ed1ab_0 - setuptools-scm=8.0.4=pyhd8ed1ab_0 @@ -346,7 +345,7 @@ dependencies: - fpylll=0.6.0=py311he33df0e_1 - giac=1.9.0.21=h1c96721_1 - igraph=0.9.10=hcec9b84_1 - - ipython=8.8.0=pyhd1c38e8_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 @@ -364,6 +363,7 @@ dependencies: - 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 diff --git a/src/environment-3.11-macos.yml b/src/environment-3.11-macos.yml index cda21078a3d..a809720fb42 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: bb92870fa42ce70f8a3e380e70c39da550358f0a406f334229520fd46af275c9 +# input_hash: 80bfbd8ddf66b9c5bc1a6a6c77142c5f518cf580f9fe31d47b49ced8a3c48ace channels: - conda-forge @@ -141,7 +141,7 @@ dependencies: - libboost-devel=1.83.0=h7728843_0 - libbrial=1.2.12=h8d08345_1 - libclang-cpp15=15.0.7=default_h6b1ee41_4 - - libflint=2.9.0=hfd2f71f_ntl_100 + - 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=hbedff68_4 @@ -157,7 +157,7 @@ dependencies: - alabaster=0.7.13=pyhd8ed1ab_0 - appdirs=1.4.4=pyh9f0ad1d_0 - appnope=0.1.3=pyhd8ed1ab_0 - - arb=2.23.0=h905a977_0 + - arb=2.9.0=0 - attrs=23.1.0=pyh71513ae_1 - backcall=0.2.0=pyh9f0ad1d_0 - boost-cpp=1.83.0=h07eb623_0 @@ -180,7 +180,7 @@ dependencies: - defusedxml=0.7.1=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - docutils=0.20.1=py311h6eed73b_3 - - eclib=20230424=hd00e801_0 + - eclib=20230424=h563f520_1 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 - exceptiongroup=1.2.0=pyhd8ed1ab_0 @@ -247,7 +247,7 @@ dependencies: - sagetex=3.6.1=pyhd8ed1ab_0 - setuptools=68.2.2=pyhd8ed1ab_0 - simplegeneric=0.8.1=py_1 - - singular=4.2.1.p3=hac851df_2 + - singular=4.3.2.p8=h0d51a9f_0 - six=1.16.0=pyh6c4a22f_0 - sniffio=1.3.0=pyhd8ed1ab_0 - snowballstemmer=2.2.0=pyhd8ed1ab_0 @@ -263,7 +263,6 @@ dependencies: - typing_utils=0.1.0=pyhd8ed1ab_0 - tzlocal=5.2=py311h6eed73b_0 - uri-template=1.3.0=pyhd8ed1ab_0 - - vcversioner=2.16.0.0=py_1 - wcwidth=0.2.12=pyhd8ed1ab_0 - webcolors=1.13=pyhd8ed1ab_0 - webencodings=0.5.1=pyhd8ed1ab_2 @@ -305,7 +304,7 @@ dependencies: - pip=23.3.1=pyhd8ed1ab_0 - pplpy=0.8.9=py311h7355a2a_0 - primecountpy=0.1.0=py311h5fe6e05_4 - - prompt-toolkit=3.0.24=pyha770c72_0 + - prompt-toolkit=3.0.41=pyha770c72_0 - pybind11=2.11.1=py311h5fe6e05_2 - pyobjc-core=10.0=py311hf110eff_0 - pyproject-api=1.6.1=pyhd8ed1ab_0 @@ -336,7 +335,7 @@ dependencies: - liblapacke=3.9.0=20_osx64_openblas - numpy=1.26.2=py311h93c810c_0 - pango=1.50.14=h19c1c8a_2 - - prompt_toolkit=3.0.24=hd8ed1ab_0 + - prompt_toolkit=3.0.41=hd8ed1ab_0 - pyobjc-framework-cocoa=10.0=py311hf110eff_1 - requests=2.31.0=pyhd8ed1ab_0 - setuptools-scm=8.0.4=pyhd8ed1ab_0 @@ -349,11 +348,11 @@ dependencies: - cvxopt=1.3.2=py311ha4c19de_1 - fpylll=0.6.0=py311hc863427_1 - giac=1.9.0.21=h92f3f65_1 - - ipython=8.8.0=pyhd1c38e8_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=hdde8d14_7 + - 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 @@ -366,6 +365,7 @@ dependencies: - matplotlib-base=3.8.2=py311hd316c10_0 - nbformat=5.9.2=pyhd8ed1ab_0 - clang_impl_osx-64=15.0.7=h03d6864_6 + - 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 diff --git a/src/environment-3.9-linux-aarch64.yml b/src/environment-3.9-linux-aarch64.yml index 686c3be393e..bbbf05a5da8 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: a10e3a467cf458fcb840256ae6cfa5842a184c5de4230665e4897dccf096fb8b +# input_hash: e298eb1de51ec8b73a6561bfbdbb02b2e349d827d6de9773984a418b4e86dd84 channels: - conda-forge @@ -78,7 +78,7 @@ dependencies: - m4=1.4.18=h516909a_1001 - make=4.3=h309ac5b_1 - metis=5.1.0=h2f0025b_1007 - - nauty=2.7.2=hf897c2e_0 + - nauty=2.8.6=h31becfc_0 - ncurses=6.4=h0425590_2 - ninja=1.11.1=hdd96247_0 - openssl=3.2.0=h31becfc_1 @@ -283,7 +283,6 @@ dependencies: - tzlocal=5.2=py39h4420490_0 - unicodedata2=15.1.0=py39h898b7ef_0 - uri-template=1.3.0=pyhd8ed1ab_0 - - vcversioner=2.16.0.0=py_1 - wcwidth=0.2.12=pyhd8ed1ab_0 - webcolors=1.13=pyhd8ed1ab_0 - webencodings=0.5.1=pyhd8ed1ab_2 @@ -332,7 +331,7 @@ dependencies: - pip=23.3.1=pyhd8ed1ab_0 - pplpy=0.8.9=py39h087fc0e_0 - primecountpy=0.1.0=py39hd16970a_3 - - prompt-toolkit=3.0.24=pyha770c72_0 + - prompt-toolkit=3.0.41=pyha770c72_0 - pybind11=2.11.1=py39hd16970a_2 - pyproject-api=1.6.1=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 @@ -364,7 +363,7 @@ dependencies: - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1 - liblapacke=3.9.0=20_linuxaarch64_openblas - numpy=1.26.2=py39h91c28bb_0 - - prompt_toolkit=3.0.24=hd8ed1ab_0 + - prompt_toolkit=3.0.41=hd8ed1ab_0 - requests=2.31.0=pyhd8ed1ab_0 - setuptools-scm=8.0.4=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 @@ -377,7 +376,7 @@ dependencies: - fpylll=0.6.0=py39h97065f7_1 - giac=1.9.0.21=h04922a4_1 - igraph=0.9.10=hefb87a8_1 - - ipython=8.8.0=pyh41d4057_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 @@ -397,6 +396,7 @@ dependencies: - 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 diff --git a/src/environment-3.9-linux.yml b/src/environment-3.9-linux.yml index bd0469b0d60..afc56719182 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: 8bed86538f4d3558cf28685dc8abd2422a7035f5386ec172d6c3561182e27a1f +# input_hash: 4a20ce66e5e0f5e2d4c410594036965b255391cd20ea6ce0f99b4ce11803138d channels: - conda-forge @@ -84,7 +84,7 @@ dependencies: - make=4.3=hd18ef5c_1 - metis=5.1.0=h59595ed_1007 - mpg123=1.32.3=h59595ed_0 - - nauty=2.7.2=h7f98852_0 + - nauty=2.8.6=hd590300_0 - ncurses=6.4=h59595ed_2 - ninja=1.11.1=h924138e_0 - nspr=4.35=h27087fc_0 @@ -163,7 +163,7 @@ dependencies: - igraph=0.7.1=0 - krb5=1.21.2=h659d440_0 - libboost=1.83.0=h6fcfa73_0 - - libflint=2.9.0=h2f819a4_ntl_100 + - libflint=3.0.1=h5f2e117_ntl_100 - libgcrypt=1.10.3=hd590300_0 - libglib=2.78.2=h783c2da_0 - libhwloc=2.9.3=default_h554bfaf_1009 @@ -194,7 +194,7 @@ dependencies: - alabaster=0.7.13=pyhd8ed1ab_0 - appdirs=1.4.4=pyh9f0ad1d_0 - appnope=0.1.3=pyhd8ed1ab_0 - - arb=2.23.0=h44d021b_0 + - arb=2.9.0=0 - attrs=23.1.0=pyh71513ae_1 - automake=1.16.5=pl5321ha770c72_0 - backcall=0.2.0=pyh9f0ad1d_0 @@ -216,7 +216,7 @@ dependencies: - defusedxml=0.7.1=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - docutils=0.20.1=py39hf3d152e_3 - - eclib=20230424=hdef1efb_0 + - eclib=20230424=h96f522a_1 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 - exceptiongroup=1.2.0=pyhd8ed1ab_0 @@ -297,7 +297,7 @@ dependencies: - send2trash=1.8.2=pyh41d4057_0 - setuptools=68.2.2=pyhd8ed1ab_0 - simplegeneric=0.8.1=py_1 - - singular=4.2.1.p3=h1ea75ed_2 + - singular=4.3.2.p8=h33f5c3f_0 - six=1.16.0=pyh6c4a22f_0 - sniffio=1.3.0=pyhd8ed1ab_0 - snowballstemmer=2.2.0=pyhd8ed1ab_0 @@ -316,7 +316,6 @@ dependencies: - tzlocal=5.2=py39hf3d152e_0 - unicodedata2=15.1.0=py39hd1e30aa_0 - uri-template=1.3.0=pyhd8ed1ab_0 - - vcversioner=2.16.0.0=py_1 - wcwidth=0.2.12=pyhd8ed1ab_0 - webcolors=1.13=pyhd8ed1ab_0 - webencodings=0.5.1=pyhd8ed1ab_2 @@ -371,7 +370,7 @@ dependencies: - pip=23.3.1=pyhd8ed1ab_0 - pplpy=0.8.9=py39hba3e9e5_0 - primecountpy=0.1.0=py39h7633fee_4 - - prompt-toolkit=3.0.24=pyha770c72_0 + - prompt-toolkit=3.0.41=pyha770c72_0 - pulseaudio-client=16.1=hb77b528_5 - pybind11=2.11.1=py39h7633fee_2 - pyproject-api=1.6.1=pyhd8ed1ab_0 @@ -405,7 +404,7 @@ dependencies: - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1 - liblapacke=3.9.0=20_linux64_openblas - numpy=1.26.2=py39h474f0d3_0 - - prompt_toolkit=3.0.24=hd8ed1ab_0 + - prompt_toolkit=3.0.41=hd8ed1ab_0 - pyqt5-sip=12.12.2=py39h3d6467e_5 - requests=2.31.0=pyhd8ed1ab_0 - setuptools-scm=8.0.4=pyhd8ed1ab_0 @@ -419,11 +418,11 @@ dependencies: - fpylll=0.6.0=py39h2525e16_1 - giac=1.9.0.21=h673759e_1 - gst-plugins-base=1.22.7=h8e1006c_0 - - ipython=8.8.0=pyh41d4057_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=h9d78c56_7 + - linbox=1.6.3=ha329b40_8 - openjdk=21.0.1=haa376d0_0 - pango=1.50.14=ha41ecd1_2 - pythran=0.14.0=py39hda80f44_1 @@ -439,6 +438,7 @@ dependencies: - nbformat=5.9.2=pyhd8ed1ab_0 - qt-main=5.15.8=h82b777d_17 - r-base=4.3.2=hb8ee39d_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 diff --git a/src/environment-3.9-macos-arm64.yml b/src/environment-3.9-macos-arm64.yml index f42cff7056a..761d1e8305c 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: 10f4873e3d8377ce2db7561ab924eeced59ad04d8209d689ad56ded859aaf325 +# input_hash: addfbe14b4bfb6f51731399d2dceeccc56f4710c30c87193ce7da625d1fc0393 channels: - conda-forge @@ -37,7 +37,7 @@ dependencies: - make=4.3=he57ea6c_1 - mathjax=3.2.2=hce30654_0 - metis=5.1.0=h13dd4ca_1007 - - nauty=2.7.2=h3422bc3_0 + - nauty=2.8.6=h93a5062_0 - palp=2.20=h27ca646_0 - pandoc=3.1.3=hce30654_0 - pari-elldata=0.0.20161017=0 @@ -257,7 +257,6 @@ dependencies: - tzlocal=5.2=py39h2804cbe_0 - unicodedata2=15.1.0=py39h0f82c59_0 - uri-template=1.3.0=pyhd8ed1ab_0 - - vcversioner=2.16.0.0=py_1 - wcwidth=0.2.12=pyhd8ed1ab_0 - webcolors=1.13=pyhd8ed1ab_0 - webencodings=0.5.1=pyhd8ed1ab_2 @@ -300,7 +299,7 @@ dependencies: - pip=23.3.1=pyhd8ed1ab_0 - pplpy=0.8.9=py39haf103f8_0 - primecountpy=0.1.0=py39hbd775c9_4 - - prompt-toolkit=3.0.24=pyha770c72_0 + - prompt-toolkit=3.0.41=pyha770c72_0 - pybind11=2.11.1=py39hbd775c9_2 - pyobjc-core=10.0=py39h4d1a642_0 - pyproject-api=1.6.1=pyhd8ed1ab_0 @@ -333,7 +332,7 @@ dependencies: - liblapacke=3.9.0=20_osxarm64_openblas - numpy=1.26.2=py39heee92a0_0 - pango=1.50.14=h6c112b8_0 - - prompt_toolkit=3.0.24=hd8ed1ab_0 + - prompt_toolkit=3.0.41=hd8ed1ab_0 - pyobjc-framework-cocoa=10.0=py39h4d1a642_1 - requests=2.31.0=pyhd8ed1ab_0 - setuptools-scm=8.0.4=pyhd8ed1ab_0 @@ -347,7 +346,7 @@ dependencies: - fpylll=0.6.0=py39h947550b_1 - giac=1.9.0.21=h1c96721_1 - igraph=0.9.10=hcec9b84_1 - - ipython=8.8.0=pyhd1c38e8_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 @@ -365,6 +364,7 @@ dependencies: - 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 diff --git a/src/environment-3.9-macos.yml b/src/environment-3.9-macos.yml index d34f7c3ed68..d530f60ed7a 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: 123881d0fb332973ee22953db00fab5eaf41b4792479a7dc62fde362eeb39a9a +# input_hash: 56163e38cb3b6235050ea91a8829b0580f25b55c5e897a4b350caf05e7ac95e6 channels: - conda-forge @@ -141,7 +141,7 @@ dependencies: - libboost-devel=1.83.0=h7728843_0 - libbrial=1.2.12=h8d08345_1 - libclang-cpp15=15.0.7=default_h6b1ee41_4 - - libflint=2.9.0=hfd2f71f_ntl_100 + - 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=hbedff68_4 @@ -157,7 +157,7 @@ dependencies: - alabaster=0.7.13=pyhd8ed1ab_0 - appdirs=1.4.4=pyh9f0ad1d_0 - appnope=0.1.3=pyhd8ed1ab_0 - - arb=2.23.0=h905a977_0 + - arb=2.9.0=0 - attrs=23.1.0=pyh71513ae_1 - backcall=0.2.0=pyh9f0ad1d_0 - boost-cpp=1.83.0=h07eb623_0 @@ -180,7 +180,7 @@ dependencies: - defusedxml=0.7.1=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - docutils=0.20.1=py39h6e9494a_3 - - eclib=20230424=hd00e801_0 + - eclib=20230424=h563f520_1 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 - exceptiongroup=1.2.0=pyhd8ed1ab_0 @@ -247,7 +247,7 @@ dependencies: - sagetex=3.6.1=pyhd8ed1ab_0 - setuptools=68.2.2=pyhd8ed1ab_0 - simplegeneric=0.8.1=py_1 - - singular=4.2.1.p3=hac851df_2 + - singular=4.3.2.p8=h0d51a9f_0 - six=1.16.0=pyh6c4a22f_0 - sniffio=1.3.0=pyhd8ed1ab_0 - snowballstemmer=2.2.0=pyhd8ed1ab_0 @@ -264,7 +264,6 @@ dependencies: - tzlocal=5.2=py39h6e9494a_0 - unicodedata2=15.1.0=py39hdc70f33_0 - uri-template=1.3.0=pyhd8ed1ab_0 - - vcversioner=2.16.0.0=py_1 - wcwidth=0.2.12=pyhd8ed1ab_0 - webcolors=1.13=pyhd8ed1ab_0 - webencodings=0.5.1=pyhd8ed1ab_2 @@ -306,7 +305,7 @@ dependencies: - pip=23.3.1=pyhd8ed1ab_0 - pplpy=0.8.9=py39h248ee18_0 - primecountpy=0.1.0=py39h8ee36c8_4 - - prompt-toolkit=3.0.24=pyha770c72_0 + - prompt-toolkit=3.0.41=pyha770c72_0 - pybind11=2.11.1=py39h8ee36c8_2 - pyobjc-core=10.0=py39head00df_0 - pyproject-api=1.6.1=pyhd8ed1ab_0 @@ -337,7 +336,7 @@ dependencies: - liblapacke=3.9.0=20_osx64_openblas - numpy=1.26.2=py39h14c6d2e_0 - pango=1.50.14=h19c1c8a_2 - - prompt_toolkit=3.0.24=hd8ed1ab_0 + - prompt_toolkit=3.0.41=hd8ed1ab_0 - pyobjc-framework-cocoa=10.0=py39head00df_1 - requests=2.31.0=pyhd8ed1ab_0 - setuptools-scm=8.0.4=pyhd8ed1ab_0 @@ -350,11 +349,11 @@ dependencies: - cvxopt=1.3.2=py39h2a3e123_1 - fpylll=0.6.0=py39hec15948_1 - giac=1.9.0.21=h92f3f65_1 - - ipython=8.8.0=pyhd1c38e8_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=hdde8d14_7 + - 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 @@ -367,6 +366,7 @@ dependencies: - matplotlib-base=3.8.2=py39h7070ae8_0 - nbformat=5.9.2=pyhd8ed1ab_0 - clang_impl_osx-64=15.0.7=h03d6864_6 + - 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 diff --git a/src/environment-dev-3.10-linux-aarch64.yml b/src/environment-dev-3.10-linux-aarch64.yml index 2fe79592400..b68882a87ed 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: 375fe24c4a34c0121f52876f9e44c4a225b5c3b792acbe0066d3549f2fa4521b +# input_hash: 48864fd96138ac5445233bdfef587424fea88152264cef70f79c5dfa83cc0d1b channels: - conda-forge @@ -81,7 +81,7 @@ dependencies: - m4=1.4.18=h516909a_1001 - make=4.3=h309ac5b_1 - metis=5.1.0=h2f0025b_1007 - - nauty=2.7.2=hf897c2e_0 + - nauty=2.8.6=h31becfc_0 - ncurses=6.4=h0425590_2 - ninja=1.11.1=hdd96247_0 - openssl=3.2.0=h31becfc_1 @@ -307,7 +307,6 @@ dependencies: - tzlocal=5.2=py310h4c7bcd0_0 - unicodedata2=15.1.0=py310hb299538_0 - uri-template=1.3.0=pyhd8ed1ab_0 - - vcversioner=2.16.0.0=py_1 - wcwidth=0.2.12=pyhd8ed1ab_0 - webcolors=1.13=pyhd8ed1ab_0 - webencodings=0.5.1=pyhd8ed1ab_2 @@ -362,7 +361,7 @@ dependencies: - pip=23.3.1=pyhd8ed1ab_0 - pplpy=0.8.9=py310hd5c817c_0 - primecountpy=0.1.0=py310h586407a_4 - - prompt-toolkit=3.0.24=pyha770c72_0 + - prompt-toolkit=3.0.41=pyha770c72_0 - pybind11=2.11.1=py310h586407a_2 - pyproject-api=1.6.1=pyhd8ed1ab_0 - pytest=7.4.3=pyhd8ed1ab_0 @@ -401,7 +400,7 @@ dependencies: - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1 - liblapacke=3.9.0=20_linuxaarch64_openblas - numpy=1.26.2=py310hcbab775_0 - - prompt_toolkit=3.0.24=hd8ed1ab_0 + - prompt_toolkit=3.0.41=hd8ed1ab_0 - pydantic-core=2.14.5=py310hfd680ee_0 - pytest-xdist=3.5.0=pyhd8ed1ab_0 - requests=2.31.0=pyhd8ed1ab_0 @@ -418,7 +417,7 @@ dependencies: - fpylll=0.6.0=py310hfdbf2a6_1 - giac=1.9.0.21=h04922a4_1 - igraph=0.9.10=hefb87a8_1 - - ipython=8.8.0=pyh41d4057_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 @@ -445,6 +444,7 @@ dependencies: - 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 diff --git a/src/environment-dev-3.10-linux.yml b/src/environment-dev-3.10-linux.yml index b26eea131a9..41d6eb0bf84 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: 1cc348691c9758ac6709380ff0d372c1fcdb69cb5caebc5464851253f89eff62 +# input_hash: 5bc4148db744849f9c0e7ef4edf4500d249bf081057f364d8fe45e3d031962f0 channels: - conda-forge @@ -86,7 +86,7 @@ dependencies: - make=4.3=hd18ef5c_1 - metis=5.1.0=h59595ed_1007 - mpg123=1.32.3=h59595ed_0 - - nauty=2.7.2=h7f98852_0 + - nauty=2.8.6=hd590300_0 - ncurses=6.4=h59595ed_2 - ninja=1.11.1=h924138e_0 - nspr=4.35=h27087fc_0 @@ -165,7 +165,7 @@ dependencies: - igraph=0.7.1=0 - krb5=1.21.2=h659d440_0 - libboost=1.83.0=h6fcfa73_0 - - libflint=2.9.0=h2f819a4_ntl_100 + - libflint=3.0.1=h5f2e117_ntl_100 - libgcrypt=1.10.3=hd590300_0 - libglib=2.78.1=hebfc3b9_0 - libhwloc=2.9.3=default_h554bfaf_1009 @@ -197,7 +197,7 @@ dependencies: - alabaster=0.7.13=pyhd8ed1ab_0 - appdirs=1.4.4=pyh9f0ad1d_0 - appnope=0.1.3=pyhd8ed1ab_0 - - arb=2.23.0=h44d021b_0 + - arb=2.9.0=0 - attrs=23.1.0=pyh71513ae_1 - automake=1.16.5=pl5321ha770c72_0 - backcall=0.2.0=pyh9f0ad1d_0 @@ -222,7 +222,7 @@ dependencies: - defusedxml=0.7.1=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - docutils=0.20.1=py310hff52083_3 - - eclib=20230424=hdef1efb_0 + - eclib=20230424=h96f522a_1 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 - exceptiongroup=1.2.0=pyhd8ed1ab_0 @@ -315,7 +315,7 @@ dependencies: - send2trash=1.8.2=pyh41d4057_0 - setuptools=68.2.2=pyhd8ed1ab_0 - simplegeneric=0.8.1=py_1 - - singular=4.2.1.p3=h1ea75ed_2 + - singular=4.3.2.p8=h33f5c3f_0 - six=1.16.0=pyh6c4a22f_0 - smmap=5.0.0=pyhd8ed1ab_0 - sniffio=1.3.0=pyhd8ed1ab_0 @@ -337,7 +337,6 @@ dependencies: - tzlocal=5.2=py310hff52083_0 - unicodedata2=15.1.0=py310h2372a71_0 - uri-template=1.3.0=pyhd8ed1ab_0 - - vcversioner=2.16.0.0=py_1 - wcwidth=0.2.12=pyhd8ed1ab_0 - webcolors=1.13=pyhd8ed1ab_0 - webencodings=0.5.1=pyhd8ed1ab_2 @@ -398,7 +397,7 @@ dependencies: - pip=23.3.1=pyhd8ed1ab_0 - pplpy=0.8.9=py310h28f6eb6_0 - primecountpy=0.1.0=py310hd41b1e2_4 - - prompt-toolkit=3.0.24=pyha770c72_0 + - prompt-toolkit=3.0.41=pyha770c72_0 - pulseaudio-client=16.1=hb77b528_5 - pybind11=2.11.1=py310hd41b1e2_2 - pyproject-api=1.6.1=pyhd8ed1ab_0 @@ -439,7 +438,7 @@ dependencies: - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1 - liblapacke=3.9.0=20_linux64_openblas - numpy=1.26.2=py310hb13e2d6_0 - - prompt_toolkit=3.0.24=hd8ed1ab_0 + - prompt_toolkit=3.0.41=hd8ed1ab_0 - pydantic-core=2.14.5=py310hcb5633a_0 - pyqt5-sip=12.12.2=py310hc6cd4ac_5 - pytest-xdist=3.5.0=pyhd8ed1ab_0 @@ -457,11 +456,11 @@ dependencies: - fpylll=0.6.0=py310h7e26f94_1 - giac=1.9.0.21=h673759e_1 - gst-plugins-base=1.22.7=h8e1006c_0 - - ipython=8.8.0=pyh41d4057_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=h9d78c56_7 + - linbox=1.6.3=ha329b40_8 - lsprotocol=2023.0.0=pyhd8ed1ab_0 - openjdk=21.0.1=haa376d0_0 - pango=1.50.14=ha41ecd1_2 @@ -484,6 +483,7 @@ dependencies: - qt-main=5.15.8=h82b777d_17 - r-base=4.3.2=h93585b2_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 - nbclient=0.8.0=pyhd8ed1ab_0 diff --git a/src/environment-dev-3.10-macos-arm64.yml b/src/environment-dev-3.10-macos-arm64.yml index ec792a668e0..0e1fd91dbc3 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: d65e398e49f606bc32f5211282171eccd79fd0276ee1b6ed49dbd9bb1dff4146 +# input_hash: da512c54fdc4832153922ce4704f24b6967568f5b0355efddc29fd6f256fc720 channels: - conda-forge @@ -38,7 +38,7 @@ dependencies: - make=4.3=he57ea6c_1 - mathjax=3.2.2=hce30654_0 - metis=5.1.0=h13dd4ca_1007 - - nauty=2.7.2=h3422bc3_0 + - nauty=2.8.6=h93a5062_0 - palp=2.20=h27ca646_0 - pandoc=3.1.3=hce30654_0 - pari-elldata=0.0.20161017=0 @@ -277,7 +277,6 @@ dependencies: - tzlocal=5.2=py310hbe9552e_0 - unicodedata2=15.1.0=py310h2aa6e3c_0 - uri-template=1.3.0=pyhd8ed1ab_0 - - vcversioner=2.16.0.0=py_1 - wcwidth=0.2.12=pyhd8ed1ab_0 - webcolors=1.13=pyhd8ed1ab_0 - webencodings=0.5.1=pyhd8ed1ab_2 @@ -325,7 +324,7 @@ dependencies: - pip=23.3.1=pyhd8ed1ab_0 - pplpy=0.8.9=py310hab1f656_0 - primecountpy=0.1.0=py310h38f39d4_4 - - prompt-toolkit=3.0.24=pyha770c72_0 + - prompt-toolkit=3.0.41=pyha770c72_0 - pybind11=2.11.1=py310h38f39d4_2 - pyobjc-core=10.0=py310hd07e440_0 - pyproject-api=1.6.1=pyhd8ed1ab_0 @@ -364,7 +363,7 @@ dependencies: - liblapacke=3.9.0=20_osxarm64_openblas - numpy=1.26.2=py310h30ee222_0 - pango=1.50.14=h6c112b8_0 - - prompt_toolkit=3.0.24=hd8ed1ab_0 + - prompt_toolkit=3.0.41=hd8ed1ab_0 - pydantic-core=2.14.5=py310hd442715_0 - pyobjc-framework-cocoa=10.0=py310hd07e440_1 - pytest-xdist=3.5.0=pyhd8ed1ab_0 @@ -382,7 +381,7 @@ dependencies: - fpylll=0.6.0=py310hc79cb59_1 - giac=1.9.0.21=h1c96721_1 - igraph=0.9.10=hcec9b84_1 - - ipython=8.8.0=pyhd1c38e8_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 @@ -406,6 +405,7 @@ dependencies: - 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 diff --git a/src/environment-dev-3.10-macos.yml b/src/environment-dev-3.10-macos.yml index cf35d76b609..f5f0a7b4a3e 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: a2af7089f9a3597bb091b635e5309be02160750fcb6c4d06feee2cbc318bf41a +# input_hash: 4cbaa35649213b9ca7eee298842561a51f8a81b5f7f77a4d2afed3dec014eab2 channels: - conda-forge @@ -144,7 +144,7 @@ dependencies: - libboost-devel=1.83.0=h7728843_0 - libbrial=1.2.12=h8d08345_1 - libclang-cpp15=15.0.7=default_h6b1ee41_4 - - libflint=2.9.0=hfd2f71f_ntl_100 + - 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=hbedff68_4 @@ -160,7 +160,7 @@ dependencies: - alabaster=0.7.13=pyhd8ed1ab_0 - appdirs=1.4.4=pyh9f0ad1d_0 - appnope=0.1.3=pyhd8ed1ab_0 - - arb=2.23.0=h905a977_0 + - arb=2.9.0=0 - attrs=23.1.0=pyh71513ae_1 - backcall=0.2.0=pyh9f0ad1d_0 - boost-cpp=1.83.0=h07eb623_0 @@ -186,7 +186,7 @@ dependencies: - defusedxml=0.7.1=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - docutils=0.20.1=py310h2ec42d9_3 - - eclib=20230424=hd00e801_0 + - eclib=20230424=h563f520_1 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 - exceptiongroup=1.2.0=pyhd8ed1ab_0 @@ -264,7 +264,7 @@ dependencies: - sagetex=3.6.1=pyhd8ed1ab_0 - setuptools=68.2.2=pyhd8ed1ab_0 - simplegeneric=0.8.1=py_1 - - singular=4.2.1.p3=hac851df_2 + - singular=4.3.2.p8=h0d51a9f_0 - six=1.16.0=pyh6c4a22f_0 - smmap=5.0.0=pyhd8ed1ab_0 - sniffio=1.3.0=pyhd8ed1ab_0 @@ -284,7 +284,6 @@ dependencies: - tzlocal=5.2=py310h2ec42d9_0 - unicodedata2=15.1.0=py310h6729b98_0 - uri-template=1.3.0=pyhd8ed1ab_0 - - vcversioner=2.16.0.0=py_1 - wcwidth=0.2.12=pyhd8ed1ab_0 - webcolors=1.13=pyhd8ed1ab_0 - webencodings=0.5.1=pyhd8ed1ab_2 @@ -331,7 +330,7 @@ dependencies: - pip=23.3.1=pyhd8ed1ab_0 - pplpy=0.8.9=py310hd89f7aa_0 - primecountpy=0.1.0=py310h88cfcbd_4 - - prompt-toolkit=3.0.24=pyha770c72_0 + - prompt-toolkit=3.0.41=pyha770c72_0 - pybind11=2.11.1=py310h88cfcbd_2 - pyobjc-core=10.0=py310hef2d279_0 - pyproject-api=1.6.1=pyhd8ed1ab_0 @@ -368,7 +367,7 @@ dependencies: - liblapacke=3.9.0=20_osx64_openblas - numpy=1.26.2=py310h2a7ecf2_0 - pango=1.50.14=h19c1c8a_2 - - prompt_toolkit=3.0.24=hd8ed1ab_0 + - prompt_toolkit=3.0.41=hd8ed1ab_0 - pydantic-core=2.14.5=py310h0e083fb_0 - pyobjc-framework-cocoa=10.0=py310hef2d279_1 - pytest-xdist=3.5.0=pyhd8ed1ab_0 @@ -385,12 +384,12 @@ dependencies: - ensureconda=1.4.3=pyhd8ed1ab_0 - fpylll=0.6.0=py310h2acdeac_1 - giac=1.9.0.21=h92f3f65_1 - - ipython=8.8.0=pyhd1c38e8_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=py310h2ec42d9_0 - - linbox=1.6.3=hdde8d14_7 + - linbox=1.6.3=hfb9b24e_8 - lsprotocol=2023.0.0=pyhd8ed1ab_0 - pydantic=2.5.2=pyhd8ed1ab_0 - scipy=1.11.4=py310h3f1db6d_0 @@ -408,6 +407,7 @@ dependencies: - pygls=1.2.1=pyhd8ed1ab_0 - clang_impl_osx-64=15.0.7=h03d6864_6 - 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 diff --git a/src/environment-dev-3.11-linux-aarch64.yml b/src/environment-dev-3.11-linux-aarch64.yml index 390a2321824..2f29aaf8816 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: bc46b6b39a31a956e05347a8c6f718c74059a101816f42dcef9e717a879b479f +# input_hash: 2a8db72c648cf7486dc11df729d6aace190429f3744ef9e39b103d4474eaaa06 channels: - conda-forge @@ -81,7 +81,7 @@ dependencies: - m4=1.4.18=h516909a_1001 - make=4.3=h309ac5b_1 - metis=5.1.0=h2f0025b_1007 - - nauty=2.7.2=hf897c2e_0 + - nauty=2.8.6=h31becfc_0 - ncurses=6.4=h0425590_2 - ninja=1.11.1=hdd96247_0 - openssl=3.2.0=h31becfc_1 @@ -306,7 +306,6 @@ dependencies: - typing_utils=0.1.0=pyhd8ed1ab_0 - tzlocal=5.2=py311hec3470c_0 - uri-template=1.3.0=pyhd8ed1ab_0 - - vcversioner=2.16.0.0=py_1 - wcwidth=0.2.12=pyhd8ed1ab_0 - webcolors=1.13=pyhd8ed1ab_0 - webencodings=0.5.1=pyhd8ed1ab_2 @@ -361,7 +360,7 @@ dependencies: - pip=23.3.1=pyhd8ed1ab_0 - pplpy=0.8.9=py311haefeb0b_0 - primecountpy=0.1.0=py311h098ece5_4 - - prompt-toolkit=3.0.24=pyha770c72_0 + - prompt-toolkit=3.0.41=pyha770c72_0 - pybind11=2.11.1=py311h098ece5_2 - pyproject-api=1.6.1=pyhd8ed1ab_0 - pytest=7.4.3=pyhd8ed1ab_0 @@ -400,7 +399,7 @@ dependencies: - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1 - liblapacke=3.9.0=20_linuxaarch64_openblas - numpy=1.26.2=py311h69ead2a_0 - - prompt_toolkit=3.0.24=hd8ed1ab_0 + - prompt_toolkit=3.0.41=hd8ed1ab_0 - pydantic-core=2.14.5=py311h2bdde80_0 - pytest-xdist=3.5.0=pyhd8ed1ab_0 - requests=2.31.0=pyhd8ed1ab_0 @@ -417,7 +416,7 @@ dependencies: - fpylll=0.6.0=py311h5d3d69a_1 - giac=1.9.0.21=h04922a4_1 - igraph=0.9.10=hefb87a8_1 - - ipython=8.8.0=pyh41d4057_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 @@ -444,6 +443,7 @@ dependencies: - 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 diff --git a/src/environment-dev-3.11-linux.yml b/src/environment-dev-3.11-linux.yml index dcd239e4409..bf582188a56 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: 88a09023b8c7df4fda364f14fdea597052b008d537d5be0bb4358a92075d035e +# input_hash: 71b007ba5051d45e788a390c956f2f4877288f81611176e7eaf2e43c9b0b568c channels: - conda-forge @@ -86,7 +86,7 @@ dependencies: - make=4.3=hd18ef5c_1 - metis=5.1.0=h59595ed_1007 - mpg123=1.32.3=h59595ed_0 - - nauty=2.7.2=h7f98852_0 + - nauty=2.8.6=hd590300_0 - ncurses=6.4=h59595ed_2 - ninja=1.11.1=h924138e_0 - nspr=4.35=h27087fc_0 @@ -165,7 +165,7 @@ dependencies: - igraph=0.7.1=0 - krb5=1.21.2=h659d440_0 - libboost=1.83.0=h6fcfa73_0 - - libflint=2.9.0=h2f819a4_ntl_100 + - libflint=3.0.1=h5f2e117_ntl_100 - libgcrypt=1.10.3=hd590300_0 - libglib=2.78.1=hebfc3b9_0 - libhwloc=2.9.3=default_h554bfaf_1009 @@ -197,7 +197,7 @@ dependencies: - alabaster=0.7.13=pyhd8ed1ab_0 - appdirs=1.4.4=pyh9f0ad1d_0 - appnope=0.1.3=pyhd8ed1ab_0 - - arb=2.23.0=h44d021b_0 + - arb=2.9.0=0 - attrs=23.1.0=pyh71513ae_1 - automake=1.16.5=pl5321ha770c72_0 - backcall=0.2.0=pyh9f0ad1d_0 @@ -222,7 +222,7 @@ dependencies: - defusedxml=0.7.1=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - docutils=0.20.1=py311h38be061_3 - - eclib=20230424=hdef1efb_0 + - eclib=20230424=h96f522a_1 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 - exceptiongroup=1.2.0=pyhd8ed1ab_0 @@ -315,7 +315,7 @@ dependencies: - send2trash=1.8.2=pyh41d4057_0 - setuptools=68.2.2=pyhd8ed1ab_0 - simplegeneric=0.8.1=py_1 - - singular=4.2.1.p3=h1ea75ed_2 + - singular=4.3.2.p8=h33f5c3f_0 - six=1.16.0=pyh6c4a22f_0 - smmap=5.0.0=pyhd8ed1ab_0 - sniffio=1.3.0=pyhd8ed1ab_0 @@ -336,7 +336,6 @@ dependencies: - typing_utils=0.1.0=pyhd8ed1ab_0 - tzlocal=5.2=py311h38be061_0 - uri-template=1.3.0=pyhd8ed1ab_0 - - vcversioner=2.16.0.0=py_1 - wcwidth=0.2.12=pyhd8ed1ab_0 - webcolors=1.13=pyhd8ed1ab_0 - webencodings=0.5.1=pyhd8ed1ab_2 @@ -397,7 +396,7 @@ dependencies: - pip=23.3.1=pyhd8ed1ab_0 - pplpy=0.8.9=py311h85abca9_0 - primecountpy=0.1.0=py311h9547e67_4 - - prompt-toolkit=3.0.24=pyha770c72_0 + - prompt-toolkit=3.0.41=pyha770c72_0 - pulseaudio-client=16.1=hb77b528_5 - pybind11=2.11.1=py311h9547e67_2 - pyproject-api=1.6.1=pyhd8ed1ab_0 @@ -438,7 +437,7 @@ dependencies: - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1 - liblapacke=3.9.0=20_linux64_openblas - numpy=1.26.2=py311h64a7726_0 - - prompt_toolkit=3.0.24=hd8ed1ab_0 + - prompt_toolkit=3.0.41=hd8ed1ab_0 - pydantic-core=2.14.5=py311h46250e7_0 - pyqt5-sip=12.12.2=py311hb755f60_5 - pytest-xdist=3.5.0=pyhd8ed1ab_0 @@ -456,11 +455,11 @@ dependencies: - fpylll=0.6.0=py311hcfae7cf_1 - giac=1.9.0.21=h673759e_1 - gst-plugins-base=1.22.7=h8e1006c_0 - - ipython=8.8.0=pyh41d4057_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=h9d78c56_7 + - linbox=1.6.3=ha329b40_8 - lsprotocol=2023.0.0=pyhd8ed1ab_0 - openjdk=21.0.1=haa376d0_0 - pango=1.50.14=ha41ecd1_2 @@ -483,6 +482,7 @@ dependencies: - qt-main=5.15.8=h82b777d_17 - r-base=4.3.2=h93585b2_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 - nbclient=0.8.0=pyhd8ed1ab_0 diff --git a/src/environment-dev-3.11-macos-arm64.yml b/src/environment-dev-3.11-macos-arm64.yml index fd67e7abc3f..248777430e0 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: 73255cd2c73d15324e35ddedc880902f6ca5f69390db91ec08bb6f8e8695b45d +# input_hash: 414dc07765c9e8aebcc90fc79bdfa8061521583c2d2bb0ccb506f79f76dbd924 channels: - conda-forge @@ -38,7 +38,7 @@ dependencies: - make=4.3=he57ea6c_1 - mathjax=3.2.2=hce30654_0 - metis=5.1.0=h13dd4ca_1007 - - nauty=2.7.2=h3422bc3_0 + - nauty=2.8.6=h93a5062_0 - palp=2.20=h27ca646_0 - pandoc=3.1.3=hce30654_0 - pari-elldata=0.0.20161017=0 @@ -276,7 +276,6 @@ dependencies: - typing_utils=0.1.0=pyhd8ed1ab_0 - tzlocal=5.2=py311h267d04e_0 - uri-template=1.3.0=pyhd8ed1ab_0 - - vcversioner=2.16.0.0=py_1 - wcwidth=0.2.12=pyhd8ed1ab_0 - webcolors=1.13=pyhd8ed1ab_0 - webencodings=0.5.1=pyhd8ed1ab_2 @@ -324,7 +323,7 @@ dependencies: - pip=23.3.1=pyhd8ed1ab_0 - pplpy=0.8.9=py311h5ba3760_0 - primecountpy=0.1.0=py311he4fd1f5_4 - - prompt-toolkit=3.0.24=pyha770c72_0 + - prompt-toolkit=3.0.41=pyha770c72_0 - pybind11=2.11.1=py311he4fd1f5_2 - pyobjc-core=10.0=py311hb702dc4_0 - pyproject-api=1.6.1=pyhd8ed1ab_0 @@ -363,7 +362,7 @@ dependencies: - liblapacke=3.9.0=20_osxarm64_openblas - numpy=1.26.2=py311h6d074dd_0 - pango=1.50.14=h6c112b8_0 - - prompt_toolkit=3.0.24=hd8ed1ab_0 + - prompt_toolkit=3.0.41=hd8ed1ab_0 - pydantic-core=2.14.5=py311h94f323b_0 - pyobjc-framework-cocoa=10.0=py311hb702dc4_1 - pytest-xdist=3.5.0=pyhd8ed1ab_0 @@ -381,7 +380,7 @@ dependencies: - fpylll=0.6.0=py311he33df0e_1 - giac=1.9.0.21=h1c96721_1 - igraph=0.9.10=hcec9b84_1 - - ipython=8.8.0=pyhd1c38e8_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 @@ -405,6 +404,7 @@ dependencies: - 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 diff --git a/src/environment-dev-3.11-macos.yml b/src/environment-dev-3.11-macos.yml index e49ad105be4..d7f100587df 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: 1150a4bf7df9fbe67bc9377e0d38ade7a3455b25e71bf3e26dfb77b0f4220612 +# input_hash: d057f6316811f089948bc1612a5b13aadec653c8a34e0de381830eca3a68974c channels: - conda-forge @@ -144,7 +144,7 @@ dependencies: - libboost-devel=1.83.0=h7728843_0 - libbrial=1.2.12=h8d08345_1 - libclang-cpp15=15.0.7=default_h6b1ee41_4 - - libflint=2.9.0=hfd2f71f_ntl_100 + - 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=hbedff68_4 @@ -160,7 +160,7 @@ dependencies: - alabaster=0.7.13=pyhd8ed1ab_0 - appdirs=1.4.4=pyh9f0ad1d_0 - appnope=0.1.3=pyhd8ed1ab_0 - - arb=2.23.0=h905a977_0 + - arb=2.9.0=0 - attrs=23.1.0=pyh71513ae_1 - backcall=0.2.0=pyh9f0ad1d_0 - boost-cpp=1.83.0=h07eb623_0 @@ -186,7 +186,7 @@ dependencies: - defusedxml=0.7.1=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - docutils=0.20.1=py311h6eed73b_3 - - eclib=20230424=hd00e801_0 + - eclib=20230424=h563f520_1 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 - exceptiongroup=1.2.0=pyhd8ed1ab_0 @@ -264,7 +264,7 @@ dependencies: - sagetex=3.6.1=pyhd8ed1ab_0 - setuptools=68.2.2=pyhd8ed1ab_0 - simplegeneric=0.8.1=py_1 - - singular=4.2.1.p3=hac851df_2 + - singular=4.3.2.p8=h0d51a9f_0 - six=1.16.0=pyh6c4a22f_0 - smmap=5.0.0=pyhd8ed1ab_0 - sniffio=1.3.0=pyhd8ed1ab_0 @@ -283,7 +283,6 @@ dependencies: - typing_utils=0.1.0=pyhd8ed1ab_0 - tzlocal=5.2=py311h6eed73b_0 - uri-template=1.3.0=pyhd8ed1ab_0 - - vcversioner=2.16.0.0=py_1 - wcwidth=0.2.12=pyhd8ed1ab_0 - webcolors=1.13=pyhd8ed1ab_0 - webencodings=0.5.1=pyhd8ed1ab_2 @@ -330,7 +329,7 @@ dependencies: - pip=23.3.1=pyhd8ed1ab_0 - pplpy=0.8.9=py311h7355a2a_0 - primecountpy=0.1.0=py311h5fe6e05_4 - - prompt-toolkit=3.0.24=pyha770c72_0 + - prompt-toolkit=3.0.41=pyha770c72_0 - pybind11=2.11.1=py311h5fe6e05_2 - pyobjc-core=10.0=py311hf110eff_0 - pyproject-api=1.6.1=pyhd8ed1ab_0 @@ -367,7 +366,7 @@ dependencies: - liblapacke=3.9.0=20_osx64_openblas - numpy=1.26.2=py311h93c810c_0 - pango=1.50.14=h19c1c8a_2 - - prompt_toolkit=3.0.24=hd8ed1ab_0 + - prompt_toolkit=3.0.41=hd8ed1ab_0 - pydantic-core=2.14.5=py311h5e0f0e4_0 - pyobjc-framework-cocoa=10.0=py311hf110eff_1 - pytest-xdist=3.5.0=pyhd8ed1ab_0 @@ -384,12 +383,12 @@ dependencies: - ensureconda=1.4.3=pyhd8ed1ab_0 - fpylll=0.6.0=py311hc863427_1 - giac=1.9.0.21=h92f3f65_1 - - ipython=8.8.0=pyhd1c38e8_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=py311h6eed73b_0 - - linbox=1.6.3=hdde8d14_7 + - linbox=1.6.3=hfb9b24e_8 - lsprotocol=2023.0.0=pyhd8ed1ab_0 - pydantic=2.5.2=pyhd8ed1ab_0 - scipy=1.11.4=py311he0bea55_0 @@ -407,6 +406,7 @@ dependencies: - pygls=1.2.1=pyhd8ed1ab_0 - clang_impl_osx-64=15.0.7=h03d6864_6 - 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 diff --git a/src/environment-dev-3.9-linux-aarch64.yml b/src/environment-dev-3.9-linux-aarch64.yml index c6943bae3df..c72059c94f5 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: 10b7d40894f209a147b1d988d6a53c725a4faafa1c485e6c714b72fec8fefe3a +# input_hash: f0b92689da259f54bf52119e42dedc78b8e1266f6a854ba31c2a444a0a99a018 channels: - conda-forge @@ -81,7 +81,7 @@ dependencies: - m4=1.4.18=h516909a_1001 - make=4.3=h309ac5b_1 - metis=5.1.0=h2f0025b_1007 - - nauty=2.7.2=hf897c2e_0 + - nauty=2.8.6=h31becfc_0 - ncurses=6.4=h0425590_2 - ninja=1.11.1=hdd96247_0 - openssl=3.2.0=h31becfc_1 @@ -307,7 +307,6 @@ dependencies: - tzlocal=5.2=py39h4420490_0 - unicodedata2=15.1.0=py39h898b7ef_0 - uri-template=1.3.0=pyhd8ed1ab_0 - - vcversioner=2.16.0.0=py_1 - wcwidth=0.2.12=pyhd8ed1ab_0 - webcolors=1.13=pyhd8ed1ab_0 - webencodings=0.5.1=pyhd8ed1ab_2 @@ -362,7 +361,7 @@ dependencies: - pip=23.3.1=pyhd8ed1ab_0 - pplpy=0.8.9=py39h087fc0e_0 - primecountpy=0.1.0=py39hd16970a_3 - - prompt-toolkit=3.0.24=pyha770c72_0 + - prompt-toolkit=3.0.41=pyha770c72_0 - pybind11=2.11.1=py39hd16970a_2 - pyproject-api=1.6.1=pyhd8ed1ab_0 - pytest=7.4.3=pyhd8ed1ab_0 @@ -401,7 +400,7 @@ dependencies: - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1 - liblapacke=3.9.0=20_linuxaarch64_openblas - numpy=1.26.2=py39h91c28bb_0 - - prompt_toolkit=3.0.24=hd8ed1ab_0 + - prompt_toolkit=3.0.41=hd8ed1ab_0 - pydantic-core=2.14.5=py39hf916c31_0 - pytest-xdist=3.5.0=pyhd8ed1ab_0 - requests=2.31.0=pyhd8ed1ab_0 @@ -418,7 +417,7 @@ dependencies: - fpylll=0.6.0=py39h97065f7_1 - giac=1.9.0.21=h04922a4_1 - igraph=0.9.10=hefb87a8_1 - - ipython=8.8.0=pyh41d4057_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 @@ -445,6 +444,7 @@ dependencies: - 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 diff --git a/src/environment-dev-3.9-linux.yml b/src/environment-dev-3.9-linux.yml index d14cc0c53fd..efe44b2aaf2 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: fb0cfa32250948c5786876fece25bce6597aeb61f0f486f7ae594bb06e18c11c +# input_hash: 1441df3f40f7dac37ff42a48d3fc3ee50541022e5161f67e19f2009adeca3983 channels: - conda-forge @@ -86,7 +86,7 @@ dependencies: - make=4.3=hd18ef5c_1 - metis=5.1.0=h59595ed_1007 - mpg123=1.32.3=h59595ed_0 - - nauty=2.7.2=h7f98852_0 + - nauty=2.8.6=hd590300_0 - ncurses=6.4=h59595ed_2 - ninja=1.11.1=h924138e_0 - nspr=4.35=h27087fc_0 @@ -165,7 +165,7 @@ dependencies: - igraph=0.7.1=0 - krb5=1.21.2=h659d440_0 - libboost=1.83.0=h6fcfa73_0 - - libflint=2.9.0=h2f819a4_ntl_100 + - libflint=3.0.1=h5f2e117_ntl_100 - libgcrypt=1.10.3=hd590300_0 - libglib=2.78.1=hebfc3b9_0 - libhwloc=2.9.3=default_h554bfaf_1009 @@ -197,7 +197,7 @@ dependencies: - alabaster=0.7.13=pyhd8ed1ab_0 - appdirs=1.4.4=pyh9f0ad1d_0 - appnope=0.1.3=pyhd8ed1ab_0 - - arb=2.23.0=h44d021b_0 + - arb=2.9.0=0 - attrs=23.1.0=pyh71513ae_1 - automake=1.16.5=pl5321ha770c72_0 - backcall=0.2.0=pyh9f0ad1d_0 @@ -222,7 +222,7 @@ dependencies: - defusedxml=0.7.1=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - docutils=0.20.1=py39hf3d152e_3 - - eclib=20230424=hdef1efb_0 + - eclib=20230424=h96f522a_1 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 - exceptiongroup=1.2.0=pyhd8ed1ab_0 @@ -315,7 +315,7 @@ dependencies: - send2trash=1.8.2=pyh41d4057_0 - setuptools=68.2.2=pyhd8ed1ab_0 - simplegeneric=0.8.1=py_1 - - singular=4.2.1.p3=h1ea75ed_2 + - singular=4.3.2.p8=h33f5c3f_0 - six=1.16.0=pyh6c4a22f_0 - smmap=5.0.0=pyhd8ed1ab_0 - sniffio=1.3.0=pyhd8ed1ab_0 @@ -337,7 +337,6 @@ dependencies: - tzlocal=5.2=py39hf3d152e_0 - unicodedata2=15.1.0=py39hd1e30aa_0 - uri-template=1.3.0=pyhd8ed1ab_0 - - vcversioner=2.16.0.0=py_1 - wcwidth=0.2.12=pyhd8ed1ab_0 - webcolors=1.13=pyhd8ed1ab_0 - webencodings=0.5.1=pyhd8ed1ab_2 @@ -398,7 +397,7 @@ dependencies: - pip=23.3.1=pyhd8ed1ab_0 - pplpy=0.8.9=py39hba3e9e5_0 - primecountpy=0.1.0=py39h7633fee_4 - - prompt-toolkit=3.0.24=pyha770c72_0 + - prompt-toolkit=3.0.41=pyha770c72_0 - pulseaudio-client=16.1=hb77b528_5 - pybind11=2.11.1=py39h7633fee_2 - pyproject-api=1.6.1=pyhd8ed1ab_0 @@ -439,7 +438,7 @@ dependencies: - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1 - liblapacke=3.9.0=20_linux64_openblas - numpy=1.26.2=py39h474f0d3_0 - - prompt_toolkit=3.0.24=hd8ed1ab_0 + - prompt_toolkit=3.0.41=hd8ed1ab_0 - pydantic-core=2.14.5=py39h9fdd4d6_0 - pyqt5-sip=12.12.2=py39h3d6467e_5 - pytest-xdist=3.5.0=pyhd8ed1ab_0 @@ -457,11 +456,11 @@ dependencies: - fpylll=0.6.0=py39h2525e16_1 - giac=1.9.0.21=h673759e_1 - gst-plugins-base=1.22.7=h8e1006c_0 - - ipython=8.8.0=pyh41d4057_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=h9d78c56_7 + - linbox=1.6.3=ha329b40_8 - lsprotocol=2023.0.0=pyhd8ed1ab_0 - openjdk=21.0.1=haa376d0_0 - pango=1.50.14=ha41ecd1_2 @@ -484,6 +483,7 @@ dependencies: - qt-main=5.15.8=h82b777d_17 - r-base=4.3.2=h93585b2_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 - nbclient=0.8.0=pyhd8ed1ab_0 diff --git a/src/environment-dev-3.9-macos-arm64.yml b/src/environment-dev-3.9-macos-arm64.yml index 3f0cb9e3bdd..a0f2b30fea0 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: d30c1926d1ba48f011cf40b43a8b34a9e2163a008456fc69fc5649dc39ca62eb +# input_hash: c3010db49b9c7acb1980f2fb6c3ebf18026ec4fa93dff0183e8068d9cc0f261e channels: - conda-forge @@ -38,7 +38,7 @@ dependencies: - make=4.3=he57ea6c_1 - mathjax=3.2.2=hce30654_0 - metis=5.1.0=h13dd4ca_1007 - - nauty=2.7.2=h3422bc3_0 + - nauty=2.8.6=h93a5062_0 - palp=2.20=h27ca646_0 - pandoc=3.1.3=hce30654_0 - pari-elldata=0.0.20161017=0 @@ -277,7 +277,6 @@ dependencies: - tzlocal=5.2=py39h2804cbe_0 - unicodedata2=15.1.0=py39h0f82c59_0 - uri-template=1.3.0=pyhd8ed1ab_0 - - vcversioner=2.16.0.0=py_1 - wcwidth=0.2.12=pyhd8ed1ab_0 - webcolors=1.13=pyhd8ed1ab_0 - webencodings=0.5.1=pyhd8ed1ab_2 @@ -325,7 +324,7 @@ dependencies: - pip=23.3.1=pyhd8ed1ab_0 - pplpy=0.8.9=py39haf103f8_0 - primecountpy=0.1.0=py39hbd775c9_4 - - prompt-toolkit=3.0.24=pyha770c72_0 + - prompt-toolkit=3.0.41=pyha770c72_0 - pybind11=2.11.1=py39hbd775c9_2 - pyobjc-core=10.0=py39h4d1a642_0 - pyproject-api=1.6.1=pyhd8ed1ab_0 @@ -364,7 +363,7 @@ dependencies: - liblapacke=3.9.0=20_osxarm64_openblas - numpy=1.26.2=py39heee92a0_0 - pango=1.50.14=h6c112b8_0 - - prompt_toolkit=3.0.24=hd8ed1ab_0 + - prompt_toolkit=3.0.41=hd8ed1ab_0 - pydantic-core=2.14.5=py39h8fec3ad_0 - pyobjc-framework-cocoa=10.0=py39h4d1a642_1 - pytest-xdist=3.5.0=pyhd8ed1ab_0 @@ -382,7 +381,7 @@ dependencies: - fpylll=0.6.0=py39h947550b_1 - giac=1.9.0.21=h1c96721_1 - igraph=0.9.10=hcec9b84_1 - - ipython=8.8.0=pyhd1c38e8_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 @@ -406,6 +405,7 @@ dependencies: - 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 diff --git a/src/environment-dev-3.9-macos.yml b/src/environment-dev-3.9-macos.yml index 1021e1ad3dc..cf15976ea82 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: a9fc9d0ce3120c2f7f968ca75c8f4de2fadf28a142eb717bb9523e90f5657779 +# input_hash: 3b9dea27803173cdb6b8e863354af43556c55ec134f6de6afec63669d5dd2549 channels: - conda-forge @@ -144,7 +144,7 @@ dependencies: - libboost-devel=1.83.0=h7728843_0 - libbrial=1.2.12=h8d08345_1 - libclang-cpp15=15.0.7=default_h6b1ee41_4 - - libflint=2.9.0=hfd2f71f_ntl_100 + - 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=hbedff68_4 @@ -160,7 +160,7 @@ dependencies: - alabaster=0.7.13=pyhd8ed1ab_0 - appdirs=1.4.4=pyh9f0ad1d_0 - appnope=0.1.3=pyhd8ed1ab_0 - - arb=2.23.0=h905a977_0 + - arb=2.9.0=0 - attrs=23.1.0=pyh71513ae_1 - backcall=0.2.0=pyh9f0ad1d_0 - boost-cpp=1.83.0=h07eb623_0 @@ -186,7 +186,7 @@ dependencies: - defusedxml=0.7.1=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - docutils=0.20.1=py39h6e9494a_3 - - eclib=20230424=hd00e801_0 + - eclib=20230424=h563f520_1 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 - exceptiongroup=1.2.0=pyhd8ed1ab_0 @@ -264,7 +264,7 @@ dependencies: - sagetex=3.6.1=pyhd8ed1ab_0 - setuptools=68.2.2=pyhd8ed1ab_0 - simplegeneric=0.8.1=py_1 - - singular=4.2.1.p3=hac851df_2 + - singular=4.3.2.p8=h0d51a9f_0 - six=1.16.0=pyh6c4a22f_0 - smmap=5.0.0=pyhd8ed1ab_0 - sniffio=1.3.0=pyhd8ed1ab_0 @@ -284,7 +284,6 @@ dependencies: - tzlocal=5.2=py39h6e9494a_0 - unicodedata2=15.1.0=py39hdc70f33_0 - uri-template=1.3.0=pyhd8ed1ab_0 - - vcversioner=2.16.0.0=py_1 - wcwidth=0.2.12=pyhd8ed1ab_0 - webcolors=1.13=pyhd8ed1ab_0 - webencodings=0.5.1=pyhd8ed1ab_2 @@ -331,7 +330,7 @@ dependencies: - pip=23.3.1=pyhd8ed1ab_0 - pplpy=0.8.9=py39h248ee18_0 - primecountpy=0.1.0=py39h8ee36c8_4 - - prompt-toolkit=3.0.24=pyha770c72_0 + - prompt-toolkit=3.0.41=pyha770c72_0 - pybind11=2.11.1=py39h8ee36c8_2 - pyobjc-core=10.0=py39head00df_0 - pyproject-api=1.6.1=pyhd8ed1ab_0 @@ -368,7 +367,7 @@ dependencies: - liblapacke=3.9.0=20_osx64_openblas - numpy=1.26.2=py39h14c6d2e_0 - pango=1.50.14=h19c1c8a_2 - - prompt_toolkit=3.0.24=hd8ed1ab_0 + - prompt_toolkit=3.0.41=hd8ed1ab_0 - pydantic-core=2.14.5=py39h3f9c672_0 - pyobjc-framework-cocoa=10.0=py39head00df_1 - pytest-xdist=3.5.0=pyhd8ed1ab_0 @@ -385,12 +384,12 @@ dependencies: - ensureconda=1.4.3=pyhd8ed1ab_0 - fpylll=0.6.0=py39hec15948_1 - giac=1.9.0.21=h92f3f65_1 - - ipython=8.8.0=pyhd1c38e8_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=hdde8d14_7 + - linbox=1.6.3=hfb9b24e_8 - lsprotocol=2023.0.0=pyhd8ed1ab_0 - pydantic=2.5.2=pyhd8ed1ab_0 - scipy=1.11.4=py39ha321857_0 @@ -408,6 +407,7 @@ dependencies: - pygls=1.2.1=pyhd8ed1ab_0 - clang_impl_osx-64=15.0.7=h03d6864_6 - 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 From 58b53cd056fa339e873572b195f70b100f9b3abc Mon Sep 17 00:00:00 2001 From: Tobias Diez Date: Fri, 8 Dec 2023 16:57:37 +0000 Subject: [PATCH 31/33] Remove arb again --- build/pkgs/flint/distros/conda.txt | 1 - environment-3.10-linux-aarch64.yml | 31 ++++++++++---------- environment-3.10-linux.yml | 20 ++++++------- environment-3.10-macos-arm64.yml | 34 +++++++++++----------- environment-3.10-macos.yml | 26 +++++++++-------- environment-3.11-linux-aarch64.yml | 31 ++++++++++---------- environment-3.11-linux.yml | 20 ++++++------- environment-3.11-macos-arm64.yml | 34 +++++++++++----------- environment-3.11-macos.yml | 26 +++++++++-------- environment-3.9-linux-aarch64.yml | 31 ++++++++++---------- environment-3.9-linux.yml | 20 ++++++------- environment-3.9-macos-arm64.yml | 34 +++++++++++----------- environment-3.9-macos.yml | 26 +++++++++-------- src/environment-3.10-linux-aarch64.yml | 17 +++++------ src/environment-3.10-linux.yml | 30 +++++++++---------- src/environment-3.10-macos-arm64.yml | 19 ++++++------ src/environment-3.10-macos.yml | 28 +++++++++--------- src/environment-3.11-linux-aarch64.yml | 17 +++++------ src/environment-3.11-linux.yml | 30 +++++++++---------- src/environment-3.11-macos-arm64.yml | 19 ++++++------ src/environment-3.11-macos.yml | 28 +++++++++--------- src/environment-3.9-linux-aarch64.yml | 17 +++++------ src/environment-3.9-linux.yml | 30 +++++++++---------- src/environment-3.9-macos-arm64.yml | 19 ++++++------ src/environment-3.9-macos.yml | 28 +++++++++--------- src/environment-dev-3.10-linux-aarch64.yml | 21 +++++++------ src/environment-dev-3.10-linux.yml | 28 +++++++++--------- src/environment-dev-3.10-macos-arm64.yml | 21 +++++++------ src/environment-dev-3.10-macos.yml | 30 ++++++++++--------- src/environment-dev-3.11-linux-aarch64.yml | 21 +++++++------ src/environment-dev-3.11-linux.yml | 28 +++++++++--------- src/environment-dev-3.11-macos-arm64.yml | 21 +++++++------ src/environment-dev-3.11-macos.yml | 30 ++++++++++--------- src/environment-dev-3.9-linux-aarch64.yml | 21 +++++++------ src/environment-dev-3.9-linux.yml | 28 +++++++++--------- src/environment-dev-3.9-macos-arm64.yml | 21 +++++++------ src/environment-dev-3.9-macos.yml | 30 ++++++++++--------- 37 files changed, 459 insertions(+), 457 deletions(-) diff --git a/build/pkgs/flint/distros/conda.txt b/build/pkgs/flint/distros/conda.txt index 320151bb6fe..944940a3f2b 100644 --- a/build/pkgs/flint/distros/conda.txt +++ b/build/pkgs/flint/distros/conda.txt @@ -1,2 +1 @@ libflint -arb # flint 2 pulled in arb, but v3 does not diff --git a/environment-3.10-linux-aarch64.yml b/environment-3.10-linux-aarch64.yml index d248ee3f558..e9544ec4fec 100644 --- a/environment-3.10-linux-aarch64.yml +++ b/environment-3.10-linux-aarch64.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: linux-aarch64 -# input_hash: 13100da9fa197861b47f4fae6d1b75fe30c01e9efdc39c0d4f096fe51270cfe8 +# input_hash: 4c365ae2e280b608e5362f04a58206f9f3539695de8b31528fcb7912957c21c4 channels: - conda-forge @@ -66,8 +66,8 @@ dependencies: - 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.6=h31becfc_0 + - metis=5.1.1=h2f0025b_2 + - nauty=2.8.8=h31becfc_0 - ncurses=6.4=h0425590_2 - ninja=1.11.1=hdd96247_0 - openssl=3.2.0=h31becfc_1 @@ -93,7 +93,7 @@ dependencies: - libpng=1.6.39=hf9034f9_0 - libsqlite=3.44.2=h194ca79_0 - libssh2=1.11.0=h492db2e_0 - - libxml2=2.10.4=h430b14f_0 + - libxml2=2.11.5=h164fba4_0 - mpfr=4.2.1=ha2d0fc4_0 - ntl=11.4.3=h0d7519b_1 - perl=5.32.1=4_h31becfc_perl5 @@ -114,8 +114,8 @@ dependencies: - gxx_impl_linux-aarch64=12.3.0=hcde2664_3 - krb5=1.21.2=hc419048_0 - libboost=1.82.0=hbfc56d7_2 - - libflint=2.9.0=hd3470fa_ntl_100 - - libhwloc=2.9.1=h21e8147_0 + - libflint=3.0.1=hc392af7_ntl_100 + - libhwloc=2.9.3=default_hda148da_1009 - libopenblas=0.3.25=pthreads_h5a5ec62_0 - libtiff=4.5.0=h4c1066a_2 - llvm-openmp=17.0.6=h8b0cb96_0 @@ -130,14 +130,13 @@ dependencies: - tachyon=0.99b6=h63ab1d9_1001 - texinfo=7.0=pl5321h17f021e_0 - appdirs=1.4.4=pyh9f0ad1d_0 - - arb=2.23.0=h37d5dab_0 - automake=1.16.5=pl5321h8af1aa0_0 - c-compiler=1.6.0=h31becfc_0 - cachetools=5.3.2=pyhd8ed1ab_0 - chardet=5.2.0=py310hbbe02a8_1 - colorama=0.4.6=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - - eclib=20230424=h0bc7b0f_0 + - eclib=20230424=he26bab5_1 - filelock=3.13.1=pyhd8ed1ab_0 - fontconfig=2.14.2=ha9a116f_0 - fplll=5.4.5=hb3a790e_0 @@ -152,14 +151,14 @@ dependencies: - libcurl=8.5.0=h4e8248e_0 - libwebp=1.2.4=h7bdf6e5_1 - m4rie=20150908=h75e8696_1001 - - maxima=5.46.0=h6475f26_0 + - maxima=5.47.0=h6475f26_0 - openblas=0.3.25=pthreads_h339cbfa_0 - packaging=23.2=pyhd8ed1ab_0 - platformdirs=4.1.0=pyhd8ed1ab_0 - pluggy=1.3.0=pyhd8ed1ab_0 - - singular=4.2.1.p3=h3d4c4c6_2 + - singular=4.3.2.p8=hbe76a8a_1 - sympow=2.023.6=h157afb5_3 - - tbb=2021.9.0=h4c384f3_0 + - tbb=2021.11.0=h2a328a1_0 - tomli=2.0.1=pyhd8ed1ab_0 - typing_extensions=4.8.0=pyha770c72_0 - zipp=3.17.0=pyhd8ed1ab_0 @@ -176,18 +175,18 @@ dependencies: - pyproject-api=1.6.1=pyhd8ed1ab_0 - typing-extensions=4.8.0=hd8ed1ab_0 - virtualenv=20.25.0=pyhd8ed1ab_0 - - arpack=3.7.0=hf862f49_2 + - arpack=3.8.0=nompi_h32ff4ca_101 - compilers=1.6.0=h8af1aa0_0 - fflas-ffpack=2.4.3=hf104d39_2 - gsl=2.7=h294027d_0 - iml=1.0.5=h9076c59_1003 - importlib_metadata=7.0.0=hd8ed1ab_0 - liblapacke=3.9.0=20_linuxaarch64_openblas - - suitesparse=5.10.1=h1404dd6_1 + - suitesparse=5.10.1=h75d914d_2 - blas-devel=3.9.0=20_linuxaarch64_openblas - giac=1.9.0.21=h04922a4_1 - - igraph=0.9.10=hefb87a8_1 - - linbox=1.6.3=h31716a8_7 + - igraph=0.10.8=h4617136_0 + - linbox=1.6.3=h681a5ee_8 - tox=4.11.4=pyhd8ed1ab_0 - blas=2.120=openblas - - rw=0.9=hf897c2e_0 + - rw=0.9=h31becfc_1 diff --git a/environment-3.10-linux.yml b/environment-3.10-linux.yml index 2d8b4b3a269..a47f3220a32 100644 --- a/environment-3.10-linux.yml +++ b/environment-3.10-linux.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: 5bb9993b41d8fddd3fd4194d10f7f079a4d65f0cfeee41d46bd8590310cf99eb +# input_hash: 8eaf695e51d8a58387d56ff127711926707078b1e6affc8e20e918a110369c2f channels: - conda-forge @@ -66,8 +66,8 @@ dependencies: - lrcalc=2.1=h27087fc_5 - m4=1.4.18=h516909a_1001 - make=4.3=hd18ef5c_1 - - metis=5.1.0=h59595ed_1007 - - nauty=2.8.6=hd590300_0 + - metis=5.1.1=h59595ed_2 + - nauty=2.8.8=hd590300_0 - ncurses=6.4=h59595ed_2 - ninja=1.11.1=h924138e_0 - openssl=3.2.0=hd590300_1 @@ -112,7 +112,6 @@ dependencies: - gfan=0.6.2=hb86e20a_1003 - gfortran_impl_linux-64=12.3.0=hfcedea8_3 - gxx_impl_linux-64=12.3.0=he2b93b0_3 - - igraph=0.7.1=0 - krb5=1.21.2=h659d440_0 - libboost=1.83.0=h6fcfa73_0 - libflint=3.0.1=h5f2e117_ntl_100 @@ -131,7 +130,6 @@ dependencies: - tachyon=0.99b6=0 - texinfo=7.0=pl5321h0f457ee_0 - appdirs=1.4.4=pyh9f0ad1d_0 - - arb=2.9.0=0 - automake=1.16.5=pl5321ha770c72_0 - c-compiler=1.6.0=hd590300_0 - cachetools=5.3.2=pyhd8ed1ab_0 @@ -153,15 +151,14 @@ dependencies: - libcurl=8.5.0=hca28451_0 - libwebp=1.3.2=h658648e_1 - m4rie=20150908=h7ca028e_1001 - - maxima=5.46.0=hed6455c_0 + - maxima=5.47.0=hed6455c_0 - openblas=0.3.25=pthreads_h7a3da1a_0 - packaging=23.2=pyhd8ed1ab_0 - platformdirs=4.1.0=pyhd8ed1ab_0 - pluggy=1.3.0=pyhd8ed1ab_0 - - rw=0.8=h516909a_1001 - - singular=4.3.2.p8=h33f5c3f_0 + - singular=4.3.2.p8=h33f5c3f_1 - sympow=2.023.6=hc6ab17c_3 - - tbb=2021.10.0=h00ab1b0_2 + - tbb=2021.11.0=h00ab1b0_0 - tomli=2.0.1=pyhd8ed1ab_0 - typing_extensions=4.8.0=pyha770c72_0 - zipp=3.17.0=pyhd8ed1ab_0 @@ -178,15 +175,18 @@ dependencies: - pyproject-api=1.6.1=pyhd8ed1ab_0 - typing-extensions=4.8.0=hd8ed1ab_0 - virtualenv=20.25.0=pyhd8ed1ab_0 + - arpack=3.8.0=nompi_h0baa96a_101 - compilers=1.6.0=ha770c72_0 - fflas-ffpack=2.4.3=h912ac81_2 - gsl=2.7=he838d99_0 - iml=1.0.5=hd75c201_1003 - importlib_metadata=7.0.0=hd8ed1ab_0 - liblapacke=3.9.0=20_linux64_openblas - - suitesparse=5.10.1=h9e50725_1 + - suitesparse=5.10.1=h3ec001c_2 - blas-devel=3.9.0=20_linux64_openblas - giac=1.9.0.21=h673759e_1 + - igraph=0.10.8=h66a01bf_0 - linbox=1.6.3=ha329b40_8 - tox=4.11.4=pyhd8ed1ab_0 - blas=2.120=openblas + - rw=0.9=hd590300_1 diff --git a/environment-3.10-macos-arm64.yml b/environment-3.10-macos-arm64.yml index 171438edb59..8330cee17be 100644 --- a/environment-3.10-macos-arm64.yml +++ b/environment-3.10-macos-arm64.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: osx-arm64 -# input_hash: e7e18847839b6f3b2324fadc8a3afa19821b52c4fa701a11e3f1cc1071d9ce82 +# input_hash: ff4c58fd78f2ab58fb3486f7d0c405e2607bcb0839cc1d2943142a6589d090ef channels: - conda-forge @@ -35,8 +35,7 @@ dependencies: - m4=1.4.18=h642e427_1001 - make=4.3=he57ea6c_1 - mathjax=3.2.2=hce30654_0 - - metis=5.1.0=h13dd4ca_1007 - - nauty=2.8.6=h93a5062_0 + - nauty=2.8.8=h93a5062_0 - palp=2.20=h27ca646_0 - pari-elldata=0.0.20161017=0 - pari-galdata=0.0.20180411=0 @@ -47,7 +46,6 @@ dependencies: - planarity=3.0.0.5=h27ca646_1002 - python_abi=3.10=4_cp310 - rhash=1.4.4=hb547adb_0 - - tbb=2021.10.0=h1995070_2 - tzdata=2023c=h71feb2d_0 - xz=5.2.6=h57fd34a_0 - autoconf=2.71=pl5321hcd07c0c_1 @@ -64,8 +62,9 @@ dependencies: - libgfortran5=13.2.0=hf226fd6_1 - libpng=1.6.39=h76d750c_0 - libsqlite=3.44.2=h091b4b1_0 - - libxml2=2.10.4=h2aff0a6_0 + - libxml2=2.11.5=he3bdae6_0 - lrcalc=2.1=hb7217d7_5 + - metis=5.1.1=h965bd2d_2 - ncurses=6.4=h463b476_2 - ninja=1.11.1=hffc8910_0 - openssl=3.2.0=h0d3ecfb_1 @@ -90,9 +89,10 @@ dependencies: - libboost=1.82.0=h3f31f7c_2 - libedit=3.1.20191231=hc8eb9b7_2 - libgfortran=5.0.0=13_2_0_hd922786_1 - - libglib=2.78.2=hb438215_0 + - libglib=2.78.3=hb438215_0 - libhomfly=1.02r6=h27ca646_0 - - libllvm15=15.0.7=h62b9111_1 + - libhwloc=2.9.3=default_h4394839_1009 + - libllvm15=15.0.7=h504e6bf_3 - libnghttp2=1.58.0=ha4dd798_0 - libssh2=1.11.0=h7a5bd25_0 - libtiff=4.5.0=h5dffbdd_2 @@ -112,10 +112,10 @@ dependencies: - libboost-devel=1.82.0=hf450f58_2 - libbrial=1.2.12=ha7f5006_1 - libclang-cpp15=15.0.7=default_hd209bcb_4 - - libflint=2.9.0=h173eafc_ntl_100 + - libflint=3.0.1=h28749a5_ntl_100 - libopenblas=0.3.25=openmp_h6c19121_0 - libwebp=1.2.4=h999c80f_1 - - llvm-tools=15.0.7=h62b9111_1 + - llvm-tools=15.0.7=h504e6bf_3 - m4rie=20150908=h17b34a0_1001 - mpc=1.3.1=h91ba8db_0 - mpfi=1.5.4=hbde5f5b_1001 @@ -125,8 +125,8 @@ dependencies: - python=3.10.13=h2469fbe_0_cpython - qd=2.3.22=hbec66e7_1004 - sqlite=3.44.2=hf2abe2d_0 + - tbb=2021.11.0=h6aa02a4_0 - appdirs=1.4.4=pyh9f0ad1d_0 - - arb=2.23.0=he5401aa_0 - boost-cpp=1.82.0=h4ae65de_2 - brial=1.2.12=pyh694c41f_1 - cachetools=5.3.2=pyhd8ed1ab_0 @@ -135,7 +135,7 @@ dependencies: - clang-15=15.0.7=default_hd209bcb_4 - colorama=0.4.6=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - - eclib=20230424=haeb5157_0 + - eclib=20230424=h8fe5691_1 - filelock=3.13.1=pyhd8ed1ab_0 - fplll=5.4.5=hb7d509d_0 - gfortran_impl_osx-arm64=12.3.0=hbbb9e1e_1 @@ -149,7 +149,7 @@ dependencies: - packaging=23.2=pyhd8ed1ab_0 - platformdirs=4.1.0=pyhd8ed1ab_0 - pluggy=1.3.0=pyhd8ed1ab_0 - - singular=4.2.1.p3=h3b80c97_2 + - singular=4.3.2.p8=hb460b52_1 - sympow=2.023.6=hb0babe8_3 - tomli=2.0.1=pyhd8ed1ab_0 - typing_extensions=4.8.0=pyha770c72_0 @@ -164,23 +164,23 @@ dependencies: - pyproject-api=1.6.1=pyhd8ed1ab_0 - typing-extensions=4.8.0=hd8ed1ab_0 - virtualenv=20.25.0=pyhd8ed1ab_0 - - arpack=3.7.0=h58ebc17_2 + - arpack=3.8.0=nompi_ha3438d0_101 - clangxx=15.0.7=default_h5c94ee4_4 - fflas-ffpack=2.4.3=h11f2abc_2 - gsl=2.7=h6e638da_0 - iml=1.0.5=hd52f0d1_1003 - importlib_metadata=7.0.0=hd8ed1ab_0 - liblapacke=3.9.0=20_osxarm64_openblas - - suitesparse=5.10.1=h7cd81ec_1 + - suitesparse=5.10.1=h88be0ae_2 - blas-devel=3.9.0=20_osxarm64_openblas - compiler-rt_osx-arm64=15.0.7=h3808999_2 - giac=1.9.0.21=h1c96721_1 - - igraph=0.9.10=hcec9b84_1 - - linbox=1.6.3=h549c411_7 + - igraph=0.10.8=h29932c4_0 + - linbox=1.6.3=h380be0f_8 - tox=4.11.4=pyhd8ed1ab_0 - blas=2.120=openblas - compiler-rt=15.0.7=h3808999_2 - - rw=0.9=h3422bc3_0 + - rw=0.9=h93a5062_1 - clang_impl_osx-arm64=15.0.7=h77e971b_6 - clang_osx-arm64=15.0.7=h54d7cd3_6 - c-compiler=1.6.0=hd291e01_0 diff --git a/environment-3.10-macos.yml b/environment-3.10-macos.yml index 71c3585ef6b..1a7f577b1fb 100644 --- a/environment-3.10-macos.yml +++ b/environment-3.10-macos.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: osx-64 -# input_hash: 4f8408e2532a702e261da60904754dc09d4f796480679ca0fef1f7e5fed19a2b +# input_hash: af50578b3e4318883d281e6f106c4522dc14f41a0dc218d1c9f03f65bd7ffae4 channels: - conda-forge @@ -35,8 +35,7 @@ dependencies: - m4=1.4.18=haf1e3a3_1001 - make=4.3=h22f3db7_1 - mathjax=3.2.2=h694c41f_0 - - metis=5.1.0=he965462_1007 - - nauty=2.7.2=h0d85af4_0 + - nauty=2.8.8=h10d778d_0 - palp=2.20=hbcb3906_0 - pari-elldata=0.0.20161017=0 - pari-galdata=0.0.20180411=0 @@ -47,8 +46,6 @@ dependencies: - planarity=3.0.0.5=hbcb3906_1002 - python_abi=3.10=4_cp310 - rhash=1.4.4=h0dc2134_0 - - rw=0.7=1 - - tbb=2021.10.0=h1c7c39f_2 - tzdata=2023c=h71feb2d_0 - xz=5.2.6=h775f41a_0 - autoconf=2.71=pl5321hed12c24_1 @@ -65,8 +62,9 @@ dependencies: - libgfortran5=13.2.0=h2873a65_1 - libpng=1.6.39=ha978bb4_0 - libsqlite=3.44.2=h92b6c6a_0 - - libxml2=2.12.2=hc0ae0f7_0 + - libxml2=2.11.6=hc0ae0f7_0 - lrcalc=2.1=hf0c8a7f_5 + - metis=5.1.1=h93d8f39_2 - ncurses=6.4=h93d8f39_2 - ninja=1.11.1=hb8565cd_0 - openssl=3.2.0=hd75f5a5_1 @@ -92,7 +90,8 @@ dependencies: - libedit=3.1.20191231=h0678c8f_2 - libgfortran=5.0.0=13_2_0_h97931a8_1 - libhomfly=1.02r6=hc929b4f_0 - - libllvm15=15.0.7=hbedff68_4 + - libhwloc=2.9.3=default_h24e0189_1009 + - libllvm15=15.0.7=he4b1e75_3 - libnghttp2=1.58.0=h64cf6d3_0 - libssh2=1.11.0=hd019ec5_0 - libtiff=4.6.0=h684deea_2 @@ -115,7 +114,7 @@ dependencies: - 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=hbedff68_4 + - llvm-tools=15.0.7=he4b1e75_3 - m4rie=20150908=h3f75d11_1001 - mpc=1.3.1=h81bd1dd_0 - mpfi=1.5.4=h52b28e3_1001 @@ -124,8 +123,8 @@ dependencies: - python=3.10.13=h00d2728_0_cpython - qd=2.3.22=h2beb688_1004 - sqlite=3.44.2=h7461747_0 + - tbb=2021.11.0=he51d815_0 - appdirs=1.4.4=pyh9f0ad1d_0 - - arb=2.9.0=0 - boost-cpp=1.83.0=h07eb623_0 - brial=1.2.12=pyh694c41f_1 - cachetools=5.3.2=pyhd8ed1ab_0 @@ -143,12 +142,12 @@ dependencies: - libblas=3.9.0=20_osx64_openblas - libcurl=8.5.0=h726d00d_0 - libgd=2.3.3=h0dceb68_9 - - maxima=5.46.0=h2b27fa8_0 + - maxima=5.47.0=h2b27fa8_0 - openblas=0.3.25=openmp_h6794695_0 - packaging=23.2=pyhd8ed1ab_0 - platformdirs=4.1.0=pyhd8ed1ab_0 - pluggy=1.3.0=pyhd8ed1ab_0 - - singular=4.3.2.p8=h0d51a9f_0 + - singular=4.3.2.p8=h0d51a9f_1 - sympow=2.023.6=h115ba6a_3 - tomli=2.0.1=pyhd8ed1ab_0 - typing_extensions=4.8.0=pyha770c72_0 @@ -163,20 +162,23 @@ dependencies: - pyproject-api=1.6.1=pyhd8ed1ab_0 - typing-extensions=4.8.0=hd8ed1ab_0 - virtualenv=20.25.0=pyhd8ed1ab_0 + - arpack=3.8.0=nompi_hb44a6d1_101 - clangxx=15.0.7=default_h6b1ee41_4 - fflas-ffpack=2.4.3=h026fd7e_2 - gsl=2.7=h93259b0_0 - iml=1.0.5=h64b42ca_1003 - importlib_metadata=7.0.0=hd8ed1ab_0 - liblapacke=3.9.0=20_osx64_openblas - - suitesparse=5.10.1=h7aff33d_1 + - suitesparse=5.10.1=h0a40b7c_2 - blas-devel=3.9.0=20_osx64_openblas - compiler-rt_osx-64=15.0.7=ha38d28d_2 - giac=1.9.0.21=h92f3f65_1 + - igraph=0.10.8=h29df365_0 - linbox=1.6.3=hfb9b24e_8 - tox=4.11.4=pyhd8ed1ab_0 - blas=2.120=openblas - compiler-rt=15.0.7=ha38d28d_2 + - rw=0.9=h10d778d_1 - clang_impl_osx-64=15.0.7=h03d6864_6 - clang_osx-64=15.0.7=hb91bd55_6 - c-compiler=1.6.0=h63c33a9_0 diff --git a/environment-3.11-linux-aarch64.yml b/environment-3.11-linux-aarch64.yml index e9dff603e52..840719f63de 100644 --- a/environment-3.11-linux-aarch64.yml +++ b/environment-3.11-linux-aarch64.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: linux-aarch64 -# input_hash: 5eb636b1a3f517db2df984926560d9718b220d1073712472884f15b994b8cd76 +# input_hash: 9ed8af5b6c4aefd45e95f18a4ce4b25805ad7c818ed013f4c76a5b4d95a89e9a channels: - conda-forge @@ -66,8 +66,8 @@ dependencies: - 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.6=h31becfc_0 + - metis=5.1.1=h2f0025b_2 + - nauty=2.8.8=h31becfc_0 - ncurses=6.4=h0425590_2 - ninja=1.11.1=hdd96247_0 - openssl=3.2.0=h31becfc_1 @@ -93,7 +93,7 @@ dependencies: - libpng=1.6.39=hf9034f9_0 - libsqlite=3.44.2=h194ca79_0 - libssh2=1.11.0=h492db2e_0 - - libxml2=2.10.4=h430b14f_0 + - libxml2=2.11.5=h164fba4_0 - mpfr=4.2.1=ha2d0fc4_0 - ntl=11.4.3=h0d7519b_1 - perl=5.32.1=4_h31becfc_perl5 @@ -114,8 +114,8 @@ dependencies: - gxx_impl_linux-aarch64=12.3.0=hcde2664_3 - krb5=1.21.2=hc419048_0 - libboost=1.82.0=hbfc56d7_2 - - libflint=2.9.0=hd3470fa_ntl_100 - - libhwloc=2.9.1=h21e8147_0 + - libflint=3.0.1=hc392af7_ntl_100 + - libhwloc=2.9.3=default_hda148da_1009 - libopenblas=0.3.25=pthreads_h5a5ec62_0 - libtiff=4.5.0=h4c1066a_2 - llvm-openmp=17.0.6=h8b0cb96_0 @@ -130,14 +130,13 @@ dependencies: - tachyon=0.99b6=h63ab1d9_1001 - texinfo=7.0=pl5321h17f021e_0 - appdirs=1.4.4=pyh9f0ad1d_0 - - arb=2.23.0=h37d5dab_0 - automake=1.16.5=pl5321h8af1aa0_0 - c-compiler=1.6.0=h31becfc_0 - cachetools=5.3.2=pyhd8ed1ab_0 - chardet=5.2.0=py311hfecb2dc_1 - colorama=0.4.6=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - - eclib=20230424=h0bc7b0f_0 + - eclib=20230424=he26bab5_1 - filelock=3.13.1=pyhd8ed1ab_0 - fontconfig=2.14.2=ha9a116f_0 - fplll=5.4.5=hb3a790e_0 @@ -152,14 +151,14 @@ dependencies: - libcurl=8.5.0=h4e8248e_0 - libwebp=1.2.4=h7bdf6e5_1 - m4rie=20150908=h75e8696_1001 - - maxima=5.46.0=h6475f26_0 + - maxima=5.47.0=h6475f26_0 - openblas=0.3.25=pthreads_h339cbfa_0 - packaging=23.2=pyhd8ed1ab_0 - platformdirs=4.1.0=pyhd8ed1ab_0 - pluggy=1.3.0=pyhd8ed1ab_0 - - singular=4.2.1.p3=h3d4c4c6_2 + - singular=4.3.2.p8=hbe76a8a_1 - sympow=2.023.6=h157afb5_3 - - tbb=2021.9.0=h4c384f3_0 + - tbb=2021.11.0=h2a328a1_0 - tomli=2.0.1=pyhd8ed1ab_0 - typing_extensions=4.8.0=pyha770c72_0 - zipp=3.17.0=pyhd8ed1ab_0 @@ -176,18 +175,18 @@ dependencies: - pyproject-api=1.6.1=pyhd8ed1ab_0 - typing-extensions=4.8.0=hd8ed1ab_0 - virtualenv=20.25.0=pyhd8ed1ab_0 - - arpack=3.7.0=hf862f49_2 + - arpack=3.8.0=nompi_h32ff4ca_101 - compilers=1.6.0=h8af1aa0_0 - fflas-ffpack=2.4.3=hf104d39_2 - gsl=2.7=h294027d_0 - iml=1.0.5=h9076c59_1003 - importlib_metadata=7.0.0=hd8ed1ab_0 - liblapacke=3.9.0=20_linuxaarch64_openblas - - suitesparse=5.10.1=h1404dd6_1 + - suitesparse=5.10.1=h75d914d_2 - blas-devel=3.9.0=20_linuxaarch64_openblas - giac=1.9.0.21=h04922a4_1 - - igraph=0.9.10=hefb87a8_1 - - linbox=1.6.3=h31716a8_7 + - igraph=0.10.8=h4617136_0 + - linbox=1.6.3=h681a5ee_8 - tox=4.11.4=pyhd8ed1ab_0 - blas=2.120=openblas - - rw=0.9=hf897c2e_0 + - rw=0.9=h31becfc_1 diff --git a/environment-3.11-linux.yml b/environment-3.11-linux.yml index a00458e539a..022bec6696b 100644 --- a/environment-3.11-linux.yml +++ b/environment-3.11-linux.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: 92f3c444c9ab54966fe934a99acdf962b625bb31ebfd8fa80a426ec15e70114e +# input_hash: b5fb716eecdb62cae339361795f6eb4b56dba134a9ccd0aa027831df13da8636 channels: - conda-forge @@ -66,8 +66,8 @@ dependencies: - lrcalc=2.1=h27087fc_5 - m4=1.4.18=h516909a_1001 - make=4.3=hd18ef5c_1 - - metis=5.1.0=h59595ed_1007 - - nauty=2.8.6=hd590300_0 + - metis=5.1.1=h59595ed_2 + - nauty=2.8.8=hd590300_0 - ncurses=6.4=h59595ed_2 - ninja=1.11.1=h924138e_0 - openssl=3.2.0=hd590300_1 @@ -112,7 +112,6 @@ dependencies: - gfan=0.6.2=hb86e20a_1003 - gfortran_impl_linux-64=12.3.0=hfcedea8_3 - gxx_impl_linux-64=12.3.0=he2b93b0_3 - - igraph=0.7.1=0 - krb5=1.21.2=h659d440_0 - libboost=1.83.0=h6fcfa73_0 - libflint=3.0.1=h5f2e117_ntl_100 @@ -131,7 +130,6 @@ dependencies: - tachyon=0.99b6=0 - texinfo=7.0=pl5321h0f457ee_0 - appdirs=1.4.4=pyh9f0ad1d_0 - - arb=2.9.0=0 - automake=1.16.5=pl5321ha770c72_0 - c-compiler=1.6.0=hd590300_0 - cachetools=5.3.2=pyhd8ed1ab_0 @@ -153,15 +151,14 @@ dependencies: - libcurl=8.5.0=hca28451_0 - libwebp=1.3.2=h658648e_1 - m4rie=20150908=h7ca028e_1001 - - maxima=5.46.0=hed6455c_0 + - maxima=5.47.0=hed6455c_0 - openblas=0.3.25=pthreads_h7a3da1a_0 - packaging=23.2=pyhd8ed1ab_0 - platformdirs=4.1.0=pyhd8ed1ab_0 - pluggy=1.3.0=pyhd8ed1ab_0 - - rw=0.8=h516909a_1001 - - singular=4.3.2.p8=h33f5c3f_0 + - singular=4.3.2.p8=h33f5c3f_1 - sympow=2.023.6=hc6ab17c_3 - - tbb=2021.10.0=h00ab1b0_2 + - tbb=2021.11.0=h00ab1b0_0 - tomli=2.0.1=pyhd8ed1ab_0 - typing_extensions=4.8.0=pyha770c72_0 - zipp=3.17.0=pyhd8ed1ab_0 @@ -178,15 +175,18 @@ dependencies: - pyproject-api=1.6.1=pyhd8ed1ab_0 - typing-extensions=4.8.0=hd8ed1ab_0 - virtualenv=20.25.0=pyhd8ed1ab_0 + - arpack=3.8.0=nompi_h0baa96a_101 - compilers=1.6.0=ha770c72_0 - fflas-ffpack=2.4.3=h912ac81_2 - gsl=2.7=he838d99_0 - iml=1.0.5=hd75c201_1003 - importlib_metadata=7.0.0=hd8ed1ab_0 - liblapacke=3.9.0=20_linux64_openblas - - suitesparse=5.10.1=h9e50725_1 + - suitesparse=5.10.1=h3ec001c_2 - blas-devel=3.9.0=20_linux64_openblas - giac=1.9.0.21=h673759e_1 + - igraph=0.10.8=h66a01bf_0 - linbox=1.6.3=ha329b40_8 - tox=4.11.4=pyhd8ed1ab_0 - blas=2.120=openblas + - rw=0.9=hd590300_1 diff --git a/environment-3.11-macos-arm64.yml b/environment-3.11-macos-arm64.yml index d389aba31ad..5ba33837eac 100644 --- a/environment-3.11-macos-arm64.yml +++ b/environment-3.11-macos-arm64.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: osx-arm64 -# input_hash: 613fd642595e54d68ddf19f481e06df6dd1781be3c62b812a52c4c18efa50cfb +# input_hash: 6510de5001fba43c1243ce61c67c93a2057cad755a0bc452b1083318d0b8a7bc channels: - conda-forge @@ -35,8 +35,7 @@ dependencies: - m4=1.4.18=h642e427_1001 - make=4.3=he57ea6c_1 - mathjax=3.2.2=hce30654_0 - - metis=5.1.0=h13dd4ca_1007 - - nauty=2.8.6=h93a5062_0 + - nauty=2.8.8=h93a5062_0 - palp=2.20=h27ca646_0 - pari-elldata=0.0.20161017=0 - pari-galdata=0.0.20180411=0 @@ -47,7 +46,6 @@ dependencies: - planarity=3.0.0.5=h27ca646_1002 - python_abi=3.11=4_cp311 - rhash=1.4.4=hb547adb_0 - - tbb=2021.10.0=h1995070_2 - tzdata=2023c=h71feb2d_0 - xz=5.2.6=h57fd34a_0 - autoconf=2.71=pl5321hcd07c0c_1 @@ -64,8 +62,9 @@ dependencies: - libgfortran5=13.2.0=hf226fd6_1 - libpng=1.6.39=h76d750c_0 - libsqlite=3.44.2=h091b4b1_0 - - libxml2=2.10.4=h2aff0a6_0 + - libxml2=2.11.5=he3bdae6_0 - lrcalc=2.1=hb7217d7_5 + - metis=5.1.1=h965bd2d_2 - ncurses=6.4=h463b476_2 - ninja=1.11.1=hffc8910_0 - openssl=3.2.0=h0d3ecfb_1 @@ -90,9 +89,10 @@ dependencies: - libboost=1.82.0=h3f31f7c_2 - libedit=3.1.20191231=hc8eb9b7_2 - libgfortran=5.0.0=13_2_0_hd922786_1 - - libglib=2.78.2=hb438215_0 + - libglib=2.78.3=hb438215_0 - libhomfly=1.02r6=h27ca646_0 - - libllvm15=15.0.7=h62b9111_1 + - libhwloc=2.9.3=default_h4394839_1009 + - libllvm15=15.0.7=h504e6bf_3 - libnghttp2=1.58.0=ha4dd798_0 - libssh2=1.11.0=h7a5bd25_0 - libtiff=4.5.0=h5dffbdd_2 @@ -112,10 +112,10 @@ dependencies: - libboost-devel=1.82.0=hf450f58_2 - libbrial=1.2.12=ha7f5006_1 - libclang-cpp15=15.0.7=default_hd209bcb_4 - - libflint=2.9.0=h173eafc_ntl_100 + - libflint=3.0.1=h28749a5_ntl_100 - libopenblas=0.3.25=openmp_h6c19121_0 - libwebp=1.2.4=h999c80f_1 - - llvm-tools=15.0.7=h62b9111_1 + - llvm-tools=15.0.7=h504e6bf_3 - m4rie=20150908=h17b34a0_1001 - mpc=1.3.1=h91ba8db_0 - mpfi=1.5.4=hbde5f5b_1001 @@ -125,8 +125,8 @@ dependencies: - python=3.11.6=h47c9636_0_cpython - qd=2.3.22=hbec66e7_1004 - sqlite=3.44.2=hf2abe2d_0 + - tbb=2021.11.0=h6aa02a4_0 - appdirs=1.4.4=pyh9f0ad1d_0 - - arb=2.23.0=he5401aa_0 - boost-cpp=1.82.0=h4ae65de_2 - brial=1.2.12=pyh694c41f_1 - cachetools=5.3.2=pyhd8ed1ab_0 @@ -135,7 +135,7 @@ dependencies: - clang-15=15.0.7=default_hd209bcb_4 - colorama=0.4.6=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - - eclib=20230424=haeb5157_0 + - eclib=20230424=h8fe5691_1 - filelock=3.13.1=pyhd8ed1ab_0 - fplll=5.4.5=hb7d509d_0 - gfortran_impl_osx-arm64=12.3.0=hbbb9e1e_1 @@ -149,7 +149,7 @@ dependencies: - packaging=23.2=pyhd8ed1ab_0 - platformdirs=4.1.0=pyhd8ed1ab_0 - pluggy=1.3.0=pyhd8ed1ab_0 - - singular=4.2.1.p3=h3b80c97_2 + - singular=4.3.2.p8=hb460b52_1 - sympow=2.023.6=hb0babe8_3 - tomli=2.0.1=pyhd8ed1ab_0 - typing_extensions=4.8.0=pyha770c72_0 @@ -164,23 +164,23 @@ dependencies: - pyproject-api=1.6.1=pyhd8ed1ab_0 - typing-extensions=4.8.0=hd8ed1ab_0 - virtualenv=20.25.0=pyhd8ed1ab_0 - - arpack=3.7.0=h58ebc17_2 + - arpack=3.8.0=nompi_ha3438d0_101 - clangxx=15.0.7=default_h5c94ee4_4 - fflas-ffpack=2.4.3=h11f2abc_2 - gsl=2.7=h6e638da_0 - iml=1.0.5=hd52f0d1_1003 - importlib_metadata=7.0.0=hd8ed1ab_0 - liblapacke=3.9.0=20_osxarm64_openblas - - suitesparse=5.10.1=h7cd81ec_1 + - suitesparse=5.10.1=h88be0ae_2 - blas-devel=3.9.0=20_osxarm64_openblas - compiler-rt_osx-arm64=15.0.7=h3808999_2 - giac=1.9.0.21=h1c96721_1 - - igraph=0.9.10=hcec9b84_1 - - linbox=1.6.3=h549c411_7 + - igraph=0.10.8=h29932c4_0 + - linbox=1.6.3=h380be0f_8 - tox=4.11.4=pyhd8ed1ab_0 - blas=2.120=openblas - compiler-rt=15.0.7=h3808999_2 - - rw=0.9=h3422bc3_0 + - rw=0.9=h93a5062_1 - clang_impl_osx-arm64=15.0.7=h77e971b_6 - clang_osx-arm64=15.0.7=h54d7cd3_6 - c-compiler=1.6.0=hd291e01_0 diff --git a/environment-3.11-macos.yml b/environment-3.11-macos.yml index f467c642397..01e568a57f9 100644 --- a/environment-3.11-macos.yml +++ b/environment-3.11-macos.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: osx-64 -# input_hash: 56de45bc82805aa688e9f76e61f730254d15268d8139cf161c294495da5efad3 +# input_hash: da2a77e51c281a50b6dd757e7215ac9e7dd40d041e6a3a64295ae0aaf0bc8779 channels: - conda-forge @@ -35,8 +35,7 @@ dependencies: - m4=1.4.18=haf1e3a3_1001 - make=4.3=h22f3db7_1 - mathjax=3.2.2=h694c41f_0 - - metis=5.1.0=he965462_1007 - - nauty=2.7.2=h0d85af4_0 + - nauty=2.8.8=h10d778d_0 - palp=2.20=hbcb3906_0 - pari-elldata=0.0.20161017=0 - pari-galdata=0.0.20180411=0 @@ -47,8 +46,6 @@ dependencies: - planarity=3.0.0.5=hbcb3906_1002 - python_abi=3.11=4_cp311 - rhash=1.4.4=h0dc2134_0 - - rw=0.7=1 - - tbb=2021.10.0=h1c7c39f_2 - tzdata=2023c=h71feb2d_0 - xz=5.2.6=h775f41a_0 - autoconf=2.71=pl5321hed12c24_1 @@ -65,8 +62,9 @@ dependencies: - libgfortran5=13.2.0=h2873a65_1 - libpng=1.6.39=ha978bb4_0 - libsqlite=3.44.2=h92b6c6a_0 - - libxml2=2.12.2=hc0ae0f7_0 + - libxml2=2.11.6=hc0ae0f7_0 - lrcalc=2.1=hf0c8a7f_5 + - metis=5.1.1=h93d8f39_2 - ncurses=6.4=h93d8f39_2 - ninja=1.11.1=hb8565cd_0 - openssl=3.2.0=hd75f5a5_1 @@ -92,7 +90,8 @@ dependencies: - libedit=3.1.20191231=h0678c8f_2 - libgfortran=5.0.0=13_2_0_h97931a8_1 - libhomfly=1.02r6=hc929b4f_0 - - libllvm15=15.0.7=hbedff68_4 + - libhwloc=2.9.3=default_h24e0189_1009 + - libllvm15=15.0.7=he4b1e75_3 - libnghttp2=1.58.0=h64cf6d3_0 - libssh2=1.11.0=hd019ec5_0 - libtiff=4.6.0=h684deea_2 @@ -115,7 +114,7 @@ dependencies: - 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=hbedff68_4 + - llvm-tools=15.0.7=he4b1e75_3 - m4rie=20150908=h3f75d11_1001 - mpc=1.3.1=h81bd1dd_0 - mpfi=1.5.4=h52b28e3_1001 @@ -124,8 +123,8 @@ dependencies: - python=3.11.6=h30d4d87_0_cpython - qd=2.3.22=h2beb688_1004 - sqlite=3.44.2=h7461747_0 + - tbb=2021.11.0=he51d815_0 - appdirs=1.4.4=pyh9f0ad1d_0 - - arb=2.9.0=0 - boost-cpp=1.83.0=h07eb623_0 - brial=1.2.12=pyh694c41f_1 - cachetools=5.3.2=pyhd8ed1ab_0 @@ -143,12 +142,12 @@ dependencies: - libblas=3.9.0=20_osx64_openblas - libcurl=8.5.0=h726d00d_0 - libgd=2.3.3=h0dceb68_9 - - maxima=5.46.0=h2b27fa8_0 + - maxima=5.47.0=h2b27fa8_0 - openblas=0.3.25=openmp_h6794695_0 - packaging=23.2=pyhd8ed1ab_0 - platformdirs=4.1.0=pyhd8ed1ab_0 - pluggy=1.3.0=pyhd8ed1ab_0 - - singular=4.3.2.p8=h0d51a9f_0 + - singular=4.3.2.p8=h0d51a9f_1 - sympow=2.023.6=h115ba6a_3 - tomli=2.0.1=pyhd8ed1ab_0 - typing_extensions=4.8.0=pyha770c72_0 @@ -163,20 +162,23 @@ dependencies: - pyproject-api=1.6.1=pyhd8ed1ab_0 - typing-extensions=4.8.0=hd8ed1ab_0 - virtualenv=20.25.0=pyhd8ed1ab_0 + - arpack=3.8.0=nompi_hb44a6d1_101 - clangxx=15.0.7=default_h6b1ee41_4 - fflas-ffpack=2.4.3=h026fd7e_2 - gsl=2.7=h93259b0_0 - iml=1.0.5=h64b42ca_1003 - importlib_metadata=7.0.0=hd8ed1ab_0 - liblapacke=3.9.0=20_osx64_openblas - - suitesparse=5.10.1=h7aff33d_1 + - suitesparse=5.10.1=h0a40b7c_2 - blas-devel=3.9.0=20_osx64_openblas - compiler-rt_osx-64=15.0.7=ha38d28d_2 - giac=1.9.0.21=h92f3f65_1 + - igraph=0.10.8=h29df365_0 - linbox=1.6.3=hfb9b24e_8 - tox=4.11.4=pyhd8ed1ab_0 - blas=2.120=openblas - compiler-rt=15.0.7=ha38d28d_2 + - rw=0.9=h10d778d_1 - clang_impl_osx-64=15.0.7=h03d6864_6 - clang_osx-64=15.0.7=hb91bd55_6 - c-compiler=1.6.0=h63c33a9_0 diff --git a/environment-3.9-linux-aarch64.yml b/environment-3.9-linux-aarch64.yml index db99634eee6..9dbb8a65228 100644 --- a/environment-3.9-linux-aarch64.yml +++ b/environment-3.9-linux-aarch64.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: linux-aarch64 -# input_hash: e4f28cd92fad4a067ebc71bcd54af8fdacc4d384ca2b9c40c559aa5c8a0eaf09 +# input_hash: 6667164ad6dcd7f0b7dbfb684bc0a01406a5da9b25928da4a1f239d8db3f1a9a channels: - conda-forge @@ -66,8 +66,8 @@ dependencies: - 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.6=h31becfc_0 + - metis=5.1.1=h2f0025b_2 + - nauty=2.8.8=h31becfc_0 - ncurses=6.4=h0425590_2 - ninja=1.11.1=hdd96247_0 - openssl=3.2.0=h31becfc_1 @@ -93,7 +93,7 @@ dependencies: - libpng=1.6.39=hf9034f9_0 - libsqlite=3.44.2=h194ca79_0 - libssh2=1.11.0=h492db2e_0 - - libxml2=2.10.4=h430b14f_0 + - libxml2=2.11.5=h164fba4_0 - mpfr=4.2.1=ha2d0fc4_0 - ntl=11.4.3=h0d7519b_1 - perl=5.32.1=4_h31becfc_perl5 @@ -114,8 +114,8 @@ dependencies: - gxx_impl_linux-aarch64=12.3.0=hcde2664_3 - krb5=1.21.2=hc419048_0 - libboost=1.82.0=hbfc56d7_2 - - libflint=2.9.0=hd3470fa_ntl_100 - - libhwloc=2.9.1=h21e8147_0 + - libflint=3.0.1=hc392af7_ntl_100 + - libhwloc=2.9.3=default_hda148da_1009 - libopenblas=0.3.25=pthreads_h5a5ec62_0 - libtiff=4.5.0=h4c1066a_2 - llvm-openmp=17.0.6=h8b0cb96_0 @@ -130,14 +130,13 @@ dependencies: - tachyon=0.99b6=h63ab1d9_1001 - texinfo=7.0=pl5321h17f021e_0 - appdirs=1.4.4=pyh9f0ad1d_0 - - arb=2.23.0=h37d5dab_0 - automake=1.16.5=pl5321h8af1aa0_0 - c-compiler=1.6.0=h31becfc_0 - cachetools=5.3.2=pyhd8ed1ab_0 - chardet=5.2.0=py39ha65689a_1 - colorama=0.4.6=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - - eclib=20230424=h0bc7b0f_0 + - eclib=20230424=he26bab5_1 - filelock=3.13.1=pyhd8ed1ab_0 - fontconfig=2.14.2=ha9a116f_0 - fplll=5.4.5=hb3a790e_0 @@ -152,14 +151,14 @@ dependencies: - libcurl=8.5.0=h4e8248e_0 - libwebp=1.2.4=h7bdf6e5_1 - m4rie=20150908=h75e8696_1001 - - maxima=5.46.0=h6475f26_0 + - maxima=5.47.0=h6475f26_0 - openblas=0.3.25=pthreads_h339cbfa_0 - packaging=23.2=pyhd8ed1ab_0 - platformdirs=4.1.0=pyhd8ed1ab_0 - pluggy=1.3.0=pyhd8ed1ab_0 - - singular=4.2.1.p3=h3d4c4c6_2 + - singular=4.3.2.p8=hbe76a8a_1 - sympow=2.023.6=h157afb5_3 - - tbb=2021.9.0=h4c384f3_0 + - tbb=2021.11.0=h2a328a1_0 - tomli=2.0.1=pyhd8ed1ab_0 - typing_extensions=4.8.0=pyha770c72_0 - zipp=3.17.0=pyhd8ed1ab_0 @@ -176,18 +175,18 @@ dependencies: - pyproject-api=1.6.1=pyhd8ed1ab_0 - typing-extensions=4.8.0=hd8ed1ab_0 - virtualenv=20.25.0=pyhd8ed1ab_0 - - arpack=3.7.0=hf862f49_2 + - arpack=3.8.0=nompi_h32ff4ca_101 - compilers=1.6.0=h8af1aa0_0 - fflas-ffpack=2.4.3=hf104d39_2 - gsl=2.7=h294027d_0 - iml=1.0.5=h9076c59_1003 - importlib_metadata=7.0.0=hd8ed1ab_0 - liblapacke=3.9.0=20_linuxaarch64_openblas - - suitesparse=5.10.1=h1404dd6_1 + - suitesparse=5.10.1=h75d914d_2 - blas-devel=3.9.0=20_linuxaarch64_openblas - giac=1.9.0.21=h04922a4_1 - - igraph=0.9.10=hefb87a8_1 - - linbox=1.6.3=h31716a8_7 + - igraph=0.10.8=h4617136_0 + - linbox=1.6.3=h681a5ee_8 - tox=4.11.4=pyhd8ed1ab_0 - blas=2.120=openblas - - rw=0.9=hf897c2e_0 + - rw=0.9=h31becfc_1 diff --git a/environment-3.9-linux.yml b/environment-3.9-linux.yml index 2a4bef4737b..531bc6f18bf 100644 --- a/environment-3.9-linux.yml +++ b/environment-3.9-linux.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: 555621541a8b539cc815289cd9ca4ec17306ea3559291cc955ebfb0e1cee3246 +# input_hash: 2ef4dd023869f21655e2f64fd76ca46bf820fcae4e860986d00e7a1efdbf63b2 channels: - conda-forge @@ -66,8 +66,8 @@ dependencies: - lrcalc=2.1=h27087fc_5 - m4=1.4.18=h516909a_1001 - make=4.3=hd18ef5c_1 - - metis=5.1.0=h59595ed_1007 - - nauty=2.8.6=hd590300_0 + - metis=5.1.1=h59595ed_2 + - nauty=2.8.8=hd590300_0 - ncurses=6.4=h59595ed_2 - ninja=1.11.1=h924138e_0 - openssl=3.2.0=hd590300_1 @@ -112,7 +112,6 @@ dependencies: - gfan=0.6.2=hb86e20a_1003 - gfortran_impl_linux-64=12.3.0=hfcedea8_3 - gxx_impl_linux-64=12.3.0=he2b93b0_3 - - igraph=0.7.1=0 - krb5=1.21.2=h659d440_0 - libboost=1.83.0=h6fcfa73_0 - libflint=3.0.1=h5f2e117_ntl_100 @@ -131,7 +130,6 @@ dependencies: - tachyon=0.99b6=0 - texinfo=7.0=pl5321h0f457ee_0 - appdirs=1.4.4=pyh9f0ad1d_0 - - arb=2.9.0=0 - automake=1.16.5=pl5321ha770c72_0 - c-compiler=1.6.0=hd590300_0 - cachetools=5.3.2=pyhd8ed1ab_0 @@ -153,15 +151,14 @@ dependencies: - libcurl=8.5.0=hca28451_0 - libwebp=1.3.2=h658648e_1 - m4rie=20150908=h7ca028e_1001 - - maxima=5.46.0=hed6455c_0 + - maxima=5.47.0=hed6455c_0 - openblas=0.3.25=pthreads_h7a3da1a_0 - packaging=23.2=pyhd8ed1ab_0 - platformdirs=4.1.0=pyhd8ed1ab_0 - pluggy=1.3.0=pyhd8ed1ab_0 - - rw=0.8=h516909a_1001 - - singular=4.3.2.p8=h33f5c3f_0 + - singular=4.3.2.p8=h33f5c3f_1 - sympow=2.023.6=hc6ab17c_3 - - tbb=2021.10.0=h00ab1b0_2 + - tbb=2021.11.0=h00ab1b0_0 - tomli=2.0.1=pyhd8ed1ab_0 - typing_extensions=4.8.0=pyha770c72_0 - zipp=3.17.0=pyhd8ed1ab_0 @@ -178,15 +175,18 @@ dependencies: - pyproject-api=1.6.1=pyhd8ed1ab_0 - typing-extensions=4.8.0=hd8ed1ab_0 - virtualenv=20.25.0=pyhd8ed1ab_0 + - arpack=3.8.0=nompi_h0baa96a_101 - compilers=1.6.0=ha770c72_0 - fflas-ffpack=2.4.3=h912ac81_2 - gsl=2.7=he838d99_0 - iml=1.0.5=hd75c201_1003 - importlib_metadata=7.0.0=hd8ed1ab_0 - liblapacke=3.9.0=20_linux64_openblas - - suitesparse=5.10.1=h9e50725_1 + - suitesparse=5.10.1=h3ec001c_2 - blas-devel=3.9.0=20_linux64_openblas - giac=1.9.0.21=h673759e_1 + - igraph=0.10.8=h66a01bf_0 - linbox=1.6.3=ha329b40_8 - tox=4.11.4=pyhd8ed1ab_0 - blas=2.120=openblas + - rw=0.9=hd590300_1 diff --git a/environment-3.9-macos-arm64.yml b/environment-3.9-macos-arm64.yml index 4e81c8b2c2a..2e36c35dbbd 100644 --- a/environment-3.9-macos-arm64.yml +++ b/environment-3.9-macos-arm64.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: osx-arm64 -# input_hash: 4cffd740aeccb33c67846c0871ab46b91d0251e032c33506f7cb643588bfe748 +# input_hash: 2b521bcf5e786489f8eaca3871625a85979186528995e66766751bf3a5649f4d channels: - conda-forge @@ -35,8 +35,7 @@ dependencies: - m4=1.4.18=h642e427_1001 - make=4.3=he57ea6c_1 - mathjax=3.2.2=hce30654_0 - - metis=5.1.0=h13dd4ca_1007 - - nauty=2.8.6=h93a5062_0 + - nauty=2.8.8=h93a5062_0 - palp=2.20=h27ca646_0 - pari-elldata=0.0.20161017=0 - pari-galdata=0.0.20180411=0 @@ -47,7 +46,6 @@ dependencies: - planarity=3.0.0.5=h27ca646_1002 - python_abi=3.9=4_cp39 - rhash=1.4.4=hb547adb_0 - - tbb=2021.10.0=h1995070_2 - tzdata=2023c=h71feb2d_0 - xz=5.2.6=h57fd34a_0 - autoconf=2.71=pl5321hcd07c0c_1 @@ -64,8 +62,9 @@ dependencies: - libgfortran5=13.2.0=hf226fd6_1 - libpng=1.6.39=h76d750c_0 - libsqlite=3.44.2=h091b4b1_0 - - libxml2=2.10.4=h2aff0a6_0 + - libxml2=2.11.5=he3bdae6_0 - lrcalc=2.1=hb7217d7_5 + - metis=5.1.1=h965bd2d_2 - ncurses=6.4=h463b476_2 - ninja=1.11.1=hffc8910_0 - openssl=3.2.0=h0d3ecfb_1 @@ -90,9 +89,10 @@ dependencies: - libboost=1.82.0=h3f31f7c_2 - libedit=3.1.20191231=hc8eb9b7_2 - libgfortran=5.0.0=13_2_0_hd922786_1 - - libglib=2.78.2=hb438215_0 + - libglib=2.78.3=hb438215_0 - libhomfly=1.02r6=h27ca646_0 - - libllvm15=15.0.7=h62b9111_1 + - libhwloc=2.9.3=default_h4394839_1009 + - libllvm15=15.0.7=h504e6bf_3 - libnghttp2=1.58.0=ha4dd798_0 - libssh2=1.11.0=h7a5bd25_0 - libtiff=4.5.0=h5dffbdd_2 @@ -112,10 +112,10 @@ dependencies: - libboost-devel=1.82.0=hf450f58_2 - libbrial=1.2.12=ha7f5006_1 - libclang-cpp15=15.0.7=default_hd209bcb_4 - - libflint=2.9.0=h173eafc_ntl_100 + - libflint=3.0.1=h28749a5_ntl_100 - libopenblas=0.3.25=openmp_h6c19121_0 - libwebp=1.2.4=h999c80f_1 - - llvm-tools=15.0.7=h62b9111_1 + - llvm-tools=15.0.7=h504e6bf_3 - m4rie=20150908=h17b34a0_1001 - mpc=1.3.1=h91ba8db_0 - mpfi=1.5.4=hbde5f5b_1001 @@ -125,8 +125,8 @@ dependencies: - python=3.9.18=hfa1ae8a_0_cpython - qd=2.3.22=hbec66e7_1004 - sqlite=3.44.2=hf2abe2d_0 + - tbb=2021.11.0=h6aa02a4_0 - appdirs=1.4.4=pyh9f0ad1d_0 - - arb=2.23.0=he5401aa_0 - boost-cpp=1.82.0=h4ae65de_2 - brial=1.2.12=pyh694c41f_1 - cachetools=5.3.2=pyhd8ed1ab_0 @@ -135,7 +135,7 @@ dependencies: - clang-15=15.0.7=default_hd209bcb_4 - colorama=0.4.6=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - - eclib=20230424=haeb5157_0 + - eclib=20230424=h8fe5691_1 - filelock=3.13.1=pyhd8ed1ab_0 - fplll=5.4.5=hb7d509d_0 - gfortran_impl_osx-arm64=12.3.0=hbbb9e1e_1 @@ -149,7 +149,7 @@ dependencies: - packaging=23.2=pyhd8ed1ab_0 - platformdirs=4.1.0=pyhd8ed1ab_0 - pluggy=1.3.0=pyhd8ed1ab_0 - - singular=4.2.1.p3=h3b80c97_2 + - singular=4.3.2.p8=hb460b52_1 - sympow=2.023.6=hb0babe8_3 - tomli=2.0.1=pyhd8ed1ab_0 - typing_extensions=4.8.0=pyha770c72_0 @@ -164,23 +164,23 @@ dependencies: - pyproject-api=1.6.1=pyhd8ed1ab_0 - typing-extensions=4.8.0=hd8ed1ab_0 - virtualenv=20.25.0=pyhd8ed1ab_0 - - arpack=3.7.0=h58ebc17_2 + - arpack=3.8.0=nompi_ha3438d0_101 - clangxx=15.0.7=default_h5c94ee4_4 - fflas-ffpack=2.4.3=h11f2abc_2 - gsl=2.7=h6e638da_0 - iml=1.0.5=hd52f0d1_1003 - importlib_metadata=7.0.0=hd8ed1ab_0 - liblapacke=3.9.0=20_osxarm64_openblas - - suitesparse=5.10.1=h7cd81ec_1 + - suitesparse=5.10.1=h88be0ae_2 - blas-devel=3.9.0=20_osxarm64_openblas - compiler-rt_osx-arm64=15.0.7=h3808999_2 - giac=1.9.0.21=h1c96721_1 - - igraph=0.9.10=hcec9b84_1 - - linbox=1.6.3=h549c411_7 + - igraph=0.10.8=h29932c4_0 + - linbox=1.6.3=h380be0f_8 - tox=4.11.4=pyhd8ed1ab_0 - blas=2.120=openblas - compiler-rt=15.0.7=h3808999_2 - - rw=0.9=h3422bc3_0 + - rw=0.9=h93a5062_1 - clang_impl_osx-arm64=15.0.7=h77e971b_6 - clang_osx-arm64=15.0.7=h54d7cd3_6 - c-compiler=1.6.0=hd291e01_0 diff --git a/environment-3.9-macos.yml b/environment-3.9-macos.yml index c7361fb53ca..69b435f8bcf 100644 --- a/environment-3.9-macos.yml +++ b/environment-3.9-macos.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: osx-64 -# input_hash: 5d2b674b77dcb2601635b0eb473d2a95315ac335496eff15f52b8084245ebe84 +# input_hash: 84bd6e0bbd90b889d72863805daec533480aa03f02b48b70d725a14ebe2633e3 channels: - conda-forge @@ -35,8 +35,7 @@ dependencies: - m4=1.4.18=haf1e3a3_1001 - make=4.3=h22f3db7_1 - mathjax=3.2.2=h694c41f_0 - - metis=5.1.0=he965462_1007 - - nauty=2.7.2=h0d85af4_0 + - nauty=2.8.8=h10d778d_0 - palp=2.20=hbcb3906_0 - pari-elldata=0.0.20161017=0 - pari-galdata=0.0.20180411=0 @@ -47,8 +46,6 @@ dependencies: - planarity=3.0.0.5=hbcb3906_1002 - python_abi=3.9=4_cp39 - rhash=1.4.4=h0dc2134_0 - - rw=0.7=1 - - tbb=2021.10.0=h1c7c39f_2 - tzdata=2023c=h71feb2d_0 - xz=5.2.6=h775f41a_0 - autoconf=2.71=pl5321hed12c24_1 @@ -65,8 +62,9 @@ dependencies: - libgfortran5=13.2.0=h2873a65_1 - libpng=1.6.39=ha978bb4_0 - libsqlite=3.44.2=h92b6c6a_0 - - libxml2=2.12.2=hc0ae0f7_0 + - libxml2=2.11.6=hc0ae0f7_0 - lrcalc=2.1=hf0c8a7f_5 + - metis=5.1.1=h93d8f39_2 - ncurses=6.4=h93d8f39_2 - ninja=1.11.1=hb8565cd_0 - openssl=3.2.0=hd75f5a5_1 @@ -92,7 +90,8 @@ dependencies: - libedit=3.1.20191231=h0678c8f_2 - libgfortran=5.0.0=13_2_0_h97931a8_1 - libhomfly=1.02r6=hc929b4f_0 - - libllvm15=15.0.7=hbedff68_4 + - libhwloc=2.9.3=default_h24e0189_1009 + - libllvm15=15.0.7=he4b1e75_3 - libnghttp2=1.58.0=h64cf6d3_0 - libssh2=1.11.0=hd019ec5_0 - libtiff=4.6.0=h684deea_2 @@ -115,7 +114,7 @@ dependencies: - 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=hbedff68_4 + - llvm-tools=15.0.7=he4b1e75_3 - m4rie=20150908=h3f75d11_1001 - mpc=1.3.1=h81bd1dd_0 - mpfi=1.5.4=h52b28e3_1001 @@ -124,8 +123,8 @@ dependencies: - python=3.9.18=h07e1443_0_cpython - qd=2.3.22=h2beb688_1004 - sqlite=3.44.2=h7461747_0 + - tbb=2021.11.0=he51d815_0 - appdirs=1.4.4=pyh9f0ad1d_0 - - arb=2.9.0=0 - boost-cpp=1.83.0=h07eb623_0 - brial=1.2.12=pyh694c41f_1 - cachetools=5.3.2=pyhd8ed1ab_0 @@ -143,12 +142,12 @@ dependencies: - libblas=3.9.0=20_osx64_openblas - libcurl=8.5.0=h726d00d_0 - libgd=2.3.3=h0dceb68_9 - - maxima=5.46.0=h2b27fa8_0 + - maxima=5.47.0=h2b27fa8_0 - openblas=0.3.25=openmp_h6794695_0 - packaging=23.2=pyhd8ed1ab_0 - platformdirs=4.1.0=pyhd8ed1ab_0 - pluggy=1.3.0=pyhd8ed1ab_0 - - singular=4.3.2.p8=h0d51a9f_0 + - singular=4.3.2.p8=h0d51a9f_1 - sympow=2.023.6=h115ba6a_3 - tomli=2.0.1=pyhd8ed1ab_0 - typing_extensions=4.8.0=pyha770c72_0 @@ -163,20 +162,23 @@ dependencies: - pyproject-api=1.6.1=pyhd8ed1ab_0 - typing-extensions=4.8.0=hd8ed1ab_0 - virtualenv=20.25.0=pyhd8ed1ab_0 + - arpack=3.8.0=nompi_hb44a6d1_101 - clangxx=15.0.7=default_h6b1ee41_4 - fflas-ffpack=2.4.3=h026fd7e_2 - gsl=2.7=h93259b0_0 - iml=1.0.5=h64b42ca_1003 - importlib_metadata=7.0.0=hd8ed1ab_0 - liblapacke=3.9.0=20_osx64_openblas - - suitesparse=5.10.1=h7aff33d_1 + - suitesparse=5.10.1=h0a40b7c_2 - blas-devel=3.9.0=20_osx64_openblas - compiler-rt_osx-64=15.0.7=ha38d28d_2 - giac=1.9.0.21=h92f3f65_1 + - igraph=0.10.8=h29df365_0 - linbox=1.6.3=hfb9b24e_8 - tox=4.11.4=pyhd8ed1ab_0 - blas=2.120=openblas - compiler-rt=15.0.7=ha38d28d_2 + - rw=0.9=h10d778d_1 - clang_impl_osx-64=15.0.7=h03d6864_6 - clang_osx-64=15.0.7=hb91bd55_6 - c-compiler=1.6.0=h63c33a9_0 diff --git a/src/environment-3.10-linux-aarch64.yml b/src/environment-3.10-linux-aarch64.yml index 3850e3ef78f..616adb7a900 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: 686e378d5977ae860308e03c54dd13f1ca8cf500d8a0cb6cff7c356fc8a13ce3 +# input_hash: 3ffb496593bc6d233838b980061f7a4a52e8e9d60918b138f90363ec74ab34d9 channels: - conda-forge @@ -78,7 +78,7 @@ dependencies: - m4=1.4.18=h516909a_1001 - make=4.3=h309ac5b_1 - metis=5.1.0=h2f0025b_1007 - - nauty=2.8.6=h31becfc_0 + - nauty=2.8.8=h31becfc_0 - ncurses=6.4=h0425590_2 - ninja=1.11.1=hdd96247_0 - openssl=3.2.0=h31becfc_1 @@ -148,7 +148,7 @@ dependencies: - gfortran_impl_linux-aarch64=12.3.0=hb7244be_3 - gxx_impl_linux-aarch64=12.3.0=hcde2664_3 - krb5=1.20.1=h113d92e_0 - - libflint=2.9.0=hd3470fa_ntl_100 + - 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 @@ -169,7 +169,6 @@ dependencies: - alabaster=0.7.13=pyhd8ed1ab_0 - appdirs=1.4.4=pyh9f0ad1d_0 - appnope=0.1.3=pyhd8ed1ab_0 - - arb=2.23.0=h37d5dab_0 - attrs=23.1.0=pyh71513ae_1 - automake=1.16.5=pl5321h8af1aa0_0 - backcall=0.2.0=pyh9f0ad1d_0 @@ -190,7 +189,7 @@ dependencies: - defusedxml=0.7.1=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - docutils=0.20.1=py310hbbe02a8_3 - - eclib=20230424=h0bc7b0f_0 + - eclib=20230424=he26bab5_1 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 - exceptiongroup=1.2.0=pyhd8ed1ab_0 @@ -222,7 +221,7 @@ dependencies: - libwebp=1.2.4=h7bdf6e5_1 - m4rie=20150908=h75e8696_1001 - markupsafe=2.1.3=py310h7c1f4a2_1 - - maxima=5.46.0=h6475f26_0 + - maxima=5.47.0=h6475f26_0 - mistune=3.0.2=pyhd8ed1ab_0 - mpmath=1.3.0=pyhd8ed1ab_0 - munkres=1.1.4=pyh9f0ad1d_0 @@ -265,7 +264,7 @@ dependencies: - send2trash=1.8.2=pyh41d4057_0 - setuptools=68.2.2=pyhd8ed1ab_0 - simplegeneric=0.8.1=py_1 - - singular=4.2.1.p3=h3d4c4c6_2 + - 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 @@ -336,7 +335,7 @@ dependencies: - pyproject-api=1.6.1=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - pytz-deprecation-shim=0.1.0.post0=py310h4c7bcd0_4 - - referencing=0.31.1=pyhd8ed1ab_0 + - referencing=0.32.0=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - sagemath-db-conway-polynomials=0.5.0=h4fd8a4c_1 - sympy=1.12=pypyh9d50eac_103 @@ -380,7 +379,7 @@ dependencies: - isoduration=20.11.0=pyhd8ed1ab_0 - jsonschema=4.20.0=pyhd8ed1ab_0 - jupyter_client=8.6.0=pyhd8ed1ab_0 - - linbox=1.6.3=h31716a8_7 + - linbox=1.6.3=h681a5ee_8 - openjdk=17.0.3=h1a274e0_5 - pango=1.50.14=h1f1e9b3_0 - pythran=0.14.0=py310h5e48e15_1 diff --git a/src/environment-3.10-linux.yml b/src/environment-3.10-linux.yml index 31ba67db25f..c57440362d5 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: c544099b4f3b132930ae5d9ca91ee34b4e9955e629f8e7fca57bf638b4f74705 +# input_hash: a719998689b44191fa498c820b3917e6b24f766a62f723baf7d9bb8a3dbf1c5c channels: - conda-forge @@ -82,9 +82,9 @@ dependencies: - lz4-c=1.9.4=hcb278e6_0 - m4=1.4.18=h516909a_1001 - make=4.3=hd18ef5c_1 - - metis=5.1.0=h59595ed_1007 + - metis=5.1.1=h59595ed_2 - mpg123=1.32.3=h59595ed_0 - - nauty=2.8.6=hd590300_0 + - nauty=2.8.8=hd590300_0 - ncurses=6.4=h59595ed_2 - ninja=1.11.1=h924138e_0 - nspr=4.35=h27087fc_0 @@ -160,12 +160,11 @@ dependencies: - gfan=0.6.2=hb86e20a_1003 - gfortran_impl_linux-64=12.3.0=hfcedea8_3 - gxx_impl_linux-64=12.3.0=he2b93b0_3 - - igraph=0.7.1=0 - krb5=1.21.2=h659d440_0 - libboost=1.83.0=h6fcfa73_0 - libflint=3.0.1=h5f2e117_ntl_100 - libgcrypt=1.10.3=hd590300_0 - - libglib=2.78.2=h783c2da_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 @@ -194,7 +193,6 @@ dependencies: - alabaster=0.7.13=pyhd8ed1ab_0 - appdirs=1.4.4=pyh9f0ad1d_0 - appnope=0.1.3=pyhd8ed1ab_0 - - arb=2.9.0=0 - attrs=23.1.0=pyh71513ae_1 - automake=1.16.5=pl5321ha770c72_0 - backcall=0.2.0=pyh9f0ad1d_0 @@ -229,7 +227,7 @@ dependencies: - gast=0.5.4=pyhd8ed1ab_0 - gfortran=12.3.0=h499e0f7_2 - gfortran_linux-64=12.3.0=h7fe76b4_2 - - glib-tools=2.78.2=hfc55251_0 + - 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 @@ -249,11 +247,11 @@ dependencies: - libcups=2.3.3=h4637d8d_4 - libcurl=8.4.0=hca28451_0 - libpq=16.1=hfc447b1_0 - - libsystemd0=254=h3516f8a_0 + - libsystemd0=255=h3516f8a_0 - libwebp=1.3.2=h658648e_1 - m4rie=20150908=h7ca028e_1001 - markupsafe=2.1.3=py310h2372a71_1 - - maxima=5.46.0=hed6455c_0 + - maxima=5.47.0=hed6455c_0 - mistune=3.0.2=pyhd8ed1ab_0 - mpmath=1.3.0=pyhd8ed1ab_0 - munkres=1.1.4=pyh9f0ad1d_0 @@ -291,20 +289,19 @@ dependencies: - pyzmq=25.1.2=py310h795f18f_0 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - rpds-py=0.13.2=py310hcb5633a_0 - - rw=0.8=h516909a_1001 - 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 - - singular=4.3.2.p8=h33f5c3f_0 + - 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.10.0=h00ab1b0_2 + - tbb=2021.11.0=h00ab1b0_0 - toml=0.10.2=pyhd8ed1ab_0 - tomli=2.0.1=pyhd8ed1ab_0 - tornado=6.3.3=py310h2372a71_1 @@ -350,7 +347,7 @@ dependencies: - deprecation=2.1.0=pyh9f0ad1d_0 - fonttools=4.46.0=py310h2372a71_0 - fortran-compiler=1.6.0=heb67821_0 - - glib=2.78.2=hfc55251_0 + - glib=2.78.3=hfc55251_0 - importlib-metadata=7.0.0=pyha770c72_0 - importlib_resources=6.1.1=pyhd8ed1ab_0 - jedi=0.19.1=pyhd8ed1ab_0 @@ -376,7 +373,7 @@ dependencies: - pyproject-api=1.6.1=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - pytz-deprecation-shim=0.1.0.post0=py310hff52083_4 - - referencing=0.31.1=pyhd8ed1ab_0 + - referencing=0.32.0=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - sagemath-db-conway-polynomials=0.5.0=ha878542_1 - sip=6.7.12=py310hc6cd4ac_0 @@ -388,6 +385,7 @@ dependencies: - virtualenv=20.25.0=pyhd8ed1ab_0 - xorg-libxi=1.7.10=h7f98852_0 - argon2-cffi-bindings=21.2.0=py310h2372a71_4 + - arpack=3.8.0=nompi_h0baa96a_101 - arrow=1.3.0=pyhd8ed1ab_0 - compilers=1.6.0=ha770c72_0 - dsdp=5.8=hd9d9efa_1203 @@ -409,7 +407,7 @@ dependencies: - requests=2.31.0=pyhd8ed1ab_0 - setuptools-scm=8.0.4=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 - - suitesparse=5.10.1=h9e50725_1 + - 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 @@ -418,6 +416,7 @@ dependencies: - fpylll=0.6.0=py310h7e26f94_1 - giac=1.9.0.21=h673759e_1 - gst-plugins-base=1.22.7=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 @@ -438,6 +437,7 @@ dependencies: - nbformat=5.9.2=pyhd8ed1ab_0 - qt-main=5.15.8=h82b777d_17 - r-base=4.3.2=hb8ee39d_1 + - 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 diff --git a/src/environment-3.10-macos-arm64.yml b/src/environment-3.10-macos-arm64.yml index e54f2570adc..406905d68fe 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: aa5ed3c06de5b315b0e00f8cf54d8bbfcd42b210fb0cc6c93c3c0f7584976bff +# input_hash: d96fcda1495240cc7965fa57cd2b8fd363d40b0d5141b809a62c28906c8e9e21 channels: - conda-forge @@ -36,8 +36,7 @@ dependencies: - m4=1.4.18=h642e427_1001 - make=4.3=he57ea6c_1 - mathjax=3.2.2=hce30654_0 - - metis=5.1.0=h13dd4ca_1007 - - nauty=2.8.6=h93a5062_0 + - nauty=2.8.8=h93a5062_0 - palp=2.20=h27ca646_0 - pandoc=3.1.3=hce30654_0 - pari-elldata=0.0.20161017=0 @@ -80,6 +79,7 @@ dependencies: - libsqlite=3.44.2=h091b4b1_0 - libxcb=1.13=h9b22ae9_1004 - lrcalc=2.1=hb7217d7_5 + - metis=5.1.1=h965bd2d_2 - ncurses=6.4=h463b476_2 - ninja=1.11.1=hffc8910_0 - openjdk=21.0.1=hed44d8b_0 @@ -134,7 +134,7 @@ dependencies: - krb5=1.20.1=h69eda48_0 - lcms2=2.15=h481adae_0 - libbrial=1.2.12=ha7f5006_1 - - libflint=2.9.0=h173eafc_ntl_100 + - 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 @@ -151,7 +151,6 @@ dependencies: - alabaster=0.7.13=pyhd8ed1ab_0 - appdirs=1.4.4=pyh9f0ad1d_0 - appnope=0.1.3=pyhd8ed1ab_0 - - arb=2.23.0=he5401aa_0 - attrs=23.1.0=pyh71513ae_1 - backcall=0.2.0=pyh9f0ad1d_0 - brial=1.2.12=pyh694c41f_1 @@ -171,7 +170,7 @@ dependencies: - defusedxml=0.7.1=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - docutils=0.20.1=py310hbe9552e_3 - - eclib=20230424=haeb5157_0 + - eclib=20230424=h8fe5691_1 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 - exceptiongroup=1.2.0=pyhd8ed1ab_0 @@ -240,7 +239,7 @@ dependencies: - sagetex=3.6.1=pyhd8ed1ab_0 - setuptools=68.2.2=pyhd8ed1ab_0 - simplegeneric=0.8.1=py_1 - - singular=4.2.1.p3=h3b80c97_2 + - 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 @@ -305,7 +304,7 @@ dependencies: - pyproject-api=1.6.1=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - pytz-deprecation-shim=0.1.0.post0=py310hbe9552e_4 - - referencing=0.31.1=pyhd8ed1ab_0 + - referencing=0.32.0=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - sagemath-db-conway-polynomials=0.5.0=h4653dfc_1 - sympy=1.12=pypyh9d50eac_103 @@ -337,7 +336,7 @@ dependencies: - requests=2.31.0=pyhd8ed1ab_0 - setuptools-scm=8.0.4=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 - - suitesparse=5.10.1=h7cd81ec_1 + - 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 @@ -350,7 +349,7 @@ dependencies: - isoduration=20.11.0=pyhd8ed1ab_0 - jsonschema=4.20.0=pyhd8ed1ab_0 - jupyter_client=8.6.0=pyhd8ed1ab_0 - - linbox=1.6.3=h549c411_7 + - 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 diff --git a/src/environment-3.10-macos.yml b/src/environment-3.10-macos.yml index f53920cca73..c56a27233ba 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: 5335f611d811190b9a60e80f9e79c7b3c50ecb52b060060d1c5575bb539a632e +# input_hash: 98c8652a8cb56be0bd47aae118dfbf92567f0ce7376872eeec2931299d41114d channels: - conda-forge @@ -38,8 +38,7 @@ dependencies: - m4=1.4.18=haf1e3a3_1001 - make=4.3=h22f3db7_1 - mathjax=3.2.2=h694c41f_0 - - metis=5.1.0=he965462_1007 - - nauty=2.7.2=h0d85af4_0 + - nauty=2.8.8=h10d778d_0 - palp=2.20=hbcb3906_0 - pari-elldata=0.0.20161017=0 - pari-galdata=0.0.20180411=0 @@ -51,11 +50,9 @@ dependencies: - pthread-stubs=0.4=hc929b4f_1001 - python_abi=3.10=4_cp310 - rhash=1.4.4=h0dc2134_0 - - rw=0.7=1 - sagemath-db-combinatorial-designs=20140630=1 - sagemath-db-graphs=20210214=hd8ed1ab_0 - sagemath-db-polytopes=20170220=1 - - tbb=2021.10.0=h1c7c39f_2 - three.js=122=hd8ed1ab_2 - tzdata=2023c=h71feb2d_0 - xorg-libxau=1.0.11=h0dc2134_0 @@ -80,8 +77,9 @@ dependencies: - libpng=1.6.39=ha978bb4_0 - libsqlite=3.44.2=h92b6c6a_0 - libxcb=1.15=hb7f2c08_0 - - libxml2=2.12.2=hc0ae0f7_0 + - libxml2=2.11.6=hc0ae0f7_0 - lrcalc=2.1=hf0c8a7f_5 + - metis=5.1.1=h93d8f39_2 - ncurses=6.4=h93d8f39_2 - ninja=1.11.1=hb8565cd_0 - openjdk=21.0.1=hf4d7fad_0 @@ -116,7 +114,8 @@ dependencies: - libgfortran=5.0.0=13_2_0_h97931a8_1 - libglib=2.78.1=h6d9ecee_0 - libhomfly=1.02r6=hc929b4f_0 - - libllvm15=15.0.7=hbedff68_4 + - libhwloc=2.9.3=default_h24e0189_1009 + - libllvm15=15.0.7=he4b1e75_3 - libnghttp2=1.58.0=h64cf6d3_0 - libssh2=1.11.0=hd019ec5_0 - libtiff=4.6.0=h684deea_2 @@ -144,7 +143,7 @@ dependencies: - 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=hbedff68_4 + - llvm-tools=15.0.7=he4b1e75_3 - m4rie=20150908=h3f75d11_1001 - mpc=1.3.1=h81bd1dd_0 - mpfi=1.5.4=h52b28e3_1001 @@ -154,10 +153,10 @@ dependencies: - python=3.10.13=h00d2728_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 - - arb=2.9.0=0 - attrs=23.1.0=pyh71513ae_1 - backcall=0.2.0=pyh9f0ad1d_0 - boost-cpp=1.83.0=h07eb623_0 @@ -205,7 +204,7 @@ dependencies: - libcurl=8.5.0=h726d00d_0 - libgd=2.3.3=h0dceb68_9 - markupsafe=2.1.3=py310h6729b98_1 - - maxima=5.46.0=h2b27fa8_0 + - maxima=5.47.0=h2b27fa8_0 - mistune=3.0.2=pyhd8ed1ab_0 - mpmath=1.3.0=pyhd8ed1ab_0 - munkres=1.1.4=pyh9f0ad1d_0 @@ -247,7 +246,7 @@ dependencies: - sagetex=3.6.1=pyhd8ed1ab_0 - setuptools=68.2.2=pyhd8ed1ab_0 - simplegeneric=0.8.1=py_1 - - singular=4.3.2.p8=h0d51a9f_0 + - 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 @@ -311,7 +310,7 @@ dependencies: - pyproject-api=1.6.1=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - pytz-deprecation-shim=0.1.0.post0=py310h2ec42d9_4 - - referencing=0.31.1=pyhd8ed1ab_0 + - referencing=0.32.0=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - sagemath-db-conway-polynomials=0.5.0=h033912b_1 - sympy=1.12=pypyh9d50eac_103 @@ -321,6 +320,7 @@ dependencies: - urllib3=2.1.0=pyhd8ed1ab_0 - virtualenv=20.25.0=pyhd8ed1ab_0 - argon2-cffi-bindings=21.2.0=py310h6729b98_4 + - 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 @@ -341,7 +341,7 @@ dependencies: - requests=2.31.0=pyhd8ed1ab_0 - setuptools-scm=8.0.4=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 - - suitesparse=5.10.1=h7aff33d_1 + - 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 @@ -349,6 +349,7 @@ dependencies: - cvxopt=1.3.2=py310ha550498_1 - fpylll=0.6.0=py310h2acdeac_1 - 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 @@ -365,6 +366,7 @@ dependencies: - jsonschema-with-format-nongpl=4.20.0=pyhd8ed1ab_0 - matplotlib-base=3.8.2=py310hec49e92_0 - nbformat=5.9.2=pyhd8ed1ab_0 + - rw=0.9=h10d778d_1 - clang_impl_osx-64=15.0.7=h03d6864_6 - ipympl=0.9.3=pyhd8ed1ab_0 - jupyter-jsmol=2022.1.0=pyhd8ed1ab_0 diff --git a/src/environment-3.11-linux-aarch64.yml b/src/environment-3.11-linux-aarch64.yml index 01dba650e25..cbd3a6e424b 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: 0a6ac34c356068128c187cbe06d057fb0fc2687a505a6ef2f8c4b5edd4f08483 +# input_hash: a8941f900d7dcd9f30612f258032e4b1dc6b1e7c5fe0895d0e31fb2b98a5634b channels: - conda-forge @@ -78,7 +78,7 @@ dependencies: - m4=1.4.18=h516909a_1001 - make=4.3=h309ac5b_1 - metis=5.1.0=h2f0025b_1007 - - nauty=2.8.6=h31becfc_0 + - nauty=2.8.8=h31becfc_0 - ncurses=6.4=h0425590_2 - ninja=1.11.1=hdd96247_0 - openssl=3.2.0=h31becfc_1 @@ -148,7 +148,7 @@ dependencies: - gfortran_impl_linux-aarch64=12.3.0=hb7244be_3 - gxx_impl_linux-aarch64=12.3.0=hcde2664_3 - krb5=1.20.1=h113d92e_0 - - libflint=2.9.0=hd3470fa_ntl_100 + - 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 @@ -169,7 +169,6 @@ dependencies: - alabaster=0.7.13=pyhd8ed1ab_0 - appdirs=1.4.4=pyh9f0ad1d_0 - appnope=0.1.3=pyhd8ed1ab_0 - - arb=2.23.0=h37d5dab_0 - attrs=23.1.0=pyh71513ae_1 - automake=1.16.5=pl5321h8af1aa0_0 - backcall=0.2.0=pyh9f0ad1d_0 @@ -190,7 +189,7 @@ dependencies: - defusedxml=0.7.1=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - docutils=0.20.1=py311hfecb2dc_3 - - eclib=20230424=h0bc7b0f_0 + - eclib=20230424=he26bab5_1 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 - exceptiongroup=1.2.0=pyhd8ed1ab_0 @@ -222,7 +221,7 @@ dependencies: - libwebp=1.2.4=h7bdf6e5_1 - m4rie=20150908=h75e8696_1001 - markupsafe=2.1.3=py311hc8f2f60_1 - - maxima=5.46.0=h6475f26_0 + - maxima=5.47.0=h6475f26_0 - mistune=3.0.2=pyhd8ed1ab_0 - mpmath=1.3.0=pyhd8ed1ab_0 - munkres=1.1.4=pyh9f0ad1d_0 @@ -265,7 +264,7 @@ dependencies: - send2trash=1.8.2=pyh41d4057_0 - setuptools=68.2.2=pyhd8ed1ab_0 - simplegeneric=0.8.1=py_1 - - singular=4.2.1.p3=h3d4c4c6_2 + - 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 @@ -335,7 +334,7 @@ dependencies: - pyproject-api=1.6.1=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - pytz-deprecation-shim=0.1.0.post0=py311hec3470c_4 - - referencing=0.31.1=pyhd8ed1ab_0 + - referencing=0.32.0=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - sagemath-db-conway-polynomials=0.5.0=h4fd8a4c_1 - sympy=1.12=pypyh9d50eac_103 @@ -379,7 +378,7 @@ dependencies: - isoduration=20.11.0=pyhd8ed1ab_0 - jsonschema=4.20.0=pyhd8ed1ab_0 - jupyter_client=8.6.0=pyhd8ed1ab_0 - - linbox=1.6.3=h31716a8_7 + - linbox=1.6.3=h681a5ee_8 - openjdk=17.0.3=h1a274e0_5 - pango=1.50.14=h1f1e9b3_0 - pythran=0.14.0=py311hec5c23b_1 diff --git a/src/environment-3.11-linux.yml b/src/environment-3.11-linux.yml index 50e3b0855af..674a0ee583e 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: 31265ea1fab649873eaae986e5ef06a6354be2fe29d2bc0fca24a8220c7ee81f +# input_hash: 9666cf47da5347260c96b9b7dcaa39e774da5953fede9de61aa915be339b91af channels: - conda-forge @@ -82,9 +82,9 @@ dependencies: - lz4-c=1.9.4=hcb278e6_0 - m4=1.4.18=h516909a_1001 - make=4.3=hd18ef5c_1 - - metis=5.1.0=h59595ed_1007 + - metis=5.1.1=h59595ed_2 - mpg123=1.32.3=h59595ed_0 - - nauty=2.8.6=hd590300_0 + - nauty=2.8.8=hd590300_0 - ncurses=6.4=h59595ed_2 - ninja=1.11.1=h924138e_0 - nspr=4.35=h27087fc_0 @@ -160,12 +160,11 @@ dependencies: - gfan=0.6.2=hb86e20a_1003 - gfortran_impl_linux-64=12.3.0=hfcedea8_3 - gxx_impl_linux-64=12.3.0=he2b93b0_3 - - igraph=0.7.1=0 - krb5=1.21.2=h659d440_0 - libboost=1.83.0=h6fcfa73_0 - libflint=3.0.1=h5f2e117_ntl_100 - libgcrypt=1.10.3=hd590300_0 - - libglib=2.78.2=h783c2da_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 @@ -194,7 +193,6 @@ dependencies: - alabaster=0.7.13=pyhd8ed1ab_0 - appdirs=1.4.4=pyh9f0ad1d_0 - appnope=0.1.3=pyhd8ed1ab_0 - - arb=2.9.0=0 - attrs=23.1.0=pyh71513ae_1 - automake=1.16.5=pl5321ha770c72_0 - backcall=0.2.0=pyh9f0ad1d_0 @@ -229,7 +227,7 @@ dependencies: - gast=0.5.4=pyhd8ed1ab_0 - gfortran=12.3.0=h499e0f7_2 - gfortran_linux-64=12.3.0=h7fe76b4_2 - - glib-tools=2.78.2=hfc55251_0 + - 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 @@ -249,11 +247,11 @@ dependencies: - libcups=2.3.3=h4637d8d_4 - libcurl=8.4.0=hca28451_0 - libpq=16.1=hfc447b1_0 - - libsystemd0=254=h3516f8a_0 + - libsystemd0=255=h3516f8a_0 - libwebp=1.3.2=h658648e_1 - m4rie=20150908=h7ca028e_1001 - markupsafe=2.1.3=py311h459d7ec_1 - - maxima=5.46.0=hed6455c_0 + - maxima=5.47.0=hed6455c_0 - mistune=3.0.2=pyhd8ed1ab_0 - mpmath=1.3.0=pyhd8ed1ab_0 - munkres=1.1.4=pyh9f0ad1d_0 @@ -291,20 +289,19 @@ dependencies: - pyzmq=25.1.2=py311h34ded2d_0 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - rpds-py=0.13.2=py311h46250e7_0 - - rw=0.8=h516909a_1001 - 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 - - singular=4.3.2.p8=h33f5c3f_0 + - 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.10.0=h00ab1b0_2 + - tbb=2021.11.0=h00ab1b0_0 - toml=0.10.2=pyhd8ed1ab_0 - tomli=2.0.1=pyhd8ed1ab_0 - tornado=6.3.3=py311h459d7ec_1 @@ -349,7 +346,7 @@ dependencies: - deprecation=2.1.0=pyh9f0ad1d_0 - fonttools=4.46.0=py311h459d7ec_0 - fortran-compiler=1.6.0=heb67821_0 - - glib=2.78.2=hfc55251_0 + - glib=2.78.3=hfc55251_0 - importlib-metadata=7.0.0=pyha770c72_0 - importlib_resources=6.1.1=pyhd8ed1ab_0 - jedi=0.19.1=pyhd8ed1ab_0 @@ -375,7 +372,7 @@ dependencies: - pyproject-api=1.6.1=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - pytz-deprecation-shim=0.1.0.post0=py311h38be061_4 - - referencing=0.31.1=pyhd8ed1ab_0 + - referencing=0.32.0=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - sagemath-db-conway-polynomials=0.5.0=ha878542_1 - sip=6.7.12=py311hb755f60_0 @@ -387,6 +384,7 @@ dependencies: - virtualenv=20.25.0=pyhd8ed1ab_0 - xorg-libxi=1.7.10=h7f98852_0 - argon2-cffi-bindings=21.2.0=py311h459d7ec_4 + - arpack=3.8.0=nompi_h0baa96a_101 - arrow=1.3.0=pyhd8ed1ab_0 - compilers=1.6.0=ha770c72_0 - dsdp=5.8=hd9d9efa_1203 @@ -408,7 +406,7 @@ dependencies: - requests=2.31.0=pyhd8ed1ab_0 - setuptools-scm=8.0.4=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 - - suitesparse=5.10.1=h9e50725_1 + - 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 @@ -417,6 +415,7 @@ dependencies: - fpylll=0.6.0=py311hcfae7cf_1 - giac=1.9.0.21=h673759e_1 - gst-plugins-base=1.22.7=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 @@ -437,6 +436,7 @@ dependencies: - nbformat=5.9.2=pyhd8ed1ab_0 - qt-main=5.15.8=h82b777d_17 - r-base=4.3.2=hb8ee39d_1 + - 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 diff --git a/src/environment-3.11-macos-arm64.yml b/src/environment-3.11-macos-arm64.yml index 9dab1059a84..feb69e69e95 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: e618c00b905fa56c7bf6c6e3710492b69214374c3067f54656034f7e618d0b45 +# input_hash: de07287b902f62991580e28445e2e717d34bc06f3fa55313a95d57ce1f10814c channels: - conda-forge @@ -36,8 +36,7 @@ dependencies: - m4=1.4.18=h642e427_1001 - make=4.3=he57ea6c_1 - mathjax=3.2.2=hce30654_0 - - metis=5.1.0=h13dd4ca_1007 - - nauty=2.8.6=h93a5062_0 + - nauty=2.8.8=h93a5062_0 - palp=2.20=h27ca646_0 - pandoc=3.1.3=hce30654_0 - pari-elldata=0.0.20161017=0 @@ -80,6 +79,7 @@ dependencies: - libsqlite=3.44.2=h091b4b1_0 - libxcb=1.13=h9b22ae9_1004 - lrcalc=2.1=hb7217d7_5 + - metis=5.1.1=h965bd2d_2 - ncurses=6.4=h463b476_2 - ninja=1.11.1=hffc8910_0 - openjdk=21.0.1=hed44d8b_0 @@ -134,7 +134,7 @@ dependencies: - krb5=1.20.1=h69eda48_0 - lcms2=2.15=h481adae_0 - libbrial=1.2.12=ha7f5006_1 - - libflint=2.9.0=h173eafc_ntl_100 + - 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 @@ -151,7 +151,6 @@ dependencies: - alabaster=0.7.13=pyhd8ed1ab_0 - appdirs=1.4.4=pyh9f0ad1d_0 - appnope=0.1.3=pyhd8ed1ab_0 - - arb=2.23.0=he5401aa_0 - attrs=23.1.0=pyh71513ae_1 - backcall=0.2.0=pyh9f0ad1d_0 - brial=1.2.12=pyh694c41f_1 @@ -171,7 +170,7 @@ dependencies: - defusedxml=0.7.1=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - docutils=0.20.1=py311h267d04e_3 - - eclib=20230424=haeb5157_0 + - eclib=20230424=h8fe5691_1 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 - exceptiongroup=1.2.0=pyhd8ed1ab_0 @@ -240,7 +239,7 @@ dependencies: - sagetex=3.6.1=pyhd8ed1ab_0 - setuptools=68.2.2=pyhd8ed1ab_0 - simplegeneric=0.8.1=py_1 - - singular=4.2.1.p3=h3b80c97_2 + - 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 @@ -304,7 +303,7 @@ dependencies: - pyproject-api=1.6.1=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - pytz-deprecation-shim=0.1.0.post0=py311h267d04e_4 - - referencing=0.31.1=pyhd8ed1ab_0 + - referencing=0.32.0=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - sagemath-db-conway-polynomials=0.5.0=h4653dfc_1 - sympy=1.12=pypyh9d50eac_103 @@ -336,7 +335,7 @@ dependencies: - requests=2.31.0=pyhd8ed1ab_0 - setuptools-scm=8.0.4=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 - - suitesparse=5.10.1=h7cd81ec_1 + - 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 @@ -349,7 +348,7 @@ dependencies: - isoduration=20.11.0=pyhd8ed1ab_0 - jsonschema=4.20.0=pyhd8ed1ab_0 - jupyter_client=8.6.0=pyhd8ed1ab_0 - - linbox=1.6.3=h549c411_7 + - 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 diff --git a/src/environment-3.11-macos.yml b/src/environment-3.11-macos.yml index a809720fb42..eadfae05d2c 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: 80bfbd8ddf66b9c5bc1a6a6c77142c5f518cf580f9fe31d47b49ced8a3c48ace +# input_hash: cc1b429af04e9a3d5005a70cd70444ba6420fecee9c9ddcf2c661bd584961aa3 channels: - conda-forge @@ -38,8 +38,7 @@ dependencies: - m4=1.4.18=haf1e3a3_1001 - make=4.3=h22f3db7_1 - mathjax=3.2.2=h694c41f_0 - - metis=5.1.0=he965462_1007 - - nauty=2.7.2=h0d85af4_0 + - nauty=2.8.8=h10d778d_0 - palp=2.20=hbcb3906_0 - pari-elldata=0.0.20161017=0 - pari-galdata=0.0.20180411=0 @@ -51,11 +50,9 @@ dependencies: - pthread-stubs=0.4=hc929b4f_1001 - python_abi=3.11=4_cp311 - rhash=1.4.4=h0dc2134_0 - - rw=0.7=1 - sagemath-db-combinatorial-designs=20140630=1 - sagemath-db-graphs=20210214=hd8ed1ab_0 - sagemath-db-polytopes=20170220=1 - - tbb=2021.10.0=h1c7c39f_2 - three.js=122=hd8ed1ab_2 - tzdata=2023c=h71feb2d_0 - xorg-libxau=1.0.11=h0dc2134_0 @@ -80,8 +77,9 @@ dependencies: - libpng=1.6.39=ha978bb4_0 - libsqlite=3.44.2=h92b6c6a_0 - libxcb=1.15=hb7f2c08_0 - - libxml2=2.12.2=hc0ae0f7_0 + - libxml2=2.11.6=hc0ae0f7_0 - lrcalc=2.1=hf0c8a7f_5 + - metis=5.1.1=h93d8f39_2 - ncurses=6.4=h93d8f39_2 - ninja=1.11.1=hb8565cd_0 - openjdk=21.0.1=hf4d7fad_0 @@ -116,7 +114,8 @@ dependencies: - libgfortran=5.0.0=13_2_0_h97931a8_1 - libglib=2.78.1=h6d9ecee_0 - libhomfly=1.02r6=hc929b4f_0 - - libllvm15=15.0.7=hbedff68_4 + - libhwloc=2.9.3=default_h24e0189_1009 + - libllvm15=15.0.7=he4b1e75_3 - libnghttp2=1.58.0=h64cf6d3_0 - libssh2=1.11.0=hd019ec5_0 - libtiff=4.6.0=h684deea_2 @@ -144,7 +143,7 @@ dependencies: - 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=hbedff68_4 + - llvm-tools=15.0.7=he4b1e75_3 - m4rie=20150908=h3f75d11_1001 - mpc=1.3.1=h81bd1dd_0 - mpfi=1.5.4=h52b28e3_1001 @@ -154,10 +153,10 @@ dependencies: - python=3.11.6=h30d4d87_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 - - arb=2.9.0=0 - attrs=23.1.0=pyh71513ae_1 - backcall=0.2.0=pyh9f0ad1d_0 - boost-cpp=1.83.0=h07eb623_0 @@ -205,7 +204,7 @@ dependencies: - libcurl=8.5.0=h726d00d_0 - libgd=2.3.3=h0dceb68_9 - markupsafe=2.1.3=py311h2725bcf_1 - - maxima=5.46.0=h2b27fa8_0 + - maxima=5.47.0=h2b27fa8_0 - mistune=3.0.2=pyhd8ed1ab_0 - mpmath=1.3.0=pyhd8ed1ab_0 - munkres=1.1.4=pyh9f0ad1d_0 @@ -247,7 +246,7 @@ dependencies: - sagetex=3.6.1=pyhd8ed1ab_0 - setuptools=68.2.2=pyhd8ed1ab_0 - simplegeneric=0.8.1=py_1 - - singular=4.3.2.p8=h0d51a9f_0 + - 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 @@ -310,7 +309,7 @@ dependencies: - pyproject-api=1.6.1=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - pytz-deprecation-shim=0.1.0.post0=py311h6eed73b_4 - - referencing=0.31.1=pyhd8ed1ab_0 + - referencing=0.32.0=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - sagemath-db-conway-polynomials=0.5.0=h033912b_1 - sympy=1.12=pypyh9d50eac_103 @@ -320,6 +319,7 @@ dependencies: - urllib3=2.1.0=pyhd8ed1ab_0 - virtualenv=20.25.0=pyhd8ed1ab_0 - argon2-cffi-bindings=21.2.0=py311h2725bcf_4 + - 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 @@ -340,7 +340,7 @@ dependencies: - requests=2.31.0=pyhd8ed1ab_0 - setuptools-scm=8.0.4=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 - - suitesparse=5.10.1=h7aff33d_1 + - 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 @@ -348,6 +348,7 @@ dependencies: - cvxopt=1.3.2=py311ha4c19de_1 - fpylll=0.6.0=py311hc863427_1 - 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 @@ -364,6 +365,7 @@ dependencies: - jsonschema-with-format-nongpl=4.20.0=pyhd8ed1ab_0 - matplotlib-base=3.8.2=py311hd316c10_0 - nbformat=5.9.2=pyhd8ed1ab_0 + - rw=0.9=h10d778d_1 - clang_impl_osx-64=15.0.7=h03d6864_6 - ipympl=0.9.3=pyhd8ed1ab_0 - jupyter-jsmol=2022.1.0=pyhd8ed1ab_0 diff --git a/src/environment-3.9-linux-aarch64.yml b/src/environment-3.9-linux-aarch64.yml index bbbf05a5da8..f5e1bc0094a 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: e298eb1de51ec8b73a6561bfbdbb02b2e349d827d6de9773984a418b4e86dd84 +# input_hash: e1d3ebda3b68459ab7cf103b09db5045e50ff41442ea888dfb2efab9a2ce1112 channels: - conda-forge @@ -78,7 +78,7 @@ dependencies: - m4=1.4.18=h516909a_1001 - make=4.3=h309ac5b_1 - metis=5.1.0=h2f0025b_1007 - - nauty=2.8.6=h31becfc_0 + - nauty=2.8.8=h31becfc_0 - ncurses=6.4=h0425590_2 - ninja=1.11.1=hdd96247_0 - openssl=3.2.0=h31becfc_1 @@ -148,7 +148,7 @@ dependencies: - gfortran_impl_linux-aarch64=12.3.0=hb7244be_3 - gxx_impl_linux-aarch64=12.3.0=hcde2664_3 - krb5=1.20.1=h113d92e_0 - - libflint=2.9.0=hd3470fa_ntl_100 + - 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 @@ -169,7 +169,6 @@ dependencies: - alabaster=0.7.13=pyhd8ed1ab_0 - appdirs=1.4.4=pyh9f0ad1d_0 - appnope=0.1.3=pyhd8ed1ab_0 - - arb=2.23.0=h37d5dab_0 - attrs=23.1.0=pyh71513ae_1 - automake=1.16.5=pl5321h8af1aa0_0 - backcall=0.2.0=pyh9f0ad1d_0 @@ -190,7 +189,7 @@ dependencies: - defusedxml=0.7.1=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - docutils=0.20.1=py39ha65689a_3 - - eclib=20230424=h0bc7b0f_0 + - eclib=20230424=he26bab5_1 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 - exceptiongroup=1.2.0=pyhd8ed1ab_0 @@ -222,7 +221,7 @@ dependencies: - libwebp=1.2.4=h7bdf6e5_1 - m4rie=20150908=h75e8696_1001 - markupsafe=2.1.3=py39h7cc1d5f_1 - - maxima=5.46.0=h6475f26_0 + - maxima=5.47.0=h6475f26_0 - mistune=3.0.2=pyhd8ed1ab_0 - mpmath=1.3.0=pyhd8ed1ab_0 - munkres=1.1.4=pyh9f0ad1d_0 @@ -265,7 +264,7 @@ dependencies: - send2trash=1.8.2=pyh41d4057_0 - setuptools=68.2.2=pyhd8ed1ab_0 - simplegeneric=0.8.1=py_1 - - singular=4.2.1.p3=h3d4c4c6_2 + - 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 @@ -336,7 +335,7 @@ dependencies: - pyproject-api=1.6.1=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - pytz-deprecation-shim=0.1.0.post0=py39h4420490_4 - - referencing=0.31.1=pyhd8ed1ab_0 + - referencing=0.32.0=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - sagemath-db-conway-polynomials=0.5.0=h4fd8a4c_1 - sympy=1.12=pypyh9d50eac_103 @@ -380,7 +379,7 @@ dependencies: - isoduration=20.11.0=pyhd8ed1ab_0 - jsonschema=4.20.0=pyhd8ed1ab_0 - jupyter_client=8.6.0=pyhd8ed1ab_0 - - linbox=1.6.3=h31716a8_7 + - linbox=1.6.3=h681a5ee_8 - openjdk=17.0.3=h1a274e0_5 - pango=1.50.14=h1f1e9b3_0 - pythran=0.14.0=py39hc2250db_1 diff --git a/src/environment-3.9-linux.yml b/src/environment-3.9-linux.yml index afc56719182..6237693c5fb 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: 4a20ce66e5e0f5e2d4c410594036965b255391cd20ea6ce0f99b4ce11803138d +# input_hash: 8583cc7cd8ab837f91d6ae8c8434620b6dc5097628708516c41541a11ccebae0 channels: - conda-forge @@ -82,9 +82,9 @@ dependencies: - lz4-c=1.9.4=hcb278e6_0 - m4=1.4.18=h516909a_1001 - make=4.3=hd18ef5c_1 - - metis=5.1.0=h59595ed_1007 + - metis=5.1.1=h59595ed_2 - mpg123=1.32.3=h59595ed_0 - - nauty=2.8.6=hd590300_0 + - nauty=2.8.8=hd590300_0 - ncurses=6.4=h59595ed_2 - ninja=1.11.1=h924138e_0 - nspr=4.35=h27087fc_0 @@ -160,12 +160,11 @@ dependencies: - gfan=0.6.2=hb86e20a_1003 - gfortran_impl_linux-64=12.3.0=hfcedea8_3 - gxx_impl_linux-64=12.3.0=he2b93b0_3 - - igraph=0.7.1=0 - krb5=1.21.2=h659d440_0 - libboost=1.83.0=h6fcfa73_0 - libflint=3.0.1=h5f2e117_ntl_100 - libgcrypt=1.10.3=hd590300_0 - - libglib=2.78.2=h783c2da_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 @@ -194,7 +193,6 @@ dependencies: - alabaster=0.7.13=pyhd8ed1ab_0 - appdirs=1.4.4=pyh9f0ad1d_0 - appnope=0.1.3=pyhd8ed1ab_0 - - arb=2.9.0=0 - attrs=23.1.0=pyh71513ae_1 - automake=1.16.5=pl5321ha770c72_0 - backcall=0.2.0=pyh9f0ad1d_0 @@ -229,7 +227,7 @@ dependencies: - gast=0.5.4=pyhd8ed1ab_0 - gfortran=12.3.0=h499e0f7_2 - gfortran_linux-64=12.3.0=h7fe76b4_2 - - glib-tools=2.78.2=hfc55251_0 + - 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 @@ -249,11 +247,11 @@ dependencies: - libcups=2.3.3=h4637d8d_4 - libcurl=8.4.0=hca28451_0 - libpq=16.1=hfc447b1_0 - - libsystemd0=254=h3516f8a_0 + - libsystemd0=255=h3516f8a_0 - libwebp=1.3.2=h658648e_1 - m4rie=20150908=h7ca028e_1001 - markupsafe=2.1.3=py39hd1e30aa_1 - - maxima=5.46.0=hed6455c_0 + - maxima=5.47.0=hed6455c_0 - mistune=3.0.2=pyhd8ed1ab_0 - mpmath=1.3.0=pyhd8ed1ab_0 - munkres=1.1.4=pyh9f0ad1d_0 @@ -291,20 +289,19 @@ dependencies: - pyzmq=25.1.2=py39h8c080ef_0 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - rpds-py=0.13.2=py39h9fdd4d6_0 - - rw=0.8=h516909a_1001 - 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 - - singular=4.3.2.p8=h33f5c3f_0 + - 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.10.0=h00ab1b0_2 + - tbb=2021.11.0=h00ab1b0_0 - toml=0.10.2=pyhd8ed1ab_0 - tomli=2.0.1=pyhd8ed1ab_0 - tornado=6.3.3=py39hd1e30aa_1 @@ -350,7 +347,7 @@ dependencies: - deprecation=2.1.0=pyh9f0ad1d_0 - fonttools=4.46.0=py39hd1e30aa_0 - fortran-compiler=1.6.0=heb67821_0 - - glib=2.78.2=hfc55251_0 + - glib=2.78.3=hfc55251_0 - importlib-metadata=7.0.0=pyha770c72_0 - importlib_resources=6.1.1=pyhd8ed1ab_0 - jedi=0.19.1=pyhd8ed1ab_0 @@ -376,7 +373,7 @@ dependencies: - pyproject-api=1.6.1=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - pytz-deprecation-shim=0.1.0.post0=py39hf3d152e_4 - - referencing=0.31.1=pyhd8ed1ab_0 + - referencing=0.32.0=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - sagemath-db-conway-polynomials=0.5.0=ha878542_1 - sip=6.7.12=py39h3d6467e_0 @@ -388,6 +385,7 @@ dependencies: - virtualenv=20.25.0=pyhd8ed1ab_0 - xorg-libxi=1.7.10=h7f98852_0 - argon2-cffi-bindings=21.2.0=py39hd1e30aa_4 + - arpack=3.8.0=nompi_h0baa96a_101 - arrow=1.3.0=pyhd8ed1ab_0 - compilers=1.6.0=ha770c72_0 - dsdp=5.8=hd9d9efa_1203 @@ -409,7 +407,7 @@ dependencies: - requests=2.31.0=pyhd8ed1ab_0 - setuptools-scm=8.0.4=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 - - suitesparse=5.10.1=h9e50725_1 + - 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 @@ -418,6 +416,7 @@ dependencies: - fpylll=0.6.0=py39h2525e16_1 - giac=1.9.0.21=h673759e_1 - gst-plugins-base=1.22.7=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 @@ -438,6 +437,7 @@ dependencies: - nbformat=5.9.2=pyhd8ed1ab_0 - qt-main=5.15.8=h82b777d_17 - r-base=4.3.2=hb8ee39d_1 + - 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 diff --git a/src/environment-3.9-macos-arm64.yml b/src/environment-3.9-macos-arm64.yml index 761d1e8305c..36c3a042163 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: addfbe14b4bfb6f51731399d2dceeccc56f4710c30c87193ce7da625d1fc0393 +# input_hash: 52b003c8c2e0c44a5c6a02f086be239ec2feed87dc95da7a3359ce516f29130b channels: - conda-forge @@ -36,8 +36,7 @@ dependencies: - m4=1.4.18=h642e427_1001 - make=4.3=he57ea6c_1 - mathjax=3.2.2=hce30654_0 - - metis=5.1.0=h13dd4ca_1007 - - nauty=2.8.6=h93a5062_0 + - nauty=2.8.8=h93a5062_0 - palp=2.20=h27ca646_0 - pandoc=3.1.3=hce30654_0 - pari-elldata=0.0.20161017=0 @@ -80,6 +79,7 @@ dependencies: - libsqlite=3.44.2=h091b4b1_0 - libxcb=1.13=h9b22ae9_1004 - lrcalc=2.1=hb7217d7_5 + - metis=5.1.1=h965bd2d_2 - ncurses=6.4=h463b476_2 - ninja=1.11.1=hffc8910_0 - openjdk=21.0.1=hed44d8b_0 @@ -134,7 +134,7 @@ dependencies: - krb5=1.20.1=h69eda48_0 - lcms2=2.15=h481adae_0 - libbrial=1.2.12=ha7f5006_1 - - libflint=2.9.0=h173eafc_ntl_100 + - 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 @@ -151,7 +151,6 @@ dependencies: - alabaster=0.7.13=pyhd8ed1ab_0 - appdirs=1.4.4=pyh9f0ad1d_0 - appnope=0.1.3=pyhd8ed1ab_0 - - arb=2.23.0=he5401aa_0 - attrs=23.1.0=pyh71513ae_1 - backcall=0.2.0=pyh9f0ad1d_0 - brial=1.2.12=pyh694c41f_1 @@ -171,7 +170,7 @@ dependencies: - defusedxml=0.7.1=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - docutils=0.20.1=py39h2804cbe_3 - - eclib=20230424=haeb5157_0 + - eclib=20230424=h8fe5691_1 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 - exceptiongroup=1.2.0=pyhd8ed1ab_0 @@ -240,7 +239,7 @@ dependencies: - sagetex=3.6.1=pyhd8ed1ab_0 - setuptools=68.2.2=pyhd8ed1ab_0 - simplegeneric=0.8.1=py_1 - - singular=4.2.1.p3=h3b80c97_2 + - 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 @@ -305,7 +304,7 @@ dependencies: - pyproject-api=1.6.1=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - pytz-deprecation-shim=0.1.0.post0=py39h2804cbe_4 - - referencing=0.31.1=pyhd8ed1ab_0 + - referencing=0.32.0=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - sagemath-db-conway-polynomials=0.5.0=h4653dfc_1 - sympy=1.12=pypyh9d50eac_103 @@ -337,7 +336,7 @@ dependencies: - requests=2.31.0=pyhd8ed1ab_0 - setuptools-scm=8.0.4=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 - - suitesparse=5.10.1=h7cd81ec_1 + - 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 @@ -350,7 +349,7 @@ dependencies: - isoduration=20.11.0=pyhd8ed1ab_0 - jsonschema=4.20.0=pyhd8ed1ab_0 - jupyter_client=8.6.0=pyhd8ed1ab_0 - - linbox=1.6.3=h549c411_7 + - 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 diff --git a/src/environment-3.9-macos.yml b/src/environment-3.9-macos.yml index d530f60ed7a..c4b41368241 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: 56163e38cb3b6235050ea91a8829b0580f25b55c5e897a4b350caf05e7ac95e6 +# input_hash: 4e81e22a3a64f24f9de6830495178ae1d7e4bd1c74eb4f6ccdfc46ed2c138584 channels: - conda-forge @@ -38,8 +38,7 @@ dependencies: - m4=1.4.18=haf1e3a3_1001 - make=4.3=h22f3db7_1 - mathjax=3.2.2=h694c41f_0 - - metis=5.1.0=he965462_1007 - - nauty=2.7.2=h0d85af4_0 + - nauty=2.8.8=h10d778d_0 - palp=2.20=hbcb3906_0 - pari-elldata=0.0.20161017=0 - pari-galdata=0.0.20180411=0 @@ -51,11 +50,9 @@ dependencies: - pthread-stubs=0.4=hc929b4f_1001 - python_abi=3.9=4_cp39 - rhash=1.4.4=h0dc2134_0 - - rw=0.7=1 - sagemath-db-combinatorial-designs=20140630=1 - sagemath-db-graphs=20210214=hd8ed1ab_0 - sagemath-db-polytopes=20170220=1 - - tbb=2021.10.0=h1c7c39f_2 - three.js=122=hd8ed1ab_2 - tzdata=2023c=h71feb2d_0 - xorg-libxau=1.0.11=h0dc2134_0 @@ -80,8 +77,9 @@ dependencies: - libpng=1.6.39=ha978bb4_0 - libsqlite=3.44.2=h92b6c6a_0 - libxcb=1.15=hb7f2c08_0 - - libxml2=2.12.2=hc0ae0f7_0 + - libxml2=2.11.6=hc0ae0f7_0 - lrcalc=2.1=hf0c8a7f_5 + - metis=5.1.1=h93d8f39_2 - ncurses=6.4=h93d8f39_2 - ninja=1.11.1=hb8565cd_0 - openjdk=21.0.1=hf4d7fad_0 @@ -116,7 +114,8 @@ dependencies: - libgfortran=5.0.0=13_2_0_h97931a8_1 - libglib=2.78.1=h6d9ecee_0 - libhomfly=1.02r6=hc929b4f_0 - - libllvm15=15.0.7=hbedff68_4 + - libhwloc=2.9.3=default_h24e0189_1009 + - libllvm15=15.0.7=he4b1e75_3 - libnghttp2=1.58.0=h64cf6d3_0 - libssh2=1.11.0=hd019ec5_0 - libtiff=4.6.0=h684deea_2 @@ -144,7 +143,7 @@ dependencies: - 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=hbedff68_4 + - llvm-tools=15.0.7=he4b1e75_3 - m4rie=20150908=h3f75d11_1001 - mpc=1.3.1=h81bd1dd_0 - mpfi=1.5.4=h52b28e3_1001 @@ -154,10 +153,10 @@ dependencies: - python=3.9.18=h07e1443_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 - - arb=2.9.0=0 - attrs=23.1.0=pyh71513ae_1 - backcall=0.2.0=pyh9f0ad1d_0 - boost-cpp=1.83.0=h07eb623_0 @@ -205,7 +204,7 @@ dependencies: - libcurl=8.5.0=h726d00d_0 - libgd=2.3.3=h0dceb68_9 - markupsafe=2.1.3=py39hdc70f33_1 - - maxima=5.46.0=h2b27fa8_0 + - maxima=5.47.0=h2b27fa8_0 - mistune=3.0.2=pyhd8ed1ab_0 - mpmath=1.3.0=pyhd8ed1ab_0 - munkres=1.1.4=pyh9f0ad1d_0 @@ -247,7 +246,7 @@ dependencies: - sagetex=3.6.1=pyhd8ed1ab_0 - setuptools=68.2.2=pyhd8ed1ab_0 - simplegeneric=0.8.1=py_1 - - singular=4.3.2.p8=h0d51a9f_0 + - 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 @@ -311,7 +310,7 @@ dependencies: - pyproject-api=1.6.1=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - pytz-deprecation-shim=0.1.0.post0=py39h6e9494a_4 - - referencing=0.31.1=pyhd8ed1ab_0 + - referencing=0.32.0=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - sagemath-db-conway-polynomials=0.5.0=h033912b_1 - sympy=1.12=pypyh9d50eac_103 @@ -321,6 +320,7 @@ dependencies: - urllib3=2.1.0=pyhd8ed1ab_0 - virtualenv=20.25.0=pyhd8ed1ab_0 - argon2-cffi-bindings=21.2.0=py39hdc70f33_4 + - 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 @@ -341,7 +341,7 @@ dependencies: - requests=2.31.0=pyhd8ed1ab_0 - setuptools-scm=8.0.4=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 - - suitesparse=5.10.1=h7aff33d_1 + - 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 @@ -349,6 +349,7 @@ dependencies: - cvxopt=1.3.2=py39h2a3e123_1 - fpylll=0.6.0=py39hec15948_1 - 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 @@ -365,6 +366,7 @@ dependencies: - jsonschema-with-format-nongpl=4.20.0=pyhd8ed1ab_0 - matplotlib-base=3.8.2=py39h7070ae8_0 - nbformat=5.9.2=pyhd8ed1ab_0 + - rw=0.9=h10d778d_1 - clang_impl_osx-64=15.0.7=h03d6864_6 - ipympl=0.9.3=pyhd8ed1ab_0 - jupyter-jsmol=2022.1.0=pyhd8ed1ab_0 diff --git a/src/environment-dev-3.10-linux-aarch64.yml b/src/environment-dev-3.10-linux-aarch64.yml index b68882a87ed..229c5c2cad2 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: 48864fd96138ac5445233bdfef587424fea88152264cef70f79c5dfa83cc0d1b +# input_hash: 06eb8840780950cd703c6711a71d0de3ce251612e902305606693766c987fa7d channels: - conda-forge @@ -12,7 +12,7 @@ dependencies: - 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.39.2=h652cbe9_0 + - gh=2.40.0=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 @@ -81,7 +81,7 @@ dependencies: - m4=1.4.18=h516909a_1001 - make=4.3=h309ac5b_1 - metis=5.1.0=h2f0025b_1007 - - nauty=2.8.6=h31becfc_0 + - nauty=2.8.8=h31becfc_0 - ncurses=6.4=h0425590_2 - ninja=1.11.1=hdd96247_0 - openssl=3.2.0=h31becfc_1 @@ -152,12 +152,12 @@ dependencies: - gfortran_impl_linux-aarch64=12.3.0=hb7244be_3 - gxx_impl_linux-aarch64=12.3.0=hcde2664_3 - krb5=1.20.1=h113d92e_0 - - libflint=2.9.0=hd3470fa_ntl_100 + - 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=254=h31becfc_0 + - libudev1=255=h31becfc_0 - llvm-openmp=17.0.6=h8b0cb96_0 - m4ri=20140914=h75e8696_1005 - mpc=1.3.1=hf4c8f4c_0 @@ -174,7 +174,6 @@ dependencies: - alabaster=0.7.13=pyhd8ed1ab_0 - appdirs=1.4.4=pyh9f0ad1d_0 - appnope=0.1.3=pyhd8ed1ab_0 - - arb=2.23.0=h37d5dab_0 - attrs=23.1.0=pyh71513ae_1 - automake=1.16.5=pl5321h8af1aa0_0 - backcall=0.2.0=pyh9f0ad1d_0 @@ -199,7 +198,7 @@ dependencies: - defusedxml=0.7.1=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - docutils=0.20.1=py310hbbe02a8_3 - - eclib=20230424=h0bc7b0f_0 + - eclib=20230424=he26bab5_1 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 - exceptiongroup=1.2.0=pyhd8ed1ab_0 @@ -235,7 +234,7 @@ dependencies: - libwebp=1.2.4=h7bdf6e5_1 - m4rie=20150908=h75e8696_1001 - markupsafe=2.1.3=py310h7c1f4a2_1 - - maxima=5.46.0=h6475f26_0 + - maxima=5.47.0=h6475f26_0 - mistune=3.0.2=pyhd8ed1ab_0 - more-itertools=10.1.0=pyhd8ed1ab_0 - mpmath=1.3.0=pyhd8ed1ab_0 @@ -286,7 +285,7 @@ dependencies: - send2trash=1.8.2=pyh41d4057_0 - setuptools=68.2.2=pyhd8ed1ab_0 - simplegeneric=0.8.1=py_1 - - singular=4.2.1.p3=h3d4c4c6_2 + - 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 @@ -367,7 +366,7 @@ dependencies: - pytest=7.4.3=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - pytz-deprecation-shim=0.1.0.post0=py310h4c7bcd0_4 - - referencing=0.31.1=pyhd8ed1ab_0 + - referencing=0.32.0=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - ruamel.yaml=0.18.5=py310hb299538_0 - sagemath-db-conway-polynomials=0.5.0=h4fd8a4c_1 @@ -421,7 +420,7 @@ dependencies: - isoduration=20.11.0=pyhd8ed1ab_0 - jsonschema=4.20.0=pyhd8ed1ab_0 - jupyter_client=8.6.0=pyhd8ed1ab_0 - - linbox=1.6.3=h31716a8_7 + - linbox=1.6.3=h681a5ee_8 - lsprotocol=2023.0.0=pyhd8ed1ab_0 - openjdk=17.0.3=h1a274e0_5 - pango=1.50.14=h1f1e9b3_0 diff --git a/src/environment-dev-3.10-linux.yml b/src/environment-dev-3.10-linux.yml index 41d6eb0bf84..533be8708d9 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: 5bc4148db744849f9c0e7ef4edf4500d249bf081057f364d8fe45e3d031962f0 +# input_hash: 937bf2c50f1c26aac7a6fc76f05c81b042c0312271f6d5e31e91f186497024aa channels: - conda-forge @@ -12,7 +12,7 @@ dependencies: - 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.39.2=ha8f183a_0 + - gh=2.40.0=ha8f183a_0 - kernel-headers_linux-64=2.6.32=he073ed8_16 - ld_impl_linux-64=2.40=h41732ed_0 - libboost-headers=1.83.0=ha770c72_0 @@ -84,9 +84,9 @@ dependencies: - lz4-c=1.9.4=hcb278e6_0 - m4=1.4.18=h516909a_1001 - make=4.3=hd18ef5c_1 - - metis=5.1.0=h59595ed_1007 + - metis=5.1.1=h59595ed_2 - mpg123=1.32.3=h59595ed_0 - - nauty=2.8.6=hd590300_0 + - nauty=2.8.8=hd590300_0 - ncurses=6.4=h59595ed_2 - ninja=1.11.1=h924138e_0 - nspr=4.35=h27087fc_0 @@ -162,7 +162,6 @@ dependencies: - gfan=0.6.2=hb86e20a_1003 - gfortran_impl_linux-64=12.3.0=hfcedea8_3 - gxx_impl_linux-64=12.3.0=he2b93b0_3 - - igraph=0.7.1=0 - krb5=1.21.2=h659d440_0 - libboost=1.83.0=h6fcfa73_0 - libflint=3.0.1=h5f2e117_ntl_100 @@ -173,7 +172,7 @@ dependencies: - libopenblas=0.3.25=pthreads_h413a1c8_0 - libsndfile=1.2.2=hc60ed4a_1 - libtiff=4.6.0=ha9c0a0a_2 - - libudev1=254=h3f72095_0 + - libudev1=255=h3f72095_0 - llvm-openmp=17.0.6=h4dfa4b3_0 - m4ri=20140914=h7ca028e_1005 - mpc=1.3.1=hfe3b2da_0 @@ -197,7 +196,6 @@ dependencies: - alabaster=0.7.13=pyhd8ed1ab_0 - appdirs=1.4.4=pyh9f0ad1d_0 - appnope=0.1.3=pyhd8ed1ab_0 - - arb=2.9.0=0 - attrs=23.1.0=pyh71513ae_1 - automake=1.16.5=pl5321ha770c72_0 - backcall=0.2.0=pyh9f0ad1d_0 @@ -259,11 +257,11 @@ dependencies: - libcurl=8.4.0=hca28451_0 - libfido2=1.14.0=h4446dcb_0 - libpq=16.1=hfc447b1_0 - - libsystemd0=254=h3516f8a_0 + - libsystemd0=255=h3516f8a_0 - libwebp=1.3.2=h658648e_1 - m4rie=20150908=h7ca028e_1001 - markupsafe=2.1.3=py310h2372a71_1 - - maxima=5.46.0=hed6455c_0 + - maxima=5.47.0=hed6455c_0 - mistune=3.0.2=pyhd8ed1ab_0 - more-itertools=10.1.0=pyhd8ed1ab_0 - mpmath=1.3.0=pyhd8ed1ab_0 @@ -309,13 +307,12 @@ dependencies: - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - rpds-py=0.13.2=py310hcb5633a_0 - ruamel.yaml.clib=0.2.7=py310h2372a71_2 - - rw=0.8=h516909a_1001 - 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 - - singular=4.3.2.p8=h33f5c3f_0 + - 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 @@ -323,7 +320,7 @@ dependencies: - soupsieve=2.5=pyhd8ed1ab_1 - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_0 - sympow=2.023.6=hc6ab17c_3 - - tbb=2021.10.0=h00ab1b0_2 + - tbb=2021.11.0=h00ab1b0_0 - toml=0.10.2=pyhd8ed1ab_0 - tomli=2.0.1=pyhd8ed1ab_0 - tomlkit=0.12.3=pyha770c72_0 @@ -404,7 +401,7 @@ dependencies: - pytest=7.4.3=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - pytz-deprecation-shim=0.1.0.post0=py310hff52083_4 - - referencing=0.31.1=pyhd8ed1ab_0 + - referencing=0.32.0=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - ruamel.yaml=0.18.5=py310h2372a71_0 - sagemath-db-conway-polynomials=0.5.0=ha878542_1 @@ -418,6 +415,7 @@ dependencies: - xorg-libxi=1.7.10=h7f98852_0 - annotated-types=0.6.0=pyhd8ed1ab_0 - argon2-cffi-bindings=21.2.0=py310h2372a71_4 + - 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 @@ -445,7 +443,7 @@ dependencies: - requests=2.31.0=pyhd8ed1ab_0 - setuptools-scm=8.0.4=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 - - suitesparse=5.10.1=h9e50725_1 + - 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 @@ -456,6 +454,7 @@ dependencies: - fpylll=0.6.0=py310h7e26f94_1 - giac=1.9.0.21=h673759e_1 - gst-plugins-base=1.22.7=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 @@ -482,6 +481,7 @@ dependencies: - pygls=1.2.1=pyhd8ed1ab_0 - qt-main=5.15.8=h82b777d_17 - r-base=4.3.2=h93585b2_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 diff --git a/src/environment-dev-3.10-macos-arm64.yml b/src/environment-dev-3.10-macos-arm64.yml index 0e1fd91dbc3..4c7778424a8 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: da512c54fdc4832153922ce4704f24b6967568f5b0355efddc29fd6f256fc720 +# input_hash: 3e98179953aa0138b16060bc1cf30cda5dbb75473a482441068a70ab6fce6e95 channels: - conda-forge @@ -16,7 +16,7 @@ dependencies: - font-ttf-source-code-pro=2.038=h77eed37_0 - font-ttf-ubuntu=0.83=h77eed37_1 - fribidi=1.0.10=h27ca646_0 - - gh=2.39.2=h75b854d_0 + - gh=2.40.0=h75b854d_0 - giflib=5.2.1=h1a8c8d9_3 - jpeg=9e=h1a8c8d9_3 - libatomic_ops=7.6.14=h1a8c8d9_0 @@ -37,8 +37,7 @@ dependencies: - m4=1.4.18=h642e427_1001 - make=4.3=he57ea6c_1 - mathjax=3.2.2=hce30654_0 - - metis=5.1.0=h13dd4ca_1007 - - nauty=2.8.6=h93a5062_0 + - nauty=2.8.8=h93a5062_0 - palp=2.20=h27ca646_0 - pandoc=3.1.3=hce30654_0 - pari-elldata=0.0.20161017=0 @@ -82,6 +81,7 @@ dependencies: - libsqlite=3.44.2=h091b4b1_0 - libxcb=1.13=h9b22ae9_1004 - lrcalc=2.1=hb7217d7_5 + - metis=5.1.1=h965bd2d_2 - ncurses=6.4=h463b476_2 - ninja=1.11.1=hffc8910_0 - openjdk=21.0.1=hed44d8b_0 @@ -137,7 +137,7 @@ dependencies: - krb5=1.20.1=h69eda48_0 - lcms2=2.15=h481adae_0 - libbrial=1.2.12=ha7f5006_1 - - libflint=2.9.0=h173eafc_ntl_100 + - 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 @@ -154,7 +154,6 @@ dependencies: - alabaster=0.7.13=pyhd8ed1ab_0 - appdirs=1.4.4=pyh9f0ad1d_0 - appnope=0.1.3=pyhd8ed1ab_0 - - arb=2.23.0=he5401aa_0 - attrs=23.1.0=pyh71513ae_1 - backcall=0.2.0=pyh9f0ad1d_0 - brial=1.2.12=pyh694c41f_1 @@ -177,7 +176,7 @@ dependencies: - defusedxml=0.7.1=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - docutils=0.20.1=py310hbe9552e_3 - - eclib=20230424=haeb5157_0 + - eclib=20230424=h8fe5691_1 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 - exceptiongroup=1.2.0=pyhd8ed1ab_0 @@ -257,7 +256,7 @@ dependencies: - sagetex=3.6.1=pyhd8ed1ab_0 - setuptools=68.2.2=pyhd8ed1ab_0 - simplegeneric=0.8.1=py_1 - - singular=4.2.1.p3=h3b80c97_2 + - 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 @@ -331,7 +330,7 @@ dependencies: - pytest=7.4.3=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - pytz-deprecation-shim=0.1.0.post0=py310hbe9552e_4 - - referencing=0.31.1=pyhd8ed1ab_0 + - referencing=0.32.0=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - ruamel.yaml=0.18.5=py310hd125d64_0 - sagemath-db-conway-polynomials=0.5.0=h4653dfc_1 @@ -370,7 +369,7 @@ dependencies: - requests=2.31.0=pyhd8ed1ab_0 - setuptools-scm=8.0.4=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 - - suitesparse=5.10.1=h7cd81ec_1 + - 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 @@ -386,7 +385,7 @@ dependencies: - jsonschema=4.20.0=pyhd8ed1ab_0 - jupyter_client=8.6.0=pyhd8ed1ab_0 - keyring=24.3.0=py310hbe9552e_0 - - linbox=1.6.3=h549c411_7 + - linbox=1.6.3=h380be0f_8 - lsprotocol=2023.0.0=pyhd8ed1ab_0 - pydantic=2.5.2=pyhd8ed1ab_0 - 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 f5f0a7b4a3e..2029d0239d1 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: 4cbaa35649213b9ca7eee298842561a51f8a81b5f7f77a4d2afed3dec014eab2 +# input_hash: 03e8926cb6289268633e37f32a8605552bec75b57159db0cf7bd2c183e2a307a channels: - conda-forge @@ -16,7 +16,7 @@ dependencies: - font-ttf-source-code-pro=2.038=h77eed37_0 - font-ttf-ubuntu=0.83=h77eed37_1 - fribidi=1.0.10=hbcb3906_0 - - gh=2.39.2=h990441c_0 + - gh=2.40.0=h990441c_0 - giflib=5.2.1=hb7f2c08_3 - icu=73.2=hf5e326d_0 - libatomic_ops=7.6.14=hb7f2c08_0 @@ -39,8 +39,7 @@ dependencies: - m4=1.4.18=haf1e3a3_1001 - make=4.3=h22f3db7_1 - mathjax=3.2.2=h694c41f_0 - - metis=5.1.0=he965462_1007 - - nauty=2.7.2=h0d85af4_0 + - nauty=2.8.8=h10d778d_0 - palp=2.20=hbcb3906_0 - pari-elldata=0.0.20161017=0 - pari-galdata=0.0.20180411=0 @@ -52,11 +51,9 @@ dependencies: - pthread-stubs=0.4=hc929b4f_1001 - python_abi=3.10=4_cp310 - rhash=1.4.4=h0dc2134_0 - - rw=0.7=1 - sagemath-db-combinatorial-designs=20140630=1 - sagemath-db-graphs=20210214=hd8ed1ab_0 - sagemath-db-polytopes=20170220=1 - - tbb=2021.10.0=h1c7c39f_2 - three.js=122=hd8ed1ab_2 - tzdata=2023c=h71feb2d_0 - xorg-libxau=1.0.11=h0dc2134_0 @@ -82,8 +79,9 @@ dependencies: - libpng=1.6.39=ha978bb4_0 - libsqlite=3.44.2=h92b6c6a_0 - libxcb=1.15=hb7f2c08_0 - - libxml2=2.12.2=hc0ae0f7_0 + - libxml2=2.11.6=hc0ae0f7_0 - lrcalc=2.1=hf0c8a7f_5 + - metis=5.1.1=h93d8f39_2 - ncurses=6.4=h93d8f39_2 - ninja=1.11.1=hb8565cd_0 - openjdk=21.0.1=hf4d7fad_0 @@ -119,7 +117,8 @@ dependencies: - libgfortran=5.0.0=13_2_0_h97931a8_1 - libglib=2.78.1=h6d9ecee_0 - libhomfly=1.02r6=hc929b4f_0 - - libllvm15=15.0.7=hbedff68_4 + - libhwloc=2.9.3=default_h24e0189_1009 + - libllvm15=15.0.7=he4b1e75_3 - libnghttp2=1.58.0=h64cf6d3_0 - libssh2=1.11.0=hd019ec5_0 - libtiff=4.6.0=h684deea_2 @@ -147,7 +146,7 @@ dependencies: - 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=hbedff68_4 + - llvm-tools=15.0.7=he4b1e75_3 - m4rie=20150908=h3f75d11_1001 - mpc=1.3.1=h81bd1dd_0 - mpfi=1.5.4=h52b28e3_1001 @@ -157,10 +156,10 @@ dependencies: - python=3.10.13=h00d2728_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 - - arb=2.9.0=0 - attrs=23.1.0=pyh71513ae_1 - backcall=0.2.0=pyh9f0ad1d_0 - boost-cpp=1.83.0=h07eb623_0 @@ -213,7 +212,7 @@ dependencies: - libcurl=8.5.0=h726d00d_0 - libgd=2.3.3=h0dceb68_9 - markupsafe=2.1.3=py310h6729b98_1 - - maxima=5.46.0=h2b27fa8_0 + - maxima=5.47.0=h2b27fa8_0 - mistune=3.0.2=pyhd8ed1ab_0 - more-itertools=10.1.0=pyhd8ed1ab_0 - mpmath=1.3.0=pyhd8ed1ab_0 @@ -264,7 +263,7 @@ dependencies: - sagetex=3.6.1=pyhd8ed1ab_0 - setuptools=68.2.2=pyhd8ed1ab_0 - simplegeneric=0.8.1=py_1 - - singular=4.3.2.p8=h0d51a9f_0 + - 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 @@ -337,7 +336,7 @@ dependencies: - pytest=7.4.3=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - pytz-deprecation-shim=0.1.0.post0=py310h2ec42d9_4 - - referencing=0.31.1=pyhd8ed1ab_0 + - referencing=0.32.0=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - ruamel.yaml=0.18.5=py310hb372a2b_0 - sagemath-db-conway-polynomials=0.5.0=h033912b_1 @@ -349,6 +348,7 @@ dependencies: - virtualenv=20.25.0=pyhd8ed1ab_0 - annotated-types=0.6.0=pyhd8ed1ab_0 - argon2-cffi-bindings=21.2.0=py310h6729b98_4 + - 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 @@ -374,7 +374,7 @@ dependencies: - requests=2.31.0=pyhd8ed1ab_0 - setuptools-scm=8.0.4=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 - - suitesparse=5.10.1=h7aff33d_1 + - 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 @@ -384,6 +384,7 @@ dependencies: - ensureconda=1.4.3=pyhd8ed1ab_0 - fpylll=0.6.0=py310h2acdeac_1 - 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 @@ -405,6 +406,7 @@ dependencies: - matplotlib-base=3.8.2=py310hec49e92_0 - nbformat=5.9.2=pyhd8ed1ab_0 - pygls=1.2.1=pyhd8ed1ab_0 + - rw=0.9=h10d778d_1 - clang_impl_osx-64=15.0.7=h03d6864_6 - conda-lock=2.5.1=pyhd8ed1ab_0 - ipympl=0.9.3=pyhd8ed1ab_0 diff --git a/src/environment-dev-3.11-linux-aarch64.yml b/src/environment-dev-3.11-linux-aarch64.yml index 2f29aaf8816..33798963467 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: 2a8db72c648cf7486dc11df729d6aace190429f3744ef9e39b103d4474eaaa06 +# input_hash: f2c75493990434197a14e70e04ad96318fbf3850e1af6a9c75b66c2c0c328c17 channels: - conda-forge @@ -12,7 +12,7 @@ dependencies: - 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.39.2=h652cbe9_0 + - gh=2.40.0=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 @@ -81,7 +81,7 @@ dependencies: - m4=1.4.18=h516909a_1001 - make=4.3=h309ac5b_1 - metis=5.1.0=h2f0025b_1007 - - nauty=2.8.6=h31becfc_0 + - nauty=2.8.8=h31becfc_0 - ncurses=6.4=h0425590_2 - ninja=1.11.1=hdd96247_0 - openssl=3.2.0=h31becfc_1 @@ -152,12 +152,12 @@ dependencies: - gfortran_impl_linux-aarch64=12.3.0=hb7244be_3 - gxx_impl_linux-aarch64=12.3.0=hcde2664_3 - krb5=1.20.1=h113d92e_0 - - libflint=2.9.0=hd3470fa_ntl_100 + - 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=254=h31becfc_0 + - libudev1=255=h31becfc_0 - llvm-openmp=17.0.6=h8b0cb96_0 - m4ri=20140914=h75e8696_1005 - mpc=1.3.1=hf4c8f4c_0 @@ -174,7 +174,6 @@ dependencies: - alabaster=0.7.13=pyhd8ed1ab_0 - appdirs=1.4.4=pyh9f0ad1d_0 - appnope=0.1.3=pyhd8ed1ab_0 - - arb=2.23.0=h37d5dab_0 - attrs=23.1.0=pyh71513ae_1 - automake=1.16.5=pl5321h8af1aa0_0 - backcall=0.2.0=pyh9f0ad1d_0 @@ -199,7 +198,7 @@ dependencies: - defusedxml=0.7.1=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - docutils=0.20.1=py311hfecb2dc_3 - - eclib=20230424=h0bc7b0f_0 + - eclib=20230424=he26bab5_1 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 - exceptiongroup=1.2.0=pyhd8ed1ab_0 @@ -235,7 +234,7 @@ dependencies: - libwebp=1.2.4=h7bdf6e5_1 - m4rie=20150908=h75e8696_1001 - markupsafe=2.1.3=py311hc8f2f60_1 - - maxima=5.46.0=h6475f26_0 + - maxima=5.47.0=h6475f26_0 - mistune=3.0.2=pyhd8ed1ab_0 - more-itertools=10.1.0=pyhd8ed1ab_0 - mpmath=1.3.0=pyhd8ed1ab_0 @@ -286,7 +285,7 @@ dependencies: - send2trash=1.8.2=pyh41d4057_0 - setuptools=68.2.2=pyhd8ed1ab_0 - simplegeneric=0.8.1=py_1 - - singular=4.2.1.p3=h3d4c4c6_2 + - 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 @@ -366,7 +365,7 @@ dependencies: - pytest=7.4.3=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - pytz-deprecation-shim=0.1.0.post0=py311hec3470c_4 - - referencing=0.31.1=pyhd8ed1ab_0 + - referencing=0.32.0=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - ruamel.yaml=0.18.5=py311hcd402e7_0 - sagemath-db-conway-polynomials=0.5.0=h4fd8a4c_1 @@ -420,7 +419,7 @@ dependencies: - isoduration=20.11.0=pyhd8ed1ab_0 - jsonschema=4.20.0=pyhd8ed1ab_0 - jupyter_client=8.6.0=pyhd8ed1ab_0 - - linbox=1.6.3=h31716a8_7 + - linbox=1.6.3=h681a5ee_8 - lsprotocol=2023.0.0=pyhd8ed1ab_0 - openjdk=17.0.3=h1a274e0_5 - pango=1.50.14=h1f1e9b3_0 diff --git a/src/environment-dev-3.11-linux.yml b/src/environment-dev-3.11-linux.yml index bf582188a56..7fdf21ff229 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: 71b007ba5051d45e788a390c956f2f4877288f81611176e7eaf2e43c9b0b568c +# input_hash: f14a38ebd4cc4929e920d9e35887a120374d21ef464574c1abf2270c534d2de4 channels: - conda-forge @@ -12,7 +12,7 @@ dependencies: - 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.39.2=ha8f183a_0 + - gh=2.40.0=ha8f183a_0 - kernel-headers_linux-64=2.6.32=he073ed8_16 - ld_impl_linux-64=2.40=h41732ed_0 - libboost-headers=1.83.0=ha770c72_0 @@ -84,9 +84,9 @@ dependencies: - lz4-c=1.9.4=hcb278e6_0 - m4=1.4.18=h516909a_1001 - make=4.3=hd18ef5c_1 - - metis=5.1.0=h59595ed_1007 + - metis=5.1.1=h59595ed_2 - mpg123=1.32.3=h59595ed_0 - - nauty=2.8.6=hd590300_0 + - nauty=2.8.8=hd590300_0 - ncurses=6.4=h59595ed_2 - ninja=1.11.1=h924138e_0 - nspr=4.35=h27087fc_0 @@ -162,7 +162,6 @@ dependencies: - gfan=0.6.2=hb86e20a_1003 - gfortran_impl_linux-64=12.3.0=hfcedea8_3 - gxx_impl_linux-64=12.3.0=he2b93b0_3 - - igraph=0.7.1=0 - krb5=1.21.2=h659d440_0 - libboost=1.83.0=h6fcfa73_0 - libflint=3.0.1=h5f2e117_ntl_100 @@ -173,7 +172,7 @@ dependencies: - libopenblas=0.3.25=pthreads_h413a1c8_0 - libsndfile=1.2.2=hc60ed4a_1 - libtiff=4.6.0=ha9c0a0a_2 - - libudev1=254=h3f72095_0 + - libudev1=255=h3f72095_0 - llvm-openmp=17.0.6=h4dfa4b3_0 - m4ri=20140914=h7ca028e_1005 - mpc=1.3.1=hfe3b2da_0 @@ -197,7 +196,6 @@ dependencies: - alabaster=0.7.13=pyhd8ed1ab_0 - appdirs=1.4.4=pyh9f0ad1d_0 - appnope=0.1.3=pyhd8ed1ab_0 - - arb=2.9.0=0 - attrs=23.1.0=pyh71513ae_1 - automake=1.16.5=pl5321ha770c72_0 - backcall=0.2.0=pyh9f0ad1d_0 @@ -259,11 +257,11 @@ dependencies: - libcurl=8.4.0=hca28451_0 - libfido2=1.14.0=h4446dcb_0 - libpq=16.1=hfc447b1_0 - - libsystemd0=254=h3516f8a_0 + - libsystemd0=255=h3516f8a_0 - libwebp=1.3.2=h658648e_1 - m4rie=20150908=h7ca028e_1001 - markupsafe=2.1.3=py311h459d7ec_1 - - maxima=5.46.0=hed6455c_0 + - maxima=5.47.0=hed6455c_0 - mistune=3.0.2=pyhd8ed1ab_0 - more-itertools=10.1.0=pyhd8ed1ab_0 - mpmath=1.3.0=pyhd8ed1ab_0 @@ -309,13 +307,12 @@ dependencies: - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - rpds-py=0.13.2=py311h46250e7_0 - ruamel.yaml.clib=0.2.7=py311h459d7ec_2 - - rw=0.8=h516909a_1001 - 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 - - singular=4.3.2.p8=h33f5c3f_0 + - 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 @@ -323,7 +320,7 @@ dependencies: - soupsieve=2.5=pyhd8ed1ab_1 - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_0 - sympow=2.023.6=hc6ab17c_3 - - tbb=2021.10.0=h00ab1b0_2 + - tbb=2021.11.0=h00ab1b0_0 - toml=0.10.2=pyhd8ed1ab_0 - tomli=2.0.1=pyhd8ed1ab_0 - tomlkit=0.12.3=pyha770c72_0 @@ -403,7 +400,7 @@ dependencies: - pytest=7.4.3=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - pytz-deprecation-shim=0.1.0.post0=py311h38be061_4 - - referencing=0.31.1=pyhd8ed1ab_0 + - referencing=0.32.0=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - ruamel.yaml=0.18.5=py311h459d7ec_0 - sagemath-db-conway-polynomials=0.5.0=ha878542_1 @@ -417,6 +414,7 @@ dependencies: - xorg-libxi=1.7.10=h7f98852_0 - annotated-types=0.6.0=pyhd8ed1ab_0 - argon2-cffi-bindings=21.2.0=py311h459d7ec_4 + - 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 @@ -444,7 +442,7 @@ dependencies: - requests=2.31.0=pyhd8ed1ab_0 - setuptools-scm=8.0.4=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 - - suitesparse=5.10.1=h9e50725_1 + - 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 @@ -455,6 +453,7 @@ dependencies: - fpylll=0.6.0=py311hcfae7cf_1 - giac=1.9.0.21=h673759e_1 - gst-plugins-base=1.22.7=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 @@ -481,6 +480,7 @@ dependencies: - pygls=1.2.1=pyhd8ed1ab_0 - qt-main=5.15.8=h82b777d_17 - r-base=4.3.2=h93585b2_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 diff --git a/src/environment-dev-3.11-macos-arm64.yml b/src/environment-dev-3.11-macos-arm64.yml index 248777430e0..7e6ed67d0ee 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: 414dc07765c9e8aebcc90fc79bdfa8061521583c2d2bb0ccb506f79f76dbd924 +# input_hash: 14154c003a0bef4ff2e44893168c4265fa4723a26d51a15f7c89dfcfb97d5254 channels: - conda-forge @@ -16,7 +16,7 @@ dependencies: - font-ttf-source-code-pro=2.038=h77eed37_0 - font-ttf-ubuntu=0.83=h77eed37_1 - fribidi=1.0.10=h27ca646_0 - - gh=2.39.2=h75b854d_0 + - gh=2.40.0=h75b854d_0 - giflib=5.2.1=h1a8c8d9_3 - jpeg=9e=h1a8c8d9_3 - libatomic_ops=7.6.14=h1a8c8d9_0 @@ -37,8 +37,7 @@ dependencies: - m4=1.4.18=h642e427_1001 - make=4.3=he57ea6c_1 - mathjax=3.2.2=hce30654_0 - - metis=5.1.0=h13dd4ca_1007 - - nauty=2.8.6=h93a5062_0 + - nauty=2.8.8=h93a5062_0 - palp=2.20=h27ca646_0 - pandoc=3.1.3=hce30654_0 - pari-elldata=0.0.20161017=0 @@ -82,6 +81,7 @@ dependencies: - libsqlite=3.44.2=h091b4b1_0 - libxcb=1.13=h9b22ae9_1004 - lrcalc=2.1=hb7217d7_5 + - metis=5.1.1=h965bd2d_2 - ncurses=6.4=h463b476_2 - ninja=1.11.1=hffc8910_0 - openjdk=21.0.1=hed44d8b_0 @@ -137,7 +137,7 @@ dependencies: - krb5=1.20.1=h69eda48_0 - lcms2=2.15=h481adae_0 - libbrial=1.2.12=ha7f5006_1 - - libflint=2.9.0=h173eafc_ntl_100 + - 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 @@ -154,7 +154,6 @@ dependencies: - alabaster=0.7.13=pyhd8ed1ab_0 - appdirs=1.4.4=pyh9f0ad1d_0 - appnope=0.1.3=pyhd8ed1ab_0 - - arb=2.23.0=he5401aa_0 - attrs=23.1.0=pyh71513ae_1 - backcall=0.2.0=pyh9f0ad1d_0 - brial=1.2.12=pyh694c41f_1 @@ -177,7 +176,7 @@ dependencies: - defusedxml=0.7.1=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - docutils=0.20.1=py311h267d04e_3 - - eclib=20230424=haeb5157_0 + - eclib=20230424=h8fe5691_1 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 - exceptiongroup=1.2.0=pyhd8ed1ab_0 @@ -257,7 +256,7 @@ dependencies: - sagetex=3.6.1=pyhd8ed1ab_0 - setuptools=68.2.2=pyhd8ed1ab_0 - simplegeneric=0.8.1=py_1 - - singular=4.2.1.p3=h3b80c97_2 + - 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 @@ -330,7 +329,7 @@ dependencies: - pytest=7.4.3=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - pytz-deprecation-shim=0.1.0.post0=py311h267d04e_4 - - referencing=0.31.1=pyhd8ed1ab_0 + - referencing=0.32.0=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - ruamel.yaml=0.18.5=py311h05b510d_0 - sagemath-db-conway-polynomials=0.5.0=h4653dfc_1 @@ -369,7 +368,7 @@ dependencies: - requests=2.31.0=pyhd8ed1ab_0 - setuptools-scm=8.0.4=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 - - suitesparse=5.10.1=h7cd81ec_1 + - 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 @@ -385,7 +384,7 @@ dependencies: - jsonschema=4.20.0=pyhd8ed1ab_0 - jupyter_client=8.6.0=pyhd8ed1ab_0 - keyring=24.3.0=py311h267d04e_0 - - linbox=1.6.3=h549c411_7 + - linbox=1.6.3=h380be0f_8 - lsprotocol=2023.0.0=pyhd8ed1ab_0 - pydantic=2.5.2=pyhd8ed1ab_0 - 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 d7f100587df..10dc13eceef 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: d057f6316811f089948bc1612a5b13aadec653c8a34e0de381830eca3a68974c +# input_hash: d59828b446ea1238f7ebb3646c012d7ac4f7adff4d6478e2e9623ba63af5b978 channels: - conda-forge @@ -16,7 +16,7 @@ dependencies: - font-ttf-source-code-pro=2.038=h77eed37_0 - font-ttf-ubuntu=0.83=h77eed37_1 - fribidi=1.0.10=hbcb3906_0 - - gh=2.39.2=h990441c_0 + - gh=2.40.0=h990441c_0 - giflib=5.2.1=hb7f2c08_3 - icu=73.2=hf5e326d_0 - libatomic_ops=7.6.14=hb7f2c08_0 @@ -39,8 +39,7 @@ dependencies: - m4=1.4.18=haf1e3a3_1001 - make=4.3=h22f3db7_1 - mathjax=3.2.2=h694c41f_0 - - metis=5.1.0=he965462_1007 - - nauty=2.7.2=h0d85af4_0 + - nauty=2.8.8=h10d778d_0 - palp=2.20=hbcb3906_0 - pari-elldata=0.0.20161017=0 - pari-galdata=0.0.20180411=0 @@ -52,11 +51,9 @@ dependencies: - pthread-stubs=0.4=hc929b4f_1001 - python_abi=3.11=4_cp311 - rhash=1.4.4=h0dc2134_0 - - rw=0.7=1 - sagemath-db-combinatorial-designs=20140630=1 - sagemath-db-graphs=20210214=hd8ed1ab_0 - sagemath-db-polytopes=20170220=1 - - tbb=2021.10.0=h1c7c39f_2 - three.js=122=hd8ed1ab_2 - tzdata=2023c=h71feb2d_0 - xorg-libxau=1.0.11=h0dc2134_0 @@ -82,8 +79,9 @@ dependencies: - libpng=1.6.39=ha978bb4_0 - libsqlite=3.44.2=h92b6c6a_0 - libxcb=1.15=hb7f2c08_0 - - libxml2=2.12.2=hc0ae0f7_0 + - libxml2=2.11.6=hc0ae0f7_0 - lrcalc=2.1=hf0c8a7f_5 + - metis=5.1.1=h93d8f39_2 - ncurses=6.4=h93d8f39_2 - ninja=1.11.1=hb8565cd_0 - openjdk=21.0.1=hf4d7fad_0 @@ -119,7 +117,8 @@ dependencies: - libgfortran=5.0.0=13_2_0_h97931a8_1 - libglib=2.78.1=h6d9ecee_0 - libhomfly=1.02r6=hc929b4f_0 - - libllvm15=15.0.7=hbedff68_4 + - libhwloc=2.9.3=default_h24e0189_1009 + - libllvm15=15.0.7=he4b1e75_3 - libnghttp2=1.58.0=h64cf6d3_0 - libssh2=1.11.0=hd019ec5_0 - libtiff=4.6.0=h684deea_2 @@ -147,7 +146,7 @@ dependencies: - 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=hbedff68_4 + - llvm-tools=15.0.7=he4b1e75_3 - m4rie=20150908=h3f75d11_1001 - mpc=1.3.1=h81bd1dd_0 - mpfi=1.5.4=h52b28e3_1001 @@ -157,10 +156,10 @@ dependencies: - python=3.11.6=h30d4d87_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 - - arb=2.9.0=0 - attrs=23.1.0=pyh71513ae_1 - backcall=0.2.0=pyh9f0ad1d_0 - boost-cpp=1.83.0=h07eb623_0 @@ -213,7 +212,7 @@ dependencies: - libcurl=8.5.0=h726d00d_0 - libgd=2.3.3=h0dceb68_9 - markupsafe=2.1.3=py311h2725bcf_1 - - maxima=5.46.0=h2b27fa8_0 + - maxima=5.47.0=h2b27fa8_0 - mistune=3.0.2=pyhd8ed1ab_0 - more-itertools=10.1.0=pyhd8ed1ab_0 - mpmath=1.3.0=pyhd8ed1ab_0 @@ -264,7 +263,7 @@ dependencies: - sagetex=3.6.1=pyhd8ed1ab_0 - setuptools=68.2.2=pyhd8ed1ab_0 - simplegeneric=0.8.1=py_1 - - singular=4.3.2.p8=h0d51a9f_0 + - 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 @@ -336,7 +335,7 @@ dependencies: - pytest=7.4.3=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - pytz-deprecation-shim=0.1.0.post0=py311h6eed73b_4 - - referencing=0.31.1=pyhd8ed1ab_0 + - referencing=0.32.0=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - ruamel.yaml=0.18.5=py311he705e18_0 - sagemath-db-conway-polynomials=0.5.0=h033912b_1 @@ -348,6 +347,7 @@ dependencies: - virtualenv=20.25.0=pyhd8ed1ab_0 - annotated-types=0.6.0=pyhd8ed1ab_0 - argon2-cffi-bindings=21.2.0=py311h2725bcf_4 + - 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 @@ -373,7 +373,7 @@ dependencies: - requests=2.31.0=pyhd8ed1ab_0 - setuptools-scm=8.0.4=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 - - suitesparse=5.10.1=h7aff33d_1 + - 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 @@ -383,6 +383,7 @@ dependencies: - ensureconda=1.4.3=pyhd8ed1ab_0 - fpylll=0.6.0=py311hc863427_1 - 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 @@ -404,6 +405,7 @@ dependencies: - matplotlib-base=3.8.2=py311hd316c10_0 - nbformat=5.9.2=pyhd8ed1ab_0 - pygls=1.2.1=pyhd8ed1ab_0 + - rw=0.9=h10d778d_1 - clang_impl_osx-64=15.0.7=h03d6864_6 - conda-lock=2.5.1=pyhd8ed1ab_0 - ipympl=0.9.3=pyhd8ed1ab_0 diff --git a/src/environment-dev-3.9-linux-aarch64.yml b/src/environment-dev-3.9-linux-aarch64.yml index c72059c94f5..8761fc926d6 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: f0b92689da259f54bf52119e42dedc78b8e1266f6a854ba31c2a444a0a99a018 +# input_hash: bb419a4008e6bc78549c2286a6007692ae49a4a7f0fbf1d8a876e6387416acf2 channels: - conda-forge @@ -12,7 +12,7 @@ dependencies: - 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.39.2=h652cbe9_0 + - gh=2.40.0=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 @@ -81,7 +81,7 @@ dependencies: - m4=1.4.18=h516909a_1001 - make=4.3=h309ac5b_1 - metis=5.1.0=h2f0025b_1007 - - nauty=2.8.6=h31becfc_0 + - nauty=2.8.8=h31becfc_0 - ncurses=6.4=h0425590_2 - ninja=1.11.1=hdd96247_0 - openssl=3.2.0=h31becfc_1 @@ -152,12 +152,12 @@ dependencies: - gfortran_impl_linux-aarch64=12.3.0=hb7244be_3 - gxx_impl_linux-aarch64=12.3.0=hcde2664_3 - krb5=1.20.1=h113d92e_0 - - libflint=2.9.0=hd3470fa_ntl_100 + - 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=254=h31becfc_0 + - libudev1=255=h31becfc_0 - llvm-openmp=17.0.6=h8b0cb96_0 - m4ri=20140914=h75e8696_1005 - mpc=1.3.1=hf4c8f4c_0 @@ -174,7 +174,6 @@ dependencies: - alabaster=0.7.13=pyhd8ed1ab_0 - appdirs=1.4.4=pyh9f0ad1d_0 - appnope=0.1.3=pyhd8ed1ab_0 - - arb=2.23.0=h37d5dab_0 - attrs=23.1.0=pyh71513ae_1 - automake=1.16.5=pl5321h8af1aa0_0 - backcall=0.2.0=pyh9f0ad1d_0 @@ -199,7 +198,7 @@ dependencies: - defusedxml=0.7.1=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - docutils=0.20.1=py39ha65689a_3 - - eclib=20230424=h0bc7b0f_0 + - eclib=20230424=he26bab5_1 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 - exceptiongroup=1.2.0=pyhd8ed1ab_0 @@ -235,7 +234,7 @@ dependencies: - libwebp=1.2.4=h7bdf6e5_1 - m4rie=20150908=h75e8696_1001 - markupsafe=2.1.3=py39h7cc1d5f_1 - - maxima=5.46.0=h6475f26_0 + - maxima=5.47.0=h6475f26_0 - mistune=3.0.2=pyhd8ed1ab_0 - more-itertools=10.1.0=pyhd8ed1ab_0 - mpmath=1.3.0=pyhd8ed1ab_0 @@ -286,7 +285,7 @@ dependencies: - send2trash=1.8.2=pyh41d4057_0 - setuptools=68.2.2=pyhd8ed1ab_0 - simplegeneric=0.8.1=py_1 - - singular=4.2.1.p3=h3d4c4c6_2 + - 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 @@ -367,7 +366,7 @@ dependencies: - pytest=7.4.3=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - pytz-deprecation-shim=0.1.0.post0=py39h4420490_4 - - referencing=0.31.1=pyhd8ed1ab_0 + - referencing=0.32.0=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - ruamel.yaml=0.18.5=py39h898b7ef_0 - sagemath-db-conway-polynomials=0.5.0=h4fd8a4c_1 @@ -421,7 +420,7 @@ dependencies: - isoduration=20.11.0=pyhd8ed1ab_0 - jsonschema=4.20.0=pyhd8ed1ab_0 - jupyter_client=8.6.0=pyhd8ed1ab_0 - - linbox=1.6.3=h31716a8_7 + - linbox=1.6.3=h681a5ee_8 - lsprotocol=2023.0.0=pyhd8ed1ab_0 - openjdk=17.0.3=h1a274e0_5 - pango=1.50.14=h1f1e9b3_0 diff --git a/src/environment-dev-3.9-linux.yml b/src/environment-dev-3.9-linux.yml index efe44b2aaf2..e284b936e19 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: 1441df3f40f7dac37ff42a48d3fc3ee50541022e5161f67e19f2009adeca3983 +# input_hash: 8d747064aa4868367b63db918bb2631f1d27dad487f7e6b42e134004972e2dca channels: - conda-forge @@ -12,7 +12,7 @@ dependencies: - 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.39.2=ha8f183a_0 + - gh=2.40.0=ha8f183a_0 - kernel-headers_linux-64=2.6.32=he073ed8_16 - ld_impl_linux-64=2.40=h41732ed_0 - libboost-headers=1.83.0=ha770c72_0 @@ -84,9 +84,9 @@ dependencies: - lz4-c=1.9.4=hcb278e6_0 - m4=1.4.18=h516909a_1001 - make=4.3=hd18ef5c_1 - - metis=5.1.0=h59595ed_1007 + - metis=5.1.1=h59595ed_2 - mpg123=1.32.3=h59595ed_0 - - nauty=2.8.6=hd590300_0 + - nauty=2.8.8=hd590300_0 - ncurses=6.4=h59595ed_2 - ninja=1.11.1=h924138e_0 - nspr=4.35=h27087fc_0 @@ -162,7 +162,6 @@ dependencies: - gfan=0.6.2=hb86e20a_1003 - gfortran_impl_linux-64=12.3.0=hfcedea8_3 - gxx_impl_linux-64=12.3.0=he2b93b0_3 - - igraph=0.7.1=0 - krb5=1.21.2=h659d440_0 - libboost=1.83.0=h6fcfa73_0 - libflint=3.0.1=h5f2e117_ntl_100 @@ -173,7 +172,7 @@ dependencies: - libopenblas=0.3.25=pthreads_h413a1c8_0 - libsndfile=1.2.2=hc60ed4a_1 - libtiff=4.6.0=ha9c0a0a_2 - - libudev1=254=h3f72095_0 + - libudev1=255=h3f72095_0 - llvm-openmp=17.0.6=h4dfa4b3_0 - m4ri=20140914=h7ca028e_1005 - mpc=1.3.1=hfe3b2da_0 @@ -197,7 +196,6 @@ dependencies: - alabaster=0.7.13=pyhd8ed1ab_0 - appdirs=1.4.4=pyh9f0ad1d_0 - appnope=0.1.3=pyhd8ed1ab_0 - - arb=2.9.0=0 - attrs=23.1.0=pyh71513ae_1 - automake=1.16.5=pl5321ha770c72_0 - backcall=0.2.0=pyh9f0ad1d_0 @@ -259,11 +257,11 @@ dependencies: - libcurl=8.4.0=hca28451_0 - libfido2=1.14.0=h4446dcb_0 - libpq=16.1=hfc447b1_0 - - libsystemd0=254=h3516f8a_0 + - libsystemd0=255=h3516f8a_0 - libwebp=1.3.2=h658648e_1 - m4rie=20150908=h7ca028e_1001 - markupsafe=2.1.3=py39hd1e30aa_1 - - maxima=5.46.0=hed6455c_0 + - maxima=5.47.0=hed6455c_0 - mistune=3.0.2=pyhd8ed1ab_0 - more-itertools=10.1.0=pyhd8ed1ab_0 - mpmath=1.3.0=pyhd8ed1ab_0 @@ -309,13 +307,12 @@ dependencies: - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - rpds-py=0.13.2=py39h9fdd4d6_0 - ruamel.yaml.clib=0.2.7=py39hd1e30aa_2 - - rw=0.8=h516909a_1001 - 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 - - singular=4.3.2.p8=h33f5c3f_0 + - 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 @@ -323,7 +320,7 @@ dependencies: - soupsieve=2.5=pyhd8ed1ab_1 - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_0 - sympow=2.023.6=hc6ab17c_3 - - tbb=2021.10.0=h00ab1b0_2 + - tbb=2021.11.0=h00ab1b0_0 - toml=0.10.2=pyhd8ed1ab_0 - tomli=2.0.1=pyhd8ed1ab_0 - tomlkit=0.12.3=pyha770c72_0 @@ -404,7 +401,7 @@ dependencies: - pytest=7.4.3=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - pytz-deprecation-shim=0.1.0.post0=py39hf3d152e_4 - - referencing=0.31.1=pyhd8ed1ab_0 + - referencing=0.32.0=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - ruamel.yaml=0.18.5=py39hd1e30aa_0 - sagemath-db-conway-polynomials=0.5.0=ha878542_1 @@ -418,6 +415,7 @@ dependencies: - xorg-libxi=1.7.10=h7f98852_0 - annotated-types=0.6.0=pyhd8ed1ab_0 - argon2-cffi-bindings=21.2.0=py39hd1e30aa_4 + - 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 @@ -445,7 +443,7 @@ dependencies: - requests=2.31.0=pyhd8ed1ab_0 - setuptools-scm=8.0.4=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 - - suitesparse=5.10.1=h9e50725_1 + - 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 @@ -456,6 +454,7 @@ dependencies: - fpylll=0.6.0=py39h2525e16_1 - giac=1.9.0.21=h673759e_1 - gst-plugins-base=1.22.7=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 @@ -482,6 +481,7 @@ dependencies: - pygls=1.2.1=pyhd8ed1ab_0 - qt-main=5.15.8=h82b777d_17 - r-base=4.3.2=h93585b2_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 diff --git a/src/environment-dev-3.9-macos-arm64.yml b/src/environment-dev-3.9-macos-arm64.yml index a0f2b30fea0..638c2df7676 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: c3010db49b9c7acb1980f2fb6c3ebf18026ec4fa93dff0183e8068d9cc0f261e +# input_hash: 1de1f8638d77008be4dcf00d3695a7006bff58504d1774e4c76e5407c6e59a46 channels: - conda-forge @@ -16,7 +16,7 @@ dependencies: - font-ttf-source-code-pro=2.038=h77eed37_0 - font-ttf-ubuntu=0.83=h77eed37_1 - fribidi=1.0.10=h27ca646_0 - - gh=2.39.2=h75b854d_0 + - gh=2.40.0=h75b854d_0 - giflib=5.2.1=h1a8c8d9_3 - jpeg=9e=h1a8c8d9_3 - libatomic_ops=7.6.14=h1a8c8d9_0 @@ -37,8 +37,7 @@ dependencies: - m4=1.4.18=h642e427_1001 - make=4.3=he57ea6c_1 - mathjax=3.2.2=hce30654_0 - - metis=5.1.0=h13dd4ca_1007 - - nauty=2.8.6=h93a5062_0 + - nauty=2.8.8=h93a5062_0 - palp=2.20=h27ca646_0 - pandoc=3.1.3=hce30654_0 - pari-elldata=0.0.20161017=0 @@ -82,6 +81,7 @@ dependencies: - libsqlite=3.44.2=h091b4b1_0 - libxcb=1.13=h9b22ae9_1004 - lrcalc=2.1=hb7217d7_5 + - metis=5.1.1=h965bd2d_2 - ncurses=6.4=h463b476_2 - ninja=1.11.1=hffc8910_0 - openjdk=21.0.1=hed44d8b_0 @@ -137,7 +137,7 @@ dependencies: - krb5=1.20.1=h69eda48_0 - lcms2=2.15=h481adae_0 - libbrial=1.2.12=ha7f5006_1 - - libflint=2.9.0=h173eafc_ntl_100 + - 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 @@ -154,7 +154,6 @@ dependencies: - alabaster=0.7.13=pyhd8ed1ab_0 - appdirs=1.4.4=pyh9f0ad1d_0 - appnope=0.1.3=pyhd8ed1ab_0 - - arb=2.23.0=he5401aa_0 - attrs=23.1.0=pyh71513ae_1 - backcall=0.2.0=pyh9f0ad1d_0 - brial=1.2.12=pyh694c41f_1 @@ -177,7 +176,7 @@ dependencies: - defusedxml=0.7.1=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - docutils=0.20.1=py39h2804cbe_3 - - eclib=20230424=haeb5157_0 + - eclib=20230424=h8fe5691_1 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 - exceptiongroup=1.2.0=pyhd8ed1ab_0 @@ -257,7 +256,7 @@ dependencies: - sagetex=3.6.1=pyhd8ed1ab_0 - setuptools=68.2.2=pyhd8ed1ab_0 - simplegeneric=0.8.1=py_1 - - singular=4.2.1.p3=h3b80c97_2 + - 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 @@ -331,7 +330,7 @@ dependencies: - pytest=7.4.3=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - pytz-deprecation-shim=0.1.0.post0=py39h2804cbe_4 - - referencing=0.31.1=pyhd8ed1ab_0 + - referencing=0.32.0=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - ruamel.yaml=0.18.5=py39h17cfd9d_0 - sagemath-db-conway-polynomials=0.5.0=h4653dfc_1 @@ -370,7 +369,7 @@ dependencies: - requests=2.31.0=pyhd8ed1ab_0 - setuptools-scm=8.0.4=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 - - suitesparse=5.10.1=h7cd81ec_1 + - 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 @@ -386,7 +385,7 @@ dependencies: - jsonschema=4.20.0=pyhd8ed1ab_0 - jupyter_client=8.6.0=pyhd8ed1ab_0 - keyring=24.3.0=py39h2804cbe_0 - - linbox=1.6.3=h549c411_7 + - linbox=1.6.3=h380be0f_8 - lsprotocol=2023.0.0=pyhd8ed1ab_0 - pydantic=2.5.2=pyhd8ed1ab_0 - scipy=1.11.4=py39h36c428d_0 diff --git a/src/environment-dev-3.9-macos.yml b/src/environment-dev-3.9-macos.yml index cf15976ea82..9439ca59533 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: 3b9dea27803173cdb6b8e863354af43556c55ec134f6de6afec63669d5dd2549 +# input_hash: 0ed32ba9fb85f852eb5872af277320d1f2a78b7c2d29e5a53063ecc2616c6c70 channels: - conda-forge @@ -16,7 +16,7 @@ dependencies: - font-ttf-source-code-pro=2.038=h77eed37_0 - font-ttf-ubuntu=0.83=h77eed37_1 - fribidi=1.0.10=hbcb3906_0 - - gh=2.39.2=h990441c_0 + - gh=2.40.0=h990441c_0 - giflib=5.2.1=hb7f2c08_3 - icu=73.2=hf5e326d_0 - libatomic_ops=7.6.14=hb7f2c08_0 @@ -39,8 +39,7 @@ dependencies: - m4=1.4.18=haf1e3a3_1001 - make=4.3=h22f3db7_1 - mathjax=3.2.2=h694c41f_0 - - metis=5.1.0=he965462_1007 - - nauty=2.7.2=h0d85af4_0 + - nauty=2.8.8=h10d778d_0 - palp=2.20=hbcb3906_0 - pari-elldata=0.0.20161017=0 - pari-galdata=0.0.20180411=0 @@ -52,11 +51,9 @@ dependencies: - pthread-stubs=0.4=hc929b4f_1001 - python_abi=3.9=4_cp39 - rhash=1.4.4=h0dc2134_0 - - rw=0.7=1 - sagemath-db-combinatorial-designs=20140630=1 - sagemath-db-graphs=20210214=hd8ed1ab_0 - sagemath-db-polytopes=20170220=1 - - tbb=2021.10.0=h1c7c39f_2 - three.js=122=hd8ed1ab_2 - tzdata=2023c=h71feb2d_0 - xorg-libxau=1.0.11=h0dc2134_0 @@ -82,8 +79,9 @@ dependencies: - libpng=1.6.39=ha978bb4_0 - libsqlite=3.44.2=h92b6c6a_0 - libxcb=1.15=hb7f2c08_0 - - libxml2=2.12.2=hc0ae0f7_0 + - libxml2=2.11.6=hc0ae0f7_0 - lrcalc=2.1=hf0c8a7f_5 + - metis=5.1.1=h93d8f39_2 - ncurses=6.4=h93d8f39_2 - ninja=1.11.1=hb8565cd_0 - openjdk=21.0.1=hf4d7fad_0 @@ -119,7 +117,8 @@ dependencies: - libgfortran=5.0.0=13_2_0_h97931a8_1 - libglib=2.78.1=h6d9ecee_0 - libhomfly=1.02r6=hc929b4f_0 - - libllvm15=15.0.7=hbedff68_4 + - libhwloc=2.9.3=default_h24e0189_1009 + - libllvm15=15.0.7=he4b1e75_3 - libnghttp2=1.58.0=h64cf6d3_0 - libssh2=1.11.0=hd019ec5_0 - libtiff=4.6.0=h684deea_2 @@ -147,7 +146,7 @@ dependencies: - 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=hbedff68_4 + - llvm-tools=15.0.7=he4b1e75_3 - m4rie=20150908=h3f75d11_1001 - mpc=1.3.1=h81bd1dd_0 - mpfi=1.5.4=h52b28e3_1001 @@ -157,10 +156,10 @@ dependencies: - python=3.9.18=h07e1443_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 - - arb=2.9.0=0 - attrs=23.1.0=pyh71513ae_1 - backcall=0.2.0=pyh9f0ad1d_0 - boost-cpp=1.83.0=h07eb623_0 @@ -213,7 +212,7 @@ dependencies: - libcurl=8.5.0=h726d00d_0 - libgd=2.3.3=h0dceb68_9 - markupsafe=2.1.3=py39hdc70f33_1 - - maxima=5.46.0=h2b27fa8_0 + - maxima=5.47.0=h2b27fa8_0 - mistune=3.0.2=pyhd8ed1ab_0 - more-itertools=10.1.0=pyhd8ed1ab_0 - mpmath=1.3.0=pyhd8ed1ab_0 @@ -264,7 +263,7 @@ dependencies: - sagetex=3.6.1=pyhd8ed1ab_0 - setuptools=68.2.2=pyhd8ed1ab_0 - simplegeneric=0.8.1=py_1 - - singular=4.3.2.p8=h0d51a9f_0 + - 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 @@ -337,7 +336,7 @@ dependencies: - pytest=7.4.3=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - pytz-deprecation-shim=0.1.0.post0=py39h6e9494a_4 - - referencing=0.31.1=pyhd8ed1ab_0 + - referencing=0.32.0=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - ruamel.yaml=0.18.5=py39ha09f3b3_0 - sagemath-db-conway-polynomials=0.5.0=h033912b_1 @@ -349,6 +348,7 @@ dependencies: - virtualenv=20.25.0=pyhd8ed1ab_0 - annotated-types=0.6.0=pyhd8ed1ab_0 - argon2-cffi-bindings=21.2.0=py39hdc70f33_4 + - 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 @@ -374,7 +374,7 @@ dependencies: - requests=2.31.0=pyhd8ed1ab_0 - setuptools-scm=8.0.4=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 - - suitesparse=5.10.1=h7aff33d_1 + - 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 @@ -384,6 +384,7 @@ dependencies: - ensureconda=1.4.3=pyhd8ed1ab_0 - fpylll=0.6.0=py39hec15948_1 - 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 @@ -405,6 +406,7 @@ dependencies: - matplotlib-base=3.8.2=py39h7070ae8_0 - nbformat=5.9.2=pyhd8ed1ab_0 - pygls=1.2.1=pyhd8ed1ab_0 + - rw=0.9=h10d778d_1 - clang_impl_osx-64=15.0.7=h03d6864_6 - conda-lock=2.5.1=pyhd8ed1ab_0 - ipympl=0.9.3=pyhd8ed1ab_0 From b54a207da0fa06455d731235f63071b28e0e3d50 Mon Sep 17 00:00:00 2001 From: Tobias Diez Date: Sat, 9 Dec 2023 04:24:15 +0000 Subject: [PATCH 32/33] compilers is not a macos issue --- build/pkgs/_prereq/distros/conda.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/pkgs/_prereq/distros/conda.txt b/build/pkgs/_prereq/distros/conda.txt index ae48cd46819..6cbb296c1cb 100644 --- a/build/pkgs/_prereq/distros/conda.txt +++ b/build/pkgs/_prereq/distros/conda.txt @@ -1,4 +1,4 @@ -compilers<=1.6.0 # 1.7 pulls in c-compiler v.16, which is not working on macos +compilers<=1.6.0 # 1.7 pulls in c-compiler v.16 make m4 perl From 215bebd918f5a24b88c888323672f1edf5a6c5a4 Mon Sep 17 00:00:00 2001 From: Tobias Diez Date: Thu, 21 Dec 2023 08:44:13 +0000 Subject: [PATCH 33/33] update conda lock files --- environment-3.10-linux-aarch64.yml | 24 +++--- environment-3.10-linux.yml | 32 ++++---- environment-3.10-macos-arm64.yml | 30 +++---- environment-3.10-macos.yml | 40 ++++----- environment-3.11-linux-aarch64.yml | 26 +++--- environment-3.11-linux.yml | 34 ++++---- environment-3.11-macos-arm64.yml | 32 ++++---- environment-3.11-macos.yml | 42 +++++----- environment-3.9-linux-aarch64.yml | 24 +++--- environment-3.9-linux.yml | 32 ++++---- environment-3.9-macos-arm64.yml | 30 +++---- environment-3.9-macos.yml | 40 ++++----- src/environment-3.10-linux-aarch64.yml | 55 ++++++------- src/environment-3.10-linux.yml | 79 +++++++++--------- src/environment-3.10-macos-arm64.yml | 65 ++++++++------- src/environment-3.10-macos.yml | 77 +++++++++--------- src/environment-3.11-linux-aarch64.yml | 57 +++++++------ src/environment-3.11-linux.yml | 81 +++++++++--------- src/environment-3.11-macos-arm64.yml | 67 ++++++++------- src/environment-3.11-macos.yml | 79 +++++++++--------- src/environment-3.9-linux-aarch64.yml | 55 ++++++------- src/environment-3.9-linux.yml | 79 +++++++++--------- src/environment-3.9-macos-arm64.yml | 65 ++++++++------- src/environment-3.9-macos.yml | 77 +++++++++--------- src/environment-dev-3.10-linux-aarch64.yml | 57 +++++++------ src/environment-dev-3.10-linux.yml | 93 +++++++++++---------- src/environment-dev-3.10-macos-arm64.yml | 67 ++++++++------- src/environment-dev-3.10-macos.yml | 79 +++++++++--------- src/environment-dev-3.11-linux-aarch64.yml | 59 +++++++------- src/environment-dev-3.11-linux.yml | 95 +++++++++++----------- src/environment-dev-3.11-macos-arm64.yml | 69 ++++++++-------- src/environment-dev-3.11-macos.yml | 81 +++++++++--------- src/environment-dev-3.9-linux-aarch64.yml | 57 +++++++------ src/environment-dev-3.9-linux.yml | 93 +++++++++++---------- src/environment-dev-3.9-macos-arm64.yml | 67 ++++++++------- src/environment-dev-3.9-macos.yml | 79 +++++++++--------- 36 files changed, 1059 insertions(+), 1059 deletions(-) diff --git a/environment-3.10-linux-aarch64.yml b/environment-3.10-linux-aarch64.yml index e9544ec4fec..02736a9a06c 100644 --- a/environment-3.10-linux-aarch64.yml +++ b/environment-3.10-linux-aarch64.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: linux-aarch64 -# input_hash: 4c365ae2e280b608e5362f04a58206f9f3539695de8b31528fcb7912957c21c4 +# input_hash: 96dae74361f1b35e0b9eef66fedec177f62a1543c75ec7041d6186a95dc59129 channels: - conda-forge @@ -37,7 +37,7 @@ dependencies: - bc=1.07.1=hf897c2e_0 - bdw-gc=8.0.6=hd62202e_0 - bzip2=1.0.8=h31becfc_5 - - c-ares=1.23.0=h31becfc_0 + - c-ares=1.24.0=h31becfc_0 - cliquer=1.22=hb9de7d4_0 - gengetopt=2.23=h01db608_0 - gf2x=1.3.0=h1b3b3a3_2 @@ -50,11 +50,11 @@ dependencies: - libatomic_ops=7.6.14=h4e544f5_0 - libbraiding=1.2=hd600fc2_0 - libdeflate=1.17=hb4cce97_0 - - libev=4.33=h516909a_1 + - libev=4.33=h31becfc_2 - libexpat=2.5.0=hd600fc2_1 - libffi=3.4.2=h3557bc0_5 - libgfortran5=13.2.0=h582850c_3 - - libiconv=1.17=h9cdd2b7_0 + - libiconv=1.17=h31becfc_2 - libnsl=2.0.1=h31becfc_0 - libsanitizer=12.3.0=h8ebda82_3 - libsodium=1.0.18=hb9de7d4_1 @@ -89,7 +89,7 @@ dependencies: - libedit=3.1.20191231=he28a2e2_2 - libgfortran-ng=13.2.0=he9431aa_3 - libhomfly=1.02r6=hb9de7d4_0 - - libnghttp2=1.58.0=hb0e430d_0 + - libnghttp2=1.58.0=hb0e430d_1 - libpng=1.6.39=hf9034f9_0 - libsqlite=3.44.2=h194ca79_0 - libssh2=1.11.0=h492db2e_0 @@ -107,6 +107,7 @@ dependencies: - autoconf=2.71=pl5321h2148fe1_1 - ecl=21.2.1=haa44c19_2 - 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 @@ -135,11 +136,12 @@ dependencies: - cachetools=5.3.2=pyhd8ed1ab_0 - chardet=5.2.0=py310hbbe02a8_1 - colorama=0.4.6=pyhd8ed1ab_0 - - distlib=0.3.7=pyhd8ed1ab_0 - - eclib=20230424=he26bab5_1 + - distlib=0.3.8=pyhd8ed1ab_0 + - eclib=20231211=he26bab5_0 - filelock=3.13.1=pyhd8ed1ab_0 - fontconfig=2.14.2=ha9a116f_0 - fplll=5.4.5=hb3a790e_0 + - gap-defaults=4.12.2=h8af1aa0_3 - gfortran=12.3.0=h8d4031d_2 - gfortran_linux-aarch64=12.3.0=h1993883_2 - gxx=12.3.0=hc1b51f9_2 @@ -151,7 +153,7 @@ dependencies: - libcurl=8.5.0=h4e8248e_0 - libwebp=1.2.4=h7bdf6e5_1 - m4rie=20150908=h75e8696_1001 - - maxima=5.47.0=h6475f26_0 + - maxima=5.47.0=h6475f26_1 - openblas=0.3.25=pthreads_h339cbfa_0 - packaging=23.2=pyhd8ed1ab_0 - platformdirs=4.1.0=pyhd8ed1ab_0 @@ -160,11 +162,11 @@ dependencies: - sympow=2.023.6=h157afb5_3 - tbb=2021.11.0=h2a328a1_0 - tomli=2.0.1=pyhd8ed1ab_0 - - typing_extensions=4.8.0=pyha770c72_0 + - typing_extensions=4.9.0=pyha770c72_0 - zipp=3.17.0=pyhd8ed1ab_0 - boost-cpp=1.82.0=h62f3a30_2 - brial=1.2.12=pyh694c41f_1 - - cmake=3.28.0=hef020d8_0 + - cmake=3.28.1=hef020d8_0 - curl=8.5.0=h4e8248e_0 - cxx-compiler=1.6.0=h2a328a1_0 - fortran-compiler=1.6.0=h7048d53_0 @@ -173,7 +175,7 @@ dependencies: - libgd=2.3.3=h5fc1a20_5 - liblapack=3.9.0=20_linuxaarch64_openblas - pyproject-api=1.6.1=pyhd8ed1ab_0 - - typing-extensions=4.8.0=hd8ed1ab_0 + - typing-extensions=4.9.0=hd8ed1ab_0 - virtualenv=20.25.0=pyhd8ed1ab_0 - arpack=3.8.0=nompi_h32ff4ca_101 - compilers=1.6.0=h8af1aa0_0 diff --git a/environment-3.10-linux.yml b/environment-3.10-linux.yml index a47f3220a32..f50a98a371a 100644 --- a/environment-3.10-linux.yml +++ b/environment-3.10-linux.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: 8eaf695e51d8a58387d56ff127711926707078b1e6affc8e20e918a110369c2f +# input_hash: 1f9798af961ad5b438e8f6adfc00612019c5330e9dffc2b13a701e5502ec90dd channels: - conda-forge @@ -13,7 +13,7 @@ dependencies: - font-ttf-ubuntu=0.83=h77eed37_1 - kernel-headers_linux-64=2.6.32=he073ed8_16 - ld_impl_linux-64=2.40=h41732ed_0 - - libboost-headers=1.83.0=ha770c72_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 @@ -37,7 +37,7 @@ dependencies: - bc=1.07.1=h7f98852_0 - bdw-gc=8.0.6=h4bd325d_0 - bzip2=1.0.8=hd590300_5 - - c-ares=1.23.0=hd590300_0 + - c-ares=1.24.0=hd590300_0 - cliquer=1.22=h36c2ea0_0 - gengetopt=2.23=h9c3ff4c_0 - gf2x=1.3.0=ha476b99_2 @@ -49,11 +49,11 @@ dependencies: - libatomic_ops=7.6.14=h166bdaf_0 - libbraiding=1.2=hcb278e6_0 - libdeflate=1.19=hd590300_0 - - libev=4.33=h516909a_1 + - libev=4.33=hd590300_2 - libexpat=2.5.0=hcb278e6_1 - libffi=3.4.2=h7f98852_5 - libgfortran5=13.2.0=ha4646dd_3 - - libiconv=1.17=h166bdaf_0 + - libiconv=1.17=hd590300_2 - libjpeg-turbo=3.0.0=hd590300_1 - libnsl=2.0.1=hd590300_0 - libsanitizer=12.3.0=h0f45ef3_3 @@ -89,7 +89,7 @@ dependencies: - libedit=3.1.20191231=he28a2e2_2 - libgfortran-ng=13.2.0=h69a702a_3 - libhomfly=1.02r6=h36c2ea0_0 - - libnghttp2=1.58.0=h47da74e_0 + - libnghttp2=1.58.0=h47da74e_1 - libpng=1.6.39=h753d276_0 - libsqlite=3.44.2=h2797004_0 - libssh2=1.11.0=h0841786_0 @@ -107,13 +107,14 @@ dependencies: - autoconf=2.71=pl5321h2b4cb7a_1 - ecl=21.2.1=h9d73b02_2 - 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 - krb5=1.21.2=h659d440_0 - - libboost=1.83.0=h6fcfa73_0 + - libboost=1.84.0=h6fcfa73_0 - libflint=3.0.1=h5f2e117_ntl_100 - libhwloc=2.9.3=default_h554bfaf_1009 - libopenblas=0.3.25=pthreads_h413a1c8_0 @@ -135,23 +136,24 @@ dependencies: - cachetools=5.3.2=pyhd8ed1ab_0 - chardet=5.2.0=py310hff52083_1 - colorama=0.4.6=pyhd8ed1ab_0 - - distlib=0.3.7=pyhd8ed1ab_0 - - eclib=20230424=h96f522a_1 + - distlib=0.3.8=pyhd8ed1ab_0 + - eclib=20231211=h96f522a_0 - filelock=3.13.1=pyhd8ed1ab_0 - fontconfig=2.14.2=h14ed4e7_0 - fplll=5.4.5=h384768b_0 + - gap-defaults=4.12.2=ha770c72_3 - gfortran=12.3.0=h499e0f7_2 - gfortran_linux-64=12.3.0=h7fe76b4_2 - gxx=12.3.0=h8d2909c_2 - gxx_linux-64=12.3.0=h8a814eb_2 - lcalc=2.0.5=h6a8a7c6_1 - libblas=3.9.0=20_linux64_openblas - - libboost-devel=1.83.0=h00ab1b0_0 + - libboost-devel=1.84.0=h00ab1b0_0 - libbrial=1.2.12=h3155cbd_1 - libcurl=8.5.0=hca28451_0 - libwebp=1.3.2=h658648e_1 - m4rie=20150908=h7ca028e_1001 - - maxima=5.47.0=hed6455c_0 + - maxima=5.47.0=hed6455c_1 - openblas=0.3.25=pthreads_h7a3da1a_0 - packaging=23.2=pyhd8ed1ab_0 - platformdirs=4.1.0=pyhd8ed1ab_0 @@ -160,11 +162,11 @@ dependencies: - sympow=2.023.6=hc6ab17c_3 - tbb=2021.11.0=h00ab1b0_0 - tomli=2.0.1=pyhd8ed1ab_0 - - typing_extensions=4.8.0=pyha770c72_0 + - typing_extensions=4.9.0=pyha770c72_0 - zipp=3.17.0=pyhd8ed1ab_0 - - boost-cpp=1.83.0=h44aadfe_0 + - boost-cpp=1.84.0=h44aadfe_0 - brial=1.2.12=pyh694c41f_1 - - cmake=3.28.0=hcfe8598_0 + - cmake=3.28.1=hcfe8598_0 - curl=8.5.0=hca28451_0 - cxx-compiler=1.6.0=h00ab1b0_0 - fortran-compiler=1.6.0=heb67821_0 @@ -173,7 +175,7 @@ dependencies: - libgd=2.3.3=h119a65a_9 - liblapack=3.9.0=20_linux64_openblas - pyproject-api=1.6.1=pyhd8ed1ab_0 - - typing-extensions=4.8.0=hd8ed1ab_0 + - typing-extensions=4.9.0=hd8ed1ab_0 - virtualenv=20.25.0=pyhd8ed1ab_0 - arpack=3.8.0=nompi_h0baa96a_101 - compilers=1.6.0=ha770c72_0 diff --git a/environment-3.10-macos-arm64.yml b/environment-3.10-macos-arm64.yml index 8330cee17be..ed6a569291f 100644 --- a/environment-3.10-macos-arm64.yml +++ b/environment-3.10-macos-arm64.yml @@ -1,13 +1,13 @@ # Generated by conda-lock. # platform: osx-arm64 -# input_hash: ff4c58fd78f2ab58fb3486f7d0c405e2607bcb0839cc1d2943142a6589d090ef +# input_hash: faa4e21d6f64de6a962258a7c91cf369a21f135840de4cf9f1023d2ce020b332 channels: - conda-forge dependencies: - bc=1.07.1=h3422bc3_0 - bzip2=1.0.8=h93a5062_5 - - c-ares=1.23.0=h93a5062_0 + - c-ares=1.24.0=h93a5062_0 - ca-certificates=2023.11.17=hf0a4a13_0 - cliquer=1.22=h27ca646_0 - font-ttf-dejavu-sans-mono=2.37=hab24e00_0 @@ -21,11 +21,11 @@ dependencies: - libboost-headers=1.82.0=hce30654_2 - libcxx=16.0.6=h4653b0c_0 - libdeflate=1.17=h1a8c8d9_0 - - libev=4.33=h642e427_1 + - 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=he4db4b2_0 + - libiconv=1.17=h0d3ecfb_2 - libsodium=1.0.18=h27ca646_1 - libtool=2.4.7=hb7217d7_0 - libuv=1.46.0=hb547adb_0 @@ -93,7 +93,7 @@ dependencies: - libhomfly=1.02r6=h27ca646_0 - libhwloc=2.9.3=default_h4394839_1009 - libllvm15=15.0.7=h504e6bf_3 - - libnghttp2=1.58.0=ha4dd798_0 + - libnghttp2=1.58.0=ha4dd798_1 - libssh2=1.11.0=h7a5bd25_0 - libtiff=4.5.0=h5dffbdd_2 - m4ri=20140914=h17b34a0_1005 @@ -106,6 +106,7 @@ dependencies: - texinfo=7.0=pl5321h9ea1dce_0 - 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 - ld64_osx-arm64=609=hc4dc95b_15 @@ -134,10 +135,11 @@ dependencies: - chardet=5.2.0=py310hbe9552e_1 - clang-15=15.0.7=default_hd209bcb_4 - colorama=0.4.6=pyhd8ed1ab_0 - - distlib=0.3.7=pyhd8ed1ab_0 - - eclib=20230424=h8fe5691_1 + - distlib=0.3.8=pyhd8ed1ab_0 + - eclib=20231211=h7f07de4_0 - filelock=3.13.1=pyhd8ed1ab_0 - fplll=5.4.5=hb7d509d_0 + - gap-defaults=4.12.2=hce30654_3 - gfortran_impl_osx-arm64=12.3.0=hbbb9e1e_1 - lcalc=2.0.5=hc94e8e6_1 - ld64=609=h89fa09d_15 @@ -152,17 +154,17 @@ dependencies: - singular=4.3.2.p8=hb460b52_1 - sympow=2.023.6=hb0babe8_3 - tomli=2.0.1=pyhd8ed1ab_0 - - typing_extensions=4.8.0=pyha770c72_0 + - typing_extensions=4.9.0=pyha770c72_0 - zipp=3.17.0=pyhd8ed1ab_0 - cctools=973.0.1=hd1ac623_15 - clang=15.0.7=haab561b_4 - - cmake=3.28.0=h04763b9_0 + - cmake=3.28.1=h50fd54c_0 - curl=8.5.0=h2d989ff_0 - importlib-metadata=7.0.0=pyha770c72_0 - libcblas=3.9.0=20_osxarm64_openblas - liblapack=3.9.0=20_osxarm64_openblas - pyproject-api=1.6.1=pyhd8ed1ab_0 - - typing-extensions=4.8.0=hd8ed1ab_0 + - typing-extensions=4.9.0=hd8ed1ab_0 - virtualenv=20.25.0=pyhd8ed1ab_0 - arpack=3.8.0=nompi_ha3438d0_101 - clangxx=15.0.7=default_h5c94ee4_4 @@ -181,12 +183,12 @@ dependencies: - blas=2.120=openblas - compiler-rt=15.0.7=h3808999_2 - rw=0.9=h93a5062_1 - - clang_impl_osx-arm64=15.0.7=h77e971b_6 - - clang_osx-arm64=15.0.7=h54d7cd3_6 + - clang_impl_osx-arm64=15.0.7=h77e971b_7 + - clang_osx-arm64=15.0.7=h54d7cd3_7 - c-compiler=1.6.0=hd291e01_0 - - clangxx_impl_osx-arm64=15.0.7=h768a7fd_6 + - clangxx_impl_osx-arm64=15.0.7=h768a7fd_7 - gfortran_osx-arm64=12.3.0=h57527a5_1 - - clangxx_osx-arm64=15.0.7=h77e971b_6 + - clangxx_osx-arm64=15.0.7=h54d7cd3_7 - gfortran=12.3.0=h1ca8e4b_1 - cxx-compiler=1.6.0=h1995070_0 - fortran-compiler=1.6.0=h5a50232_0 diff --git a/environment-3.10-macos.yml b/environment-3.10-macos.yml index 1a7f577b1fb..70a4a757b9d 100644 --- a/environment-3.10-macos.yml +++ b/environment-3.10-macos.yml @@ -1,13 +1,13 @@ # Generated by conda-lock. # platform: osx-64 -# input_hash: af50578b3e4318883d281e6f106c4522dc14f41a0dc218d1c9f03f65bd7ffae4 +# input_hash: 54a9866015234b0922bea58204d7f3ff24e05df857342adbcc3465b4f887d566 channels: - conda-forge dependencies: - bc=1.07.1=h0d85af4_0 - bzip2=1.0.8=h10d778d_5 - - c-ares=1.23.0=h10d778d_0 + - c-ares=1.24.0=h10d778d_0 - ca-certificates=2023.11.17=h8857fd0_0 - cliquer=1.22=hbcb3906_0 - font-ttf-dejavu-sans-mono=2.37=hab24e00_0 @@ -17,14 +17,14 @@ dependencies: - giflib=5.2.1=hb7f2c08_3 - icu=73.2=hf5e326d_0 - libatomic_ops=7.6.14=hb7f2c08_0 - - libboost-headers=1.83.0=h694c41f_0 + - libboost-headers=1.84.0=h694c41f_0 - libcxx=16.0.6=hd57cbcb_0 - libdeflate=1.19=ha4e1b8e_0 - - libev=4.33=haf1e3a3_1 + - 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=hac89ed1_0 + - libiconv=1.17=hd75f5a5_2 - libjpeg-turbo=3.0.0=h0dc2134_1 - libsodium=1.0.18=hbcb3906_1 - libtool=2.4.7=hf0c8a7f_0 @@ -86,13 +86,13 @@ dependencies: - freetype=2.12.1=h60636b9_2 - givaro=4.1.1=h0a799c6_3 - glpk=5.0=h3cb5acd_0 - - libboost=1.83.0=hf44e908_0 + - libboost=1.84.0=h5b2dd29_0 - libedit=3.1.20191231=h0678c8f_2 - libgfortran=5.0.0=13_2_0_h97931a8_1 - libhomfly=1.02r6=hc929b4f_0 - libhwloc=2.9.3=default_h24e0189_1009 - libllvm15=15.0.7=he4b1e75_3 - - libnghttp2=1.58.0=h64cf6d3_0 + - libnghttp2=1.58.0=h64cf6d3_1 - libssh2=1.11.0=hd019ec5_0 - libtiff=4.6.0=h684deea_2 - m4ri=20140914=h3f75d11_1005 @@ -105,10 +105,11 @@ dependencies: - texinfo=7.0=pl5321hc47821c_0 - ecl=21.2.1=hd029580_2 - 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 - ld64_osx-64=609=h0fd476b_15 - - libboost-devel=1.83.0=h7728843_0 + - libboost-devel=1.84.0=h7728843_0 - libbrial=1.2.12=h8d08345_1 - libclang-cpp15=15.0.7=default_h6b1ee41_4 - libflint=3.0.1=h5d15de0_ntl_100 @@ -125,24 +126,25 @@ dependencies: - sqlite=3.44.2=h7461747_0 - tbb=2021.11.0=he51d815_0 - appdirs=1.4.4=pyh9f0ad1d_0 - - boost-cpp=1.83.0=h07eb623_0 + - boost-cpp=1.84.0=h07eb623_0 - brial=1.2.12=pyh694c41f_1 - cachetools=5.3.2=pyhd8ed1ab_0 - cctools_osx-64=973.0.1=habff3f6_15 - chardet=5.2.0=py310h2ec42d9_1 - clang-15=15.0.7=default_h6b1ee41_4 - colorama=0.4.6=pyhd8ed1ab_0 - - distlib=0.3.7=pyhd8ed1ab_0 - - eclib=20230424=h563f520_1 + - distlib=0.3.8=pyhd8ed1ab_0 + - eclib=20231211=h02435c3_0 - filelock=3.13.1=pyhd8ed1ab_0 - fplll=5.4.5=hb7981ad_0 + - gap-defaults=4.12.2=h694c41f_3 - gfortran_impl_osx-64=12.3.0=h54fd467_1 - lcalc=2.0.5=h3a941db_1 - ld64=609=ha91a046_15 - libblas=3.9.0=20_osx64_openblas - libcurl=8.5.0=h726d00d_0 - libgd=2.3.3=h0dceb68_9 - - maxima=5.47.0=h2b27fa8_0 + - maxima=5.47.0=h2b27fa8_1 - openblas=0.3.25=openmp_h6794695_0 - packaging=23.2=pyhd8ed1ab_0 - platformdirs=4.1.0=pyhd8ed1ab_0 @@ -150,17 +152,17 @@ dependencies: - singular=4.3.2.p8=h0d51a9f_1 - sympow=2.023.6=h115ba6a_3 - tomli=2.0.1=pyhd8ed1ab_0 - - typing_extensions=4.8.0=pyha770c72_0 + - typing_extensions=4.9.0=pyha770c72_0 - zipp=3.17.0=pyhd8ed1ab_0 - cctools=973.0.1=hd9ad811_15 - clang=15.0.7=hac416ee_4 - - cmake=3.28.0=hc7ee4c4_0 + - cmake=3.28.1=h7c85d92_0 - curl=8.5.0=h726d00d_0 - importlib-metadata=7.0.0=pyha770c72_0 - libcblas=3.9.0=20_osx64_openblas - liblapack=3.9.0=20_osx64_openblas - pyproject-api=1.6.1=pyhd8ed1ab_0 - - typing-extensions=4.8.0=hd8ed1ab_0 + - typing-extensions=4.9.0=hd8ed1ab_0 - virtualenv=20.25.0=pyhd8ed1ab_0 - arpack=3.8.0=nompi_hb44a6d1_101 - clangxx=15.0.7=default_h6b1ee41_4 @@ -179,12 +181,12 @@ dependencies: - blas=2.120=openblas - compiler-rt=15.0.7=ha38d28d_2 - rw=0.9=h10d778d_1 - - clang_impl_osx-64=15.0.7=h03d6864_6 - - clang_osx-64=15.0.7=hb91bd55_6 + - clang_impl_osx-64=15.0.7=h03d6864_7 + - clang_osx-64=15.0.7=hb91bd55_7 - c-compiler=1.6.0=h63c33a9_0 - - clangxx_impl_osx-64=15.0.7=h3d2d1bf_6 + - clangxx_impl_osx-64=15.0.7=h2133e9c_7 - gfortran_osx-64=12.3.0=h18f7dce_1 - - clangxx_osx-64=15.0.7=h655633e_6 + - clangxx_osx-64=15.0.7=hb91bd55_7 - gfortran=12.3.0=h2c809b3_1 - cxx-compiler=1.6.0=h1c7c39f_0 - fortran-compiler=1.6.0=h932d759_0 diff --git a/environment-3.11-linux-aarch64.yml b/environment-3.11-linux-aarch64.yml index 840719f63de..ffc187cb3e1 100644 --- a/environment-3.11-linux-aarch64.yml +++ b/environment-3.11-linux-aarch64.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: linux-aarch64 -# input_hash: 9ed8af5b6c4aefd45e95f18a4ce4b25805ad7c818ed013f4c76a5b4d95a89e9a +# input_hash: d91a9d8d1a1b36eb004d7a18ac57a0a4ff4301e295aa01bd9802ed958616e7f5 channels: - conda-forge @@ -37,7 +37,7 @@ dependencies: - bc=1.07.1=hf897c2e_0 - bdw-gc=8.0.6=hd62202e_0 - bzip2=1.0.8=h31becfc_5 - - c-ares=1.23.0=h31becfc_0 + - c-ares=1.24.0=h31becfc_0 - cliquer=1.22=hb9de7d4_0 - gengetopt=2.23=h01db608_0 - gf2x=1.3.0=h1b3b3a3_2 @@ -50,11 +50,11 @@ dependencies: - libatomic_ops=7.6.14=h4e544f5_0 - libbraiding=1.2=hd600fc2_0 - libdeflate=1.17=hb4cce97_0 - - libev=4.33=h516909a_1 + - libev=4.33=h31becfc_2 - libexpat=2.5.0=hd600fc2_1 - libffi=3.4.2=h3557bc0_5 - libgfortran5=13.2.0=h582850c_3 - - libiconv=1.17=h9cdd2b7_0 + - libiconv=1.17=h31becfc_2 - libnsl=2.0.1=h31becfc_0 - libsanitizer=12.3.0=h8ebda82_3 - libsodium=1.0.18=hb9de7d4_1 @@ -89,7 +89,7 @@ dependencies: - libedit=3.1.20191231=he28a2e2_2 - libgfortran-ng=13.2.0=he9431aa_3 - libhomfly=1.02r6=hb9de7d4_0 - - libnghttp2=1.58.0=hb0e430d_0 + - libnghttp2=1.58.0=hb0e430d_1 - libpng=1.6.39=hf9034f9_0 - libsqlite=3.44.2=h194ca79_0 - libssh2=1.11.0=h492db2e_0 @@ -107,6 +107,7 @@ dependencies: - autoconf=2.71=pl5321h2148fe1_1 - ecl=21.2.1=haa44c19_2 - 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 @@ -124,7 +125,7 @@ dependencies: - mpfi=1.5.4=h846f343_1001 - pari=2.15.4=h169c2a7_2_pthread - ppl=1.2=h984aac9_1006 - - python=3.11.6=h43d1f9e_0_cpython + - python=3.11.7=h43d1f9e_0_cpython - qd=2.3.22=h05efe27_1004 - sqlite=3.44.2=h3b3482f_0 - tachyon=0.99b6=h63ab1d9_1001 @@ -135,11 +136,12 @@ dependencies: - cachetools=5.3.2=pyhd8ed1ab_0 - chardet=5.2.0=py311hfecb2dc_1 - colorama=0.4.6=pyhd8ed1ab_0 - - distlib=0.3.7=pyhd8ed1ab_0 - - eclib=20230424=he26bab5_1 + - distlib=0.3.8=pyhd8ed1ab_0 + - eclib=20231211=he26bab5_0 - filelock=3.13.1=pyhd8ed1ab_0 - fontconfig=2.14.2=ha9a116f_0 - fplll=5.4.5=hb3a790e_0 + - gap-defaults=4.12.2=h8af1aa0_3 - gfortran=12.3.0=h8d4031d_2 - gfortran_linux-aarch64=12.3.0=h1993883_2 - gxx=12.3.0=hc1b51f9_2 @@ -151,7 +153,7 @@ dependencies: - libcurl=8.5.0=h4e8248e_0 - libwebp=1.2.4=h7bdf6e5_1 - m4rie=20150908=h75e8696_1001 - - maxima=5.47.0=h6475f26_0 + - maxima=5.47.0=h6475f26_1 - openblas=0.3.25=pthreads_h339cbfa_0 - packaging=23.2=pyhd8ed1ab_0 - platformdirs=4.1.0=pyhd8ed1ab_0 @@ -160,11 +162,11 @@ dependencies: - sympow=2.023.6=h157afb5_3 - tbb=2021.11.0=h2a328a1_0 - tomli=2.0.1=pyhd8ed1ab_0 - - typing_extensions=4.8.0=pyha770c72_0 + - typing_extensions=4.9.0=pyha770c72_0 - zipp=3.17.0=pyhd8ed1ab_0 - boost-cpp=1.82.0=h62f3a30_2 - brial=1.2.12=pyh694c41f_1 - - cmake=3.28.0=hef020d8_0 + - cmake=3.28.1=hef020d8_0 - curl=8.5.0=h4e8248e_0 - cxx-compiler=1.6.0=h2a328a1_0 - fortran-compiler=1.6.0=h7048d53_0 @@ -173,7 +175,7 @@ dependencies: - libgd=2.3.3=h5fc1a20_5 - liblapack=3.9.0=20_linuxaarch64_openblas - pyproject-api=1.6.1=pyhd8ed1ab_0 - - typing-extensions=4.8.0=hd8ed1ab_0 + - typing-extensions=4.9.0=hd8ed1ab_0 - virtualenv=20.25.0=pyhd8ed1ab_0 - arpack=3.8.0=nompi_h32ff4ca_101 - compilers=1.6.0=h8af1aa0_0 diff --git a/environment-3.11-linux.yml b/environment-3.11-linux.yml index 022bec6696b..03335cebaa6 100644 --- a/environment-3.11-linux.yml +++ b/environment-3.11-linux.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: b5fb716eecdb62cae339361795f6eb4b56dba134a9ccd0aa027831df13da8636 +# input_hash: bbe80f8b331b52d79d11dddb0f920a88165aef6bf30e41540246abc96d7d56aa channels: - conda-forge @@ -13,7 +13,7 @@ dependencies: - font-ttf-ubuntu=0.83=h77eed37_1 - kernel-headers_linux-64=2.6.32=he073ed8_16 - ld_impl_linux-64=2.40=h41732ed_0 - - libboost-headers=1.83.0=ha770c72_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 @@ -37,7 +37,7 @@ dependencies: - bc=1.07.1=h7f98852_0 - bdw-gc=8.0.6=h4bd325d_0 - bzip2=1.0.8=hd590300_5 - - c-ares=1.23.0=hd590300_0 + - c-ares=1.24.0=hd590300_0 - cliquer=1.22=h36c2ea0_0 - gengetopt=2.23=h9c3ff4c_0 - gf2x=1.3.0=ha476b99_2 @@ -49,11 +49,11 @@ dependencies: - libatomic_ops=7.6.14=h166bdaf_0 - libbraiding=1.2=hcb278e6_0 - libdeflate=1.19=hd590300_0 - - libev=4.33=h516909a_1 + - libev=4.33=hd590300_2 - libexpat=2.5.0=hcb278e6_1 - libffi=3.4.2=h7f98852_5 - libgfortran5=13.2.0=ha4646dd_3 - - libiconv=1.17=h166bdaf_0 + - libiconv=1.17=hd590300_2 - libjpeg-turbo=3.0.0=hd590300_1 - libnsl=2.0.1=hd590300_0 - libsanitizer=12.3.0=h0f45ef3_3 @@ -89,7 +89,7 @@ dependencies: - libedit=3.1.20191231=he28a2e2_2 - libgfortran-ng=13.2.0=h69a702a_3 - libhomfly=1.02r6=h36c2ea0_0 - - libnghttp2=1.58.0=h47da74e_0 + - libnghttp2=1.58.0=h47da74e_1 - libpng=1.6.39=h753d276_0 - libsqlite=3.44.2=h2797004_0 - libssh2=1.11.0=h0841786_0 @@ -107,13 +107,14 @@ dependencies: - autoconf=2.71=pl5321h2b4cb7a_1 - ecl=21.2.1=h9d73b02_2 - 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 - krb5=1.21.2=h659d440_0 - - libboost=1.83.0=h6fcfa73_0 + - libboost=1.84.0=h6fcfa73_0 - libflint=3.0.1=h5f2e117_ntl_100 - libhwloc=2.9.3=default_h554bfaf_1009 - libopenblas=0.3.25=pthreads_h413a1c8_0 @@ -124,7 +125,7 @@ dependencies: - mpfi=1.5.4=h9f54685_1001 - pari=2.15.4=h4d4ae9b_2_pthread - ppl=1.2=h6ec01c2_1006 - - python=3.11.6=hab00c5b_0_cpython + - python=3.11.7=hab00c5b_0_cpython - qd=2.3.22=h2cc385e_1004 - sqlite=3.44.2=h2c6b66d_0 - tachyon=0.99b6=0 @@ -135,23 +136,24 @@ dependencies: - cachetools=5.3.2=pyhd8ed1ab_0 - chardet=5.2.0=py311h38be061_1 - colorama=0.4.6=pyhd8ed1ab_0 - - distlib=0.3.7=pyhd8ed1ab_0 - - eclib=20230424=h96f522a_1 + - distlib=0.3.8=pyhd8ed1ab_0 + - eclib=20231211=h96f522a_0 - filelock=3.13.1=pyhd8ed1ab_0 - fontconfig=2.14.2=h14ed4e7_0 - fplll=5.4.5=h384768b_0 + - gap-defaults=4.12.2=ha770c72_3 - gfortran=12.3.0=h499e0f7_2 - gfortran_linux-64=12.3.0=h7fe76b4_2 - gxx=12.3.0=h8d2909c_2 - gxx_linux-64=12.3.0=h8a814eb_2 - lcalc=2.0.5=h6a8a7c6_1 - libblas=3.9.0=20_linux64_openblas - - libboost-devel=1.83.0=h00ab1b0_0 + - libboost-devel=1.84.0=h00ab1b0_0 - libbrial=1.2.12=h3155cbd_1 - libcurl=8.5.0=hca28451_0 - libwebp=1.3.2=h658648e_1 - m4rie=20150908=h7ca028e_1001 - - maxima=5.47.0=hed6455c_0 + - maxima=5.47.0=hed6455c_1 - openblas=0.3.25=pthreads_h7a3da1a_0 - packaging=23.2=pyhd8ed1ab_0 - platformdirs=4.1.0=pyhd8ed1ab_0 @@ -160,11 +162,11 @@ dependencies: - sympow=2.023.6=hc6ab17c_3 - tbb=2021.11.0=h00ab1b0_0 - tomli=2.0.1=pyhd8ed1ab_0 - - typing_extensions=4.8.0=pyha770c72_0 + - typing_extensions=4.9.0=pyha770c72_0 - zipp=3.17.0=pyhd8ed1ab_0 - - boost-cpp=1.83.0=h44aadfe_0 + - boost-cpp=1.84.0=h44aadfe_0 - brial=1.2.12=pyh694c41f_1 - - cmake=3.28.0=hcfe8598_0 + - cmake=3.28.1=hcfe8598_0 - curl=8.5.0=hca28451_0 - cxx-compiler=1.6.0=h00ab1b0_0 - fortran-compiler=1.6.0=heb67821_0 @@ -173,7 +175,7 @@ dependencies: - libgd=2.3.3=h119a65a_9 - liblapack=3.9.0=20_linux64_openblas - pyproject-api=1.6.1=pyhd8ed1ab_0 - - typing-extensions=4.8.0=hd8ed1ab_0 + - typing-extensions=4.9.0=hd8ed1ab_0 - virtualenv=20.25.0=pyhd8ed1ab_0 - arpack=3.8.0=nompi_h0baa96a_101 - compilers=1.6.0=ha770c72_0 diff --git a/environment-3.11-macos-arm64.yml b/environment-3.11-macos-arm64.yml index 5ba33837eac..2040f1a440f 100644 --- a/environment-3.11-macos-arm64.yml +++ b/environment-3.11-macos-arm64.yml @@ -1,13 +1,13 @@ # Generated by conda-lock. # platform: osx-arm64 -# input_hash: 6510de5001fba43c1243ce61c67c93a2057cad755a0bc452b1083318d0b8a7bc +# input_hash: e8b0c2352798acc28dc8149701309678945c47588250d3ce8f66c553a6353588 channels: - conda-forge dependencies: - bc=1.07.1=h3422bc3_0 - bzip2=1.0.8=h93a5062_5 - - c-ares=1.23.0=h93a5062_0 + - c-ares=1.24.0=h93a5062_0 - ca-certificates=2023.11.17=hf0a4a13_0 - cliquer=1.22=h27ca646_0 - font-ttf-dejavu-sans-mono=2.37=hab24e00_0 @@ -21,11 +21,11 @@ dependencies: - libboost-headers=1.82.0=hce30654_2 - libcxx=16.0.6=h4653b0c_0 - libdeflate=1.17=h1a8c8d9_0 - - libev=4.33=h642e427_1 + - 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=he4db4b2_0 + - libiconv=1.17=h0d3ecfb_2 - libsodium=1.0.18=h27ca646_1 - libtool=2.4.7=hb7217d7_0 - libuv=1.46.0=hb547adb_0 @@ -93,7 +93,7 @@ dependencies: - libhomfly=1.02r6=h27ca646_0 - libhwloc=2.9.3=default_h4394839_1009 - libllvm15=15.0.7=h504e6bf_3 - - libnghttp2=1.58.0=ha4dd798_0 + - libnghttp2=1.58.0=ha4dd798_1 - libssh2=1.11.0=h7a5bd25_0 - libtiff=4.5.0=h5dffbdd_2 - m4ri=20140914=h17b34a0_1005 @@ -106,6 +106,7 @@ dependencies: - texinfo=7.0=pl5321h9ea1dce_0 - 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 - ld64_osx-arm64=609=hc4dc95b_15 @@ -122,7 +123,7 @@ dependencies: - pari=2.15.4=haeeeed7_2_pthread - pkg-config=0.29.2=hab62308_1008 - ppl=1.2=h8b147cf_1006 - - python=3.11.6=h47c9636_0_cpython + - python=3.11.7=hdf0ec26_0_cpython - qd=2.3.22=hbec66e7_1004 - sqlite=3.44.2=hf2abe2d_0 - tbb=2021.11.0=h6aa02a4_0 @@ -134,10 +135,11 @@ dependencies: - chardet=5.2.0=py311h267d04e_1 - clang-15=15.0.7=default_hd209bcb_4 - colorama=0.4.6=pyhd8ed1ab_0 - - distlib=0.3.7=pyhd8ed1ab_0 - - eclib=20230424=h8fe5691_1 + - distlib=0.3.8=pyhd8ed1ab_0 + - eclib=20231211=h7f07de4_0 - filelock=3.13.1=pyhd8ed1ab_0 - fplll=5.4.5=hb7d509d_0 + - gap-defaults=4.12.2=hce30654_3 - gfortran_impl_osx-arm64=12.3.0=hbbb9e1e_1 - lcalc=2.0.5=hc94e8e6_1 - ld64=609=h89fa09d_15 @@ -152,17 +154,17 @@ dependencies: - singular=4.3.2.p8=hb460b52_1 - sympow=2.023.6=hb0babe8_3 - tomli=2.0.1=pyhd8ed1ab_0 - - typing_extensions=4.8.0=pyha770c72_0 + - typing_extensions=4.9.0=pyha770c72_0 - zipp=3.17.0=pyhd8ed1ab_0 - cctools=973.0.1=hd1ac623_15 - clang=15.0.7=haab561b_4 - - cmake=3.28.0=h04763b9_0 + - cmake=3.28.1=h50fd54c_0 - curl=8.5.0=h2d989ff_0 - importlib-metadata=7.0.0=pyha770c72_0 - libcblas=3.9.0=20_osxarm64_openblas - liblapack=3.9.0=20_osxarm64_openblas - pyproject-api=1.6.1=pyhd8ed1ab_0 - - typing-extensions=4.8.0=hd8ed1ab_0 + - typing-extensions=4.9.0=hd8ed1ab_0 - virtualenv=20.25.0=pyhd8ed1ab_0 - arpack=3.8.0=nompi_ha3438d0_101 - clangxx=15.0.7=default_h5c94ee4_4 @@ -181,12 +183,12 @@ dependencies: - blas=2.120=openblas - compiler-rt=15.0.7=h3808999_2 - rw=0.9=h93a5062_1 - - clang_impl_osx-arm64=15.0.7=h77e971b_6 - - clang_osx-arm64=15.0.7=h54d7cd3_6 + - clang_impl_osx-arm64=15.0.7=h77e971b_7 + - clang_osx-arm64=15.0.7=h54d7cd3_7 - c-compiler=1.6.0=hd291e01_0 - - clangxx_impl_osx-arm64=15.0.7=h768a7fd_6 + - clangxx_impl_osx-arm64=15.0.7=h768a7fd_7 - gfortran_osx-arm64=12.3.0=h57527a5_1 - - clangxx_osx-arm64=15.0.7=h77e971b_6 + - clangxx_osx-arm64=15.0.7=h54d7cd3_7 - gfortran=12.3.0=h1ca8e4b_1 - cxx-compiler=1.6.0=h1995070_0 - fortran-compiler=1.6.0=h5a50232_0 diff --git a/environment-3.11-macos.yml b/environment-3.11-macos.yml index 01e568a57f9..ef8f61ae105 100644 --- a/environment-3.11-macos.yml +++ b/environment-3.11-macos.yml @@ -1,13 +1,13 @@ # Generated by conda-lock. # platform: osx-64 -# input_hash: da2a77e51c281a50b6dd757e7215ac9e7dd40d041e6a3a64295ae0aaf0bc8779 +# input_hash: c414a61753a482aff55ab87bae06265cf677b67d01af57f18343ef2059381222 channels: - conda-forge dependencies: - bc=1.07.1=h0d85af4_0 - bzip2=1.0.8=h10d778d_5 - - c-ares=1.23.0=h10d778d_0 + - c-ares=1.24.0=h10d778d_0 - ca-certificates=2023.11.17=h8857fd0_0 - cliquer=1.22=hbcb3906_0 - font-ttf-dejavu-sans-mono=2.37=hab24e00_0 @@ -17,14 +17,14 @@ dependencies: - giflib=5.2.1=hb7f2c08_3 - icu=73.2=hf5e326d_0 - libatomic_ops=7.6.14=hb7f2c08_0 - - libboost-headers=1.83.0=h694c41f_0 + - libboost-headers=1.84.0=h694c41f_0 - libcxx=16.0.6=hd57cbcb_0 - libdeflate=1.19=ha4e1b8e_0 - - libev=4.33=haf1e3a3_1 + - 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=hac89ed1_0 + - libiconv=1.17=hd75f5a5_2 - libjpeg-turbo=3.0.0=h0dc2134_1 - libsodium=1.0.18=hbcb3906_1 - libtool=2.4.7=hf0c8a7f_0 @@ -86,13 +86,13 @@ dependencies: - freetype=2.12.1=h60636b9_2 - givaro=4.1.1=h0a799c6_3 - glpk=5.0=h3cb5acd_0 - - libboost=1.83.0=hf44e908_0 + - libboost=1.84.0=h5b2dd29_0 - libedit=3.1.20191231=h0678c8f_2 - libgfortran=5.0.0=13_2_0_h97931a8_1 - libhomfly=1.02r6=hc929b4f_0 - libhwloc=2.9.3=default_h24e0189_1009 - libllvm15=15.0.7=he4b1e75_3 - - libnghttp2=1.58.0=h64cf6d3_0 + - libnghttp2=1.58.0=h64cf6d3_1 - libssh2=1.11.0=hd019ec5_0 - libtiff=4.6.0=h684deea_2 - m4ri=20140914=h3f75d11_1005 @@ -105,10 +105,11 @@ dependencies: - texinfo=7.0=pl5321hc47821c_0 - ecl=21.2.1=hd029580_2 - 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 - ld64_osx-64=609=h0fd476b_15 - - libboost-devel=1.83.0=h7728843_0 + - libboost-devel=1.84.0=h7728843_0 - libbrial=1.2.12=h8d08345_1 - libclang-cpp15=15.0.7=default_h6b1ee41_4 - libflint=3.0.1=h5d15de0_ntl_100 @@ -120,29 +121,30 @@ dependencies: - mpfi=1.5.4=h52b28e3_1001 - pari=2.15.4=h93f793c_2_pthread - ppl=1.2=ha60d53e_1006 - - python=3.11.6=h30d4d87_0_cpython + - python=3.11.7=h9f0c242_0_cpython - qd=2.3.22=h2beb688_1004 - sqlite=3.44.2=h7461747_0 - tbb=2021.11.0=he51d815_0 - appdirs=1.4.4=pyh9f0ad1d_0 - - boost-cpp=1.83.0=h07eb623_0 + - boost-cpp=1.84.0=h07eb623_0 - brial=1.2.12=pyh694c41f_1 - cachetools=5.3.2=pyhd8ed1ab_0 - cctools_osx-64=973.0.1=habff3f6_15 - chardet=5.2.0=py311h6eed73b_1 - clang-15=15.0.7=default_h6b1ee41_4 - colorama=0.4.6=pyhd8ed1ab_0 - - distlib=0.3.7=pyhd8ed1ab_0 - - eclib=20230424=h563f520_1 + - distlib=0.3.8=pyhd8ed1ab_0 + - eclib=20231211=h02435c3_0 - filelock=3.13.1=pyhd8ed1ab_0 - fplll=5.4.5=hb7981ad_0 + - gap-defaults=4.12.2=h694c41f_3 - gfortran_impl_osx-64=12.3.0=h54fd467_1 - lcalc=2.0.5=h3a941db_1 - ld64=609=ha91a046_15 - libblas=3.9.0=20_osx64_openblas - libcurl=8.5.0=h726d00d_0 - libgd=2.3.3=h0dceb68_9 - - maxima=5.47.0=h2b27fa8_0 + - maxima=5.47.0=h2b27fa8_1 - openblas=0.3.25=openmp_h6794695_0 - packaging=23.2=pyhd8ed1ab_0 - platformdirs=4.1.0=pyhd8ed1ab_0 @@ -150,17 +152,17 @@ dependencies: - singular=4.3.2.p8=h0d51a9f_1 - sympow=2.023.6=h115ba6a_3 - tomli=2.0.1=pyhd8ed1ab_0 - - typing_extensions=4.8.0=pyha770c72_0 + - typing_extensions=4.9.0=pyha770c72_0 - zipp=3.17.0=pyhd8ed1ab_0 - cctools=973.0.1=hd9ad811_15 - clang=15.0.7=hac416ee_4 - - cmake=3.28.0=hc7ee4c4_0 + - cmake=3.28.1=h7c85d92_0 - curl=8.5.0=h726d00d_0 - importlib-metadata=7.0.0=pyha770c72_0 - libcblas=3.9.0=20_osx64_openblas - liblapack=3.9.0=20_osx64_openblas - pyproject-api=1.6.1=pyhd8ed1ab_0 - - typing-extensions=4.8.0=hd8ed1ab_0 + - typing-extensions=4.9.0=hd8ed1ab_0 - virtualenv=20.25.0=pyhd8ed1ab_0 - arpack=3.8.0=nompi_hb44a6d1_101 - clangxx=15.0.7=default_h6b1ee41_4 @@ -179,12 +181,12 @@ dependencies: - blas=2.120=openblas - compiler-rt=15.0.7=ha38d28d_2 - rw=0.9=h10d778d_1 - - clang_impl_osx-64=15.0.7=h03d6864_6 - - clang_osx-64=15.0.7=hb91bd55_6 + - clang_impl_osx-64=15.0.7=h03d6864_7 + - clang_osx-64=15.0.7=hb91bd55_7 - c-compiler=1.6.0=h63c33a9_0 - - clangxx_impl_osx-64=15.0.7=h3d2d1bf_6 + - clangxx_impl_osx-64=15.0.7=h2133e9c_7 - gfortran_osx-64=12.3.0=h18f7dce_1 - - clangxx_osx-64=15.0.7=h655633e_6 + - clangxx_osx-64=15.0.7=hb91bd55_7 - gfortran=12.3.0=h2c809b3_1 - cxx-compiler=1.6.0=h1c7c39f_0 - fortran-compiler=1.6.0=h932d759_0 diff --git a/environment-3.9-linux-aarch64.yml b/environment-3.9-linux-aarch64.yml index 9dbb8a65228..c2da7aea87e 100644 --- a/environment-3.9-linux-aarch64.yml +++ b/environment-3.9-linux-aarch64.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: linux-aarch64 -# input_hash: 6667164ad6dcd7f0b7dbfb684bc0a01406a5da9b25928da4a1f239d8db3f1a9a +# input_hash: 70b2f23f8a2b05ec79ac23924915beb69ebb635c251d734ff9f56f4a04efa69b channels: - conda-forge @@ -37,7 +37,7 @@ dependencies: - bc=1.07.1=hf897c2e_0 - bdw-gc=8.0.6=hd62202e_0 - bzip2=1.0.8=h31becfc_5 - - c-ares=1.23.0=h31becfc_0 + - c-ares=1.24.0=h31becfc_0 - cliquer=1.22=hb9de7d4_0 - gengetopt=2.23=h01db608_0 - gf2x=1.3.0=h1b3b3a3_2 @@ -50,11 +50,11 @@ dependencies: - libatomic_ops=7.6.14=h4e544f5_0 - libbraiding=1.2=hd600fc2_0 - libdeflate=1.17=hb4cce97_0 - - libev=4.33=h516909a_1 + - libev=4.33=h31becfc_2 - libexpat=2.5.0=hd600fc2_1 - libffi=3.4.2=h3557bc0_5 - libgfortran5=13.2.0=h582850c_3 - - libiconv=1.17=h9cdd2b7_0 + - libiconv=1.17=h31becfc_2 - libnsl=2.0.1=h31becfc_0 - libsanitizer=12.3.0=h8ebda82_3 - libsodium=1.0.18=hb9de7d4_1 @@ -89,7 +89,7 @@ dependencies: - libedit=3.1.20191231=he28a2e2_2 - libgfortran-ng=13.2.0=he9431aa_3 - libhomfly=1.02r6=hb9de7d4_0 - - libnghttp2=1.58.0=hb0e430d_0 + - libnghttp2=1.58.0=hb0e430d_1 - libpng=1.6.39=hf9034f9_0 - libsqlite=3.44.2=h194ca79_0 - libssh2=1.11.0=h492db2e_0 @@ -107,6 +107,7 @@ dependencies: - autoconf=2.71=pl5321h2148fe1_1 - ecl=21.2.1=haa44c19_2 - 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 @@ -135,11 +136,12 @@ dependencies: - cachetools=5.3.2=pyhd8ed1ab_0 - chardet=5.2.0=py39ha65689a_1 - colorama=0.4.6=pyhd8ed1ab_0 - - distlib=0.3.7=pyhd8ed1ab_0 - - eclib=20230424=he26bab5_1 + - distlib=0.3.8=pyhd8ed1ab_0 + - eclib=20231211=he26bab5_0 - filelock=3.13.1=pyhd8ed1ab_0 - fontconfig=2.14.2=ha9a116f_0 - fplll=5.4.5=hb3a790e_0 + - gap-defaults=4.12.2=h8af1aa0_3 - gfortran=12.3.0=h8d4031d_2 - gfortran_linux-aarch64=12.3.0=h1993883_2 - gxx=12.3.0=hc1b51f9_2 @@ -151,7 +153,7 @@ dependencies: - libcurl=8.5.0=h4e8248e_0 - libwebp=1.2.4=h7bdf6e5_1 - m4rie=20150908=h75e8696_1001 - - maxima=5.47.0=h6475f26_0 + - maxima=5.47.0=h6475f26_1 - openblas=0.3.25=pthreads_h339cbfa_0 - packaging=23.2=pyhd8ed1ab_0 - platformdirs=4.1.0=pyhd8ed1ab_0 @@ -160,11 +162,11 @@ dependencies: - sympow=2.023.6=h157afb5_3 - tbb=2021.11.0=h2a328a1_0 - tomli=2.0.1=pyhd8ed1ab_0 - - typing_extensions=4.8.0=pyha770c72_0 + - typing_extensions=4.9.0=pyha770c72_0 - zipp=3.17.0=pyhd8ed1ab_0 - boost-cpp=1.82.0=h62f3a30_2 - brial=1.2.12=pyh694c41f_1 - - cmake=3.28.0=hef020d8_0 + - cmake=3.28.1=hef020d8_0 - curl=8.5.0=h4e8248e_0 - cxx-compiler=1.6.0=h2a328a1_0 - fortran-compiler=1.6.0=h7048d53_0 @@ -173,7 +175,7 @@ dependencies: - libgd=2.3.3=h5fc1a20_5 - liblapack=3.9.0=20_linuxaarch64_openblas - pyproject-api=1.6.1=pyhd8ed1ab_0 - - typing-extensions=4.8.0=hd8ed1ab_0 + - typing-extensions=4.9.0=hd8ed1ab_0 - virtualenv=20.25.0=pyhd8ed1ab_0 - arpack=3.8.0=nompi_h32ff4ca_101 - compilers=1.6.0=h8af1aa0_0 diff --git a/environment-3.9-linux.yml b/environment-3.9-linux.yml index 531bc6f18bf..c55a598b418 100644 --- a/environment-3.9-linux.yml +++ b/environment-3.9-linux.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: 2ef4dd023869f21655e2f64fd76ca46bf820fcae4e860986d00e7a1efdbf63b2 +# input_hash: ba5fc0af91cfb5f74e6801a1c083cd560614350865558c7a0a5e3e6a17073d67 channels: - conda-forge @@ -13,7 +13,7 @@ dependencies: - font-ttf-ubuntu=0.83=h77eed37_1 - kernel-headers_linux-64=2.6.32=he073ed8_16 - ld_impl_linux-64=2.40=h41732ed_0 - - libboost-headers=1.83.0=ha770c72_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 @@ -37,7 +37,7 @@ dependencies: - bc=1.07.1=h7f98852_0 - bdw-gc=8.0.6=h4bd325d_0 - bzip2=1.0.8=hd590300_5 - - c-ares=1.23.0=hd590300_0 + - c-ares=1.24.0=hd590300_0 - cliquer=1.22=h36c2ea0_0 - gengetopt=2.23=h9c3ff4c_0 - gf2x=1.3.0=ha476b99_2 @@ -49,11 +49,11 @@ dependencies: - libatomic_ops=7.6.14=h166bdaf_0 - libbraiding=1.2=hcb278e6_0 - libdeflate=1.19=hd590300_0 - - libev=4.33=h516909a_1 + - libev=4.33=hd590300_2 - libexpat=2.5.0=hcb278e6_1 - libffi=3.4.2=h7f98852_5 - libgfortran5=13.2.0=ha4646dd_3 - - libiconv=1.17=h166bdaf_0 + - libiconv=1.17=hd590300_2 - libjpeg-turbo=3.0.0=hd590300_1 - libnsl=2.0.1=hd590300_0 - libsanitizer=12.3.0=h0f45ef3_3 @@ -89,7 +89,7 @@ dependencies: - libedit=3.1.20191231=he28a2e2_2 - libgfortran-ng=13.2.0=h69a702a_3 - libhomfly=1.02r6=h36c2ea0_0 - - libnghttp2=1.58.0=h47da74e_0 + - libnghttp2=1.58.0=h47da74e_1 - libpng=1.6.39=h753d276_0 - libsqlite=3.44.2=h2797004_0 - libssh2=1.11.0=h0841786_0 @@ -107,13 +107,14 @@ dependencies: - autoconf=2.71=pl5321h2b4cb7a_1 - ecl=21.2.1=h9d73b02_2 - 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 - krb5=1.21.2=h659d440_0 - - libboost=1.83.0=h6fcfa73_0 + - libboost=1.84.0=h6fcfa73_0 - libflint=3.0.1=h5f2e117_ntl_100 - libhwloc=2.9.3=default_h554bfaf_1009 - libopenblas=0.3.25=pthreads_h413a1c8_0 @@ -135,23 +136,24 @@ dependencies: - cachetools=5.3.2=pyhd8ed1ab_0 - chardet=5.2.0=py39hf3d152e_1 - colorama=0.4.6=pyhd8ed1ab_0 - - distlib=0.3.7=pyhd8ed1ab_0 - - eclib=20230424=h96f522a_1 + - distlib=0.3.8=pyhd8ed1ab_0 + - eclib=20231211=h96f522a_0 - filelock=3.13.1=pyhd8ed1ab_0 - fontconfig=2.14.2=h14ed4e7_0 - fplll=5.4.5=h384768b_0 + - gap-defaults=4.12.2=ha770c72_3 - gfortran=12.3.0=h499e0f7_2 - gfortran_linux-64=12.3.0=h7fe76b4_2 - gxx=12.3.0=h8d2909c_2 - gxx_linux-64=12.3.0=h8a814eb_2 - lcalc=2.0.5=h6a8a7c6_1 - libblas=3.9.0=20_linux64_openblas - - libboost-devel=1.83.0=h00ab1b0_0 + - libboost-devel=1.84.0=h00ab1b0_0 - libbrial=1.2.12=h3155cbd_1 - libcurl=8.5.0=hca28451_0 - libwebp=1.3.2=h658648e_1 - m4rie=20150908=h7ca028e_1001 - - maxima=5.47.0=hed6455c_0 + - maxima=5.47.0=hed6455c_1 - openblas=0.3.25=pthreads_h7a3da1a_0 - packaging=23.2=pyhd8ed1ab_0 - platformdirs=4.1.0=pyhd8ed1ab_0 @@ -160,11 +162,11 @@ dependencies: - sympow=2.023.6=hc6ab17c_3 - tbb=2021.11.0=h00ab1b0_0 - tomli=2.0.1=pyhd8ed1ab_0 - - typing_extensions=4.8.0=pyha770c72_0 + - typing_extensions=4.9.0=pyha770c72_0 - zipp=3.17.0=pyhd8ed1ab_0 - - boost-cpp=1.83.0=h44aadfe_0 + - boost-cpp=1.84.0=h44aadfe_0 - brial=1.2.12=pyh694c41f_1 - - cmake=3.28.0=hcfe8598_0 + - cmake=3.28.1=hcfe8598_0 - curl=8.5.0=hca28451_0 - cxx-compiler=1.6.0=h00ab1b0_0 - fortran-compiler=1.6.0=heb67821_0 @@ -173,7 +175,7 @@ dependencies: - libgd=2.3.3=h119a65a_9 - liblapack=3.9.0=20_linux64_openblas - pyproject-api=1.6.1=pyhd8ed1ab_0 - - typing-extensions=4.8.0=hd8ed1ab_0 + - typing-extensions=4.9.0=hd8ed1ab_0 - virtualenv=20.25.0=pyhd8ed1ab_0 - arpack=3.8.0=nompi_h0baa96a_101 - compilers=1.6.0=ha770c72_0 diff --git a/environment-3.9-macos-arm64.yml b/environment-3.9-macos-arm64.yml index 2e36c35dbbd..74a07bdf3c6 100644 --- a/environment-3.9-macos-arm64.yml +++ b/environment-3.9-macos-arm64.yml @@ -1,13 +1,13 @@ # Generated by conda-lock. # platform: osx-arm64 -# input_hash: 2b521bcf5e786489f8eaca3871625a85979186528995e66766751bf3a5649f4d +# input_hash: fafb126c04be34667718c9e061b759cbac08d0f055489f6fd6aeea5bea043e01 channels: - conda-forge dependencies: - bc=1.07.1=h3422bc3_0 - bzip2=1.0.8=h93a5062_5 - - c-ares=1.23.0=h93a5062_0 + - c-ares=1.24.0=h93a5062_0 - ca-certificates=2023.11.17=hf0a4a13_0 - cliquer=1.22=h27ca646_0 - font-ttf-dejavu-sans-mono=2.37=hab24e00_0 @@ -21,11 +21,11 @@ dependencies: - libboost-headers=1.82.0=hce30654_2 - libcxx=16.0.6=h4653b0c_0 - libdeflate=1.17=h1a8c8d9_0 - - libev=4.33=h642e427_1 + - 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=he4db4b2_0 + - libiconv=1.17=h0d3ecfb_2 - libsodium=1.0.18=h27ca646_1 - libtool=2.4.7=hb7217d7_0 - libuv=1.46.0=hb547adb_0 @@ -93,7 +93,7 @@ dependencies: - libhomfly=1.02r6=h27ca646_0 - libhwloc=2.9.3=default_h4394839_1009 - libllvm15=15.0.7=h504e6bf_3 - - libnghttp2=1.58.0=ha4dd798_0 + - libnghttp2=1.58.0=ha4dd798_1 - libssh2=1.11.0=h7a5bd25_0 - libtiff=4.5.0=h5dffbdd_2 - m4ri=20140914=h17b34a0_1005 @@ -106,6 +106,7 @@ dependencies: - texinfo=7.0=pl5321h9ea1dce_0 - 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 - ld64_osx-arm64=609=hc4dc95b_15 @@ -134,10 +135,11 @@ dependencies: - chardet=5.2.0=py39h2804cbe_1 - clang-15=15.0.7=default_hd209bcb_4 - colorama=0.4.6=pyhd8ed1ab_0 - - distlib=0.3.7=pyhd8ed1ab_0 - - eclib=20230424=h8fe5691_1 + - distlib=0.3.8=pyhd8ed1ab_0 + - eclib=20231211=h7f07de4_0 - filelock=3.13.1=pyhd8ed1ab_0 - fplll=5.4.5=hb7d509d_0 + - gap-defaults=4.12.2=hce30654_3 - gfortran_impl_osx-arm64=12.3.0=hbbb9e1e_1 - lcalc=2.0.5=hc94e8e6_1 - ld64=609=h89fa09d_15 @@ -152,17 +154,17 @@ dependencies: - singular=4.3.2.p8=hb460b52_1 - sympow=2.023.6=hb0babe8_3 - tomli=2.0.1=pyhd8ed1ab_0 - - typing_extensions=4.8.0=pyha770c72_0 + - typing_extensions=4.9.0=pyha770c72_0 - zipp=3.17.0=pyhd8ed1ab_0 - cctools=973.0.1=hd1ac623_15 - clang=15.0.7=haab561b_4 - - cmake=3.28.0=h04763b9_0 + - cmake=3.28.1=h50fd54c_0 - curl=8.5.0=h2d989ff_0 - importlib-metadata=7.0.0=pyha770c72_0 - libcblas=3.9.0=20_osxarm64_openblas - liblapack=3.9.0=20_osxarm64_openblas - pyproject-api=1.6.1=pyhd8ed1ab_0 - - typing-extensions=4.8.0=hd8ed1ab_0 + - typing-extensions=4.9.0=hd8ed1ab_0 - virtualenv=20.25.0=pyhd8ed1ab_0 - arpack=3.8.0=nompi_ha3438d0_101 - clangxx=15.0.7=default_h5c94ee4_4 @@ -181,12 +183,12 @@ dependencies: - blas=2.120=openblas - compiler-rt=15.0.7=h3808999_2 - rw=0.9=h93a5062_1 - - clang_impl_osx-arm64=15.0.7=h77e971b_6 - - clang_osx-arm64=15.0.7=h54d7cd3_6 + - clang_impl_osx-arm64=15.0.7=h77e971b_7 + - clang_osx-arm64=15.0.7=h54d7cd3_7 - c-compiler=1.6.0=hd291e01_0 - - clangxx_impl_osx-arm64=15.0.7=h768a7fd_6 + - clangxx_impl_osx-arm64=15.0.7=h768a7fd_7 - gfortran_osx-arm64=12.3.0=h57527a5_1 - - clangxx_osx-arm64=15.0.7=h77e971b_6 + - clangxx_osx-arm64=15.0.7=h54d7cd3_7 - gfortran=12.3.0=h1ca8e4b_1 - cxx-compiler=1.6.0=h1995070_0 - fortran-compiler=1.6.0=h5a50232_0 diff --git a/environment-3.9-macos.yml b/environment-3.9-macos.yml index 69b435f8bcf..190eafb93df 100644 --- a/environment-3.9-macos.yml +++ b/environment-3.9-macos.yml @@ -1,13 +1,13 @@ # Generated by conda-lock. # platform: osx-64 -# input_hash: 84bd6e0bbd90b889d72863805daec533480aa03f02b48b70d725a14ebe2633e3 +# input_hash: 4bed5f84e93b1b95b037e4567144320b5e9d9bad1d777aaf95e27f9852080052 channels: - conda-forge dependencies: - bc=1.07.1=h0d85af4_0 - bzip2=1.0.8=h10d778d_5 - - c-ares=1.23.0=h10d778d_0 + - c-ares=1.24.0=h10d778d_0 - ca-certificates=2023.11.17=h8857fd0_0 - cliquer=1.22=hbcb3906_0 - font-ttf-dejavu-sans-mono=2.37=hab24e00_0 @@ -17,14 +17,14 @@ dependencies: - giflib=5.2.1=hb7f2c08_3 - icu=73.2=hf5e326d_0 - libatomic_ops=7.6.14=hb7f2c08_0 - - libboost-headers=1.83.0=h694c41f_0 + - libboost-headers=1.84.0=h694c41f_0 - libcxx=16.0.6=hd57cbcb_0 - libdeflate=1.19=ha4e1b8e_0 - - libev=4.33=haf1e3a3_1 + - 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=hac89ed1_0 + - libiconv=1.17=hd75f5a5_2 - libjpeg-turbo=3.0.0=h0dc2134_1 - libsodium=1.0.18=hbcb3906_1 - libtool=2.4.7=hf0c8a7f_0 @@ -86,13 +86,13 @@ dependencies: - freetype=2.12.1=h60636b9_2 - givaro=4.1.1=h0a799c6_3 - glpk=5.0=h3cb5acd_0 - - libboost=1.83.0=hf44e908_0 + - libboost=1.84.0=h5b2dd29_0 - libedit=3.1.20191231=h0678c8f_2 - libgfortran=5.0.0=13_2_0_h97931a8_1 - libhomfly=1.02r6=hc929b4f_0 - libhwloc=2.9.3=default_h24e0189_1009 - libllvm15=15.0.7=he4b1e75_3 - - libnghttp2=1.58.0=h64cf6d3_0 + - libnghttp2=1.58.0=h64cf6d3_1 - libssh2=1.11.0=hd019ec5_0 - libtiff=4.6.0=h684deea_2 - m4ri=20140914=h3f75d11_1005 @@ -105,10 +105,11 @@ dependencies: - texinfo=7.0=pl5321hc47821c_0 - ecl=21.2.1=hd029580_2 - 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 - ld64_osx-64=609=h0fd476b_15 - - libboost-devel=1.83.0=h7728843_0 + - libboost-devel=1.84.0=h7728843_0 - libbrial=1.2.12=h8d08345_1 - libclang-cpp15=15.0.7=default_h6b1ee41_4 - libflint=3.0.1=h5d15de0_ntl_100 @@ -125,24 +126,25 @@ dependencies: - sqlite=3.44.2=h7461747_0 - tbb=2021.11.0=he51d815_0 - appdirs=1.4.4=pyh9f0ad1d_0 - - boost-cpp=1.83.0=h07eb623_0 + - boost-cpp=1.84.0=h07eb623_0 - brial=1.2.12=pyh694c41f_1 - cachetools=5.3.2=pyhd8ed1ab_0 - cctools_osx-64=973.0.1=habff3f6_15 - chardet=5.2.0=py39h6e9494a_1 - clang-15=15.0.7=default_h6b1ee41_4 - colorama=0.4.6=pyhd8ed1ab_0 - - distlib=0.3.7=pyhd8ed1ab_0 - - eclib=20230424=h563f520_1 + - distlib=0.3.8=pyhd8ed1ab_0 + - eclib=20231211=h02435c3_0 - filelock=3.13.1=pyhd8ed1ab_0 - fplll=5.4.5=hb7981ad_0 + - gap-defaults=4.12.2=h694c41f_3 - gfortran_impl_osx-64=12.3.0=h54fd467_1 - lcalc=2.0.5=h3a941db_1 - ld64=609=ha91a046_15 - libblas=3.9.0=20_osx64_openblas - libcurl=8.5.0=h726d00d_0 - libgd=2.3.3=h0dceb68_9 - - maxima=5.47.0=h2b27fa8_0 + - maxima=5.47.0=h2b27fa8_1 - openblas=0.3.25=openmp_h6794695_0 - packaging=23.2=pyhd8ed1ab_0 - platformdirs=4.1.0=pyhd8ed1ab_0 @@ -150,17 +152,17 @@ dependencies: - singular=4.3.2.p8=h0d51a9f_1 - sympow=2.023.6=h115ba6a_3 - tomli=2.0.1=pyhd8ed1ab_0 - - typing_extensions=4.8.0=pyha770c72_0 + - typing_extensions=4.9.0=pyha770c72_0 - zipp=3.17.0=pyhd8ed1ab_0 - cctools=973.0.1=hd9ad811_15 - clang=15.0.7=hac416ee_4 - - cmake=3.28.0=hc7ee4c4_0 + - cmake=3.28.1=h7c85d92_0 - curl=8.5.0=h726d00d_0 - importlib-metadata=7.0.0=pyha770c72_0 - libcblas=3.9.0=20_osx64_openblas - liblapack=3.9.0=20_osx64_openblas - pyproject-api=1.6.1=pyhd8ed1ab_0 - - typing-extensions=4.8.0=hd8ed1ab_0 + - typing-extensions=4.9.0=hd8ed1ab_0 - virtualenv=20.25.0=pyhd8ed1ab_0 - arpack=3.8.0=nompi_hb44a6d1_101 - clangxx=15.0.7=default_h6b1ee41_4 @@ -179,12 +181,12 @@ dependencies: - blas=2.120=openblas - compiler-rt=15.0.7=ha38d28d_2 - rw=0.9=h10d778d_1 - - clang_impl_osx-64=15.0.7=h03d6864_6 - - clang_osx-64=15.0.7=hb91bd55_6 + - clang_impl_osx-64=15.0.7=h03d6864_7 + - clang_osx-64=15.0.7=hb91bd55_7 - c-compiler=1.6.0=h63c33a9_0 - - clangxx_impl_osx-64=15.0.7=h3d2d1bf_6 + - clangxx_impl_osx-64=15.0.7=h2133e9c_7 - gfortran_osx-64=12.3.0=h18f7dce_1 - - clangxx_osx-64=15.0.7=h655633e_6 + - clangxx_osx-64=15.0.7=hb91bd55_7 - gfortran=12.3.0=h2c809b3_1 - cxx-compiler=1.6.0=h1c7c39f_0 - fortran-compiler=1.6.0=h932d759_0 diff --git a/src/environment-3.10-linux-aarch64.yml b/src/environment-3.10-linux-aarch64.yml index 616adb7a900..16debf6c05b 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: 3ffb496593bc6d233838b980061f7a4a52e8e9d60918b138f90363ec74ab34d9 +# input_hash: 8f25fe2693d1d27aa5fa5c6d97b0a627bb1a435fcf25aa1b3ccba79e2b621314 channels: - conda-forge @@ -44,7 +44,7 @@ dependencies: - bc=1.07.1=hf897c2e_0 - bdw-gc=8.0.6=hd62202e_0 - bzip2=1.0.8=h31becfc_5 - - c-ares=1.23.0=h31becfc_0 + - c-ares=1.24.0=h31becfc_0 - cliquer=1.22=hb9de7d4_0 - fribidi=1.0.10=hb9de7d4_0 - gengetopt=2.23=h01db608_0 @@ -61,11 +61,11 @@ dependencies: - libbraiding=1.2=hd600fc2_0 - libbrotlicommon=1.1.0=h31becfc_1 - libdeflate=1.17=hb4cce97_0 - - libev=4.33=h516909a_1 + - libev=4.33=h31becfc_2 - libexpat=2.5.0=hd600fc2_1 - libffi=3.4.2=h3557bc0_5 - libgfortran5=13.2.0=h582850c_3 - - libiconv=1.17=h9cdd2b7_0 + - libiconv=1.17=h31becfc_2 - libnsl=2.0.1=h31becfc_0 - libsanitizer=12.3.0=h8ebda82_3 - libsodium=1.0.18=hb9de7d4_1 @@ -115,7 +115,7 @@ dependencies: - libedit=3.1.20191231=he28a2e2_2 - libgfortran-ng=13.2.0=he9431aa_3 - libhomfly=1.02r6=hb9de7d4_0 - - libnghttp2=1.58.0=hb0e430d_0 + - libnghttp2=1.58.0=hb0e430d_1 - libpng=1.6.39=hf9034f9_0 - libsqlite=3.44.2=h194ca79_0 - libssh2=1.11.0=h492db2e_0 @@ -171,7 +171,6 @@ dependencies: - appnope=0.1.3=pyhd8ed1ab_0 - attrs=23.1.0=pyh71513ae_1 - automake=1.16.5=pl5321h8af1aa0_0 - - backcall=0.2.0=pyh9f0ad1d_0 - brotli=1.1.0=h31becfc_1 - brotli-python=1.1.0=py310hbb3657e_1 - c-compiler=1.6.0=h31becfc_0 @@ -181,15 +180,16 @@ dependencies: - chardet=5.2.0=py310hbbe02a8_1 - charset-normalizer=3.3.2=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_0 + - conway-polynomials=0.8=pyhd8ed1ab_0 - cycler=0.12.1=pyhd8ed1ab_0 - cysignals=1.11.2=py310h485802a_3 - - cython=3.0.6=py310hbb3657e_0 + - cython=3.0.7=py310hbb3657e_0 - debugpy=1.8.0=py310hbb3657e_1 - decorator=5.1.1=pyhd8ed1ab_0 - defusedxml=0.7.1=pyhd8ed1ab_0 - - distlib=0.3.7=pyhd8ed1ab_0 + - distlib=0.3.8=pyhd8ed1ab_0 - docutils=0.20.1=py310hbbe02a8_3 - - eclib=20230424=he26bab5_1 + - eclib=20231211=he26bab5_0 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 - exceptiongroup=1.2.0=pyhd8ed1ab_0 @@ -221,7 +221,7 @@ dependencies: - libwebp=1.2.4=h7bdf6e5_1 - m4rie=20150908=h75e8696_1001 - markupsafe=2.1.3=py310h7c1f4a2_1 - - maxima=5.47.0=h6475f26_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 @@ -232,7 +232,7 @@ dependencies: - packaging=23.2=pyhd8ed1ab_0 - pandocfilters=1.5.0=pyhd8ed1ab_0 - parso=0.8.3=pyhd8ed1ab_0 - - pathspec=0.11.2=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 @@ -240,7 +240,7 @@ dependencies: - pluggy=1.3.0=pyhd8ed1ab_0 - ply=3.11=py_1 - prometheus_client=0.19.0=pyhd8ed1ab_0 - - psutil=5.9.5=py310hb299538_1 + - psutil=5.9.7=py310hb299538_0 - ptyprocess=0.7.0=pyhd3deb0d_0 - pure_eval=0.2.2=pyhd8ed1ab_0 - py=1.11.0=pyh6c4a22f_0 @@ -258,7 +258,7 @@ dependencies: - pyyaml=6.0.1=py310hb299538_1 - pyzmq=25.1.2=py310h014ca53_0 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.13.2=py310h057607a_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 @@ -277,7 +277,7 @@ dependencies: - traitlets=5.14.0=pyhd8ed1ab_0 - trove-classifiers=2023.11.29=pyhd8ed1ab_0 - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 - - typing_extensions=4.8.0=pyha770c72_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 @@ -293,10 +293,10 @@ dependencies: - xorg-libxrender=0.9.10=h3557bc0_1003 - xorg-libxt=1.3.0=h7935292_0 - zipp=3.17.0=pyhd8ed1ab_0 - - anyio=4.1.0=pyhd8ed1ab_0 + - anyio=4.2.0=pyhd8ed1ab_0 - asttokens=2.4.1=pyhd8ed1ab_0 - async-lru=2.0.4=pyhd8ed1ab_0 - - babel=2.13.1=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 @@ -311,13 +311,13 @@ dependencies: - cxx-compiler=1.6.0=h2a328a1_0 - cypari2=2.1.3=py310h4cbba44_2 - deprecation=2.1.0=pyh9f0ad1d_0 - - fonttools=4.46.0=py310hb299538_0 + - fonttools=4.47.0=py310hb299538_0 - fortran-compiler=1.6.0=h7048d53_0 - importlib-metadata=7.0.0=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.0=py310h4c7bcd0_0 + - jupyter_core=5.5.1=py310h4c7bcd0_0 - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 - libcblas=3.9.0=20_linuxaarch64_openblas - libgd=2.3.3=h99c6b3b_4 @@ -327,21 +327,20 @@ dependencies: - overrides=7.4.0=pyhd8ed1ab_0 - pexpect=4.8.0=pyh1a96a4e_2 - pillow=9.4.0=py310h2843b5e_1 - - pip=23.3.1=pyhd8ed1ab_0 + - pip=23.3.2=pyhd8ed1ab_0 - pplpy=0.8.9=py310hd5c817c_0 - primecountpy=0.1.0=py310h586407a_4 - - prompt-toolkit=3.0.41=pyha770c72_0 + - prompt-toolkit=3.0.42=pyha770c72_0 - pybind11=2.11.1=py310h586407a_2 - pyproject-api=1.6.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 - - sagemath-db-conway-polynomials=0.5.0=h4fd8a4c_1 - sympy=1.12=pypyh9d50eac_103 - terminado=0.18.0=pyh0d859eb_0 - tinycss2=1.2.1=pyhd8ed1ab_0 - - typing-extensions=4.8.0=hd8ed1ab_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 @@ -354,15 +353,15 @@ dependencies: - fqdn=1.5.1=pyhd8ed1ab_0 - gsl=2.7=h294027d_0 - harfbuzz=6.0.0=hbcb8a4f_0 - - hatchling=1.18.0=pyhd8ed1ab_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.4.4=pyhd8ed1ab_1 + - jupyter_server_terminals=0.5.0=pyhd8ed1ab_0 - liblapacke=3.9.0=20_linuxaarch64_openblas - numpy=1.26.2=py310hcbab775_0 - - prompt_toolkit=3.0.41=hd8ed1ab_0 + - prompt_toolkit=3.0.42=hd8ed1ab_0 - requests=2.31.0=pyhd8ed1ab_0 - setuptools-scm=8.0.4=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 @@ -401,12 +400,12 @@ dependencies: - matplotlib=3.8.2=py310hbbe02a8_0 - nbclient=0.8.0=pyhd8ed1ab_0 - rpy2=3.5.11=py310r42h8b6b5fc_3 - - nbconvert-core=7.12.0=pyhd8ed1ab_0 + - nbconvert-core=7.13.0=pyhd8ed1ab_0 - jupyter_server=2.12.1=pyhd8ed1ab_0 - - nbconvert-pandoc=7.12.0=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.12.0=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 diff --git a/src/environment-3.10-linux.yml b/src/environment-3.10-linux.yml index c57440362d5..201bf1c8492 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: a719998689b44191fa498c820b3917e6b24f766a62f723baf7d9bb8a3dbf1c5c +# input_hash: e502ab74c729987e3321c8627f9878529b139e4bdfe7ccc0b5ea7b22177b7ea4 channels: - conda-forge @@ -14,7 +14,7 @@ dependencies: - font-ttf-ubuntu=0.83=h77eed37_1 - kernel-headers_linux-64=2.6.32=he073ed8_16 - ld_impl_linux-64=2.40=h41732ed_0 - - libboost-headers=1.83.0=ha770c72_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 @@ -45,7 +45,7 @@ dependencies: - bc=1.07.1=h7f98852_0 - bdw-gc=8.0.6=h4bd325d_0 - bzip2=1.0.8=hd590300_5 - - c-ares=1.23.0=hd590300_0 + - c-ares=1.24.0=hd590300_0 - cliquer=1.22=h36c2ea0_0 - fribidi=1.0.10=h36c2ea0_0 - gengetopt=2.23=h9c3ff4c_0 @@ -62,11 +62,11 @@ dependencies: - libbraiding=1.2=hcb278e6_0 - libbrotlicommon=1.1.0=hd590300_1 - libdeflate=1.19=hd590300_0 - - libev=4.33=h516909a_1 + - libev=4.33=hd590300_2 - libexpat=2.5.0=hcb278e6_1 - libffi=3.4.2=h7f98852_5 - libgfortran5=13.2.0=ha4646dd_3 - - libiconv=1.17=h166bdaf_0 + - libiconv=1.17=hd590300_2 - libjpeg-turbo=3.0.0=hd590300_1 - libnsl=2.0.1=hd590300_0 - libogg=1.3.4=h7f98852_1 @@ -88,7 +88,7 @@ dependencies: - ncurses=6.4=h59595ed_2 - ninja=1.11.1=h924138e_0 - nspr=4.35=h27087fc_0 - - openssl=3.1.4=hd590300_0 + - openssl=3.2.0=hd590300_1 - palp=2.20=h36c2ea0_0 - patch=2.7.6=h7f98852_1002 - pixman=0.42.2=h59595ed_0 @@ -127,7 +127,7 @@ dependencies: - libgfortran-ng=13.2.0=h69a702a_3 - libgpg-error=1.47=h71f35ed_0 - libhomfly=1.02r6=h36c2ea0_0 - - libnghttp2=1.58.0=h47da74e_0 + - libnghttp2=1.58.0=h47da74e_1 - libpng=1.6.39=h753d276_0 - libsqlite=3.44.2=h2797004_0 - libssh2=1.11.0=h0841786_0 @@ -161,7 +161,7 @@ dependencies: - gfortran_impl_linux-64=12.3.0=hfcedea8_3 - gxx_impl_linux-64=12.3.0=he2b93b0_3 - krb5=1.21.2=h659d440_0 - - libboost=1.83.0=h6fcfa73_0 + - libboost=1.84.0=h6fcfa73_0 - libflint=3.0.1=h5f2e117_ntl_100 - libgcrypt=1.10.3=hd590300_0 - libglib=2.78.3=h783c2da_0 @@ -175,7 +175,7 @@ dependencies: - mpc=1.3.1=hfe3b2da_0 - mpfi=1.5.4=h9f54685_1001 - mysql-libs=8.0.33=hca2cd23_6 - - nss=3.95=h1d7d5a4_0 + - nss=3.96=h1d7d5a4_0 - pandoc=3.1.3=h32600fe_0 - pari=2.15.4=h4d4ae9b_2_pthread - ppl=1.2=h6ec01c2_1006 @@ -195,7 +195,6 @@ dependencies: - appnope=0.1.3=pyhd8ed1ab_0 - attrs=23.1.0=pyh71513ae_1 - automake=1.16.5=pl5321ha770c72_0 - - backcall=0.2.0=pyh9f0ad1d_0 - brotli=1.1.0=hd590300_1 - brotli-python=1.1.0=py310hc6cd4ac_1 - c-compiler=1.6.0=hd590300_0 @@ -205,16 +204,17 @@ dependencies: - chardet=5.2.0=py310hff52083_1 - charset-normalizer=3.3.2=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_0 + - conway-polynomials=0.8=pyhd8ed1ab_0 - cycler=0.12.1=pyhd8ed1ab_0 - cysignals=1.11.2=py310h945e7c7_3 - - cython=3.0.6=py310hc6cd4ac_0 + - cython=3.0.7=py310hc6cd4ac_0 - dbus=1.13.6=h5008d03_3 - debugpy=1.8.0=py310hc6cd4ac_1 - decorator=5.1.1=pyhd8ed1ab_0 - defusedxml=0.7.1=pyhd8ed1ab_0 - - distlib=0.3.7=pyhd8ed1ab_0 + - distlib=0.3.8=pyhd8ed1ab_0 - docutils=0.20.1=py310hff52083_3 - - eclib=20230424=h96f522a_1 + - eclib=20231211=h96f522a_0 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 - exceptiongroup=1.2.0=pyhd8ed1ab_0 @@ -241,17 +241,17 @@ dependencies: - lcalc=2.0.5=h6a8a7c6_1 - lcms2=2.16=hb7c19ff_0 - libblas=3.9.0=20_linux64_openblas - - libboost-devel=1.83.0=h00ab1b0_0 + - libboost-devel=1.84.0=h00ab1b0_0 - libbrial=1.2.12=h3155cbd_1 - libclang13=15.0.7=default_ha2b6cf4_4 - libcups=2.3.3=h4637d8d_4 - - libcurl=8.4.0=hca28451_0 - - libpq=16.1=hfc447b1_0 + - 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 - - maxima=5.47.0=hed6455c_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 @@ -262,7 +262,7 @@ dependencies: - packaging=23.2=pyhd8ed1ab_0 - pandocfilters=1.5.0=pyhd8ed1ab_0 - parso=0.8.3=pyhd8ed1ab_0 - - pathspec=0.11.2=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 @@ -270,7 +270,7 @@ dependencies: - pluggy=1.3.0=pyhd8ed1ab_0 - ply=3.11=py_1 - prometheus_client=0.19.0=pyhd8ed1ab_0 - - psutil=5.9.5=py310h2372a71_1 + - psutil=5.9.7=py310h2372a71_0 - ptyprocess=0.7.0=pyhd3deb0d_0 - pure_eval=0.2.2=pyhd8ed1ab_0 - py=1.11.0=pyh6c4a22f_0 @@ -288,7 +288,7 @@ dependencies: - pyyaml=6.0.1=py310h2372a71_1 - pyzmq=25.1.2=py310h795f18f_0 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.13.2=py310hcb5633a_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 @@ -308,7 +308,7 @@ dependencies: - traitlets=5.14.0=pyhd8ed1ab_0 - trove-classifiers=2023.11.29=pyhd8ed1ab_0 - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 - - typing_extensions=4.8.0=pyha770c72_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 @@ -326,33 +326,33 @@ dependencies: - xorg-libxrender=0.9.11=hd590300_0 - xorg-libxt=1.3.0=hd590300_1 - zipp=3.17.0=pyhd8ed1ab_0 - - anyio=4.1.0=pyhd8ed1ab_0 + - anyio=4.2.0=pyhd8ed1ab_0 - asttokens=2.4.1=pyhd8ed1ab_0 - async-lru=2.0.4=pyhd8ed1ab_0 - - babel=2.13.1=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.83.0=h44aadfe_0 + - boost-cpp=1.84.0=h44aadfe_0 - 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.27.9=hcfe8598_0 + - cmake=3.28.1=hcfe8598_0 - comm=0.1.4=pyhd8ed1ab_0 - cppy=1.2.1=pyhd8ed1ab_0 - - curl=8.4.0=hca28451_0 + - curl=8.5.0=hca28451_0 - cxx-compiler=1.6.0=h00ab1b0_0 - cypari2=2.1.3=py310h14ed79e_2 - deprecation=2.1.0=pyh9f0ad1d_0 - - fonttools=4.46.0=py310h2372a71_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 - importlib_resources=6.1.1=pyhd8ed1ab_0 - jedi=0.19.1=pyhd8ed1ab_0 - jinja2=3.1.2=pyhd8ed1ab_1 - - jupyter_core=5.5.0=py310hff52083_0 + - jupyter_core=5.5.1=py310hff52083_0 - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 - libcblas=3.9.0=20_linux64_openblas - libclang=15.0.7=default_hb11cfb5_4 @@ -364,10 +364,10 @@ dependencies: - overrides=7.4.0=pyhd8ed1ab_0 - pexpect=4.8.0=pyh1a96a4e_2 - pillow=10.1.0=py310h01dd4db_0 - - pip=23.3.1=pyhd8ed1ab_0 + - pip=23.3.2=pyhd8ed1ab_0 - pplpy=0.8.9=py310h28f6eb6_0 - primecountpy=0.1.0=py310hd41b1e2_4 - - prompt-toolkit=3.0.41=pyha770c72_0 + - 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 @@ -375,12 +375,11 @@ dependencies: - pytz-deprecation-shim=0.1.0.post0=py310hff52083_4 - referencing=0.32.0=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - - sagemath-db-conway-polynomials=0.5.0=ha878542_1 - 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.8.0=hd8ed1ab_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 @@ -392,17 +391,17 @@ dependencies: - fflas-ffpack=2.4.3=h912ac81_2 - fqdn=1.5.1=pyhd8ed1ab_0 - gsl=2.7=he838d99_0 - - gstreamer=1.22.7=h98fc4e7_0 + - gstreamer=1.22.8=h98fc4e7_0 - harfbuzz=8.3.0=h3d44ed6_0 - - hatchling=1.18.0=pyhd8ed1ab_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.4.4=pyhd8ed1ab_1 + - jupyter_server_terminals=0.5.0=pyhd8ed1ab_0 - liblapacke=3.9.0=20_linux64_openblas - numpy=1.26.2=py310hb13e2d6_0 - - prompt_toolkit=3.0.41=hd8ed1ab_0 + - prompt_toolkit=3.0.42=hd8ed1ab_0 - pyqt5-sip=12.12.2=py310hc6cd4ac_5 - requests=2.31.0=pyhd8ed1ab_0 - setuptools-scm=8.0.4=pyhd8ed1ab_0 @@ -415,7 +414,7 @@ dependencies: - cvxopt=1.3.2=py310h14a12bf_1 - fpylll=0.6.0=py310h7e26f94_1 - giac=1.9.0.21=h673759e_1 - - gst-plugins-base=1.22.7=h8e1006c_0 + - 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 @@ -445,12 +444,12 @@ dependencies: - pyqt=5.15.9=py310h04931ad_5 - rpy2=3.5.11=py310r43h1f7b6fc_3 - matplotlib=3.8.2=py310hff52083_0 - - nbconvert-core=7.12.0=pyhd8ed1ab_0 + - nbconvert-core=7.13.0=pyhd8ed1ab_0 - jupyter_server=2.12.1=pyhd8ed1ab_0 - - nbconvert-pandoc=7.12.0=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.12.0=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 diff --git a/src/environment-3.10-macos-arm64.yml b/src/environment-3.10-macos-arm64.yml index 406905d68fe..1c71e3f2e43 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: d96fcda1495240cc7965fa57cd2b8fd363d40b0d5141b809a62c28906c8e9e21 +# input_hash: f3a7ade7d121b058758a996f2cb987d66d13e67ba29536d5816c74b35fa3fba8 channels: - conda-forge @@ -8,7 +8,7 @@ dependencies: - _r-mutex=1.0.1=anacondar_1 - bc=1.07.1=h3422bc3_0 - bzip2=1.0.8=h93a5062_5 - - c-ares=1.23.0=h93a5062_0 + - c-ares=1.24.0=h93a5062_0 - ca-certificates=2023.11.17=hf0a4a13_0 - cliquer=1.22=h27ca646_0 - font-ttf-dejavu-sans-mono=2.37=hab24e00_0 @@ -22,11 +22,11 @@ dependencies: - libbrotlicommon=1.1.0=hb547adb_1 - libcxx=16.0.6=h4653b0c_0 - libdeflate=1.17=h1a8c8d9_0 - - libev=4.33=h642e427_1 + - 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=he4db4b2_0 + - libiconv=1.17=h0d3ecfb_2 - libsodium=1.0.18=h27ca646_1 - libtool=2.4.7=hb7217d7_0 - libuv=1.46.0=hb547adb_0 @@ -112,7 +112,7 @@ dependencies: - libgfortran=5.0.0=13_2_0_hd922786_1 - libglib=2.78.1=hd9b11f9_0 - libhomfly=1.02r6=h27ca646_0 - - libnghttp2=1.58.0=ha4dd798_0 + - libnghttp2=1.58.0=ha4dd798_1 - libssh2=1.11.0=h7a5bd25_0 - libtiff=4.5.0=h5dffbdd_2 - libxml2=2.10.3=h67585b2_4 @@ -152,7 +152,6 @@ dependencies: - appdirs=1.4.4=pyh9f0ad1d_0 - appnope=0.1.3=pyhd8ed1ab_0 - attrs=23.1.0=pyh71513ae_1 - - backcall=0.2.0=pyh9f0ad1d_0 - brial=1.2.12=pyh694c41f_1 - brotli-python=1.1.0=py310h1253130_1 - cached_property=1.5.2=pyha770c72_1 @@ -162,15 +161,16 @@ dependencies: - chardet=5.2.0=py310hbe9552e_1 - charset-normalizer=3.3.2=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_0 + - conway-polynomials=0.8=pyhd8ed1ab_0 - cycler=0.12.1=pyhd8ed1ab_0 - cysignals=1.11.2=py310hfd3b3fe_3 - - cython=3.0.6=py310hd5a4765_0 + - cython=3.0.7=py310h692a8b6_0 - debugpy=1.8.0=py310h1253130_1 - decorator=5.1.1=pyhd8ed1ab_0 - defusedxml=0.7.1=pyhd8ed1ab_0 - - distlib=0.3.7=pyhd8ed1ab_0 + - distlib=0.3.8=pyhd8ed1ab_0 - docutils=0.20.1=py310hbe9552e_3 - - eclib=20230424=h8fe5691_1 + - eclib=20231211=h7f07de4_0 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 - exceptiongroup=1.2.0=pyhd8ed1ab_0 @@ -207,7 +207,7 @@ dependencies: - packaging=23.2=pyhd8ed1ab_0 - pandocfilters=1.5.0=pyhd8ed1ab_0 - parso=0.8.3=pyhd8ed1ab_0 - - pathspec=0.11.2=pyhd8ed1ab_0 + - pathspec=0.12.1=pyhd8ed1ab_0 - pickleshare=0.7.5=py_1003 - pillow=9.4.0=py310h5a7539a_1 - pkgconfig=1.5.5=pyhd8ed1ab_4 @@ -216,7 +216,7 @@ dependencies: - pluggy=1.3.0=pyhd8ed1ab_0 - ply=3.11=py_1 - prometheus_client=0.19.0=pyhd8ed1ab_0 - - psutil=5.9.5=py310h2aa6e3c_1 + - psutil=5.9.7=py310hd125d64_0 - ptyprocess=0.7.0=pyhd3deb0d_0 - pure_eval=0.2.2=pyhd8ed1ab_0 - py=1.11.0=pyh6c4a22f_0 @@ -234,7 +234,7 @@ dependencies: - pyyaml=6.0.1=py310h2aa6e3c_1 - pyzmq=25.1.2=py310hbb13138_0 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.13.2=py310hd442715_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 @@ -251,7 +251,7 @@ dependencies: - traitlets=5.14.0=pyhd8ed1ab_0 - trove-classifiers=2023.11.29=pyhd8ed1ab_0 - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 - - typing_extensions=4.8.0=pyha770c72_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 @@ -263,10 +263,10 @@ dependencies: - wheel=0.42.0=pyhd8ed1ab_0 - widgetsnbextension=4.0.9=pyhd8ed1ab_0 - zipp=3.17.0=pyhd8ed1ab_0 - - anyio=4.1.0=pyhd8ed1ab_0 + - anyio=4.2.0=pyhd8ed1ab_0 - asttokens=2.4.1=pyhd8ed1ab_0 - async-lru=2.0.4=pyhd8ed1ab_0 - - babel=2.13.1=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 @@ -280,13 +280,13 @@ dependencies: - curl=8.1.2=h912dcd9_0 - cypari2=2.1.3=py310h13936bf_2 - deprecation=2.1.0=pyh9f0ad1d_0 - - fonttools=4.46.0=py310hd125d64_0 + - fonttools=4.47.0=py310hd125d64_0 - harfbuzz=6.0.0=hddbc195_0 - importlib-metadata=7.0.0=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.0=py310hbe9552e_0 + - jupyter_core=5.5.1=py310hbe9552e_0 - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 - ld64=609=h89fa09d_15 - libcblas=3.9.0=20_osxarm64_openblas @@ -295,22 +295,21 @@ dependencies: - memory-allocator=0.1.3=py310h2aa6e3c_0 - overrides=7.4.0=pyhd8ed1ab_0 - pexpect=4.8.0=pyh1a96a4e_2 - - pip=23.3.1=pyhd8ed1ab_0 + - pip=23.3.2=pyhd8ed1ab_0 - pplpy=0.8.9=py310hab1f656_0 - primecountpy=0.1.0=py310h38f39d4_4 - - prompt-toolkit=3.0.41=pyha770c72_0 + - prompt-toolkit=3.0.42=pyha770c72_0 - pybind11=2.11.1=py310h38f39d4_2 - - pyobjc-core=10.0=py310hd07e440_0 + - pyobjc-core=10.1=py310hb3aa912_0 - pyproject-api=1.6.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 - - sagemath-db-conway-polynomials=0.5.0=h4653dfc_1 - sympy=1.12=pypyh9d50eac_103 - terminado=0.18.0=pyh31c8845_0 - tinycss2=1.2.1=pyhd8ed1ab_0 - - typing-extensions=4.8.0=hd8ed1ab_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 @@ -322,17 +321,17 @@ dependencies: - fflas-ffpack=2.4.3=h11f2abc_2 - fqdn=1.5.1=pyhd8ed1ab_0 - gsl=2.7=h6e638da_0 - - hatchling=1.18.0=pyhd8ed1ab_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.4.4=pyhd8ed1ab_1 + - jupyter_server_terminals=0.5.0=pyhd8ed1ab_0 - liblapacke=3.9.0=20_osxarm64_openblas - numpy=1.26.2=py310h30ee222_0 - pango=1.50.14=h6c112b8_0 - - prompt_toolkit=3.0.41=hd8ed1ab_0 - - pyobjc-framework-cocoa=10.0=py310hd07e440_1 + - prompt_toolkit=3.0.42=hd8ed1ab_0 + - pyobjc-framework-cocoa=10.1=py310hb3aa912_0 - requests=2.31.0=pyhd8ed1ab_0 - setuptools-scm=8.0.4=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 @@ -368,19 +367,19 @@ dependencies: - 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_6 - - nbconvert-core=7.12.0=pyhd8ed1ab_0 - - clang_osx-arm64=15.0.7=h54d7cd3_6 + - 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.12.0=pyhd8ed1ab_0 + - nbconvert-pandoc=7.13.0=pyhd8ed1ab_0 - c-compiler=1.6.0=hd291e01_0 - - clangxx_impl_osx-arm64=15.0.7=h768a7fd_6 + - 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.12.0=pyhd8ed1ab_0 + - nbconvert=7.13.0=pyhd8ed1ab_0 - notebook-shim=0.2.3=pyhd8ed1ab_0 - - clangxx_osx-arm64=15.0.7=h77e971b_6 + - 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 diff --git a/src/environment-3.10-macos.yml b/src/environment-3.10-macos.yml index c56a27233ba..ba31dab449e 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: 98c8652a8cb56be0bd47aae118dfbf92567f0ce7376872eeec2931299d41114d +# input_hash: e6e5d1bfe3ab9c165fc03815724be4801c145386f5a72ab882384f30f7533b97 channels: - conda-forge @@ -8,7 +8,7 @@ dependencies: - _r-mutex=1.0.1=anacondar_1 - bc=1.07.1=h0d85af4_0 - bzip2=1.0.8=h10d778d_5 - - c-ares=1.23.0=h10d778d_0 + - c-ares=1.24.0=h10d778d_0 - ca-certificates=2023.11.17=h8857fd0_0 - cliquer=1.22=hbcb3906_0 - font-ttf-dejavu-sans-mono=2.37=hab24e00_0 @@ -19,15 +19,15 @@ dependencies: - giflib=5.2.1=hb7f2c08_3 - icu=73.2=hf5e326d_0 - libatomic_ops=7.6.14=hb7f2c08_0 - - libboost-headers=1.83.0=h694c41f_0 + - libboost-headers=1.84.0=h694c41f_0 - libbrotlicommon=1.1.0=h0dc2134_1 - libcxx=16.0.6=hd57cbcb_0 - libdeflate=1.19=ha4e1b8e_0 - - libev=4.33=haf1e3a3_1 + - 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=hac89ed1_0 + - libiconv=1.17=hd75f5a5_2 - libjpeg-turbo=3.0.0=h0dc2134_1 - libsodium=1.0.18=hbcb3906_1 - libtool=2.4.7=hf0c8a7f_0 @@ -109,14 +109,14 @@ dependencies: - givaro=4.1.1=h0a799c6_3 - glpk=5.0=h3cb5acd_0 - jmol=14.32.9=h694c41f_0 - - libboost=1.83.0=hf44e908_0 + - libboost=1.84.0=h5b2dd29_0 - libedit=3.1.20191231=h0678c8f_2 - libgfortran=5.0.0=13_2_0_h97931a8_1 - libglib=2.78.1=h6d9ecee_0 - libhomfly=1.02r6=hc929b4f_0 - libhwloc=2.9.3=default_h24e0189_1009 - libllvm15=15.0.7=he4b1e75_3 - - libnghttp2=1.58.0=h64cf6d3_0 + - libnghttp2=1.58.0=h64cf6d3_1 - libssh2=1.11.0=hd019ec5_0 - libtiff=4.6.0=h684deea_2 - m4ri=20140914=h3f75d11_1005 @@ -137,7 +137,7 @@ dependencies: - krb5=1.21.2=hb884880_0 - lcms2=2.16=ha2f27b4_0 - ld64_osx-64=609=h0fd476b_15 - - libboost-devel=1.83.0=h7728843_0 + - libboost-devel=1.84.0=h7728843_0 - libbrial=1.2.12=h8d08345_1 - libclang-cpp15=15.0.7=default_h6b1ee41_4 - libflint=3.0.1=h5d15de0_ntl_100 @@ -158,8 +158,7 @@ dependencies: - appdirs=1.4.4=pyh9f0ad1d_0 - appnope=0.1.3=pyhd8ed1ab_0 - attrs=23.1.0=pyh71513ae_1 - - backcall=0.2.0=pyh9f0ad1d_0 - - boost-cpp=1.83.0=h07eb623_0 + - boost-cpp=1.84.0=h07eb623_0 - brial=1.2.12=pyh694c41f_1 - brotli-python=1.1.0=py310h9e9d8ca_1 - cached_property=1.5.2=pyha770c72_1 @@ -171,15 +170,16 @@ dependencies: - charset-normalizer=3.3.2=pyhd8ed1ab_0 - clang-15=15.0.7=default_h6b1ee41_4 - colorama=0.4.6=pyhd8ed1ab_0 + - conway-polynomials=0.8=pyhd8ed1ab_0 - cycler=0.12.1=pyhd8ed1ab_0 - cysignals=1.11.2=py310h8c82e65_3 - - cython=3.0.6=py310had63691_0 + - cython=3.0.7=py310h5daac23_0 - debugpy=1.8.0=py310h9e9d8ca_1 - decorator=5.1.1=pyhd8ed1ab_0 - defusedxml=0.7.1=pyhd8ed1ab_0 - - distlib=0.3.7=pyhd8ed1ab_0 + - distlib=0.3.8=pyhd8ed1ab_0 - docutils=0.20.1=py310h2ec42d9_3 - - eclib=20230424=h563f520_1 + - eclib=20231211=h02435c3_0 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 - exceptiongroup=1.2.0=pyhd8ed1ab_0 @@ -204,7 +204,7 @@ dependencies: - libcurl=8.5.0=h726d00d_0 - libgd=2.3.3=h0dceb68_9 - markupsafe=2.1.3=py310h6729b98_1 - - maxima=5.47.0=h2b27fa8_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 @@ -214,7 +214,7 @@ dependencies: - packaging=23.2=pyhd8ed1ab_0 - pandocfilters=1.5.0=pyhd8ed1ab_0 - parso=0.8.3=pyhd8ed1ab_0 - - pathspec=0.11.2=pyhd8ed1ab_0 + - pathspec=0.12.1=pyhd8ed1ab_0 - pickleshare=0.7.5=py_1003 - pillow=10.1.0=py310he65384d_0 - pkgconfig=1.5.5=pyhd8ed1ab_4 @@ -223,7 +223,7 @@ dependencies: - pluggy=1.3.0=pyhd8ed1ab_0 - ply=3.11=py_1 - prometheus_client=0.19.0=pyhd8ed1ab_0 - - psutil=5.9.5=py310h6729b98_1 + - psutil=5.9.7=py310hb372a2b_0 - ptyprocess=0.7.0=pyhd3deb0d_0 - pure_eval=0.2.2=pyhd8ed1ab_0 - py=1.11.0=pyh6c4a22f_0 @@ -241,7 +241,7 @@ dependencies: - pyyaml=6.0.1=py310h6729b98_1 - pyzmq=25.1.2=py310h6b67f7f_0 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.13.2=py310h0e083fb_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 @@ -258,7 +258,7 @@ dependencies: - traitlets=5.14.0=pyhd8ed1ab_0 - trove-classifiers=2023.11.29=pyhd8ed1ab_0 - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 - - typing_extensions=4.8.0=pyha770c72_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 @@ -270,10 +270,10 @@ dependencies: - wheel=0.42.0=pyhd8ed1ab_0 - widgetsnbextension=4.0.9=pyhd8ed1ab_0 - zipp=3.17.0=pyhd8ed1ab_0 - - anyio=4.1.0=pyhd8ed1ab_0 + - anyio=4.2.0=pyhd8ed1ab_0 - asttokens=2.4.1=pyhd8ed1ab_0 - async-lru=2.0.4=pyhd8ed1ab_0 - - babel=2.13.1=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 @@ -281,19 +281,19 @@ dependencies: - cctools=973.0.1=hd9ad811_15 - cffi=1.16.0=py310hdca579f_0 - clang=15.0.7=hac416ee_4 - - cmake=3.28.0=hc7ee4c4_0 + - 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.46.0=py310hb372a2b_0 + - fonttools=4.47.0=py310hb372a2b_0 - harfbuzz=8.3.0=hf45c392_0 - importlib-metadata=7.0.0=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.0=py310h2ec42d9_0 + - jupyter_core=5.5.1=py310h2ec42d9_0 - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 - libcblas=3.9.0=20_osx64_openblas - liblapack=3.9.0=20_osx64_openblas @@ -301,22 +301,21 @@ dependencies: - memory-allocator=0.1.3=py310h6729b98_0 - overrides=7.4.0=pyhd8ed1ab_0 - pexpect=4.8.0=pyh1a96a4e_2 - - pip=23.3.1=pyhd8ed1ab_0 + - pip=23.3.2=pyhd8ed1ab_0 - pplpy=0.8.9=py310hd89f7aa_0 - primecountpy=0.1.0=py310h88cfcbd_4 - - prompt-toolkit=3.0.41=pyha770c72_0 + - prompt-toolkit=3.0.42=pyha770c72_0 - pybind11=2.11.1=py310h88cfcbd_2 - - pyobjc-core=10.0=py310hef2d279_0 + - pyobjc-core=10.1=py310h3674b6a_0 - pyproject-api=1.6.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 - - sagemath-db-conway-polynomials=0.5.0=h033912b_1 - sympy=1.12=pypyh9d50eac_103 - terminado=0.18.0=pyh31c8845_0 - tinycss2=1.2.1=pyhd8ed1ab_0 - - typing-extensions=4.8.0=hd8ed1ab_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 @@ -327,17 +326,17 @@ dependencies: - fflas-ffpack=2.4.3=h026fd7e_2 - fqdn=1.5.1=pyhd8ed1ab_0 - gsl=2.7=h93259b0_0 - - hatchling=1.18.0=pyhd8ed1ab_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.4.4=pyhd8ed1ab_1 + - jupyter_server_terminals=0.5.0=pyhd8ed1ab_0 - liblapacke=3.9.0=20_osx64_openblas - numpy=1.26.2=py310h2a7ecf2_0 - pango=1.50.14=h19c1c8a_2 - - prompt_toolkit=3.0.41=hd8ed1ab_0 - - pyobjc-framework-cocoa=10.0=py310hef2d279_1 + - prompt_toolkit=3.0.42=hd8ed1ab_0 + - pyobjc-framework-cocoa=10.1=py310h3674b6a_0 - requests=2.31.0=pyhd8ed1ab_0 - setuptools-scm=8.0.4=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 @@ -367,24 +366,24 @@ dependencies: - matplotlib-base=3.8.2=py310hec49e92_0 - nbformat=5.9.2=pyhd8ed1ab_0 - rw=0.9=h10d778d_1 - - clang_impl_osx-64=15.0.7=h03d6864_6 + - 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_6 - - nbconvert-core=7.12.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=h3d2d1bf_6 + - 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.12.0=pyhd8ed1ab_0 - - clangxx_osx-64=15.0.7=h655633e_6 + - 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.12.0=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 diff --git a/src/environment-3.11-linux-aarch64.yml b/src/environment-3.11-linux-aarch64.yml index cbd3a6e424b..101a7edffe6 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: a8941f900d7dcd9f30612f258032e4b1dc6b1e7c5fe0895d0e31fb2b98a5634b +# input_hash: 604427f3523e85bc5343bdac8f3896ee77249f97d2a74dc7b3c903c17e8a87a7 channels: - conda-forge @@ -44,7 +44,7 @@ dependencies: - bc=1.07.1=hf897c2e_0 - bdw-gc=8.0.6=hd62202e_0 - bzip2=1.0.8=h31becfc_5 - - c-ares=1.23.0=h31becfc_0 + - c-ares=1.24.0=h31becfc_0 - cliquer=1.22=hb9de7d4_0 - fribidi=1.0.10=hb9de7d4_0 - gengetopt=2.23=h01db608_0 @@ -61,11 +61,11 @@ dependencies: - libbraiding=1.2=hd600fc2_0 - libbrotlicommon=1.1.0=h31becfc_1 - libdeflate=1.17=hb4cce97_0 - - libev=4.33=h516909a_1 + - libev=4.33=h31becfc_2 - libexpat=2.5.0=hd600fc2_1 - libffi=3.4.2=h3557bc0_5 - libgfortran5=13.2.0=h582850c_3 - - libiconv=1.17=h9cdd2b7_0 + - libiconv=1.17=h31becfc_2 - libnsl=2.0.1=h31becfc_0 - libsanitizer=12.3.0=h8ebda82_3 - libsodium=1.0.18=hb9de7d4_1 @@ -115,7 +115,7 @@ dependencies: - libedit=3.1.20191231=he28a2e2_2 - libgfortran-ng=13.2.0=he9431aa_3 - libhomfly=1.02r6=hb9de7d4_0 - - libnghttp2=1.58.0=hb0e430d_0 + - libnghttp2=1.58.0=hb0e430d_1 - libpng=1.6.39=hf9034f9_0 - libsqlite=3.44.2=h194ca79_0 - libssh2=1.11.0=h492db2e_0 @@ -159,7 +159,7 @@ dependencies: - mpfi=1.5.4=h846f343_1001 - pari=2.15.4=h169c2a7_2_pthread - ppl=1.2=h984aac9_1006 - - python=3.11.6=h43d1f9e_0_cpython + - python=3.11.7=h43d1f9e_0_cpython - qd=2.3.22=h05efe27_1004 - sqlite=3.44.2=h3b3482f_0 - tachyon=0.99b6=h63ab1d9_1001 @@ -171,7 +171,6 @@ dependencies: - appnope=0.1.3=pyhd8ed1ab_0 - attrs=23.1.0=pyh71513ae_1 - automake=1.16.5=pl5321h8af1aa0_0 - - backcall=0.2.0=pyh9f0ad1d_0 - brotli=1.1.0=h31becfc_1 - brotli-python=1.1.0=py311h8715677_1 - c-compiler=1.6.0=h31becfc_0 @@ -181,15 +180,16 @@ dependencies: - chardet=5.2.0=py311hfecb2dc_1 - charset-normalizer=3.3.2=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_0 + - conway-polynomials=0.8=pyhd8ed1ab_0 - cycler=0.12.1=pyhd8ed1ab_0 - cysignals=1.11.2=py311h644d908_3 - - cython=3.0.6=py311h8715677_0 + - cython=3.0.7=py311h8715677_0 - debugpy=1.8.0=py311h8715677_1 - decorator=5.1.1=pyhd8ed1ab_0 - defusedxml=0.7.1=pyhd8ed1ab_0 - - distlib=0.3.7=pyhd8ed1ab_0 + - distlib=0.3.8=pyhd8ed1ab_0 - docutils=0.20.1=py311hfecb2dc_3 - - eclib=20230424=he26bab5_1 + - eclib=20231211=he26bab5_0 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 - exceptiongroup=1.2.0=pyhd8ed1ab_0 @@ -221,7 +221,7 @@ dependencies: - libwebp=1.2.4=h7bdf6e5_1 - m4rie=20150908=h75e8696_1001 - markupsafe=2.1.3=py311hc8f2f60_1 - - maxima=5.47.0=h6475f26_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 @@ -232,7 +232,7 @@ dependencies: - packaging=23.2=pyhd8ed1ab_0 - pandocfilters=1.5.0=pyhd8ed1ab_0 - parso=0.8.3=pyhd8ed1ab_0 - - pathspec=0.11.2=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 @@ -240,7 +240,7 @@ dependencies: - pluggy=1.3.0=pyhd8ed1ab_0 - ply=3.11=py_1 - prometheus_client=0.19.0=pyhd8ed1ab_0 - - psutil=5.9.5=py311hcd402e7_1 + - psutil=5.9.7=py311hcd402e7_0 - ptyprocess=0.7.0=pyhd3deb0d_0 - pure_eval=0.2.2=pyhd8ed1ab_0 - py=1.11.0=pyh6c4a22f_0 @@ -258,7 +258,7 @@ dependencies: - pyyaml=6.0.1=py311hcd402e7_1 - pyzmq=25.1.2=py311h0fdcd05_0 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.13.2=py311h32437ce_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 @@ -277,7 +277,7 @@ dependencies: - traitlets=5.14.0=pyhd8ed1ab_0 - trove-classifiers=2023.11.29=pyhd8ed1ab_0 - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 - - typing_extensions=4.8.0=pyha770c72_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 @@ -292,10 +292,10 @@ dependencies: - xorg-libxrender=0.9.10=h3557bc0_1003 - xorg-libxt=1.3.0=h7935292_0 - zipp=3.17.0=pyhd8ed1ab_0 - - anyio=4.1.0=pyhd8ed1ab_0 + - anyio=4.2.0=pyhd8ed1ab_0 - asttokens=2.4.1=pyhd8ed1ab_0 - async-lru=2.0.4=pyhd8ed1ab_0 - - babel=2.13.1=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 @@ -310,13 +310,13 @@ dependencies: - cxx-compiler=1.6.0=h2a328a1_0 - cypari2=2.1.3=py311h5ab95f0_2 - deprecation=2.1.0=pyh9f0ad1d_0 - - fonttools=4.46.0=py311hcd402e7_0 + - fonttools=4.47.0=py311hcd402e7_0 - fortran-compiler=1.6.0=h7048d53_0 - importlib-metadata=7.0.0=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.0=py311hec3470c_0 + - jupyter_core=5.5.1=py311hec3470c_0 - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 - libcblas=3.9.0=20_linuxaarch64_openblas - libgd=2.3.3=h99c6b3b_4 @@ -326,21 +326,20 @@ dependencies: - overrides=7.4.0=pyhd8ed1ab_0 - pexpect=4.8.0=pyh1a96a4e_2 - pillow=9.4.0=py311hf18358d_1 - - pip=23.3.1=pyhd8ed1ab_0 + - pip=23.3.2=pyhd8ed1ab_0 - pplpy=0.8.9=py311haefeb0b_0 - primecountpy=0.1.0=py311h098ece5_4 - - prompt-toolkit=3.0.41=pyha770c72_0 + - prompt-toolkit=3.0.42=pyha770c72_0 - pybind11=2.11.1=py311h098ece5_2 - pyproject-api=1.6.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 - - sagemath-db-conway-polynomials=0.5.0=h4fd8a4c_1 - sympy=1.12=pypyh9d50eac_103 - terminado=0.18.0=pyh0d859eb_0 - tinycss2=1.2.1=pyhd8ed1ab_0 - - typing-extensions=4.8.0=hd8ed1ab_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 @@ -353,15 +352,15 @@ dependencies: - fqdn=1.5.1=pyhd8ed1ab_0 - gsl=2.7=h294027d_0 - harfbuzz=6.0.0=hbcb8a4f_0 - - hatchling=1.18.0=pyhd8ed1ab_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.4.4=pyhd8ed1ab_1 + - jupyter_server_terminals=0.5.0=pyhd8ed1ab_0 - liblapacke=3.9.0=20_linuxaarch64_openblas - numpy=1.26.2=py311h69ead2a_0 - - prompt_toolkit=3.0.41=hd8ed1ab_0 + - prompt_toolkit=3.0.42=hd8ed1ab_0 - requests=2.31.0=pyhd8ed1ab_0 - setuptools-scm=8.0.4=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 @@ -400,12 +399,12 @@ dependencies: - matplotlib=3.8.2=py311hfecb2dc_0 - nbclient=0.8.0=pyhd8ed1ab_0 - rpy2=3.5.11=py311r42hf13da56_3 - - nbconvert-core=7.12.0=pyhd8ed1ab_0 + - nbconvert-core=7.13.0=pyhd8ed1ab_0 - jupyter_server=2.12.1=pyhd8ed1ab_0 - - nbconvert-pandoc=7.12.0=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.12.0=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 diff --git a/src/environment-3.11-linux.yml b/src/environment-3.11-linux.yml index 674a0ee583e..8439b8e51db 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: 9666cf47da5347260c96b9b7dcaa39e774da5953fede9de61aa915be339b91af +# input_hash: 2da5e7dc39e4644a879a6fd9cae901f97edb089ebc2180eb33f7e9294fc0f0d5 channels: - conda-forge @@ -14,7 +14,7 @@ dependencies: - font-ttf-ubuntu=0.83=h77eed37_1 - kernel-headers_linux-64=2.6.32=he073ed8_16 - ld_impl_linux-64=2.40=h41732ed_0 - - libboost-headers=1.83.0=ha770c72_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 @@ -45,7 +45,7 @@ dependencies: - bc=1.07.1=h7f98852_0 - bdw-gc=8.0.6=h4bd325d_0 - bzip2=1.0.8=hd590300_5 - - c-ares=1.23.0=hd590300_0 + - c-ares=1.24.0=hd590300_0 - cliquer=1.22=h36c2ea0_0 - fribidi=1.0.10=h36c2ea0_0 - gengetopt=2.23=h9c3ff4c_0 @@ -62,11 +62,11 @@ dependencies: - libbraiding=1.2=hcb278e6_0 - libbrotlicommon=1.1.0=hd590300_1 - libdeflate=1.19=hd590300_0 - - libev=4.33=h516909a_1 + - libev=4.33=hd590300_2 - libexpat=2.5.0=hcb278e6_1 - libffi=3.4.2=h7f98852_5 - libgfortran5=13.2.0=ha4646dd_3 - - libiconv=1.17=h166bdaf_0 + - libiconv=1.17=hd590300_2 - libjpeg-turbo=3.0.0=hd590300_1 - libnsl=2.0.1=hd590300_0 - libogg=1.3.4=h7f98852_1 @@ -88,7 +88,7 @@ dependencies: - ncurses=6.4=h59595ed_2 - ninja=1.11.1=h924138e_0 - nspr=4.35=h27087fc_0 - - openssl=3.1.4=hd590300_0 + - openssl=3.2.0=hd590300_1 - palp=2.20=h36c2ea0_0 - patch=2.7.6=h7f98852_1002 - pixman=0.42.2=h59595ed_0 @@ -127,7 +127,7 @@ dependencies: - libgfortran-ng=13.2.0=h69a702a_3 - libgpg-error=1.47=h71f35ed_0 - libhomfly=1.02r6=h36c2ea0_0 - - libnghttp2=1.58.0=h47da74e_0 + - libnghttp2=1.58.0=h47da74e_1 - libpng=1.6.39=h753d276_0 - libsqlite=3.44.2=h2797004_0 - libssh2=1.11.0=h0841786_0 @@ -161,7 +161,7 @@ dependencies: - gfortran_impl_linux-64=12.3.0=hfcedea8_3 - gxx_impl_linux-64=12.3.0=he2b93b0_3 - krb5=1.21.2=h659d440_0 - - libboost=1.83.0=h6fcfa73_0 + - libboost=1.84.0=h6fcfa73_0 - libflint=3.0.1=h5f2e117_ntl_100 - libgcrypt=1.10.3=hd590300_0 - libglib=2.78.3=h783c2da_0 @@ -175,11 +175,11 @@ dependencies: - mpc=1.3.1=hfe3b2da_0 - mpfi=1.5.4=h9f54685_1001 - mysql-libs=8.0.33=hca2cd23_6 - - nss=3.95=h1d7d5a4_0 + - 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.6=hab00c5b_0_cpython + - python=3.11.7=hab00c5b_0_cpython - qd=2.3.22=h2cc385e_1004 - sqlite=3.44.2=h2c6b66d_0 - tachyon=0.99b6=0 @@ -195,7 +195,6 @@ dependencies: - appnope=0.1.3=pyhd8ed1ab_0 - attrs=23.1.0=pyh71513ae_1 - automake=1.16.5=pl5321ha770c72_0 - - backcall=0.2.0=pyh9f0ad1d_0 - brotli=1.1.0=hd590300_1 - brotli-python=1.1.0=py311hb755f60_1 - c-compiler=1.6.0=hd590300_0 @@ -205,16 +204,17 @@ dependencies: - chardet=5.2.0=py311h38be061_1 - charset-normalizer=3.3.2=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_0 + - conway-polynomials=0.8=pyhd8ed1ab_0 - cycler=0.12.1=pyhd8ed1ab_0 - cysignals=1.11.2=py311h82528dc_3 - - cython=3.0.6=py311hb755f60_0 + - cython=3.0.7=py311hb755f60_0 - dbus=1.13.6=h5008d03_3 - debugpy=1.8.0=py311hb755f60_1 - decorator=5.1.1=pyhd8ed1ab_0 - defusedxml=0.7.1=pyhd8ed1ab_0 - - distlib=0.3.7=pyhd8ed1ab_0 + - distlib=0.3.8=pyhd8ed1ab_0 - docutils=0.20.1=py311h38be061_3 - - eclib=20230424=h96f522a_1 + - eclib=20231211=h96f522a_0 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 - exceptiongroup=1.2.0=pyhd8ed1ab_0 @@ -241,17 +241,17 @@ dependencies: - lcalc=2.0.5=h6a8a7c6_1 - lcms2=2.16=hb7c19ff_0 - libblas=3.9.0=20_linux64_openblas - - libboost-devel=1.83.0=h00ab1b0_0 + - libboost-devel=1.84.0=h00ab1b0_0 - libbrial=1.2.12=h3155cbd_1 - libclang13=15.0.7=default_ha2b6cf4_4 - libcups=2.3.3=h4637d8d_4 - - libcurl=8.4.0=hca28451_0 - - libpq=16.1=hfc447b1_0 + - 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 - - maxima=5.47.0=hed6455c_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 @@ -262,7 +262,7 @@ dependencies: - packaging=23.2=pyhd8ed1ab_0 - pandocfilters=1.5.0=pyhd8ed1ab_0 - parso=0.8.3=pyhd8ed1ab_0 - - pathspec=0.11.2=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 @@ -270,7 +270,7 @@ dependencies: - pluggy=1.3.0=pyhd8ed1ab_0 - ply=3.11=py_1 - prometheus_client=0.19.0=pyhd8ed1ab_0 - - psutil=5.9.5=py311h459d7ec_1 + - psutil=5.9.7=py311h459d7ec_0 - ptyprocess=0.7.0=pyhd3deb0d_0 - pure_eval=0.2.2=pyhd8ed1ab_0 - py=1.11.0=pyh6c4a22f_0 @@ -288,7 +288,7 @@ dependencies: - pyyaml=6.0.1=py311h459d7ec_1 - pyzmq=25.1.2=py311h34ded2d_0 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.13.2=py311h46250e7_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 @@ -308,7 +308,7 @@ dependencies: - traitlets=5.14.0=pyhd8ed1ab_0 - trove-classifiers=2023.11.29=pyhd8ed1ab_0 - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 - - typing_extensions=4.8.0=pyha770c72_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 @@ -325,33 +325,33 @@ dependencies: - xorg-libxrender=0.9.11=hd590300_0 - xorg-libxt=1.3.0=hd590300_1 - zipp=3.17.0=pyhd8ed1ab_0 - - anyio=4.1.0=pyhd8ed1ab_0 + - anyio=4.2.0=pyhd8ed1ab_0 - asttokens=2.4.1=pyhd8ed1ab_0 - async-lru=2.0.4=pyhd8ed1ab_0 - - babel=2.13.1=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.83.0=h44aadfe_0 + - boost-cpp=1.84.0=h44aadfe_0 - 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.27.9=hcfe8598_0 + - cmake=3.28.1=hcfe8598_0 - comm=0.1.4=pyhd8ed1ab_0 - cppy=1.2.1=pyhd8ed1ab_0 - - curl=8.4.0=hca28451_0 + - curl=8.5.0=hca28451_0 - cxx-compiler=1.6.0=h00ab1b0_0 - cypari2=2.1.3=py311hd2352ae_2 - deprecation=2.1.0=pyh9f0ad1d_0 - - fonttools=4.46.0=py311h459d7ec_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 - importlib_resources=6.1.1=pyhd8ed1ab_0 - jedi=0.19.1=pyhd8ed1ab_0 - jinja2=3.1.2=pyhd8ed1ab_1 - - jupyter_core=5.5.0=py311h38be061_0 + - jupyter_core=5.5.1=py311h38be061_0 - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 - libcblas=3.9.0=20_linux64_openblas - libclang=15.0.7=default_hb11cfb5_4 @@ -363,10 +363,10 @@ dependencies: - overrides=7.4.0=pyhd8ed1ab_0 - pexpect=4.8.0=pyh1a96a4e_2 - pillow=10.1.0=py311ha6c5da5_0 - - pip=23.3.1=pyhd8ed1ab_0 + - pip=23.3.2=pyhd8ed1ab_0 - pplpy=0.8.9=py311h85abca9_0 - primecountpy=0.1.0=py311h9547e67_4 - - prompt-toolkit=3.0.41=pyha770c72_0 + - 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 @@ -374,12 +374,11 @@ dependencies: - pytz-deprecation-shim=0.1.0.post0=py311h38be061_4 - referencing=0.32.0=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - - sagemath-db-conway-polynomials=0.5.0=ha878542_1 - 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.8.0=hd8ed1ab_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 @@ -391,17 +390,17 @@ dependencies: - fflas-ffpack=2.4.3=h912ac81_2 - fqdn=1.5.1=pyhd8ed1ab_0 - gsl=2.7=he838d99_0 - - gstreamer=1.22.7=h98fc4e7_0 + - gstreamer=1.22.8=h98fc4e7_0 - harfbuzz=8.3.0=h3d44ed6_0 - - hatchling=1.18.0=pyhd8ed1ab_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.4.4=pyhd8ed1ab_1 + - jupyter_server_terminals=0.5.0=pyhd8ed1ab_0 - liblapacke=3.9.0=20_linux64_openblas - numpy=1.26.2=py311h64a7726_0 - - prompt_toolkit=3.0.41=hd8ed1ab_0 + - prompt_toolkit=3.0.42=hd8ed1ab_0 - pyqt5-sip=12.12.2=py311hb755f60_5 - requests=2.31.0=pyhd8ed1ab_0 - setuptools-scm=8.0.4=pyhd8ed1ab_0 @@ -414,7 +413,7 @@ dependencies: - cvxopt=1.3.2=py311h2b3fd1d_1 - fpylll=0.6.0=py311hcfae7cf_1 - giac=1.9.0.21=h673759e_1 - - gst-plugins-base=1.22.7=h8e1006c_0 + - 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 @@ -444,12 +443,12 @@ dependencies: - pyqt=5.15.9=py311hf0fb5b6_5 - rpy2=3.5.11=py311r43h1f0f07a_3 - matplotlib=3.8.2=py311h38be061_0 - - nbconvert-core=7.12.0=pyhd8ed1ab_0 + - nbconvert-core=7.13.0=pyhd8ed1ab_0 - jupyter_server=2.12.1=pyhd8ed1ab_0 - - nbconvert-pandoc=7.12.0=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.12.0=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 diff --git a/src/environment-3.11-macos-arm64.yml b/src/environment-3.11-macos-arm64.yml index feb69e69e95..d2e67f82500 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: de07287b902f62991580e28445e2e717d34bc06f3fa55313a95d57ce1f10814c +# input_hash: 2ff977dcd9a99005d724932d2866d43333af4ef4cd463467acc105dff636efae channels: - conda-forge @@ -8,7 +8,7 @@ dependencies: - _r-mutex=1.0.1=anacondar_1 - bc=1.07.1=h3422bc3_0 - bzip2=1.0.8=h93a5062_5 - - c-ares=1.23.0=h93a5062_0 + - c-ares=1.24.0=h93a5062_0 - ca-certificates=2023.11.17=hf0a4a13_0 - cliquer=1.22=h27ca646_0 - font-ttf-dejavu-sans-mono=2.37=hab24e00_0 @@ -22,11 +22,11 @@ dependencies: - libbrotlicommon=1.1.0=hb547adb_1 - libcxx=16.0.6=h4653b0c_0 - libdeflate=1.17=h1a8c8d9_0 - - libev=4.33=h642e427_1 + - 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=he4db4b2_0 + - libiconv=1.17=h0d3ecfb_2 - libsodium=1.0.18=h27ca646_1 - libtool=2.4.7=hb7217d7_0 - libuv=1.46.0=hb547adb_0 @@ -112,7 +112,7 @@ dependencies: - libgfortran=5.0.0=13_2_0_hd922786_1 - libglib=2.78.1=hd9b11f9_0 - libhomfly=1.02r6=h27ca646_0 - - libnghttp2=1.58.0=ha4dd798_0 + - libnghttp2=1.58.0=ha4dd798_1 - libssh2=1.11.0=h7a5bd25_0 - libtiff=4.5.0=h5dffbdd_2 - libxml2=2.10.3=h67585b2_4 @@ -145,14 +145,13 @@ dependencies: - pari=2.15.4=haeeeed7_2_pthread - pkg-config=0.29.2=hab62308_1008 - ppl=1.2=h8b147cf_1006 - - python=3.11.6=h47c9636_0_cpython + - python=3.11.7=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 - - backcall=0.2.0=pyh9f0ad1d_0 - brial=1.2.12=pyh694c41f_1 - brotli-python=1.1.0=py311ha891d26_1 - cached_property=1.5.2=pyha770c72_1 @@ -162,15 +161,16 @@ dependencies: - chardet=5.2.0=py311h267d04e_1 - charset-normalizer=3.3.2=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_0 + - conway-polynomials=0.8=pyhd8ed1ab_0 - cycler=0.12.1=pyhd8ed1ab_0 - cysignals=1.11.2=py311he42fc87_3 - - cython=3.0.6=py311hbaf5611_0 + - cython=3.0.7=py311h92babd0_0 - debugpy=1.8.0=py311ha891d26_1 - decorator=5.1.1=pyhd8ed1ab_0 - defusedxml=0.7.1=pyhd8ed1ab_0 - - distlib=0.3.7=pyhd8ed1ab_0 + - distlib=0.3.8=pyhd8ed1ab_0 - docutils=0.20.1=py311h267d04e_3 - - eclib=20230424=h8fe5691_1 + - eclib=20231211=h7f07de4_0 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 - exceptiongroup=1.2.0=pyhd8ed1ab_0 @@ -207,7 +207,7 @@ dependencies: - packaging=23.2=pyhd8ed1ab_0 - pandocfilters=1.5.0=pyhd8ed1ab_0 - parso=0.8.3=pyhd8ed1ab_0 - - pathspec=0.11.2=pyhd8ed1ab_0 + - pathspec=0.12.1=pyhd8ed1ab_0 - pickleshare=0.7.5=py_1003 - pillow=9.4.0=py311h627eb56_1 - pkgconfig=1.5.5=pyhd8ed1ab_4 @@ -216,7 +216,7 @@ dependencies: - pluggy=1.3.0=pyhd8ed1ab_0 - ply=3.11=py_1 - prometheus_client=0.19.0=pyhd8ed1ab_0 - - psutil=5.9.5=py311heffc1b2_1 + - psutil=5.9.7=py311h05b510d_0 - ptyprocess=0.7.0=pyhd3deb0d_0 - pure_eval=0.2.2=pyhd8ed1ab_0 - py=1.11.0=pyh6c4a22f_0 @@ -234,7 +234,7 @@ dependencies: - pyyaml=6.0.1=py311heffc1b2_1 - pyzmq=25.1.2=py311h6727e71_0 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.13.2=py311h94f323b_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 @@ -251,7 +251,7 @@ dependencies: - traitlets=5.14.0=pyhd8ed1ab_0 - trove-classifiers=2023.11.29=pyhd8ed1ab_0 - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 - - typing_extensions=4.8.0=pyha770c72_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 @@ -262,10 +262,10 @@ dependencies: - wheel=0.42.0=pyhd8ed1ab_0 - widgetsnbextension=4.0.9=pyhd8ed1ab_0 - zipp=3.17.0=pyhd8ed1ab_0 - - anyio=4.1.0=pyhd8ed1ab_0 + - anyio=4.2.0=pyhd8ed1ab_0 - asttokens=2.4.1=pyhd8ed1ab_0 - async-lru=2.0.4=pyhd8ed1ab_0 - - babel=2.13.1=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 @@ -279,13 +279,13 @@ dependencies: - curl=8.1.2=h912dcd9_0 - cypari2=2.1.3=py311h149620a_2 - deprecation=2.1.0=pyh9f0ad1d_0 - - fonttools=4.46.0=py311h05b510d_0 + - fonttools=4.47.0=py311h05b510d_0 - harfbuzz=6.0.0=hddbc195_0 - importlib-metadata=7.0.0=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.0=py311h267d04e_0 + - jupyter_core=5.5.1=py311h267d04e_0 - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 - ld64=609=h89fa09d_15 - libcblas=3.9.0=20_osxarm64_openblas @@ -294,22 +294,21 @@ dependencies: - memory-allocator=0.1.3=py311heffc1b2_0 - overrides=7.4.0=pyhd8ed1ab_0 - pexpect=4.8.0=pyh1a96a4e_2 - - pip=23.3.1=pyhd8ed1ab_0 + - pip=23.3.2=pyhd8ed1ab_0 - pplpy=0.8.9=py311h5ba3760_0 - primecountpy=0.1.0=py311he4fd1f5_4 - - prompt-toolkit=3.0.41=pyha770c72_0 + - prompt-toolkit=3.0.42=pyha770c72_0 - pybind11=2.11.1=py311he4fd1f5_2 - - pyobjc-core=10.0=py311hb702dc4_0 + - pyobjc-core=10.1=py311h665608e_0 - pyproject-api=1.6.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 - - sagemath-db-conway-polynomials=0.5.0=h4653dfc_1 - sympy=1.12=pypyh9d50eac_103 - terminado=0.18.0=pyh31c8845_0 - tinycss2=1.2.1=pyhd8ed1ab_0 - - typing-extensions=4.8.0=hd8ed1ab_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 @@ -321,17 +320,17 @@ dependencies: - fflas-ffpack=2.4.3=h11f2abc_2 - fqdn=1.5.1=pyhd8ed1ab_0 - gsl=2.7=h6e638da_0 - - hatchling=1.18.0=pyhd8ed1ab_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.4.4=pyhd8ed1ab_1 + - jupyter_server_terminals=0.5.0=pyhd8ed1ab_0 - liblapacke=3.9.0=20_osxarm64_openblas - numpy=1.26.2=py311h6d074dd_0 - pango=1.50.14=h6c112b8_0 - - prompt_toolkit=3.0.41=hd8ed1ab_0 - - pyobjc-framework-cocoa=10.0=py311hb702dc4_1 + - prompt_toolkit=3.0.42=hd8ed1ab_0 + - pyobjc-framework-cocoa=10.1=py311h665608e_0 - requests=2.31.0=pyhd8ed1ab_0 - setuptools-scm=8.0.4=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 @@ -367,19 +366,19 @@ dependencies: - 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_6 - - nbconvert-core=7.12.0=pyhd8ed1ab_0 - - clang_osx-arm64=15.0.7=h54d7cd3_6 + - 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.12.0=pyhd8ed1ab_0 + - nbconvert-pandoc=7.13.0=pyhd8ed1ab_0 - c-compiler=1.6.0=hd291e01_0 - - clangxx_impl_osx-arm64=15.0.7=h768a7fd_6 + - 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.12.0=pyhd8ed1ab_0 + - nbconvert=7.13.0=pyhd8ed1ab_0 - notebook-shim=0.2.3=pyhd8ed1ab_0 - - clangxx_osx-arm64=15.0.7=h77e971b_6 + - 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 diff --git a/src/environment-3.11-macos.yml b/src/environment-3.11-macos.yml index eadfae05d2c..86acb5faf05 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: cc1b429af04e9a3d5005a70cd70444ba6420fecee9c9ddcf2c661bd584961aa3 +# input_hash: d465e8ad8b1b6a4b6a60c1dba1b34740129e500ba0e3cb7d2e34582f29eea756 channels: - conda-forge @@ -8,7 +8,7 @@ dependencies: - _r-mutex=1.0.1=anacondar_1 - bc=1.07.1=h0d85af4_0 - bzip2=1.0.8=h10d778d_5 - - c-ares=1.23.0=h10d778d_0 + - c-ares=1.24.0=h10d778d_0 - ca-certificates=2023.11.17=h8857fd0_0 - cliquer=1.22=hbcb3906_0 - font-ttf-dejavu-sans-mono=2.37=hab24e00_0 @@ -19,15 +19,15 @@ dependencies: - giflib=5.2.1=hb7f2c08_3 - icu=73.2=hf5e326d_0 - libatomic_ops=7.6.14=hb7f2c08_0 - - libboost-headers=1.83.0=h694c41f_0 + - libboost-headers=1.84.0=h694c41f_0 - libbrotlicommon=1.1.0=h0dc2134_1 - libcxx=16.0.6=hd57cbcb_0 - libdeflate=1.19=ha4e1b8e_0 - - libev=4.33=haf1e3a3_1 + - 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=hac89ed1_0 + - libiconv=1.17=hd75f5a5_2 - libjpeg-turbo=3.0.0=h0dc2134_1 - libsodium=1.0.18=hbcb3906_1 - libtool=2.4.7=hf0c8a7f_0 @@ -109,14 +109,14 @@ dependencies: - givaro=4.1.1=h0a799c6_3 - glpk=5.0=h3cb5acd_0 - jmol=14.32.9=h694c41f_0 - - libboost=1.83.0=hf44e908_0 + - libboost=1.84.0=h5b2dd29_0 - libedit=3.1.20191231=h0678c8f_2 - libgfortran=5.0.0=13_2_0_h97931a8_1 - libglib=2.78.1=h6d9ecee_0 - libhomfly=1.02r6=hc929b4f_0 - libhwloc=2.9.3=default_h24e0189_1009 - libllvm15=15.0.7=he4b1e75_3 - - libnghttp2=1.58.0=h64cf6d3_0 + - libnghttp2=1.58.0=h64cf6d3_1 - libssh2=1.11.0=hd019ec5_0 - libtiff=4.6.0=h684deea_2 - m4ri=20140914=h3f75d11_1005 @@ -137,7 +137,7 @@ dependencies: - krb5=1.21.2=hb884880_0 - lcms2=2.16=ha2f27b4_0 - ld64_osx-64=609=h0fd476b_15 - - libboost-devel=1.83.0=h7728843_0 + - libboost-devel=1.84.0=h7728843_0 - libbrial=1.2.12=h8d08345_1 - libclang-cpp15=15.0.7=default_h6b1ee41_4 - libflint=3.0.1=h5d15de0_ntl_100 @@ -150,7 +150,7 @@ dependencies: - openjpeg=2.5.0=ha4da562_3 - pari=2.15.4=h93f793c_2_pthread - ppl=1.2=ha60d53e_1006 - - python=3.11.6=h30d4d87_0_cpython + - python=3.11.7=h9f0c242_0_cpython - qd=2.3.22=h2beb688_1004 - sqlite=3.44.2=h7461747_0 - tbb=2021.11.0=he51d815_0 @@ -158,8 +158,7 @@ dependencies: - appdirs=1.4.4=pyh9f0ad1d_0 - appnope=0.1.3=pyhd8ed1ab_0 - attrs=23.1.0=pyh71513ae_1 - - backcall=0.2.0=pyh9f0ad1d_0 - - boost-cpp=1.83.0=h07eb623_0 + - boost-cpp=1.84.0=h07eb623_0 - brial=1.2.12=pyh694c41f_1 - brotli-python=1.1.0=py311hdf8f085_1 - cached_property=1.5.2=pyha770c72_1 @@ -171,15 +170,16 @@ dependencies: - charset-normalizer=3.3.2=pyhd8ed1ab_0 - clang-15=15.0.7=default_h6b1ee41_4 - colorama=0.4.6=pyhd8ed1ab_0 + - conway-polynomials=0.8=pyhd8ed1ab_0 - cycler=0.12.1=pyhd8ed1ab_0 - cysignals=1.11.2=py311h8a58447_3 - - cython=3.0.6=py311hd39e593_0 + - cython=3.0.7=py311hdd0406b_0 - debugpy=1.8.0=py311hdf8f085_1 - decorator=5.1.1=pyhd8ed1ab_0 - defusedxml=0.7.1=pyhd8ed1ab_0 - - distlib=0.3.7=pyhd8ed1ab_0 + - distlib=0.3.8=pyhd8ed1ab_0 - docutils=0.20.1=py311h6eed73b_3 - - eclib=20230424=h563f520_1 + - eclib=20231211=h02435c3_0 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 - exceptiongroup=1.2.0=pyhd8ed1ab_0 @@ -204,7 +204,7 @@ dependencies: - libcurl=8.5.0=h726d00d_0 - libgd=2.3.3=h0dceb68_9 - markupsafe=2.1.3=py311h2725bcf_1 - - maxima=5.47.0=h2b27fa8_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 @@ -214,7 +214,7 @@ dependencies: - packaging=23.2=pyhd8ed1ab_0 - pandocfilters=1.5.0=pyhd8ed1ab_0 - parso=0.8.3=pyhd8ed1ab_0 - - pathspec=0.11.2=pyhd8ed1ab_0 + - pathspec=0.12.1=pyhd8ed1ab_0 - pickleshare=0.7.5=py_1003 - pillow=10.1.0=py311hea5c87a_0 - pkgconfig=1.5.5=pyhd8ed1ab_4 @@ -223,7 +223,7 @@ dependencies: - pluggy=1.3.0=pyhd8ed1ab_0 - ply=3.11=py_1 - prometheus_client=0.19.0=pyhd8ed1ab_0 - - psutil=5.9.5=py311h2725bcf_1 + - psutil=5.9.7=py311he705e18_0 - ptyprocess=0.7.0=pyhd3deb0d_0 - pure_eval=0.2.2=pyhd8ed1ab_0 - py=1.11.0=pyh6c4a22f_0 @@ -241,7 +241,7 @@ dependencies: - pyyaml=6.0.1=py311h2725bcf_1 - pyzmq=25.1.2=py311h889d6d6_0 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.13.2=py311h5e0f0e4_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 @@ -258,7 +258,7 @@ dependencies: - traitlets=5.14.0=pyhd8ed1ab_0 - trove-classifiers=2023.11.29=pyhd8ed1ab_0 - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 - - typing_extensions=4.8.0=pyha770c72_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 @@ -269,10 +269,10 @@ dependencies: - wheel=0.42.0=pyhd8ed1ab_0 - widgetsnbextension=4.0.9=pyhd8ed1ab_0 - zipp=3.17.0=pyhd8ed1ab_0 - - anyio=4.1.0=pyhd8ed1ab_0 + - anyio=4.2.0=pyhd8ed1ab_0 - asttokens=2.4.1=pyhd8ed1ab_0 - async-lru=2.0.4=pyhd8ed1ab_0 - - babel=2.13.1=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 @@ -280,19 +280,19 @@ dependencies: - cctools=973.0.1=hd9ad811_15 - cffi=1.16.0=py311hc0b63fd_0 - clang=15.0.7=hac416ee_4 - - cmake=3.28.0=hc7ee4c4_0 + - 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.46.0=py311he705e18_0 + - fonttools=4.47.0=py311he705e18_0 - harfbuzz=8.3.0=hf45c392_0 - importlib-metadata=7.0.0=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.0=py311h6eed73b_0 + - jupyter_core=5.5.1=py311h6eed73b_0 - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 - libcblas=3.9.0=20_osx64_openblas - liblapack=3.9.0=20_osx64_openblas @@ -300,22 +300,21 @@ dependencies: - memory-allocator=0.1.3=py311h2725bcf_0 - overrides=7.4.0=pyhd8ed1ab_0 - pexpect=4.8.0=pyh1a96a4e_2 - - pip=23.3.1=pyhd8ed1ab_0 + - pip=23.3.2=pyhd8ed1ab_0 - pplpy=0.8.9=py311h7355a2a_0 - primecountpy=0.1.0=py311h5fe6e05_4 - - prompt-toolkit=3.0.41=pyha770c72_0 + - prompt-toolkit=3.0.42=pyha770c72_0 - pybind11=2.11.1=py311h5fe6e05_2 - - pyobjc-core=10.0=py311hf110eff_0 + - pyobjc-core=10.1=py311h9b70068_0 - pyproject-api=1.6.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 - - sagemath-db-conway-polynomials=0.5.0=h033912b_1 - sympy=1.12=pypyh9d50eac_103 - terminado=0.18.0=pyh31c8845_0 - tinycss2=1.2.1=pyhd8ed1ab_0 - - typing-extensions=4.8.0=hd8ed1ab_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 @@ -326,17 +325,17 @@ dependencies: - fflas-ffpack=2.4.3=h026fd7e_2 - fqdn=1.5.1=pyhd8ed1ab_0 - gsl=2.7=h93259b0_0 - - hatchling=1.18.0=pyhd8ed1ab_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.4.4=pyhd8ed1ab_1 + - jupyter_server_terminals=0.5.0=pyhd8ed1ab_0 - liblapacke=3.9.0=20_osx64_openblas - numpy=1.26.2=py311h93c810c_0 - pango=1.50.14=h19c1c8a_2 - - prompt_toolkit=3.0.41=hd8ed1ab_0 - - pyobjc-framework-cocoa=10.0=py311hf110eff_1 + - prompt_toolkit=3.0.42=hd8ed1ab_0 + - pyobjc-framework-cocoa=10.1=py311h9b70068_0 - requests=2.31.0=pyhd8ed1ab_0 - setuptools-scm=8.0.4=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 @@ -366,24 +365,24 @@ dependencies: - matplotlib-base=3.8.2=py311hd316c10_0 - nbformat=5.9.2=pyhd8ed1ab_0 - rw=0.9=h10d778d_1 - - clang_impl_osx-64=15.0.7=h03d6864_6 + - 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_6 - - nbconvert-core=7.12.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=h3d2d1bf_6 + - 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.12.0=pyhd8ed1ab_0 - - clangxx_osx-64=15.0.7=h655633e_6 + - 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.12.0=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 diff --git a/src/environment-3.9-linux-aarch64.yml b/src/environment-3.9-linux-aarch64.yml index f5e1bc0094a..a6def73b317 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: e1d3ebda3b68459ab7cf103b09db5045e50ff41442ea888dfb2efab9a2ce1112 +# input_hash: c38919ee81734178b79845569c6031fa434acc1fe30099876cee095117077374 channels: - conda-forge @@ -44,7 +44,7 @@ dependencies: - bc=1.07.1=hf897c2e_0 - bdw-gc=8.0.6=hd62202e_0 - bzip2=1.0.8=h31becfc_5 - - c-ares=1.23.0=h31becfc_0 + - c-ares=1.24.0=h31becfc_0 - cliquer=1.22=hb9de7d4_0 - fribidi=1.0.10=hb9de7d4_0 - gengetopt=2.23=h01db608_0 @@ -61,11 +61,11 @@ dependencies: - libbraiding=1.2=hd600fc2_0 - libbrotlicommon=1.1.0=h31becfc_1 - libdeflate=1.17=hb4cce97_0 - - libev=4.33=h516909a_1 + - libev=4.33=h31becfc_2 - libexpat=2.5.0=hd600fc2_1 - libffi=3.4.2=h3557bc0_5 - libgfortran5=13.2.0=h582850c_3 - - libiconv=1.17=h9cdd2b7_0 + - libiconv=1.17=h31becfc_2 - libnsl=2.0.1=h31becfc_0 - libsanitizer=12.3.0=h8ebda82_3 - libsodium=1.0.18=hb9de7d4_1 @@ -115,7 +115,7 @@ dependencies: - libedit=3.1.20191231=he28a2e2_2 - libgfortran-ng=13.2.0=he9431aa_3 - libhomfly=1.02r6=hb9de7d4_0 - - libnghttp2=1.58.0=hb0e430d_0 + - libnghttp2=1.58.0=hb0e430d_1 - libpng=1.6.39=hf9034f9_0 - libsqlite=3.44.2=h194ca79_0 - libssh2=1.11.0=h492db2e_0 @@ -171,7 +171,6 @@ dependencies: - appnope=0.1.3=pyhd8ed1ab_0 - attrs=23.1.0=pyh71513ae_1 - automake=1.16.5=pl5321h8af1aa0_0 - - backcall=0.2.0=pyh9f0ad1d_0 - brotli=1.1.0=h31becfc_1 - brotli-python=1.1.0=py39h387a81e_1 - c-compiler=1.6.0=h31becfc_0 @@ -181,15 +180,16 @@ dependencies: - chardet=5.2.0=py39ha65689a_1 - charset-normalizer=3.3.2=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_0 + - conway-polynomials=0.8=pyhd8ed1ab_0 - cycler=0.12.1=pyhd8ed1ab_0 - cysignals=1.11.2=py39hfa81392_3 - - cython=3.0.6=py39h387a81e_0 + - cython=3.0.7=py39h387a81e_0 - debugpy=1.8.0=py39h387a81e_1 - decorator=5.1.1=pyhd8ed1ab_0 - defusedxml=0.7.1=pyhd8ed1ab_0 - - distlib=0.3.7=pyhd8ed1ab_0 + - distlib=0.3.8=pyhd8ed1ab_0 - docutils=0.20.1=py39ha65689a_3 - - eclib=20230424=he26bab5_1 + - eclib=20231211=he26bab5_0 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 - exceptiongroup=1.2.0=pyhd8ed1ab_0 @@ -221,7 +221,7 @@ dependencies: - libwebp=1.2.4=h7bdf6e5_1 - m4rie=20150908=h75e8696_1001 - markupsafe=2.1.3=py39h7cc1d5f_1 - - maxima=5.47.0=h6475f26_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 @@ -232,7 +232,7 @@ dependencies: - packaging=23.2=pyhd8ed1ab_0 - pandocfilters=1.5.0=pyhd8ed1ab_0 - parso=0.8.3=pyhd8ed1ab_0 - - pathspec=0.11.2=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 @@ -240,7 +240,7 @@ dependencies: - pluggy=1.3.0=pyhd8ed1ab_0 - ply=3.11=py_1 - prometheus_client=0.19.0=pyhd8ed1ab_0 - - psutil=5.9.5=py39h898b7ef_1 + - psutil=5.9.7=py39h898b7ef_0 - ptyprocess=0.7.0=pyhd3deb0d_0 - pure_eval=0.2.2=pyhd8ed1ab_0 - py=1.11.0=pyh6c4a22f_0 @@ -258,7 +258,7 @@ dependencies: - pyyaml=6.0.1=py39h898b7ef_1 - pyzmq=25.1.2=py39hbab03a2_0 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.13.2=py39hfe8b3a4_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 @@ -277,7 +277,7 @@ dependencies: - traitlets=5.14.0=pyhd8ed1ab_0 - trove-classifiers=2023.11.29=pyhd8ed1ab_0 - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 - - typing_extensions=4.8.0=pyha770c72_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 @@ -293,10 +293,10 @@ dependencies: - xorg-libxrender=0.9.10=h3557bc0_1003 - xorg-libxt=1.3.0=h7935292_0 - zipp=3.17.0=pyhd8ed1ab_0 - - anyio=4.1.0=pyhd8ed1ab_0 + - anyio=4.2.0=pyhd8ed1ab_0 - asttokens=2.4.1=pyhd8ed1ab_0 - async-lru=2.0.4=pyhd8ed1ab_0 - - babel=2.13.1=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 @@ -311,13 +311,13 @@ dependencies: - cxx-compiler=1.6.0=h2a328a1_0 - cypari2=2.1.3=py39h532d932_2 - deprecation=2.1.0=pyh9f0ad1d_0 - - fonttools=4.46.0=py39h898b7ef_0 + - fonttools=4.47.0=py39h898b7ef_0 - fortran-compiler=1.6.0=h7048d53_0 - importlib-metadata=7.0.0=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.0=py39h4420490_0 + - jupyter_core=5.5.1=py39h4420490_0 - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 - libcblas=3.9.0=20_linuxaarch64_openblas - libgd=2.3.3=h99c6b3b_4 @@ -327,21 +327,20 @@ dependencies: - overrides=7.4.0=pyhd8ed1ab_0 - pexpect=4.8.0=pyh1a96a4e_2 - pillow=9.4.0=py39h72365ce_1 - - pip=23.3.1=pyhd8ed1ab_0 + - pip=23.3.2=pyhd8ed1ab_0 - pplpy=0.8.9=py39h087fc0e_0 - primecountpy=0.1.0=py39hd16970a_3 - - prompt-toolkit=3.0.41=pyha770c72_0 + - prompt-toolkit=3.0.42=pyha770c72_0 - pybind11=2.11.1=py39hd16970a_2 - pyproject-api=1.6.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 - - sagemath-db-conway-polynomials=0.5.0=h4fd8a4c_1 - sympy=1.12=pypyh9d50eac_103 - terminado=0.18.0=pyh0d859eb_0 - tinycss2=1.2.1=pyhd8ed1ab_0 - - typing-extensions=4.8.0=hd8ed1ab_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 @@ -354,15 +353,15 @@ dependencies: - fqdn=1.5.1=pyhd8ed1ab_0 - gsl=2.7=h294027d_0 - harfbuzz=6.0.0=hbcb8a4f_0 - - hatchling=1.18.0=pyhd8ed1ab_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.4.4=pyhd8ed1ab_1 + - jupyter_server_terminals=0.5.0=pyhd8ed1ab_0 - liblapacke=3.9.0=20_linuxaarch64_openblas - numpy=1.26.2=py39h91c28bb_0 - - prompt_toolkit=3.0.41=hd8ed1ab_0 + - prompt_toolkit=3.0.42=hd8ed1ab_0 - requests=2.31.0=pyhd8ed1ab_0 - setuptools-scm=8.0.4=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 @@ -401,12 +400,12 @@ dependencies: - matplotlib=3.8.2=py39ha65689a_0 - nbclient=0.8.0=pyhd8ed1ab_0 - rpy2=3.5.11=py39r42h1ae4408_3 - - nbconvert-core=7.12.0=pyhd8ed1ab_0 + - nbconvert-core=7.13.0=pyhd8ed1ab_0 - jupyter_server=2.12.1=pyhd8ed1ab_0 - - nbconvert-pandoc=7.12.0=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.12.0=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 diff --git a/src/environment-3.9-linux.yml b/src/environment-3.9-linux.yml index 6237693c5fb..70d7997cd8a 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: 8583cc7cd8ab837f91d6ae8c8434620b6dc5097628708516c41541a11ccebae0 +# input_hash: cf46d2d682195a8c349346d85d02cb8a0a60e706951ffa7cfc2487f915d1f0e4 channels: - conda-forge @@ -14,7 +14,7 @@ dependencies: - font-ttf-ubuntu=0.83=h77eed37_1 - kernel-headers_linux-64=2.6.32=he073ed8_16 - ld_impl_linux-64=2.40=h41732ed_0 - - libboost-headers=1.83.0=ha770c72_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 @@ -45,7 +45,7 @@ dependencies: - bc=1.07.1=h7f98852_0 - bdw-gc=8.0.6=h4bd325d_0 - bzip2=1.0.8=hd590300_5 - - c-ares=1.23.0=hd590300_0 + - c-ares=1.24.0=hd590300_0 - cliquer=1.22=h36c2ea0_0 - fribidi=1.0.10=h36c2ea0_0 - gengetopt=2.23=h9c3ff4c_0 @@ -62,11 +62,11 @@ dependencies: - libbraiding=1.2=hcb278e6_0 - libbrotlicommon=1.1.0=hd590300_1 - libdeflate=1.19=hd590300_0 - - libev=4.33=h516909a_1 + - libev=4.33=hd590300_2 - libexpat=2.5.0=hcb278e6_1 - libffi=3.4.2=h7f98852_5 - libgfortran5=13.2.0=ha4646dd_3 - - libiconv=1.17=h166bdaf_0 + - libiconv=1.17=hd590300_2 - libjpeg-turbo=3.0.0=hd590300_1 - libnsl=2.0.1=hd590300_0 - libogg=1.3.4=h7f98852_1 @@ -88,7 +88,7 @@ dependencies: - ncurses=6.4=h59595ed_2 - ninja=1.11.1=h924138e_0 - nspr=4.35=h27087fc_0 - - openssl=3.1.4=hd590300_0 + - openssl=3.2.0=hd590300_1 - palp=2.20=h36c2ea0_0 - patch=2.7.6=h7f98852_1002 - pixman=0.42.2=h59595ed_0 @@ -127,7 +127,7 @@ dependencies: - libgfortran-ng=13.2.0=h69a702a_3 - libgpg-error=1.47=h71f35ed_0 - libhomfly=1.02r6=h36c2ea0_0 - - libnghttp2=1.58.0=h47da74e_0 + - libnghttp2=1.58.0=h47da74e_1 - libpng=1.6.39=h753d276_0 - libsqlite=3.44.2=h2797004_0 - libssh2=1.11.0=h0841786_0 @@ -161,7 +161,7 @@ dependencies: - gfortran_impl_linux-64=12.3.0=hfcedea8_3 - gxx_impl_linux-64=12.3.0=he2b93b0_3 - krb5=1.21.2=h659d440_0 - - libboost=1.83.0=h6fcfa73_0 + - libboost=1.84.0=h6fcfa73_0 - libflint=3.0.1=h5f2e117_ntl_100 - libgcrypt=1.10.3=hd590300_0 - libglib=2.78.3=h783c2da_0 @@ -175,7 +175,7 @@ dependencies: - mpc=1.3.1=hfe3b2da_0 - mpfi=1.5.4=h9f54685_1001 - mysql-libs=8.0.33=hca2cd23_6 - - nss=3.95=h1d7d5a4_0 + - nss=3.96=h1d7d5a4_0 - pandoc=3.1.3=h32600fe_0 - pari=2.15.4=h4d4ae9b_2_pthread - ppl=1.2=h6ec01c2_1006 @@ -195,7 +195,6 @@ dependencies: - appnope=0.1.3=pyhd8ed1ab_0 - attrs=23.1.0=pyh71513ae_1 - automake=1.16.5=pl5321ha770c72_0 - - backcall=0.2.0=pyh9f0ad1d_0 - brotli=1.1.0=hd590300_1 - brotli-python=1.1.0=py39h3d6467e_1 - c-compiler=1.6.0=hd590300_0 @@ -205,16 +204,17 @@ dependencies: - chardet=5.2.0=py39hf3d152e_1 - charset-normalizer=3.3.2=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_0 + - conway-polynomials=0.8=pyhd8ed1ab_0 - cycler=0.12.1=pyhd8ed1ab_0 - cysignals=1.11.2=py39h1ce0973_3 - - cython=3.0.6=py39h3d6467e_0 + - cython=3.0.7=py39h3d6467e_0 - dbus=1.13.6=h5008d03_3 - debugpy=1.8.0=py39h3d6467e_1 - decorator=5.1.1=pyhd8ed1ab_0 - defusedxml=0.7.1=pyhd8ed1ab_0 - - distlib=0.3.7=pyhd8ed1ab_0 + - distlib=0.3.8=pyhd8ed1ab_0 - docutils=0.20.1=py39hf3d152e_3 - - eclib=20230424=h96f522a_1 + - eclib=20231211=h96f522a_0 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 - exceptiongroup=1.2.0=pyhd8ed1ab_0 @@ -241,17 +241,17 @@ dependencies: - lcalc=2.0.5=h6a8a7c6_1 - lcms2=2.16=hb7c19ff_0 - libblas=3.9.0=20_linux64_openblas - - libboost-devel=1.83.0=h00ab1b0_0 + - libboost-devel=1.84.0=h00ab1b0_0 - libbrial=1.2.12=h3155cbd_1 - libclang13=15.0.7=default_ha2b6cf4_4 - libcups=2.3.3=h4637d8d_4 - - libcurl=8.4.0=hca28451_0 - - libpq=16.1=hfc447b1_0 + - 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 - - maxima=5.47.0=hed6455c_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 @@ -262,7 +262,7 @@ dependencies: - packaging=23.2=pyhd8ed1ab_0 - pandocfilters=1.5.0=pyhd8ed1ab_0 - parso=0.8.3=pyhd8ed1ab_0 - - pathspec=0.11.2=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 @@ -270,7 +270,7 @@ dependencies: - pluggy=1.3.0=pyhd8ed1ab_0 - ply=3.11=py_1 - prometheus_client=0.19.0=pyhd8ed1ab_0 - - psutil=5.9.5=py39hd1e30aa_1 + - psutil=5.9.7=py39hd1e30aa_0 - ptyprocess=0.7.0=pyhd3deb0d_0 - pure_eval=0.2.2=pyhd8ed1ab_0 - py=1.11.0=pyh6c4a22f_0 @@ -288,7 +288,7 @@ dependencies: - pyyaml=6.0.1=py39hd1e30aa_1 - pyzmq=25.1.2=py39h8c080ef_0 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.13.2=py39h9fdd4d6_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 @@ -308,7 +308,7 @@ dependencies: - traitlets=5.14.0=pyhd8ed1ab_0 - trove-classifiers=2023.11.29=pyhd8ed1ab_0 - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 - - typing_extensions=4.8.0=pyha770c72_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 @@ -326,33 +326,33 @@ dependencies: - xorg-libxrender=0.9.11=hd590300_0 - xorg-libxt=1.3.0=hd590300_1 - zipp=3.17.0=pyhd8ed1ab_0 - - anyio=4.1.0=pyhd8ed1ab_0 + - anyio=4.2.0=pyhd8ed1ab_0 - asttokens=2.4.1=pyhd8ed1ab_0 - async-lru=2.0.4=pyhd8ed1ab_0 - - babel=2.13.1=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.83.0=h44aadfe_0 + - boost-cpp=1.84.0=h44aadfe_0 - 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.27.9=hcfe8598_0 + - cmake=3.28.1=hcfe8598_0 - comm=0.1.4=pyhd8ed1ab_0 - cppy=1.2.1=pyhd8ed1ab_0 - - curl=8.4.0=hca28451_0 + - curl=8.5.0=hca28451_0 - cxx-compiler=1.6.0=h00ab1b0_0 - cypari2=2.1.3=py39h1698a45_2 - deprecation=2.1.0=pyh9f0ad1d_0 - - fonttools=4.46.0=py39hd1e30aa_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 - importlib_resources=6.1.1=pyhd8ed1ab_0 - jedi=0.19.1=pyhd8ed1ab_0 - jinja2=3.1.2=pyhd8ed1ab_1 - - jupyter_core=5.5.0=py39hf3d152e_0 + - jupyter_core=5.5.1=py39hf3d152e_0 - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 - libcblas=3.9.0=20_linux64_openblas - libclang=15.0.7=default_hb11cfb5_4 @@ -364,10 +364,10 @@ dependencies: - overrides=7.4.0=pyhd8ed1ab_0 - pexpect=4.8.0=pyh1a96a4e_2 - pillow=10.1.0=py39had0adad_0 - - pip=23.3.1=pyhd8ed1ab_0 + - pip=23.3.2=pyhd8ed1ab_0 - pplpy=0.8.9=py39hba3e9e5_0 - primecountpy=0.1.0=py39h7633fee_4 - - prompt-toolkit=3.0.41=pyha770c72_0 + - 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 @@ -375,12 +375,11 @@ dependencies: - pytz-deprecation-shim=0.1.0.post0=py39hf3d152e_4 - referencing=0.32.0=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - - sagemath-db-conway-polynomials=0.5.0=ha878542_1 - 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.8.0=hd8ed1ab_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 @@ -392,17 +391,17 @@ dependencies: - fflas-ffpack=2.4.3=h912ac81_2 - fqdn=1.5.1=pyhd8ed1ab_0 - gsl=2.7=he838d99_0 - - gstreamer=1.22.7=h98fc4e7_0 + - gstreamer=1.22.8=h98fc4e7_0 - harfbuzz=8.3.0=h3d44ed6_0 - - hatchling=1.18.0=pyhd8ed1ab_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.4.4=pyhd8ed1ab_1 + - jupyter_server_terminals=0.5.0=pyhd8ed1ab_0 - liblapacke=3.9.0=20_linux64_openblas - numpy=1.26.2=py39h474f0d3_0 - - prompt_toolkit=3.0.41=hd8ed1ab_0 + - prompt_toolkit=3.0.42=hd8ed1ab_0 - pyqt5-sip=12.12.2=py39h3d6467e_5 - requests=2.31.0=pyhd8ed1ab_0 - setuptools-scm=8.0.4=pyhd8ed1ab_0 @@ -415,7 +414,7 @@ dependencies: - cvxopt=1.3.2=py39hef4d4b4_1 - fpylll=0.6.0=py39h2525e16_1 - giac=1.9.0.21=h673759e_1 - - gst-plugins-base=1.22.7=h8e1006c_0 + - 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 @@ -445,12 +444,12 @@ dependencies: - pyqt=5.15.9=py39h52134e7_5 - rpy2=3.5.11=py39r43h44dd56e_3 - matplotlib=3.8.2=py39hf3d152e_0 - - nbconvert-core=7.12.0=pyhd8ed1ab_0 + - nbconvert-core=7.13.0=pyhd8ed1ab_0 - jupyter_server=2.12.1=pyhd8ed1ab_0 - - nbconvert-pandoc=7.12.0=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.12.0=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 diff --git a/src/environment-3.9-macos-arm64.yml b/src/environment-3.9-macos-arm64.yml index 36c3a042163..6af744a1e51 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: 52b003c8c2e0c44a5c6a02f086be239ec2feed87dc95da7a3359ce516f29130b +# input_hash: 3217982931fe463e0fc64378cd433a690e3db009dc5b1eb97f9e18a0bee0e75a channels: - conda-forge @@ -8,7 +8,7 @@ dependencies: - _r-mutex=1.0.1=anacondar_1 - bc=1.07.1=h3422bc3_0 - bzip2=1.0.8=h93a5062_5 - - c-ares=1.23.0=h93a5062_0 + - c-ares=1.24.0=h93a5062_0 - ca-certificates=2023.11.17=hf0a4a13_0 - cliquer=1.22=h27ca646_0 - font-ttf-dejavu-sans-mono=2.37=hab24e00_0 @@ -22,11 +22,11 @@ dependencies: - libbrotlicommon=1.1.0=hb547adb_1 - libcxx=16.0.6=h4653b0c_0 - libdeflate=1.17=h1a8c8d9_0 - - libev=4.33=h642e427_1 + - 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=he4db4b2_0 + - libiconv=1.17=h0d3ecfb_2 - libsodium=1.0.18=h27ca646_1 - libtool=2.4.7=hb7217d7_0 - libuv=1.46.0=hb547adb_0 @@ -112,7 +112,7 @@ dependencies: - libgfortran=5.0.0=13_2_0_hd922786_1 - libglib=2.78.1=hd9b11f9_0 - libhomfly=1.02r6=h27ca646_0 - - libnghttp2=1.58.0=ha4dd798_0 + - libnghttp2=1.58.0=ha4dd798_1 - libssh2=1.11.0=h7a5bd25_0 - libtiff=4.5.0=h5dffbdd_2 - libxml2=2.10.3=h67585b2_4 @@ -152,7 +152,6 @@ dependencies: - appdirs=1.4.4=pyh9f0ad1d_0 - appnope=0.1.3=pyhd8ed1ab_0 - attrs=23.1.0=pyh71513ae_1 - - backcall=0.2.0=pyh9f0ad1d_0 - brial=1.2.12=pyh694c41f_1 - brotli-python=1.1.0=py39hb198ff7_1 - cached_property=1.5.2=pyha770c72_1 @@ -162,15 +161,16 @@ dependencies: - chardet=5.2.0=py39h2804cbe_1 - charset-normalizer=3.3.2=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_0 + - conway-polynomials=0.8=pyhd8ed1ab_0 - cycler=0.12.1=pyhd8ed1ab_0 - cysignals=1.11.2=py39h65fc70a_3 - - cython=3.0.6=py39h4ce5507_0 + - cython=3.0.7=py39hf3050f2_0 - debugpy=1.8.0=py39hb198ff7_1 - decorator=5.1.1=pyhd8ed1ab_0 - defusedxml=0.7.1=pyhd8ed1ab_0 - - distlib=0.3.7=pyhd8ed1ab_0 + - distlib=0.3.8=pyhd8ed1ab_0 - docutils=0.20.1=py39h2804cbe_3 - - eclib=20230424=h8fe5691_1 + - eclib=20231211=h7f07de4_0 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 - exceptiongroup=1.2.0=pyhd8ed1ab_0 @@ -207,7 +207,7 @@ dependencies: - packaging=23.2=pyhd8ed1ab_0 - pandocfilters=1.5.0=pyhd8ed1ab_0 - parso=0.8.3=pyhd8ed1ab_0 - - pathspec=0.11.2=pyhd8ed1ab_0 + - pathspec=0.12.1=pyhd8ed1ab_0 - pickleshare=0.7.5=py_1003 - pillow=9.4.0=py39h8bd98a6_1 - pkgconfig=1.5.5=pyhd8ed1ab_4 @@ -216,7 +216,7 @@ dependencies: - pluggy=1.3.0=pyhd8ed1ab_0 - ply=3.11=py_1 - prometheus_client=0.19.0=pyhd8ed1ab_0 - - psutil=5.9.5=py39h0f82c59_1 + - psutil=5.9.7=py39h17cfd9d_0 - ptyprocess=0.7.0=pyhd3deb0d_0 - pure_eval=0.2.2=pyhd8ed1ab_0 - py=1.11.0=pyh6c4a22f_0 @@ -234,7 +234,7 @@ dependencies: - pyyaml=6.0.1=py39h0f82c59_1 - pyzmq=25.1.2=py39he1e2164_0 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.13.2=py39h8fec3ad_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 @@ -251,7 +251,7 @@ dependencies: - traitlets=5.14.0=pyhd8ed1ab_0 - trove-classifiers=2023.11.29=pyhd8ed1ab_0 - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 - - typing_extensions=4.8.0=pyha770c72_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 @@ -263,10 +263,10 @@ dependencies: - wheel=0.42.0=pyhd8ed1ab_0 - widgetsnbextension=4.0.9=pyhd8ed1ab_0 - zipp=3.17.0=pyhd8ed1ab_0 - - anyio=4.1.0=pyhd8ed1ab_0 + - anyio=4.2.0=pyhd8ed1ab_0 - asttokens=2.4.1=pyhd8ed1ab_0 - async-lru=2.0.4=pyhd8ed1ab_0 - - babel=2.13.1=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 @@ -280,13 +280,13 @@ dependencies: - curl=8.1.2=h912dcd9_0 - cypari2=2.1.3=py39h7462d2a_2 - deprecation=2.1.0=pyh9f0ad1d_0 - - fonttools=4.46.0=py39h17cfd9d_0 + - fonttools=4.47.0=py39h17cfd9d_0 - harfbuzz=6.0.0=hddbc195_0 - importlib-metadata=7.0.0=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.0=py39h2804cbe_0 + - jupyter_core=5.5.1=py39h2804cbe_0 - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 - ld64=609=h89fa09d_15 - libcblas=3.9.0=20_osxarm64_openblas @@ -295,22 +295,21 @@ dependencies: - memory-allocator=0.1.3=py39h0f82c59_0 - overrides=7.4.0=pyhd8ed1ab_0 - pexpect=4.8.0=pyh1a96a4e_2 - - pip=23.3.1=pyhd8ed1ab_0 + - pip=23.3.2=pyhd8ed1ab_0 - pplpy=0.8.9=py39haf103f8_0 - primecountpy=0.1.0=py39hbd775c9_4 - - prompt-toolkit=3.0.41=pyha770c72_0 + - prompt-toolkit=3.0.42=pyha770c72_0 - pybind11=2.11.1=py39hbd775c9_2 - - pyobjc-core=10.0=py39h4d1a642_0 + - pyobjc-core=10.1=py39hb167abd_0 - pyproject-api=1.6.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 - - sagemath-db-conway-polynomials=0.5.0=h4653dfc_1 - sympy=1.12=pypyh9d50eac_103 - terminado=0.18.0=pyh31c8845_0 - tinycss2=1.2.1=pyhd8ed1ab_0 - - typing-extensions=4.8.0=hd8ed1ab_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 @@ -322,17 +321,17 @@ dependencies: - fflas-ffpack=2.4.3=h11f2abc_2 - fqdn=1.5.1=pyhd8ed1ab_0 - gsl=2.7=h6e638da_0 - - hatchling=1.18.0=pyhd8ed1ab_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.4.4=pyhd8ed1ab_1 + - jupyter_server_terminals=0.5.0=pyhd8ed1ab_0 - liblapacke=3.9.0=20_osxarm64_openblas - numpy=1.26.2=py39heee92a0_0 - pango=1.50.14=h6c112b8_0 - - prompt_toolkit=3.0.41=hd8ed1ab_0 - - pyobjc-framework-cocoa=10.0=py39h4d1a642_1 + - prompt_toolkit=3.0.42=hd8ed1ab_0 + - pyobjc-framework-cocoa=10.1=py39hb167abd_0 - requests=2.31.0=pyhd8ed1ab_0 - setuptools-scm=8.0.4=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 @@ -368,19 +367,19 @@ dependencies: - 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_6 - - nbconvert-core=7.12.0=pyhd8ed1ab_0 - - clang_osx-arm64=15.0.7=h54d7cd3_6 + - 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.12.0=pyhd8ed1ab_0 + - nbconvert-pandoc=7.13.0=pyhd8ed1ab_0 - c-compiler=1.6.0=hd291e01_0 - - clangxx_impl_osx-arm64=15.0.7=h768a7fd_6 + - 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.12.0=pyhd8ed1ab_0 + - nbconvert=7.13.0=pyhd8ed1ab_0 - notebook-shim=0.2.3=pyhd8ed1ab_0 - - clangxx_osx-arm64=15.0.7=h77e971b_6 + - 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 diff --git a/src/environment-3.9-macos.yml b/src/environment-3.9-macos.yml index c4b41368241..c924d013cbc 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: 4e81e22a3a64f24f9de6830495178ae1d7e4bd1c74eb4f6ccdfc46ed2c138584 +# input_hash: 64f68d5d5e73112c508b9c6440bab326ddf8fd688cc150a835fbb91f0a1dec36 channels: - conda-forge @@ -8,7 +8,7 @@ dependencies: - _r-mutex=1.0.1=anacondar_1 - bc=1.07.1=h0d85af4_0 - bzip2=1.0.8=h10d778d_5 - - c-ares=1.23.0=h10d778d_0 + - c-ares=1.24.0=h10d778d_0 - ca-certificates=2023.11.17=h8857fd0_0 - cliquer=1.22=hbcb3906_0 - font-ttf-dejavu-sans-mono=2.37=hab24e00_0 @@ -19,15 +19,15 @@ dependencies: - giflib=5.2.1=hb7f2c08_3 - icu=73.2=hf5e326d_0 - libatomic_ops=7.6.14=hb7f2c08_0 - - libboost-headers=1.83.0=h694c41f_0 + - libboost-headers=1.84.0=h694c41f_0 - libbrotlicommon=1.1.0=h0dc2134_1 - libcxx=16.0.6=hd57cbcb_0 - libdeflate=1.19=ha4e1b8e_0 - - libev=4.33=haf1e3a3_1 + - 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=hac89ed1_0 + - libiconv=1.17=hd75f5a5_2 - libjpeg-turbo=3.0.0=h0dc2134_1 - libsodium=1.0.18=hbcb3906_1 - libtool=2.4.7=hf0c8a7f_0 @@ -109,14 +109,14 @@ dependencies: - givaro=4.1.1=h0a799c6_3 - glpk=5.0=h3cb5acd_0 - jmol=14.32.9=h694c41f_0 - - libboost=1.83.0=hf44e908_0 + - libboost=1.84.0=h5b2dd29_0 - libedit=3.1.20191231=h0678c8f_2 - libgfortran=5.0.0=13_2_0_h97931a8_1 - libglib=2.78.1=h6d9ecee_0 - libhomfly=1.02r6=hc929b4f_0 - libhwloc=2.9.3=default_h24e0189_1009 - libllvm15=15.0.7=he4b1e75_3 - - libnghttp2=1.58.0=h64cf6d3_0 + - libnghttp2=1.58.0=h64cf6d3_1 - libssh2=1.11.0=hd019ec5_0 - libtiff=4.6.0=h684deea_2 - m4ri=20140914=h3f75d11_1005 @@ -137,7 +137,7 @@ dependencies: - krb5=1.21.2=hb884880_0 - lcms2=2.16=ha2f27b4_0 - ld64_osx-64=609=h0fd476b_15 - - libboost-devel=1.83.0=h7728843_0 + - libboost-devel=1.84.0=h7728843_0 - libbrial=1.2.12=h8d08345_1 - libclang-cpp15=15.0.7=default_h6b1ee41_4 - libflint=3.0.1=h5d15de0_ntl_100 @@ -158,8 +158,7 @@ dependencies: - appdirs=1.4.4=pyh9f0ad1d_0 - appnope=0.1.3=pyhd8ed1ab_0 - attrs=23.1.0=pyh71513ae_1 - - backcall=0.2.0=pyh9f0ad1d_0 - - boost-cpp=1.83.0=h07eb623_0 + - boost-cpp=1.84.0=h07eb623_0 - brial=1.2.12=pyh694c41f_1 - brotli-python=1.1.0=py39h840bb9f_1 - cached_property=1.5.2=pyha770c72_1 @@ -171,15 +170,16 @@ dependencies: - charset-normalizer=3.3.2=pyhd8ed1ab_0 - clang-15=15.0.7=default_h6b1ee41_4 - colorama=0.4.6=pyhd8ed1ab_0 + - conway-polynomials=0.8=pyhd8ed1ab_0 - cycler=0.12.1=pyhd8ed1ab_0 - cysignals=1.11.2=py39hf6ae30e_3 - - cython=3.0.6=py39h110ca85_0 + - cython=3.0.7=py39hd253f6c_0 - debugpy=1.8.0=py39h840bb9f_1 - decorator=5.1.1=pyhd8ed1ab_0 - defusedxml=0.7.1=pyhd8ed1ab_0 - - distlib=0.3.7=pyhd8ed1ab_0 + - distlib=0.3.8=pyhd8ed1ab_0 - docutils=0.20.1=py39h6e9494a_3 - - eclib=20230424=h563f520_1 + - eclib=20231211=h02435c3_0 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 - exceptiongroup=1.2.0=pyhd8ed1ab_0 @@ -204,7 +204,7 @@ dependencies: - libcurl=8.5.0=h726d00d_0 - libgd=2.3.3=h0dceb68_9 - markupsafe=2.1.3=py39hdc70f33_1 - - maxima=5.47.0=h2b27fa8_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 @@ -214,7 +214,7 @@ dependencies: - packaging=23.2=pyhd8ed1ab_0 - pandocfilters=1.5.0=pyhd8ed1ab_0 - parso=0.8.3=pyhd8ed1ab_0 - - pathspec=0.11.2=pyhd8ed1ab_0 + - pathspec=0.12.1=pyhd8ed1ab_0 - pickleshare=0.7.5=py_1003 - pillow=10.1.0=py39hdd30358_0 - pkgconfig=1.5.5=pyhd8ed1ab_4 @@ -223,7 +223,7 @@ dependencies: - pluggy=1.3.0=pyhd8ed1ab_0 - ply=3.11=py_1 - prometheus_client=0.19.0=pyhd8ed1ab_0 - - psutil=5.9.5=py39hdc70f33_1 + - psutil=5.9.7=py39ha09f3b3_0 - ptyprocess=0.7.0=pyhd3deb0d_0 - pure_eval=0.2.2=pyhd8ed1ab_0 - py=1.11.0=pyh6c4a22f_0 @@ -241,7 +241,7 @@ dependencies: - pyyaml=6.0.1=py39hdc70f33_1 - pyzmq=25.1.2=py39hcb7a90d_0 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.13.2=py39h3f9c672_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 @@ -258,7 +258,7 @@ dependencies: - traitlets=5.14.0=pyhd8ed1ab_0 - trove-classifiers=2023.11.29=pyhd8ed1ab_0 - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 - - typing_extensions=4.8.0=pyha770c72_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 @@ -270,10 +270,10 @@ dependencies: - wheel=0.42.0=pyhd8ed1ab_0 - widgetsnbextension=4.0.9=pyhd8ed1ab_0 - zipp=3.17.0=pyhd8ed1ab_0 - - anyio=4.1.0=pyhd8ed1ab_0 + - anyio=4.2.0=pyhd8ed1ab_0 - asttokens=2.4.1=pyhd8ed1ab_0 - async-lru=2.0.4=pyhd8ed1ab_0 - - babel=2.13.1=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 @@ -281,19 +281,19 @@ dependencies: - cctools=973.0.1=hd9ad811_15 - cffi=1.16.0=py39h18ef598_0 - clang=15.0.7=hac416ee_4 - - cmake=3.28.0=hc7ee4c4_0 + - 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.46.0=py39ha09f3b3_0 + - fonttools=4.47.0=py39ha09f3b3_0 - harfbuzz=8.3.0=hf45c392_0 - importlib-metadata=7.0.0=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.0=py39h6e9494a_0 + - jupyter_core=5.5.1=py39h6e9494a_0 - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 - libcblas=3.9.0=20_osx64_openblas - liblapack=3.9.0=20_osx64_openblas @@ -301,22 +301,21 @@ dependencies: - memory-allocator=0.1.3=py39hdc70f33_0 - overrides=7.4.0=pyhd8ed1ab_0 - pexpect=4.8.0=pyh1a96a4e_2 - - pip=23.3.1=pyhd8ed1ab_0 + - pip=23.3.2=pyhd8ed1ab_0 - pplpy=0.8.9=py39h248ee18_0 - primecountpy=0.1.0=py39h8ee36c8_4 - - prompt-toolkit=3.0.41=pyha770c72_0 + - prompt-toolkit=3.0.42=pyha770c72_0 - pybind11=2.11.1=py39h8ee36c8_2 - - pyobjc-core=10.0=py39head00df_0 + - pyobjc-core=10.1=py39h8602b6b_0 - pyproject-api=1.6.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 - - sagemath-db-conway-polynomials=0.5.0=h033912b_1 - sympy=1.12=pypyh9d50eac_103 - terminado=0.18.0=pyh31c8845_0 - tinycss2=1.2.1=pyhd8ed1ab_0 - - typing-extensions=4.8.0=hd8ed1ab_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 @@ -327,17 +326,17 @@ dependencies: - fflas-ffpack=2.4.3=h026fd7e_2 - fqdn=1.5.1=pyhd8ed1ab_0 - gsl=2.7=h93259b0_0 - - hatchling=1.18.0=pyhd8ed1ab_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.4.4=pyhd8ed1ab_1 + - jupyter_server_terminals=0.5.0=pyhd8ed1ab_0 - liblapacke=3.9.0=20_osx64_openblas - numpy=1.26.2=py39h14c6d2e_0 - pango=1.50.14=h19c1c8a_2 - - prompt_toolkit=3.0.41=hd8ed1ab_0 - - pyobjc-framework-cocoa=10.0=py39head00df_1 + - prompt_toolkit=3.0.42=hd8ed1ab_0 + - pyobjc-framework-cocoa=10.1=py39h8602b6b_0 - requests=2.31.0=pyhd8ed1ab_0 - setuptools-scm=8.0.4=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 @@ -367,24 +366,24 @@ dependencies: - matplotlib-base=3.8.2=py39h7070ae8_0 - nbformat=5.9.2=pyhd8ed1ab_0 - rw=0.9=h10d778d_1 - - clang_impl_osx-64=15.0.7=h03d6864_6 + - 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_6 - - nbconvert-core=7.12.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=h3d2d1bf_6 + - 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.12.0=pyhd8ed1ab_0 - - clangxx_osx-64=15.0.7=h655633e_6 + - 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.12.0=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 diff --git a/src/environment-dev-3.10-linux-aarch64.yml b/src/environment-dev-3.10-linux-aarch64.yml index 229c5c2cad2..3e5074485de 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: 06eb8840780950cd703c6711a71d0de3ce251612e902305606693766c987fa7d +# input_hash: 205d24daed98b1bae4fcde7e7d49ad93af55d71901e5f44a5013ef1392e377a7 channels: - conda-forge @@ -12,7 +12,7 @@ dependencies: - 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.0=h652cbe9_0 + - 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 @@ -46,7 +46,7 @@ dependencies: - bc=1.07.1=hf897c2e_0 - bdw-gc=8.0.6=hd62202e_0 - bzip2=1.0.8=h31becfc_5 - - c-ares=1.23.0=h31becfc_0 + - c-ares=1.24.0=h31becfc_0 - cliquer=1.22=hb9de7d4_0 - fribidi=1.0.10=hb9de7d4_0 - gengetopt=2.23=h01db608_0 @@ -64,11 +64,11 @@ dependencies: - libbrotlicommon=1.1.0=h31becfc_1 - libcbor=0.9.0=h01db608_0 - libdeflate=1.17=hb4cce97_0 - - libev=4.33=h516909a_1 + - libev=4.33=h31becfc_2 - libexpat=2.5.0=hd600fc2_1 - libffi=3.4.2=h3557bc0_5 - libgfortran5=13.2.0=h582850c_3 - - libiconv=1.17=h9cdd2b7_0 + - libiconv=1.17=h31becfc_2 - libnsl=2.0.1=h31becfc_0 - libsanitizer=12.3.0=h8ebda82_3 - libsodium=1.0.18=hb9de7d4_1 @@ -119,7 +119,7 @@ dependencies: - libedit=3.1.20191231=he28a2e2_2 - libgfortran-ng=13.2.0=he9431aa_3 - libhomfly=1.02r6=hb9de7d4_0 - - libnghttp2=1.58.0=hb0e430d_0 + - libnghttp2=1.58.0=hb0e430d_1 - libpng=1.6.39=hf9034f9_0 - libsqlite=3.44.2=h194ca79_0 - libssh2=1.11.0=h492db2e_0 @@ -176,7 +176,6 @@ dependencies: - appnope=0.1.3=pyhd8ed1ab_0 - attrs=23.1.0=pyh71513ae_1 - automake=1.16.5=pl5321h8af1aa0_0 - - backcall=0.2.0=pyh9f0ad1d_0 - brotli=1.1.0=h31becfc_1 - brotli-python=1.1.0=py310hbb3657e_1 - c-compiler=1.6.0=h31becfc_0 @@ -188,17 +187,18 @@ dependencies: - 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 - cycler=0.12.1=pyhd8ed1ab_0 - cysignals=1.11.2=py310h485802a_3 - - cython=3.0.6=py310hbb3657e_0 + - cython=3.0.7=py310hbb3657e_0 - dbus=1.13.6=h12b9eeb_3 - debugpy=1.8.0=py310hbb3657e_1 - decorator=5.1.1=pyhd8ed1ab_0 - defusedxml=0.7.1=pyhd8ed1ab_0 - - distlib=0.3.7=pyhd8ed1ab_0 + - distlib=0.3.8=pyhd8ed1ab_0 - docutils=0.20.1=py310hbbe02a8_3 - - eclib=20230424=he26bab5_1 + - eclib=20231211=he26bab5_0 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 - exceptiongroup=1.2.0=pyhd8ed1ab_0 @@ -234,7 +234,7 @@ dependencies: - libwebp=1.2.4=h7bdf6e5_1 - m4rie=20150908=h75e8696_1001 - markupsafe=2.1.3=py310h7c1f4a2_1 - - maxima=5.47.0=h6475f26_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 @@ -248,7 +248,7 @@ dependencies: - pandocfilters=1.5.0=pyhd8ed1ab_0 - parso=0.8.3=pyhd8ed1ab_0 - pastel=0.2.1=pyhd8ed1ab_0 - - pathspec=0.11.2=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 @@ -257,7 +257,7 @@ dependencies: - pluggy=1.3.0=pyhd8ed1ab_0 - ply=3.11=py_1 - prometheus_client=0.19.0=pyhd8ed1ab_0 - - psutil=5.9.5=py310hb299538_1 + - psutil=5.9.7=py310hb299538_0 - ptyprocess=0.7.0=pyhd3deb0d_0 - pure_eval=0.2.2=pyhd8ed1ab_0 - py=1.11.0=pyh6c4a22f_0 @@ -278,7 +278,7 @@ dependencies: - pyyaml=6.0.1=py310hb299538_1 - pyzmq=25.1.2=py310h014ca53_0 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.13.2=py310h057607a_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 @@ -301,7 +301,7 @@ dependencies: - traitlets=5.14.0=pyhd8ed1ab_0 - trove-classifiers=2023.11.29=pyhd8ed1ab_0 - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 - - typing_extensions=4.8.0=pyha770c72_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 @@ -317,10 +317,10 @@ dependencies: - xorg-libxrender=0.9.10=h3557bc0_1003 - xorg-libxt=1.3.0=h7935292_0 - zipp=3.17.0=pyhd8ed1ab_0 - - anyio=4.1.0=pyhd8ed1ab_0 + - anyio=4.2.0=pyhd8ed1ab_0 - asttokens=2.4.1=pyhd8ed1ab_0 - async-lru=2.0.4=pyhd8ed1ab_0 - - babel=2.13.1=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 @@ -337,7 +337,7 @@ dependencies: - cxx-compiler=1.6.0=h2a328a1_0 - cypari2=2.1.3=py310h4cbba44_2 - deprecation=2.1.0=pyh9f0ad1d_0 - - fonttools=4.46.0=py310hb299538_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 @@ -346,7 +346,7 @@ dependencies: - jaraco.classes=3.3.0=pyhd8ed1ab_0 - jedi=0.19.1=pyhd8ed1ab_0 - jinja2=3.1.2=pyhd8ed1ab_1 - - jupyter_core=5.5.0=py310h4c7bcd0_0 + - jupyter_core=5.5.1=py310h4c7bcd0_0 - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 - libcblas=3.9.0=20_linuxaarch64_openblas - libgd=2.3.3=h99c6b3b_4 @@ -357,10 +357,10 @@ dependencies: - overrides=7.4.0=pyhd8ed1ab_0 - pexpect=4.8.0=pyh1a96a4e_2 - pillow=9.4.0=py310h2843b5e_1 - - pip=23.3.1=pyhd8ed1ab_0 + - pip=23.3.2=pyhd8ed1ab_0 - pplpy=0.8.9=py310hd5c817c_0 - primecountpy=0.1.0=py310h586407a_4 - - prompt-toolkit=3.0.41=pyha770c72_0 + - 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 @@ -369,11 +369,10 @@ dependencies: - referencing=0.32.0=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - ruamel.yaml=0.18.5=py310hb299538_0 - - sagemath-db-conway-polynomials=0.5.0=h4fd8a4c_1 - sympy=1.12=pypyh9d50eac_103 - terminado=0.18.0=pyh0d859eb_0 - tinycss2=1.2.1=pyhd8ed1ab_0 - - typing-extensions=4.8.0=hd8ed1ab_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 @@ -391,15 +390,15 @@ dependencies: - gitpython=3.1.40=pyhd8ed1ab_0 - gsl=2.7=h294027d_0 - harfbuzz=6.0.0=hbcb8a4f_0 - - hatchling=1.18.0=pyhd8ed1ab_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.4.4=pyhd8ed1ab_1 + - jupyter_server_terminals=0.5.0=pyhd8ed1ab_0 - liblapacke=3.9.0=20_linuxaarch64_openblas - numpy=1.26.2=py310hcbab775_0 - - prompt_toolkit=3.0.41=hd8ed1ab_0 + - prompt_toolkit=3.0.42=hd8ed1ab_0 - pydantic-core=2.14.5=py310hfd680ee_0 - pytest-xdist=3.5.0=pyhd8ed1ab_0 - requests=2.31.0=pyhd8ed1ab_0 @@ -449,12 +448,12 @@ dependencies: - matplotlib=3.8.2=py310hbbe02a8_0 - nbclient=0.8.0=pyhd8ed1ab_0 - rpy2=3.5.11=py310r42h8b6b5fc_3 - - nbconvert-core=7.12.0=pyhd8ed1ab_0 + - nbconvert-core=7.13.0=pyhd8ed1ab_0 - jupyter_server=2.12.1=pyhd8ed1ab_0 - - nbconvert-pandoc=7.12.0=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.12.0=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 diff --git a/src/environment-dev-3.10-linux.yml b/src/environment-dev-3.10-linux.yml index 533be8708d9..63279d82c7e 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: 937bf2c50f1c26aac7a6fc76f05c81b042c0312271f6d5e31e91f186497024aa +# input_hash: e806cf8008f4581b2bbb7fa721cb7222007cedcd9dc4ae088a6cfe8342f1c7e7 channels: - conda-forge @@ -12,10 +12,10 @@ dependencies: - 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.0=ha8f183a_0 + - gh=2.40.1=ha8f183a_0 - kernel-headers_linux-64=2.6.32=he073ed8_16 - ld_impl_linux-64=2.40=h41732ed_0 - - libboost-headers=1.83.0=ha770c72_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 @@ -46,7 +46,7 @@ dependencies: - bc=1.07.1=h7f98852_0 - bdw-gc=8.0.6=h4bd325d_0 - bzip2=1.0.8=hd590300_5 - - c-ares=1.23.0=hd590300_0 + - c-ares=1.24.0=hd590300_0 - cliquer=1.22=h36c2ea0_0 - fribidi=1.0.10=h36c2ea0_0 - gengetopt=2.23=h9c3ff4c_0 @@ -64,11 +64,11 @@ dependencies: - libbrotlicommon=1.1.0=hd590300_1 - libcbor=0.10.2=hcb278e6_0 - libdeflate=1.19=hd590300_0 - - libev=4.33=h516909a_1 + - libev=4.33=hd590300_2 - libexpat=2.5.0=hcb278e6_1 - libffi=3.4.2=h7f98852_5 - libgfortran5=13.2.0=ha4646dd_3 - - libiconv=1.17=h166bdaf_0 + - libiconv=1.17=hd590300_2 - libjpeg-turbo=3.0.0=hd590300_1 - libnsl=2.0.1=hd590300_0 - libogg=1.3.4=h7f98852_1 @@ -90,7 +90,7 @@ dependencies: - ncurses=6.4=h59595ed_2 - ninja=1.11.1=h924138e_0 - nspr=4.35=h27087fc_0 - - openssl=3.1.4=hd590300_0 + - openssl=3.2.0=hd590300_1 - palp=2.20=h36c2ea0_0 - patch=2.7.6=h7f98852_1002 - pixman=0.42.2=h59595ed_0 @@ -129,7 +129,7 @@ dependencies: - libgfortran-ng=13.2.0=h69a702a_3 - libgpg-error=1.47=h71f35ed_0 - libhomfly=1.02r6=h36c2ea0_0 - - libnghttp2=1.58.0=h47da74e_0 + - libnghttp2=1.58.0=h47da74e_1 - libpng=1.6.39=h753d276_0 - libsqlite=3.44.2=h2797004_0 - libssh2=1.11.0=h0841786_0 @@ -139,7 +139,7 @@ dependencies: - mpfr=4.2.1=h9458935_0 - mysql-common=8.0.33=hf1915f5_6 - ntl=11.4.3=hef3c4d3_1 - - pcre2=10.40=hc3806b6_0 + - pcre2=10.42=hcad00b1_0 - perl=5.32.1=4_hd590300_perl5 - primecount=7.9=hcb278e6_0 - readline=8.2=h8228510_1 @@ -163,10 +163,10 @@ dependencies: - gfortran_impl_linux-64=12.3.0=hfcedea8_3 - gxx_impl_linux-64=12.3.0=he2b93b0_3 - krb5=1.21.2=h659d440_0 - - libboost=1.83.0=h6fcfa73_0 + - libboost=1.84.0=h6fcfa73_0 - libflint=3.0.1=h5f2e117_ntl_100 - libgcrypt=1.10.3=hd590300_0 - - libglib=2.78.1=hebfc3b9_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 @@ -178,7 +178,7 @@ dependencies: - mpc=1.3.1=hfe3b2da_0 - mpfi=1.5.4=h9f54685_1001 - mysql-libs=8.0.33=hca2cd23_6 - - nss=3.95=h1d7d5a4_0 + - nss=3.96=h1d7d5a4_0 - pandoc=3.1.3=h32600fe_0 - pari=2.15.4=h4d4ae9b_2_pthread - ppl=1.2=h6ec01c2_1006 @@ -198,7 +198,6 @@ dependencies: - appnope=0.1.3=pyhd8ed1ab_0 - attrs=23.1.0=pyh71513ae_1 - automake=1.16.5=pl5321ha770c72_0 - - backcall=0.2.0=pyh9f0ad1d_0 - brotli=1.1.0=hd590300_1 - brotli-python=1.1.0=py310hc6cd4ac_1 - c-compiler=1.6.0=hd590300_0 @@ -210,17 +209,18 @@ dependencies: - 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 - cycler=0.12.1=pyhd8ed1ab_0 - cysignals=1.11.2=py310h945e7c7_3 - - cython=3.0.6=py310hc6cd4ac_0 + - cython=3.0.7=py310hc6cd4ac_0 - dbus=1.13.6=h5008d03_3 - debugpy=1.8.0=py310hc6cd4ac_1 - decorator=5.1.1=pyhd8ed1ab_0 - defusedxml=0.7.1=pyhd8ed1ab_0 - - distlib=0.3.7=pyhd8ed1ab_0 + - distlib=0.3.8=pyhd8ed1ab_0 - docutils=0.20.1=py310hff52083_3 - - eclib=20230424=h96f522a_1 + - eclib=20231211=h96f522a_0 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 - exceptiongroup=1.2.0=pyhd8ed1ab_0 @@ -234,7 +234,7 @@ dependencies: - gast=0.5.4=pyhd8ed1ab_0 - gfortran=12.3.0=h499e0f7_2 - gfortran_linux-64=12.3.0=h7fe76b4_2 - - glib-tools=2.78.1=hfc55251_0 + - 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 @@ -250,18 +250,18 @@ dependencies: - lcalc=2.0.5=h6a8a7c6_1 - lcms2=2.16=hb7c19ff_0 - libblas=3.9.0=20_linux64_openblas - - libboost-devel=1.83.0=h00ab1b0_0 + - libboost-devel=1.84.0=h00ab1b0_0 - libbrial=1.2.12=h3155cbd_1 - libclang13=15.0.7=default_ha2b6cf4_4 - libcups=2.3.3=h4637d8d_4 - - libcurl=8.4.0=hca28451_0 + - libcurl=8.5.0=hca28451_0 - libfido2=1.14.0=h4446dcb_0 - - libpq=16.1=hfc447b1_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 - - maxima=5.47.0=hed6455c_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 @@ -275,7 +275,7 @@ dependencies: - pandocfilters=1.5.0=pyhd8ed1ab_0 - parso=0.8.3=pyhd8ed1ab_0 - pastel=0.2.1=pyhd8ed1ab_0 - - pathspec=0.11.2=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 @@ -284,7 +284,7 @@ dependencies: - pluggy=1.3.0=pyhd8ed1ab_0 - ply=3.11=py_1 - prometheus_client=0.19.0=pyhd8ed1ab_0 - - psutil=5.9.5=py310h2372a71_1 + - psutil=5.9.7=py310h2372a71_0 - ptyprocess=0.7.0=pyhd3deb0d_0 - pure_eval=0.2.2=pyhd8ed1ab_0 - py=1.11.0=pyh6c4a22f_0 @@ -305,7 +305,7 @@ dependencies: - pyyaml=6.0.1=py310h2372a71_1 - pyzmq=25.1.2=py310h795f18f_0 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.13.2=py310hcb5633a_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 @@ -329,7 +329,7 @@ dependencies: - traitlets=5.14.0=pyhd8ed1ab_0 - trove-classifiers=2023.11.29=pyhd8ed1ab_0 - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 - - typing_extensions=4.8.0=pyha770c72_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 @@ -347,38 +347,38 @@ dependencies: - xorg-libxrender=0.9.11=hd590300_0 - xorg-libxt=1.3.0=hd590300_1 - zipp=3.17.0=pyhd8ed1ab_0 - - anyio=4.1.0=pyhd8ed1ab_0 + - anyio=4.2.0=pyhd8ed1ab_0 - asttokens=2.4.1=pyhd8ed1ab_0 - async-lru=2.0.4=pyhd8ed1ab_0 - - babel=2.13.1=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.83.0=h44aadfe_0 + - boost-cpp=1.84.0=h44aadfe_0 - 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.27.9=hcfe8598_0 + - cmake=3.28.1=hcfe8598_0 - comm=0.1.4=pyhd8ed1ab_0 - cppy=1.2.1=pyhd8ed1ab_0 - - curl=8.4.0=hca28451_0 + - curl=8.5.0=hca28451_0 - cxx-compiler=1.6.0=h00ab1b0_0 - cypari2=2.1.3=py310h14ed79e_2 - deprecation=2.1.0=pyh9f0ad1d_0 - - fonttools=4.46.0=py310h2372a71_0 + - fonttools=4.47.0=py310h2372a71_0 - fortran-compiler=1.6.0=heb67821_0 - gitdb=4.0.11=pyhd8ed1ab_0 - - glib=2.78.1=hfc55251_0 + - glib=2.78.3=hfc55251_0 - html5lib=1.1=pyh9f0ad1d_0 - importlib-metadata=7.0.0=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.0=py310hff52083_0 + - jupyter_core=5.5.1=py310hff52083_0 - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 - libcblas=3.9.0=20_linux64_openblas - libclang=15.0.7=default_hb11cfb5_4 @@ -391,10 +391,10 @@ dependencies: - overrides=7.4.0=pyhd8ed1ab_0 - pexpect=4.8.0=pyh1a96a4e_2 - pillow=10.1.0=py310h01dd4db_0 - - pip=23.3.1=pyhd8ed1ab_0 + - pip=23.3.2=pyhd8ed1ab_0 - pplpy=0.8.9=py310h28f6eb6_0 - primecountpy=0.1.0=py310hd41b1e2_4 - - prompt-toolkit=3.0.41=pyha770c72_0 + - 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 @@ -404,12 +404,11 @@ dependencies: - referencing=0.32.0=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - ruamel.yaml=0.18.5=py310h2372a71_0 - - sagemath-db-conway-polynomials=0.5.0=ha878542_1 - 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.8.0=hd8ed1ab_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 @@ -423,20 +422,20 @@ dependencies: - dsdp=5.8=hd9d9efa_1203 - fflas-ffpack=2.4.3=h912ac81_2 - fqdn=1.5.1=pyhd8ed1ab_0 - - git=2.42.0=pl5321h86e50cf_0 + - git=2.43.0=pl5321h7bc287a_0 - gitpython=3.1.40=pyhd8ed1ab_0 - gsl=2.7=he838d99_0 - - gstreamer=1.22.7=h98fc4e7_0 + - gstreamer=1.22.8=h98fc4e7_0 - harfbuzz=8.3.0=h3d44ed6_0 - - hatchling=1.18.0=pyhd8ed1ab_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.4.4=pyhd8ed1ab_1 + - jupyter_server_terminals=0.5.0=pyhd8ed1ab_0 - liblapacke=3.9.0=20_linux64_openblas - numpy=1.26.2=py310hb13e2d6_0 - - prompt_toolkit=3.0.41=hd8ed1ab_0 + - prompt_toolkit=3.0.42=hd8ed1ab_0 - pydantic-core=2.14.5=py310hcb5633a_0 - pyqt5-sip=12.12.2=py310hc6cd4ac_5 - pytest-xdist=3.5.0=pyhd8ed1ab_0 @@ -453,7 +452,7 @@ dependencies: - ensureconda=1.4.3=pyhd8ed1ab_0 - fpylll=0.6.0=py310h7e26f94_1 - giac=1.9.0.21=h673759e_1 - - gst-plugins-base=1.22.7=h8e1006c_0 + - 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 @@ -480,7 +479,7 @@ dependencies: - nbformat=5.9.2=pyhd8ed1ab_0 - pygls=1.2.1=pyhd8ed1ab_0 - qt-main=5.15.8=h82b777d_17 - - r-base=4.3.2=h93585b2_0 + - r-base=4.3.2=hb8ee39d_1 - rw=0.9=hd590300_1 - conda-lock=2.5.1=pyhd8ed1ab_0 - ipympl=0.9.3=pyhd8ed1ab_0 @@ -490,12 +489,12 @@ dependencies: - pyqt=5.15.9=py310h04931ad_5 - rpy2=3.5.11=py310r43h1f7b6fc_3 - matplotlib=3.8.2=py310hff52083_0 - - nbconvert-core=7.12.0=pyhd8ed1ab_0 + - nbconvert-core=7.13.0=pyhd8ed1ab_0 - jupyter_server=2.12.1=pyhd8ed1ab_0 - - nbconvert-pandoc=7.12.0=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.12.0=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 diff --git a/src/environment-dev-3.10-macos-arm64.yml b/src/environment-dev-3.10-macos-arm64.yml index 4c7778424a8..d86a78207a8 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: 3e98179953aa0138b16060bc1cf30cda5dbb75473a482441068a70ab6fce6e95 +# input_hash: eff22b2db37bc406cee8452950a7798c9503f58420a2ce0031b9564d18b33696 channels: - conda-forge @@ -8,7 +8,7 @@ dependencies: - _r-mutex=1.0.1=anacondar_1 - bc=1.07.1=h3422bc3_0 - bzip2=1.0.8=h93a5062_5 - - c-ares=1.23.0=h93a5062_0 + - c-ares=1.24.0=h93a5062_0 - ca-certificates=2023.11.17=hf0a4a13_0 - cliquer=1.22=h27ca646_0 - font-ttf-dejavu-sans-mono=2.37=hab24e00_0 @@ -16,18 +16,18 @@ dependencies: - 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.0=h75b854d_0 + - gh=2.40.1=h75b854d_0 - giflib=5.2.1=h1a8c8d9_3 - jpeg=9e=h1a8c8d9_3 - libatomic_ops=7.6.14=h1a8c8d9_0 - libbrotlicommon=1.1.0=hb547adb_1 - libcxx=16.0.6=h4653b0c_0 - libdeflate=1.17=h1a8c8d9_0 - - libev=4.33=h642e427_1 + - 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=he4db4b2_0 + - libiconv=1.17=h0d3ecfb_2 - libsodium=1.0.18=h27ca646_1 - libtool=2.4.7=hb7217d7_0 - libuv=1.46.0=hb547adb_0 @@ -115,7 +115,7 @@ dependencies: - libgfortran=5.0.0=13_2_0_hd922786_1 - libglib=2.78.1=hd9b11f9_0 - libhomfly=1.02r6=h27ca646_0 - - libnghttp2=1.58.0=ha4dd798_0 + - libnghttp2=1.58.0=ha4dd798_1 - libssh2=1.11.0=h7a5bd25_0 - libtiff=4.5.0=h5dffbdd_2 - libxml2=2.10.3=h67585b2_4 @@ -155,7 +155,6 @@ dependencies: - appdirs=1.4.4=pyh9f0ad1d_0 - appnope=0.1.3=pyhd8ed1ab_0 - attrs=23.1.0=pyh71513ae_1 - - backcall=0.2.0=pyh9f0ad1d_0 - brial=1.2.12=pyh694c41f_1 - brotli-python=1.1.0=py310h1253130_1 - cached_property=1.5.2=pyha770c72_1 @@ -167,16 +166,17 @@ dependencies: - 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 - cycler=0.12.1=pyhd8ed1ab_0 - cysignals=1.11.2=py310hfd3b3fe_3 - - cython=3.0.6=py310hd5a4765_0 + - cython=3.0.7=py310h692a8b6_0 - debugpy=1.8.0=py310h1253130_1 - decorator=5.1.1=pyhd8ed1ab_0 - defusedxml=0.7.1=pyhd8ed1ab_0 - - distlib=0.3.7=pyhd8ed1ab_0 + - distlib=0.3.8=pyhd8ed1ab_0 - docutils=0.20.1=py310hbe9552e_3 - - eclib=20230424=h8fe5691_1 + - eclib=20231211=h7f07de4_0 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 - exceptiongroup=1.2.0=pyhd8ed1ab_0 @@ -219,7 +219,7 @@ dependencies: - pandocfilters=1.5.0=pyhd8ed1ab_0 - parso=0.8.3=pyhd8ed1ab_0 - pastel=0.2.1=pyhd8ed1ab_0 - - pathspec=0.11.2=pyhd8ed1ab_0 + - pathspec=0.12.1=pyhd8ed1ab_0 - pickleshare=0.7.5=py_1003 - pillow=9.4.0=py310h5a7539a_1 - pkgconfig=1.5.5=pyhd8ed1ab_4 @@ -229,7 +229,7 @@ dependencies: - pluggy=1.3.0=pyhd8ed1ab_0 - ply=3.11=py_1 - prometheus_client=0.19.0=pyhd8ed1ab_0 - - psutil=5.9.5=py310h2aa6e3c_1 + - psutil=5.9.7=py310hd125d64_0 - ptyprocess=0.7.0=pyhd3deb0d_0 - pure_eval=0.2.2=pyhd8ed1ab_0 - py=1.11.0=pyh6c4a22f_0 @@ -250,7 +250,7 @@ dependencies: - pyyaml=6.0.1=py310h2aa6e3c_1 - pyzmq=25.1.2=py310hbb13138_0 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.13.2=py310hd442715_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 @@ -271,7 +271,7 @@ dependencies: - traitlets=5.14.0=pyhd8ed1ab_0 - trove-classifiers=2023.11.29=pyhd8ed1ab_0 - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 - - typing_extensions=4.8.0=pyha770c72_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 @@ -283,10 +283,10 @@ dependencies: - wheel=0.42.0=pyhd8ed1ab_0 - widgetsnbextension=4.0.9=pyhd8ed1ab_0 - zipp=3.17.0=pyhd8ed1ab_0 - - anyio=4.1.0=pyhd8ed1ab_0 + - anyio=4.2.0=pyhd8ed1ab_0 - asttokens=2.4.1=pyhd8ed1ab_0 - async-lru=2.0.4=pyhd8ed1ab_0 - - babel=2.13.1=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 @@ -302,7 +302,7 @@ dependencies: - curl=8.1.2=h912dcd9_0 - cypari2=2.1.3=py310h13936bf_2 - deprecation=2.1.0=pyh9f0ad1d_0 - - fonttools=4.46.0=py310hd125d64_0 + - fonttools=4.47.0=py310hd125d64_0 - gitdb=4.0.11=pyhd8ed1ab_0 - harfbuzz=6.0.0=hddbc195_0 - html5lib=1.1=pyh9f0ad1d_0 @@ -311,7 +311,7 @@ dependencies: - jaraco.classes=3.3.0=pyhd8ed1ab_0 - jedi=0.19.1=pyhd8ed1ab_0 - jinja2=3.1.2=pyhd8ed1ab_1 - - jupyter_core=5.5.0=py310hbe9552e_0 + - jupyter_core=5.5.1=py310hbe9552e_0 - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 - ld64=609=h89fa09d_15 - libcblas=3.9.0=20_osxarm64_openblas @@ -320,12 +320,12 @@ dependencies: - memory-allocator=0.1.3=py310h2aa6e3c_0 - overrides=7.4.0=pyhd8ed1ab_0 - pexpect=4.8.0=pyh1a96a4e_2 - - pip=23.3.1=pyhd8ed1ab_0 + - pip=23.3.2=pyhd8ed1ab_0 - pplpy=0.8.9=py310hab1f656_0 - primecountpy=0.1.0=py310h38f39d4_4 - - prompt-toolkit=3.0.41=pyha770c72_0 + - prompt-toolkit=3.0.42=pyha770c72_0 - pybind11=2.11.1=py310h38f39d4_2 - - pyobjc-core=10.0=py310hd07e440_0 + - pyobjc-core=10.1=py310hb3aa912_0 - pyproject-api=1.6.1=pyhd8ed1ab_0 - pytest=7.4.3=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 @@ -333,11 +333,10 @@ dependencies: - referencing=0.32.0=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - ruamel.yaml=0.18.5=py310hd125d64_0 - - sagemath-db-conway-polynomials=0.5.0=h4653dfc_1 - sympy=1.12=pypyh9d50eac_103 - terminado=0.18.0=pyh31c8845_0 - tinycss2=1.2.1=pyhd8ed1ab_0 - - typing-extensions=4.8.0=hd8ed1ab_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 @@ -353,18 +352,18 @@ dependencies: - git=2.42.0=pl5321h46e2b6d_0 - gitpython=3.1.40=pyhd8ed1ab_0 - gsl=2.7=h6e638da_0 - - hatchling=1.18.0=pyhd8ed1ab_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.4.4=pyhd8ed1ab_1 + - jupyter_server_terminals=0.5.0=pyhd8ed1ab_0 - liblapacke=3.9.0=20_osxarm64_openblas - numpy=1.26.2=py310h30ee222_0 - pango=1.50.14=h6c112b8_0 - - prompt_toolkit=3.0.41=hd8ed1ab_0 + - prompt_toolkit=3.0.42=hd8ed1ab_0 - pydantic-core=2.14.5=py310hd442715_0 - - pyobjc-framework-cocoa=10.0=py310hd07e440_1 + - pyobjc-framework-cocoa=10.1=py310hb3aa912_0 - pytest-xdist=3.5.0=pyhd8ed1ab_0 - requests=2.31.0=pyhd8ed1ab_0 - setuptools-scm=8.0.4=pyhd8ed1ab_0 @@ -409,19 +408,19 @@ dependencies: - 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_6 - - nbconvert-core=7.12.0=pyhd8ed1ab_0 - - clang_osx-arm64=15.0.7=h54d7cd3_6 + - 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.12.0=pyhd8ed1ab_0 + - nbconvert-pandoc=7.13.0=pyhd8ed1ab_0 - c-compiler=1.6.0=hd291e01_0 - - clangxx_impl_osx-arm64=15.0.7=h768a7fd_6 + - 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.12.0=pyhd8ed1ab_0 + - nbconvert=7.13.0=pyhd8ed1ab_0 - notebook-shim=0.2.3=pyhd8ed1ab_0 - - clangxx_osx-arm64=15.0.7=h77e971b_6 + - 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 diff --git a/src/environment-dev-3.10-macos.yml b/src/environment-dev-3.10-macos.yml index 2029d0239d1..c35a0480400 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: 03e8926cb6289268633e37f32a8605552bec75b57159db0cf7bd2c183e2a307a +# input_hash: 6eb9d5d3e7cea14a6487c37418ba6c346a5e94b0bbb07ea1594ce8447bc2d700 channels: - conda-forge @@ -8,7 +8,7 @@ dependencies: - _r-mutex=1.0.1=anacondar_1 - bc=1.07.1=h0d85af4_0 - bzip2=1.0.8=h10d778d_5 - - c-ares=1.23.0=h10d778d_0 + - c-ares=1.24.0=h10d778d_0 - ca-certificates=2023.11.17=h8857fd0_0 - cliquer=1.22=hbcb3906_0 - font-ttf-dejavu-sans-mono=2.37=hab24e00_0 @@ -16,19 +16,19 @@ dependencies: - 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.0=h990441c_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.83.0=h694c41f_0 + - libboost-headers=1.84.0=h694c41f_0 - libbrotlicommon=1.1.0=h0dc2134_1 - libcxx=16.0.6=hd57cbcb_0 - libdeflate=1.19=ha4e1b8e_0 - - libev=4.33=haf1e3a3_1 + - 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=hac89ed1_0 + - libiconv=1.17=hd75f5a5_2 - libjpeg-turbo=3.0.0=h0dc2134_1 - libsodium=1.0.18=hbcb3906_1 - libtool=2.4.7=hf0c8a7f_0 @@ -111,7 +111,7 @@ dependencies: - givaro=4.1.1=h0a799c6_3 - glpk=5.0=h3cb5acd_0 - jmol=14.32.9=h694c41f_0 - - libboost=1.83.0=hf44e908_0 + - libboost=1.84.0=h5b2dd29_0 - libedit=3.1.20191231=h0678c8f_2 - libfido2=1.14.0=h3cbcf74_0 - libgfortran=5.0.0=13_2_0_h97931a8_1 @@ -119,7 +119,7 @@ dependencies: - libhomfly=1.02r6=hc929b4f_0 - libhwloc=2.9.3=default_h24e0189_1009 - libllvm15=15.0.7=he4b1e75_3 - - libnghttp2=1.58.0=h64cf6d3_0 + - libnghttp2=1.58.0=h64cf6d3_1 - libssh2=1.11.0=hd019ec5_0 - libtiff=4.6.0=h684deea_2 - m4ri=20140914=h3f75d11_1005 @@ -140,7 +140,7 @@ dependencies: - krb5=1.21.2=hb884880_0 - lcms2=2.16=ha2f27b4_0 - ld64_osx-64=609=h0fd476b_15 - - libboost-devel=1.83.0=h7728843_0 + - libboost-devel=1.84.0=h7728843_0 - libbrial=1.2.12=h8d08345_1 - libclang-cpp15=15.0.7=default_h6b1ee41_4 - libflint=3.0.1=h5d15de0_ntl_100 @@ -161,8 +161,7 @@ dependencies: - appdirs=1.4.4=pyh9f0ad1d_0 - appnope=0.1.3=pyhd8ed1ab_0 - attrs=23.1.0=pyh71513ae_1 - - backcall=0.2.0=pyh9f0ad1d_0 - - boost-cpp=1.83.0=h07eb623_0 + - boost-cpp=1.84.0=h07eb623_0 - brial=1.2.12=pyh694c41f_1 - brotli-python=1.1.0=py310h9e9d8ca_1 - cached_property=1.5.2=pyha770c72_1 @@ -176,16 +175,17 @@ dependencies: - clang-15=15.0.7=default_h6b1ee41_4 - 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 - cycler=0.12.1=pyhd8ed1ab_0 - cysignals=1.11.2=py310h8c82e65_3 - - cython=3.0.6=py310had63691_0 + - cython=3.0.7=py310h5daac23_0 - debugpy=1.8.0=py310h9e9d8ca_1 - decorator=5.1.1=pyhd8ed1ab_0 - defusedxml=0.7.1=pyhd8ed1ab_0 - - distlib=0.3.7=pyhd8ed1ab_0 + - distlib=0.3.8=pyhd8ed1ab_0 - docutils=0.20.1=py310h2ec42d9_3 - - eclib=20230424=h563f520_1 + - eclib=20231211=h02435c3_0 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 - exceptiongroup=1.2.0=pyhd8ed1ab_0 @@ -212,7 +212,7 @@ dependencies: - libcurl=8.5.0=h726d00d_0 - libgd=2.3.3=h0dceb68_9 - markupsafe=2.1.3=py310h6729b98_1 - - maxima=5.47.0=h2b27fa8_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 @@ -226,7 +226,7 @@ dependencies: - pandocfilters=1.5.0=pyhd8ed1ab_0 - parso=0.8.3=pyhd8ed1ab_0 - pastel=0.2.1=pyhd8ed1ab_0 - - pathspec=0.11.2=pyhd8ed1ab_0 + - pathspec=0.12.1=pyhd8ed1ab_0 - pickleshare=0.7.5=py_1003 - pillow=10.1.0=py310he65384d_0 - pkgconfig=1.5.5=pyhd8ed1ab_4 @@ -236,7 +236,7 @@ dependencies: - pluggy=1.3.0=pyhd8ed1ab_0 - ply=3.11=py_1 - prometheus_client=0.19.0=pyhd8ed1ab_0 - - psutil=5.9.5=py310h6729b98_1 + - psutil=5.9.7=py310hb372a2b_0 - ptyprocess=0.7.0=pyhd3deb0d_0 - pure_eval=0.2.2=pyhd8ed1ab_0 - py=1.11.0=pyh6c4a22f_0 @@ -257,7 +257,7 @@ dependencies: - pyyaml=6.0.1=py310h6729b98_1 - pyzmq=25.1.2=py310h6b67f7f_0 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.13.2=py310h0e083fb_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 @@ -278,7 +278,7 @@ dependencies: - traitlets=5.14.0=pyhd8ed1ab_0 - trove-classifiers=2023.11.29=pyhd8ed1ab_0 - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 - - typing_extensions=4.8.0=pyha770c72_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 @@ -290,10 +290,10 @@ dependencies: - wheel=0.42.0=pyhd8ed1ab_0 - widgetsnbextension=4.0.9=pyhd8ed1ab_0 - zipp=3.17.0=pyhd8ed1ab_0 - - anyio=4.1.0=pyhd8ed1ab_0 + - anyio=4.2.0=pyhd8ed1ab_0 - asttokens=2.4.1=pyhd8ed1ab_0 - async-lru=2.0.4=pyhd8ed1ab_0 - - babel=2.13.1=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 @@ -303,13 +303,13 @@ dependencies: - clang=15.0.7=hac416ee_4 - click-default-group=1.2.4=pyhd8ed1ab_0 - clikit=0.6.2=pyhd8ed1ab_2 - - cmake=3.28.0=hc7ee4c4_0 + - 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.46.0=py310hb372a2b_0 + - fonttools=4.47.0=py310hb372a2b_0 - gitdb=4.0.11=pyhd8ed1ab_0 - harfbuzz=8.3.0=hf45c392_0 - html5lib=1.1=pyh9f0ad1d_0 @@ -318,7 +318,7 @@ dependencies: - jaraco.classes=3.3.0=pyhd8ed1ab_0 - jedi=0.19.1=pyhd8ed1ab_0 - jinja2=3.1.2=pyhd8ed1ab_1 - - jupyter_core=5.5.0=py310h2ec42d9_0 + - jupyter_core=5.5.1=py310h2ec42d9_0 - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 - libcblas=3.9.0=20_osx64_openblas - liblapack=3.9.0=20_osx64_openblas @@ -326,12 +326,12 @@ dependencies: - memory-allocator=0.1.3=py310h6729b98_0 - overrides=7.4.0=pyhd8ed1ab_0 - pexpect=4.8.0=pyh1a96a4e_2 - - pip=23.3.1=pyhd8ed1ab_0 + - pip=23.3.2=pyhd8ed1ab_0 - pplpy=0.8.9=py310hd89f7aa_0 - primecountpy=0.1.0=py310h88cfcbd_4 - - prompt-toolkit=3.0.41=pyha770c72_0 + - prompt-toolkit=3.0.42=pyha770c72_0 - pybind11=2.11.1=py310h88cfcbd_2 - - pyobjc-core=10.0=py310hef2d279_0 + - pyobjc-core=10.1=py310h3674b6a_0 - pyproject-api=1.6.1=pyhd8ed1ab_0 - pytest=7.4.3=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 @@ -339,11 +339,10 @@ dependencies: - referencing=0.32.0=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - ruamel.yaml=0.18.5=py310hb372a2b_0 - - sagemath-db-conway-polynomials=0.5.0=h033912b_1 - sympy=1.12=pypyh9d50eac_103 - terminado=0.18.0=pyh31c8845_0 - tinycss2=1.2.1=pyhd8ed1ab_0 - - typing-extensions=4.8.0=hd8ed1ab_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 @@ -358,18 +357,18 @@ dependencies: - git=2.42.0=pl5321hbb4c4ee_0 - gitpython=3.1.40=pyhd8ed1ab_0 - gsl=2.7=h93259b0_0 - - hatchling=1.18.0=pyhd8ed1ab_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.4.4=pyhd8ed1ab_1 + - jupyter_server_terminals=0.5.0=pyhd8ed1ab_0 - liblapacke=3.9.0=20_osx64_openblas - numpy=1.26.2=py310h2a7ecf2_0 - pango=1.50.14=h19c1c8a_2 - - prompt_toolkit=3.0.41=hd8ed1ab_0 + - prompt_toolkit=3.0.42=hd8ed1ab_0 - pydantic-core=2.14.5=py310h0e083fb_0 - - pyobjc-framework-cocoa=10.0=py310hef2d279_1 + - pyobjc-framework-cocoa=10.1=py310h3674b6a_0 - pytest-xdist=3.5.0=pyhd8ed1ab_0 - requests=2.31.0=pyhd8ed1ab_0 - setuptools-scm=8.0.4=pyhd8ed1ab_0 @@ -407,25 +406,25 @@ dependencies: - nbformat=5.9.2=pyhd8ed1ab_0 - pygls=1.2.1=pyhd8ed1ab_0 - rw=0.9=h10d778d_1 - - clang_impl_osx-64=15.0.7=h03d6864_6 + - 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_6 - - nbconvert-core=7.12.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=h3d2d1bf_6 + - 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.12.0=pyhd8ed1ab_0 - - clangxx_osx-64=15.0.7=h655633e_6 + - 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.12.0=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 diff --git a/src/environment-dev-3.11-linux-aarch64.yml b/src/environment-dev-3.11-linux-aarch64.yml index 33798963467..d3fef3676c5 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: f2c75493990434197a14e70e04ad96318fbf3850e1af6a9c75b66c2c0c328c17 +# input_hash: 61440f9bf5b10e5736a9f88f0d4d24374ac0851704ea2bd8947851379f6d2985 channels: - conda-forge @@ -12,7 +12,7 @@ dependencies: - 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.0=h652cbe9_0 + - 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 @@ -46,7 +46,7 @@ dependencies: - bc=1.07.1=hf897c2e_0 - bdw-gc=8.0.6=hd62202e_0 - bzip2=1.0.8=h31becfc_5 - - c-ares=1.23.0=h31becfc_0 + - c-ares=1.24.0=h31becfc_0 - cliquer=1.22=hb9de7d4_0 - fribidi=1.0.10=hb9de7d4_0 - gengetopt=2.23=h01db608_0 @@ -64,11 +64,11 @@ dependencies: - libbrotlicommon=1.1.0=h31becfc_1 - libcbor=0.9.0=h01db608_0 - libdeflate=1.17=hb4cce97_0 - - libev=4.33=h516909a_1 + - libev=4.33=h31becfc_2 - libexpat=2.5.0=hd600fc2_1 - libffi=3.4.2=h3557bc0_5 - libgfortran5=13.2.0=h582850c_3 - - libiconv=1.17=h9cdd2b7_0 + - libiconv=1.17=h31becfc_2 - libnsl=2.0.1=h31becfc_0 - libsanitizer=12.3.0=h8ebda82_3 - libsodium=1.0.18=hb9de7d4_1 @@ -119,7 +119,7 @@ dependencies: - libedit=3.1.20191231=he28a2e2_2 - libgfortran-ng=13.2.0=he9431aa_3 - libhomfly=1.02r6=hb9de7d4_0 - - libnghttp2=1.58.0=hb0e430d_0 + - libnghttp2=1.58.0=hb0e430d_1 - libpng=1.6.39=hf9034f9_0 - libsqlite=3.44.2=h194ca79_0 - libssh2=1.11.0=h492db2e_0 @@ -164,7 +164,7 @@ dependencies: - mpfi=1.5.4=h846f343_1001 - pari=2.15.4=h169c2a7_2_pthread - ppl=1.2=h984aac9_1006 - - python=3.11.6=h43d1f9e_0_cpython + - python=3.11.7=h43d1f9e_0_cpython - qd=2.3.22=h05efe27_1004 - sqlite=3.44.2=h3b3482f_0 - tachyon=0.99b6=h63ab1d9_1001 @@ -176,7 +176,6 @@ dependencies: - appnope=0.1.3=pyhd8ed1ab_0 - attrs=23.1.0=pyh71513ae_1 - automake=1.16.5=pl5321h8af1aa0_0 - - backcall=0.2.0=pyh9f0ad1d_0 - brotli=1.1.0=h31becfc_1 - brotli-python=1.1.0=py311h8715677_1 - c-compiler=1.6.0=h31becfc_0 @@ -188,17 +187,18 @@ dependencies: - 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 - cycler=0.12.1=pyhd8ed1ab_0 - cysignals=1.11.2=py311h644d908_3 - - cython=3.0.6=py311h8715677_0 + - cython=3.0.7=py311h8715677_0 - dbus=1.13.6=h12b9eeb_3 - debugpy=1.8.0=py311h8715677_1 - decorator=5.1.1=pyhd8ed1ab_0 - defusedxml=0.7.1=pyhd8ed1ab_0 - - distlib=0.3.7=pyhd8ed1ab_0 + - distlib=0.3.8=pyhd8ed1ab_0 - docutils=0.20.1=py311hfecb2dc_3 - - eclib=20230424=he26bab5_1 + - eclib=20231211=he26bab5_0 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 - exceptiongroup=1.2.0=pyhd8ed1ab_0 @@ -234,7 +234,7 @@ dependencies: - libwebp=1.2.4=h7bdf6e5_1 - m4rie=20150908=h75e8696_1001 - markupsafe=2.1.3=py311hc8f2f60_1 - - maxima=5.47.0=h6475f26_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 @@ -248,7 +248,7 @@ dependencies: - pandocfilters=1.5.0=pyhd8ed1ab_0 - parso=0.8.3=pyhd8ed1ab_0 - pastel=0.2.1=pyhd8ed1ab_0 - - pathspec=0.11.2=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 @@ -257,7 +257,7 @@ dependencies: - pluggy=1.3.0=pyhd8ed1ab_0 - ply=3.11=py_1 - prometheus_client=0.19.0=pyhd8ed1ab_0 - - psutil=5.9.5=py311hcd402e7_1 + - psutil=5.9.7=py311hcd402e7_0 - ptyprocess=0.7.0=pyhd3deb0d_0 - pure_eval=0.2.2=pyhd8ed1ab_0 - py=1.11.0=pyh6c4a22f_0 @@ -278,7 +278,7 @@ dependencies: - pyyaml=6.0.1=py311hcd402e7_1 - pyzmq=25.1.2=py311h0fdcd05_0 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.13.2=py311h32437ce_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 @@ -301,7 +301,7 @@ dependencies: - traitlets=5.14.0=pyhd8ed1ab_0 - trove-classifiers=2023.11.29=pyhd8ed1ab_0 - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 - - typing_extensions=4.8.0=pyha770c72_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 @@ -316,10 +316,10 @@ dependencies: - xorg-libxrender=0.9.10=h3557bc0_1003 - xorg-libxt=1.3.0=h7935292_0 - zipp=3.17.0=pyhd8ed1ab_0 - - anyio=4.1.0=pyhd8ed1ab_0 + - anyio=4.2.0=pyhd8ed1ab_0 - asttokens=2.4.1=pyhd8ed1ab_0 - async-lru=2.0.4=pyhd8ed1ab_0 - - babel=2.13.1=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 @@ -336,7 +336,7 @@ dependencies: - cxx-compiler=1.6.0=h2a328a1_0 - cypari2=2.1.3=py311h5ab95f0_2 - deprecation=2.1.0=pyh9f0ad1d_0 - - fonttools=4.46.0=py311hcd402e7_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 @@ -345,7 +345,7 @@ dependencies: - jaraco.classes=3.3.0=pyhd8ed1ab_0 - jedi=0.19.1=pyhd8ed1ab_0 - jinja2=3.1.2=pyhd8ed1ab_1 - - jupyter_core=5.5.0=py311hec3470c_0 + - jupyter_core=5.5.1=py311hec3470c_0 - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 - libcblas=3.9.0=20_linuxaarch64_openblas - libgd=2.3.3=h99c6b3b_4 @@ -356,10 +356,10 @@ dependencies: - overrides=7.4.0=pyhd8ed1ab_0 - pexpect=4.8.0=pyh1a96a4e_2 - pillow=9.4.0=py311hf18358d_1 - - pip=23.3.1=pyhd8ed1ab_0 + - pip=23.3.2=pyhd8ed1ab_0 - pplpy=0.8.9=py311haefeb0b_0 - primecountpy=0.1.0=py311h098ece5_4 - - prompt-toolkit=3.0.41=pyha770c72_0 + - 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 @@ -368,11 +368,10 @@ dependencies: - referencing=0.32.0=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - ruamel.yaml=0.18.5=py311hcd402e7_0 - - sagemath-db-conway-polynomials=0.5.0=h4fd8a4c_1 - sympy=1.12=pypyh9d50eac_103 - terminado=0.18.0=pyh0d859eb_0 - tinycss2=1.2.1=pyhd8ed1ab_0 - - typing-extensions=4.8.0=hd8ed1ab_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 @@ -390,15 +389,15 @@ dependencies: - gitpython=3.1.40=pyhd8ed1ab_0 - gsl=2.7=h294027d_0 - harfbuzz=6.0.0=hbcb8a4f_0 - - hatchling=1.18.0=pyhd8ed1ab_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.4.4=pyhd8ed1ab_1 + - jupyter_server_terminals=0.5.0=pyhd8ed1ab_0 - liblapacke=3.9.0=20_linuxaarch64_openblas - numpy=1.26.2=py311h69ead2a_0 - - prompt_toolkit=3.0.41=hd8ed1ab_0 + - prompt_toolkit=3.0.42=hd8ed1ab_0 - pydantic-core=2.14.5=py311h2bdde80_0 - pytest-xdist=3.5.0=pyhd8ed1ab_0 - requests=2.31.0=pyhd8ed1ab_0 @@ -448,12 +447,12 @@ dependencies: - matplotlib=3.8.2=py311hfecb2dc_0 - nbclient=0.8.0=pyhd8ed1ab_0 - rpy2=3.5.11=py311r42hf13da56_3 - - nbconvert-core=7.12.0=pyhd8ed1ab_0 + - nbconvert-core=7.13.0=pyhd8ed1ab_0 - jupyter_server=2.12.1=pyhd8ed1ab_0 - - nbconvert-pandoc=7.12.0=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.12.0=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 diff --git a/src/environment-dev-3.11-linux.yml b/src/environment-dev-3.11-linux.yml index 7fdf21ff229..0e23f16474b 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: f14a38ebd4cc4929e920d9e35887a120374d21ef464574c1abf2270c534d2de4 +# input_hash: 56c42ecbe65cba7282953f079a512567282badec48b591a1070d8b4df13df565 channels: - conda-forge @@ -12,10 +12,10 @@ dependencies: - 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.0=ha8f183a_0 + - gh=2.40.1=ha8f183a_0 - kernel-headers_linux-64=2.6.32=he073ed8_16 - ld_impl_linux-64=2.40=h41732ed_0 - - libboost-headers=1.83.0=ha770c72_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 @@ -46,7 +46,7 @@ dependencies: - bc=1.07.1=h7f98852_0 - bdw-gc=8.0.6=h4bd325d_0 - bzip2=1.0.8=hd590300_5 - - c-ares=1.23.0=hd590300_0 + - c-ares=1.24.0=hd590300_0 - cliquer=1.22=h36c2ea0_0 - fribidi=1.0.10=h36c2ea0_0 - gengetopt=2.23=h9c3ff4c_0 @@ -64,11 +64,11 @@ dependencies: - libbrotlicommon=1.1.0=hd590300_1 - libcbor=0.10.2=hcb278e6_0 - libdeflate=1.19=hd590300_0 - - libev=4.33=h516909a_1 + - libev=4.33=hd590300_2 - libexpat=2.5.0=hcb278e6_1 - libffi=3.4.2=h7f98852_5 - libgfortran5=13.2.0=ha4646dd_3 - - libiconv=1.17=h166bdaf_0 + - libiconv=1.17=hd590300_2 - libjpeg-turbo=3.0.0=hd590300_1 - libnsl=2.0.1=hd590300_0 - libogg=1.3.4=h7f98852_1 @@ -90,7 +90,7 @@ dependencies: - ncurses=6.4=h59595ed_2 - ninja=1.11.1=h924138e_0 - nspr=4.35=h27087fc_0 - - openssl=3.1.4=hd590300_0 + - openssl=3.2.0=hd590300_1 - palp=2.20=h36c2ea0_0 - patch=2.7.6=h7f98852_1002 - pixman=0.42.2=h59595ed_0 @@ -129,7 +129,7 @@ dependencies: - libgfortran-ng=13.2.0=h69a702a_3 - libgpg-error=1.47=h71f35ed_0 - libhomfly=1.02r6=h36c2ea0_0 - - libnghttp2=1.58.0=h47da74e_0 + - libnghttp2=1.58.0=h47da74e_1 - libpng=1.6.39=h753d276_0 - libsqlite=3.44.2=h2797004_0 - libssh2=1.11.0=h0841786_0 @@ -139,7 +139,7 @@ dependencies: - mpfr=4.2.1=h9458935_0 - mysql-common=8.0.33=hf1915f5_6 - ntl=11.4.3=hef3c4d3_1 - - pcre2=10.40=hc3806b6_0 + - pcre2=10.42=hcad00b1_0 - perl=5.32.1=4_hd590300_perl5 - primecount=7.9=hcb278e6_0 - readline=8.2=h8228510_1 @@ -163,10 +163,10 @@ dependencies: - gfortran_impl_linux-64=12.3.0=hfcedea8_3 - gxx_impl_linux-64=12.3.0=he2b93b0_3 - krb5=1.21.2=h659d440_0 - - libboost=1.83.0=h6fcfa73_0 + - libboost=1.84.0=h6fcfa73_0 - libflint=3.0.1=h5f2e117_ntl_100 - libgcrypt=1.10.3=hd590300_0 - - libglib=2.78.1=hebfc3b9_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 @@ -178,11 +178,11 @@ dependencies: - mpc=1.3.1=hfe3b2da_0 - mpfi=1.5.4=h9f54685_1001 - mysql-libs=8.0.33=hca2cd23_6 - - nss=3.95=h1d7d5a4_0 + - 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.6=hab00c5b_0_cpython + - python=3.11.7=hab00c5b_0_cpython - qd=2.3.22=h2cc385e_1004 - sqlite=3.44.2=h2c6b66d_0 - tachyon=0.99b6=0 @@ -198,7 +198,6 @@ dependencies: - appnope=0.1.3=pyhd8ed1ab_0 - attrs=23.1.0=pyh71513ae_1 - automake=1.16.5=pl5321ha770c72_0 - - backcall=0.2.0=pyh9f0ad1d_0 - brotli=1.1.0=hd590300_1 - brotli-python=1.1.0=py311hb755f60_1 - c-compiler=1.6.0=hd590300_0 @@ -210,17 +209,18 @@ dependencies: - 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 - cycler=0.12.1=pyhd8ed1ab_0 - cysignals=1.11.2=py311h82528dc_3 - - cython=3.0.6=py311hb755f60_0 + - cython=3.0.7=py311hb755f60_0 - dbus=1.13.6=h5008d03_3 - debugpy=1.8.0=py311hb755f60_1 - decorator=5.1.1=pyhd8ed1ab_0 - defusedxml=0.7.1=pyhd8ed1ab_0 - - distlib=0.3.7=pyhd8ed1ab_0 + - distlib=0.3.8=pyhd8ed1ab_0 - docutils=0.20.1=py311h38be061_3 - - eclib=20230424=h96f522a_1 + - eclib=20231211=h96f522a_0 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 - exceptiongroup=1.2.0=pyhd8ed1ab_0 @@ -234,7 +234,7 @@ dependencies: - gast=0.5.4=pyhd8ed1ab_0 - gfortran=12.3.0=h499e0f7_2 - gfortran_linux-64=12.3.0=h7fe76b4_2 - - glib-tools=2.78.1=hfc55251_0 + - 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 @@ -250,18 +250,18 @@ dependencies: - lcalc=2.0.5=h6a8a7c6_1 - lcms2=2.16=hb7c19ff_0 - libblas=3.9.0=20_linux64_openblas - - libboost-devel=1.83.0=h00ab1b0_0 + - libboost-devel=1.84.0=h00ab1b0_0 - libbrial=1.2.12=h3155cbd_1 - libclang13=15.0.7=default_ha2b6cf4_4 - libcups=2.3.3=h4637d8d_4 - - libcurl=8.4.0=hca28451_0 + - libcurl=8.5.0=hca28451_0 - libfido2=1.14.0=h4446dcb_0 - - libpq=16.1=hfc447b1_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 - - maxima=5.47.0=hed6455c_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 @@ -275,7 +275,7 @@ dependencies: - pandocfilters=1.5.0=pyhd8ed1ab_0 - parso=0.8.3=pyhd8ed1ab_0 - pastel=0.2.1=pyhd8ed1ab_0 - - pathspec=0.11.2=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 @@ -284,7 +284,7 @@ dependencies: - pluggy=1.3.0=pyhd8ed1ab_0 - ply=3.11=py_1 - prometheus_client=0.19.0=pyhd8ed1ab_0 - - psutil=5.9.5=py311h459d7ec_1 + - psutil=5.9.7=py311h459d7ec_0 - ptyprocess=0.7.0=pyhd3deb0d_0 - pure_eval=0.2.2=pyhd8ed1ab_0 - py=1.11.0=pyh6c4a22f_0 @@ -305,7 +305,7 @@ dependencies: - pyyaml=6.0.1=py311h459d7ec_1 - pyzmq=25.1.2=py311h34ded2d_0 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.13.2=py311h46250e7_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 @@ -329,7 +329,7 @@ dependencies: - traitlets=5.14.0=pyhd8ed1ab_0 - trove-classifiers=2023.11.29=pyhd8ed1ab_0 - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 - - typing_extensions=4.8.0=pyha770c72_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 @@ -346,38 +346,38 @@ dependencies: - xorg-libxrender=0.9.11=hd590300_0 - xorg-libxt=1.3.0=hd590300_1 - zipp=3.17.0=pyhd8ed1ab_0 - - anyio=4.1.0=pyhd8ed1ab_0 + - anyio=4.2.0=pyhd8ed1ab_0 - asttokens=2.4.1=pyhd8ed1ab_0 - async-lru=2.0.4=pyhd8ed1ab_0 - - babel=2.13.1=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.83.0=h44aadfe_0 + - boost-cpp=1.84.0=h44aadfe_0 - 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.27.9=hcfe8598_0 + - cmake=3.28.1=hcfe8598_0 - comm=0.1.4=pyhd8ed1ab_0 - cppy=1.2.1=pyhd8ed1ab_0 - - curl=8.4.0=hca28451_0 + - curl=8.5.0=hca28451_0 - cxx-compiler=1.6.0=h00ab1b0_0 - cypari2=2.1.3=py311hd2352ae_2 - deprecation=2.1.0=pyh9f0ad1d_0 - - fonttools=4.46.0=py311h459d7ec_0 + - fonttools=4.47.0=py311h459d7ec_0 - fortran-compiler=1.6.0=heb67821_0 - gitdb=4.0.11=pyhd8ed1ab_0 - - glib=2.78.1=hfc55251_0 + - glib=2.78.3=hfc55251_0 - html5lib=1.1=pyh9f0ad1d_0 - importlib-metadata=7.0.0=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.0=py311h38be061_0 + - jupyter_core=5.5.1=py311h38be061_0 - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 - libcblas=3.9.0=20_linux64_openblas - libclang=15.0.7=default_hb11cfb5_4 @@ -390,10 +390,10 @@ dependencies: - overrides=7.4.0=pyhd8ed1ab_0 - pexpect=4.8.0=pyh1a96a4e_2 - pillow=10.1.0=py311ha6c5da5_0 - - pip=23.3.1=pyhd8ed1ab_0 + - pip=23.3.2=pyhd8ed1ab_0 - pplpy=0.8.9=py311h85abca9_0 - primecountpy=0.1.0=py311h9547e67_4 - - prompt-toolkit=3.0.41=pyha770c72_0 + - 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 @@ -403,12 +403,11 @@ dependencies: - referencing=0.32.0=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - ruamel.yaml=0.18.5=py311h459d7ec_0 - - sagemath-db-conway-polynomials=0.5.0=ha878542_1 - 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.8.0=hd8ed1ab_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 @@ -422,20 +421,20 @@ dependencies: - dsdp=5.8=hd9d9efa_1203 - fflas-ffpack=2.4.3=h912ac81_2 - fqdn=1.5.1=pyhd8ed1ab_0 - - git=2.42.0=pl5321h86e50cf_0 + - git=2.43.0=pl5321h7bc287a_0 - gitpython=3.1.40=pyhd8ed1ab_0 - gsl=2.7=he838d99_0 - - gstreamer=1.22.7=h98fc4e7_0 + - gstreamer=1.22.8=h98fc4e7_0 - harfbuzz=8.3.0=h3d44ed6_0 - - hatchling=1.18.0=pyhd8ed1ab_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.4.4=pyhd8ed1ab_1 + - jupyter_server_terminals=0.5.0=pyhd8ed1ab_0 - liblapacke=3.9.0=20_linux64_openblas - numpy=1.26.2=py311h64a7726_0 - - prompt_toolkit=3.0.41=hd8ed1ab_0 + - prompt_toolkit=3.0.42=hd8ed1ab_0 - pydantic-core=2.14.5=py311h46250e7_0 - pyqt5-sip=12.12.2=py311hb755f60_5 - pytest-xdist=3.5.0=pyhd8ed1ab_0 @@ -452,7 +451,7 @@ dependencies: - ensureconda=1.4.3=pyhd8ed1ab_0 - fpylll=0.6.0=py311hcfae7cf_1 - giac=1.9.0.21=h673759e_1 - - gst-plugins-base=1.22.7=h8e1006c_0 + - 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 @@ -479,7 +478,7 @@ dependencies: - nbformat=5.9.2=pyhd8ed1ab_0 - pygls=1.2.1=pyhd8ed1ab_0 - qt-main=5.15.8=h82b777d_17 - - r-base=4.3.2=h93585b2_0 + - r-base=4.3.2=hb8ee39d_1 - rw=0.9=hd590300_1 - conda-lock=2.5.1=pyhd8ed1ab_0 - ipympl=0.9.3=pyhd8ed1ab_0 @@ -489,12 +488,12 @@ dependencies: - pyqt=5.15.9=py311hf0fb5b6_5 - rpy2=3.5.11=py311r43h1f0f07a_3 - matplotlib=3.8.2=py311h38be061_0 - - nbconvert-core=7.12.0=pyhd8ed1ab_0 + - nbconvert-core=7.13.0=pyhd8ed1ab_0 - jupyter_server=2.12.1=pyhd8ed1ab_0 - - nbconvert-pandoc=7.12.0=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.12.0=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 diff --git a/src/environment-dev-3.11-macos-arm64.yml b/src/environment-dev-3.11-macos-arm64.yml index 7e6ed67d0ee..57e973865a7 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: 14154c003a0bef4ff2e44893168c4265fa4723a26d51a15f7c89dfcfb97d5254 +# input_hash: 27412966e5080ea2aee7d435840d7e4763032989dbb5d6af642016276929ae26 channels: - conda-forge @@ -8,7 +8,7 @@ dependencies: - _r-mutex=1.0.1=anacondar_1 - bc=1.07.1=h3422bc3_0 - bzip2=1.0.8=h93a5062_5 - - c-ares=1.23.0=h93a5062_0 + - c-ares=1.24.0=h93a5062_0 - ca-certificates=2023.11.17=hf0a4a13_0 - cliquer=1.22=h27ca646_0 - font-ttf-dejavu-sans-mono=2.37=hab24e00_0 @@ -16,18 +16,18 @@ dependencies: - 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.0=h75b854d_0 + - gh=2.40.1=h75b854d_0 - giflib=5.2.1=h1a8c8d9_3 - jpeg=9e=h1a8c8d9_3 - libatomic_ops=7.6.14=h1a8c8d9_0 - libbrotlicommon=1.1.0=hb547adb_1 - libcxx=16.0.6=h4653b0c_0 - libdeflate=1.17=h1a8c8d9_0 - - libev=4.33=h642e427_1 + - 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=he4db4b2_0 + - libiconv=1.17=h0d3ecfb_2 - libsodium=1.0.18=h27ca646_1 - libtool=2.4.7=hb7217d7_0 - libuv=1.46.0=hb547adb_0 @@ -115,7 +115,7 @@ dependencies: - libgfortran=5.0.0=13_2_0_hd922786_1 - libglib=2.78.1=hd9b11f9_0 - libhomfly=1.02r6=h27ca646_0 - - libnghttp2=1.58.0=ha4dd798_0 + - libnghttp2=1.58.0=ha4dd798_1 - libssh2=1.11.0=h7a5bd25_0 - libtiff=4.5.0=h5dffbdd_2 - libxml2=2.10.3=h67585b2_4 @@ -148,14 +148,13 @@ dependencies: - pari=2.15.4=haeeeed7_2_pthread - pkg-config=0.29.2=hab62308_1008 - ppl=1.2=h8b147cf_1006 - - python=3.11.6=h47c9636_0_cpython + - python=3.11.7=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 - - backcall=0.2.0=pyh9f0ad1d_0 - brial=1.2.12=pyh694c41f_1 - brotli-python=1.1.0=py311ha891d26_1 - cached_property=1.5.2=pyha770c72_1 @@ -167,16 +166,17 @@ dependencies: - 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 - cycler=0.12.1=pyhd8ed1ab_0 - cysignals=1.11.2=py311he42fc87_3 - - cython=3.0.6=py311hbaf5611_0 + - cython=3.0.7=py311h92babd0_0 - debugpy=1.8.0=py311ha891d26_1 - decorator=5.1.1=pyhd8ed1ab_0 - defusedxml=0.7.1=pyhd8ed1ab_0 - - distlib=0.3.7=pyhd8ed1ab_0 + - distlib=0.3.8=pyhd8ed1ab_0 - docutils=0.20.1=py311h267d04e_3 - - eclib=20230424=h8fe5691_1 + - eclib=20231211=h7f07de4_0 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 - exceptiongroup=1.2.0=pyhd8ed1ab_0 @@ -219,7 +219,7 @@ dependencies: - pandocfilters=1.5.0=pyhd8ed1ab_0 - parso=0.8.3=pyhd8ed1ab_0 - pastel=0.2.1=pyhd8ed1ab_0 - - pathspec=0.11.2=pyhd8ed1ab_0 + - pathspec=0.12.1=pyhd8ed1ab_0 - pickleshare=0.7.5=py_1003 - pillow=9.4.0=py311h627eb56_1 - pkgconfig=1.5.5=pyhd8ed1ab_4 @@ -229,7 +229,7 @@ dependencies: - pluggy=1.3.0=pyhd8ed1ab_0 - ply=3.11=py_1 - prometheus_client=0.19.0=pyhd8ed1ab_0 - - psutil=5.9.5=py311heffc1b2_1 + - psutil=5.9.7=py311h05b510d_0 - ptyprocess=0.7.0=pyhd3deb0d_0 - pure_eval=0.2.2=pyhd8ed1ab_0 - py=1.11.0=pyh6c4a22f_0 @@ -250,7 +250,7 @@ dependencies: - pyyaml=6.0.1=py311heffc1b2_1 - pyzmq=25.1.2=py311h6727e71_0 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.13.2=py311h94f323b_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 @@ -271,7 +271,7 @@ dependencies: - traitlets=5.14.0=pyhd8ed1ab_0 - trove-classifiers=2023.11.29=pyhd8ed1ab_0 - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 - - typing_extensions=4.8.0=pyha770c72_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 @@ -282,10 +282,10 @@ dependencies: - wheel=0.42.0=pyhd8ed1ab_0 - widgetsnbextension=4.0.9=pyhd8ed1ab_0 - zipp=3.17.0=pyhd8ed1ab_0 - - anyio=4.1.0=pyhd8ed1ab_0 + - anyio=4.2.0=pyhd8ed1ab_0 - asttokens=2.4.1=pyhd8ed1ab_0 - async-lru=2.0.4=pyhd8ed1ab_0 - - babel=2.13.1=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 @@ -301,7 +301,7 @@ dependencies: - curl=8.1.2=h912dcd9_0 - cypari2=2.1.3=py311h149620a_2 - deprecation=2.1.0=pyh9f0ad1d_0 - - fonttools=4.46.0=py311h05b510d_0 + - fonttools=4.47.0=py311h05b510d_0 - gitdb=4.0.11=pyhd8ed1ab_0 - harfbuzz=6.0.0=hddbc195_0 - html5lib=1.1=pyh9f0ad1d_0 @@ -310,7 +310,7 @@ dependencies: - jaraco.classes=3.3.0=pyhd8ed1ab_0 - jedi=0.19.1=pyhd8ed1ab_0 - jinja2=3.1.2=pyhd8ed1ab_1 - - jupyter_core=5.5.0=py311h267d04e_0 + - jupyter_core=5.5.1=py311h267d04e_0 - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 - ld64=609=h89fa09d_15 - libcblas=3.9.0=20_osxarm64_openblas @@ -319,12 +319,12 @@ dependencies: - memory-allocator=0.1.3=py311heffc1b2_0 - overrides=7.4.0=pyhd8ed1ab_0 - pexpect=4.8.0=pyh1a96a4e_2 - - pip=23.3.1=pyhd8ed1ab_0 + - pip=23.3.2=pyhd8ed1ab_0 - pplpy=0.8.9=py311h5ba3760_0 - primecountpy=0.1.0=py311he4fd1f5_4 - - prompt-toolkit=3.0.41=pyha770c72_0 + - prompt-toolkit=3.0.42=pyha770c72_0 - pybind11=2.11.1=py311he4fd1f5_2 - - pyobjc-core=10.0=py311hb702dc4_0 + - pyobjc-core=10.1=py311h665608e_0 - pyproject-api=1.6.1=pyhd8ed1ab_0 - pytest=7.4.3=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 @@ -332,11 +332,10 @@ dependencies: - referencing=0.32.0=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - ruamel.yaml=0.18.5=py311h05b510d_0 - - sagemath-db-conway-polynomials=0.5.0=h4653dfc_1 - sympy=1.12=pypyh9d50eac_103 - terminado=0.18.0=pyh31c8845_0 - tinycss2=1.2.1=pyhd8ed1ab_0 - - typing-extensions=4.8.0=hd8ed1ab_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 @@ -352,18 +351,18 @@ dependencies: - git=2.42.0=pl5321h46e2b6d_0 - gitpython=3.1.40=pyhd8ed1ab_0 - gsl=2.7=h6e638da_0 - - hatchling=1.18.0=pyhd8ed1ab_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.4.4=pyhd8ed1ab_1 + - jupyter_server_terminals=0.5.0=pyhd8ed1ab_0 - liblapacke=3.9.0=20_osxarm64_openblas - numpy=1.26.2=py311h6d074dd_0 - pango=1.50.14=h6c112b8_0 - - prompt_toolkit=3.0.41=hd8ed1ab_0 + - prompt_toolkit=3.0.42=hd8ed1ab_0 - pydantic-core=2.14.5=py311h94f323b_0 - - pyobjc-framework-cocoa=10.0=py311hb702dc4_1 + - pyobjc-framework-cocoa=10.1=py311h665608e_0 - pytest-xdist=3.5.0=pyhd8ed1ab_0 - requests=2.31.0=pyhd8ed1ab_0 - setuptools-scm=8.0.4=pyhd8ed1ab_0 @@ -408,19 +407,19 @@ dependencies: - 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_6 - - nbconvert-core=7.12.0=pyhd8ed1ab_0 - - clang_osx-arm64=15.0.7=h54d7cd3_6 + - 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.12.0=pyhd8ed1ab_0 + - nbconvert-pandoc=7.13.0=pyhd8ed1ab_0 - c-compiler=1.6.0=hd291e01_0 - - clangxx_impl_osx-arm64=15.0.7=h768a7fd_6 + - 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.12.0=pyhd8ed1ab_0 + - nbconvert=7.13.0=pyhd8ed1ab_0 - notebook-shim=0.2.3=pyhd8ed1ab_0 - - clangxx_osx-arm64=15.0.7=h77e971b_6 + - 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 diff --git a/src/environment-dev-3.11-macos.yml b/src/environment-dev-3.11-macos.yml index 10dc13eceef..def5a0a3c44 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: d59828b446ea1238f7ebb3646c012d7ac4f7adff4d6478e2e9623ba63af5b978 +# input_hash: 44b85991c6586ed547f231313cf900e49e139d33b4763935c5cead2842a07f01 channels: - conda-forge @@ -8,7 +8,7 @@ dependencies: - _r-mutex=1.0.1=anacondar_1 - bc=1.07.1=h0d85af4_0 - bzip2=1.0.8=h10d778d_5 - - c-ares=1.23.0=h10d778d_0 + - c-ares=1.24.0=h10d778d_0 - ca-certificates=2023.11.17=h8857fd0_0 - cliquer=1.22=hbcb3906_0 - font-ttf-dejavu-sans-mono=2.37=hab24e00_0 @@ -16,19 +16,19 @@ dependencies: - 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.0=h990441c_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.83.0=h694c41f_0 + - libboost-headers=1.84.0=h694c41f_0 - libbrotlicommon=1.1.0=h0dc2134_1 - libcxx=16.0.6=hd57cbcb_0 - libdeflate=1.19=ha4e1b8e_0 - - libev=4.33=haf1e3a3_1 + - 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=hac89ed1_0 + - libiconv=1.17=hd75f5a5_2 - libjpeg-turbo=3.0.0=h0dc2134_1 - libsodium=1.0.18=hbcb3906_1 - libtool=2.4.7=hf0c8a7f_0 @@ -111,7 +111,7 @@ dependencies: - givaro=4.1.1=h0a799c6_3 - glpk=5.0=h3cb5acd_0 - jmol=14.32.9=h694c41f_0 - - libboost=1.83.0=hf44e908_0 + - libboost=1.84.0=h5b2dd29_0 - libedit=3.1.20191231=h0678c8f_2 - libfido2=1.14.0=h3cbcf74_0 - libgfortran=5.0.0=13_2_0_h97931a8_1 @@ -119,7 +119,7 @@ dependencies: - libhomfly=1.02r6=hc929b4f_0 - libhwloc=2.9.3=default_h24e0189_1009 - libllvm15=15.0.7=he4b1e75_3 - - libnghttp2=1.58.0=h64cf6d3_0 + - libnghttp2=1.58.0=h64cf6d3_1 - libssh2=1.11.0=hd019ec5_0 - libtiff=4.6.0=h684deea_2 - m4ri=20140914=h3f75d11_1005 @@ -140,7 +140,7 @@ dependencies: - krb5=1.21.2=hb884880_0 - lcms2=2.16=ha2f27b4_0 - ld64_osx-64=609=h0fd476b_15 - - libboost-devel=1.83.0=h7728843_0 + - libboost-devel=1.84.0=h7728843_0 - libbrial=1.2.12=h8d08345_1 - libclang-cpp15=15.0.7=default_h6b1ee41_4 - libflint=3.0.1=h5d15de0_ntl_100 @@ -153,7 +153,7 @@ dependencies: - openjpeg=2.5.0=ha4da562_3 - pari=2.15.4=h93f793c_2_pthread - ppl=1.2=ha60d53e_1006 - - python=3.11.6=h30d4d87_0_cpython + - python=3.11.7=h9f0c242_0_cpython - qd=2.3.22=h2beb688_1004 - sqlite=3.44.2=h7461747_0 - tbb=2021.11.0=he51d815_0 @@ -161,8 +161,7 @@ dependencies: - appdirs=1.4.4=pyh9f0ad1d_0 - appnope=0.1.3=pyhd8ed1ab_0 - attrs=23.1.0=pyh71513ae_1 - - backcall=0.2.0=pyh9f0ad1d_0 - - boost-cpp=1.83.0=h07eb623_0 + - boost-cpp=1.84.0=h07eb623_0 - brial=1.2.12=pyh694c41f_1 - brotli-python=1.1.0=py311hdf8f085_1 - cached_property=1.5.2=pyha770c72_1 @@ -176,16 +175,17 @@ dependencies: - clang-15=15.0.7=default_h6b1ee41_4 - 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 - cycler=0.12.1=pyhd8ed1ab_0 - cysignals=1.11.2=py311h8a58447_3 - - cython=3.0.6=py311hd39e593_0 + - cython=3.0.7=py311hdd0406b_0 - debugpy=1.8.0=py311hdf8f085_1 - decorator=5.1.1=pyhd8ed1ab_0 - defusedxml=0.7.1=pyhd8ed1ab_0 - - distlib=0.3.7=pyhd8ed1ab_0 + - distlib=0.3.8=pyhd8ed1ab_0 - docutils=0.20.1=py311h6eed73b_3 - - eclib=20230424=h563f520_1 + - eclib=20231211=h02435c3_0 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 - exceptiongroup=1.2.0=pyhd8ed1ab_0 @@ -212,7 +212,7 @@ dependencies: - libcurl=8.5.0=h726d00d_0 - libgd=2.3.3=h0dceb68_9 - markupsafe=2.1.3=py311h2725bcf_1 - - maxima=5.47.0=h2b27fa8_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 @@ -226,7 +226,7 @@ dependencies: - pandocfilters=1.5.0=pyhd8ed1ab_0 - parso=0.8.3=pyhd8ed1ab_0 - pastel=0.2.1=pyhd8ed1ab_0 - - pathspec=0.11.2=pyhd8ed1ab_0 + - pathspec=0.12.1=pyhd8ed1ab_0 - pickleshare=0.7.5=py_1003 - pillow=10.1.0=py311hea5c87a_0 - pkgconfig=1.5.5=pyhd8ed1ab_4 @@ -236,7 +236,7 @@ dependencies: - pluggy=1.3.0=pyhd8ed1ab_0 - ply=3.11=py_1 - prometheus_client=0.19.0=pyhd8ed1ab_0 - - psutil=5.9.5=py311h2725bcf_1 + - psutil=5.9.7=py311he705e18_0 - ptyprocess=0.7.0=pyhd3deb0d_0 - pure_eval=0.2.2=pyhd8ed1ab_0 - py=1.11.0=pyh6c4a22f_0 @@ -257,7 +257,7 @@ dependencies: - pyyaml=6.0.1=py311h2725bcf_1 - pyzmq=25.1.2=py311h889d6d6_0 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.13.2=py311h5e0f0e4_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 @@ -278,7 +278,7 @@ dependencies: - traitlets=5.14.0=pyhd8ed1ab_0 - trove-classifiers=2023.11.29=pyhd8ed1ab_0 - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 - - typing_extensions=4.8.0=pyha770c72_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 @@ -289,10 +289,10 @@ dependencies: - wheel=0.42.0=pyhd8ed1ab_0 - widgetsnbextension=4.0.9=pyhd8ed1ab_0 - zipp=3.17.0=pyhd8ed1ab_0 - - anyio=4.1.0=pyhd8ed1ab_0 + - anyio=4.2.0=pyhd8ed1ab_0 - asttokens=2.4.1=pyhd8ed1ab_0 - async-lru=2.0.4=pyhd8ed1ab_0 - - babel=2.13.1=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 @@ -302,13 +302,13 @@ dependencies: - clang=15.0.7=hac416ee_4 - click-default-group=1.2.4=pyhd8ed1ab_0 - clikit=0.6.2=pyhd8ed1ab_2 - - cmake=3.28.0=hc7ee4c4_0 + - 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.46.0=py311he705e18_0 + - fonttools=4.47.0=py311he705e18_0 - gitdb=4.0.11=pyhd8ed1ab_0 - harfbuzz=8.3.0=hf45c392_0 - html5lib=1.1=pyh9f0ad1d_0 @@ -317,7 +317,7 @@ dependencies: - jaraco.classes=3.3.0=pyhd8ed1ab_0 - jedi=0.19.1=pyhd8ed1ab_0 - jinja2=3.1.2=pyhd8ed1ab_1 - - jupyter_core=5.5.0=py311h6eed73b_0 + - jupyter_core=5.5.1=py311h6eed73b_0 - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 - libcblas=3.9.0=20_osx64_openblas - liblapack=3.9.0=20_osx64_openblas @@ -325,12 +325,12 @@ dependencies: - memory-allocator=0.1.3=py311h2725bcf_0 - overrides=7.4.0=pyhd8ed1ab_0 - pexpect=4.8.0=pyh1a96a4e_2 - - pip=23.3.1=pyhd8ed1ab_0 + - pip=23.3.2=pyhd8ed1ab_0 - pplpy=0.8.9=py311h7355a2a_0 - primecountpy=0.1.0=py311h5fe6e05_4 - - prompt-toolkit=3.0.41=pyha770c72_0 + - prompt-toolkit=3.0.42=pyha770c72_0 - pybind11=2.11.1=py311h5fe6e05_2 - - pyobjc-core=10.0=py311hf110eff_0 + - pyobjc-core=10.1=py311h9b70068_0 - pyproject-api=1.6.1=pyhd8ed1ab_0 - pytest=7.4.3=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 @@ -338,11 +338,10 @@ dependencies: - referencing=0.32.0=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - ruamel.yaml=0.18.5=py311he705e18_0 - - sagemath-db-conway-polynomials=0.5.0=h033912b_1 - sympy=1.12=pypyh9d50eac_103 - terminado=0.18.0=pyh31c8845_0 - tinycss2=1.2.1=pyhd8ed1ab_0 - - typing-extensions=4.8.0=hd8ed1ab_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 @@ -357,18 +356,18 @@ dependencies: - git=2.42.0=pl5321hbb4c4ee_0 - gitpython=3.1.40=pyhd8ed1ab_0 - gsl=2.7=h93259b0_0 - - hatchling=1.18.0=pyhd8ed1ab_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.4.4=pyhd8ed1ab_1 + - jupyter_server_terminals=0.5.0=pyhd8ed1ab_0 - liblapacke=3.9.0=20_osx64_openblas - numpy=1.26.2=py311h93c810c_0 - pango=1.50.14=h19c1c8a_2 - - prompt_toolkit=3.0.41=hd8ed1ab_0 + - prompt_toolkit=3.0.42=hd8ed1ab_0 - pydantic-core=2.14.5=py311h5e0f0e4_0 - - pyobjc-framework-cocoa=10.0=py311hf110eff_1 + - pyobjc-framework-cocoa=10.1=py311h9b70068_0 - pytest-xdist=3.5.0=pyhd8ed1ab_0 - requests=2.31.0=pyhd8ed1ab_0 - setuptools-scm=8.0.4=pyhd8ed1ab_0 @@ -406,25 +405,25 @@ dependencies: - nbformat=5.9.2=pyhd8ed1ab_0 - pygls=1.2.1=pyhd8ed1ab_0 - rw=0.9=h10d778d_1 - - clang_impl_osx-64=15.0.7=h03d6864_6 + - 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_6 - - nbconvert-core=7.12.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=h3d2d1bf_6 + - 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.12.0=pyhd8ed1ab_0 - - clangxx_osx-64=15.0.7=h655633e_6 + - 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.12.0=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 diff --git a/src/environment-dev-3.9-linux-aarch64.yml b/src/environment-dev-3.9-linux-aarch64.yml index 8761fc926d6..4b70d0a4e98 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: bb419a4008e6bc78549c2286a6007692ae49a4a7f0fbf1d8a876e6387416acf2 +# input_hash: 6bb8baa489bd6fe865a20fa985509961599b43e728e121ea29e980a671f65b17 channels: - conda-forge @@ -12,7 +12,7 @@ dependencies: - 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.0=h652cbe9_0 + - 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 @@ -46,7 +46,7 @@ dependencies: - bc=1.07.1=hf897c2e_0 - bdw-gc=8.0.6=hd62202e_0 - bzip2=1.0.8=h31becfc_5 - - c-ares=1.23.0=h31becfc_0 + - c-ares=1.24.0=h31becfc_0 - cliquer=1.22=hb9de7d4_0 - fribidi=1.0.10=hb9de7d4_0 - gengetopt=2.23=h01db608_0 @@ -64,11 +64,11 @@ dependencies: - libbrotlicommon=1.1.0=h31becfc_1 - libcbor=0.9.0=h01db608_0 - libdeflate=1.17=hb4cce97_0 - - libev=4.33=h516909a_1 + - libev=4.33=h31becfc_2 - libexpat=2.5.0=hd600fc2_1 - libffi=3.4.2=h3557bc0_5 - libgfortran5=13.2.0=h582850c_3 - - libiconv=1.17=h9cdd2b7_0 + - libiconv=1.17=h31becfc_2 - libnsl=2.0.1=h31becfc_0 - libsanitizer=12.3.0=h8ebda82_3 - libsodium=1.0.18=hb9de7d4_1 @@ -119,7 +119,7 @@ dependencies: - libedit=3.1.20191231=he28a2e2_2 - libgfortran-ng=13.2.0=he9431aa_3 - libhomfly=1.02r6=hb9de7d4_0 - - libnghttp2=1.58.0=hb0e430d_0 + - libnghttp2=1.58.0=hb0e430d_1 - libpng=1.6.39=hf9034f9_0 - libsqlite=3.44.2=h194ca79_0 - libssh2=1.11.0=h492db2e_0 @@ -176,7 +176,6 @@ dependencies: - appnope=0.1.3=pyhd8ed1ab_0 - attrs=23.1.0=pyh71513ae_1 - automake=1.16.5=pl5321h8af1aa0_0 - - backcall=0.2.0=pyh9f0ad1d_0 - brotli=1.1.0=h31becfc_1 - brotli-python=1.1.0=py39h387a81e_1 - c-compiler=1.6.0=h31becfc_0 @@ -188,17 +187,18 @@ dependencies: - 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 - cycler=0.12.1=pyhd8ed1ab_0 - cysignals=1.11.2=py39hfa81392_3 - - cython=3.0.6=py39h387a81e_0 + - cython=3.0.7=py39h387a81e_0 - dbus=1.13.6=h12b9eeb_3 - debugpy=1.8.0=py39h387a81e_1 - decorator=5.1.1=pyhd8ed1ab_0 - defusedxml=0.7.1=pyhd8ed1ab_0 - - distlib=0.3.7=pyhd8ed1ab_0 + - distlib=0.3.8=pyhd8ed1ab_0 - docutils=0.20.1=py39ha65689a_3 - - eclib=20230424=he26bab5_1 + - eclib=20231211=he26bab5_0 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 - exceptiongroup=1.2.0=pyhd8ed1ab_0 @@ -234,7 +234,7 @@ dependencies: - libwebp=1.2.4=h7bdf6e5_1 - m4rie=20150908=h75e8696_1001 - markupsafe=2.1.3=py39h7cc1d5f_1 - - maxima=5.47.0=h6475f26_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 @@ -248,7 +248,7 @@ dependencies: - pandocfilters=1.5.0=pyhd8ed1ab_0 - parso=0.8.3=pyhd8ed1ab_0 - pastel=0.2.1=pyhd8ed1ab_0 - - pathspec=0.11.2=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 @@ -257,7 +257,7 @@ dependencies: - pluggy=1.3.0=pyhd8ed1ab_0 - ply=3.11=py_1 - prometheus_client=0.19.0=pyhd8ed1ab_0 - - psutil=5.9.5=py39h898b7ef_1 + - psutil=5.9.7=py39h898b7ef_0 - ptyprocess=0.7.0=pyhd3deb0d_0 - pure_eval=0.2.2=pyhd8ed1ab_0 - py=1.11.0=pyh6c4a22f_0 @@ -278,7 +278,7 @@ dependencies: - pyyaml=6.0.1=py39h898b7ef_1 - pyzmq=25.1.2=py39hbab03a2_0 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.13.2=py39hfe8b3a4_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 @@ -301,7 +301,7 @@ dependencies: - traitlets=5.14.0=pyhd8ed1ab_0 - trove-classifiers=2023.11.29=pyhd8ed1ab_0 - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 - - typing_extensions=4.8.0=pyha770c72_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 @@ -317,10 +317,10 @@ dependencies: - xorg-libxrender=0.9.10=h3557bc0_1003 - xorg-libxt=1.3.0=h7935292_0 - zipp=3.17.0=pyhd8ed1ab_0 - - anyio=4.1.0=pyhd8ed1ab_0 + - anyio=4.2.0=pyhd8ed1ab_0 - asttokens=2.4.1=pyhd8ed1ab_0 - async-lru=2.0.4=pyhd8ed1ab_0 - - babel=2.13.1=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 @@ -337,7 +337,7 @@ dependencies: - cxx-compiler=1.6.0=h2a328a1_0 - cypari2=2.1.3=py39h532d932_2 - deprecation=2.1.0=pyh9f0ad1d_0 - - fonttools=4.46.0=py39h898b7ef_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 @@ -346,7 +346,7 @@ dependencies: - jaraco.classes=3.3.0=pyhd8ed1ab_0 - jedi=0.19.1=pyhd8ed1ab_0 - jinja2=3.1.2=pyhd8ed1ab_1 - - jupyter_core=5.5.0=py39h4420490_0 + - jupyter_core=5.5.1=py39h4420490_0 - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 - libcblas=3.9.0=20_linuxaarch64_openblas - libgd=2.3.3=h99c6b3b_4 @@ -357,10 +357,10 @@ dependencies: - overrides=7.4.0=pyhd8ed1ab_0 - pexpect=4.8.0=pyh1a96a4e_2 - pillow=9.4.0=py39h72365ce_1 - - pip=23.3.1=pyhd8ed1ab_0 + - pip=23.3.2=pyhd8ed1ab_0 - pplpy=0.8.9=py39h087fc0e_0 - primecountpy=0.1.0=py39hd16970a_3 - - prompt-toolkit=3.0.41=pyha770c72_0 + - 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 @@ -369,11 +369,10 @@ dependencies: - referencing=0.32.0=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - ruamel.yaml=0.18.5=py39h898b7ef_0 - - sagemath-db-conway-polynomials=0.5.0=h4fd8a4c_1 - sympy=1.12=pypyh9d50eac_103 - terminado=0.18.0=pyh0d859eb_0 - tinycss2=1.2.1=pyhd8ed1ab_0 - - typing-extensions=4.8.0=hd8ed1ab_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 @@ -391,15 +390,15 @@ dependencies: - gitpython=3.1.40=pyhd8ed1ab_0 - gsl=2.7=h294027d_0 - harfbuzz=6.0.0=hbcb8a4f_0 - - hatchling=1.18.0=pyhd8ed1ab_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.4.4=pyhd8ed1ab_1 + - jupyter_server_terminals=0.5.0=pyhd8ed1ab_0 - liblapacke=3.9.0=20_linuxaarch64_openblas - numpy=1.26.2=py39h91c28bb_0 - - prompt_toolkit=3.0.41=hd8ed1ab_0 + - prompt_toolkit=3.0.42=hd8ed1ab_0 - pydantic-core=2.14.5=py39hf916c31_0 - pytest-xdist=3.5.0=pyhd8ed1ab_0 - requests=2.31.0=pyhd8ed1ab_0 @@ -449,12 +448,12 @@ dependencies: - matplotlib=3.8.2=py39ha65689a_0 - nbclient=0.8.0=pyhd8ed1ab_0 - rpy2=3.5.11=py39r42h1ae4408_3 - - nbconvert-core=7.12.0=pyhd8ed1ab_0 + - nbconvert-core=7.13.0=pyhd8ed1ab_0 - jupyter_server=2.12.1=pyhd8ed1ab_0 - - nbconvert-pandoc=7.12.0=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.12.0=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 diff --git a/src/environment-dev-3.9-linux.yml b/src/environment-dev-3.9-linux.yml index e284b936e19..6da40a4af0c 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: 8d747064aa4868367b63db918bb2631f1d27dad487f7e6b42e134004972e2dca +# input_hash: 8228c70c3f4709e6768e87980d54e76c4e66183c854327691d173d864f96b80a channels: - conda-forge @@ -12,10 +12,10 @@ dependencies: - 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.0=ha8f183a_0 + - gh=2.40.1=ha8f183a_0 - kernel-headers_linux-64=2.6.32=he073ed8_16 - ld_impl_linux-64=2.40=h41732ed_0 - - libboost-headers=1.83.0=ha770c72_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 @@ -46,7 +46,7 @@ dependencies: - bc=1.07.1=h7f98852_0 - bdw-gc=8.0.6=h4bd325d_0 - bzip2=1.0.8=hd590300_5 - - c-ares=1.23.0=hd590300_0 + - c-ares=1.24.0=hd590300_0 - cliquer=1.22=h36c2ea0_0 - fribidi=1.0.10=h36c2ea0_0 - gengetopt=2.23=h9c3ff4c_0 @@ -64,11 +64,11 @@ dependencies: - libbrotlicommon=1.1.0=hd590300_1 - libcbor=0.10.2=hcb278e6_0 - libdeflate=1.19=hd590300_0 - - libev=4.33=h516909a_1 + - libev=4.33=hd590300_2 - libexpat=2.5.0=hcb278e6_1 - libffi=3.4.2=h7f98852_5 - libgfortran5=13.2.0=ha4646dd_3 - - libiconv=1.17=h166bdaf_0 + - libiconv=1.17=hd590300_2 - libjpeg-turbo=3.0.0=hd590300_1 - libnsl=2.0.1=hd590300_0 - libogg=1.3.4=h7f98852_1 @@ -90,7 +90,7 @@ dependencies: - ncurses=6.4=h59595ed_2 - ninja=1.11.1=h924138e_0 - nspr=4.35=h27087fc_0 - - openssl=3.1.4=hd590300_0 + - openssl=3.2.0=hd590300_1 - palp=2.20=h36c2ea0_0 - patch=2.7.6=h7f98852_1002 - pixman=0.42.2=h59595ed_0 @@ -129,7 +129,7 @@ dependencies: - libgfortran-ng=13.2.0=h69a702a_3 - libgpg-error=1.47=h71f35ed_0 - libhomfly=1.02r6=h36c2ea0_0 - - libnghttp2=1.58.0=h47da74e_0 + - libnghttp2=1.58.0=h47da74e_1 - libpng=1.6.39=h753d276_0 - libsqlite=3.44.2=h2797004_0 - libssh2=1.11.0=h0841786_0 @@ -139,7 +139,7 @@ dependencies: - mpfr=4.2.1=h9458935_0 - mysql-common=8.0.33=hf1915f5_6 - ntl=11.4.3=hef3c4d3_1 - - pcre2=10.40=hc3806b6_0 + - pcre2=10.42=hcad00b1_0 - perl=5.32.1=4_hd590300_perl5 - primecount=7.9=hcb278e6_0 - readline=8.2=h8228510_1 @@ -163,10 +163,10 @@ dependencies: - gfortran_impl_linux-64=12.3.0=hfcedea8_3 - gxx_impl_linux-64=12.3.0=he2b93b0_3 - krb5=1.21.2=h659d440_0 - - libboost=1.83.0=h6fcfa73_0 + - libboost=1.84.0=h6fcfa73_0 - libflint=3.0.1=h5f2e117_ntl_100 - libgcrypt=1.10.3=hd590300_0 - - libglib=2.78.1=hebfc3b9_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 @@ -178,7 +178,7 @@ dependencies: - mpc=1.3.1=hfe3b2da_0 - mpfi=1.5.4=h9f54685_1001 - mysql-libs=8.0.33=hca2cd23_6 - - nss=3.95=h1d7d5a4_0 + - nss=3.96=h1d7d5a4_0 - pandoc=3.1.3=h32600fe_0 - pari=2.15.4=h4d4ae9b_2_pthread - ppl=1.2=h6ec01c2_1006 @@ -198,7 +198,6 @@ dependencies: - appnope=0.1.3=pyhd8ed1ab_0 - attrs=23.1.0=pyh71513ae_1 - automake=1.16.5=pl5321ha770c72_0 - - backcall=0.2.0=pyh9f0ad1d_0 - brotli=1.1.0=hd590300_1 - brotli-python=1.1.0=py39h3d6467e_1 - c-compiler=1.6.0=hd590300_0 @@ -210,17 +209,18 @@ dependencies: - 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 - cycler=0.12.1=pyhd8ed1ab_0 - cysignals=1.11.2=py39h1ce0973_3 - - cython=3.0.6=py39h3d6467e_0 + - cython=3.0.7=py39h3d6467e_0 - dbus=1.13.6=h5008d03_3 - debugpy=1.8.0=py39h3d6467e_1 - decorator=5.1.1=pyhd8ed1ab_0 - defusedxml=0.7.1=pyhd8ed1ab_0 - - distlib=0.3.7=pyhd8ed1ab_0 + - distlib=0.3.8=pyhd8ed1ab_0 - docutils=0.20.1=py39hf3d152e_3 - - eclib=20230424=h96f522a_1 + - eclib=20231211=h96f522a_0 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 - exceptiongroup=1.2.0=pyhd8ed1ab_0 @@ -234,7 +234,7 @@ dependencies: - gast=0.5.4=pyhd8ed1ab_0 - gfortran=12.3.0=h499e0f7_2 - gfortran_linux-64=12.3.0=h7fe76b4_2 - - glib-tools=2.78.1=hfc55251_0 + - 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 @@ -250,18 +250,18 @@ dependencies: - lcalc=2.0.5=h6a8a7c6_1 - lcms2=2.16=hb7c19ff_0 - libblas=3.9.0=20_linux64_openblas - - libboost-devel=1.83.0=h00ab1b0_0 + - libboost-devel=1.84.0=h00ab1b0_0 - libbrial=1.2.12=h3155cbd_1 - libclang13=15.0.7=default_ha2b6cf4_4 - libcups=2.3.3=h4637d8d_4 - - libcurl=8.4.0=hca28451_0 + - libcurl=8.5.0=hca28451_0 - libfido2=1.14.0=h4446dcb_0 - - libpq=16.1=hfc447b1_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 - - maxima=5.47.0=hed6455c_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 @@ -275,7 +275,7 @@ dependencies: - pandocfilters=1.5.0=pyhd8ed1ab_0 - parso=0.8.3=pyhd8ed1ab_0 - pastel=0.2.1=pyhd8ed1ab_0 - - pathspec=0.11.2=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 @@ -284,7 +284,7 @@ dependencies: - pluggy=1.3.0=pyhd8ed1ab_0 - ply=3.11=py_1 - prometheus_client=0.19.0=pyhd8ed1ab_0 - - psutil=5.9.5=py39hd1e30aa_1 + - psutil=5.9.7=py39hd1e30aa_0 - ptyprocess=0.7.0=pyhd3deb0d_0 - pure_eval=0.2.2=pyhd8ed1ab_0 - py=1.11.0=pyh6c4a22f_0 @@ -305,7 +305,7 @@ dependencies: - pyyaml=6.0.1=py39hd1e30aa_1 - pyzmq=25.1.2=py39h8c080ef_0 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.13.2=py39h9fdd4d6_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 @@ -329,7 +329,7 @@ dependencies: - traitlets=5.14.0=pyhd8ed1ab_0 - trove-classifiers=2023.11.29=pyhd8ed1ab_0 - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 - - typing_extensions=4.8.0=pyha770c72_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 @@ -347,38 +347,38 @@ dependencies: - xorg-libxrender=0.9.11=hd590300_0 - xorg-libxt=1.3.0=hd590300_1 - zipp=3.17.0=pyhd8ed1ab_0 - - anyio=4.1.0=pyhd8ed1ab_0 + - anyio=4.2.0=pyhd8ed1ab_0 - asttokens=2.4.1=pyhd8ed1ab_0 - async-lru=2.0.4=pyhd8ed1ab_0 - - babel=2.13.1=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.83.0=h44aadfe_0 + - boost-cpp=1.84.0=h44aadfe_0 - 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.27.9=hcfe8598_0 + - cmake=3.28.1=hcfe8598_0 - comm=0.1.4=pyhd8ed1ab_0 - cppy=1.2.1=pyhd8ed1ab_0 - - curl=8.4.0=hca28451_0 + - curl=8.5.0=hca28451_0 - cxx-compiler=1.6.0=h00ab1b0_0 - cypari2=2.1.3=py39h1698a45_2 - deprecation=2.1.0=pyh9f0ad1d_0 - - fonttools=4.46.0=py39hd1e30aa_0 + - fonttools=4.47.0=py39hd1e30aa_0 - fortran-compiler=1.6.0=heb67821_0 - gitdb=4.0.11=pyhd8ed1ab_0 - - glib=2.78.1=hfc55251_0 + - glib=2.78.3=hfc55251_0 - html5lib=1.1=pyh9f0ad1d_0 - importlib-metadata=7.0.0=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.0=py39hf3d152e_0 + - jupyter_core=5.5.1=py39hf3d152e_0 - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 - libcblas=3.9.0=20_linux64_openblas - libclang=15.0.7=default_hb11cfb5_4 @@ -391,10 +391,10 @@ dependencies: - overrides=7.4.0=pyhd8ed1ab_0 - pexpect=4.8.0=pyh1a96a4e_2 - pillow=10.1.0=py39had0adad_0 - - pip=23.3.1=pyhd8ed1ab_0 + - pip=23.3.2=pyhd8ed1ab_0 - pplpy=0.8.9=py39hba3e9e5_0 - primecountpy=0.1.0=py39h7633fee_4 - - prompt-toolkit=3.0.41=pyha770c72_0 + - 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 @@ -404,12 +404,11 @@ dependencies: - referencing=0.32.0=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - ruamel.yaml=0.18.5=py39hd1e30aa_0 - - sagemath-db-conway-polynomials=0.5.0=ha878542_1 - 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.8.0=hd8ed1ab_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 @@ -423,20 +422,20 @@ dependencies: - dsdp=5.8=hd9d9efa_1203 - fflas-ffpack=2.4.3=h912ac81_2 - fqdn=1.5.1=pyhd8ed1ab_0 - - git=2.42.0=pl5321h86e50cf_0 + - git=2.43.0=pl5321h7bc287a_0 - gitpython=3.1.40=pyhd8ed1ab_0 - gsl=2.7=he838d99_0 - - gstreamer=1.22.7=h98fc4e7_0 + - gstreamer=1.22.8=h98fc4e7_0 - harfbuzz=8.3.0=h3d44ed6_0 - - hatchling=1.18.0=pyhd8ed1ab_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.4.4=pyhd8ed1ab_1 + - jupyter_server_terminals=0.5.0=pyhd8ed1ab_0 - liblapacke=3.9.0=20_linux64_openblas - numpy=1.26.2=py39h474f0d3_0 - - prompt_toolkit=3.0.41=hd8ed1ab_0 + - prompt_toolkit=3.0.42=hd8ed1ab_0 - pydantic-core=2.14.5=py39h9fdd4d6_0 - pyqt5-sip=12.12.2=py39h3d6467e_5 - pytest-xdist=3.5.0=pyhd8ed1ab_0 @@ -453,7 +452,7 @@ dependencies: - ensureconda=1.4.3=pyhd8ed1ab_0 - fpylll=0.6.0=py39h2525e16_1 - giac=1.9.0.21=h673759e_1 - - gst-plugins-base=1.22.7=h8e1006c_0 + - 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 @@ -480,7 +479,7 @@ dependencies: - nbformat=5.9.2=pyhd8ed1ab_0 - pygls=1.2.1=pyhd8ed1ab_0 - qt-main=5.15.8=h82b777d_17 - - r-base=4.3.2=h93585b2_0 + - r-base=4.3.2=hb8ee39d_1 - rw=0.9=hd590300_1 - conda-lock=2.5.1=pyhd8ed1ab_0 - ipympl=0.9.3=pyhd8ed1ab_0 @@ -490,12 +489,12 @@ dependencies: - pyqt=5.15.9=py39h52134e7_5 - rpy2=3.5.11=py39r43h44dd56e_3 - matplotlib=3.8.2=py39hf3d152e_0 - - nbconvert-core=7.12.0=pyhd8ed1ab_0 + - nbconvert-core=7.13.0=pyhd8ed1ab_0 - jupyter_server=2.12.1=pyhd8ed1ab_0 - - nbconvert-pandoc=7.12.0=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.12.0=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 diff --git a/src/environment-dev-3.9-macos-arm64.yml b/src/environment-dev-3.9-macos-arm64.yml index 638c2df7676..df36d72fe93 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: 1de1f8638d77008be4dcf00d3695a7006bff58504d1774e4c76e5407c6e59a46 +# input_hash: 0048aada15edee17d798a7bb4c2443c62747b86e759ca3f37153d5ef80efc852 channels: - conda-forge @@ -8,7 +8,7 @@ dependencies: - _r-mutex=1.0.1=anacondar_1 - bc=1.07.1=h3422bc3_0 - bzip2=1.0.8=h93a5062_5 - - c-ares=1.23.0=h93a5062_0 + - c-ares=1.24.0=h93a5062_0 - ca-certificates=2023.11.17=hf0a4a13_0 - cliquer=1.22=h27ca646_0 - font-ttf-dejavu-sans-mono=2.37=hab24e00_0 @@ -16,18 +16,18 @@ dependencies: - 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.0=h75b854d_0 + - gh=2.40.1=h75b854d_0 - giflib=5.2.1=h1a8c8d9_3 - jpeg=9e=h1a8c8d9_3 - libatomic_ops=7.6.14=h1a8c8d9_0 - libbrotlicommon=1.1.0=hb547adb_1 - libcxx=16.0.6=h4653b0c_0 - libdeflate=1.17=h1a8c8d9_0 - - libev=4.33=h642e427_1 + - 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=he4db4b2_0 + - libiconv=1.17=h0d3ecfb_2 - libsodium=1.0.18=h27ca646_1 - libtool=2.4.7=hb7217d7_0 - libuv=1.46.0=hb547adb_0 @@ -115,7 +115,7 @@ dependencies: - libgfortran=5.0.0=13_2_0_hd922786_1 - libglib=2.78.1=hd9b11f9_0 - libhomfly=1.02r6=h27ca646_0 - - libnghttp2=1.58.0=ha4dd798_0 + - libnghttp2=1.58.0=ha4dd798_1 - libssh2=1.11.0=h7a5bd25_0 - libtiff=4.5.0=h5dffbdd_2 - libxml2=2.10.3=h67585b2_4 @@ -155,7 +155,6 @@ dependencies: - appdirs=1.4.4=pyh9f0ad1d_0 - appnope=0.1.3=pyhd8ed1ab_0 - attrs=23.1.0=pyh71513ae_1 - - backcall=0.2.0=pyh9f0ad1d_0 - brial=1.2.12=pyh694c41f_1 - brotli-python=1.1.0=py39hb198ff7_1 - cached_property=1.5.2=pyha770c72_1 @@ -167,16 +166,17 @@ dependencies: - 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 - cycler=0.12.1=pyhd8ed1ab_0 - cysignals=1.11.2=py39h65fc70a_3 - - cython=3.0.6=py39h4ce5507_0 + - cython=3.0.7=py39hf3050f2_0 - debugpy=1.8.0=py39hb198ff7_1 - decorator=5.1.1=pyhd8ed1ab_0 - defusedxml=0.7.1=pyhd8ed1ab_0 - - distlib=0.3.7=pyhd8ed1ab_0 + - distlib=0.3.8=pyhd8ed1ab_0 - docutils=0.20.1=py39h2804cbe_3 - - eclib=20230424=h8fe5691_1 + - eclib=20231211=h7f07de4_0 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 - exceptiongroup=1.2.0=pyhd8ed1ab_0 @@ -219,7 +219,7 @@ dependencies: - pandocfilters=1.5.0=pyhd8ed1ab_0 - parso=0.8.3=pyhd8ed1ab_0 - pastel=0.2.1=pyhd8ed1ab_0 - - pathspec=0.11.2=pyhd8ed1ab_0 + - pathspec=0.12.1=pyhd8ed1ab_0 - pickleshare=0.7.5=py_1003 - pillow=9.4.0=py39h8bd98a6_1 - pkgconfig=1.5.5=pyhd8ed1ab_4 @@ -229,7 +229,7 @@ dependencies: - pluggy=1.3.0=pyhd8ed1ab_0 - ply=3.11=py_1 - prometheus_client=0.19.0=pyhd8ed1ab_0 - - psutil=5.9.5=py39h0f82c59_1 + - psutil=5.9.7=py39h17cfd9d_0 - ptyprocess=0.7.0=pyhd3deb0d_0 - pure_eval=0.2.2=pyhd8ed1ab_0 - py=1.11.0=pyh6c4a22f_0 @@ -250,7 +250,7 @@ dependencies: - pyyaml=6.0.1=py39h0f82c59_1 - pyzmq=25.1.2=py39he1e2164_0 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.13.2=py39h8fec3ad_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 @@ -271,7 +271,7 @@ dependencies: - traitlets=5.14.0=pyhd8ed1ab_0 - trove-classifiers=2023.11.29=pyhd8ed1ab_0 - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 - - typing_extensions=4.8.0=pyha770c72_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 @@ -283,10 +283,10 @@ dependencies: - wheel=0.42.0=pyhd8ed1ab_0 - widgetsnbextension=4.0.9=pyhd8ed1ab_0 - zipp=3.17.0=pyhd8ed1ab_0 - - anyio=4.1.0=pyhd8ed1ab_0 + - anyio=4.2.0=pyhd8ed1ab_0 - asttokens=2.4.1=pyhd8ed1ab_0 - async-lru=2.0.4=pyhd8ed1ab_0 - - babel=2.13.1=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 @@ -302,7 +302,7 @@ dependencies: - curl=8.1.2=h912dcd9_0 - cypari2=2.1.3=py39h7462d2a_2 - deprecation=2.1.0=pyh9f0ad1d_0 - - fonttools=4.46.0=py39h17cfd9d_0 + - fonttools=4.47.0=py39h17cfd9d_0 - gitdb=4.0.11=pyhd8ed1ab_0 - harfbuzz=6.0.0=hddbc195_0 - html5lib=1.1=pyh9f0ad1d_0 @@ -311,7 +311,7 @@ dependencies: - jaraco.classes=3.3.0=pyhd8ed1ab_0 - jedi=0.19.1=pyhd8ed1ab_0 - jinja2=3.1.2=pyhd8ed1ab_1 - - jupyter_core=5.5.0=py39h2804cbe_0 + - jupyter_core=5.5.1=py39h2804cbe_0 - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 - ld64=609=h89fa09d_15 - libcblas=3.9.0=20_osxarm64_openblas @@ -320,12 +320,12 @@ dependencies: - memory-allocator=0.1.3=py39h0f82c59_0 - overrides=7.4.0=pyhd8ed1ab_0 - pexpect=4.8.0=pyh1a96a4e_2 - - pip=23.3.1=pyhd8ed1ab_0 + - pip=23.3.2=pyhd8ed1ab_0 - pplpy=0.8.9=py39haf103f8_0 - primecountpy=0.1.0=py39hbd775c9_4 - - prompt-toolkit=3.0.41=pyha770c72_0 + - prompt-toolkit=3.0.42=pyha770c72_0 - pybind11=2.11.1=py39hbd775c9_2 - - pyobjc-core=10.0=py39h4d1a642_0 + - pyobjc-core=10.1=py39hb167abd_0 - pyproject-api=1.6.1=pyhd8ed1ab_0 - pytest=7.4.3=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 @@ -333,11 +333,10 @@ dependencies: - referencing=0.32.0=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - ruamel.yaml=0.18.5=py39h17cfd9d_0 - - sagemath-db-conway-polynomials=0.5.0=h4653dfc_1 - sympy=1.12=pypyh9d50eac_103 - terminado=0.18.0=pyh31c8845_0 - tinycss2=1.2.1=pyhd8ed1ab_0 - - typing-extensions=4.8.0=hd8ed1ab_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 @@ -353,18 +352,18 @@ dependencies: - git=2.42.0=pl5321h46e2b6d_0 - gitpython=3.1.40=pyhd8ed1ab_0 - gsl=2.7=h6e638da_0 - - hatchling=1.18.0=pyhd8ed1ab_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.4.4=pyhd8ed1ab_1 + - jupyter_server_terminals=0.5.0=pyhd8ed1ab_0 - liblapacke=3.9.0=20_osxarm64_openblas - numpy=1.26.2=py39heee92a0_0 - pango=1.50.14=h6c112b8_0 - - prompt_toolkit=3.0.41=hd8ed1ab_0 + - prompt_toolkit=3.0.42=hd8ed1ab_0 - pydantic-core=2.14.5=py39h8fec3ad_0 - - pyobjc-framework-cocoa=10.0=py39h4d1a642_1 + - pyobjc-framework-cocoa=10.1=py39hb167abd_0 - pytest-xdist=3.5.0=pyhd8ed1ab_0 - requests=2.31.0=pyhd8ed1ab_0 - setuptools-scm=8.0.4=pyhd8ed1ab_0 @@ -409,19 +408,19 @@ dependencies: - 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_6 - - nbconvert-core=7.12.0=pyhd8ed1ab_0 - - clang_osx-arm64=15.0.7=h54d7cd3_6 + - 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.12.0=pyhd8ed1ab_0 + - nbconvert-pandoc=7.13.0=pyhd8ed1ab_0 - c-compiler=1.6.0=hd291e01_0 - - clangxx_impl_osx-arm64=15.0.7=h768a7fd_6 + - 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.12.0=pyhd8ed1ab_0 + - nbconvert=7.13.0=pyhd8ed1ab_0 - notebook-shim=0.2.3=pyhd8ed1ab_0 - - clangxx_osx-arm64=15.0.7=h77e971b_6 + - 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 diff --git a/src/environment-dev-3.9-macos.yml b/src/environment-dev-3.9-macos.yml index 9439ca59533..ac77cf8ce96 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: 0ed32ba9fb85f852eb5872af277320d1f2a78b7c2d29e5a53063ecc2616c6c70 +# input_hash: 02de012815b6a6a4f1eca5e694350ba62ade15820e1fde8a68f04682cd2698c0 channels: - conda-forge @@ -8,7 +8,7 @@ dependencies: - _r-mutex=1.0.1=anacondar_1 - bc=1.07.1=h0d85af4_0 - bzip2=1.0.8=h10d778d_5 - - c-ares=1.23.0=h10d778d_0 + - c-ares=1.24.0=h10d778d_0 - ca-certificates=2023.11.17=h8857fd0_0 - cliquer=1.22=hbcb3906_0 - font-ttf-dejavu-sans-mono=2.37=hab24e00_0 @@ -16,19 +16,19 @@ dependencies: - 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.0=h990441c_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.83.0=h694c41f_0 + - libboost-headers=1.84.0=h694c41f_0 - libbrotlicommon=1.1.0=h0dc2134_1 - libcxx=16.0.6=hd57cbcb_0 - libdeflate=1.19=ha4e1b8e_0 - - libev=4.33=haf1e3a3_1 + - 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=hac89ed1_0 + - libiconv=1.17=hd75f5a5_2 - libjpeg-turbo=3.0.0=h0dc2134_1 - libsodium=1.0.18=hbcb3906_1 - libtool=2.4.7=hf0c8a7f_0 @@ -111,7 +111,7 @@ dependencies: - givaro=4.1.1=h0a799c6_3 - glpk=5.0=h3cb5acd_0 - jmol=14.32.9=h694c41f_0 - - libboost=1.83.0=hf44e908_0 + - libboost=1.84.0=h5b2dd29_0 - libedit=3.1.20191231=h0678c8f_2 - libfido2=1.14.0=h3cbcf74_0 - libgfortran=5.0.0=13_2_0_h97931a8_1 @@ -119,7 +119,7 @@ dependencies: - libhomfly=1.02r6=hc929b4f_0 - libhwloc=2.9.3=default_h24e0189_1009 - libllvm15=15.0.7=he4b1e75_3 - - libnghttp2=1.58.0=h64cf6d3_0 + - libnghttp2=1.58.0=h64cf6d3_1 - libssh2=1.11.0=hd019ec5_0 - libtiff=4.6.0=h684deea_2 - m4ri=20140914=h3f75d11_1005 @@ -140,7 +140,7 @@ dependencies: - krb5=1.21.2=hb884880_0 - lcms2=2.16=ha2f27b4_0 - ld64_osx-64=609=h0fd476b_15 - - libboost-devel=1.83.0=h7728843_0 + - libboost-devel=1.84.0=h7728843_0 - libbrial=1.2.12=h8d08345_1 - libclang-cpp15=15.0.7=default_h6b1ee41_4 - libflint=3.0.1=h5d15de0_ntl_100 @@ -161,8 +161,7 @@ dependencies: - appdirs=1.4.4=pyh9f0ad1d_0 - appnope=0.1.3=pyhd8ed1ab_0 - attrs=23.1.0=pyh71513ae_1 - - backcall=0.2.0=pyh9f0ad1d_0 - - boost-cpp=1.83.0=h07eb623_0 + - boost-cpp=1.84.0=h07eb623_0 - brial=1.2.12=pyh694c41f_1 - brotli-python=1.1.0=py39h840bb9f_1 - cached_property=1.5.2=pyha770c72_1 @@ -176,16 +175,17 @@ dependencies: - clang-15=15.0.7=default_h6b1ee41_4 - 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 - cycler=0.12.1=pyhd8ed1ab_0 - cysignals=1.11.2=py39hf6ae30e_3 - - cython=3.0.6=py39h110ca85_0 + - cython=3.0.7=py39hd253f6c_0 - debugpy=1.8.0=py39h840bb9f_1 - decorator=5.1.1=pyhd8ed1ab_0 - defusedxml=0.7.1=pyhd8ed1ab_0 - - distlib=0.3.7=pyhd8ed1ab_0 + - distlib=0.3.8=pyhd8ed1ab_0 - docutils=0.20.1=py39h6e9494a_3 - - eclib=20230424=h563f520_1 + - eclib=20231211=h02435c3_0 - editables=0.3=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_0 - exceptiongroup=1.2.0=pyhd8ed1ab_0 @@ -212,7 +212,7 @@ dependencies: - libcurl=8.5.0=h726d00d_0 - libgd=2.3.3=h0dceb68_9 - markupsafe=2.1.3=py39hdc70f33_1 - - maxima=5.47.0=h2b27fa8_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 @@ -226,7 +226,7 @@ dependencies: - pandocfilters=1.5.0=pyhd8ed1ab_0 - parso=0.8.3=pyhd8ed1ab_0 - pastel=0.2.1=pyhd8ed1ab_0 - - pathspec=0.11.2=pyhd8ed1ab_0 + - pathspec=0.12.1=pyhd8ed1ab_0 - pickleshare=0.7.5=py_1003 - pillow=10.1.0=py39hdd30358_0 - pkgconfig=1.5.5=pyhd8ed1ab_4 @@ -236,7 +236,7 @@ dependencies: - pluggy=1.3.0=pyhd8ed1ab_0 - ply=3.11=py_1 - prometheus_client=0.19.0=pyhd8ed1ab_0 - - psutil=5.9.5=py39hdc70f33_1 + - psutil=5.9.7=py39ha09f3b3_0 - ptyprocess=0.7.0=pyhd3deb0d_0 - pure_eval=0.2.2=pyhd8ed1ab_0 - py=1.11.0=pyh6c4a22f_0 @@ -257,7 +257,7 @@ dependencies: - pyyaml=6.0.1=py39hdc70f33_1 - pyzmq=25.1.2=py39hcb7a90d_0 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.13.2=py39h3f9c672_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 @@ -278,7 +278,7 @@ dependencies: - traitlets=5.14.0=pyhd8ed1ab_0 - trove-classifiers=2023.11.29=pyhd8ed1ab_0 - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 - - typing_extensions=4.8.0=pyha770c72_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 @@ -290,10 +290,10 @@ dependencies: - wheel=0.42.0=pyhd8ed1ab_0 - widgetsnbextension=4.0.9=pyhd8ed1ab_0 - zipp=3.17.0=pyhd8ed1ab_0 - - anyio=4.1.0=pyhd8ed1ab_0 + - anyio=4.2.0=pyhd8ed1ab_0 - asttokens=2.4.1=pyhd8ed1ab_0 - async-lru=2.0.4=pyhd8ed1ab_0 - - babel=2.13.1=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 @@ -303,13 +303,13 @@ dependencies: - clang=15.0.7=hac416ee_4 - click-default-group=1.2.4=pyhd8ed1ab_0 - clikit=0.6.2=pyhd8ed1ab_2 - - cmake=3.28.0=hc7ee4c4_0 + - 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.46.0=py39ha09f3b3_0 + - fonttools=4.47.0=py39ha09f3b3_0 - gitdb=4.0.11=pyhd8ed1ab_0 - harfbuzz=8.3.0=hf45c392_0 - html5lib=1.1=pyh9f0ad1d_0 @@ -318,7 +318,7 @@ dependencies: - jaraco.classes=3.3.0=pyhd8ed1ab_0 - jedi=0.19.1=pyhd8ed1ab_0 - jinja2=3.1.2=pyhd8ed1ab_1 - - jupyter_core=5.5.0=py39h6e9494a_0 + - jupyter_core=5.5.1=py39h6e9494a_0 - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 - libcblas=3.9.0=20_osx64_openblas - liblapack=3.9.0=20_osx64_openblas @@ -326,12 +326,12 @@ dependencies: - memory-allocator=0.1.3=py39hdc70f33_0 - overrides=7.4.0=pyhd8ed1ab_0 - pexpect=4.8.0=pyh1a96a4e_2 - - pip=23.3.1=pyhd8ed1ab_0 + - pip=23.3.2=pyhd8ed1ab_0 - pplpy=0.8.9=py39h248ee18_0 - primecountpy=0.1.0=py39h8ee36c8_4 - - prompt-toolkit=3.0.41=pyha770c72_0 + - prompt-toolkit=3.0.42=pyha770c72_0 - pybind11=2.11.1=py39h8ee36c8_2 - - pyobjc-core=10.0=py39head00df_0 + - pyobjc-core=10.1=py39h8602b6b_0 - pyproject-api=1.6.1=pyhd8ed1ab_0 - pytest=7.4.3=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 @@ -339,11 +339,10 @@ dependencies: - referencing=0.32.0=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - ruamel.yaml=0.18.5=py39ha09f3b3_0 - - sagemath-db-conway-polynomials=0.5.0=h033912b_1 - sympy=1.12=pypyh9d50eac_103 - terminado=0.18.0=pyh31c8845_0 - tinycss2=1.2.1=pyhd8ed1ab_0 - - typing-extensions=4.8.0=hd8ed1ab_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 @@ -358,18 +357,18 @@ dependencies: - git=2.42.0=pl5321hbb4c4ee_0 - gitpython=3.1.40=pyhd8ed1ab_0 - gsl=2.7=h93259b0_0 - - hatchling=1.18.0=pyhd8ed1ab_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.4.4=pyhd8ed1ab_1 + - jupyter_server_terminals=0.5.0=pyhd8ed1ab_0 - liblapacke=3.9.0=20_osx64_openblas - numpy=1.26.2=py39h14c6d2e_0 - pango=1.50.14=h19c1c8a_2 - - prompt_toolkit=3.0.41=hd8ed1ab_0 + - prompt_toolkit=3.0.42=hd8ed1ab_0 - pydantic-core=2.14.5=py39h3f9c672_0 - - pyobjc-framework-cocoa=10.0=py39head00df_1 + - pyobjc-framework-cocoa=10.1=py39h8602b6b_0 - pytest-xdist=3.5.0=pyhd8ed1ab_0 - requests=2.31.0=pyhd8ed1ab_0 - setuptools-scm=8.0.4=pyhd8ed1ab_0 @@ -407,25 +406,25 @@ dependencies: - nbformat=5.9.2=pyhd8ed1ab_0 - pygls=1.2.1=pyhd8ed1ab_0 - rw=0.9=h10d778d_1 - - clang_impl_osx-64=15.0.7=h03d6864_6 + - 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_6 - - nbconvert-core=7.12.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=h3d2d1bf_6 + - 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.12.0=pyhd8ed1ab_0 - - clangxx_osx-64=15.0.7=h655633e_6 + - 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.12.0=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