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/.devcontainer/onCreate-conda.sh b/.devcontainer/onCreate-conda.sh index 2cbb94e3492..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-3.11.yml || mamba env update --file src/environment-dev-3.11.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 6432b7a0a6a..7fac038718c 100644 --- a/.github/workflows/ci-conda.yml +++ b/.github/workflows/ci-conda.yml @@ -18,11 +18,11 @@ concurrency: jobs: test: name: Conda - runs-on: ${{ matrix.os }} + runs-on: ${{ matrix.os }}-latest strategy: 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] @@ -38,9 +38,6 @@ jobs: GH_TOKEN: ${{ github.token }} SAGE_CI_FIXES_FROM_REPOSITORIES: ${{ vars.SAGE_CI_FIXES_FROM_REPOSITORIES }} - - name: Create conda environment files - run: ./bootstrap-conda - - name: Cache conda packages uses: actions/cache@v3 with: @@ -57,7 +54,7 @@ jobs: channels: conda-forge channel-priority: true activate-environment: sage - environment-file: src/${{ matrix.conda-env }}-${{ matrix.python }}.yml + environment-file: src/${{ matrix.conda-env }}-${{ matrix.python }}-${{ startsWith(matrix.os, 'macos') && 'macos' || 'linux' }}.yml - name: Print Conda environment shell: bash -l {0} diff --git a/.github/workflows/conda-lock-update.py b/.github/workflows/conda-lock-update.py new file mode 100755 index 00000000000..adfef2cfa6e --- /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-aarch64", + "osx-64": "macos", + "osx-arm64": "macos-arm64" + #"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}", 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)]) diff --git a/.gitpod.yml b/.gitpod.yml index 51c2687c5d3..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-3.11.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/.vscode/settings.json b/.vscode/settings.json index 050be4ca5e5..86885e6ea4a 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -35,5 +35,6 @@ "sagemath", "Cython" ], - "editor.formatOnType": true + "editor.formatOnType": true, + "esbonio.sphinx.confDir": "" } 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 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-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-linux-aarch64.yml b/environment-3.10-linux-aarch64.yml new file mode 100644 index 00000000000..02736a9a06c --- /dev/null +++ b/environment-3.10-linux-aarch64.yml @@ -0,0 +1,194 @@ +# Generated by conda-lock. +# platform: linux-aarch64 +# input_hash: 96dae74361f1b35e0b9eef66fedec177f62a1543c75ec7041d6186a95dc59129 + +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-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 + - 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 + - bc=1.07.1=hf897c2e_0 + - bdw-gc=8.0.6=hd62202e_0 + - bzip2=1.0.8=h31becfc_5 + - c-ares=1.24.0=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.2=hd600fc2_0 + - libdeflate=1.17=hb4cce97_0 + - libev=4.33=h31becfc_2 + - libexpat=2.5.0=hd600fc2_1 + - libffi=3.4.2=h3557bc0_5 + - libgfortran5=13.2.0=h582850c_3 + - libiconv=1.17=h31becfc_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 + - 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.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 + - 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_1 + - libpng=1.6.39=hf9034f9_0 + - libsqlite=3.44.2=h194ca79_0 + - libssh2=1.11.0=h492db2e_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 + - 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 + - zstd=1.5.5=h4c53e97_0 + - 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 + - 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=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 + - 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 + - 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.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 + - 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.5.0=h4e8248e_0 + - libwebp=1.2.4=h7bdf6e5_1 + - m4rie=20150908=h75e8696_1001 + - maxima=5.47.0=h6475f26_1 + - 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.3.2.p8=hbe76a8a_1 + - sympow=2.023.6=h157afb5_3 + - tbb=2021.11.0=h2a328a1_0 + - tomli=2.0.1=pyhd8ed1ab_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.1=hef020d8_0 + - curl=8.5.0=h4e8248e_0 + - cxx-compiler=1.6.0=h2a328a1_0 + - fortran-compiler=1.6.0=h7048d53_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 + - pyproject-api=1.6.1=pyhd8ed1ab_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 + - 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=h75d914d_2 + - blas-devel=3.9.0=20_linuxaarch64_openblas + - giac=1.9.0.21=h04922a4_1 + - 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=h31becfc_1 diff --git a/environment-3.10-linux.yml b/environment-3.10-linux.yml new file mode 100644 index 00000000000..f50a98a371a --- /dev/null +++ b/environment-3.10-linux.yml @@ -0,0 +1,194 @@ +# Generated by conda-lock. +# platform: linux-64 +# input_hash: 1f9798af961ad5b438e8f6adfc00612019c5330e9dffc2b13a701e5502ec90dd + +channels: + - conda-forge +dependencies: + - _libgcc_mutex=0.1=conda_forge + - 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=h77eed37_1 + - kernel-headers_linux-64=2.6.32=he073ed8_16 + - ld_impl_linux-64=2.40=h41732ed_0 + - libboost-headers=1.84.0=ha770c72_0 + - libgcc-devel_linux-64=12.3.0=h8bca6fd_103 + - libstdcxx-devel_linux-64=12.3.0=h8bca6fd_103 + - libstdcxx-ng=13.2.0=h7e041cc_3 + - mathjax=3.2.2=ha770c72_0 + - 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 + - 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 + - fonts-conda-ecosystem=1=0 + - binutils=2.40=hdd6e379_0 + - binutils_linux-64=2.40=hbdbef99_2 + - _openmp_mutex=4.5=2_kmp_llvm + - libgcc-ng=13.2.0=h807b86a_3 + - bc=1.07.1=h7f98852_0 + - bdw-gc=8.0.6=h4bd325d_0 + - bzip2=1.0.8=hd590300_5 + - c-ares=1.24.0=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.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.2=hcb278e6_0 + - libdeflate=1.19=hd590300_0 + - libev=4.33=hd590300_2 + - libexpat=2.5.0=hcb278e6_1 + - libffi=3.4.2=h7f98852_5 + - libgfortran5=13.2.0=ha4646dd_3 + - libiconv=1.17=hd590300_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.2=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_2 + - nauty=2.8.8=hd590300_0 + - ncurses=6.4=h59595ed_2 + - ninja=1.11.1=h924138e_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 + - planarity=3.0.0.5=h36c2ea0_1002 + - primesieve=11.1=h59595ed_0 + - qhull=2020.2=h4bd325d_2 + - rhash=1.4.4=hd590300_0 + - symmetrica=3.0.1=hcb278e6_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_3 + - givaro=4.1.1=h192cbe9_1 + - glpk=5.0=h445213a_0 + - libedit=3.1.20191231=he28a2e2_2 + - libgfortran-ng=13.2.0=h69a702a_3 + - libhomfly=1.02r6=h36c2ea0_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 + - 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 + - tar=1.34=hb2e2bae_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 + - 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.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 + - libtiff=4.6.0=ha9c0a0a_2 + - llvm-openmp=17.0.6=h4dfa4b3_0 + - m4ri=20140914=h7ca028e_1005 + - mpc=1.3.1=hfe3b2da_0 + - mpfi=1.5.4=h9f54685_1001 + - pari=2.15.4=h4d4ae9b_2_pthread + - ppl=1.2=h6ec01c2_1006 + - python=3.10.13=hd12c33a_0_cpython + - qd=2.3.22=h2cc385e_1004 + - sqlite=3.44.2=h2c6b66d_0 + - tachyon=0.99b6=0 + - texinfo=7.0=pl5321h0f457ee_0 + - appdirs=1.4.4=pyh9f0ad1d_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.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.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_1 + - openblas=0.3.25=pthreads_h7a3da1a_0 + - packaging=23.2=pyhd8ed1ab_0 + - platformdirs=4.1.0=pyhd8ed1ab_0 + - pluggy=1.3.0=pyhd8ed1ab_0 + - singular=4.3.2.p8=h33f5c3f_1 + - sympow=2.023.6=hc6ab17c_3 + - tbb=2021.11.0=h00ab1b0_0 + - tomli=2.0.1=pyhd8ed1ab_0 + - typing_extensions=4.9.0=pyha770c72_0 + - zipp=3.17.0=pyhd8ed1ab_0 + - boost-cpp=1.84.0=h44aadfe_0 + - brial=1.2.12=pyh694c41f_1 + - 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 + - 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 + - pyproject-api=1.6.1=pyhd8ed1ab_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 + - 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=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-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.10-macos-arm64.yml b/environment-3.10-macos-arm64.yml new file mode 100644 index 00000000000..ed6a569291f --- /dev/null +++ b/environment-3.10-macos-arm64.yml @@ -0,0 +1,195 @@ +# Generated by conda-lock. +# platform: osx-arm64 +# input_hash: faa4e21d6f64de6a962258a7c91cf369a21f135840de4cf9f1023d2ce020b332 + +channels: + - conda-forge +dependencies: + - bc=1.07.1=h3422bc3_0 + - bzip2=1.0.8=h93a5062_5 + - c-ares=1.24.0=h93a5062_0 + - ca-certificates=2023.11.17=hf0a4a13_0 + - 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=h93a5062_2 + - libexpat=2.5.0=hb7217d7_1 + - libffi=3.4.2=h3422bc3_5 + - libgfortran-devel_osx-arm64=12.3.0=hc62be1c_1 + - libiconv=1.17=h0d3ecfb_2 + - 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.6=hcd81f8e_0 + - m4=1.4.18=h642e427_1001 + - make=4.3=he57ea6c_1 + - mathjax=3.2.2=hce30654_0 + - nauty=2.8.8=h93a5062_0 + - 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.3.0=h965bd2d_0 + - isl=0.25=h9a09cb3_0 + - lerc=4.0.0=h9a09cb3_0 + - libbraiding=1.2=hb7217d7_0 + - libgfortran5=13.2.0=hf226fd6_1 + - libpng=1.6.39=h76d750c_0 + - libsqlite=3.44.2=h091b4b1_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 + - 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 + - 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.3=hb438215_0 + - libhomfly=1.02r6=h27ca646_0 + - libhwloc=2.9.3=default_h4394839_1009 + - libllvm15=15.0.7=h504e6bf_3 + - libnghttp2=1.58.0=ha4dd798_1 + - 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 + - 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 + - libboost-devel=1.82.0=hf450f58_2 + - libbrial=1.2.12=ha7f5006_1 + - libclang-cpp15=15.0.7=default_hd209bcb_4 + - 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=h504e6bf_3 + - 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 + - tbb=2021.11.0=h6aa02a4_0 + - appdirs=1.4.4=pyh9f0ad1d_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_hd209bcb_4 + - colorama=0.4.6=pyhd8ed1ab_0 + - 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 + - libblas=3.9.0=20_osxarm64_openblas + - 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.3.2.p8=hb460b52_1 + - sympow=2.023.6=hb0babe8_3 + - tomli=2.0.1=pyhd8ed1ab_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.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.9.0=hd8ed1ab_0 + - virtualenv=20.25.0=pyhd8ed1ab_0 + - 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=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.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=h93a5062_1 + - 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_7 + - gfortran_osx-arm64=12.3.0=h57527a5_1 + - 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 + - compilers=1.6.0=hce30654_0 diff --git a/environment-3.10-macos.yml b/environment-3.10-macos.yml new file mode 100644 index 00000000000..70a4a757b9d --- /dev/null +++ b/environment-3.10-macos.yml @@ -0,0 +1,193 @@ +# Generated by conda-lock. +# platform: osx-64 +# input_hash: 54a9866015234b0922bea58204d7f3ff24e05df857342adbcc3465b4f887d566 + +channels: + - conda-forge +dependencies: + - bc=1.07.1=h0d85af4_0 + - bzip2=1.0.8=h10d778d_5 + - c-ares=1.24.0=h10d778d_0 + - ca-certificates=2023.11.17=h8857fd0_0 + - cliquer=1.22=hbcb3906_0 + - font-ttf-dejavu-sans-mono=2.37=hab24e00_0 + - font-ttf-inconsolata=3.000=h77eed37_0 + - font-ttf-source-code-pro=2.038=h77eed37_0 + - font-ttf-ubuntu=0.83=h77eed37_1 + - giflib=5.2.1=hb7f2c08_3 + - icu=73.2=hf5e326d_0 + - libatomic_ops=7.6.14=hb7f2c08_0 + - libboost-headers=1.84.0=h694c41f_0 + - libcxx=16.0.6=hd57cbcb_0 + - libdeflate=1.19=ha4e1b8e_0 + - libev=4.33=h10d778d_2 + - libexpat=2.5.0=hf0c8a7f_1 + - libffi=3.4.2=h0d85af4_5 + - libgfortran-devel_osx-64=12.3.0=h0b6f5ec_1 + - libiconv=1.17=hd75f5a5_2 + - libjpeg-turbo=3.0.0=h0dc2134_1 + - libsodium=1.0.18=hbcb3906_1 + - libtool=2.4.7=hf0c8a7f_0 + - libuv=1.46.0=h0c2f820_0 + - libwebp-base=1.3.2=h0dc2134_0 + - libzlib=1.2.13=h8a1eda9_5 + - llvm-openmp=17.0.6=hb6ac08f_0 + - m4=1.4.18=haf1e3a3_1001 + - make=4.3=h22f3db7_1 + - mathjax=3.2.2=h694c41f_0 + - nauty=2.8.8=h10d778d_0 + - 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 + - planarity=3.0.0.5=hbcb3906_1002 + - 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 + - bdw-gc=8.0.6=h940c156_0 + - expat=2.5.0=hf0c8a7f_1 + - fonts-conda-forge=1=0 + - gengetopt=2.23=he49afe7_0 + - gettext=0.21.1=h8a4c099_0 + - gf2x=1.3.0=hb2a7efb_2 + - gmp=6.3.0=h93d8f39_0 + - isl=0.25=hb486fe8_0 + - lerc=4.0.0=hb486fe8_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 + - 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 + - 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 + - zstd=1.5.5=h829000d_0 + - automake=1.16.5=pl5321h694c41f_0 + - cddlib=1!0.94m=h0f52abe_0 + - ecm=7.0.4=h343d7f2_1002 + - fonts-conda-ecosystem=1=0 + - freetype=2.12.1=h60636b9_2 + - givaro=4.1.1=h0a799c6_3 + - glpk=5.0=h3cb5acd_0 + - 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_1 + - libssh2=1.11.0=hd019ec5_0 + - libtiff=4.6.0=h684deea_2 + - m4ri=20140914=h3f75d11_1005 + - mpfr=4.2.1=h0c69b56_0 + - ntl=11.4.3=h0ab3c2f_1 + - primecount=7.6=ha894c9a_0 + - readline=8.2=h9e318b2_1 + - sigtool=0.1.3=h88f4db0_0 + - tachyon=0.99b6=0 + - texinfo=7.0=pl5321hc47821c_0 + - 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.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 + - libopenblas=0.3.25=openmp_hfef2a42_0 + - libwebp=1.3.2=h44782d1_1 + - llvm-tools=15.0.7=he4b1e75_3 + - m4rie=20150908=h3f75d11_1001 + - mpc=1.3.1=h81bd1dd_0 + - mpfi=1.5.4=h52b28e3_1001 + - 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 + - tbb=2021.11.0=he51d815_0 + - appdirs=1.4.4=pyh9f0ad1d_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.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_1 + - 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_1 + - sympow=2.023.6=h115ba6a_3 + - tomli=2.0.1=pyhd8ed1ab_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.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.9.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=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_7 + - clang_osx-64=15.0.7=hb91bd55_7 + - c-compiler=1.6.0=h63c33a9_0 + - clangxx_impl_osx-64=15.0.7=h2133e9c_7 + - gfortran_osx-64=12.3.0=h18f7dce_1 + - 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 + - compilers=1.6.0=h694c41f_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-linux-aarch64.yml b/environment-3.11-linux-aarch64.yml new file mode 100644 index 00000000000..ffc187cb3e1 --- /dev/null +++ b/environment-3.11-linux-aarch64.yml @@ -0,0 +1,194 @@ +# Generated by conda-lock. +# platform: linux-aarch64 +# input_hash: d91a9d8d1a1b36eb004d7a18ac57a0a4ff4301e295aa01bd9802ed958616e7f5 + +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-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 + - 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 + - bc=1.07.1=hf897c2e_0 + - bdw-gc=8.0.6=hd62202e_0 + - bzip2=1.0.8=h31becfc_5 + - c-ares=1.24.0=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.2=hd600fc2_0 + - libdeflate=1.17=hb4cce97_0 + - libev=4.33=h31becfc_2 + - libexpat=2.5.0=hd600fc2_1 + - libffi=3.4.2=h3557bc0_5 + - libgfortran5=13.2.0=h582850c_3 + - libiconv=1.17=h31becfc_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 + - 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.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 + - 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_1 + - libpng=1.6.39=hf9034f9_0 + - libsqlite=3.44.2=h194ca79_0 + - libssh2=1.11.0=h492db2e_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 + - 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 + - zstd=1.5.5=h4c53e97_0 + - 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 + - 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=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 + - m4ri=20140914=h75e8696_1005 + - mpc=1.3.1=hf4c8f4c_0 + - mpfi=1.5.4=h846f343_1001 + - pari=2.15.4=h169c2a7_2_pthread + - ppl=1.2=h984aac9_1006 + - python=3.11.7=h43d1f9e_0_cpython + - 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 + - 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.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 + - 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.5.0=h4e8248e_0 + - libwebp=1.2.4=h7bdf6e5_1 + - m4rie=20150908=h75e8696_1001 + - maxima=5.47.0=h6475f26_1 + - 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.3.2.p8=hbe76a8a_1 + - sympow=2.023.6=h157afb5_3 + - tbb=2021.11.0=h2a328a1_0 + - tomli=2.0.1=pyhd8ed1ab_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.1=hef020d8_0 + - curl=8.5.0=h4e8248e_0 + - cxx-compiler=1.6.0=h2a328a1_0 + - fortran-compiler=1.6.0=h7048d53_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 + - pyproject-api=1.6.1=pyhd8ed1ab_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 + - 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=h75d914d_2 + - blas-devel=3.9.0=20_linuxaarch64_openblas + - giac=1.9.0.21=h04922a4_1 + - 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=h31becfc_1 diff --git a/environment-3.11-linux.yml b/environment-3.11-linux.yml new file mode 100644 index 00000000000..03335cebaa6 --- /dev/null +++ b/environment-3.11-linux.yml @@ -0,0 +1,194 @@ +# Generated by conda-lock. +# platform: linux-64 +# input_hash: bbe80f8b331b52d79d11dddb0f920a88165aef6bf30e41540246abc96d7d56aa + +channels: + - conda-forge +dependencies: + - _libgcc_mutex=0.1=conda_forge + - 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=h77eed37_1 + - kernel-headers_linux-64=2.6.32=he073ed8_16 + - ld_impl_linux-64=2.40=h41732ed_0 + - libboost-headers=1.84.0=ha770c72_0 + - libgcc-devel_linux-64=12.3.0=h8bca6fd_103 + - libstdcxx-devel_linux-64=12.3.0=h8bca6fd_103 + - libstdcxx-ng=13.2.0=h7e041cc_3 + - mathjax=3.2.2=ha770c72_0 + - 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 + - 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 + - fonts-conda-ecosystem=1=0 + - binutils=2.40=hdd6e379_0 + - binutils_linux-64=2.40=hbdbef99_2 + - _openmp_mutex=4.5=2_kmp_llvm + - libgcc-ng=13.2.0=h807b86a_3 + - bc=1.07.1=h7f98852_0 + - bdw-gc=8.0.6=h4bd325d_0 + - bzip2=1.0.8=hd590300_5 + - c-ares=1.24.0=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.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.2=hcb278e6_0 + - libdeflate=1.19=hd590300_0 + - libev=4.33=hd590300_2 + - libexpat=2.5.0=hcb278e6_1 + - libffi=3.4.2=h7f98852_5 + - libgfortran5=13.2.0=ha4646dd_3 + - libiconv=1.17=hd590300_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.2=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_2 + - nauty=2.8.8=hd590300_0 + - ncurses=6.4=h59595ed_2 + - ninja=1.11.1=h924138e_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 + - planarity=3.0.0.5=h36c2ea0_1002 + - primesieve=11.1=h59595ed_0 + - qhull=2020.2=h4bd325d_2 + - rhash=1.4.4=hd590300_0 + - symmetrica=3.0.1=hcb278e6_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_3 + - givaro=4.1.1=h192cbe9_1 + - glpk=5.0=h445213a_0 + - libedit=3.1.20191231=he28a2e2_2 + - libgfortran-ng=13.2.0=h69a702a_3 + - libhomfly=1.02r6=h36c2ea0_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 + - 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 + - tar=1.34=hb2e2bae_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 + - 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.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 + - libtiff=4.6.0=ha9c0a0a_2 + - llvm-openmp=17.0.6=h4dfa4b3_0 + - m4ri=20140914=h7ca028e_1005 + - mpc=1.3.1=hfe3b2da_0 + - mpfi=1.5.4=h9f54685_1001 + - pari=2.15.4=h4d4ae9b_2_pthread + - ppl=1.2=h6ec01c2_1006 + - python=3.11.7=hab00c5b_0_cpython + - qd=2.3.22=h2cc385e_1004 + - sqlite=3.44.2=h2c6b66d_0 + - tachyon=0.99b6=0 + - texinfo=7.0=pl5321h0f457ee_0 + - appdirs=1.4.4=pyh9f0ad1d_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.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.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_1 + - openblas=0.3.25=pthreads_h7a3da1a_0 + - packaging=23.2=pyhd8ed1ab_0 + - platformdirs=4.1.0=pyhd8ed1ab_0 + - pluggy=1.3.0=pyhd8ed1ab_0 + - singular=4.3.2.p8=h33f5c3f_1 + - sympow=2.023.6=hc6ab17c_3 + - tbb=2021.11.0=h00ab1b0_0 + - tomli=2.0.1=pyhd8ed1ab_0 + - typing_extensions=4.9.0=pyha770c72_0 + - zipp=3.17.0=pyhd8ed1ab_0 + - boost-cpp=1.84.0=h44aadfe_0 + - brial=1.2.12=pyh694c41f_1 + - 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 + - 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 + - pyproject-api=1.6.1=pyhd8ed1ab_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 + - 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=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-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.11-macos-arm64.yml b/environment-3.11-macos-arm64.yml new file mode 100644 index 00000000000..2040f1a440f --- /dev/null +++ b/environment-3.11-macos-arm64.yml @@ -0,0 +1,195 @@ +# Generated by conda-lock. +# platform: osx-arm64 +# input_hash: e8b0c2352798acc28dc8149701309678945c47588250d3ce8f66c553a6353588 + +channels: + - conda-forge +dependencies: + - bc=1.07.1=h3422bc3_0 + - bzip2=1.0.8=h93a5062_5 + - c-ares=1.24.0=h93a5062_0 + - ca-certificates=2023.11.17=hf0a4a13_0 + - 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=h93a5062_2 + - libexpat=2.5.0=hb7217d7_1 + - libffi=3.4.2=h3422bc3_5 + - libgfortran-devel_osx-arm64=12.3.0=hc62be1c_1 + - libiconv=1.17=h0d3ecfb_2 + - 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.6=hcd81f8e_0 + - m4=1.4.18=h642e427_1001 + - make=4.3=he57ea6c_1 + - mathjax=3.2.2=hce30654_0 + - nauty=2.8.8=h93a5062_0 + - 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.3.0=h965bd2d_0 + - isl=0.25=h9a09cb3_0 + - lerc=4.0.0=h9a09cb3_0 + - libbraiding=1.2=hb7217d7_0 + - libgfortran5=13.2.0=hf226fd6_1 + - libpng=1.6.39=h76d750c_0 + - libsqlite=3.44.2=h091b4b1_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 + - 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 + - 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.3=hb438215_0 + - libhomfly=1.02r6=h27ca646_0 + - libhwloc=2.9.3=default_h4394839_1009 + - libllvm15=15.0.7=h504e6bf_3 + - libnghttp2=1.58.0=ha4dd798_1 + - 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 + - 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 + - libboost-devel=1.82.0=hf450f58_2 + - libbrial=1.2.12=ha7f5006_1 + - libclang-cpp15=15.0.7=default_hd209bcb_4 + - 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=h504e6bf_3 + - 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.7=hdf0ec26_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 + - 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_hd209bcb_4 + - colorama=0.4.6=pyhd8ed1ab_0 + - 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 + - libblas=3.9.0=20_osxarm64_openblas + - 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.3.2.p8=hb460b52_1 + - sympow=2.023.6=hb0babe8_3 + - tomli=2.0.1=pyhd8ed1ab_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.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.9.0=hd8ed1ab_0 + - virtualenv=20.25.0=pyhd8ed1ab_0 + - 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=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.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=h93a5062_1 + - 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_7 + - gfortran_osx-arm64=12.3.0=h57527a5_1 + - 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 + - compilers=1.6.0=hce30654_0 diff --git a/environment-3.11-macos.yml b/environment-3.11-macos.yml new file mode 100644 index 00000000000..ef8f61ae105 --- /dev/null +++ b/environment-3.11-macos.yml @@ -0,0 +1,193 @@ +# Generated by conda-lock. +# platform: osx-64 +# input_hash: c414a61753a482aff55ab87bae06265cf677b67d01af57f18343ef2059381222 + +channels: + - conda-forge +dependencies: + - bc=1.07.1=h0d85af4_0 + - bzip2=1.0.8=h10d778d_5 + - c-ares=1.24.0=h10d778d_0 + - ca-certificates=2023.11.17=h8857fd0_0 + - cliquer=1.22=hbcb3906_0 + - font-ttf-dejavu-sans-mono=2.37=hab24e00_0 + - font-ttf-inconsolata=3.000=h77eed37_0 + - font-ttf-source-code-pro=2.038=h77eed37_0 + - font-ttf-ubuntu=0.83=h77eed37_1 + - giflib=5.2.1=hb7f2c08_3 + - icu=73.2=hf5e326d_0 + - libatomic_ops=7.6.14=hb7f2c08_0 + - libboost-headers=1.84.0=h694c41f_0 + - libcxx=16.0.6=hd57cbcb_0 + - libdeflate=1.19=ha4e1b8e_0 + - libev=4.33=h10d778d_2 + - libexpat=2.5.0=hf0c8a7f_1 + - libffi=3.4.2=h0d85af4_5 + - libgfortran-devel_osx-64=12.3.0=h0b6f5ec_1 + - libiconv=1.17=hd75f5a5_2 + - libjpeg-turbo=3.0.0=h0dc2134_1 + - libsodium=1.0.18=hbcb3906_1 + - libtool=2.4.7=hf0c8a7f_0 + - libuv=1.46.0=h0c2f820_0 + - libwebp-base=1.3.2=h0dc2134_0 + - libzlib=1.2.13=h8a1eda9_5 + - llvm-openmp=17.0.6=hb6ac08f_0 + - m4=1.4.18=haf1e3a3_1001 + - make=4.3=h22f3db7_1 + - mathjax=3.2.2=h694c41f_0 + - nauty=2.8.8=h10d778d_0 + - 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 + - planarity=3.0.0.5=hbcb3906_1002 + - 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 + - bdw-gc=8.0.6=h940c156_0 + - expat=2.5.0=hf0c8a7f_1 + - fonts-conda-forge=1=0 + - gengetopt=2.23=he49afe7_0 + - gettext=0.21.1=h8a4c099_0 + - gf2x=1.3.0=hb2a7efb_2 + - gmp=6.3.0=h93d8f39_0 + - isl=0.25=hb486fe8_0 + - lerc=4.0.0=hb486fe8_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 + - 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 + - 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 + - zstd=1.5.5=h829000d_0 + - automake=1.16.5=pl5321h694c41f_0 + - cddlib=1!0.94m=h0f52abe_0 + - ecm=7.0.4=h343d7f2_1002 + - fonts-conda-ecosystem=1=0 + - freetype=2.12.1=h60636b9_2 + - givaro=4.1.1=h0a799c6_3 + - glpk=5.0=h3cb5acd_0 + - 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_1 + - libssh2=1.11.0=hd019ec5_0 + - libtiff=4.6.0=h684deea_2 + - m4ri=20140914=h3f75d11_1005 + - mpfr=4.2.1=h0c69b56_0 + - ntl=11.4.3=h0ab3c2f_1 + - primecount=7.6=ha894c9a_0 + - readline=8.2=h9e318b2_1 + - sigtool=0.1.3=h88f4db0_0 + - tachyon=0.99b6=0 + - texinfo=7.0=pl5321hc47821c_0 + - 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.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 + - libopenblas=0.3.25=openmp_hfef2a42_0 + - libwebp=1.3.2=h44782d1_1 + - llvm-tools=15.0.7=he4b1e75_3 + - m4rie=20150908=h3f75d11_1001 + - mpc=1.3.1=h81bd1dd_0 + - mpfi=1.5.4=h52b28e3_1001 + - pari=2.15.4=h93f793c_2_pthread + - ppl=1.2=ha60d53e_1006 + - 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.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.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_1 + - 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_1 + - sympow=2.023.6=h115ba6a_3 + - tomli=2.0.1=pyhd8ed1ab_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.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.9.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=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_7 + - clang_osx-64=15.0.7=hb91bd55_7 + - c-compiler=1.6.0=h63c33a9_0 + - clangxx_impl_osx-64=15.0.7=h2133e9c_7 + - gfortran_osx-64=12.3.0=h18f7dce_1 + - 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 + - compilers=1.6.0=h694c41f_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-linux-aarch64.yml b/environment-3.9-linux-aarch64.yml new file mode 100644 index 00000000000..c2da7aea87e --- /dev/null +++ b/environment-3.9-linux-aarch64.yml @@ -0,0 +1,194 @@ +# Generated by conda-lock. +# platform: linux-aarch64 +# input_hash: 70b2f23f8a2b05ec79ac23924915beb69ebb635c251d734ff9f56f4a04efa69b + +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-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 + - 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 + - bc=1.07.1=hf897c2e_0 + - bdw-gc=8.0.6=hd62202e_0 + - bzip2=1.0.8=h31becfc_5 + - c-ares=1.24.0=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.2=hd600fc2_0 + - libdeflate=1.17=hb4cce97_0 + - libev=4.33=h31becfc_2 + - libexpat=2.5.0=hd600fc2_1 + - libffi=3.4.2=h3557bc0_5 + - libgfortran5=13.2.0=h582850c_3 + - libiconv=1.17=h31becfc_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 + - 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.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 + - 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_1 + - libpng=1.6.39=hf9034f9_0 + - libsqlite=3.44.2=h194ca79_0 + - libssh2=1.11.0=h492db2e_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 + - 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 + - zstd=1.5.5=h4c53e97_0 + - 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 + - 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=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 + - 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 + - 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.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 + - 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.5.0=h4e8248e_0 + - libwebp=1.2.4=h7bdf6e5_1 + - m4rie=20150908=h75e8696_1001 + - maxima=5.47.0=h6475f26_1 + - 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.3.2.p8=hbe76a8a_1 + - sympow=2.023.6=h157afb5_3 + - tbb=2021.11.0=h2a328a1_0 + - tomli=2.0.1=pyhd8ed1ab_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.1=hef020d8_0 + - curl=8.5.0=h4e8248e_0 + - cxx-compiler=1.6.0=h2a328a1_0 + - fortran-compiler=1.6.0=h7048d53_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 + - pyproject-api=1.6.1=pyhd8ed1ab_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 + - 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=h75d914d_2 + - blas-devel=3.9.0=20_linuxaarch64_openblas + - giac=1.9.0.21=h04922a4_1 + - 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=h31becfc_1 diff --git a/environment-3.9-linux.yml b/environment-3.9-linux.yml new file mode 100644 index 00000000000..c55a598b418 --- /dev/null +++ b/environment-3.9-linux.yml @@ -0,0 +1,194 @@ +# Generated by conda-lock. +# platform: linux-64 +# input_hash: ba5fc0af91cfb5f74e6801a1c083cd560614350865558c7a0a5e3e6a17073d67 + +channels: + - conda-forge +dependencies: + - _libgcc_mutex=0.1=conda_forge + - 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=h77eed37_1 + - kernel-headers_linux-64=2.6.32=he073ed8_16 + - ld_impl_linux-64=2.40=h41732ed_0 + - libboost-headers=1.84.0=ha770c72_0 + - libgcc-devel_linux-64=12.3.0=h8bca6fd_103 + - libstdcxx-devel_linux-64=12.3.0=h8bca6fd_103 + - libstdcxx-ng=13.2.0=h7e041cc_3 + - mathjax=3.2.2=ha770c72_0 + - 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 + - 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 + - fonts-conda-ecosystem=1=0 + - binutils=2.40=hdd6e379_0 + - binutils_linux-64=2.40=hbdbef99_2 + - _openmp_mutex=4.5=2_kmp_llvm + - libgcc-ng=13.2.0=h807b86a_3 + - bc=1.07.1=h7f98852_0 + - bdw-gc=8.0.6=h4bd325d_0 + - bzip2=1.0.8=hd590300_5 + - c-ares=1.24.0=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.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.2=hcb278e6_0 + - libdeflate=1.19=hd590300_0 + - libev=4.33=hd590300_2 + - libexpat=2.5.0=hcb278e6_1 + - libffi=3.4.2=h7f98852_5 + - libgfortran5=13.2.0=ha4646dd_3 + - libiconv=1.17=hd590300_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.2=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_2 + - nauty=2.8.8=hd590300_0 + - ncurses=6.4=h59595ed_2 + - ninja=1.11.1=h924138e_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 + - planarity=3.0.0.5=h36c2ea0_1002 + - primesieve=11.1=h59595ed_0 + - qhull=2020.2=h4bd325d_2 + - rhash=1.4.4=hd590300_0 + - symmetrica=3.0.1=hcb278e6_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_3 + - givaro=4.1.1=h192cbe9_1 + - glpk=5.0=h445213a_0 + - libedit=3.1.20191231=he28a2e2_2 + - libgfortran-ng=13.2.0=h69a702a_3 + - libhomfly=1.02r6=h36c2ea0_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 + - 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 + - tar=1.34=hb2e2bae_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 + - 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.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 + - libtiff=4.6.0=ha9c0a0a_2 + - llvm-openmp=17.0.6=h4dfa4b3_0 + - m4ri=20140914=h7ca028e_1005 + - mpc=1.3.1=hfe3b2da_0 + - mpfi=1.5.4=h9f54685_1001 + - 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.44.2=h2c6b66d_0 + - tachyon=0.99b6=0 + - texinfo=7.0=pl5321h0f457ee_0 + - appdirs=1.4.4=pyh9f0ad1d_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.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.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_1 + - openblas=0.3.25=pthreads_h7a3da1a_0 + - packaging=23.2=pyhd8ed1ab_0 + - platformdirs=4.1.0=pyhd8ed1ab_0 + - pluggy=1.3.0=pyhd8ed1ab_0 + - singular=4.3.2.p8=h33f5c3f_1 + - sympow=2.023.6=hc6ab17c_3 + - tbb=2021.11.0=h00ab1b0_0 + - tomli=2.0.1=pyhd8ed1ab_0 + - typing_extensions=4.9.0=pyha770c72_0 + - zipp=3.17.0=pyhd8ed1ab_0 + - boost-cpp=1.84.0=h44aadfe_0 + - brial=1.2.12=pyh694c41f_1 + - 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 + - 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 + - pyproject-api=1.6.1=pyhd8ed1ab_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 + - 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=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-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/environment-3.9-macos-arm64.yml b/environment-3.9-macos-arm64.yml new file mode 100644 index 00000000000..74a07bdf3c6 --- /dev/null +++ b/environment-3.9-macos-arm64.yml @@ -0,0 +1,195 @@ +# Generated by conda-lock. +# platform: osx-arm64 +# input_hash: fafb126c04be34667718c9e061b759cbac08d0f055489f6fd6aeea5bea043e01 + +channels: + - conda-forge +dependencies: + - bc=1.07.1=h3422bc3_0 + - bzip2=1.0.8=h93a5062_5 + - c-ares=1.24.0=h93a5062_0 + - ca-certificates=2023.11.17=hf0a4a13_0 + - 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=h93a5062_2 + - libexpat=2.5.0=hb7217d7_1 + - libffi=3.4.2=h3422bc3_5 + - libgfortran-devel_osx-arm64=12.3.0=hc62be1c_1 + - libiconv=1.17=h0d3ecfb_2 + - 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.6=hcd81f8e_0 + - m4=1.4.18=h642e427_1001 + - make=4.3=he57ea6c_1 + - mathjax=3.2.2=hce30654_0 + - nauty=2.8.8=h93a5062_0 + - 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.3.0=h965bd2d_0 + - isl=0.25=h9a09cb3_0 + - lerc=4.0.0=h9a09cb3_0 + - libbraiding=1.2=hb7217d7_0 + - libgfortran5=13.2.0=hf226fd6_1 + - libpng=1.6.39=h76d750c_0 + - libsqlite=3.44.2=h091b4b1_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 + - 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 + - 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.3=hb438215_0 + - libhomfly=1.02r6=h27ca646_0 + - libhwloc=2.9.3=default_h4394839_1009 + - libllvm15=15.0.7=h504e6bf_3 + - libnghttp2=1.58.0=ha4dd798_1 + - 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 + - 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 + - libboost-devel=1.82.0=hf450f58_2 + - libbrial=1.2.12=ha7f5006_1 + - libclang-cpp15=15.0.7=default_hd209bcb_4 + - 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=h504e6bf_3 + - 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 + - tbb=2021.11.0=h6aa02a4_0 + - appdirs=1.4.4=pyh9f0ad1d_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_hd209bcb_4 + - colorama=0.4.6=pyhd8ed1ab_0 + - 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 + - libblas=3.9.0=20_osxarm64_openblas + - 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.3.2.p8=hb460b52_1 + - sympow=2.023.6=hb0babe8_3 + - tomli=2.0.1=pyhd8ed1ab_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.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.9.0=hd8ed1ab_0 + - virtualenv=20.25.0=pyhd8ed1ab_0 + - 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=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.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=h93a5062_1 + - 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_7 + - gfortran_osx-arm64=12.3.0=h57527a5_1 + - 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 + - compilers=1.6.0=hce30654_0 diff --git a/environment-3.9-macos.yml b/environment-3.9-macos.yml new file mode 100644 index 00000000000..190eafb93df --- /dev/null +++ b/environment-3.9-macos.yml @@ -0,0 +1,193 @@ +# Generated by conda-lock. +# platform: osx-64 +# input_hash: 4bed5f84e93b1b95b037e4567144320b5e9d9bad1d777aaf95e27f9852080052 + +channels: + - conda-forge +dependencies: + - bc=1.07.1=h0d85af4_0 + - bzip2=1.0.8=h10d778d_5 + - c-ares=1.24.0=h10d778d_0 + - ca-certificates=2023.11.17=h8857fd0_0 + - cliquer=1.22=hbcb3906_0 + - font-ttf-dejavu-sans-mono=2.37=hab24e00_0 + - font-ttf-inconsolata=3.000=h77eed37_0 + - font-ttf-source-code-pro=2.038=h77eed37_0 + - font-ttf-ubuntu=0.83=h77eed37_1 + - giflib=5.2.1=hb7f2c08_3 + - icu=73.2=hf5e326d_0 + - libatomic_ops=7.6.14=hb7f2c08_0 + - libboost-headers=1.84.0=h694c41f_0 + - libcxx=16.0.6=hd57cbcb_0 + - libdeflate=1.19=ha4e1b8e_0 + - libev=4.33=h10d778d_2 + - libexpat=2.5.0=hf0c8a7f_1 + - libffi=3.4.2=h0d85af4_5 + - libgfortran-devel_osx-64=12.3.0=h0b6f5ec_1 + - libiconv=1.17=hd75f5a5_2 + - libjpeg-turbo=3.0.0=h0dc2134_1 + - libsodium=1.0.18=hbcb3906_1 + - libtool=2.4.7=hf0c8a7f_0 + - libuv=1.46.0=h0c2f820_0 + - libwebp-base=1.3.2=h0dc2134_0 + - libzlib=1.2.13=h8a1eda9_5 + - llvm-openmp=17.0.6=hb6ac08f_0 + - m4=1.4.18=haf1e3a3_1001 + - make=4.3=h22f3db7_1 + - mathjax=3.2.2=h694c41f_0 + - nauty=2.8.8=h10d778d_0 + - 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 + - planarity=3.0.0.5=hbcb3906_1002 + - 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 + - bdw-gc=8.0.6=h940c156_0 + - expat=2.5.0=hf0c8a7f_1 + - fonts-conda-forge=1=0 + - gengetopt=2.23=he49afe7_0 + - gettext=0.21.1=h8a4c099_0 + - gf2x=1.3.0=hb2a7efb_2 + - gmp=6.3.0=h93d8f39_0 + - isl=0.25=hb486fe8_0 + - lerc=4.0.0=hb486fe8_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 + - 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 + - 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 + - zstd=1.5.5=h829000d_0 + - automake=1.16.5=pl5321h694c41f_0 + - cddlib=1!0.94m=h0f52abe_0 + - ecm=7.0.4=h343d7f2_1002 + - fonts-conda-ecosystem=1=0 + - freetype=2.12.1=h60636b9_2 + - givaro=4.1.1=h0a799c6_3 + - glpk=5.0=h3cb5acd_0 + - 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_1 + - libssh2=1.11.0=hd019ec5_0 + - libtiff=4.6.0=h684deea_2 + - m4ri=20140914=h3f75d11_1005 + - mpfr=4.2.1=h0c69b56_0 + - ntl=11.4.3=h0ab3c2f_1 + - primecount=7.6=ha894c9a_0 + - readline=8.2=h9e318b2_1 + - sigtool=0.1.3=h88f4db0_0 + - tachyon=0.99b6=0 + - texinfo=7.0=pl5321hc47821c_0 + - 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.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 + - libopenblas=0.3.25=openmp_hfef2a42_0 + - libwebp=1.3.2=h44782d1_1 + - llvm-tools=15.0.7=he4b1e75_3 + - m4rie=20150908=h3f75d11_1001 + - mpc=1.3.1=h81bd1dd_0 + - mpfi=1.5.4=h52b28e3_1001 + - 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 + - tbb=2021.11.0=he51d815_0 + - appdirs=1.4.4=pyh9f0ad1d_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.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_1 + - 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_1 + - sympow=2.023.6=h115ba6a_3 + - tomli=2.0.1=pyhd8ed1ab_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.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.9.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=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_7 + - clang_osx-64=15.0.7=hb91bd55_7 + - c-compiler=1.6.0=h63c33a9_0 + - clangxx_impl_osx-64=15.0.7=h2133e9c_7 + - gfortran_osx-64=12.3.0=h18f7dce_1 + - 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 + - compilers=1.6.0=h694c41f_0 diff --git a/src/doc/en/installation/conda.rst b/src/doc/en/installation/conda.rst index 9456deff2b0..58c29b1e424 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-3.11.yml --name sage-build + $ conda env create --file environment-3.11-linux.yml --name sage-build $ conda activate sage-build - Alternatively, use ``environment-optional-3.11.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. A different Python version can be selected by replacing ``3.11`` by ``3.9`` @@ -118,19 +115,14 @@ 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-3.11.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-3.11.yml`` or - ``src/environment-optional-3.11.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. A different Python version can be selected by replacing ``3.11`` by ``3.9`` @@ -165,7 +157,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-3.11.yml --name sage-dev + $ mamba env update --file src/environment-dev-3.11-linux.yml --name sage-dev To build the documentation, use:: @@ -179,3 +171,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.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. diff --git a/src/environment-3.10-linux-aarch64.yml b/src/environment-3.10-linux-aarch64.yml new file mode 100644 index 00000000000..16debf6c05b --- /dev/null +++ b/src/environment-3.10-linux-aarch64.yml @@ -0,0 +1,422 @@ +# Generated by conda-lock. +# platform: linux-aarch64 +# input_hash: 8f25fe2693d1d27aa5fa5c6d97b0a627bb1a435fcf25aa1b3ccba79e2b621314 + +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.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_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.24.0=h31becfc_0 + - cliquer=1.22=hb9de7d4_0 + - fribidi=1.0.10=hb9de7d4_0 + - gengetopt=2.23=h01db608_0 + - gettext=0.21.1=ha18d298_0 + - gf2x=1.3.0=h1b3b3a3_2 + - giflib=5.2.1=hb4cce97_3 + - gmp=6.3.0=h2f0025b_0 + - graphite2=1.3.13=h7fd3ca4_1001 + - icu=70.1=ha18d298_0 + - jpeg=9e=h2a766a3_3 + - keyutils=1.6.1=h4e544f5_0 + - lerc=4.0.0=h4de3ea5_0 + - libatomic_ops=7.6.14=h4e544f5_0 + - libbraiding=1.2=hd600fc2_0 + - libbrotlicommon=1.1.0=h31becfc_1 + - libdeflate=1.17=hb4cce97_0 + - 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=h31becfc_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 + - 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.8.8=h31becfc_0 + - ncurses=6.4=h0425590_2 + - ninja=1.11.1=hdd96247_0 + - openssl=3.2.0=h31becfc_1 + - palp=2.20=hb9de7d4_0 + - patch=2.7.6=hf897c2e_1002 + - pixman=0.42.2=h2f0025b_0 + - pkg-config=0.29.2=hb9de7d4_1008 + - planarity=3.0.0.5=hb9de7d4_1002 + - primesieve=11.1=h2f0025b_0 + - pthread-stubs=0.4=hb9de7d4_1001 + - qhull=2020.2=hd62202e_2 + - rhash=1.4.3=h31becfc_2 + - sed=4.8=ha0d5d3d_0 + - symmetrica=3.0.1=hd600fc2_0 + - xorg-inputproto=2.3.2=h3557bc0_1002 + - xorg-kbproto=1.0.7=h3557bc0_1002 + - xorg-libice=1.0.10=h3557bc0_0 + - xorg-libxau=1.0.11=h31becfc_0 + - xorg-libxdmcp=1.1.3=h3557bc0_0 + - xorg-recordproto=1.14.2=hf897c2e_1002 + - xorg-renderproto=0.11.1=h3557bc0_1002 + - xorg-xextproto=7.3.0=h2a766a3_1003 + - xorg-xproto=7.0.31=h3557bc0_1007 + - xz=5.2.6=h9cdd2b7_0 + - yaml=0.2.5=hf897c2e_2 + - cddlib=1!0.94m=h719063d_0 + - ecm=7.0.4=h719063d_1002 + - expat=2.5.0=hd600fc2_1 + - gcc_impl_linux-aarch64=12.3.0=hcde2664_3 + - 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_1 + - 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.9=hd600fc2_0 + - readline=8.2=h8fc344f_1 + - tar=1.34=h048efde_0 + - tk=8.6.13=h194ca79_0 + - xorg-fixesproto=5.0=h3557bc0_1002 + - xorg-libsm=1.2.3=h965e137_1000 + - zeromq=4.3.5=h2f0025b_0 + - zlib=1.2.13=h31becfc_5 + - zstd=1.5.5=h4c53e97_0 + - autoconf=2.71=pl5321h2148fe1_1 + - boost-cpp=1.81.0=h07c2bc3_0 + - brotli-bin=1.1.0=h31becfc_1 + - bwidget=1.9.14=h8af1aa0_1 + - ecl=21.2.1=haa44c19_2 + - fftw=3.3.10=nompi_h2dcef8e_108 + - freetype=2.12.1=hf0a5ef3_2 + - gap-core=4.12.2=h597289e_3 + - gcc=12.3.0=hc1b51f9_2 + - gcc_linux-aarch64=12.3.0=h464a8f7_2 + - gfan=0.6.2=h5f589ec_1003 + - gfortran_impl_linux-aarch64=12.3.0=hb7244be_3 + - gxx_impl_linux-aarch64=12.3.0=hcde2664_3 + - krb5=1.20.1=h113d92e_0 + - 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 + - llvm-openmp=17.0.6=h8b0cb96_0 + - m4ri=20140914=h75e8696_1005 + - mpc=1.3.1=hf4c8f4c_0 + - mpfi=1.5.4=h846f343_1001 + - pari=2.15.4=h169c2a7_2_pthread + - ppl=1.2=h984aac9_1006 + - python=3.10.13=hbbe8eec_0_cpython + - qd=2.3.22=h05efe27_1004 + - sqlite=3.44.2=h3b3482f_0 + - tachyon=0.99b6=h63ab1d9_1001 + - texinfo=7.0=pl5321h17f021e_0 + - tktable=2.10=h4f9ca69_5 + - xorg-libx11=1.8.4=h2a766a3_0 + - alabaster=0.7.13=pyhd8ed1ab_0 + - appdirs=1.4.4=pyh9f0ad1d_0 + - appnope=0.1.3=pyhd8ed1ab_0 + - attrs=23.1.0=pyh71513ae_1 + - automake=1.16.5=pl5321h8af1aa0_0 + - brotli=1.1.0=h31becfc_1 + - brotli-python=1.1.0=py310hbb3657e_1 + - c-compiler=1.6.0=h31becfc_0 + - cached_property=1.5.2=pyha770c72_1 + - cachetools=5.3.2=pyhd8ed1ab_0 + - certifi=2023.11.17=pyhd8ed1ab_0 + - chardet=5.2.0=py310hbbe02a8_1 + - 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.7=py310hbb3657e_0 + - debugpy=1.8.0=py310hbb3657e_1 + - decorator=5.1.1=pyhd8ed1ab_0 + - defusedxml=0.7.1=pyhd8ed1ab_0 + - distlib=0.3.8=pyhd8ed1ab_0 + - docutils=0.20.1=py310hbbe02a8_3 + - eclib=20231211=he26bab5_0 + - editables=0.3=pyhd8ed1ab_0 + - entrypoints=0.4=pyhd8ed1ab_0 + - exceptiongroup=1.2.0=pyhd8ed1ab_0 + - executing=2.0.1=pyhd8ed1ab_0 + - filelock=3.13.1=pyhd8ed1ab_0 + - flit-core=3.9.0=pyhd8ed1ab_0 + - fontconfig=2.14.2=ha9a116f_0 + - fplll=5.4.5=hb3a790e_0 + - gap-defaults=4.12.2=h8af1aa0_3 + - gast=0.5.4=pyhd8ed1ab_0 + - gfortran=12.3.0=h8d4031d_2 + - gfortran_linux-aarch64=12.3.0=h1993883_2 + - gmpy2=2.1.2=py310h9f74ea4_1 + - gxx=12.3.0=hc1b51f9_2 + - gxx_linux-aarch64=12.3.0=h21accf6_2 + - idna=3.6=pyhd8ed1ab_0 + - imagesize=1.4.1=pyhd8ed1ab_0 + - ipython_genutils=0.2.0=py_1 + - json5=0.9.14=pyhd8ed1ab_0 + - jsonpointer=2.4=py310h4c7bcd0_3 + - jupyterlab_widgets=3.0.9=pyhd8ed1ab_0 + - kiwisolver=1.4.5=py310he290b8a_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=py310h7c1f4a2_1 + - maxima=5.47.0=h6475f26_1 + - mistune=3.0.2=pyhd8ed1ab_0 + - mpmath=1.3.0=pyhd8ed1ab_0 + - munkres=1.1.4=pyh9f0ad1d_0 + - nest-asyncio=1.5.8=pyhd8ed1ab_0 + - 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.12.1=pyhd8ed1ab_0 + - pickleshare=0.7.5=py_1003 + - pkgconfig=1.5.5=pyhd8ed1ab_4 + - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 + - platformdirs=4.1.0=pyhd8ed1ab_0 + - pluggy=1.3.0=pyhd8ed1ab_0 + - ply=3.11=py_1 + - prometheus_client=0.19.0=pyhd8ed1ab_0 + - psutil=5.9.7=py310hb299538_0 + - ptyprocess=0.7.0=pyhd3deb0d_0 + - pure_eval=0.2.2=pyhd8ed1ab_0 + - py=1.11.0=pyh6c4a22f_0 + - pybind11-global=2.11.1=py310h586407a_2 + - pycparser=2.21=pyhd8ed1ab_0 + - pygments=2.17.2=pyhd8ed1ab_0 + - pyparsing=3.1.1=pyhd8ed1ab_0 + - pyrsistent=0.20.0=py310h7c1f4a2_0 + - pysocks=1.7.1=pyha2e5f31_6 + - python-fastjsonschema=2.19.0=pyhd8ed1ab_0 + - python-json-logger=2.0.7=pyhd8ed1ab_0 + - python-lrcalc=2.1=py310h130cc07_5 + - python-tzdata=2023.3=pyhd8ed1ab_0 + - pytz=2023.3.post1=pyhd8ed1ab_0 + - pyyaml=6.0.1=py310hb299538_1 + - pyzmq=25.1.2=py310h014ca53_0 + - rfc3986-validator=0.1.1=pyh9f0ad1d_0 + - rpds-py=0.15.2=py310h057607a_0 + - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 + - sagetex=3.6.1=pyhd8ed1ab_0 + - send2trash=1.8.2=pyh41d4057_0 + - setuptools=68.2.2=pyhd8ed1ab_0 + - simplegeneric=0.8.1=py_1 + - singular=4.3.2.p8=hbe76a8a_1 + - six=1.16.0=pyh6c4a22f_0 + - sniffio=1.3.0=pyhd8ed1ab_0 + - snowballstemmer=2.2.0=pyhd8ed1ab_0 + - soupsieve=2.5=pyhd8ed1ab_1 + - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_0 + - sympow=2.023.6=h157afb5_3 + - tbb=2021.9.0=h4c384f3_0 + - tomli=2.0.1=pyhd8ed1ab_0 + - tornado=6.3.3=py310h7c1f4a2_1 + - traitlets=5.14.0=pyhd8ed1ab_0 + - trove-classifiers=2023.11.29=pyhd8ed1ab_0 + - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 + - typing_extensions=4.9.0=pyha770c72_0 + - typing_utils=0.1.0=pyhd8ed1ab_0 + - tzlocal=5.2=py310h4c7bcd0_0 + - unicodedata2=15.1.0=py310hb299538_0 + - uri-template=1.3.0=pyhd8ed1ab_0 + - wcwidth=0.2.12=pyhd8ed1ab_0 + - webcolors=1.13=pyhd8ed1ab_0 + - webencodings=0.5.1=pyhd8ed1ab_2 + - websocket-client=1.7.0=pyhd8ed1ab_0 + - 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.2.0=pyhd8ed1ab_0 + - asttokens=2.4.1=pyhd8ed1ab_0 + - async-lru=2.0.4=pyhd8ed1ab_0 + - babel=2.14.0=pyhd8ed1ab_0 + - beautifulsoup4=4.12.2=pyha770c72_0 + - beniget=0.4.1=pyhd8ed1ab_0 + - bleach=6.1.0=pyhd8ed1ab_0 + - 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.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.1=py310h4c7bcd0_0 + - 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=py310hb299538_0 + - overrides=7.4.0=pyhd8ed1ab_0 + - pexpect=4.8.0=pyh1a96a4e_2 + - pillow=9.4.0=py310h2843b5e_1 + - pip=23.3.2=pyhd8ed1ab_0 + - pplpy=0.8.9=py310hd5c817c_0 + - primecountpy=0.1.0=py310h586407a_4 + - prompt-toolkit=3.0.42=pyha770c72_0 + - pybind11=2.11.1=py310h586407a_2 + - pyproject-api=1.6.1=pyhd8ed1ab_0 + - python-dateutil=2.8.2=pyhd8ed1ab_0 + - pytz-deprecation-shim=0.1.0.post0=py310h4c7bcd0_4 + - referencing=0.32.0=pyhd8ed1ab_0 + - rfc3339-validator=0.1.4=pyhd8ed1ab_0 + - sympy=1.12=pypyh9d50eac_103 + - terminado=0.18.0=pyh0d859eb_0 + - tinycss2=1.2.1=pyhd8ed1ab_0 + - typing-extensions=4.9.0=hd8ed1ab_0 + - urllib3=2.1.0=pyhd8ed1ab_0 + - virtualenv=20.25.0=pyhd8ed1ab_0 + - xorg-libxi=1.7.10=h3557bc0_0 + - argon2-cffi-bindings=21.2.0=py310hb299538_4 + - arpack=3.7.0=hf862f49_2 + - arrow=1.3.0=pyhd8ed1ab_0 + - compilers=1.6.0=h8af1aa0_0 + - dsdp=5.8=hb12102e_1203 + - fflas-ffpack=2.4.3=hf104d39_2 + - fqdn=1.5.1=pyhd8ed1ab_0 + - gsl=2.7=h294027d_0 + - harfbuzz=6.0.0=hbcb8a4f_0 + - hatchling=1.21.0=pyhd8ed1ab_0 + - iml=1.0.5=h9076c59_1003 + - importlib-resources=6.1.1=pyhd8ed1ab_0 + - importlib_metadata=7.0.0=hd8ed1ab_0 + - jsonschema-specifications=2023.11.2=pyhd8ed1ab_0 + - jupyter_server_terminals=0.5.0=pyhd8ed1ab_0 + - liblapacke=3.9.0=20_linuxaarch64_openblas + - numpy=1.26.2=py310hcbab775_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 + - suitesparse=5.10.1=h1404dd6_1 + - xorg-libxtst=1.2.3=hf897c2e_1002 + - argon2-cffi=23.1.0=pyhd8ed1ab_0 + - blas-devel=3.9.0=20_linuxaarch64_openblas + - contourpy=1.2.0=py310h586407a_0 + - cvxopt=1.3.2=py310h536486b_1 + - fpylll=0.6.0=py310hfdbf2a6_1 + - giac=1.9.0.21=h04922a4_1 + - igraph=0.9.10=hefb87a8_1 + - ipython=8.18.1=pyh707e725_3 + - isoduration=20.11.0=pyhd8ed1ab_0 + - jsonschema=4.20.0=pyhd8ed1ab_0 + - jupyter_client=8.6.0=pyhd8ed1ab_0 + - linbox=1.6.3=h681a5ee_8 + - openjdk=17.0.3=h1a274e0_5 + - pango=1.50.14=h1f1e9b3_0 + - pythran=0.14.0=py310h5e48e15_1 + - scipy=1.11.3=py310hcbab775_1 + - setuptools_scm=8.0.4=hd8ed1ab_0 + - tox=4.11.4=pyhd8ed1ab_0 + - blas=2.120=openblas + - ipykernel=6.26.0=pyhf8b6a83_0 + - ipywidgets=8.1.1=pyhd8ed1ab_0 + - jmol=14.32.10=h8af1aa0_0 + - jsonschema-with-format-nongpl=4.20.0=pyhd8ed1ab_0 + - matplotlib-base=3.8.2=py310h0a7f329_0 + - nbformat=5.9.2=pyhd8ed1ab_0 + - r-base=4.2.3=h620ca72_0 + - rw=0.9=hf897c2e_0 + - ipympl=0.9.3=pyhd8ed1ab_0 + - jupyter-jsmol=2022.1.0=pyhd8ed1ab_0 + - jupyter_events=0.9.0=pyhd8ed1ab_0 + - matplotlib=3.8.2=py310hbbe02a8_0 + - nbclient=0.8.0=pyhd8ed1ab_0 + - rpy2=3.5.11=py310r42h8b6b5fc_3 + - nbconvert-core=7.13.0=pyhd8ed1ab_0 + - jupyter_server=2.12.1=pyhd8ed1ab_0 + - nbconvert-pandoc=7.13.0=pyhd8ed1ab_0 + - jupyter-lsp=2.2.1=pyhd8ed1ab_0 + - jupyterlab_server=2.25.2=pyhd8ed1ab_0 + - nbconvert=7.13.0=pyhd8ed1ab_0 + - notebook-shim=0.2.3=pyhd8ed1ab_0 + - jupyterlab=4.0.9=pyhd8ed1ab_0 + - notebook=7.0.6=pyhd8ed1ab_0 + - jupyter_sphinx=0.1.4=py_0 + - sphinx-basic-ng=1.0.0b2=pyhd8ed1ab_1 + - furo=2023.9.10=pyhd8ed1ab_0 + - sphinx-copybutton=0.5.2=pyhd8ed1ab_0 + - sphinxcontrib-applehelp=1.0.7=pyhd8ed1ab_0 + - sphinxcontrib-devhelp=1.0.5=pyhd8ed1ab_0 + - sphinxcontrib-htmlhelp=2.0.4=pyhd8ed1ab_0 + - sphinxcontrib-qthelp=1.0.6=pyhd8ed1ab_0 + - sphinx=7.2.6=pyhd8ed1ab_0 + - sphinxcontrib-serializinghtml=1.1.9=pyhd8ed1ab_0 + - sphinxcontrib-websupport=1.2.6=pyhd8ed1ab_0 diff --git a/src/environment-3.10-linux.yml b/src/environment-3.10-linux.yml new file mode 100644 index 00000000000..201bf1c8492 --- /dev/null +++ b/src/environment-3.10-linux.yml @@ -0,0 +1,466 @@ +# Generated by conda-lock. +# platform: linux-64 +# input_hash: e502ab74c729987e3321c8627f9878529b139e4bdfe7ccc0b5ea7b22177b7ea4 + +channels: + - conda-forge +dependencies: + - _libgcc_mutex=0.1=conda_forge + - _r-mutex=1.0.1=anacondar_1 + - 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=h77eed37_1 + - kernel-headers_linux-64=2.6.32=he073ed8_16 + - ld_impl_linux-64=2.40=h41732ed_0 + - libboost-headers=1.84.0=ha770c72_0 + - libgcc-devel_linux-64=12.3.0=h8bca6fd_103 + - libstdcxx-devel_linux-64=12.3.0=h8bca6fd_103 + - libstdcxx-ng=13.2.0=h7e041cc_3 + - mathjax=3.2.2=ha770c72_0 + - 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 + - libgomp=13.2.0=h807b86a_3 + - 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_2 + - _openmp_mutex=4.5=2_kmp_llvm + - libgcc-ng=13.2.0=h807b86a_3 + - alsa-lib=1.2.10=hd590300_0 + - attr=2.5.1=h166bdaf_1 + - bc=1.07.1=h7f98852_0 + - bdw-gc=8.0.6=h4bd325d_0 + - bzip2=1.0.8=hd590300_5 + - c-ares=1.24.0=hd590300_0 + - cliquer=1.22=h36c2ea0_0 + - fribidi=1.0.10=h36c2ea0_0 + - gengetopt=2.23=h9c3ff4c_0 + - gettext=0.21.1=h27087fc_0 + - gf2x=1.3.0=ha476b99_2 + - giflib=5.2.1=h0b41bf4_3 + - gmp=6.3.0=h59595ed_0 + - graphite2=1.3.13=h58526e2_1001 + - icu=73.2=h59595ed_0 + - keyutils=1.6.1=h166bdaf_0 + - lame=3.100=h166bdaf_1003 + - lerc=4.0.0=h27087fc_0 + - libatomic_ops=7.6.14=h166bdaf_0 + - libbraiding=1.2=hcb278e6_0 + - libbrotlicommon=1.1.0=hd590300_1 + - libdeflate=1.19=hd590300_0 + - libev=4.33=hd590300_2 + - libexpat=2.5.0=hcb278e6_1 + - libffi=3.4.2=h7f98852_5 + - libgfortran5=13.2.0=ha4646dd_3 + - libiconv=1.17=hd590300_2 + - libjpeg-turbo=3.0.0=hd590300_1 + - libnsl=2.0.1=hd590300_0 + - libogg=1.3.4=h7f98852_1 + - libopus=1.3.1=h7f98852_1 + - libsanitizer=12.3.0=h0f45ef3_3 + - libsodium=1.0.18=h36c2ea0_1 + - libtool=2.4.7=h27087fc_0 + - libuuid=2.38.1=h0b41bf4_0 + - libuv=1.46.0=hd590300_0 + - libwebp-base=1.3.2=hd590300_0 + - libzlib=1.2.13=hd590300_5 + - lrcalc=2.1=h27087fc_5 + - lz4-c=1.9.4=hcb278e6_0 + - m4=1.4.18=h516909a_1001 + - make=4.3=hd18ef5c_1 + - metis=5.1.1=h59595ed_2 + - mpg123=1.32.3=h59595ed_0 + - nauty=2.8.8=hd590300_0 + - ncurses=6.4=h59595ed_2 + - ninja=1.11.1=h924138e_0 + - nspr=4.35=h27087fc_0 + - openssl=3.2.0=hd590300_1 + - palp=2.20=h36c2ea0_0 + - patch=2.7.6=h7f98852_1002 + - pixman=0.42.2=h59595ed_0 + - pkg-config=0.29.2=h36c2ea0_1008 + - planarity=3.0.0.5=h36c2ea0_1002 + - primesieve=11.1=h59595ed_0 + - pthread-stubs=0.4=h36c2ea0_1001 + - qhull=2020.2=h4bd325d_2 + - rhash=1.4.4=hd590300_0 + - sed=4.8=he412f7d_0 + - symmetrica=3.0.1=hcb278e6_0 + - xorg-inputproto=2.3.2=h7f98852_1002 + - xorg-kbproto=1.0.7=h7f98852_1002 + - xorg-libice=1.1.1=hd590300_0 + - xorg-libxau=1.0.11=hd590300_0 + - xorg-libxdmcp=1.1.3=h7f98852_0 + - xorg-recordproto=1.14.2=h7f98852_1002 + - xorg-renderproto=0.11.1=h7f98852_1002 + - xorg-xextproto=7.3.0=h0b41bf4_1003 + - xorg-xf86vidmodeproto=2.3.1=h7f98852_1002 + - xorg-xproto=7.0.31=h7f98852_1007 + - xz=5.2.6=h166bdaf_0 + - yaml=0.2.5=h7f98852_2 + - cddlib=1!0.94m=h9202a9a_0 + - ecm=7.0.4=h9202a9a_1002 + - expat=2.5.0=hcb278e6_1 + - gcc_impl_linux-64=12.3.0=he2b93b0_3 + - givaro=4.1.1=h192cbe9_1 + - glpk=5.0=h445213a_0 + - libbrotlidec=1.1.0=hd590300_1 + - libbrotlienc=1.1.0=hd590300_1 + - libcap=2.69=h0f662aa_0 + - libedit=3.1.20191231=he28a2e2_2 + - libevent=2.1.12=hf998b51_1 + - libflac=1.4.3=h59595ed_0 + - libgfortran-ng=13.2.0=h69a702a_3 + - libgpg-error=1.47=h71f35ed_0 + - libhomfly=1.02r6=h36c2ea0_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 + - libvorbis=1.3.7=h9c3ff4c_0 + - libxcb=1.15=h0b41bf4_0 + - 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.42=hcad00b1_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.13=noxft_h4845f30_101 + - xorg-fixesproto=5.0=h7f98852_1002 + - xorg-libsm=1.2.4=h7391055_0 + - zeromq=4.3.5=h59595ed_0 + - zlib=1.2.13=hd590300_5 + - zstd=1.5.5=hfc55251_0 + - autoconf=2.71=pl5321h2b4cb7a_1 + - brotli-bin=1.1.0=hd590300_1 + - bwidget=1.9.14=ha770c72_1 + - ecl=21.2.1=h9d73b02_2 + - fftw=3.3.10=nompi_hc118613_108 + - freetype=2.12.1=h267a509_2 + - gap-core=4.12.2=he9a28a4_3 + - gcc=12.3.0=h8d2909c_2 + - gcc_linux-64=12.3.0=h76fc315_2 + - gfan=0.6.2=hb86e20a_1003 + - gfortran_impl_linux-64=12.3.0=hfcedea8_3 + - gxx_impl_linux-64=12.3.0=he2b93b0_3 + - krb5=1.21.2=h659d440_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 + - libhwloc=2.9.3=default_h554bfaf_1009 + - libllvm15=15.0.7=h5cf9203_3 + - libopenblas=0.3.25=pthreads_h413a1c8_0 + - libsndfile=1.2.2=hc60ed4a_1 + - libtiff=4.6.0=ha9c0a0a_2 + - llvm-openmp=17.0.6=h4dfa4b3_0 + - m4ri=20140914=h7ca028e_1005 + - mpc=1.3.1=hfe3b2da_0 + - mpfi=1.5.4=h9f54685_1001 + - mysql-libs=8.0.33=hca2cd23_6 + - nss=3.96=h1d7d5a4_0 + - pandoc=3.1.3=h32600fe_0 + - pari=2.15.4=h4d4ae9b_2_pthread + - ppl=1.2=h6ec01c2_1006 + - python=3.10.13=hd12c33a_0_cpython + - qd=2.3.22=h2cc385e_1004 + - sqlite=3.44.2=h2c6b66d_0 + - tachyon=0.99b6=0 + - texinfo=7.0=pl5321h0f457ee_0 + - tktable=2.10=h0c5db8f_5 + - xcb-util=0.4.0=hd590300_1 + - xcb-util-keysyms=0.4.0=h8ee46fc_1 + - xcb-util-renderutil=0.3.9=hd590300_1 + - xcb-util-wm=0.4.1=h8ee46fc_1 + - xorg-libx11=1.8.7=h8ee46fc_0 + - alabaster=0.7.13=pyhd8ed1ab_0 + - appdirs=1.4.4=pyh9f0ad1d_0 + - appnope=0.1.3=pyhd8ed1ab_0 + - attrs=23.1.0=pyh71513ae_1 + - automake=1.16.5=pl5321ha770c72_0 + - brotli=1.1.0=hd590300_1 + - brotli-python=1.1.0=py310hc6cd4ac_1 + - c-compiler=1.6.0=hd590300_0 + - cached_property=1.5.2=pyha770c72_1 + - cachetools=5.3.2=pyhd8ed1ab_0 + - certifi=2023.11.17=pyhd8ed1ab_0 + - chardet=5.2.0=py310hff52083_1 + - 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.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.8=pyhd8ed1ab_0 + - docutils=0.20.1=py310hff52083_3 + - eclib=20231211=h96f522a_0 + - editables=0.3=pyhd8ed1ab_0 + - entrypoints=0.4=pyhd8ed1ab_0 + - exceptiongroup=1.2.0=pyhd8ed1ab_0 + - executing=2.0.1=pyhd8ed1ab_0 + - filelock=3.13.1=pyhd8ed1ab_0 + - flit-core=3.9.0=pyhd8ed1ab_0 + - fontconfig=2.14.2=h14ed4e7_0 + - fplll=5.4.5=h384768b_0 + - gap-defaults=4.12.2=ha770c72_3 + - gast=0.5.4=pyhd8ed1ab_0 + - gfortran=12.3.0=h499e0f7_2 + - gfortran_linux-64=12.3.0=h7fe76b4_2 + - glib-tools=2.78.3=hfc55251_0 + - gmpy2=2.1.2=py310h3ec546c_1 + - gxx=12.3.0=h8d2909c_2 + - gxx_linux-64=12.3.0=h8a814eb_2 + - idna=3.6=pyhd8ed1ab_0 + - imagesize=1.4.1=pyhd8ed1ab_0 + - ipython_genutils=0.2.0=py_1 + - json5=0.9.14=pyhd8ed1ab_0 + - jsonpointer=2.4=py310hff52083_3 + - jupyterlab_widgets=3.0.9=pyhd8ed1ab_0 + - kiwisolver=1.4.5=py310hd41b1e2_1 + - lcalc=2.0.5=h6a8a7c6_1 + - lcms2=2.16=hb7c19ff_0 + - libblas=3.9.0=20_linux64_openblas + - libboost-devel=1.84.0=h00ab1b0_0 + - libbrial=1.2.12=h3155cbd_1 + - libclang13=15.0.7=default_ha2b6cf4_4 + - libcups=2.3.3=h4637d8d_4 + - libcurl=8.5.0=hca28451_0 + - libpq=16.1=h33b98f1_7 + - libsystemd0=255=h3516f8a_0 + - libwebp=1.3.2=h658648e_1 + - m4rie=20150908=h7ca028e_1001 + - markupsafe=2.1.3=py310h2372a71_1 + - maxima=5.47.0=hed6455c_1 + - mistune=3.0.2=pyhd8ed1ab_0 + - mpmath=1.3.0=pyhd8ed1ab_0 + - munkres=1.1.4=pyh9f0ad1d_0 + - nest-asyncio=1.5.8=pyhd8ed1ab_0 + - networkx=3.2.1=pyhd8ed1ab_0 + - openblas=0.3.25=pthreads_h7a3da1a_0 + - openjpeg=2.5.0=h488ebb8_3 + - packaging=23.2=pyhd8ed1ab_0 + - pandocfilters=1.5.0=pyhd8ed1ab_0 + - parso=0.8.3=pyhd8ed1ab_0 + - pathspec=0.12.1=pyhd8ed1ab_0 + - pickleshare=0.7.5=py_1003 + - pkgconfig=1.5.5=pyhd8ed1ab_4 + - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 + - platformdirs=4.1.0=pyhd8ed1ab_0 + - pluggy=1.3.0=pyhd8ed1ab_0 + - ply=3.11=py_1 + - prometheus_client=0.19.0=pyhd8ed1ab_0 + - psutil=5.9.7=py310h2372a71_0 + - ptyprocess=0.7.0=pyhd3deb0d_0 + - pure_eval=0.2.2=pyhd8ed1ab_0 + - py=1.11.0=pyh6c4a22f_0 + - pybind11-global=2.11.1=py310hd41b1e2_2 + - pycparser=2.21=pyhd8ed1ab_0 + - pygments=2.17.2=pyhd8ed1ab_0 + - pyparsing=3.1.1=pyhd8ed1ab_0 + - pyrsistent=0.20.0=py310h2372a71_0 + - pysocks=1.7.1=pyha2e5f31_6 + - python-fastjsonschema=2.19.0=pyhd8ed1ab_0 + - python-json-logger=2.0.7=pyhd8ed1ab_0 + - python-lrcalc=2.1=py310hd8f1fbe_5 + - python-tzdata=2023.3=pyhd8ed1ab_0 + - pytz=2023.3.post1=pyhd8ed1ab_0 + - pyyaml=6.0.1=py310h2372a71_1 + - pyzmq=25.1.2=py310h795f18f_0 + - rfc3986-validator=0.1.1=pyh9f0ad1d_0 + - rpds-py=0.15.2=py310hcb5633a_0 + - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 + - sagetex=3.6.1=pyhd8ed1ab_0 + - send2trash=1.8.2=pyh41d4057_0 + - setuptools=68.2.2=pyhd8ed1ab_0 + - simplegeneric=0.8.1=py_1 + - singular=4.3.2.p8=h33f5c3f_1 + - six=1.16.0=pyh6c4a22f_0 + - sniffio=1.3.0=pyhd8ed1ab_0 + - snowballstemmer=2.2.0=pyhd8ed1ab_0 + - soupsieve=2.5=pyhd8ed1ab_1 + - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_0 + - sympow=2.023.6=hc6ab17c_3 + - tbb=2021.11.0=h00ab1b0_0 + - toml=0.10.2=pyhd8ed1ab_0 + - tomli=2.0.1=pyhd8ed1ab_0 + - tornado=6.3.3=py310h2372a71_1 + - traitlets=5.14.0=pyhd8ed1ab_0 + - trove-classifiers=2023.11.29=pyhd8ed1ab_0 + - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 + - typing_extensions=4.9.0=pyha770c72_0 + - typing_utils=0.1.0=pyhd8ed1ab_0 + - tzlocal=5.2=py310hff52083_0 + - unicodedata2=15.1.0=py310h2372a71_0 + - uri-template=1.3.0=pyhd8ed1ab_0 + - wcwidth=0.2.12=pyhd8ed1ab_0 + - webcolors=1.13=pyhd8ed1ab_0 + - webencodings=0.5.1=pyhd8ed1ab_2 + - websocket-client=1.7.0=pyhd8ed1ab_0 + - wheel=0.42.0=pyhd8ed1ab_0 + - widgetsnbextension=4.0.9=pyhd8ed1ab_0 + - xcb-util-image=0.4.0=h8ee46fc_1 + - xkeyboard-config=2.40=hd590300_0 + - xorg-libxext=1.3.4=h0b41bf4_2 + - xorg-libxfixes=5.0.3=h7f98852_1004 + - xorg-libxrender=0.9.11=hd590300_0 + - xorg-libxt=1.3.0=hd590300_1 + - zipp=3.17.0=pyhd8ed1ab_0 + - anyio=4.2.0=pyhd8ed1ab_0 + - asttokens=2.4.1=pyhd8ed1ab_0 + - async-lru=2.0.4=pyhd8ed1ab_0 + - babel=2.14.0=pyhd8ed1ab_0 + - beautifulsoup4=4.12.2=pyha770c72_0 + - beniget=0.4.1=pyhd8ed1ab_0 + - bleach=6.1.0=pyhd8ed1ab_0 + - boost-cpp=1.84.0=h44aadfe_0 + - brial=1.2.12=pyh694c41f_1 + - cached-property=1.5.2=hd8ed1ab_1 + - cairo=1.18.0=h3faef2a_0 + - cffi=1.16.0=py310h2fee648_0 + - cmake=3.28.1=hcfe8598_0 + - comm=0.1.4=pyhd8ed1ab_0 + - cppy=1.2.1=pyhd8ed1ab_0 + - curl=8.5.0=hca28451_0 + - cxx-compiler=1.6.0=h00ab1b0_0 + - cypari2=2.1.3=py310h14ed79e_2 + - deprecation=2.1.0=pyh9f0ad1d_0 + - fonttools=4.47.0=py310h2372a71_0 + - fortran-compiler=1.6.0=heb67821_0 + - glib=2.78.3=hfc55251_0 + - importlib-metadata=7.0.0=pyha770c72_0 + - importlib_resources=6.1.1=pyhd8ed1ab_0 + - jedi=0.19.1=pyhd8ed1ab_0 + - jinja2=3.1.2=pyhd8ed1ab_1 + - jupyter_core=5.5.1=py310hff52083_0 + - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 + - libcblas=3.9.0=20_linux64_openblas + - libclang=15.0.7=default_hb11cfb5_4 + - libgd=2.3.3=h119a65a_9 + - liblapack=3.9.0=20_linux64_openblas + - libxkbcommon=1.6.0=h5d7e998_0 + - matplotlib-inline=0.1.6=pyhd8ed1ab_0 + - memory-allocator=0.1.3=py310h2372a71_0 + - overrides=7.4.0=pyhd8ed1ab_0 + - pexpect=4.8.0=pyh1a96a4e_2 + - pillow=10.1.0=py310h01dd4db_0 + - pip=23.3.2=pyhd8ed1ab_0 + - pplpy=0.8.9=py310h28f6eb6_0 + - primecountpy=0.1.0=py310hd41b1e2_4 + - prompt-toolkit=3.0.42=pyha770c72_0 + - pulseaudio-client=16.1=hb77b528_5 + - pybind11=2.11.1=py310hd41b1e2_2 + - pyproject-api=1.6.1=pyhd8ed1ab_0 + - python-dateutil=2.8.2=pyhd8ed1ab_0 + - pytz-deprecation-shim=0.1.0.post0=py310hff52083_4 + - referencing=0.32.0=pyhd8ed1ab_0 + - rfc3339-validator=0.1.4=pyhd8ed1ab_0 + - sip=6.7.12=py310hc6cd4ac_0 + - sympy=1.12=pypyh9d50eac_103 + - terminado=0.18.0=pyh0d859eb_0 + - tinycss2=1.2.1=pyhd8ed1ab_0 + - typing-extensions=4.9.0=hd8ed1ab_0 + - urllib3=2.1.0=pyhd8ed1ab_0 + - virtualenv=20.25.0=pyhd8ed1ab_0 + - xorg-libxi=1.7.10=h7f98852_0 + - argon2-cffi-bindings=21.2.0=py310h2372a71_4 + - arpack=3.8.0=nompi_h0baa96a_101 + - arrow=1.3.0=pyhd8ed1ab_0 + - compilers=1.6.0=ha770c72_0 + - dsdp=5.8=hd9d9efa_1203 + - fflas-ffpack=2.4.3=h912ac81_2 + - fqdn=1.5.1=pyhd8ed1ab_0 + - gsl=2.7=he838d99_0 + - gstreamer=1.22.8=h98fc4e7_0 + - harfbuzz=8.3.0=h3d44ed6_0 + - hatchling=1.21.0=pyhd8ed1ab_0 + - iml=1.0.5=hd75c201_1003 + - importlib-resources=6.1.1=pyhd8ed1ab_0 + - importlib_metadata=7.0.0=hd8ed1ab_0 + - jsonschema-specifications=2023.11.2=pyhd8ed1ab_0 + - jupyter_server_terminals=0.5.0=pyhd8ed1ab_0 + - liblapacke=3.9.0=20_linux64_openblas + - numpy=1.26.2=py310hb13e2d6_0 + - prompt_toolkit=3.0.42=hd8ed1ab_0 + - pyqt5-sip=12.12.2=py310hc6cd4ac_5 + - requests=2.31.0=pyhd8ed1ab_0 + - setuptools-scm=8.0.4=pyhd8ed1ab_0 + - stack_data=0.6.2=pyhd8ed1ab_0 + - suitesparse=5.10.1=h3ec001c_2 + - xorg-libxtst=1.2.3=h7f98852_1002 + - argon2-cffi=23.1.0=pyhd8ed1ab_0 + - blas-devel=3.9.0=20_linux64_openblas + - contourpy=1.2.0=py310hd41b1e2_0 + - cvxopt=1.3.2=py310h14a12bf_1 + - fpylll=0.6.0=py310h7e26f94_1 + - giac=1.9.0.21=h673759e_1 + - gst-plugins-base=1.22.8=h8e1006c_0 + - igraph=0.10.8=h66a01bf_0 + - ipython=8.18.1=pyh707e725_3 + - isoduration=20.11.0=pyhd8ed1ab_0 + - jsonschema=4.20.0=pyhd8ed1ab_0 + - jupyter_client=8.6.0=pyhd8ed1ab_0 + - linbox=1.6.3=ha329b40_8 + - openjdk=21.0.1=haa376d0_0 + - pango=1.50.14=ha41ecd1_2 + - pythran=0.14.0=py310hcb52e73_1 + - scipy=1.11.4=py310hb13e2d6_0 + - setuptools_scm=8.0.4=hd8ed1ab_0 + - tox=4.11.4=pyhd8ed1ab_0 + - blas=2.120=openblas + - ipykernel=6.26.0=pyhf8b6a83_0 + - ipywidgets=8.1.1=pyhd8ed1ab_0 + - jmol=14.32.10=ha770c72_0 + - jsonschema-with-format-nongpl=4.20.0=pyhd8ed1ab_0 + - matplotlib-base=3.8.2=py310h62c0568_0 + - nbformat=5.9.2=pyhd8ed1ab_0 + - qt-main=5.15.8=h82b777d_17 + - r-base=4.3.2=hb8ee39d_1 + - rw=0.9=hd590300_1 + - ipympl=0.9.3=pyhd8ed1ab_0 + - jupyter-jsmol=2022.1.0=pyhd8ed1ab_0 + - jupyter_events=0.9.0=pyhd8ed1ab_0 + - nbclient=0.8.0=pyhd8ed1ab_0 + - pyqt=5.15.9=py310h04931ad_5 + - rpy2=3.5.11=py310r43h1f7b6fc_3 + - matplotlib=3.8.2=py310hff52083_0 + - nbconvert-core=7.13.0=pyhd8ed1ab_0 + - jupyter_server=2.12.1=pyhd8ed1ab_0 + - nbconvert-pandoc=7.13.0=pyhd8ed1ab_0 + - jupyter-lsp=2.2.1=pyhd8ed1ab_0 + - jupyterlab_server=2.25.2=pyhd8ed1ab_0 + - nbconvert=7.13.0=pyhd8ed1ab_0 + - notebook-shim=0.2.3=pyhd8ed1ab_0 + - jupyterlab=4.0.9=pyhd8ed1ab_0 + - notebook=7.0.6=pyhd8ed1ab_0 + - jupyter_sphinx=0.4.0=py310hff52083_1 + - sphinx-basic-ng=1.0.0b2=pyhd8ed1ab_1 + - furo=2023.9.10=pyhd8ed1ab_0 + - sphinx-copybutton=0.5.2=pyhd8ed1ab_0 + - sphinxcontrib-applehelp=1.0.7=pyhd8ed1ab_0 + - sphinxcontrib-devhelp=1.0.5=pyhd8ed1ab_0 + - sphinxcontrib-htmlhelp=2.0.4=pyhd8ed1ab_0 + - sphinxcontrib-qthelp=1.0.6=pyhd8ed1ab_0 + - sphinx=7.2.6=pyhd8ed1ab_0 + - sphinxcontrib-serializinghtml=1.1.9=pyhd8ed1ab_0 + - sphinxcontrib-websupport=1.2.6=pyhd8ed1ab_0 diff --git a/src/environment-3.10-macos-arm64.yml b/src/environment-3.10-macos-arm64.yml new file mode 100644 index 00000000000..1c71e3f2e43 --- /dev/null +++ b/src/environment-3.10-macos-arm64.yml @@ -0,0 +1,402 @@ +# Generated by conda-lock. +# platform: osx-arm64 +# input_hash: f3a7ade7d121b058758a996f2cb987d66d13e67ba29536d5816c74b35fa3fba8 + +channels: + - conda-forge +dependencies: + - _r-mutex=1.0.1=anacondar_1 + - bc=1.07.1=h3422bc3_0 + - bzip2=1.0.8=h93a5062_5 + - c-ares=1.24.0=h93a5062_0 + - ca-certificates=2023.11.17=hf0a4a13_0 + - cliquer=1.22=h27ca646_0 + - font-ttf-dejavu-sans-mono=2.37=hab24e00_0 + - font-ttf-inconsolata=3.000=h77eed37_0 + - font-ttf-source-code-pro=2.038=h77eed37_0 + - font-ttf-ubuntu=0.83=h77eed37_1 + - fribidi=1.0.10=h27ca646_0 + - giflib=5.2.1=h1a8c8d9_3 + - jpeg=9e=h1a8c8d9_3 + - libatomic_ops=7.6.14=h1a8c8d9_0 + - libbrotlicommon=1.1.0=hb547adb_1 + - libcxx=16.0.6=h4653b0c_0 + - libdeflate=1.17=h1a8c8d9_0 + - libev=4.33=h93a5062_2 + - libexpat=2.5.0=hb7217d7_1 + - libffi=3.4.2=h3422bc3_5 + - libgfortran-devel_osx-arm64=12.3.0=hc62be1c_1 + - libiconv=1.17=h0d3ecfb_2 + - 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.6=hcd81f8e_0 + - m4=1.4.18=h642e427_1001 + - make=4.3=he57ea6c_1 + - mathjax=3.2.2=hce30654_0 + - nauty=2.8.8=h93a5062_0 + - 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 + - tbb=2021.10.0=h1995070_2 + - 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.3.0=h965bd2d_0 + - graphite2=1.3.13=h9f76cd9_1001 + - icu=70.1=h6b3803e_0 + - isl=0.25=h9a09cb3_0 + - lerc=4.0.0=h9a09cb3_0 + - libbraiding=1.2=hb7217d7_0 + - libbrotlidec=1.1.0=hb547adb_1 + - libbrotlienc=1.1.0=hb547adb_1 + - libgfortran5=13.2.0=hf226fd6_1 + - libpng=1.6.39=h76d750c_0 + - libsqlite=3.44.2=h091b4b1_0 + - libxcb=1.13=h9b22ae9_1004 + - lrcalc=2.1=hb7217d7_5 + - metis=5.1.1=h965bd2d_2 + - ncurses=6.4=h463b476_2 + - ninja=1.11.1=hffc8910_0 + - openjdk=21.0.1=hed44d8b_0 + - openssl=3.2.0=h0d3ecfb_1 + - 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 + - symmetrica=3.0.1=hb7217d7_0 + - tapi=1100.0.11=he4954df_0 + - tar=1.34=h7cb298e_1 + - threejs-sage=122=hd8ed1ab_2 + - tk=8.6.13=h5083fa2_1 + - zeromq=4.3.5=h965bd2d_0 + - zlib=1.2.13=h53f4e23_5 + - zstd=1.5.5=h4f39d0f_0 + - automake=1.16.5=pl5321hce30654_0 + - boost-cpp=1.81.0=hf96b251_0 + - brotli-bin=1.1.0=hb547adb_1 + - bwidget=1.9.14=hce30654_1 + - cddlib=1!0.94m=h6d7a090_0 + - ecm=7.0.4=h47c7c1a_1002 + - fonts-conda-ecosystem=1=0 + - freetype=2.12.1=hadb7bae_2 + - givaro=4.1.1=h0cdca34_3 + - glpk=5.0=h6d7a090_0 + - jmol=14.32.10=hce30654_0 + - libedit=3.1.20191231=hc8eb9b7_2 + - 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_1 + - 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.1=h9546428_0 + - ntl=11.4.3=hbb3f309_1 + - primecount=7.6=hb6e4faa_0 + - readline=8.2=h92ec313_1 + - sigtool=0.1.3=h44b9a77_0 + - tachyon=0.99b6=hfb72b2a_1001 + - texinfo=7.0=pl5321h9ea1dce_0 + - tktable=2.10=hd996620_5 + - brotli=1.1.0=hb547adb_1 + - ecl=21.2.1=h8492d4d_2 + - fftw=3.3.10=nompi_h3046061_108 + - fontconfig=2.14.2=h82840c6_0 + - gap-core=4.12.2=he8f4e70_3 + - gfan=0.6.2=hec08f5c_1003 + - krb5=1.20.1=h69eda48_0 + - lcms2=2.15=h481adae_0 + - libbrial=1.2.12=ha7f5006_1 + - 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 + - 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 + - attrs=23.1.0=pyh71513ae_1 + - brial=1.2.12=pyh694c41f_1 + - brotli-python=1.1.0=py310h1253130_1 + - cached_property=1.5.2=pyha770c72_1 + - cachetools=5.3.2=pyhd8ed1ab_0 + - cairo=1.16.0=h73a0509_1014 + - certifi=2023.11.17=pyhd8ed1ab_0 + - chardet=5.2.0=py310hbe9552e_1 + - 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.7=py310h692a8b6_0 + - debugpy=1.8.0=py310h1253130_1 + - decorator=5.1.1=pyhd8ed1ab_0 + - defusedxml=0.7.1=pyhd8ed1ab_0 + - distlib=0.3.8=pyhd8ed1ab_0 + - docutils=0.20.1=py310hbe9552e_3 + - eclib=20231211=h7f07de4_0 + - editables=0.3=pyhd8ed1ab_0 + - entrypoints=0.4=pyhd8ed1ab_0 + - exceptiongroup=1.2.0=pyhd8ed1ab_0 + - executing=2.0.1=pyhd8ed1ab_0 + - filelock=3.13.1=pyhd8ed1ab_0 + - flit-core=3.9.0=pyhd8ed1ab_0 + - fplll=5.4.5=hb7d509d_0 + - gap-defaults=4.12.2=hce30654_3 + - gast=0.5.4=pyhd8ed1ab_0 + - gfortran_impl_osx-arm64=12.3.0=hbbb9e1e_1 + - gmpy2=2.1.2=py310h2e6cad2_1 + - idna=3.6=pyhd8ed1ab_0 + - imagesize=1.4.1=pyhd8ed1ab_0 + - ipython_genutils=0.2.0=py_1 + - json5=0.9.14=pyhd8ed1ab_0 + - jsonpointer=2.4=py310hbe9552e_3 + - jupyterlab_widgets=3.0.9=pyhd8ed1ab_0 + - kiwisolver=1.4.5=py310h38f39d4_1 + - lcalc=2.0.5=hc94e8e6_1 + - ld64_osx-arm64=609=hc4dc95b_15 + - libblas=3.9.0=20_osxarm64_openblas + - libclang-cpp15=15.0.7=default_hd209bcb_4 + - libcurl=8.1.2=h912dcd9_0 + - libgd=2.3.3=h90fb8ed_4 + - llvm-tools=15.0.7=h62b9111_1 + - markupsafe=2.1.3=py310h2aa6e3c_1 + - maxima=5.45.0=h6032a66_2 + - mistune=3.0.2=pyhd8ed1ab_0 + - mpmath=1.3.0=pyhd8ed1ab_0 + - munkres=1.1.4=pyh9f0ad1d_0 + - nest-asyncio=1.5.8=pyhd8ed1ab_0 + - networkx=3.2.1=pyhd8ed1ab_0 + - openblas=0.3.25=openmp_h55c453e_0 + - packaging=23.2=pyhd8ed1ab_0 + - pandocfilters=1.5.0=pyhd8ed1ab_0 + - parso=0.8.3=pyhd8ed1ab_0 + - pathspec=0.12.1=pyhd8ed1ab_0 + - pickleshare=0.7.5=py_1003 + - pillow=9.4.0=py310h5a7539a_1 + - pkgconfig=1.5.5=pyhd8ed1ab_4 + - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 + - platformdirs=4.1.0=pyhd8ed1ab_0 + - pluggy=1.3.0=pyhd8ed1ab_0 + - ply=3.11=py_1 + - prometheus_client=0.19.0=pyhd8ed1ab_0 + - psutil=5.9.7=py310hd125d64_0 + - ptyprocess=0.7.0=pyhd3deb0d_0 + - pure_eval=0.2.2=pyhd8ed1ab_0 + - py=1.11.0=pyh6c4a22f_0 + - pybind11-global=2.11.1=py310h38f39d4_2 + - pycparser=2.21=pyhd8ed1ab_0 + - pygments=2.17.2=pyhd8ed1ab_0 + - pyparsing=3.1.1=pyhd8ed1ab_0 + - pyrsistent=0.20.0=py310hd125d64_0 + - pysocks=1.7.1=pyha2e5f31_6 + - python-fastjsonschema=2.19.0=pyhd8ed1ab_0 + - python-json-logger=2.0.7=pyhd8ed1ab_0 + - python-lrcalc=2.1=py310h0f1eb42_5 + - python-tzdata=2023.3=pyhd8ed1ab_0 + - pytz=2023.3.post1=pyhd8ed1ab_0 + - pyyaml=6.0.1=py310h2aa6e3c_1 + - pyzmq=25.1.2=py310hbb13138_0 + - rfc3986-validator=0.1.1=pyh9f0ad1d_0 + - rpds-py=0.15.2=py310hd442715_0 + - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 + - sagetex=3.6.1=pyhd8ed1ab_0 + - setuptools=68.2.2=pyhd8ed1ab_0 + - simplegeneric=0.8.1=py_1 + - singular=4.3.2.p8=hb460b52_1 + - six=1.16.0=pyh6c4a22f_0 + - sniffio=1.3.0=pyhd8ed1ab_0 + - snowballstemmer=2.2.0=pyhd8ed1ab_0 + - soupsieve=2.5=pyhd8ed1ab_1 + - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_0 + - sympow=2.023.6=hb0babe8_3 + - tomli=2.0.1=pyhd8ed1ab_0 + - tornado=6.3.3=py310h2aa6e3c_1 + - traitlets=5.14.0=pyhd8ed1ab_0 + - trove-classifiers=2023.11.29=pyhd8ed1ab_0 + - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 + - typing_extensions=4.9.0=pyha770c72_0 + - typing_utils=0.1.0=pyhd8ed1ab_0 + - tzlocal=5.2=py310hbe9552e_0 + - unicodedata2=15.1.0=py310h2aa6e3c_0 + - uri-template=1.3.0=pyhd8ed1ab_0 + - wcwidth=0.2.12=pyhd8ed1ab_0 + - webcolors=1.13=pyhd8ed1ab_0 + - webencodings=0.5.1=pyhd8ed1ab_2 + - websocket-client=1.7.0=pyhd8ed1ab_0 + - wheel=0.42.0=pyhd8ed1ab_0 + - widgetsnbextension=4.0.9=pyhd8ed1ab_0 + - zipp=3.17.0=pyhd8ed1ab_0 + - anyio=4.2.0=pyhd8ed1ab_0 + - asttokens=2.4.1=pyhd8ed1ab_0 + - async-lru=2.0.4=pyhd8ed1ab_0 + - babel=2.14.0=pyhd8ed1ab_0 + - beautifulsoup4=4.12.2=pyha770c72_0 + - beniget=0.4.1=pyhd8ed1ab_0 + - bleach=6.1.0=pyhd8ed1ab_0 + - cached-property=1.5.2=hd8ed1ab_1 + - cctools_osx-arm64=973.0.1=h2a25c60_15 + - cffi=1.16.0=py310hdcd7c05_0 + - clang-15=15.0.7=default_hd209bcb_4 + - cmake=3.26.4=hc0af03a_0 + - comm=0.1.4=pyhd8ed1ab_0 + - cppy=1.2.1=pyhd8ed1ab_0 + - curl=8.1.2=h912dcd9_0 + - cypari2=2.1.3=py310h13936bf_2 + - deprecation=2.1.0=pyh9f0ad1d_0 + - fonttools=4.47.0=py310hd125d64_0 + - harfbuzz=6.0.0=hddbc195_0 + - importlib-metadata=7.0.0=pyha770c72_0 + - importlib_resources=6.1.1=pyhd8ed1ab_0 + - jedi=0.19.1=pyhd8ed1ab_0 + - jinja2=3.1.2=pyhd8ed1ab_1 + - jupyter_core=5.5.1=py310hbe9552e_0 + - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 + - ld64=609=h89fa09d_15 + - libcblas=3.9.0=20_osxarm64_openblas + - liblapack=3.9.0=20_osxarm64_openblas + - matplotlib-inline=0.1.6=pyhd8ed1ab_0 + - memory-allocator=0.1.3=py310h2aa6e3c_0 + - overrides=7.4.0=pyhd8ed1ab_0 + - pexpect=4.8.0=pyh1a96a4e_2 + - pip=23.3.2=pyhd8ed1ab_0 + - pplpy=0.8.9=py310hab1f656_0 + - primecountpy=0.1.0=py310h38f39d4_4 + - prompt-toolkit=3.0.42=pyha770c72_0 + - pybind11=2.11.1=py310h38f39d4_2 + - pyobjc-core=10.1=py310hb3aa912_0 + - pyproject-api=1.6.1=pyhd8ed1ab_0 + - python-dateutil=2.8.2=pyhd8ed1ab_0 + - pytz-deprecation-shim=0.1.0.post0=py310hbe9552e_4 + - referencing=0.32.0=pyhd8ed1ab_0 + - rfc3339-validator=0.1.4=pyhd8ed1ab_0 + - sympy=1.12=pypyh9d50eac_103 + - terminado=0.18.0=pyh31c8845_0 + - tinycss2=1.2.1=pyhd8ed1ab_0 + - typing-extensions=4.9.0=hd8ed1ab_0 + - urllib3=2.1.0=pyhd8ed1ab_0 + - virtualenv=20.25.0=pyhd8ed1ab_0 + - argon2-cffi-bindings=21.2.0=py310h2aa6e3c_4 + - arpack=3.7.0=h58ebc17_2 + - arrow=1.3.0=pyhd8ed1ab_0 + - cctools=973.0.1=hd1ac623_15 + - clang=15.0.7=haab561b_4 + - dsdp=5.8=h9397a75_1203 + - fflas-ffpack=2.4.3=h11f2abc_2 + - fqdn=1.5.1=pyhd8ed1ab_0 + - gsl=2.7=h6e638da_0 + - hatchling=1.21.0=pyhd8ed1ab_0 + - iml=1.0.5=hd52f0d1_1003 + - importlib-resources=6.1.1=pyhd8ed1ab_0 + - importlib_metadata=7.0.0=hd8ed1ab_0 + - jsonschema-specifications=2023.11.2=pyhd8ed1ab_0 + - jupyter_server_terminals=0.5.0=pyhd8ed1ab_0 + - liblapacke=3.9.0=20_osxarm64_openblas + - numpy=1.26.2=py310h30ee222_0 + - pango=1.50.14=h6c112b8_0 + - prompt_toolkit=3.0.42=hd8ed1ab_0 + - pyobjc-framework-cocoa=10.1=py310hb3aa912_0 + - requests=2.31.0=pyhd8ed1ab_0 + - setuptools-scm=8.0.4=pyhd8ed1ab_0 + - stack_data=0.6.2=pyhd8ed1ab_0 + - suitesparse=5.10.1=h88be0ae_2 + - argon2-cffi=23.1.0=pyhd8ed1ab_0 + - blas-devel=3.9.0=20_osxarm64_openblas + - clangxx=15.0.7=default_h5c94ee4_4 + - contourpy=1.2.0=py310hd137fd4_0 + - cvxopt=1.3.2=py310hadc6ad6_1 + - fpylll=0.6.0=py310hc79cb59_1 + - giac=1.9.0.21=h1c96721_1 + - igraph=0.9.10=hcec9b84_1 + - ipython=8.18.1=pyh707e725_3 + - isoduration=20.11.0=pyhd8ed1ab_0 + - jsonschema=4.20.0=pyhd8ed1ab_0 + - jupyter_client=8.6.0=pyhd8ed1ab_0 + - linbox=1.6.3=h380be0f_8 + - scipy=1.11.4=py310h2b794db_0 + - send2trash=1.8.2=pyhd1c38e8_0 + - setuptools_scm=8.0.4=hd8ed1ab_0 + - tox=4.11.4=pyhd8ed1ab_0 + - blas=2.120=openblas + - compiler-rt_osx-arm64=15.0.7=h3808999_2 + - ipykernel=6.26.0=pyh3cd1d5f_0 + - ipywidgets=8.1.1=pyhd8ed1ab_0 + - jsonschema-with-format-nongpl=4.20.0=pyhd8ed1ab_0 + - matplotlib-base=3.8.2=py310h9d2df84_0 + - nbformat=5.9.2=pyhd8ed1ab_0 + - rw=0.9=h3422bc3_0 + - compiler-rt=15.0.7=h3808999_2 + - ipympl=0.9.3=pyhd8ed1ab_0 + - jupyter-jsmol=2022.1.0=pyhd8ed1ab_0 + - jupyter_events=0.9.0=pyhd8ed1ab_0 + - matplotlib=3.8.2=py310hb6292c7_0 + - nbclient=0.8.0=pyhd8ed1ab_0 + - clang_impl_osx-arm64=15.0.7=h77e971b_7 + - nbconvert-core=7.13.0=pyhd8ed1ab_0 + - clang_osx-arm64=15.0.7=h54d7cd3_7 + - jupyter_server=2.12.1=pyhd8ed1ab_0 + - nbconvert-pandoc=7.13.0=pyhd8ed1ab_0 + - c-compiler=1.6.0=hd291e01_0 + - clangxx_impl_osx-arm64=15.0.7=h768a7fd_7 + - gfortran_osx-arm64=12.3.0=h57527a5_1 + - jupyter-lsp=2.2.1=pyhd8ed1ab_0 + - jupyterlab_server=2.25.2=pyhd8ed1ab_0 + - nbconvert=7.13.0=pyhd8ed1ab_0 + - notebook-shim=0.2.3=pyhd8ed1ab_0 + - clangxx_osx-arm64=15.0.7=h54d7cd3_7 + - gfortran=12.3.0=h1ca8e4b_1 + - jupyterlab=4.0.9=pyhd8ed1ab_0 + - cxx-compiler=1.6.0=h1995070_0 + - fortran-compiler=1.6.0=h5a50232_0 + - notebook=7.0.6=pyhd8ed1ab_0 + - pythran=0.14.0=py310he53c7d2_1 + - r-base=4.1.3=h9c4d319_6 + - compilers=1.6.0=hce30654_0 + - rpy2=3.5.11=py310r41hf1a086a_0 + - jupyter_sphinx=0.1.4=py_0 + - sphinx-basic-ng=1.0.0b2=pyhd8ed1ab_1 + - furo=2023.9.10=pyhd8ed1ab_0 + - sphinx-copybutton=0.5.2=pyhd8ed1ab_0 + - sphinxcontrib-applehelp=1.0.7=pyhd8ed1ab_0 + - sphinxcontrib-devhelp=1.0.5=pyhd8ed1ab_0 + - sphinxcontrib-htmlhelp=2.0.4=pyhd8ed1ab_0 + - sphinxcontrib-qthelp=1.0.6=pyhd8ed1ab_0 + - sphinx=7.2.6=pyhd8ed1ab_0 + - sphinxcontrib-serializinghtml=1.1.9=pyhd8ed1ab_0 + - sphinxcontrib-websupport=1.2.6=pyhd8ed1ab_0 diff --git a/src/environment-3.10-macos.yml b/src/environment-3.10-macos.yml new file mode 100644 index 00000000000..ba31dab449e --- /dev/null +++ b/src/environment-3.10-macos.yml @@ -0,0 +1,406 @@ +# Generated by conda-lock. +# platform: osx-64 +# input_hash: e6e5d1bfe3ab9c165fc03815724be4801c145386f5a72ab882384f30f7533b97 + +channels: + - conda-forge +dependencies: + - _r-mutex=1.0.1=anacondar_1 + - bc=1.07.1=h0d85af4_0 + - bzip2=1.0.8=h10d778d_5 + - c-ares=1.24.0=h10d778d_0 + - ca-certificates=2023.11.17=h8857fd0_0 + - cliquer=1.22=hbcb3906_0 + - font-ttf-dejavu-sans-mono=2.37=hab24e00_0 + - font-ttf-inconsolata=3.000=h77eed37_0 + - font-ttf-source-code-pro=2.038=h77eed37_0 + - font-ttf-ubuntu=0.83=h77eed37_1 + - fribidi=1.0.10=hbcb3906_0 + - giflib=5.2.1=hb7f2c08_3 + - icu=73.2=hf5e326d_0 + - libatomic_ops=7.6.14=hb7f2c08_0 + - libboost-headers=1.84.0=h694c41f_0 + - libbrotlicommon=1.1.0=h0dc2134_1 + - libcxx=16.0.6=hd57cbcb_0 + - libdeflate=1.19=ha4e1b8e_0 + - libev=4.33=h10d778d_2 + - libexpat=2.5.0=hf0c8a7f_1 + - libffi=3.4.2=h0d85af4_5 + - libgfortran-devel_osx-64=12.3.0=h0b6f5ec_1 + - libiconv=1.17=hd75f5a5_2 + - libjpeg-turbo=3.0.0=h0dc2134_1 + - libsodium=1.0.18=hbcb3906_1 + - libtool=2.4.7=hf0c8a7f_0 + - libuv=1.46.0=h0c2f820_0 + - libwebp-base=1.3.2=h0dc2134_0 + - libzlib=1.2.13=h8a1eda9_5 + - llvm-openmp=17.0.6=hb6ac08f_0 + - m4=1.4.18=haf1e3a3_1001 + - make=4.3=h22f3db7_1 + - mathjax=3.2.2=h694c41f_0 + - nauty=2.8.8=h10d778d_0 + - 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 + - planarity=3.0.0.5=hbcb3906_1002 + - pthread-stubs=0.4=hc929b4f_1001 + - python_abi=3.10=4_cp310 + - rhash=1.4.4=h0dc2134_0 + - sagemath-db-combinatorial-designs=20140630=1 + - sagemath-db-graphs=20210214=hd8ed1ab_0 + - sagemath-db-polytopes=20170220=1 + - three.js=122=hd8ed1ab_2 + - tzdata=2023c=h71feb2d_0 + - xorg-libxau=1.0.11=h0dc2134_0 + - xorg-libxdmcp=1.1.3=h35c211d_0 + - xz=5.2.6=h775f41a_0 + - yaml=0.2.5=h0d85af4_2 + - autoconf=2.71=pl5321hed12c24_1 + - bdw-gc=8.0.6=h940c156_0 + - expat=2.5.0=hf0c8a7f_1 + - fonts-conda-forge=1=0 + - gengetopt=2.23=he49afe7_0 + - gettext=0.21.1=h8a4c099_0 + - gf2x=1.3.0=hb2a7efb_2 + - gmp=6.3.0=h93d8f39_0 + - graphite2=1.3.13=h2e338ed_1001 + - isl=0.25=hb486fe8_0 + - lerc=4.0.0=hb486fe8_0 + - libbraiding=1.2=hf0c8a7f_0 + - libbrotlidec=1.1.0=h0dc2134_1 + - libbrotlienc=1.1.0=h0dc2134_1 + - libgfortran5=13.2.0=h2873a65_1 + - libpng=1.6.39=ha978bb4_0 + - libsqlite=3.44.2=h92b6c6a_0 + - libxcb=1.15=hb7f2c08_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 + - openssl=3.2.0=hd75f5a5_1 + - 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 + - symmetrica=3.0.1=hf0c8a7f_0 + - tapi=1100.0.11=h9ce4665_0 + - tar=1.34=hcb2f6ea_1 + - threejs-sage=122=hd8ed1ab_2 + - tk=8.6.13=h1abcd95_1 + - zeromq=4.3.5=h93d8f39_0 + - zlib=1.2.13=h8a1eda9_5 + - zstd=1.5.5=h829000d_0 + - automake=1.16.5=pl5321h694c41f_0 + - brotli-bin=1.1.0=h0dc2134_1 + - bwidget=1.9.14=h694c41f_1 + - cddlib=1!0.94m=h0f52abe_0 + - ecm=7.0.4=h343d7f2_1002 + - fonts-conda-ecosystem=1=0 + - freetype=2.12.1=h60636b9_2 + - givaro=4.1.1=h0a799c6_3 + - glpk=5.0=h3cb5acd_0 + - jmol=14.32.9=h694c41f_0 + - libboost=1.84.0=h5b2dd29_0 + - 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_1 + - libssh2=1.11.0=hd019ec5_0 + - libtiff=4.6.0=h684deea_2 + - m4ri=20140914=h3f75d11_1005 + - mpfr=4.2.1=h0c69b56_0 + - ntl=11.4.3=h0ab3c2f_1 + - primecount=7.6=ha894c9a_0 + - readline=8.2=h9e318b2_1 + - sigtool=0.1.3=h88f4db0_0 + - tachyon=0.99b6=0 + - texinfo=7.0=pl5321hc47821c_0 + - tktable=2.10=ha166976_5 + - brotli=1.1.0=h0dc2134_1 + - ecl=21.2.1=hd029580_2 + - fftw=3.3.10=nompi_h4fa670e_108 + - fontconfig=2.14.2=h5bb23bf_0 + - gap-core=4.12.2=hc16eb5f_3 + - gfan=0.6.2=hd793b56_1003 + - krb5=1.21.2=hb884880_0 + - lcms2=2.16=ha2f27b4_0 + - ld64_osx-64=609=h0fd476b_15 + - libboost-devel=1.84.0=h7728843_0 + - libbrial=1.2.12=h8d08345_1 + - libclang-cpp15=15.0.7=default_h6b1ee41_4 + - libflint=3.0.1=h5d15de0_ntl_100 + - libopenblas=0.3.25=openmp_hfef2a42_0 + - libwebp=1.3.2=h44782d1_1 + - llvm-tools=15.0.7=he4b1e75_3 + - 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 + - tbb=2021.11.0=he51d815_0 + - alabaster=0.7.13=pyhd8ed1ab_0 + - appdirs=1.4.4=pyh9f0ad1d_0 + - appnope=0.1.3=pyhd8ed1ab_0 + - attrs=23.1.0=pyh71513ae_1 + - boost-cpp=1.84.0=h07eb623_0 + - brial=1.2.12=pyh694c41f_1 + - brotli-python=1.1.0=py310h9e9d8ca_1 + - cached_property=1.5.2=pyha770c72_1 + - cachetools=5.3.2=pyhd8ed1ab_0 + - cairo=1.18.0=h99e66fa_0 + - cctools_osx-64=973.0.1=habff3f6_15 + - certifi=2023.11.17=pyhd8ed1ab_0 + - chardet=5.2.0=py310h2ec42d9_1 + - 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.7=py310h5daac23_0 + - debugpy=1.8.0=py310h9e9d8ca_1 + - decorator=5.1.1=pyhd8ed1ab_0 + - defusedxml=0.7.1=pyhd8ed1ab_0 + - distlib=0.3.8=pyhd8ed1ab_0 + - docutils=0.20.1=py310h2ec42d9_3 + - eclib=20231211=h02435c3_0 + - editables=0.3=pyhd8ed1ab_0 + - entrypoints=0.4=pyhd8ed1ab_0 + - exceptiongroup=1.2.0=pyhd8ed1ab_0 + - executing=2.0.1=pyhd8ed1ab_0 + - filelock=3.13.1=pyhd8ed1ab_0 + - flit-core=3.9.0=pyhd8ed1ab_0 + - fplll=5.4.5=hb7981ad_0 + - gap-defaults=4.12.2=h694c41f_3 + - gast=0.5.4=pyhd8ed1ab_0 + - gfortran_impl_osx-64=12.3.0=h54fd467_1 + - gmpy2=2.1.2=py310hb691cb2_1 + - idna=3.6=pyhd8ed1ab_0 + - imagesize=1.4.1=pyhd8ed1ab_0 + - ipython_genutils=0.2.0=py_1 + - json5=0.9.14=pyhd8ed1ab_0 + - jsonpointer=2.4=py310h2ec42d9_3 + - jupyterlab_widgets=3.0.9=pyhd8ed1ab_0 + - kiwisolver=1.4.5=py310h88cfcbd_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 + - markupsafe=2.1.3=py310h6729b98_1 + - maxima=5.47.0=h2b27fa8_1 + - mistune=3.0.2=pyhd8ed1ab_0 + - mpmath=1.3.0=pyhd8ed1ab_0 + - munkres=1.1.4=pyh9f0ad1d_0 + - nest-asyncio=1.5.8=pyhd8ed1ab_0 + - networkx=3.2.1=pyhd8ed1ab_0 + - openblas=0.3.25=openmp_h6794695_0 + - packaging=23.2=pyhd8ed1ab_0 + - pandocfilters=1.5.0=pyhd8ed1ab_0 + - parso=0.8.3=pyhd8ed1ab_0 + - pathspec=0.12.1=pyhd8ed1ab_0 + - pickleshare=0.7.5=py_1003 + - pillow=10.1.0=py310he65384d_0 + - pkgconfig=1.5.5=pyhd8ed1ab_4 + - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 + - platformdirs=4.1.0=pyhd8ed1ab_0 + - pluggy=1.3.0=pyhd8ed1ab_0 + - ply=3.11=py_1 + - prometheus_client=0.19.0=pyhd8ed1ab_0 + - psutil=5.9.7=py310hb372a2b_0 + - ptyprocess=0.7.0=pyhd3deb0d_0 + - pure_eval=0.2.2=pyhd8ed1ab_0 + - py=1.11.0=pyh6c4a22f_0 + - pybind11-global=2.11.1=py310h88cfcbd_2 + - pycparser=2.21=pyhd8ed1ab_0 + - pygments=2.17.2=pyhd8ed1ab_0 + - pyparsing=3.1.1=pyhd8ed1ab_0 + - pyrsistent=0.20.0=py310hb372a2b_0 + - pysocks=1.7.1=pyha2e5f31_6 + - python-fastjsonschema=2.19.0=pyhd8ed1ab_0 + - python-json-logger=2.0.7=pyhd8ed1ab_0 + - python-lrcalc=2.1=py310h7a76584_5 + - python-tzdata=2023.3=pyhd8ed1ab_0 + - pytz=2023.3.post1=pyhd8ed1ab_0 + - pyyaml=6.0.1=py310h6729b98_1 + - pyzmq=25.1.2=py310h6b67f7f_0 + - rfc3986-validator=0.1.1=pyh9f0ad1d_0 + - rpds-py=0.15.2=py310h0e083fb_0 + - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 + - sagetex=3.6.1=pyhd8ed1ab_0 + - setuptools=68.2.2=pyhd8ed1ab_0 + - simplegeneric=0.8.1=py_1 + - singular=4.3.2.p8=h0d51a9f_1 + - six=1.16.0=pyh6c4a22f_0 + - sniffio=1.3.0=pyhd8ed1ab_0 + - snowballstemmer=2.2.0=pyhd8ed1ab_0 + - soupsieve=2.5=pyhd8ed1ab_1 + - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_0 + - sympow=2.023.6=h115ba6a_3 + - tomli=2.0.1=pyhd8ed1ab_0 + - tornado=6.3.3=py310h6729b98_1 + - traitlets=5.14.0=pyhd8ed1ab_0 + - trove-classifiers=2023.11.29=pyhd8ed1ab_0 + - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 + - typing_extensions=4.9.0=pyha770c72_0 + - typing_utils=0.1.0=pyhd8ed1ab_0 + - tzlocal=5.2=py310h2ec42d9_0 + - unicodedata2=15.1.0=py310h6729b98_0 + - uri-template=1.3.0=pyhd8ed1ab_0 + - wcwidth=0.2.12=pyhd8ed1ab_0 + - webcolors=1.13=pyhd8ed1ab_0 + - webencodings=0.5.1=pyhd8ed1ab_2 + - websocket-client=1.7.0=pyhd8ed1ab_0 + - wheel=0.42.0=pyhd8ed1ab_0 + - widgetsnbextension=4.0.9=pyhd8ed1ab_0 + - zipp=3.17.0=pyhd8ed1ab_0 + - anyio=4.2.0=pyhd8ed1ab_0 + - asttokens=2.4.1=pyhd8ed1ab_0 + - async-lru=2.0.4=pyhd8ed1ab_0 + - babel=2.14.0=pyhd8ed1ab_0 + - beautifulsoup4=4.12.2=pyha770c72_0 + - beniget=0.4.1=pyhd8ed1ab_0 + - bleach=6.1.0=pyhd8ed1ab_0 + - cached-property=1.5.2=hd8ed1ab_1 + - cctools=973.0.1=hd9ad811_15 + - cffi=1.16.0=py310hdca579f_0 + - clang=15.0.7=hac416ee_4 + - cmake=3.28.1=h7c85d92_0 + - comm=0.1.4=pyhd8ed1ab_0 + - cppy=1.2.1=pyhd8ed1ab_0 + - curl=8.5.0=h726d00d_0 + - cypari2=2.1.3=py310hb5d31c9_2 + - deprecation=2.1.0=pyh9f0ad1d_0 + - fonttools=4.47.0=py310hb372a2b_0 + - harfbuzz=8.3.0=hf45c392_0 + - importlib-metadata=7.0.0=pyha770c72_0 + - importlib_resources=6.1.1=pyhd8ed1ab_0 + - jedi=0.19.1=pyhd8ed1ab_0 + - jinja2=3.1.2=pyhd8ed1ab_1 + - jupyter_core=5.5.1=py310h2ec42d9_0 + - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 + - libcblas=3.9.0=20_osx64_openblas + - liblapack=3.9.0=20_osx64_openblas + - matplotlib-inline=0.1.6=pyhd8ed1ab_0 + - memory-allocator=0.1.3=py310h6729b98_0 + - overrides=7.4.0=pyhd8ed1ab_0 + - pexpect=4.8.0=pyh1a96a4e_2 + - pip=23.3.2=pyhd8ed1ab_0 + - pplpy=0.8.9=py310hd89f7aa_0 + - primecountpy=0.1.0=py310h88cfcbd_4 + - prompt-toolkit=3.0.42=pyha770c72_0 + - pybind11=2.11.1=py310h88cfcbd_2 + - pyobjc-core=10.1=py310h3674b6a_0 + - pyproject-api=1.6.1=pyhd8ed1ab_0 + - python-dateutil=2.8.2=pyhd8ed1ab_0 + - pytz-deprecation-shim=0.1.0.post0=py310h2ec42d9_4 + - referencing=0.32.0=pyhd8ed1ab_0 + - rfc3339-validator=0.1.4=pyhd8ed1ab_0 + - sympy=1.12=pypyh9d50eac_103 + - terminado=0.18.0=pyh31c8845_0 + - tinycss2=1.2.1=pyhd8ed1ab_0 + - typing-extensions=4.9.0=hd8ed1ab_0 + - urllib3=2.1.0=pyhd8ed1ab_0 + - virtualenv=20.25.0=pyhd8ed1ab_0 + - argon2-cffi-bindings=21.2.0=py310h6729b98_4 + - 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 + - fflas-ffpack=2.4.3=h026fd7e_2 + - fqdn=1.5.1=pyhd8ed1ab_0 + - gsl=2.7=h93259b0_0 + - hatchling=1.21.0=pyhd8ed1ab_0 + - iml=1.0.5=h64b42ca_1003 + - importlib-resources=6.1.1=pyhd8ed1ab_0 + - importlib_metadata=7.0.0=hd8ed1ab_0 + - jsonschema-specifications=2023.11.2=pyhd8ed1ab_0 + - jupyter_server_terminals=0.5.0=pyhd8ed1ab_0 + - liblapacke=3.9.0=20_osx64_openblas + - numpy=1.26.2=py310h2a7ecf2_0 + - pango=1.50.14=h19c1c8a_2 + - prompt_toolkit=3.0.42=hd8ed1ab_0 + - pyobjc-framework-cocoa=10.1=py310h3674b6a_0 + - requests=2.31.0=pyhd8ed1ab_0 + - setuptools-scm=8.0.4=pyhd8ed1ab_0 + - stack_data=0.6.2=pyhd8ed1ab_0 + - suitesparse=5.10.1=h0a40b7c_2 + - argon2-cffi=23.1.0=pyhd8ed1ab_0 + - blas-devel=3.9.0=20_osx64_openblas + - compiler-rt_osx-64=15.0.7=ha38d28d_2 + - contourpy=1.2.0=py310ha697434_0 + - 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 + - jupyter_client=8.6.0=pyhd8ed1ab_0 + - linbox=1.6.3=hfb9b24e_8 + - scipy=1.11.4=py310h3f1db6d_0 + - send2trash=1.8.2=pyhd1c38e8_0 + - setuptools_scm=8.0.4=hd8ed1ab_0 + - tox=4.11.4=pyhd8ed1ab_0 + - blas=2.120=openblas + - compiler-rt=15.0.7=ha38d28d_2 + - ipykernel=6.26.0=pyh3cd1d5f_0 + - ipywidgets=8.1.1=pyhd8ed1ab_0 + - jsonschema-with-format-nongpl=4.20.0=pyhd8ed1ab_0 + - matplotlib-base=3.8.2=py310hec49e92_0 + - nbformat=5.9.2=pyhd8ed1ab_0 + - rw=0.9=h10d778d_1 + - clang_impl_osx-64=15.0.7=h03d6864_7 + - ipympl=0.9.3=pyhd8ed1ab_0 + - jupyter-jsmol=2022.1.0=pyhd8ed1ab_0 + - jupyter_events=0.9.0=pyhd8ed1ab_0 + - matplotlib=3.8.2=py310h2ec42d9_0 + - nbclient=0.8.0=pyhd8ed1ab_0 + - clang_osx-64=15.0.7=hb91bd55_7 + - nbconvert-core=7.13.0=pyhd8ed1ab_0 + - c-compiler=1.6.0=h63c33a9_0 + - clangxx_impl_osx-64=15.0.7=h2133e9c_7 + - gfortran_osx-64=12.3.0=h18f7dce_1 + - jupyter_server=2.12.1=pyhd8ed1ab_0 + - nbconvert-pandoc=7.13.0=pyhd8ed1ab_0 + - clangxx_osx-64=15.0.7=hb91bd55_7 + - gfortran=12.3.0=h2c809b3_1 + - jupyter-lsp=2.2.1=pyhd8ed1ab_0 + - jupyterlab_server=2.25.2=pyhd8ed1ab_0 + - nbconvert=7.13.0=pyhd8ed1ab_0 + - notebook-shim=0.2.3=pyhd8ed1ab_0 + - cxx-compiler=1.6.0=h1c7c39f_0 + - fortran-compiler=1.6.0=h932d759_0 + - jupyterlab=4.0.9=pyhd8ed1ab_0 + - pythran=0.14.0=py310h92ebccd_1 + - r-base=4.3.1=h0ff45fa_6 + - compilers=1.6.0=h694c41f_0 + - notebook=7.0.6=pyhd8ed1ab_0 + - rpy2=3.5.11=py310r43hf0b6da5_3 + - jupyter_sphinx=0.4.0=py310h2ec42d9_1 + - sphinx-basic-ng=1.0.0b2=pyhd8ed1ab_1 + - furo=2023.9.10=pyhd8ed1ab_0 + - sphinx-copybutton=0.5.2=pyhd8ed1ab_0 + - sphinxcontrib-applehelp=1.0.7=pyhd8ed1ab_0 + - sphinxcontrib-devhelp=1.0.5=pyhd8ed1ab_0 + - sphinxcontrib-htmlhelp=2.0.4=pyhd8ed1ab_0 + - sphinxcontrib-qthelp=1.0.6=pyhd8ed1ab_0 + - sphinx=7.2.6=pyhd8ed1ab_0 + - sphinxcontrib-serializinghtml=1.1.9=pyhd8ed1ab_0 + - sphinxcontrib-websupport=1.2.6=pyhd8ed1ab_0 diff --git a/src/environment-3.11-linux-aarch64.yml b/src/environment-3.11-linux-aarch64.yml new file mode 100644 index 00000000000..101a7edffe6 --- /dev/null +++ b/src/environment-3.11-linux-aarch64.yml @@ -0,0 +1,421 @@ +# Generated by conda-lock. +# platform: linux-aarch64 +# input_hash: 604427f3523e85bc5343bdac8f3896ee77249f97d2a74dc7b3c903c17e8a87a7 + +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.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_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.24.0=h31becfc_0 + - cliquer=1.22=hb9de7d4_0 + - fribidi=1.0.10=hb9de7d4_0 + - gengetopt=2.23=h01db608_0 + - gettext=0.21.1=ha18d298_0 + - gf2x=1.3.0=h1b3b3a3_2 + - giflib=5.2.1=hb4cce97_3 + - gmp=6.3.0=h2f0025b_0 + - graphite2=1.3.13=h7fd3ca4_1001 + - icu=70.1=ha18d298_0 + - jpeg=9e=h2a766a3_3 + - keyutils=1.6.1=h4e544f5_0 + - lerc=4.0.0=h4de3ea5_0 + - libatomic_ops=7.6.14=h4e544f5_0 + - libbraiding=1.2=hd600fc2_0 + - libbrotlicommon=1.1.0=h31becfc_1 + - libdeflate=1.17=hb4cce97_0 + - 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=h31becfc_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 + - 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.8.8=h31becfc_0 + - ncurses=6.4=h0425590_2 + - ninja=1.11.1=hdd96247_0 + - openssl=3.2.0=h31becfc_1 + - palp=2.20=hb9de7d4_0 + - patch=2.7.6=hf897c2e_1002 + - pixman=0.42.2=h2f0025b_0 + - pkg-config=0.29.2=hb9de7d4_1008 + - planarity=3.0.0.5=hb9de7d4_1002 + - primesieve=11.1=h2f0025b_0 + - pthread-stubs=0.4=hb9de7d4_1001 + - qhull=2020.2=hd62202e_2 + - rhash=1.4.3=h31becfc_2 + - sed=4.8=ha0d5d3d_0 + - symmetrica=3.0.1=hd600fc2_0 + - xorg-inputproto=2.3.2=h3557bc0_1002 + - xorg-kbproto=1.0.7=h3557bc0_1002 + - xorg-libice=1.0.10=h3557bc0_0 + - xorg-libxau=1.0.11=h31becfc_0 + - xorg-libxdmcp=1.1.3=h3557bc0_0 + - xorg-recordproto=1.14.2=hf897c2e_1002 + - xorg-renderproto=0.11.1=h3557bc0_1002 + - xorg-xextproto=7.3.0=h2a766a3_1003 + - xorg-xproto=7.0.31=h3557bc0_1007 + - xz=5.2.6=h9cdd2b7_0 + - yaml=0.2.5=hf897c2e_2 + - cddlib=1!0.94m=h719063d_0 + - ecm=7.0.4=h719063d_1002 + - expat=2.5.0=hd600fc2_1 + - gcc_impl_linux-aarch64=12.3.0=hcde2664_3 + - 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_1 + - 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.9=hd600fc2_0 + - readline=8.2=h8fc344f_1 + - tar=1.34=h048efde_0 + - tk=8.6.13=h194ca79_0 + - xorg-fixesproto=5.0=h3557bc0_1002 + - xorg-libsm=1.2.3=h965e137_1000 + - zeromq=4.3.5=h2f0025b_0 + - zlib=1.2.13=h31becfc_5 + - zstd=1.5.5=h4c53e97_0 + - autoconf=2.71=pl5321h2148fe1_1 + - boost-cpp=1.81.0=h07c2bc3_0 + - brotli-bin=1.1.0=h31becfc_1 + - bwidget=1.9.14=h8af1aa0_1 + - ecl=21.2.1=haa44c19_2 + - fftw=3.3.10=nompi_h2dcef8e_108 + - freetype=2.12.1=hf0a5ef3_2 + - gap-core=4.12.2=h597289e_3 + - gcc=12.3.0=hc1b51f9_2 + - gcc_linux-aarch64=12.3.0=h464a8f7_2 + - gfan=0.6.2=h5f589ec_1003 + - gfortran_impl_linux-aarch64=12.3.0=hb7244be_3 + - gxx_impl_linux-aarch64=12.3.0=hcde2664_3 + - krb5=1.20.1=h113d92e_0 + - 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 + - llvm-openmp=17.0.6=h8b0cb96_0 + - m4ri=20140914=h75e8696_1005 + - mpc=1.3.1=hf4c8f4c_0 + - mpfi=1.5.4=h846f343_1001 + - pari=2.15.4=h169c2a7_2_pthread + - ppl=1.2=h984aac9_1006 + - python=3.11.7=h43d1f9e_0_cpython + - qd=2.3.22=h05efe27_1004 + - sqlite=3.44.2=h3b3482f_0 + - tachyon=0.99b6=h63ab1d9_1001 + - texinfo=7.0=pl5321h17f021e_0 + - tktable=2.10=h4f9ca69_5 + - xorg-libx11=1.8.4=h2a766a3_0 + - alabaster=0.7.13=pyhd8ed1ab_0 + - appdirs=1.4.4=pyh9f0ad1d_0 + - appnope=0.1.3=pyhd8ed1ab_0 + - attrs=23.1.0=pyh71513ae_1 + - automake=1.16.5=pl5321h8af1aa0_0 + - brotli=1.1.0=h31becfc_1 + - brotli-python=1.1.0=py311h8715677_1 + - c-compiler=1.6.0=h31becfc_0 + - cached_property=1.5.2=pyha770c72_1 + - cachetools=5.3.2=pyhd8ed1ab_0 + - certifi=2023.11.17=pyhd8ed1ab_0 + - chardet=5.2.0=py311hfecb2dc_1 + - 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.7=py311h8715677_0 + - debugpy=1.8.0=py311h8715677_1 + - decorator=5.1.1=pyhd8ed1ab_0 + - defusedxml=0.7.1=pyhd8ed1ab_0 + - distlib=0.3.8=pyhd8ed1ab_0 + - docutils=0.20.1=py311hfecb2dc_3 + - eclib=20231211=he26bab5_0 + - editables=0.3=pyhd8ed1ab_0 + - entrypoints=0.4=pyhd8ed1ab_0 + - exceptiongroup=1.2.0=pyhd8ed1ab_0 + - executing=2.0.1=pyhd8ed1ab_0 + - filelock=3.13.1=pyhd8ed1ab_0 + - flit-core=3.9.0=pyhd8ed1ab_0 + - fontconfig=2.14.2=ha9a116f_0 + - fplll=5.4.5=hb3a790e_0 + - gap-defaults=4.12.2=h8af1aa0_3 + - gast=0.5.4=pyhd8ed1ab_0 + - gfortran=12.3.0=h8d4031d_2 + - gfortran_linux-aarch64=12.3.0=h1993883_2 + - gmpy2=2.1.2=py311h00bc151_1 + - gxx=12.3.0=hc1b51f9_2 + - gxx_linux-aarch64=12.3.0=h21accf6_2 + - idna=3.6=pyhd8ed1ab_0 + - imagesize=1.4.1=pyhd8ed1ab_0 + - ipython_genutils=0.2.0=py_1 + - json5=0.9.14=pyhd8ed1ab_0 + - jsonpointer=2.4=py311hec3470c_3 + - jupyterlab_widgets=3.0.9=pyhd8ed1ab_0 + - kiwisolver=1.4.5=py311h0d5d7b0_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=py311hc8f2f60_1 + - maxima=5.47.0=h6475f26_1 + - mistune=3.0.2=pyhd8ed1ab_0 + - mpmath=1.3.0=pyhd8ed1ab_0 + - munkres=1.1.4=pyh9f0ad1d_0 + - nest-asyncio=1.5.8=pyhd8ed1ab_0 + - 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.12.1=pyhd8ed1ab_0 + - pickleshare=0.7.5=py_1003 + - pkgconfig=1.5.5=pyhd8ed1ab_4 + - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 + - platformdirs=4.1.0=pyhd8ed1ab_0 + - pluggy=1.3.0=pyhd8ed1ab_0 + - ply=3.11=py_1 + - prometheus_client=0.19.0=pyhd8ed1ab_0 + - psutil=5.9.7=py311hcd402e7_0 + - ptyprocess=0.7.0=pyhd3deb0d_0 + - pure_eval=0.2.2=pyhd8ed1ab_0 + - py=1.11.0=pyh6c4a22f_0 + - pybind11-global=2.11.1=py311h098ece5_2 + - pycparser=2.21=pyhd8ed1ab_0 + - pygments=2.17.2=pyhd8ed1ab_0 + - pyparsing=3.1.1=pyhd8ed1ab_0 + - pyrsistent=0.20.0=py311hc8f2f60_0 + - pysocks=1.7.1=pyha2e5f31_6 + - python-fastjsonschema=2.19.0=pyhd8ed1ab_0 + - python-json-logger=2.0.7=pyhd8ed1ab_0 + - python-lrcalc=2.1=py311h5a24a75_5 + - python-tzdata=2023.3=pyhd8ed1ab_0 + - pytz=2023.3.post1=pyhd8ed1ab_0 + - pyyaml=6.0.1=py311hcd402e7_1 + - pyzmq=25.1.2=py311h0fdcd05_0 + - rfc3986-validator=0.1.1=pyh9f0ad1d_0 + - rpds-py=0.15.2=py311h32437ce_0 + - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 + - sagetex=3.6.1=pyhd8ed1ab_0 + - send2trash=1.8.2=pyh41d4057_0 + - setuptools=68.2.2=pyhd8ed1ab_0 + - simplegeneric=0.8.1=py_1 + - singular=4.3.2.p8=hbe76a8a_1 + - six=1.16.0=pyh6c4a22f_0 + - sniffio=1.3.0=pyhd8ed1ab_0 + - snowballstemmer=2.2.0=pyhd8ed1ab_0 + - soupsieve=2.5=pyhd8ed1ab_1 + - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_0 + - sympow=2.023.6=h157afb5_3 + - tbb=2021.9.0=h4c384f3_0 + - tomli=2.0.1=pyhd8ed1ab_0 + - tornado=6.3.3=py311hc8f2f60_1 + - traitlets=5.14.0=pyhd8ed1ab_0 + - trove-classifiers=2023.11.29=pyhd8ed1ab_0 + - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 + - typing_extensions=4.9.0=pyha770c72_0 + - typing_utils=0.1.0=pyhd8ed1ab_0 + - tzlocal=5.2=py311hec3470c_0 + - uri-template=1.3.0=pyhd8ed1ab_0 + - wcwidth=0.2.12=pyhd8ed1ab_0 + - webcolors=1.13=pyhd8ed1ab_0 + - webencodings=0.5.1=pyhd8ed1ab_2 + - websocket-client=1.7.0=pyhd8ed1ab_0 + - 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.2.0=pyhd8ed1ab_0 + - asttokens=2.4.1=pyhd8ed1ab_0 + - async-lru=2.0.4=pyhd8ed1ab_0 + - babel=2.14.0=pyhd8ed1ab_0 + - beautifulsoup4=4.12.2=pyha770c72_0 + - beniget=0.4.1=pyhd8ed1ab_0 + - bleach=6.1.0=pyhd8ed1ab_0 + - 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.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.1=py311hec3470c_0 + - 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=py311hcd402e7_0 + - overrides=7.4.0=pyhd8ed1ab_0 + - pexpect=4.8.0=pyh1a96a4e_2 + - pillow=9.4.0=py311hf18358d_1 + - pip=23.3.2=pyhd8ed1ab_0 + - pplpy=0.8.9=py311haefeb0b_0 + - primecountpy=0.1.0=py311h098ece5_4 + - prompt-toolkit=3.0.42=pyha770c72_0 + - pybind11=2.11.1=py311h098ece5_2 + - pyproject-api=1.6.1=pyhd8ed1ab_0 + - python-dateutil=2.8.2=pyhd8ed1ab_0 + - pytz-deprecation-shim=0.1.0.post0=py311hec3470c_4 + - referencing=0.32.0=pyhd8ed1ab_0 + - rfc3339-validator=0.1.4=pyhd8ed1ab_0 + - sympy=1.12=pypyh9d50eac_103 + - terminado=0.18.0=pyh0d859eb_0 + - tinycss2=1.2.1=pyhd8ed1ab_0 + - typing-extensions=4.9.0=hd8ed1ab_0 + - urllib3=2.1.0=pyhd8ed1ab_0 + - virtualenv=20.25.0=pyhd8ed1ab_0 + - xorg-libxi=1.7.10=h3557bc0_0 + - argon2-cffi-bindings=21.2.0=py311hcd402e7_4 + - arpack=3.7.0=hf862f49_2 + - arrow=1.3.0=pyhd8ed1ab_0 + - compilers=1.6.0=h8af1aa0_0 + - dsdp=5.8=hb12102e_1203 + - fflas-ffpack=2.4.3=hf104d39_2 + - fqdn=1.5.1=pyhd8ed1ab_0 + - gsl=2.7=h294027d_0 + - harfbuzz=6.0.0=hbcb8a4f_0 + - hatchling=1.21.0=pyhd8ed1ab_0 + - iml=1.0.5=h9076c59_1003 + - importlib-resources=6.1.1=pyhd8ed1ab_0 + - importlib_metadata=7.0.0=hd8ed1ab_0 + - jsonschema-specifications=2023.11.2=pyhd8ed1ab_0 + - jupyter_server_terminals=0.5.0=pyhd8ed1ab_0 + - liblapacke=3.9.0=20_linuxaarch64_openblas + - numpy=1.26.2=py311h69ead2a_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 + - suitesparse=5.10.1=h1404dd6_1 + - xorg-libxtst=1.2.3=hf897c2e_1002 + - argon2-cffi=23.1.0=pyhd8ed1ab_0 + - blas-devel=3.9.0=20_linuxaarch64_openblas + - contourpy=1.2.0=py311h098ece5_0 + - cvxopt=1.3.2=py311hd9cfd3c_1 + - fpylll=0.6.0=py311h5d3d69a_1 + - giac=1.9.0.21=h04922a4_1 + - igraph=0.9.10=hefb87a8_1 + - ipython=8.18.1=pyh707e725_3 + - isoduration=20.11.0=pyhd8ed1ab_0 + - jsonschema=4.20.0=pyhd8ed1ab_0 + - jupyter_client=8.6.0=pyhd8ed1ab_0 + - linbox=1.6.3=h681a5ee_8 + - openjdk=17.0.3=h1a274e0_5 + - pango=1.50.14=h1f1e9b3_0 + - pythran=0.14.0=py311hec5c23b_1 + - scipy=1.11.3=py311h69ead2a_1 + - setuptools_scm=8.0.4=hd8ed1ab_0 + - tox=4.11.4=pyhd8ed1ab_0 + - blas=2.120=openblas + - ipykernel=6.26.0=pyhf8b6a83_0 + - ipywidgets=8.1.1=pyhd8ed1ab_0 + - jmol=14.32.10=h8af1aa0_0 + - jsonschema-with-format-nongpl=4.20.0=pyhd8ed1ab_0 + - matplotlib-base=3.8.2=py311h1f11223_0 + - nbformat=5.9.2=pyhd8ed1ab_0 + - r-base=4.2.3=h620ca72_0 + - rw=0.9=hf897c2e_0 + - ipympl=0.9.3=pyhd8ed1ab_0 + - jupyter-jsmol=2022.1.0=pyhd8ed1ab_0 + - jupyter_events=0.9.0=pyhd8ed1ab_0 + - matplotlib=3.8.2=py311hfecb2dc_0 + - nbclient=0.8.0=pyhd8ed1ab_0 + - rpy2=3.5.11=py311r42hf13da56_3 + - nbconvert-core=7.13.0=pyhd8ed1ab_0 + - jupyter_server=2.12.1=pyhd8ed1ab_0 + - nbconvert-pandoc=7.13.0=pyhd8ed1ab_0 + - jupyter-lsp=2.2.1=pyhd8ed1ab_0 + - jupyterlab_server=2.25.2=pyhd8ed1ab_0 + - nbconvert=7.13.0=pyhd8ed1ab_0 + - notebook-shim=0.2.3=pyhd8ed1ab_0 + - jupyterlab=4.0.9=pyhd8ed1ab_0 + - notebook=7.0.6=pyhd8ed1ab_0 + - jupyter_sphinx=0.1.4=py_0 + - sphinx-basic-ng=1.0.0b2=pyhd8ed1ab_1 + - furo=2023.9.10=pyhd8ed1ab_0 + - sphinx-copybutton=0.5.2=pyhd8ed1ab_0 + - sphinxcontrib-applehelp=1.0.7=pyhd8ed1ab_0 + - sphinxcontrib-devhelp=1.0.5=pyhd8ed1ab_0 + - sphinxcontrib-htmlhelp=2.0.4=pyhd8ed1ab_0 + - sphinxcontrib-qthelp=1.0.6=pyhd8ed1ab_0 + - sphinx=7.2.6=pyhd8ed1ab_0 + - sphinxcontrib-serializinghtml=1.1.9=pyhd8ed1ab_0 + - sphinxcontrib-websupport=1.2.6=pyhd8ed1ab_0 diff --git a/src/environment-3.11-linux.yml b/src/environment-3.11-linux.yml new file mode 100644 index 00000000000..8439b8e51db --- /dev/null +++ b/src/environment-3.11-linux.yml @@ -0,0 +1,465 @@ +# Generated by conda-lock. +# platform: linux-64 +# input_hash: 2da5e7dc39e4644a879a6fd9cae901f97edb089ebc2180eb33f7e9294fc0f0d5 + +channels: + - conda-forge +dependencies: + - _libgcc_mutex=0.1=conda_forge + - _r-mutex=1.0.1=anacondar_1 + - 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=h77eed37_1 + - kernel-headers_linux-64=2.6.32=he073ed8_16 + - ld_impl_linux-64=2.40=h41732ed_0 + - libboost-headers=1.84.0=ha770c72_0 + - libgcc-devel_linux-64=12.3.0=h8bca6fd_103 + - libstdcxx-devel_linux-64=12.3.0=h8bca6fd_103 + - libstdcxx-ng=13.2.0=h7e041cc_3 + - mathjax=3.2.2=ha770c72_0 + - 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 + - libgomp=13.2.0=h807b86a_3 + - 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_2 + - _openmp_mutex=4.5=2_kmp_llvm + - libgcc-ng=13.2.0=h807b86a_3 + - alsa-lib=1.2.10=hd590300_0 + - attr=2.5.1=h166bdaf_1 + - bc=1.07.1=h7f98852_0 + - bdw-gc=8.0.6=h4bd325d_0 + - bzip2=1.0.8=hd590300_5 + - c-ares=1.24.0=hd590300_0 + - cliquer=1.22=h36c2ea0_0 + - fribidi=1.0.10=h36c2ea0_0 + - gengetopt=2.23=h9c3ff4c_0 + - gettext=0.21.1=h27087fc_0 + - gf2x=1.3.0=ha476b99_2 + - giflib=5.2.1=h0b41bf4_3 + - gmp=6.3.0=h59595ed_0 + - graphite2=1.3.13=h58526e2_1001 + - icu=73.2=h59595ed_0 + - keyutils=1.6.1=h166bdaf_0 + - lame=3.100=h166bdaf_1003 + - lerc=4.0.0=h27087fc_0 + - libatomic_ops=7.6.14=h166bdaf_0 + - libbraiding=1.2=hcb278e6_0 + - libbrotlicommon=1.1.0=hd590300_1 + - libdeflate=1.19=hd590300_0 + - libev=4.33=hd590300_2 + - libexpat=2.5.0=hcb278e6_1 + - libffi=3.4.2=h7f98852_5 + - libgfortran5=13.2.0=ha4646dd_3 + - libiconv=1.17=hd590300_2 + - libjpeg-turbo=3.0.0=hd590300_1 + - libnsl=2.0.1=hd590300_0 + - libogg=1.3.4=h7f98852_1 + - libopus=1.3.1=h7f98852_1 + - libsanitizer=12.3.0=h0f45ef3_3 + - libsodium=1.0.18=h36c2ea0_1 + - libtool=2.4.7=h27087fc_0 + - libuuid=2.38.1=h0b41bf4_0 + - libuv=1.46.0=hd590300_0 + - libwebp-base=1.3.2=hd590300_0 + - libzlib=1.2.13=hd590300_5 + - lrcalc=2.1=h27087fc_5 + - lz4-c=1.9.4=hcb278e6_0 + - m4=1.4.18=h516909a_1001 + - make=4.3=hd18ef5c_1 + - metis=5.1.1=h59595ed_2 + - mpg123=1.32.3=h59595ed_0 + - nauty=2.8.8=hd590300_0 + - ncurses=6.4=h59595ed_2 + - ninja=1.11.1=h924138e_0 + - nspr=4.35=h27087fc_0 + - openssl=3.2.0=hd590300_1 + - palp=2.20=h36c2ea0_0 + - patch=2.7.6=h7f98852_1002 + - pixman=0.42.2=h59595ed_0 + - pkg-config=0.29.2=h36c2ea0_1008 + - planarity=3.0.0.5=h36c2ea0_1002 + - primesieve=11.1=h59595ed_0 + - pthread-stubs=0.4=h36c2ea0_1001 + - qhull=2020.2=h4bd325d_2 + - rhash=1.4.4=hd590300_0 + - sed=4.8=he412f7d_0 + - symmetrica=3.0.1=hcb278e6_0 + - xorg-inputproto=2.3.2=h7f98852_1002 + - xorg-kbproto=1.0.7=h7f98852_1002 + - xorg-libice=1.1.1=hd590300_0 + - xorg-libxau=1.0.11=hd590300_0 + - xorg-libxdmcp=1.1.3=h7f98852_0 + - xorg-recordproto=1.14.2=h7f98852_1002 + - xorg-renderproto=0.11.1=h7f98852_1002 + - xorg-xextproto=7.3.0=h0b41bf4_1003 + - xorg-xf86vidmodeproto=2.3.1=h7f98852_1002 + - xorg-xproto=7.0.31=h7f98852_1007 + - xz=5.2.6=h166bdaf_0 + - yaml=0.2.5=h7f98852_2 + - cddlib=1!0.94m=h9202a9a_0 + - ecm=7.0.4=h9202a9a_1002 + - expat=2.5.0=hcb278e6_1 + - gcc_impl_linux-64=12.3.0=he2b93b0_3 + - givaro=4.1.1=h192cbe9_1 + - glpk=5.0=h445213a_0 + - libbrotlidec=1.1.0=hd590300_1 + - libbrotlienc=1.1.0=hd590300_1 + - libcap=2.69=h0f662aa_0 + - libedit=3.1.20191231=he28a2e2_2 + - libevent=2.1.12=hf998b51_1 + - libflac=1.4.3=h59595ed_0 + - libgfortran-ng=13.2.0=h69a702a_3 + - libgpg-error=1.47=h71f35ed_0 + - libhomfly=1.02r6=h36c2ea0_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 + - libvorbis=1.3.7=h9c3ff4c_0 + - libxcb=1.15=h0b41bf4_0 + - 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.42=hcad00b1_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.13=noxft_h4845f30_101 + - xorg-fixesproto=5.0=h7f98852_1002 + - xorg-libsm=1.2.4=h7391055_0 + - zeromq=4.3.5=h59595ed_0 + - zlib=1.2.13=hd590300_5 + - zstd=1.5.5=hfc55251_0 + - autoconf=2.71=pl5321h2b4cb7a_1 + - brotli-bin=1.1.0=hd590300_1 + - bwidget=1.9.14=ha770c72_1 + - ecl=21.2.1=h9d73b02_2 + - fftw=3.3.10=nompi_hc118613_108 + - freetype=2.12.1=h267a509_2 + - gap-core=4.12.2=he9a28a4_3 + - gcc=12.3.0=h8d2909c_2 + - gcc_linux-64=12.3.0=h76fc315_2 + - gfan=0.6.2=hb86e20a_1003 + - gfortran_impl_linux-64=12.3.0=hfcedea8_3 + - gxx_impl_linux-64=12.3.0=he2b93b0_3 + - krb5=1.21.2=h659d440_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 + - libhwloc=2.9.3=default_h554bfaf_1009 + - libllvm15=15.0.7=h5cf9203_3 + - libopenblas=0.3.25=pthreads_h413a1c8_0 + - libsndfile=1.2.2=hc60ed4a_1 + - libtiff=4.6.0=ha9c0a0a_2 + - llvm-openmp=17.0.6=h4dfa4b3_0 + - m4ri=20140914=h7ca028e_1005 + - mpc=1.3.1=hfe3b2da_0 + - mpfi=1.5.4=h9f54685_1001 + - mysql-libs=8.0.33=hca2cd23_6 + - nss=3.96=h1d7d5a4_0 + - pandoc=3.1.3=h32600fe_0 + - pari=2.15.4=h4d4ae9b_2_pthread + - ppl=1.2=h6ec01c2_1006 + - python=3.11.7=hab00c5b_0_cpython + - qd=2.3.22=h2cc385e_1004 + - sqlite=3.44.2=h2c6b66d_0 + - tachyon=0.99b6=0 + - texinfo=7.0=pl5321h0f457ee_0 + - tktable=2.10=h0c5db8f_5 + - xcb-util=0.4.0=hd590300_1 + - xcb-util-keysyms=0.4.0=h8ee46fc_1 + - xcb-util-renderutil=0.3.9=hd590300_1 + - xcb-util-wm=0.4.1=h8ee46fc_1 + - xorg-libx11=1.8.7=h8ee46fc_0 + - alabaster=0.7.13=pyhd8ed1ab_0 + - appdirs=1.4.4=pyh9f0ad1d_0 + - appnope=0.1.3=pyhd8ed1ab_0 + - attrs=23.1.0=pyh71513ae_1 + - automake=1.16.5=pl5321ha770c72_0 + - brotli=1.1.0=hd590300_1 + - brotli-python=1.1.0=py311hb755f60_1 + - c-compiler=1.6.0=hd590300_0 + - cached_property=1.5.2=pyha770c72_1 + - cachetools=5.3.2=pyhd8ed1ab_0 + - certifi=2023.11.17=pyhd8ed1ab_0 + - chardet=5.2.0=py311h38be061_1 + - 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.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.8=pyhd8ed1ab_0 + - docutils=0.20.1=py311h38be061_3 + - eclib=20231211=h96f522a_0 + - editables=0.3=pyhd8ed1ab_0 + - entrypoints=0.4=pyhd8ed1ab_0 + - exceptiongroup=1.2.0=pyhd8ed1ab_0 + - executing=2.0.1=pyhd8ed1ab_0 + - filelock=3.13.1=pyhd8ed1ab_0 + - flit-core=3.9.0=pyhd8ed1ab_0 + - fontconfig=2.14.2=h14ed4e7_0 + - fplll=5.4.5=h384768b_0 + - gap-defaults=4.12.2=ha770c72_3 + - gast=0.5.4=pyhd8ed1ab_0 + - gfortran=12.3.0=h499e0f7_2 + - gfortran_linux-64=12.3.0=h7fe76b4_2 + - glib-tools=2.78.3=hfc55251_0 + - gmpy2=2.1.2=py311h6a5fa03_1 + - gxx=12.3.0=h8d2909c_2 + - gxx_linux-64=12.3.0=h8a814eb_2 + - idna=3.6=pyhd8ed1ab_0 + - imagesize=1.4.1=pyhd8ed1ab_0 + - ipython_genutils=0.2.0=py_1 + - json5=0.9.14=pyhd8ed1ab_0 + - jsonpointer=2.4=py311h38be061_3 + - jupyterlab_widgets=3.0.9=pyhd8ed1ab_0 + - kiwisolver=1.4.5=py311h9547e67_1 + - lcalc=2.0.5=h6a8a7c6_1 + - lcms2=2.16=hb7c19ff_0 + - libblas=3.9.0=20_linux64_openblas + - libboost-devel=1.84.0=h00ab1b0_0 + - libbrial=1.2.12=h3155cbd_1 + - libclang13=15.0.7=default_ha2b6cf4_4 + - libcups=2.3.3=h4637d8d_4 + - libcurl=8.5.0=hca28451_0 + - libpq=16.1=h33b98f1_7 + - libsystemd0=255=h3516f8a_0 + - libwebp=1.3.2=h658648e_1 + - m4rie=20150908=h7ca028e_1001 + - markupsafe=2.1.3=py311h459d7ec_1 + - maxima=5.47.0=hed6455c_1 + - mistune=3.0.2=pyhd8ed1ab_0 + - mpmath=1.3.0=pyhd8ed1ab_0 + - munkres=1.1.4=pyh9f0ad1d_0 + - nest-asyncio=1.5.8=pyhd8ed1ab_0 + - networkx=3.2.1=pyhd8ed1ab_0 + - openblas=0.3.25=pthreads_h7a3da1a_0 + - openjpeg=2.5.0=h488ebb8_3 + - packaging=23.2=pyhd8ed1ab_0 + - pandocfilters=1.5.0=pyhd8ed1ab_0 + - parso=0.8.3=pyhd8ed1ab_0 + - pathspec=0.12.1=pyhd8ed1ab_0 + - pickleshare=0.7.5=py_1003 + - pkgconfig=1.5.5=pyhd8ed1ab_4 + - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 + - platformdirs=4.1.0=pyhd8ed1ab_0 + - pluggy=1.3.0=pyhd8ed1ab_0 + - ply=3.11=py_1 + - prometheus_client=0.19.0=pyhd8ed1ab_0 + - psutil=5.9.7=py311h459d7ec_0 + - ptyprocess=0.7.0=pyhd3deb0d_0 + - pure_eval=0.2.2=pyhd8ed1ab_0 + - py=1.11.0=pyh6c4a22f_0 + - pybind11-global=2.11.1=py311h9547e67_2 + - pycparser=2.21=pyhd8ed1ab_0 + - pygments=2.17.2=pyhd8ed1ab_0 + - pyparsing=3.1.1=pyhd8ed1ab_0 + - pyrsistent=0.20.0=py311h459d7ec_0 + - pysocks=1.7.1=pyha2e5f31_6 + - python-fastjsonschema=2.19.0=pyhd8ed1ab_0 + - python-json-logger=2.0.7=pyhd8ed1ab_0 + - python-lrcalc=2.1=py311ha362b79_5 + - python-tzdata=2023.3=pyhd8ed1ab_0 + - pytz=2023.3.post1=pyhd8ed1ab_0 + - pyyaml=6.0.1=py311h459d7ec_1 + - pyzmq=25.1.2=py311h34ded2d_0 + - rfc3986-validator=0.1.1=pyh9f0ad1d_0 + - rpds-py=0.15.2=py311h46250e7_0 + - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 + - sagetex=3.6.1=pyhd8ed1ab_0 + - send2trash=1.8.2=pyh41d4057_0 + - setuptools=68.2.2=pyhd8ed1ab_0 + - simplegeneric=0.8.1=py_1 + - singular=4.3.2.p8=h33f5c3f_1 + - six=1.16.0=pyh6c4a22f_0 + - sniffio=1.3.0=pyhd8ed1ab_0 + - snowballstemmer=2.2.0=pyhd8ed1ab_0 + - soupsieve=2.5=pyhd8ed1ab_1 + - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_0 + - sympow=2.023.6=hc6ab17c_3 + - tbb=2021.11.0=h00ab1b0_0 + - toml=0.10.2=pyhd8ed1ab_0 + - tomli=2.0.1=pyhd8ed1ab_0 + - tornado=6.3.3=py311h459d7ec_1 + - traitlets=5.14.0=pyhd8ed1ab_0 + - trove-classifiers=2023.11.29=pyhd8ed1ab_0 + - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 + - typing_extensions=4.9.0=pyha770c72_0 + - typing_utils=0.1.0=pyhd8ed1ab_0 + - tzlocal=5.2=py311h38be061_0 + - uri-template=1.3.0=pyhd8ed1ab_0 + - wcwidth=0.2.12=pyhd8ed1ab_0 + - webcolors=1.13=pyhd8ed1ab_0 + - webencodings=0.5.1=pyhd8ed1ab_2 + - websocket-client=1.7.0=pyhd8ed1ab_0 + - wheel=0.42.0=pyhd8ed1ab_0 + - widgetsnbextension=4.0.9=pyhd8ed1ab_0 + - xcb-util-image=0.4.0=h8ee46fc_1 + - xkeyboard-config=2.40=hd590300_0 + - xorg-libxext=1.3.4=h0b41bf4_2 + - xorg-libxfixes=5.0.3=h7f98852_1004 + - xorg-libxrender=0.9.11=hd590300_0 + - xorg-libxt=1.3.0=hd590300_1 + - zipp=3.17.0=pyhd8ed1ab_0 + - anyio=4.2.0=pyhd8ed1ab_0 + - asttokens=2.4.1=pyhd8ed1ab_0 + - async-lru=2.0.4=pyhd8ed1ab_0 + - babel=2.14.0=pyhd8ed1ab_0 + - beautifulsoup4=4.12.2=pyha770c72_0 + - beniget=0.4.1=pyhd8ed1ab_0 + - bleach=6.1.0=pyhd8ed1ab_0 + - boost-cpp=1.84.0=h44aadfe_0 + - brial=1.2.12=pyh694c41f_1 + - cached-property=1.5.2=hd8ed1ab_1 + - cairo=1.18.0=h3faef2a_0 + - cffi=1.16.0=py311hb3a22ac_0 + - cmake=3.28.1=hcfe8598_0 + - comm=0.1.4=pyhd8ed1ab_0 + - cppy=1.2.1=pyhd8ed1ab_0 + - curl=8.5.0=hca28451_0 + - cxx-compiler=1.6.0=h00ab1b0_0 + - cypari2=2.1.3=py311hd2352ae_2 + - deprecation=2.1.0=pyh9f0ad1d_0 + - fonttools=4.47.0=py311h459d7ec_0 + - fortran-compiler=1.6.0=heb67821_0 + - glib=2.78.3=hfc55251_0 + - importlib-metadata=7.0.0=pyha770c72_0 + - importlib_resources=6.1.1=pyhd8ed1ab_0 + - jedi=0.19.1=pyhd8ed1ab_0 + - jinja2=3.1.2=pyhd8ed1ab_1 + - jupyter_core=5.5.1=py311h38be061_0 + - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 + - libcblas=3.9.0=20_linux64_openblas + - libclang=15.0.7=default_hb11cfb5_4 + - libgd=2.3.3=h119a65a_9 + - liblapack=3.9.0=20_linux64_openblas + - libxkbcommon=1.6.0=h5d7e998_0 + - matplotlib-inline=0.1.6=pyhd8ed1ab_0 + - memory-allocator=0.1.3=py311h459d7ec_0 + - overrides=7.4.0=pyhd8ed1ab_0 + - pexpect=4.8.0=pyh1a96a4e_2 + - pillow=10.1.0=py311ha6c5da5_0 + - pip=23.3.2=pyhd8ed1ab_0 + - pplpy=0.8.9=py311h85abca9_0 + - primecountpy=0.1.0=py311h9547e67_4 + - prompt-toolkit=3.0.42=pyha770c72_0 + - pulseaudio-client=16.1=hb77b528_5 + - pybind11=2.11.1=py311h9547e67_2 + - pyproject-api=1.6.1=pyhd8ed1ab_0 + - python-dateutil=2.8.2=pyhd8ed1ab_0 + - pytz-deprecation-shim=0.1.0.post0=py311h38be061_4 + - referencing=0.32.0=pyhd8ed1ab_0 + - rfc3339-validator=0.1.4=pyhd8ed1ab_0 + - sip=6.7.12=py311hb755f60_0 + - sympy=1.12=pypyh9d50eac_103 + - terminado=0.18.0=pyh0d859eb_0 + - tinycss2=1.2.1=pyhd8ed1ab_0 + - typing-extensions=4.9.0=hd8ed1ab_0 + - urllib3=2.1.0=pyhd8ed1ab_0 + - virtualenv=20.25.0=pyhd8ed1ab_0 + - xorg-libxi=1.7.10=h7f98852_0 + - argon2-cffi-bindings=21.2.0=py311h459d7ec_4 + - arpack=3.8.0=nompi_h0baa96a_101 + - arrow=1.3.0=pyhd8ed1ab_0 + - compilers=1.6.0=ha770c72_0 + - dsdp=5.8=hd9d9efa_1203 + - fflas-ffpack=2.4.3=h912ac81_2 + - fqdn=1.5.1=pyhd8ed1ab_0 + - gsl=2.7=he838d99_0 + - gstreamer=1.22.8=h98fc4e7_0 + - harfbuzz=8.3.0=h3d44ed6_0 + - hatchling=1.21.0=pyhd8ed1ab_0 + - iml=1.0.5=hd75c201_1003 + - importlib-resources=6.1.1=pyhd8ed1ab_0 + - importlib_metadata=7.0.0=hd8ed1ab_0 + - jsonschema-specifications=2023.11.2=pyhd8ed1ab_0 + - jupyter_server_terminals=0.5.0=pyhd8ed1ab_0 + - liblapacke=3.9.0=20_linux64_openblas + - numpy=1.26.2=py311h64a7726_0 + - prompt_toolkit=3.0.42=hd8ed1ab_0 + - pyqt5-sip=12.12.2=py311hb755f60_5 + - requests=2.31.0=pyhd8ed1ab_0 + - setuptools-scm=8.0.4=pyhd8ed1ab_0 + - stack_data=0.6.2=pyhd8ed1ab_0 + - suitesparse=5.10.1=h3ec001c_2 + - xorg-libxtst=1.2.3=h7f98852_1002 + - argon2-cffi=23.1.0=pyhd8ed1ab_0 + - blas-devel=3.9.0=20_linux64_openblas + - contourpy=1.2.0=py311h9547e67_0 + - cvxopt=1.3.2=py311h2b3fd1d_1 + - fpylll=0.6.0=py311hcfae7cf_1 + - giac=1.9.0.21=h673759e_1 + - gst-plugins-base=1.22.8=h8e1006c_0 + - igraph=0.10.8=h66a01bf_0 + - ipython=8.18.1=pyh707e725_3 + - isoduration=20.11.0=pyhd8ed1ab_0 + - jsonschema=4.20.0=pyhd8ed1ab_0 + - jupyter_client=8.6.0=pyhd8ed1ab_0 + - linbox=1.6.3=ha329b40_8 + - openjdk=21.0.1=haa376d0_0 + - pango=1.50.14=ha41ecd1_2 + - pythran=0.14.0=py311h92ebd52_1 + - scipy=1.11.4=py311h64a7726_0 + - setuptools_scm=8.0.4=hd8ed1ab_0 + - tox=4.11.4=pyhd8ed1ab_0 + - blas=2.120=openblas + - ipykernel=6.26.0=pyhf8b6a83_0 + - ipywidgets=8.1.1=pyhd8ed1ab_0 + - jmol=14.32.10=ha770c72_0 + - jsonschema-with-format-nongpl=4.20.0=pyhd8ed1ab_0 + - matplotlib-base=3.8.2=py311h54ef318_0 + - nbformat=5.9.2=pyhd8ed1ab_0 + - qt-main=5.15.8=h82b777d_17 + - r-base=4.3.2=hb8ee39d_1 + - rw=0.9=hd590300_1 + - ipympl=0.9.3=pyhd8ed1ab_0 + - jupyter-jsmol=2022.1.0=pyhd8ed1ab_0 + - jupyter_events=0.9.0=pyhd8ed1ab_0 + - nbclient=0.8.0=pyhd8ed1ab_0 + - pyqt=5.15.9=py311hf0fb5b6_5 + - rpy2=3.5.11=py311r43h1f0f07a_3 + - matplotlib=3.8.2=py311h38be061_0 + - nbconvert-core=7.13.0=pyhd8ed1ab_0 + - jupyter_server=2.12.1=pyhd8ed1ab_0 + - nbconvert-pandoc=7.13.0=pyhd8ed1ab_0 + - jupyter-lsp=2.2.1=pyhd8ed1ab_0 + - jupyterlab_server=2.25.2=pyhd8ed1ab_0 + - nbconvert=7.13.0=pyhd8ed1ab_0 + - notebook-shim=0.2.3=pyhd8ed1ab_0 + - jupyterlab=4.0.9=pyhd8ed1ab_0 + - notebook=7.0.6=pyhd8ed1ab_0 + - jupyter_sphinx=0.4.0=py311h38be061_1 + - sphinx-basic-ng=1.0.0b2=pyhd8ed1ab_1 + - furo=2023.9.10=pyhd8ed1ab_0 + - sphinx-copybutton=0.5.2=pyhd8ed1ab_0 + - sphinxcontrib-applehelp=1.0.7=pyhd8ed1ab_0 + - sphinxcontrib-devhelp=1.0.5=pyhd8ed1ab_0 + - sphinxcontrib-htmlhelp=2.0.4=pyhd8ed1ab_0 + - sphinxcontrib-qthelp=1.0.6=pyhd8ed1ab_0 + - sphinx=7.2.6=pyhd8ed1ab_0 + - sphinxcontrib-serializinghtml=1.1.9=pyhd8ed1ab_0 + - sphinxcontrib-websupport=1.2.6=pyhd8ed1ab_0 diff --git a/src/environment-3.11-macos-arm64.yml b/src/environment-3.11-macos-arm64.yml new file mode 100644 index 00000000000..d2e67f82500 --- /dev/null +++ b/src/environment-3.11-macos-arm64.yml @@ -0,0 +1,401 @@ +# Generated by conda-lock. +# platform: osx-arm64 +# input_hash: 2ff977dcd9a99005d724932d2866d43333af4ef4cd463467acc105dff636efae + +channels: + - conda-forge +dependencies: + - _r-mutex=1.0.1=anacondar_1 + - bc=1.07.1=h3422bc3_0 + - bzip2=1.0.8=h93a5062_5 + - c-ares=1.24.0=h93a5062_0 + - ca-certificates=2023.11.17=hf0a4a13_0 + - cliquer=1.22=h27ca646_0 + - font-ttf-dejavu-sans-mono=2.37=hab24e00_0 + - font-ttf-inconsolata=3.000=h77eed37_0 + - font-ttf-source-code-pro=2.038=h77eed37_0 + - font-ttf-ubuntu=0.83=h77eed37_1 + - fribidi=1.0.10=h27ca646_0 + - giflib=5.2.1=h1a8c8d9_3 + - jpeg=9e=h1a8c8d9_3 + - libatomic_ops=7.6.14=h1a8c8d9_0 + - libbrotlicommon=1.1.0=hb547adb_1 + - libcxx=16.0.6=h4653b0c_0 + - libdeflate=1.17=h1a8c8d9_0 + - libev=4.33=h93a5062_2 + - libexpat=2.5.0=hb7217d7_1 + - libffi=3.4.2=h3422bc3_5 + - libgfortran-devel_osx-arm64=12.3.0=hc62be1c_1 + - libiconv=1.17=h0d3ecfb_2 + - 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.6=hcd81f8e_0 + - m4=1.4.18=h642e427_1001 + - make=4.3=he57ea6c_1 + - mathjax=3.2.2=hce30654_0 + - nauty=2.8.8=h93a5062_0 + - 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 + - tbb=2021.10.0=h1995070_2 + - 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.3.0=h965bd2d_0 + - graphite2=1.3.13=h9f76cd9_1001 + - icu=70.1=h6b3803e_0 + - isl=0.25=h9a09cb3_0 + - lerc=4.0.0=h9a09cb3_0 + - libbraiding=1.2=hb7217d7_0 + - libbrotlidec=1.1.0=hb547adb_1 + - libbrotlienc=1.1.0=hb547adb_1 + - libgfortran5=13.2.0=hf226fd6_1 + - libpng=1.6.39=h76d750c_0 + - libsqlite=3.44.2=h091b4b1_0 + - libxcb=1.13=h9b22ae9_1004 + - lrcalc=2.1=hb7217d7_5 + - metis=5.1.1=h965bd2d_2 + - ncurses=6.4=h463b476_2 + - ninja=1.11.1=hffc8910_0 + - openjdk=21.0.1=hed44d8b_0 + - openssl=3.2.0=h0d3ecfb_1 + - 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 + - symmetrica=3.0.1=hb7217d7_0 + - tapi=1100.0.11=he4954df_0 + - tar=1.34=h7cb298e_1 + - threejs-sage=122=hd8ed1ab_2 + - tk=8.6.13=h5083fa2_1 + - zeromq=4.3.5=h965bd2d_0 + - zlib=1.2.13=h53f4e23_5 + - zstd=1.5.5=h4f39d0f_0 + - automake=1.16.5=pl5321hce30654_0 + - boost-cpp=1.81.0=hf96b251_0 + - brotli-bin=1.1.0=hb547adb_1 + - bwidget=1.9.14=hce30654_1 + - cddlib=1!0.94m=h6d7a090_0 + - ecm=7.0.4=h47c7c1a_1002 + - fonts-conda-ecosystem=1=0 + - freetype=2.12.1=hadb7bae_2 + - givaro=4.1.1=h0cdca34_3 + - glpk=5.0=h6d7a090_0 + - jmol=14.32.10=hce30654_0 + - libedit=3.1.20191231=hc8eb9b7_2 + - 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_1 + - 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.1=h9546428_0 + - ntl=11.4.3=hbb3f309_1 + - primecount=7.6=hb6e4faa_0 + - readline=8.2=h92ec313_1 + - sigtool=0.1.3=h44b9a77_0 + - tachyon=0.99b6=hfb72b2a_1001 + - texinfo=7.0=pl5321h9ea1dce_0 + - tktable=2.10=hd996620_5 + - brotli=1.1.0=hb547adb_1 + - ecl=21.2.1=h8492d4d_2 + - fftw=3.3.10=nompi_h3046061_108 + - fontconfig=2.14.2=h82840c6_0 + - gap-core=4.12.2=he8f4e70_3 + - gfan=0.6.2=hec08f5c_1003 + - krb5=1.20.1=h69eda48_0 + - lcms2=2.15=h481adae_0 + - libbrial=1.2.12=ha7f5006_1 + - 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 + - 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.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 + - brial=1.2.12=pyh694c41f_1 + - brotli-python=1.1.0=py311ha891d26_1 + - cached_property=1.5.2=pyha770c72_1 + - cachetools=5.3.2=pyhd8ed1ab_0 + - cairo=1.16.0=h73a0509_1014 + - certifi=2023.11.17=pyhd8ed1ab_0 + - chardet=5.2.0=py311h267d04e_1 + - 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.7=py311h92babd0_0 + - debugpy=1.8.0=py311ha891d26_1 + - decorator=5.1.1=pyhd8ed1ab_0 + - defusedxml=0.7.1=pyhd8ed1ab_0 + - distlib=0.3.8=pyhd8ed1ab_0 + - docutils=0.20.1=py311h267d04e_3 + - eclib=20231211=h7f07de4_0 + - editables=0.3=pyhd8ed1ab_0 + - entrypoints=0.4=pyhd8ed1ab_0 + - exceptiongroup=1.2.0=pyhd8ed1ab_0 + - executing=2.0.1=pyhd8ed1ab_0 + - filelock=3.13.1=pyhd8ed1ab_0 + - flit-core=3.9.0=pyhd8ed1ab_0 + - fplll=5.4.5=hb7d509d_0 + - gap-defaults=4.12.2=hce30654_3 + - gast=0.5.4=pyhd8ed1ab_0 + - gfortran_impl_osx-arm64=12.3.0=hbbb9e1e_1 + - gmpy2=2.1.2=py311h2ba9262_1 + - idna=3.6=pyhd8ed1ab_0 + - imagesize=1.4.1=pyhd8ed1ab_0 + - ipython_genutils=0.2.0=py_1 + - json5=0.9.14=pyhd8ed1ab_0 + - jsonpointer=2.4=py311h267d04e_3 + - jupyterlab_widgets=3.0.9=pyhd8ed1ab_0 + - kiwisolver=1.4.5=py311he4fd1f5_1 + - lcalc=2.0.5=hc94e8e6_1 + - ld64_osx-arm64=609=hc4dc95b_15 + - libblas=3.9.0=20_osxarm64_openblas + - libclang-cpp15=15.0.7=default_hd209bcb_4 + - libcurl=8.1.2=h912dcd9_0 + - libgd=2.3.3=h90fb8ed_4 + - llvm-tools=15.0.7=h62b9111_1 + - markupsafe=2.1.3=py311heffc1b2_1 + - maxima=5.45.0=h6032a66_2 + - mistune=3.0.2=pyhd8ed1ab_0 + - mpmath=1.3.0=pyhd8ed1ab_0 + - munkres=1.1.4=pyh9f0ad1d_0 + - nest-asyncio=1.5.8=pyhd8ed1ab_0 + - networkx=3.2.1=pyhd8ed1ab_0 + - openblas=0.3.25=openmp_h55c453e_0 + - packaging=23.2=pyhd8ed1ab_0 + - pandocfilters=1.5.0=pyhd8ed1ab_0 + - parso=0.8.3=pyhd8ed1ab_0 + - pathspec=0.12.1=pyhd8ed1ab_0 + - pickleshare=0.7.5=py_1003 + - pillow=9.4.0=py311h627eb56_1 + - pkgconfig=1.5.5=pyhd8ed1ab_4 + - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 + - platformdirs=4.1.0=pyhd8ed1ab_0 + - pluggy=1.3.0=pyhd8ed1ab_0 + - ply=3.11=py_1 + - prometheus_client=0.19.0=pyhd8ed1ab_0 + - psutil=5.9.7=py311h05b510d_0 + - ptyprocess=0.7.0=pyhd3deb0d_0 + - pure_eval=0.2.2=pyhd8ed1ab_0 + - py=1.11.0=pyh6c4a22f_0 + - pybind11-global=2.11.1=py311he4fd1f5_2 + - pycparser=2.21=pyhd8ed1ab_0 + - pygments=2.17.2=pyhd8ed1ab_0 + - pyparsing=3.1.1=pyhd8ed1ab_0 + - pyrsistent=0.20.0=py311h05b510d_0 + - pysocks=1.7.1=pyha2e5f31_6 + - python-fastjsonschema=2.19.0=pyhd8ed1ab_0 + - python-json-logger=2.0.7=pyhd8ed1ab_0 + - python-lrcalc=2.1=py311ha397e9f_5 + - python-tzdata=2023.3=pyhd8ed1ab_0 + - pytz=2023.3.post1=pyhd8ed1ab_0 + - pyyaml=6.0.1=py311heffc1b2_1 + - pyzmq=25.1.2=py311h6727e71_0 + - rfc3986-validator=0.1.1=pyh9f0ad1d_0 + - rpds-py=0.15.2=py311h94f323b_0 + - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 + - sagetex=3.6.1=pyhd8ed1ab_0 + - setuptools=68.2.2=pyhd8ed1ab_0 + - simplegeneric=0.8.1=py_1 + - singular=4.3.2.p8=hb460b52_1 + - six=1.16.0=pyh6c4a22f_0 + - sniffio=1.3.0=pyhd8ed1ab_0 + - snowballstemmer=2.2.0=pyhd8ed1ab_0 + - soupsieve=2.5=pyhd8ed1ab_1 + - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_0 + - sympow=2.023.6=hb0babe8_3 + - tomli=2.0.1=pyhd8ed1ab_0 + - tornado=6.3.3=py311heffc1b2_1 + - traitlets=5.14.0=pyhd8ed1ab_0 + - trove-classifiers=2023.11.29=pyhd8ed1ab_0 + - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 + - typing_extensions=4.9.0=pyha770c72_0 + - typing_utils=0.1.0=pyhd8ed1ab_0 + - tzlocal=5.2=py311h267d04e_0 + - uri-template=1.3.0=pyhd8ed1ab_0 + - wcwidth=0.2.12=pyhd8ed1ab_0 + - webcolors=1.13=pyhd8ed1ab_0 + - webencodings=0.5.1=pyhd8ed1ab_2 + - websocket-client=1.7.0=pyhd8ed1ab_0 + - wheel=0.42.0=pyhd8ed1ab_0 + - widgetsnbextension=4.0.9=pyhd8ed1ab_0 + - zipp=3.17.0=pyhd8ed1ab_0 + - anyio=4.2.0=pyhd8ed1ab_0 + - asttokens=2.4.1=pyhd8ed1ab_0 + - async-lru=2.0.4=pyhd8ed1ab_0 + - babel=2.14.0=pyhd8ed1ab_0 + - beautifulsoup4=4.12.2=pyha770c72_0 + - beniget=0.4.1=pyhd8ed1ab_0 + - bleach=6.1.0=pyhd8ed1ab_0 + - cached-property=1.5.2=hd8ed1ab_1 + - cctools_osx-arm64=973.0.1=h2a25c60_15 + - cffi=1.16.0=py311h4a08483_0 + - clang-15=15.0.7=default_hd209bcb_4 + - cmake=3.26.4=hc0af03a_0 + - comm=0.1.4=pyhd8ed1ab_0 + - cppy=1.2.1=pyhd8ed1ab_0 + - curl=8.1.2=h912dcd9_0 + - cypari2=2.1.3=py311h149620a_2 + - deprecation=2.1.0=pyh9f0ad1d_0 + - fonttools=4.47.0=py311h05b510d_0 + - harfbuzz=6.0.0=hddbc195_0 + - importlib-metadata=7.0.0=pyha770c72_0 + - importlib_resources=6.1.1=pyhd8ed1ab_0 + - jedi=0.19.1=pyhd8ed1ab_0 + - jinja2=3.1.2=pyhd8ed1ab_1 + - jupyter_core=5.5.1=py311h267d04e_0 + - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 + - ld64=609=h89fa09d_15 + - libcblas=3.9.0=20_osxarm64_openblas + - liblapack=3.9.0=20_osxarm64_openblas + - matplotlib-inline=0.1.6=pyhd8ed1ab_0 + - memory-allocator=0.1.3=py311heffc1b2_0 + - overrides=7.4.0=pyhd8ed1ab_0 + - pexpect=4.8.0=pyh1a96a4e_2 + - pip=23.3.2=pyhd8ed1ab_0 + - pplpy=0.8.9=py311h5ba3760_0 + - primecountpy=0.1.0=py311he4fd1f5_4 + - prompt-toolkit=3.0.42=pyha770c72_0 + - pybind11=2.11.1=py311he4fd1f5_2 + - pyobjc-core=10.1=py311h665608e_0 + - pyproject-api=1.6.1=pyhd8ed1ab_0 + - python-dateutil=2.8.2=pyhd8ed1ab_0 + - pytz-deprecation-shim=0.1.0.post0=py311h267d04e_4 + - referencing=0.32.0=pyhd8ed1ab_0 + - rfc3339-validator=0.1.4=pyhd8ed1ab_0 + - sympy=1.12=pypyh9d50eac_103 + - terminado=0.18.0=pyh31c8845_0 + - tinycss2=1.2.1=pyhd8ed1ab_0 + - typing-extensions=4.9.0=hd8ed1ab_0 + - urllib3=2.1.0=pyhd8ed1ab_0 + - virtualenv=20.25.0=pyhd8ed1ab_0 + - argon2-cffi-bindings=21.2.0=py311heffc1b2_4 + - arpack=3.7.0=h58ebc17_2 + - arrow=1.3.0=pyhd8ed1ab_0 + - cctools=973.0.1=hd1ac623_15 + - clang=15.0.7=haab561b_4 + - dsdp=5.8=h9397a75_1203 + - fflas-ffpack=2.4.3=h11f2abc_2 + - fqdn=1.5.1=pyhd8ed1ab_0 + - gsl=2.7=h6e638da_0 + - hatchling=1.21.0=pyhd8ed1ab_0 + - iml=1.0.5=hd52f0d1_1003 + - importlib-resources=6.1.1=pyhd8ed1ab_0 + - importlib_metadata=7.0.0=hd8ed1ab_0 + - jsonschema-specifications=2023.11.2=pyhd8ed1ab_0 + - jupyter_server_terminals=0.5.0=pyhd8ed1ab_0 + - liblapacke=3.9.0=20_osxarm64_openblas + - numpy=1.26.2=py311h6d074dd_0 + - pango=1.50.14=h6c112b8_0 + - prompt_toolkit=3.0.42=hd8ed1ab_0 + - pyobjc-framework-cocoa=10.1=py311h665608e_0 + - requests=2.31.0=pyhd8ed1ab_0 + - setuptools-scm=8.0.4=pyhd8ed1ab_0 + - stack_data=0.6.2=pyhd8ed1ab_0 + - suitesparse=5.10.1=h88be0ae_2 + - argon2-cffi=23.1.0=pyhd8ed1ab_0 + - blas-devel=3.9.0=20_osxarm64_openblas + - clangxx=15.0.7=default_h5c94ee4_4 + - contourpy=1.2.0=py311hd03642b_0 + - cvxopt=1.3.2=py311hd76776f_1 + - fpylll=0.6.0=py311he33df0e_1 + - giac=1.9.0.21=h1c96721_1 + - igraph=0.9.10=hcec9b84_1 + - ipython=8.18.1=pyh707e725_3 + - isoduration=20.11.0=pyhd8ed1ab_0 + - jsonschema=4.20.0=pyhd8ed1ab_0 + - jupyter_client=8.6.0=pyhd8ed1ab_0 + - linbox=1.6.3=h380be0f_8 + - scipy=1.11.4=py311h2b215a9_0 + - send2trash=1.8.2=pyhd1c38e8_0 + - setuptools_scm=8.0.4=hd8ed1ab_0 + - tox=4.11.4=pyhd8ed1ab_0 + - blas=2.120=openblas + - compiler-rt_osx-arm64=15.0.7=h3808999_2 + - ipykernel=6.26.0=pyh3cd1d5f_0 + - ipywidgets=8.1.1=pyhd8ed1ab_0 + - jsonschema-with-format-nongpl=4.20.0=pyhd8ed1ab_0 + - matplotlib-base=3.8.2=py311hfdba5f6_0 + - nbformat=5.9.2=pyhd8ed1ab_0 + - rw=0.9=h3422bc3_0 + - compiler-rt=15.0.7=h3808999_2 + - ipympl=0.9.3=pyhd8ed1ab_0 + - jupyter-jsmol=2022.1.0=pyhd8ed1ab_0 + - jupyter_events=0.9.0=pyhd8ed1ab_0 + - matplotlib=3.8.2=py311ha1ab1f8_0 + - nbclient=0.8.0=pyhd8ed1ab_0 + - clang_impl_osx-arm64=15.0.7=h77e971b_7 + - nbconvert-core=7.13.0=pyhd8ed1ab_0 + - clang_osx-arm64=15.0.7=h54d7cd3_7 + - jupyter_server=2.12.1=pyhd8ed1ab_0 + - nbconvert-pandoc=7.13.0=pyhd8ed1ab_0 + - c-compiler=1.6.0=hd291e01_0 + - clangxx_impl_osx-arm64=15.0.7=h768a7fd_7 + - gfortran_osx-arm64=12.3.0=h57527a5_1 + - jupyter-lsp=2.2.1=pyhd8ed1ab_0 + - jupyterlab_server=2.25.2=pyhd8ed1ab_0 + - nbconvert=7.13.0=pyhd8ed1ab_0 + - notebook-shim=0.2.3=pyhd8ed1ab_0 + - clangxx_osx-arm64=15.0.7=h54d7cd3_7 + - gfortran=12.3.0=h1ca8e4b_1 + - jupyterlab=4.0.9=pyhd8ed1ab_0 + - cxx-compiler=1.6.0=h1995070_0 + - fortran-compiler=1.6.0=h5a50232_0 + - notebook=7.0.6=pyhd8ed1ab_0 + - pythran=0.14.0=py311hddbb800_1 + - r-base=4.1.3=h9c4d319_6 + - compilers=1.6.0=hce30654_0 + - rpy2=3.5.11=py311r41h4add359_0 + - jupyter_sphinx=0.1.4=py_0 + - sphinx-basic-ng=1.0.0b2=pyhd8ed1ab_1 + - furo=2023.9.10=pyhd8ed1ab_0 + - sphinx-copybutton=0.5.2=pyhd8ed1ab_0 + - sphinxcontrib-applehelp=1.0.7=pyhd8ed1ab_0 + - sphinxcontrib-devhelp=1.0.5=pyhd8ed1ab_0 + - sphinxcontrib-htmlhelp=2.0.4=pyhd8ed1ab_0 + - sphinxcontrib-qthelp=1.0.6=pyhd8ed1ab_0 + - sphinx=7.2.6=pyhd8ed1ab_0 + - sphinxcontrib-serializinghtml=1.1.9=pyhd8ed1ab_0 + - sphinxcontrib-websupport=1.2.6=pyhd8ed1ab_0 diff --git a/src/environment-3.11-macos.yml b/src/environment-3.11-macos.yml new file mode 100644 index 00000000000..86acb5faf05 --- /dev/null +++ b/src/environment-3.11-macos.yml @@ -0,0 +1,405 @@ +# Generated by conda-lock. +# platform: osx-64 +# input_hash: d465e8ad8b1b6a4b6a60c1dba1b34740129e500ba0e3cb7d2e34582f29eea756 + +channels: + - conda-forge +dependencies: + - _r-mutex=1.0.1=anacondar_1 + - bc=1.07.1=h0d85af4_0 + - bzip2=1.0.8=h10d778d_5 + - c-ares=1.24.0=h10d778d_0 + - ca-certificates=2023.11.17=h8857fd0_0 + - cliquer=1.22=hbcb3906_0 + - font-ttf-dejavu-sans-mono=2.37=hab24e00_0 + - font-ttf-inconsolata=3.000=h77eed37_0 + - font-ttf-source-code-pro=2.038=h77eed37_0 + - font-ttf-ubuntu=0.83=h77eed37_1 + - fribidi=1.0.10=hbcb3906_0 + - giflib=5.2.1=hb7f2c08_3 + - icu=73.2=hf5e326d_0 + - libatomic_ops=7.6.14=hb7f2c08_0 + - libboost-headers=1.84.0=h694c41f_0 + - libbrotlicommon=1.1.0=h0dc2134_1 + - libcxx=16.0.6=hd57cbcb_0 + - libdeflate=1.19=ha4e1b8e_0 + - libev=4.33=h10d778d_2 + - libexpat=2.5.0=hf0c8a7f_1 + - libffi=3.4.2=h0d85af4_5 + - libgfortran-devel_osx-64=12.3.0=h0b6f5ec_1 + - libiconv=1.17=hd75f5a5_2 + - libjpeg-turbo=3.0.0=h0dc2134_1 + - libsodium=1.0.18=hbcb3906_1 + - libtool=2.4.7=hf0c8a7f_0 + - libuv=1.46.0=h0c2f820_0 + - libwebp-base=1.3.2=h0dc2134_0 + - libzlib=1.2.13=h8a1eda9_5 + - llvm-openmp=17.0.6=hb6ac08f_0 + - m4=1.4.18=haf1e3a3_1001 + - make=4.3=h22f3db7_1 + - mathjax=3.2.2=h694c41f_0 + - nauty=2.8.8=h10d778d_0 + - 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 + - planarity=3.0.0.5=hbcb3906_1002 + - pthread-stubs=0.4=hc929b4f_1001 + - python_abi=3.11=4_cp311 + - rhash=1.4.4=h0dc2134_0 + - sagemath-db-combinatorial-designs=20140630=1 + - sagemath-db-graphs=20210214=hd8ed1ab_0 + - sagemath-db-polytopes=20170220=1 + - three.js=122=hd8ed1ab_2 + - tzdata=2023c=h71feb2d_0 + - xorg-libxau=1.0.11=h0dc2134_0 + - xorg-libxdmcp=1.1.3=h35c211d_0 + - xz=5.2.6=h775f41a_0 + - yaml=0.2.5=h0d85af4_2 + - autoconf=2.71=pl5321hed12c24_1 + - bdw-gc=8.0.6=h940c156_0 + - expat=2.5.0=hf0c8a7f_1 + - fonts-conda-forge=1=0 + - gengetopt=2.23=he49afe7_0 + - gettext=0.21.1=h8a4c099_0 + - gf2x=1.3.0=hb2a7efb_2 + - gmp=6.3.0=h93d8f39_0 + - graphite2=1.3.13=h2e338ed_1001 + - isl=0.25=hb486fe8_0 + - lerc=4.0.0=hb486fe8_0 + - libbraiding=1.2=hf0c8a7f_0 + - libbrotlidec=1.1.0=h0dc2134_1 + - libbrotlienc=1.1.0=h0dc2134_1 + - libgfortran5=13.2.0=h2873a65_1 + - libpng=1.6.39=ha978bb4_0 + - libsqlite=3.44.2=h92b6c6a_0 + - libxcb=1.15=hb7f2c08_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 + - openssl=3.2.0=hd75f5a5_1 + - 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 + - symmetrica=3.0.1=hf0c8a7f_0 + - tapi=1100.0.11=h9ce4665_0 + - tar=1.34=hcb2f6ea_1 + - threejs-sage=122=hd8ed1ab_2 + - tk=8.6.13=h1abcd95_1 + - zeromq=4.3.5=h93d8f39_0 + - zlib=1.2.13=h8a1eda9_5 + - zstd=1.5.5=h829000d_0 + - automake=1.16.5=pl5321h694c41f_0 + - brotli-bin=1.1.0=h0dc2134_1 + - bwidget=1.9.14=h694c41f_1 + - cddlib=1!0.94m=h0f52abe_0 + - ecm=7.0.4=h343d7f2_1002 + - fonts-conda-ecosystem=1=0 + - freetype=2.12.1=h60636b9_2 + - givaro=4.1.1=h0a799c6_3 + - glpk=5.0=h3cb5acd_0 + - jmol=14.32.9=h694c41f_0 + - libboost=1.84.0=h5b2dd29_0 + - 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_1 + - libssh2=1.11.0=hd019ec5_0 + - libtiff=4.6.0=h684deea_2 + - m4ri=20140914=h3f75d11_1005 + - mpfr=4.2.1=h0c69b56_0 + - ntl=11.4.3=h0ab3c2f_1 + - primecount=7.6=ha894c9a_0 + - readline=8.2=h9e318b2_1 + - sigtool=0.1.3=h88f4db0_0 + - tachyon=0.99b6=0 + - texinfo=7.0=pl5321hc47821c_0 + - tktable=2.10=ha166976_5 + - brotli=1.1.0=h0dc2134_1 + - ecl=21.2.1=hd029580_2 + - fftw=3.3.10=nompi_h4fa670e_108 + - fontconfig=2.14.2=h5bb23bf_0 + - gap-core=4.12.2=hc16eb5f_3 + - gfan=0.6.2=hd793b56_1003 + - krb5=1.21.2=hb884880_0 + - lcms2=2.16=ha2f27b4_0 + - ld64_osx-64=609=h0fd476b_15 + - libboost-devel=1.84.0=h7728843_0 + - libbrial=1.2.12=h8d08345_1 + - libclang-cpp15=15.0.7=default_h6b1ee41_4 + - libflint=3.0.1=h5d15de0_ntl_100 + - libopenblas=0.3.25=openmp_hfef2a42_0 + - libwebp=1.3.2=h44782d1_1 + - llvm-tools=15.0.7=he4b1e75_3 + - m4rie=20150908=h3f75d11_1001 + - mpc=1.3.1=h81bd1dd_0 + - mpfi=1.5.4=h52b28e3_1001 + - openjpeg=2.5.0=ha4da562_3 + - pari=2.15.4=h93f793c_2_pthread + - ppl=1.2=ha60d53e_1006 + - python=3.11.7=h9f0c242_0_cpython + - qd=2.3.22=h2beb688_1004 + - sqlite=3.44.2=h7461747_0 + - tbb=2021.11.0=he51d815_0 + - alabaster=0.7.13=pyhd8ed1ab_0 + - appdirs=1.4.4=pyh9f0ad1d_0 + - appnope=0.1.3=pyhd8ed1ab_0 + - attrs=23.1.0=pyh71513ae_1 + - boost-cpp=1.84.0=h07eb623_0 + - brial=1.2.12=pyh694c41f_1 + - brotli-python=1.1.0=py311hdf8f085_1 + - cached_property=1.5.2=pyha770c72_1 + - cachetools=5.3.2=pyhd8ed1ab_0 + - cairo=1.18.0=h99e66fa_0 + - cctools_osx-64=973.0.1=habff3f6_15 + - certifi=2023.11.17=pyhd8ed1ab_0 + - chardet=5.2.0=py311h6eed73b_1 + - 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.7=py311hdd0406b_0 + - debugpy=1.8.0=py311hdf8f085_1 + - decorator=5.1.1=pyhd8ed1ab_0 + - defusedxml=0.7.1=pyhd8ed1ab_0 + - distlib=0.3.8=pyhd8ed1ab_0 + - docutils=0.20.1=py311h6eed73b_3 + - eclib=20231211=h02435c3_0 + - editables=0.3=pyhd8ed1ab_0 + - entrypoints=0.4=pyhd8ed1ab_0 + - exceptiongroup=1.2.0=pyhd8ed1ab_0 + - executing=2.0.1=pyhd8ed1ab_0 + - filelock=3.13.1=pyhd8ed1ab_0 + - flit-core=3.9.0=pyhd8ed1ab_0 + - fplll=5.4.5=hb7981ad_0 + - gap-defaults=4.12.2=h694c41f_3 + - gast=0.5.4=pyhd8ed1ab_0 + - gfortran_impl_osx-64=12.3.0=h54fd467_1 + - gmpy2=2.1.2=py311hc5b4402_1 + - idna=3.6=pyhd8ed1ab_0 + - imagesize=1.4.1=pyhd8ed1ab_0 + - ipython_genutils=0.2.0=py_1 + - json5=0.9.14=pyhd8ed1ab_0 + - jsonpointer=2.4=py311h6eed73b_3 + - jupyterlab_widgets=3.0.9=pyhd8ed1ab_0 + - kiwisolver=1.4.5=py311h5fe6e05_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 + - markupsafe=2.1.3=py311h2725bcf_1 + - maxima=5.47.0=h2b27fa8_1 + - mistune=3.0.2=pyhd8ed1ab_0 + - mpmath=1.3.0=pyhd8ed1ab_0 + - munkres=1.1.4=pyh9f0ad1d_0 + - nest-asyncio=1.5.8=pyhd8ed1ab_0 + - networkx=3.2.1=pyhd8ed1ab_0 + - openblas=0.3.25=openmp_h6794695_0 + - packaging=23.2=pyhd8ed1ab_0 + - pandocfilters=1.5.0=pyhd8ed1ab_0 + - parso=0.8.3=pyhd8ed1ab_0 + - pathspec=0.12.1=pyhd8ed1ab_0 + - pickleshare=0.7.5=py_1003 + - pillow=10.1.0=py311hea5c87a_0 + - pkgconfig=1.5.5=pyhd8ed1ab_4 + - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 + - platformdirs=4.1.0=pyhd8ed1ab_0 + - pluggy=1.3.0=pyhd8ed1ab_0 + - ply=3.11=py_1 + - prometheus_client=0.19.0=pyhd8ed1ab_0 + - psutil=5.9.7=py311he705e18_0 + - ptyprocess=0.7.0=pyhd3deb0d_0 + - pure_eval=0.2.2=pyhd8ed1ab_0 + - py=1.11.0=pyh6c4a22f_0 + - pybind11-global=2.11.1=py311h5fe6e05_2 + - pycparser=2.21=pyhd8ed1ab_0 + - pygments=2.17.2=pyhd8ed1ab_0 + - pyparsing=3.1.1=pyhd8ed1ab_0 + - pyrsistent=0.20.0=py311he705e18_0 + - pysocks=1.7.1=pyha2e5f31_6 + - python-fastjsonschema=2.19.0=pyhd8ed1ab_0 + - python-json-logger=2.0.7=pyhd8ed1ab_0 + - python-lrcalc=2.1=py311h814d153_5 + - python-tzdata=2023.3=pyhd8ed1ab_0 + - pytz=2023.3.post1=pyhd8ed1ab_0 + - pyyaml=6.0.1=py311h2725bcf_1 + - pyzmq=25.1.2=py311h889d6d6_0 + - rfc3986-validator=0.1.1=pyh9f0ad1d_0 + - rpds-py=0.15.2=py311h5e0f0e4_0 + - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 + - sagetex=3.6.1=pyhd8ed1ab_0 + - setuptools=68.2.2=pyhd8ed1ab_0 + - simplegeneric=0.8.1=py_1 + - singular=4.3.2.p8=h0d51a9f_1 + - six=1.16.0=pyh6c4a22f_0 + - sniffio=1.3.0=pyhd8ed1ab_0 + - snowballstemmer=2.2.0=pyhd8ed1ab_0 + - soupsieve=2.5=pyhd8ed1ab_1 + - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_0 + - sympow=2.023.6=h115ba6a_3 + - tomli=2.0.1=pyhd8ed1ab_0 + - tornado=6.3.3=py311h2725bcf_1 + - traitlets=5.14.0=pyhd8ed1ab_0 + - trove-classifiers=2023.11.29=pyhd8ed1ab_0 + - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 + - typing_extensions=4.9.0=pyha770c72_0 + - typing_utils=0.1.0=pyhd8ed1ab_0 + - tzlocal=5.2=py311h6eed73b_0 + - uri-template=1.3.0=pyhd8ed1ab_0 + - wcwidth=0.2.12=pyhd8ed1ab_0 + - webcolors=1.13=pyhd8ed1ab_0 + - webencodings=0.5.1=pyhd8ed1ab_2 + - websocket-client=1.7.0=pyhd8ed1ab_0 + - wheel=0.42.0=pyhd8ed1ab_0 + - widgetsnbextension=4.0.9=pyhd8ed1ab_0 + - zipp=3.17.0=pyhd8ed1ab_0 + - anyio=4.2.0=pyhd8ed1ab_0 + - asttokens=2.4.1=pyhd8ed1ab_0 + - async-lru=2.0.4=pyhd8ed1ab_0 + - babel=2.14.0=pyhd8ed1ab_0 + - beautifulsoup4=4.12.2=pyha770c72_0 + - beniget=0.4.1=pyhd8ed1ab_0 + - bleach=6.1.0=pyhd8ed1ab_0 + - cached-property=1.5.2=hd8ed1ab_1 + - cctools=973.0.1=hd9ad811_15 + - cffi=1.16.0=py311hc0b63fd_0 + - clang=15.0.7=hac416ee_4 + - cmake=3.28.1=h7c85d92_0 + - comm=0.1.4=pyhd8ed1ab_0 + - cppy=1.2.1=pyhd8ed1ab_0 + - curl=8.5.0=h726d00d_0 + - cypari2=2.1.3=py311h7d823c7_2 + - deprecation=2.1.0=pyh9f0ad1d_0 + - fonttools=4.47.0=py311he705e18_0 + - harfbuzz=8.3.0=hf45c392_0 + - importlib-metadata=7.0.0=pyha770c72_0 + - importlib_resources=6.1.1=pyhd8ed1ab_0 + - jedi=0.19.1=pyhd8ed1ab_0 + - jinja2=3.1.2=pyhd8ed1ab_1 + - jupyter_core=5.5.1=py311h6eed73b_0 + - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 + - libcblas=3.9.0=20_osx64_openblas + - liblapack=3.9.0=20_osx64_openblas + - matplotlib-inline=0.1.6=pyhd8ed1ab_0 + - memory-allocator=0.1.3=py311h2725bcf_0 + - overrides=7.4.0=pyhd8ed1ab_0 + - pexpect=4.8.0=pyh1a96a4e_2 + - pip=23.3.2=pyhd8ed1ab_0 + - pplpy=0.8.9=py311h7355a2a_0 + - primecountpy=0.1.0=py311h5fe6e05_4 + - prompt-toolkit=3.0.42=pyha770c72_0 + - pybind11=2.11.1=py311h5fe6e05_2 + - pyobjc-core=10.1=py311h9b70068_0 + - pyproject-api=1.6.1=pyhd8ed1ab_0 + - python-dateutil=2.8.2=pyhd8ed1ab_0 + - pytz-deprecation-shim=0.1.0.post0=py311h6eed73b_4 + - referencing=0.32.0=pyhd8ed1ab_0 + - rfc3339-validator=0.1.4=pyhd8ed1ab_0 + - sympy=1.12=pypyh9d50eac_103 + - terminado=0.18.0=pyh31c8845_0 + - tinycss2=1.2.1=pyhd8ed1ab_0 + - typing-extensions=4.9.0=hd8ed1ab_0 + - urllib3=2.1.0=pyhd8ed1ab_0 + - virtualenv=20.25.0=pyhd8ed1ab_0 + - argon2-cffi-bindings=21.2.0=py311h2725bcf_4 + - 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 + - fflas-ffpack=2.4.3=h026fd7e_2 + - fqdn=1.5.1=pyhd8ed1ab_0 + - gsl=2.7=h93259b0_0 + - hatchling=1.21.0=pyhd8ed1ab_0 + - iml=1.0.5=h64b42ca_1003 + - importlib-resources=6.1.1=pyhd8ed1ab_0 + - importlib_metadata=7.0.0=hd8ed1ab_0 + - jsonschema-specifications=2023.11.2=pyhd8ed1ab_0 + - jupyter_server_terminals=0.5.0=pyhd8ed1ab_0 + - liblapacke=3.9.0=20_osx64_openblas + - numpy=1.26.2=py311h93c810c_0 + - pango=1.50.14=h19c1c8a_2 + - prompt_toolkit=3.0.42=hd8ed1ab_0 + - pyobjc-framework-cocoa=10.1=py311h9b70068_0 + - requests=2.31.0=pyhd8ed1ab_0 + - setuptools-scm=8.0.4=pyhd8ed1ab_0 + - stack_data=0.6.2=pyhd8ed1ab_0 + - suitesparse=5.10.1=h0a40b7c_2 + - argon2-cffi=23.1.0=pyhd8ed1ab_0 + - blas-devel=3.9.0=20_osx64_openblas + - compiler-rt_osx-64=15.0.7=ha38d28d_2 + - contourpy=1.2.0=py311h7bea37d_0 + - 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 + - jupyter_client=8.6.0=pyhd8ed1ab_0 + - linbox=1.6.3=hfb9b24e_8 + - scipy=1.11.4=py311he0bea55_0 + - send2trash=1.8.2=pyhd1c38e8_0 + - setuptools_scm=8.0.4=hd8ed1ab_0 + - tox=4.11.4=pyhd8ed1ab_0 + - blas=2.120=openblas + - compiler-rt=15.0.7=ha38d28d_2 + - ipykernel=6.26.0=pyh3cd1d5f_0 + - ipywidgets=8.1.1=pyhd8ed1ab_0 + - jsonschema-with-format-nongpl=4.20.0=pyhd8ed1ab_0 + - matplotlib-base=3.8.2=py311hd316c10_0 + - nbformat=5.9.2=pyhd8ed1ab_0 + - rw=0.9=h10d778d_1 + - clang_impl_osx-64=15.0.7=h03d6864_7 + - ipympl=0.9.3=pyhd8ed1ab_0 + - jupyter-jsmol=2022.1.0=pyhd8ed1ab_0 + - jupyter_events=0.9.0=pyhd8ed1ab_0 + - matplotlib=3.8.2=py311h6eed73b_0 + - nbclient=0.8.0=pyhd8ed1ab_0 + - clang_osx-64=15.0.7=hb91bd55_7 + - nbconvert-core=7.13.0=pyhd8ed1ab_0 + - c-compiler=1.6.0=h63c33a9_0 + - clangxx_impl_osx-64=15.0.7=h2133e9c_7 + - gfortran_osx-64=12.3.0=h18f7dce_1 + - jupyter_server=2.12.1=pyhd8ed1ab_0 + - nbconvert-pandoc=7.13.0=pyhd8ed1ab_0 + - clangxx_osx-64=15.0.7=hb91bd55_7 + - gfortran=12.3.0=h2c809b3_1 + - jupyter-lsp=2.2.1=pyhd8ed1ab_0 + - jupyterlab_server=2.25.2=pyhd8ed1ab_0 + - nbconvert=7.13.0=pyhd8ed1ab_0 + - notebook-shim=0.2.3=pyhd8ed1ab_0 + - cxx-compiler=1.6.0=h1c7c39f_0 + - fortran-compiler=1.6.0=h932d759_0 + - jupyterlab=4.0.9=pyhd8ed1ab_0 + - pythran=0.14.0=py311hd5c4f45_1 + - r-base=4.3.1=h0ff45fa_6 + - compilers=1.6.0=h694c41f_0 + - notebook=7.0.6=pyhd8ed1ab_0 + - rpy2=3.5.11=py311r43h4a70a88_3 + - jupyter_sphinx=0.4.0=py311h6eed73b_1 + - sphinx-basic-ng=1.0.0b2=pyhd8ed1ab_1 + - furo=2023.9.10=pyhd8ed1ab_0 + - sphinx-copybutton=0.5.2=pyhd8ed1ab_0 + - sphinxcontrib-applehelp=1.0.7=pyhd8ed1ab_0 + - sphinxcontrib-devhelp=1.0.5=pyhd8ed1ab_0 + - sphinxcontrib-htmlhelp=2.0.4=pyhd8ed1ab_0 + - sphinxcontrib-qthelp=1.0.6=pyhd8ed1ab_0 + - sphinx=7.2.6=pyhd8ed1ab_0 + - sphinxcontrib-serializinghtml=1.1.9=pyhd8ed1ab_0 + - sphinxcontrib-websupport=1.2.6=pyhd8ed1ab_0 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-linux-aarch64.yml b/src/environment-3.9-linux-aarch64.yml new file mode 100644 index 00000000000..a6def73b317 --- /dev/null +++ b/src/environment-3.9-linux-aarch64.yml @@ -0,0 +1,422 @@ +# Generated by conda-lock. +# platform: linux-aarch64 +# input_hash: c38919ee81734178b79845569c6031fa434acc1fe30099876cee095117077374 + +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 + - bc=1.07.1=hf897c2e_0 + - bdw-gc=8.0.6=hd62202e_0 + - bzip2=1.0.8=h31becfc_5 + - c-ares=1.24.0=h31becfc_0 + - cliquer=1.22=hb9de7d4_0 + - fribidi=1.0.10=hb9de7d4_0 + - gengetopt=2.23=h01db608_0 + - gettext=0.21.1=ha18d298_0 + - gf2x=1.3.0=h1b3b3a3_2 + - giflib=5.2.1=hb4cce97_3 + - gmp=6.3.0=h2f0025b_0 + - graphite2=1.3.13=h7fd3ca4_1001 + - icu=70.1=ha18d298_0 + - jpeg=9e=h2a766a3_3 + - keyutils=1.6.1=h4e544f5_0 + - lerc=4.0.0=h4de3ea5_0 + - libatomic_ops=7.6.14=h4e544f5_0 + - libbraiding=1.2=hd600fc2_0 + - libbrotlicommon=1.1.0=h31becfc_1 + - libdeflate=1.17=hb4cce97_0 + - 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=h31becfc_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 + - 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.8.8=h31becfc_0 + - ncurses=6.4=h0425590_2 + - ninja=1.11.1=hdd96247_0 + - openssl=3.2.0=h31becfc_1 + - 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_1 + - 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 + - tar=1.34=h048efde_0 + - tk=8.6.13=h194ca79_0 + - xorg-fixesproto=5.0=h3557bc0_1002 + - xorg-libsm=1.2.3=h965e137_1000 + - zeromq=4.3.5=h2f0025b_0 + - zlib=1.2.13=h31becfc_5 + - zstd=1.5.5=h4c53e97_0 + - autoconf=2.71=pl5321h2148fe1_1 + - boost-cpp=1.81.0=h07c2bc3_0 + - brotli-bin=1.1.0=h31becfc_1 + - bwidget=1.9.14=h8af1aa0_1 + - ecl=21.2.1=haa44c19_2 + - fftw=3.3.10=nompi_h2dcef8e_108 + - freetype=2.12.1=hf0a5ef3_2 + - gap-core=4.12.2=h597289e_3 + - gcc=12.3.0=hc1b51f9_2 + - gcc_linux-aarch64=12.3.0=h464a8f7_2 + - gfan=0.6.2=h5f589ec_1003 + - gfortran_impl_linux-aarch64=12.3.0=hb7244be_3 + - gxx_impl_linux-aarch64=12.3.0=hcde2664_3 + - krb5=1.20.1=h113d92e_0 + - 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 + - llvm-openmp=17.0.6=h8b0cb96_0 + - m4ri=20140914=h75e8696_1005 + - mpc=1.3.1=hf4c8f4c_0 + - mpfi=1.5.4=h846f343_1001 + - pari=2.15.4=h169c2a7_2_pthread + - ppl=1.2=h984aac9_1006 + - python=3.9.18=h4ac3b42_0_cpython + - qd=2.3.22=h05efe27_1004 + - sqlite=3.44.2=h3b3482f_0 + - tachyon=0.99b6=h63ab1d9_1001 + - texinfo=7.0=pl5321h17f021e_0 + - tktable=2.10=h4f9ca69_5 + - xorg-libx11=1.8.4=h2a766a3_0 + - alabaster=0.7.13=pyhd8ed1ab_0 + - appdirs=1.4.4=pyh9f0ad1d_0 + - appnope=0.1.3=pyhd8ed1ab_0 + - attrs=23.1.0=pyh71513ae_1 + - automake=1.16.5=pl5321h8af1aa0_0 + - brotli=1.1.0=h31becfc_1 + - brotli-python=1.1.0=py39h387a81e_1 + - c-compiler=1.6.0=h31becfc_0 + - cached_property=1.5.2=pyha770c72_1 + - cachetools=5.3.2=pyhd8ed1ab_0 + - certifi=2023.11.17=pyhd8ed1ab_0 + - chardet=5.2.0=py39ha65689a_1 + - 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.7=py39h387a81e_0 + - debugpy=1.8.0=py39h387a81e_1 + - decorator=5.1.1=pyhd8ed1ab_0 + - defusedxml=0.7.1=pyhd8ed1ab_0 + - distlib=0.3.8=pyhd8ed1ab_0 + - docutils=0.20.1=py39ha65689a_3 + - eclib=20231211=he26bab5_0 + - editables=0.3=pyhd8ed1ab_0 + - entrypoints=0.4=pyhd8ed1ab_0 + - exceptiongroup=1.2.0=pyhd8ed1ab_0 + - executing=2.0.1=pyhd8ed1ab_0 + - filelock=3.13.1=pyhd8ed1ab_0 + - flit-core=3.9.0=pyhd8ed1ab_0 + - fontconfig=2.14.2=ha9a116f_0 + - fplll=5.4.5=hb3a790e_0 + - gap-defaults=4.12.2=h8af1aa0_3 + - gast=0.5.4=pyhd8ed1ab_0 + - gfortran=12.3.0=h8d4031d_2 + - gfortran_linux-aarch64=12.3.0=h1993883_2 + - gmpy2=2.1.2=py39h3ba43c8_1 + - gxx=12.3.0=hc1b51f9_2 + - gxx_linux-aarch64=12.3.0=h21accf6_2 + - idna=3.6=pyhd8ed1ab_0 + - imagesize=1.4.1=pyhd8ed1ab_0 + - ipython_genutils=0.2.0=py_1 + - json5=0.9.14=pyhd8ed1ab_0 + - jsonpointer=2.4=py39h4420490_3 + - jupyterlab_widgets=3.0.9=pyhd8ed1ab_0 + - 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.47.0=h6475f26_1 + - mistune=3.0.2=pyhd8ed1ab_0 + - mpmath=1.3.0=pyhd8ed1ab_0 + - munkres=1.1.4=pyh9f0ad1d_0 + - nest-asyncio=1.5.8=pyhd8ed1ab_0 + - 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.12.1=pyhd8ed1ab_0 + - pickleshare=0.7.5=py_1003 + - pkgconfig=1.5.5=pyhd8ed1ab_4 + - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 + - platformdirs=4.1.0=pyhd8ed1ab_0 + - pluggy=1.3.0=pyhd8ed1ab_0 + - ply=3.11=py_1 + - prometheus_client=0.19.0=pyhd8ed1ab_0 + - psutil=5.9.7=py39h898b7ef_0 + - ptyprocess=0.7.0=pyhd3deb0d_0 + - pure_eval=0.2.2=pyhd8ed1ab_0 + - py=1.11.0=pyh6c4a22f_0 + - pybind11-global=2.11.1=py39hd16970a_2 + - pycparser=2.21=pyhd8ed1ab_0 + - pygments=2.17.2=pyhd8ed1ab_0 + - pyparsing=3.1.1=pyhd8ed1ab_0 + - pyrsistent=0.20.0=py39h7cc1d5f_0 + - pysocks=1.7.1=pyha2e5f31_6 + - python-fastjsonschema=2.19.0=pyhd8ed1ab_0 + - python-json-logger=2.0.7=pyhd8ed1ab_0 + - python-lrcalc=2.1=py39h3d8bfb9_5 + - python-tzdata=2023.3=pyhd8ed1ab_0 + - pytz=2023.3.post1=pyhd8ed1ab_0 + - pyyaml=6.0.1=py39h898b7ef_1 + - pyzmq=25.1.2=py39hbab03a2_0 + - rfc3986-validator=0.1.1=pyh9f0ad1d_0 + - rpds-py=0.15.2=py39hfe8b3a4_0 + - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 + - sagetex=3.6.1=pyhd8ed1ab_0 + - send2trash=1.8.2=pyh41d4057_0 + - setuptools=68.2.2=pyhd8ed1ab_0 + - simplegeneric=0.8.1=py_1 + - singular=4.3.2.p8=hbe76a8a_1 + - six=1.16.0=pyh6c4a22f_0 + - sniffio=1.3.0=pyhd8ed1ab_0 + - snowballstemmer=2.2.0=pyhd8ed1ab_0 + - soupsieve=2.5=pyhd8ed1ab_1 + - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_0 + - sympow=2.023.6=h157afb5_3 + - tbb=2021.9.0=h4c384f3_0 + - tomli=2.0.1=pyhd8ed1ab_0 + - tornado=6.3.3=py39h7cc1d5f_1 + - traitlets=5.14.0=pyhd8ed1ab_0 + - trove-classifiers=2023.11.29=pyhd8ed1ab_0 + - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 + - typing_extensions=4.9.0=pyha770c72_0 + - typing_utils=0.1.0=pyhd8ed1ab_0 + - tzlocal=5.2=py39h4420490_0 + - unicodedata2=15.1.0=py39h898b7ef_0 + - uri-template=1.3.0=pyhd8ed1ab_0 + - wcwidth=0.2.12=pyhd8ed1ab_0 + - webcolors=1.13=pyhd8ed1ab_0 + - webencodings=0.5.1=pyhd8ed1ab_2 + - websocket-client=1.7.0=pyhd8ed1ab_0 + - 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.2.0=pyhd8ed1ab_0 + - asttokens=2.4.1=pyhd8ed1ab_0 + - async-lru=2.0.4=pyhd8ed1ab_0 + - babel=2.14.0=pyhd8ed1ab_0 + - beautifulsoup4=4.12.2=pyha770c72_0 + - beniget=0.4.1=pyhd8ed1ab_0 + - bleach=6.1.0=pyhd8ed1ab_0 + - 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.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.1=py39h4420490_0 + - 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.2=pyhd8ed1ab_0 + - pplpy=0.8.9=py39h087fc0e_0 + - primecountpy=0.1.0=py39hd16970a_3 + - prompt-toolkit=3.0.42=pyha770c72_0 + - pybind11=2.11.1=py39hd16970a_2 + - pyproject-api=1.6.1=pyhd8ed1ab_0 + - python-dateutil=2.8.2=pyhd8ed1ab_0 + - pytz-deprecation-shim=0.1.0.post0=py39h4420490_4 + - referencing=0.32.0=pyhd8ed1ab_0 + - rfc3339-validator=0.1.4=pyhd8ed1ab_0 + - sympy=1.12=pypyh9d50eac_103 + - terminado=0.18.0=pyh0d859eb_0 + - tinycss2=1.2.1=pyhd8ed1ab_0 + - typing-extensions=4.9.0=hd8ed1ab_0 + - urllib3=2.1.0=pyhd8ed1ab_0 + - virtualenv=20.25.0=pyhd8ed1ab_0 + - xorg-libxi=1.7.10=h3557bc0_0 + - argon2-cffi-bindings=21.2.0=py39h898b7ef_4 + - arpack=3.7.0=hf862f49_2 + - arrow=1.3.0=pyhd8ed1ab_0 + - compilers=1.6.0=h8af1aa0_0 + - dsdp=5.8=hb12102e_1203 + - fflas-ffpack=2.4.3=hf104d39_2 + - fqdn=1.5.1=pyhd8ed1ab_0 + - gsl=2.7=h294027d_0 + - harfbuzz=6.0.0=hbcb8a4f_0 + - hatchling=1.21.0=pyhd8ed1ab_0 + - iml=1.0.5=h9076c59_1003 + - importlib-resources=6.1.1=pyhd8ed1ab_0 + - importlib_metadata=7.0.0=hd8ed1ab_0 + - jsonschema-specifications=2023.11.2=pyhd8ed1ab_0 + - jupyter_server_terminals=0.5.0=pyhd8ed1ab_0 + - liblapacke=3.9.0=20_linuxaarch64_openblas + - numpy=1.26.2=py39h91c28bb_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 + - suitesparse=5.10.1=h1404dd6_1 + - xorg-libxtst=1.2.3=hf897c2e_1002 + - argon2-cffi=23.1.0=pyhd8ed1ab_0 + - blas-devel=3.9.0=20_linuxaarch64_openblas + - contourpy=1.2.0=py39hd16970a_0 + - cvxopt=1.3.2=py39h9d7d0b6_1 + - fpylll=0.6.0=py39h97065f7_1 + - giac=1.9.0.21=h04922a4_1 + - igraph=0.9.10=hefb87a8_1 + - ipython=8.18.1=pyh707e725_3 + - isoduration=20.11.0=pyhd8ed1ab_0 + - jsonschema=4.20.0=pyhd8ed1ab_0 + - jupyter_client=8.6.0=pyhd8ed1ab_0 + - linbox=1.6.3=h681a5ee_8 + - openjdk=17.0.3=h1a274e0_5 + - pango=1.50.14=h1f1e9b3_0 + - pythran=0.14.0=py39hc2250db_1 + - scipy=1.11.3=py39h91c28bb_1 + - setuptools_scm=8.0.4=hd8ed1ab_0 + - tox=4.11.4=pyhd8ed1ab_0 + - blas=2.120=openblas + - ipykernel=6.26.0=pyhf8b6a83_0 + - ipywidgets=8.1.1=pyhd8ed1ab_0 + - jmol=14.32.10=h8af1aa0_0 + - jsonschema-with-format-nongpl=4.20.0=pyhd8ed1ab_0 + - matplotlib-base=3.8.2=py39h8e43113_0 + - nbformat=5.9.2=pyhd8ed1ab_0 + - r-base=4.2.3=h620ca72_0 + - rw=0.9=hf897c2e_0 + - ipympl=0.9.3=pyhd8ed1ab_0 + - jupyter-jsmol=2022.1.0=pyhd8ed1ab_0 + - jupyter_events=0.9.0=pyhd8ed1ab_0 + - matplotlib=3.8.2=py39ha65689a_0 + - nbclient=0.8.0=pyhd8ed1ab_0 + - rpy2=3.5.11=py39r42h1ae4408_3 + - nbconvert-core=7.13.0=pyhd8ed1ab_0 + - jupyter_server=2.12.1=pyhd8ed1ab_0 + - nbconvert-pandoc=7.13.0=pyhd8ed1ab_0 + - jupyter-lsp=2.2.1=pyhd8ed1ab_0 + - jupyterlab_server=2.25.2=pyhd8ed1ab_0 + - nbconvert=7.13.0=pyhd8ed1ab_0 + - notebook-shim=0.2.3=pyhd8ed1ab_0 + - jupyterlab=4.0.9=pyhd8ed1ab_0 + - notebook=7.0.6=pyhd8ed1ab_0 + - jupyter_sphinx=0.1.4=py_0 + - sphinx-basic-ng=1.0.0b2=pyhd8ed1ab_1 + - furo=2023.9.10=pyhd8ed1ab_0 + - sphinx-copybutton=0.5.2=pyhd8ed1ab_0 + - sphinxcontrib-applehelp=1.0.7=pyhd8ed1ab_0 + - sphinxcontrib-devhelp=1.0.5=pyhd8ed1ab_0 + - sphinxcontrib-htmlhelp=2.0.4=pyhd8ed1ab_0 + - sphinxcontrib-qthelp=1.0.6=pyhd8ed1ab_0 + - sphinx=7.2.6=pyhd8ed1ab_0 + - sphinxcontrib-serializinghtml=1.1.9=pyhd8ed1ab_0 + - sphinxcontrib-websupport=1.2.6=pyhd8ed1ab_0 diff --git a/src/environment-3.9-linux.yml b/src/environment-3.9-linux.yml new file mode 100644 index 00000000000..70d7997cd8a --- /dev/null +++ b/src/environment-3.9-linux.yml @@ -0,0 +1,466 @@ +# Generated by conda-lock. +# platform: linux-64 +# input_hash: cf46d2d682195a8c349346d85d02cb8a0a60e706951ffa7cfc2487f915d1f0e4 + +channels: + - conda-forge +dependencies: + - _libgcc_mutex=0.1=conda_forge + - _r-mutex=1.0.1=anacondar_1 + - 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=h77eed37_1 + - kernel-headers_linux-64=2.6.32=he073ed8_16 + - ld_impl_linux-64=2.40=h41732ed_0 + - libboost-headers=1.84.0=ha770c72_0 + - libgcc-devel_linux-64=12.3.0=h8bca6fd_103 + - libstdcxx-devel_linux-64=12.3.0=h8bca6fd_103 + - libstdcxx-ng=13.2.0=h7e041cc_3 + - mathjax=3.2.2=ha770c72_0 + - 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 + - libgomp=13.2.0=h807b86a_3 + - 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_2 + - _openmp_mutex=4.5=2_kmp_llvm + - libgcc-ng=13.2.0=h807b86a_3 + - alsa-lib=1.2.10=hd590300_0 + - attr=2.5.1=h166bdaf_1 + - bc=1.07.1=h7f98852_0 + - bdw-gc=8.0.6=h4bd325d_0 + - bzip2=1.0.8=hd590300_5 + - c-ares=1.24.0=hd590300_0 + - cliquer=1.22=h36c2ea0_0 + - fribidi=1.0.10=h36c2ea0_0 + - gengetopt=2.23=h9c3ff4c_0 + - gettext=0.21.1=h27087fc_0 + - gf2x=1.3.0=ha476b99_2 + - giflib=5.2.1=h0b41bf4_3 + - gmp=6.3.0=h59595ed_0 + - graphite2=1.3.13=h58526e2_1001 + - icu=73.2=h59595ed_0 + - keyutils=1.6.1=h166bdaf_0 + - lame=3.100=h166bdaf_1003 + - lerc=4.0.0=h27087fc_0 + - libatomic_ops=7.6.14=h166bdaf_0 + - libbraiding=1.2=hcb278e6_0 + - libbrotlicommon=1.1.0=hd590300_1 + - libdeflate=1.19=hd590300_0 + - libev=4.33=hd590300_2 + - libexpat=2.5.0=hcb278e6_1 + - libffi=3.4.2=h7f98852_5 + - libgfortran5=13.2.0=ha4646dd_3 + - libiconv=1.17=hd590300_2 + - libjpeg-turbo=3.0.0=hd590300_1 + - libnsl=2.0.1=hd590300_0 + - libogg=1.3.4=h7f98852_1 + - libopus=1.3.1=h7f98852_1 + - libsanitizer=12.3.0=h0f45ef3_3 + - libsodium=1.0.18=h36c2ea0_1 + - libtool=2.4.7=h27087fc_0 + - libuuid=2.38.1=h0b41bf4_0 + - libuv=1.46.0=hd590300_0 + - libwebp-base=1.3.2=hd590300_0 + - libzlib=1.2.13=hd590300_5 + - lrcalc=2.1=h27087fc_5 + - lz4-c=1.9.4=hcb278e6_0 + - m4=1.4.18=h516909a_1001 + - make=4.3=hd18ef5c_1 + - metis=5.1.1=h59595ed_2 + - mpg123=1.32.3=h59595ed_0 + - nauty=2.8.8=hd590300_0 + - ncurses=6.4=h59595ed_2 + - ninja=1.11.1=h924138e_0 + - nspr=4.35=h27087fc_0 + - openssl=3.2.0=hd590300_1 + - palp=2.20=h36c2ea0_0 + - patch=2.7.6=h7f98852_1002 + - pixman=0.42.2=h59595ed_0 + - pkg-config=0.29.2=h36c2ea0_1008 + - planarity=3.0.0.5=h36c2ea0_1002 + - primesieve=11.1=h59595ed_0 + - pthread-stubs=0.4=h36c2ea0_1001 + - qhull=2020.2=h4bd325d_2 + - rhash=1.4.4=hd590300_0 + - sed=4.8=he412f7d_0 + - symmetrica=3.0.1=hcb278e6_0 + - xorg-inputproto=2.3.2=h7f98852_1002 + - xorg-kbproto=1.0.7=h7f98852_1002 + - xorg-libice=1.1.1=hd590300_0 + - xorg-libxau=1.0.11=hd590300_0 + - xorg-libxdmcp=1.1.3=h7f98852_0 + - xorg-recordproto=1.14.2=h7f98852_1002 + - xorg-renderproto=0.11.1=h7f98852_1002 + - xorg-xextproto=7.3.0=h0b41bf4_1003 + - xorg-xf86vidmodeproto=2.3.1=h7f98852_1002 + - xorg-xproto=7.0.31=h7f98852_1007 + - xz=5.2.6=h166bdaf_0 + - yaml=0.2.5=h7f98852_2 + - cddlib=1!0.94m=h9202a9a_0 + - ecm=7.0.4=h9202a9a_1002 + - expat=2.5.0=hcb278e6_1 + - gcc_impl_linux-64=12.3.0=he2b93b0_3 + - givaro=4.1.1=h192cbe9_1 + - glpk=5.0=h445213a_0 + - libbrotlidec=1.1.0=hd590300_1 + - libbrotlienc=1.1.0=hd590300_1 + - libcap=2.69=h0f662aa_0 + - libedit=3.1.20191231=he28a2e2_2 + - libevent=2.1.12=hf998b51_1 + - libflac=1.4.3=h59595ed_0 + - libgfortran-ng=13.2.0=h69a702a_3 + - libgpg-error=1.47=h71f35ed_0 + - libhomfly=1.02r6=h36c2ea0_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 + - libvorbis=1.3.7=h9c3ff4c_0 + - libxcb=1.15=h0b41bf4_0 + - 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.42=hcad00b1_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.13=noxft_h4845f30_101 + - xorg-fixesproto=5.0=h7f98852_1002 + - xorg-libsm=1.2.4=h7391055_0 + - zeromq=4.3.5=h59595ed_0 + - zlib=1.2.13=hd590300_5 + - zstd=1.5.5=hfc55251_0 + - autoconf=2.71=pl5321h2b4cb7a_1 + - brotli-bin=1.1.0=hd590300_1 + - bwidget=1.9.14=ha770c72_1 + - ecl=21.2.1=h9d73b02_2 + - fftw=3.3.10=nompi_hc118613_108 + - freetype=2.12.1=h267a509_2 + - gap-core=4.12.2=he9a28a4_3 + - gcc=12.3.0=h8d2909c_2 + - gcc_linux-64=12.3.0=h76fc315_2 + - gfan=0.6.2=hb86e20a_1003 + - gfortran_impl_linux-64=12.3.0=hfcedea8_3 + - gxx_impl_linux-64=12.3.0=he2b93b0_3 + - krb5=1.21.2=h659d440_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 + - libhwloc=2.9.3=default_h554bfaf_1009 + - libllvm15=15.0.7=h5cf9203_3 + - libopenblas=0.3.25=pthreads_h413a1c8_0 + - libsndfile=1.2.2=hc60ed4a_1 + - libtiff=4.6.0=ha9c0a0a_2 + - llvm-openmp=17.0.6=h4dfa4b3_0 + - m4ri=20140914=h7ca028e_1005 + - mpc=1.3.1=hfe3b2da_0 + - mpfi=1.5.4=h9f54685_1001 + - mysql-libs=8.0.33=hca2cd23_6 + - nss=3.96=h1d7d5a4_0 + - pandoc=3.1.3=h32600fe_0 + - pari=2.15.4=h4d4ae9b_2_pthread + - ppl=1.2=h6ec01c2_1006 + - python=3.9.18=h0755675_0_cpython + - qd=2.3.22=h2cc385e_1004 + - sqlite=3.44.2=h2c6b66d_0 + - tachyon=0.99b6=0 + - texinfo=7.0=pl5321h0f457ee_0 + - tktable=2.10=h0c5db8f_5 + - xcb-util=0.4.0=hd590300_1 + - xcb-util-keysyms=0.4.0=h8ee46fc_1 + - xcb-util-renderutil=0.3.9=hd590300_1 + - xcb-util-wm=0.4.1=h8ee46fc_1 + - xorg-libx11=1.8.7=h8ee46fc_0 + - alabaster=0.7.13=pyhd8ed1ab_0 + - appdirs=1.4.4=pyh9f0ad1d_0 + - appnope=0.1.3=pyhd8ed1ab_0 + - attrs=23.1.0=pyh71513ae_1 + - automake=1.16.5=pl5321ha770c72_0 + - brotli=1.1.0=hd590300_1 + - brotli-python=1.1.0=py39h3d6467e_1 + - c-compiler=1.6.0=hd590300_0 + - cached_property=1.5.2=pyha770c72_1 + - cachetools=5.3.2=pyhd8ed1ab_0 + - certifi=2023.11.17=pyhd8ed1ab_0 + - chardet=5.2.0=py39hf3d152e_1 + - 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.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.8=pyhd8ed1ab_0 + - docutils=0.20.1=py39hf3d152e_3 + - eclib=20231211=h96f522a_0 + - editables=0.3=pyhd8ed1ab_0 + - entrypoints=0.4=pyhd8ed1ab_0 + - exceptiongroup=1.2.0=pyhd8ed1ab_0 + - executing=2.0.1=pyhd8ed1ab_0 + - filelock=3.13.1=pyhd8ed1ab_0 + - flit-core=3.9.0=pyhd8ed1ab_0 + - fontconfig=2.14.2=h14ed4e7_0 + - fplll=5.4.5=h384768b_0 + - gap-defaults=4.12.2=ha770c72_3 + - gast=0.5.4=pyhd8ed1ab_0 + - gfortran=12.3.0=h499e0f7_2 + - gfortran_linux-64=12.3.0=h7fe76b4_2 + - glib-tools=2.78.3=hfc55251_0 + - gmpy2=2.1.2=py39h376b7d2_1 + - gxx=12.3.0=h8d2909c_2 + - gxx_linux-64=12.3.0=h8a814eb_2 + - idna=3.6=pyhd8ed1ab_0 + - imagesize=1.4.1=pyhd8ed1ab_0 + - ipython_genutils=0.2.0=py_1 + - json5=0.9.14=pyhd8ed1ab_0 + - jsonpointer=2.4=py39hf3d152e_3 + - jupyterlab_widgets=3.0.9=pyhd8ed1ab_0 + - kiwisolver=1.4.5=py39h7633fee_1 + - lcalc=2.0.5=h6a8a7c6_1 + - lcms2=2.16=hb7c19ff_0 + - libblas=3.9.0=20_linux64_openblas + - libboost-devel=1.84.0=h00ab1b0_0 + - libbrial=1.2.12=h3155cbd_1 + - libclang13=15.0.7=default_ha2b6cf4_4 + - libcups=2.3.3=h4637d8d_4 + - libcurl=8.5.0=hca28451_0 + - libpq=16.1=h33b98f1_7 + - libsystemd0=255=h3516f8a_0 + - libwebp=1.3.2=h658648e_1 + - m4rie=20150908=h7ca028e_1001 + - markupsafe=2.1.3=py39hd1e30aa_1 + - maxima=5.47.0=hed6455c_1 + - mistune=3.0.2=pyhd8ed1ab_0 + - mpmath=1.3.0=pyhd8ed1ab_0 + - munkres=1.1.4=pyh9f0ad1d_0 + - nest-asyncio=1.5.8=pyhd8ed1ab_0 + - networkx=3.2.1=pyhd8ed1ab_0 + - openblas=0.3.25=pthreads_h7a3da1a_0 + - openjpeg=2.5.0=h488ebb8_3 + - packaging=23.2=pyhd8ed1ab_0 + - pandocfilters=1.5.0=pyhd8ed1ab_0 + - parso=0.8.3=pyhd8ed1ab_0 + - pathspec=0.12.1=pyhd8ed1ab_0 + - pickleshare=0.7.5=py_1003 + - pkgconfig=1.5.5=pyhd8ed1ab_4 + - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 + - platformdirs=4.1.0=pyhd8ed1ab_0 + - pluggy=1.3.0=pyhd8ed1ab_0 + - ply=3.11=py_1 + - prometheus_client=0.19.0=pyhd8ed1ab_0 + - psutil=5.9.7=py39hd1e30aa_0 + - ptyprocess=0.7.0=pyhd3deb0d_0 + - pure_eval=0.2.2=pyhd8ed1ab_0 + - py=1.11.0=pyh6c4a22f_0 + - pybind11-global=2.11.1=py39h7633fee_2 + - pycparser=2.21=pyhd8ed1ab_0 + - pygments=2.17.2=pyhd8ed1ab_0 + - pyparsing=3.1.1=pyhd8ed1ab_0 + - pyrsistent=0.20.0=py39hd1e30aa_0 + - pysocks=1.7.1=pyha2e5f31_6 + - python-fastjsonschema=2.19.0=pyhd8ed1ab_0 + - python-json-logger=2.0.7=pyhd8ed1ab_0 + - python-lrcalc=2.1=py39h5a03fae_5 + - python-tzdata=2023.3=pyhd8ed1ab_0 + - pytz=2023.3.post1=pyhd8ed1ab_0 + - pyyaml=6.0.1=py39hd1e30aa_1 + - pyzmq=25.1.2=py39h8c080ef_0 + - rfc3986-validator=0.1.1=pyh9f0ad1d_0 + - rpds-py=0.15.2=py39h9fdd4d6_0 + - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 + - sagetex=3.6.1=pyhd8ed1ab_0 + - send2trash=1.8.2=pyh41d4057_0 + - setuptools=68.2.2=pyhd8ed1ab_0 + - simplegeneric=0.8.1=py_1 + - singular=4.3.2.p8=h33f5c3f_1 + - six=1.16.0=pyh6c4a22f_0 + - sniffio=1.3.0=pyhd8ed1ab_0 + - snowballstemmer=2.2.0=pyhd8ed1ab_0 + - soupsieve=2.5=pyhd8ed1ab_1 + - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_0 + - sympow=2.023.6=hc6ab17c_3 + - tbb=2021.11.0=h00ab1b0_0 + - toml=0.10.2=pyhd8ed1ab_0 + - tomli=2.0.1=pyhd8ed1ab_0 + - tornado=6.3.3=py39hd1e30aa_1 + - traitlets=5.14.0=pyhd8ed1ab_0 + - trove-classifiers=2023.11.29=pyhd8ed1ab_0 + - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 + - typing_extensions=4.9.0=pyha770c72_0 + - typing_utils=0.1.0=pyhd8ed1ab_0 + - tzlocal=5.2=py39hf3d152e_0 + - unicodedata2=15.1.0=py39hd1e30aa_0 + - uri-template=1.3.0=pyhd8ed1ab_0 + - wcwidth=0.2.12=pyhd8ed1ab_0 + - webcolors=1.13=pyhd8ed1ab_0 + - webencodings=0.5.1=pyhd8ed1ab_2 + - websocket-client=1.7.0=pyhd8ed1ab_0 + - wheel=0.42.0=pyhd8ed1ab_0 + - widgetsnbextension=4.0.9=pyhd8ed1ab_0 + - xcb-util-image=0.4.0=h8ee46fc_1 + - xkeyboard-config=2.40=hd590300_0 + - xorg-libxext=1.3.4=h0b41bf4_2 + - xorg-libxfixes=5.0.3=h7f98852_1004 + - xorg-libxrender=0.9.11=hd590300_0 + - xorg-libxt=1.3.0=hd590300_1 + - zipp=3.17.0=pyhd8ed1ab_0 + - anyio=4.2.0=pyhd8ed1ab_0 + - asttokens=2.4.1=pyhd8ed1ab_0 + - async-lru=2.0.4=pyhd8ed1ab_0 + - babel=2.14.0=pyhd8ed1ab_0 + - beautifulsoup4=4.12.2=pyha770c72_0 + - beniget=0.4.1=pyhd8ed1ab_0 + - bleach=6.1.0=pyhd8ed1ab_0 + - boost-cpp=1.84.0=h44aadfe_0 + - brial=1.2.12=pyh694c41f_1 + - cached-property=1.5.2=hd8ed1ab_1 + - cairo=1.18.0=h3faef2a_0 + - cffi=1.16.0=py39h7a31438_0 + - cmake=3.28.1=hcfe8598_0 + - comm=0.1.4=pyhd8ed1ab_0 + - cppy=1.2.1=pyhd8ed1ab_0 + - curl=8.5.0=hca28451_0 + - cxx-compiler=1.6.0=h00ab1b0_0 + - cypari2=2.1.3=py39h1698a45_2 + - deprecation=2.1.0=pyh9f0ad1d_0 + - fonttools=4.47.0=py39hd1e30aa_0 + - fortran-compiler=1.6.0=heb67821_0 + - glib=2.78.3=hfc55251_0 + - importlib-metadata=7.0.0=pyha770c72_0 + - importlib_resources=6.1.1=pyhd8ed1ab_0 + - jedi=0.19.1=pyhd8ed1ab_0 + - jinja2=3.1.2=pyhd8ed1ab_1 + - jupyter_core=5.5.1=py39hf3d152e_0 + - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 + - libcblas=3.9.0=20_linux64_openblas + - libclang=15.0.7=default_hb11cfb5_4 + - libgd=2.3.3=h119a65a_9 + - liblapack=3.9.0=20_linux64_openblas + - libxkbcommon=1.6.0=h5d7e998_0 + - matplotlib-inline=0.1.6=pyhd8ed1ab_0 + - memory-allocator=0.1.3=py39hd1e30aa_0 + - overrides=7.4.0=pyhd8ed1ab_0 + - pexpect=4.8.0=pyh1a96a4e_2 + - pillow=10.1.0=py39had0adad_0 + - pip=23.3.2=pyhd8ed1ab_0 + - pplpy=0.8.9=py39hba3e9e5_0 + - primecountpy=0.1.0=py39h7633fee_4 + - prompt-toolkit=3.0.42=pyha770c72_0 + - pulseaudio-client=16.1=hb77b528_5 + - pybind11=2.11.1=py39h7633fee_2 + - pyproject-api=1.6.1=pyhd8ed1ab_0 + - python-dateutil=2.8.2=pyhd8ed1ab_0 + - pytz-deprecation-shim=0.1.0.post0=py39hf3d152e_4 + - referencing=0.32.0=pyhd8ed1ab_0 + - rfc3339-validator=0.1.4=pyhd8ed1ab_0 + - sip=6.7.12=py39h3d6467e_0 + - sympy=1.12=pypyh9d50eac_103 + - terminado=0.18.0=pyh0d859eb_0 + - tinycss2=1.2.1=pyhd8ed1ab_0 + - typing-extensions=4.9.0=hd8ed1ab_0 + - urllib3=2.1.0=pyhd8ed1ab_0 + - virtualenv=20.25.0=pyhd8ed1ab_0 + - xorg-libxi=1.7.10=h7f98852_0 + - argon2-cffi-bindings=21.2.0=py39hd1e30aa_4 + - arpack=3.8.0=nompi_h0baa96a_101 + - arrow=1.3.0=pyhd8ed1ab_0 + - compilers=1.6.0=ha770c72_0 + - dsdp=5.8=hd9d9efa_1203 + - fflas-ffpack=2.4.3=h912ac81_2 + - fqdn=1.5.1=pyhd8ed1ab_0 + - gsl=2.7=he838d99_0 + - gstreamer=1.22.8=h98fc4e7_0 + - harfbuzz=8.3.0=h3d44ed6_0 + - hatchling=1.21.0=pyhd8ed1ab_0 + - iml=1.0.5=hd75c201_1003 + - importlib-resources=6.1.1=pyhd8ed1ab_0 + - importlib_metadata=7.0.0=hd8ed1ab_0 + - jsonschema-specifications=2023.11.2=pyhd8ed1ab_0 + - jupyter_server_terminals=0.5.0=pyhd8ed1ab_0 + - liblapacke=3.9.0=20_linux64_openblas + - numpy=1.26.2=py39h474f0d3_0 + - prompt_toolkit=3.0.42=hd8ed1ab_0 + - pyqt5-sip=12.12.2=py39h3d6467e_5 + - requests=2.31.0=pyhd8ed1ab_0 + - setuptools-scm=8.0.4=pyhd8ed1ab_0 + - stack_data=0.6.2=pyhd8ed1ab_0 + - suitesparse=5.10.1=h3ec001c_2 + - xorg-libxtst=1.2.3=h7f98852_1002 + - argon2-cffi=23.1.0=pyhd8ed1ab_0 + - blas-devel=3.9.0=20_linux64_openblas + - contourpy=1.2.0=py39h7633fee_0 + - cvxopt=1.3.2=py39hef4d4b4_1 + - fpylll=0.6.0=py39h2525e16_1 + - giac=1.9.0.21=h673759e_1 + - gst-plugins-base=1.22.8=h8e1006c_0 + - igraph=0.10.8=h66a01bf_0 + - ipython=8.18.1=pyh707e725_3 + - isoduration=20.11.0=pyhd8ed1ab_0 + - jsonschema=4.20.0=pyhd8ed1ab_0 + - jupyter_client=8.6.0=pyhd8ed1ab_0 + - linbox=1.6.3=ha329b40_8 + - openjdk=21.0.1=haa376d0_0 + - pango=1.50.14=ha41ecd1_2 + - pythran=0.14.0=py39hda80f44_1 + - scipy=1.11.4=py39h474f0d3_0 + - setuptools_scm=8.0.4=hd8ed1ab_0 + - tox=4.11.4=pyhd8ed1ab_0 + - blas=2.120=openblas + - ipykernel=6.26.0=pyhf8b6a83_0 + - ipywidgets=8.1.1=pyhd8ed1ab_0 + - jmol=14.32.10=ha770c72_0 + - jsonschema-with-format-nongpl=4.20.0=pyhd8ed1ab_0 + - matplotlib-base=3.8.2=py39he9076e7_0 + - nbformat=5.9.2=pyhd8ed1ab_0 + - qt-main=5.15.8=h82b777d_17 + - r-base=4.3.2=hb8ee39d_1 + - rw=0.9=hd590300_1 + - ipympl=0.9.3=pyhd8ed1ab_0 + - jupyter-jsmol=2022.1.0=pyhd8ed1ab_0 + - jupyter_events=0.9.0=pyhd8ed1ab_0 + - nbclient=0.8.0=pyhd8ed1ab_0 + - pyqt=5.15.9=py39h52134e7_5 + - rpy2=3.5.11=py39r43h44dd56e_3 + - matplotlib=3.8.2=py39hf3d152e_0 + - nbconvert-core=7.13.0=pyhd8ed1ab_0 + - jupyter_server=2.12.1=pyhd8ed1ab_0 + - nbconvert-pandoc=7.13.0=pyhd8ed1ab_0 + - jupyter-lsp=2.2.1=pyhd8ed1ab_0 + - jupyterlab_server=2.25.2=pyhd8ed1ab_0 + - nbconvert=7.13.0=pyhd8ed1ab_0 + - notebook-shim=0.2.3=pyhd8ed1ab_0 + - jupyterlab=4.0.9=pyhd8ed1ab_0 + - notebook=7.0.6=pyhd8ed1ab_0 + - jupyter_sphinx=0.4.0=py39hf3d152e_1 + - sphinx-basic-ng=1.0.0b2=pyhd8ed1ab_1 + - furo=2023.9.10=pyhd8ed1ab_0 + - sphinx-copybutton=0.5.2=pyhd8ed1ab_0 + - sphinxcontrib-applehelp=1.0.7=pyhd8ed1ab_0 + - sphinxcontrib-devhelp=1.0.5=pyhd8ed1ab_0 + - sphinxcontrib-htmlhelp=2.0.4=pyhd8ed1ab_0 + - sphinxcontrib-qthelp=1.0.6=pyhd8ed1ab_0 + - sphinx=7.2.6=pyhd8ed1ab_0 + - sphinxcontrib-serializinghtml=1.1.9=pyhd8ed1ab_0 + - sphinxcontrib-websupport=1.2.6=pyhd8ed1ab_0 diff --git a/src/environment-3.9-macos-arm64.yml b/src/environment-3.9-macos-arm64.yml new file mode 100644 index 00000000000..6af744a1e51 --- /dev/null +++ b/src/environment-3.9-macos-arm64.yml @@ -0,0 +1,402 @@ +# Generated by conda-lock. +# platform: osx-arm64 +# input_hash: 3217982931fe463e0fc64378cd433a690e3db009dc5b1eb97f9e18a0bee0e75a + +channels: + - conda-forge +dependencies: + - _r-mutex=1.0.1=anacondar_1 + - bc=1.07.1=h3422bc3_0 + - bzip2=1.0.8=h93a5062_5 + - c-ares=1.24.0=h93a5062_0 + - ca-certificates=2023.11.17=hf0a4a13_0 + - cliquer=1.22=h27ca646_0 + - font-ttf-dejavu-sans-mono=2.37=hab24e00_0 + - font-ttf-inconsolata=3.000=h77eed37_0 + - font-ttf-source-code-pro=2.038=h77eed37_0 + - font-ttf-ubuntu=0.83=h77eed37_1 + - fribidi=1.0.10=h27ca646_0 + - giflib=5.2.1=h1a8c8d9_3 + - jpeg=9e=h1a8c8d9_3 + - libatomic_ops=7.6.14=h1a8c8d9_0 + - libbrotlicommon=1.1.0=hb547adb_1 + - libcxx=16.0.6=h4653b0c_0 + - libdeflate=1.17=h1a8c8d9_0 + - libev=4.33=h93a5062_2 + - libexpat=2.5.0=hb7217d7_1 + - libffi=3.4.2=h3422bc3_5 + - libgfortran-devel_osx-arm64=12.3.0=hc62be1c_1 + - libiconv=1.17=h0d3ecfb_2 + - 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.6=hcd81f8e_0 + - m4=1.4.18=h642e427_1001 + - make=4.3=he57ea6c_1 + - mathjax=3.2.2=hce30654_0 + - nauty=2.8.8=h93a5062_0 + - 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 + - tbb=2021.10.0=h1995070_2 + - 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.3.0=h965bd2d_0 + - graphite2=1.3.13=h9f76cd9_1001 + - icu=70.1=h6b3803e_0 + - isl=0.25=h9a09cb3_0 + - lerc=4.0.0=h9a09cb3_0 + - libbraiding=1.2=hb7217d7_0 + - libbrotlidec=1.1.0=hb547adb_1 + - libbrotlienc=1.1.0=hb547adb_1 + - libgfortran5=13.2.0=hf226fd6_1 + - libpng=1.6.39=h76d750c_0 + - libsqlite=3.44.2=h091b4b1_0 + - libxcb=1.13=h9b22ae9_1004 + - lrcalc=2.1=hb7217d7_5 + - metis=5.1.1=h965bd2d_2 + - ncurses=6.4=h463b476_2 + - ninja=1.11.1=hffc8910_0 + - openjdk=21.0.1=hed44d8b_0 + - openssl=3.2.0=h0d3ecfb_1 + - 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 + - symmetrica=3.0.1=hb7217d7_0 + - tapi=1100.0.11=he4954df_0 + - tar=1.34=h7cb298e_1 + - threejs-sage=122=hd8ed1ab_2 + - tk=8.6.13=h5083fa2_1 + - zeromq=4.3.5=h965bd2d_0 + - zlib=1.2.13=h53f4e23_5 + - zstd=1.5.5=h4f39d0f_0 + - automake=1.16.5=pl5321hce30654_0 + - boost-cpp=1.81.0=hf96b251_0 + - brotli-bin=1.1.0=hb547adb_1 + - bwidget=1.9.14=hce30654_1 + - cddlib=1!0.94m=h6d7a090_0 + - ecm=7.0.4=h47c7c1a_1002 + - fonts-conda-ecosystem=1=0 + - freetype=2.12.1=hadb7bae_2 + - givaro=4.1.1=h0cdca34_3 + - glpk=5.0=h6d7a090_0 + - jmol=14.32.10=hce30654_0 + - libedit=3.1.20191231=hc8eb9b7_2 + - 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_1 + - 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.1=h9546428_0 + - ntl=11.4.3=hbb3f309_1 + - primecount=7.6=hb6e4faa_0 + - readline=8.2=h92ec313_1 + - sigtool=0.1.3=h44b9a77_0 + - tachyon=0.99b6=hfb72b2a_1001 + - texinfo=7.0=pl5321h9ea1dce_0 + - tktable=2.10=hd996620_5 + - brotli=1.1.0=hb547adb_1 + - ecl=21.2.1=h8492d4d_2 + - fftw=3.3.10=nompi_h3046061_108 + - fontconfig=2.14.2=h82840c6_0 + - gap-core=4.12.2=he8f4e70_3 + - gfan=0.6.2=hec08f5c_1003 + - krb5=1.20.1=h69eda48_0 + - lcms2=2.15=h481adae_0 + - libbrial=1.2.12=ha7f5006_1 + - 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 + - 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 + - attrs=23.1.0=pyh71513ae_1 + - brial=1.2.12=pyh694c41f_1 + - brotli-python=1.1.0=py39hb198ff7_1 + - cached_property=1.5.2=pyha770c72_1 + - cachetools=5.3.2=pyhd8ed1ab_0 + - cairo=1.16.0=h73a0509_1014 + - certifi=2023.11.17=pyhd8ed1ab_0 + - chardet=5.2.0=py39h2804cbe_1 + - 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.7=py39hf3050f2_0 + - debugpy=1.8.0=py39hb198ff7_1 + - decorator=5.1.1=pyhd8ed1ab_0 + - defusedxml=0.7.1=pyhd8ed1ab_0 + - distlib=0.3.8=pyhd8ed1ab_0 + - docutils=0.20.1=py39h2804cbe_3 + - eclib=20231211=h7f07de4_0 + - editables=0.3=pyhd8ed1ab_0 + - entrypoints=0.4=pyhd8ed1ab_0 + - exceptiongroup=1.2.0=pyhd8ed1ab_0 + - executing=2.0.1=pyhd8ed1ab_0 + - filelock=3.13.1=pyhd8ed1ab_0 + - flit-core=3.9.0=pyhd8ed1ab_0 + - fplll=5.4.5=hb7d509d_0 + - gap-defaults=4.12.2=hce30654_3 + - gast=0.5.4=pyhd8ed1ab_0 + - gfortran_impl_osx-arm64=12.3.0=hbbb9e1e_1 + - gmpy2=2.1.2=py39h0b4f9c6_1 + - idna=3.6=pyhd8ed1ab_0 + - imagesize=1.4.1=pyhd8ed1ab_0 + - ipython_genutils=0.2.0=py_1 + - json5=0.9.14=pyhd8ed1ab_0 + - jsonpointer=2.4=py39h2804cbe_3 + - jupyterlab_widgets=3.0.9=pyhd8ed1ab_0 + - kiwisolver=1.4.5=py39hbd775c9_1 + - lcalc=2.0.5=hc94e8e6_1 + - ld64_osx-arm64=609=hc4dc95b_15 + - libblas=3.9.0=20_osxarm64_openblas + - libclang-cpp15=15.0.7=default_hd209bcb_4 + - libcurl=8.1.2=h912dcd9_0 + - libgd=2.3.3=h90fb8ed_4 + - llvm-tools=15.0.7=h62b9111_1 + - markupsafe=2.1.3=py39h0f82c59_1 + - maxima=5.45.0=h6032a66_2 + - mistune=3.0.2=pyhd8ed1ab_0 + - mpmath=1.3.0=pyhd8ed1ab_0 + - munkres=1.1.4=pyh9f0ad1d_0 + - nest-asyncio=1.5.8=pyhd8ed1ab_0 + - networkx=3.2.1=pyhd8ed1ab_0 + - openblas=0.3.25=openmp_h55c453e_0 + - packaging=23.2=pyhd8ed1ab_0 + - pandocfilters=1.5.0=pyhd8ed1ab_0 + - parso=0.8.3=pyhd8ed1ab_0 + - pathspec=0.12.1=pyhd8ed1ab_0 + - pickleshare=0.7.5=py_1003 + - pillow=9.4.0=py39h8bd98a6_1 + - pkgconfig=1.5.5=pyhd8ed1ab_4 + - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 + - platformdirs=4.1.0=pyhd8ed1ab_0 + - pluggy=1.3.0=pyhd8ed1ab_0 + - ply=3.11=py_1 + - prometheus_client=0.19.0=pyhd8ed1ab_0 + - psutil=5.9.7=py39h17cfd9d_0 + - ptyprocess=0.7.0=pyhd3deb0d_0 + - pure_eval=0.2.2=pyhd8ed1ab_0 + - py=1.11.0=pyh6c4a22f_0 + - pybind11-global=2.11.1=py39hbd775c9_2 + - pycparser=2.21=pyhd8ed1ab_0 + - pygments=2.17.2=pyhd8ed1ab_0 + - pyparsing=3.1.1=pyhd8ed1ab_0 + - pyrsistent=0.20.0=py39h17cfd9d_0 + - pysocks=1.7.1=pyha2e5f31_6 + - python-fastjsonschema=2.19.0=pyhd8ed1ab_0 + - python-json-logger=2.0.7=pyhd8ed1ab_0 + - python-lrcalc=2.1=py39h23fbdae_5 + - python-tzdata=2023.3=pyhd8ed1ab_0 + - pytz=2023.3.post1=pyhd8ed1ab_0 + - pyyaml=6.0.1=py39h0f82c59_1 + - pyzmq=25.1.2=py39he1e2164_0 + - rfc3986-validator=0.1.1=pyh9f0ad1d_0 + - rpds-py=0.15.2=py39h8fec3ad_0 + - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 + - sagetex=3.6.1=pyhd8ed1ab_0 + - setuptools=68.2.2=pyhd8ed1ab_0 + - simplegeneric=0.8.1=py_1 + - singular=4.3.2.p8=hb460b52_1 + - six=1.16.0=pyh6c4a22f_0 + - sniffio=1.3.0=pyhd8ed1ab_0 + - snowballstemmer=2.2.0=pyhd8ed1ab_0 + - soupsieve=2.5=pyhd8ed1ab_1 + - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_0 + - sympow=2.023.6=hb0babe8_3 + - tomli=2.0.1=pyhd8ed1ab_0 + - tornado=6.3.3=py39h0f82c59_1 + - traitlets=5.14.0=pyhd8ed1ab_0 + - trove-classifiers=2023.11.29=pyhd8ed1ab_0 + - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 + - typing_extensions=4.9.0=pyha770c72_0 + - typing_utils=0.1.0=pyhd8ed1ab_0 + - tzlocal=5.2=py39h2804cbe_0 + - unicodedata2=15.1.0=py39h0f82c59_0 + - uri-template=1.3.0=pyhd8ed1ab_0 + - wcwidth=0.2.12=pyhd8ed1ab_0 + - webcolors=1.13=pyhd8ed1ab_0 + - webencodings=0.5.1=pyhd8ed1ab_2 + - websocket-client=1.7.0=pyhd8ed1ab_0 + - wheel=0.42.0=pyhd8ed1ab_0 + - widgetsnbextension=4.0.9=pyhd8ed1ab_0 + - zipp=3.17.0=pyhd8ed1ab_0 + - anyio=4.2.0=pyhd8ed1ab_0 + - asttokens=2.4.1=pyhd8ed1ab_0 + - async-lru=2.0.4=pyhd8ed1ab_0 + - babel=2.14.0=pyhd8ed1ab_0 + - beautifulsoup4=4.12.2=pyha770c72_0 + - beniget=0.4.1=pyhd8ed1ab_0 + - bleach=6.1.0=pyhd8ed1ab_0 + - cached-property=1.5.2=hd8ed1ab_1 + - cctools_osx-arm64=973.0.1=h2a25c60_15 + - cffi=1.16.0=py39he153c15_0 + - clang-15=15.0.7=default_hd209bcb_4 + - cmake=3.26.4=hc0af03a_0 + - comm=0.1.4=pyhd8ed1ab_0 + - cppy=1.2.1=pyhd8ed1ab_0 + - curl=8.1.2=h912dcd9_0 + - cypari2=2.1.3=py39h7462d2a_2 + - deprecation=2.1.0=pyh9f0ad1d_0 + - fonttools=4.47.0=py39h17cfd9d_0 + - harfbuzz=6.0.0=hddbc195_0 + - importlib-metadata=7.0.0=pyha770c72_0 + - importlib_resources=6.1.1=pyhd8ed1ab_0 + - jedi=0.19.1=pyhd8ed1ab_0 + - jinja2=3.1.2=pyhd8ed1ab_1 + - jupyter_core=5.5.1=py39h2804cbe_0 + - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 + - ld64=609=h89fa09d_15 + - libcblas=3.9.0=20_osxarm64_openblas + - liblapack=3.9.0=20_osxarm64_openblas + - matplotlib-inline=0.1.6=pyhd8ed1ab_0 + - memory-allocator=0.1.3=py39h0f82c59_0 + - overrides=7.4.0=pyhd8ed1ab_0 + - pexpect=4.8.0=pyh1a96a4e_2 + - pip=23.3.2=pyhd8ed1ab_0 + - pplpy=0.8.9=py39haf103f8_0 + - primecountpy=0.1.0=py39hbd775c9_4 + - prompt-toolkit=3.0.42=pyha770c72_0 + - pybind11=2.11.1=py39hbd775c9_2 + - pyobjc-core=10.1=py39hb167abd_0 + - pyproject-api=1.6.1=pyhd8ed1ab_0 + - python-dateutil=2.8.2=pyhd8ed1ab_0 + - pytz-deprecation-shim=0.1.0.post0=py39h2804cbe_4 + - referencing=0.32.0=pyhd8ed1ab_0 + - rfc3339-validator=0.1.4=pyhd8ed1ab_0 + - sympy=1.12=pypyh9d50eac_103 + - terminado=0.18.0=pyh31c8845_0 + - tinycss2=1.2.1=pyhd8ed1ab_0 + - typing-extensions=4.9.0=hd8ed1ab_0 + - urllib3=2.1.0=pyhd8ed1ab_0 + - virtualenv=20.25.0=pyhd8ed1ab_0 + - argon2-cffi-bindings=21.2.0=py39h0f82c59_4 + - arpack=3.7.0=h58ebc17_2 + - arrow=1.3.0=pyhd8ed1ab_0 + - cctools=973.0.1=hd1ac623_15 + - clang=15.0.7=haab561b_4 + - dsdp=5.8=h9397a75_1203 + - fflas-ffpack=2.4.3=h11f2abc_2 + - fqdn=1.5.1=pyhd8ed1ab_0 + - gsl=2.7=h6e638da_0 + - hatchling=1.21.0=pyhd8ed1ab_0 + - iml=1.0.5=hd52f0d1_1003 + - importlib-resources=6.1.1=pyhd8ed1ab_0 + - importlib_metadata=7.0.0=hd8ed1ab_0 + - jsonschema-specifications=2023.11.2=pyhd8ed1ab_0 + - jupyter_server_terminals=0.5.0=pyhd8ed1ab_0 + - liblapacke=3.9.0=20_osxarm64_openblas + - numpy=1.26.2=py39heee92a0_0 + - pango=1.50.14=h6c112b8_0 + - prompt_toolkit=3.0.42=hd8ed1ab_0 + - pyobjc-framework-cocoa=10.1=py39hb167abd_0 + - requests=2.31.0=pyhd8ed1ab_0 + - setuptools-scm=8.0.4=pyhd8ed1ab_0 + - stack_data=0.6.2=pyhd8ed1ab_0 + - suitesparse=5.10.1=h88be0ae_2 + - argon2-cffi=23.1.0=pyhd8ed1ab_0 + - blas-devel=3.9.0=20_osxarm64_openblas + - clangxx=15.0.7=default_h5c94ee4_4 + - contourpy=1.2.0=py39he9de807_0 + - cvxopt=1.3.2=py39h76eeb2c_1 + - fpylll=0.6.0=py39h947550b_1 + - giac=1.9.0.21=h1c96721_1 + - igraph=0.9.10=hcec9b84_1 + - ipython=8.18.1=pyh707e725_3 + - isoduration=20.11.0=pyhd8ed1ab_0 + - jsonschema=4.20.0=pyhd8ed1ab_0 + - jupyter_client=8.6.0=pyhd8ed1ab_0 + - linbox=1.6.3=h380be0f_8 + - scipy=1.11.4=py39h36c428d_0 + - send2trash=1.8.2=pyhd1c38e8_0 + - setuptools_scm=8.0.4=hd8ed1ab_0 + - tox=4.11.4=pyhd8ed1ab_0 + - blas=2.120=openblas + - compiler-rt_osx-arm64=15.0.7=h3808999_2 + - ipykernel=6.26.0=pyh3cd1d5f_0 + - ipywidgets=8.1.1=pyhd8ed1ab_0 + - jsonschema-with-format-nongpl=4.20.0=pyhd8ed1ab_0 + - matplotlib-base=3.8.2=py39h1a09f3e_0 + - nbformat=5.9.2=pyhd8ed1ab_0 + - rw=0.9=h3422bc3_0 + - compiler-rt=15.0.7=h3808999_2 + - ipympl=0.9.3=pyhd8ed1ab_0 + - jupyter-jsmol=2022.1.0=pyhd8ed1ab_0 + - jupyter_events=0.9.0=pyhd8ed1ab_0 + - matplotlib=3.8.2=py39hdf13c20_0 + - nbclient=0.8.0=pyhd8ed1ab_0 + - clang_impl_osx-arm64=15.0.7=h77e971b_7 + - nbconvert-core=7.13.0=pyhd8ed1ab_0 + - clang_osx-arm64=15.0.7=h54d7cd3_7 + - jupyter_server=2.12.1=pyhd8ed1ab_0 + - nbconvert-pandoc=7.13.0=pyhd8ed1ab_0 + - c-compiler=1.6.0=hd291e01_0 + - clangxx_impl_osx-arm64=15.0.7=h768a7fd_7 + - gfortran_osx-arm64=12.3.0=h57527a5_1 + - jupyter-lsp=2.2.1=pyhd8ed1ab_0 + - jupyterlab_server=2.25.2=pyhd8ed1ab_0 + - nbconvert=7.13.0=pyhd8ed1ab_0 + - notebook-shim=0.2.3=pyhd8ed1ab_0 + - clangxx_osx-arm64=15.0.7=h54d7cd3_7 + - gfortran=12.3.0=h1ca8e4b_1 + - jupyterlab=4.0.9=pyhd8ed1ab_0 + - cxx-compiler=1.6.0=h1995070_0 + - fortran-compiler=1.6.0=h5a50232_0 + - notebook=7.0.6=pyhd8ed1ab_0 + - pythran=0.14.0=py39h819cc4c_1 + - r-base=4.1.3=h9c4d319_6 + - compilers=1.6.0=hce30654_0 + - rpy2=3.5.11=py39r41hf9b1952_0 + - jupyter_sphinx=0.1.4=py_0 + - sphinx-basic-ng=1.0.0b2=pyhd8ed1ab_1 + - furo=2023.9.10=pyhd8ed1ab_0 + - sphinx-copybutton=0.5.2=pyhd8ed1ab_0 + - sphinxcontrib-applehelp=1.0.7=pyhd8ed1ab_0 + - sphinxcontrib-devhelp=1.0.5=pyhd8ed1ab_0 + - sphinxcontrib-htmlhelp=2.0.4=pyhd8ed1ab_0 + - sphinxcontrib-qthelp=1.0.6=pyhd8ed1ab_0 + - sphinx=7.2.6=pyhd8ed1ab_0 + - sphinxcontrib-serializinghtml=1.1.9=pyhd8ed1ab_0 + - sphinxcontrib-websupport=1.2.6=pyhd8ed1ab_0 diff --git a/src/environment-3.9-macos.yml b/src/environment-3.9-macos.yml new file mode 100644 index 00000000000..c924d013cbc --- /dev/null +++ b/src/environment-3.9-macos.yml @@ -0,0 +1,406 @@ +# Generated by conda-lock. +# platform: osx-64 +# input_hash: 64f68d5d5e73112c508b9c6440bab326ddf8fd688cc150a835fbb91f0a1dec36 + +channels: + - conda-forge +dependencies: + - _r-mutex=1.0.1=anacondar_1 + - bc=1.07.1=h0d85af4_0 + - bzip2=1.0.8=h10d778d_5 + - c-ares=1.24.0=h10d778d_0 + - ca-certificates=2023.11.17=h8857fd0_0 + - cliquer=1.22=hbcb3906_0 + - font-ttf-dejavu-sans-mono=2.37=hab24e00_0 + - font-ttf-inconsolata=3.000=h77eed37_0 + - font-ttf-source-code-pro=2.038=h77eed37_0 + - font-ttf-ubuntu=0.83=h77eed37_1 + - fribidi=1.0.10=hbcb3906_0 + - giflib=5.2.1=hb7f2c08_3 + - icu=73.2=hf5e326d_0 + - libatomic_ops=7.6.14=hb7f2c08_0 + - libboost-headers=1.84.0=h694c41f_0 + - libbrotlicommon=1.1.0=h0dc2134_1 + - libcxx=16.0.6=hd57cbcb_0 + - libdeflate=1.19=ha4e1b8e_0 + - libev=4.33=h10d778d_2 + - libexpat=2.5.0=hf0c8a7f_1 + - libffi=3.4.2=h0d85af4_5 + - libgfortran-devel_osx-64=12.3.0=h0b6f5ec_1 + - libiconv=1.17=hd75f5a5_2 + - libjpeg-turbo=3.0.0=h0dc2134_1 + - libsodium=1.0.18=hbcb3906_1 + - libtool=2.4.7=hf0c8a7f_0 + - libuv=1.46.0=h0c2f820_0 + - libwebp-base=1.3.2=h0dc2134_0 + - libzlib=1.2.13=h8a1eda9_5 + - llvm-openmp=17.0.6=hb6ac08f_0 + - m4=1.4.18=haf1e3a3_1001 + - make=4.3=h22f3db7_1 + - mathjax=3.2.2=h694c41f_0 + - nauty=2.8.8=h10d778d_0 + - 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 + - planarity=3.0.0.5=hbcb3906_1002 + - pthread-stubs=0.4=hc929b4f_1001 + - python_abi=3.9=4_cp39 + - rhash=1.4.4=h0dc2134_0 + - sagemath-db-combinatorial-designs=20140630=1 + - sagemath-db-graphs=20210214=hd8ed1ab_0 + - sagemath-db-polytopes=20170220=1 + - three.js=122=hd8ed1ab_2 + - tzdata=2023c=h71feb2d_0 + - xorg-libxau=1.0.11=h0dc2134_0 + - xorg-libxdmcp=1.1.3=h35c211d_0 + - xz=5.2.6=h775f41a_0 + - yaml=0.2.5=h0d85af4_2 + - autoconf=2.71=pl5321hed12c24_1 + - bdw-gc=8.0.6=h940c156_0 + - expat=2.5.0=hf0c8a7f_1 + - fonts-conda-forge=1=0 + - gengetopt=2.23=he49afe7_0 + - gettext=0.21.1=h8a4c099_0 + - gf2x=1.3.0=hb2a7efb_2 + - gmp=6.3.0=h93d8f39_0 + - graphite2=1.3.13=h2e338ed_1001 + - isl=0.25=hb486fe8_0 + - lerc=4.0.0=hb486fe8_0 + - libbraiding=1.2=hf0c8a7f_0 + - libbrotlidec=1.1.0=h0dc2134_1 + - libbrotlienc=1.1.0=h0dc2134_1 + - libgfortran5=13.2.0=h2873a65_1 + - libpng=1.6.39=ha978bb4_0 + - libsqlite=3.44.2=h92b6c6a_0 + - libxcb=1.15=hb7f2c08_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 + - openssl=3.2.0=hd75f5a5_1 + - 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 + - symmetrica=3.0.1=hf0c8a7f_0 + - tapi=1100.0.11=h9ce4665_0 + - tar=1.34=hcb2f6ea_1 + - threejs-sage=122=hd8ed1ab_2 + - tk=8.6.13=h1abcd95_1 + - zeromq=4.3.5=h93d8f39_0 + - zlib=1.2.13=h8a1eda9_5 + - zstd=1.5.5=h829000d_0 + - automake=1.16.5=pl5321h694c41f_0 + - brotli-bin=1.1.0=h0dc2134_1 + - bwidget=1.9.14=h694c41f_1 + - cddlib=1!0.94m=h0f52abe_0 + - ecm=7.0.4=h343d7f2_1002 + - fonts-conda-ecosystem=1=0 + - freetype=2.12.1=h60636b9_2 + - givaro=4.1.1=h0a799c6_3 + - glpk=5.0=h3cb5acd_0 + - jmol=14.32.9=h694c41f_0 + - libboost=1.84.0=h5b2dd29_0 + - 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_1 + - libssh2=1.11.0=hd019ec5_0 + - libtiff=4.6.0=h684deea_2 + - m4ri=20140914=h3f75d11_1005 + - mpfr=4.2.1=h0c69b56_0 + - ntl=11.4.3=h0ab3c2f_1 + - primecount=7.6=ha894c9a_0 + - readline=8.2=h9e318b2_1 + - sigtool=0.1.3=h88f4db0_0 + - tachyon=0.99b6=0 + - texinfo=7.0=pl5321hc47821c_0 + - tktable=2.10=ha166976_5 + - brotli=1.1.0=h0dc2134_1 + - ecl=21.2.1=hd029580_2 + - fftw=3.3.10=nompi_h4fa670e_108 + - fontconfig=2.14.2=h5bb23bf_0 + - gap-core=4.12.2=hc16eb5f_3 + - gfan=0.6.2=hd793b56_1003 + - krb5=1.21.2=hb884880_0 + - lcms2=2.16=ha2f27b4_0 + - ld64_osx-64=609=h0fd476b_15 + - libboost-devel=1.84.0=h7728843_0 + - libbrial=1.2.12=h8d08345_1 + - libclang-cpp15=15.0.7=default_h6b1ee41_4 + - libflint=3.0.1=h5d15de0_ntl_100 + - libopenblas=0.3.25=openmp_hfef2a42_0 + - libwebp=1.3.2=h44782d1_1 + - llvm-tools=15.0.7=he4b1e75_3 + - 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 + - tbb=2021.11.0=he51d815_0 + - alabaster=0.7.13=pyhd8ed1ab_0 + - appdirs=1.4.4=pyh9f0ad1d_0 + - appnope=0.1.3=pyhd8ed1ab_0 + - attrs=23.1.0=pyh71513ae_1 + - boost-cpp=1.84.0=h07eb623_0 + - brial=1.2.12=pyh694c41f_1 + - brotli-python=1.1.0=py39h840bb9f_1 + - cached_property=1.5.2=pyha770c72_1 + - cachetools=5.3.2=pyhd8ed1ab_0 + - cairo=1.18.0=h99e66fa_0 + - cctools_osx-64=973.0.1=habff3f6_15 + - certifi=2023.11.17=pyhd8ed1ab_0 + - chardet=5.2.0=py39h6e9494a_1 + - 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.7=py39hd253f6c_0 + - debugpy=1.8.0=py39h840bb9f_1 + - decorator=5.1.1=pyhd8ed1ab_0 + - defusedxml=0.7.1=pyhd8ed1ab_0 + - distlib=0.3.8=pyhd8ed1ab_0 + - docutils=0.20.1=py39h6e9494a_3 + - eclib=20231211=h02435c3_0 + - editables=0.3=pyhd8ed1ab_0 + - entrypoints=0.4=pyhd8ed1ab_0 + - exceptiongroup=1.2.0=pyhd8ed1ab_0 + - executing=2.0.1=pyhd8ed1ab_0 + - filelock=3.13.1=pyhd8ed1ab_0 + - flit-core=3.9.0=pyhd8ed1ab_0 + - fplll=5.4.5=hb7981ad_0 + - gap-defaults=4.12.2=h694c41f_3 + - gast=0.5.4=pyhd8ed1ab_0 + - gfortran_impl_osx-64=12.3.0=h54fd467_1 + - gmpy2=2.1.2=py39h2da61ea_1 + - idna=3.6=pyhd8ed1ab_0 + - imagesize=1.4.1=pyhd8ed1ab_0 + - ipython_genutils=0.2.0=py_1 + - json5=0.9.14=pyhd8ed1ab_0 + - jsonpointer=2.4=py39h6e9494a_3 + - jupyterlab_widgets=3.0.9=pyhd8ed1ab_0 + - kiwisolver=1.4.5=py39h8ee36c8_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 + - markupsafe=2.1.3=py39hdc70f33_1 + - maxima=5.47.0=h2b27fa8_1 + - mistune=3.0.2=pyhd8ed1ab_0 + - mpmath=1.3.0=pyhd8ed1ab_0 + - munkres=1.1.4=pyh9f0ad1d_0 + - nest-asyncio=1.5.8=pyhd8ed1ab_0 + - networkx=3.2.1=pyhd8ed1ab_0 + - openblas=0.3.25=openmp_h6794695_0 + - packaging=23.2=pyhd8ed1ab_0 + - pandocfilters=1.5.0=pyhd8ed1ab_0 + - parso=0.8.3=pyhd8ed1ab_0 + - pathspec=0.12.1=pyhd8ed1ab_0 + - pickleshare=0.7.5=py_1003 + - pillow=10.1.0=py39hdd30358_0 + - pkgconfig=1.5.5=pyhd8ed1ab_4 + - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 + - platformdirs=4.1.0=pyhd8ed1ab_0 + - pluggy=1.3.0=pyhd8ed1ab_0 + - ply=3.11=py_1 + - prometheus_client=0.19.0=pyhd8ed1ab_0 + - psutil=5.9.7=py39ha09f3b3_0 + - ptyprocess=0.7.0=pyhd3deb0d_0 + - pure_eval=0.2.2=pyhd8ed1ab_0 + - py=1.11.0=pyh6c4a22f_0 + - pybind11-global=2.11.1=py39h8ee36c8_2 + - pycparser=2.21=pyhd8ed1ab_0 + - pygments=2.17.2=pyhd8ed1ab_0 + - pyparsing=3.1.1=pyhd8ed1ab_0 + - pyrsistent=0.20.0=py39ha09f3b3_0 + - pysocks=1.7.1=pyha2e5f31_6 + - python-fastjsonschema=2.19.0=pyhd8ed1ab_0 + - python-json-logger=2.0.7=pyhd8ed1ab_0 + - python-lrcalc=2.1=py39h7a8716b_5 + - python-tzdata=2023.3=pyhd8ed1ab_0 + - pytz=2023.3.post1=pyhd8ed1ab_0 + - pyyaml=6.0.1=py39hdc70f33_1 + - pyzmq=25.1.2=py39hcb7a90d_0 + - rfc3986-validator=0.1.1=pyh9f0ad1d_0 + - rpds-py=0.15.2=py39h3f9c672_0 + - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 + - sagetex=3.6.1=pyhd8ed1ab_0 + - setuptools=68.2.2=pyhd8ed1ab_0 + - simplegeneric=0.8.1=py_1 + - singular=4.3.2.p8=h0d51a9f_1 + - six=1.16.0=pyh6c4a22f_0 + - sniffio=1.3.0=pyhd8ed1ab_0 + - snowballstemmer=2.2.0=pyhd8ed1ab_0 + - soupsieve=2.5=pyhd8ed1ab_1 + - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_0 + - sympow=2.023.6=h115ba6a_3 + - tomli=2.0.1=pyhd8ed1ab_0 + - tornado=6.3.3=py39hdc70f33_1 + - traitlets=5.14.0=pyhd8ed1ab_0 + - trove-classifiers=2023.11.29=pyhd8ed1ab_0 + - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 + - typing_extensions=4.9.0=pyha770c72_0 + - typing_utils=0.1.0=pyhd8ed1ab_0 + - tzlocal=5.2=py39h6e9494a_0 + - unicodedata2=15.1.0=py39hdc70f33_0 + - uri-template=1.3.0=pyhd8ed1ab_0 + - wcwidth=0.2.12=pyhd8ed1ab_0 + - webcolors=1.13=pyhd8ed1ab_0 + - webencodings=0.5.1=pyhd8ed1ab_2 + - websocket-client=1.7.0=pyhd8ed1ab_0 + - wheel=0.42.0=pyhd8ed1ab_0 + - widgetsnbextension=4.0.9=pyhd8ed1ab_0 + - zipp=3.17.0=pyhd8ed1ab_0 + - anyio=4.2.0=pyhd8ed1ab_0 + - asttokens=2.4.1=pyhd8ed1ab_0 + - async-lru=2.0.4=pyhd8ed1ab_0 + - babel=2.14.0=pyhd8ed1ab_0 + - beautifulsoup4=4.12.2=pyha770c72_0 + - beniget=0.4.1=pyhd8ed1ab_0 + - bleach=6.1.0=pyhd8ed1ab_0 + - cached-property=1.5.2=hd8ed1ab_1 + - cctools=973.0.1=hd9ad811_15 + - cffi=1.16.0=py39h18ef598_0 + - clang=15.0.7=hac416ee_4 + - cmake=3.28.1=h7c85d92_0 + - comm=0.1.4=pyhd8ed1ab_0 + - cppy=1.2.1=pyhd8ed1ab_0 + - curl=8.5.0=h726d00d_0 + - cypari2=2.1.3=py39he2cb11e_2 + - deprecation=2.1.0=pyh9f0ad1d_0 + - fonttools=4.47.0=py39ha09f3b3_0 + - harfbuzz=8.3.0=hf45c392_0 + - importlib-metadata=7.0.0=pyha770c72_0 + - importlib_resources=6.1.1=pyhd8ed1ab_0 + - jedi=0.19.1=pyhd8ed1ab_0 + - jinja2=3.1.2=pyhd8ed1ab_1 + - jupyter_core=5.5.1=py39h6e9494a_0 + - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 + - libcblas=3.9.0=20_osx64_openblas + - liblapack=3.9.0=20_osx64_openblas + - matplotlib-inline=0.1.6=pyhd8ed1ab_0 + - memory-allocator=0.1.3=py39hdc70f33_0 + - overrides=7.4.0=pyhd8ed1ab_0 + - pexpect=4.8.0=pyh1a96a4e_2 + - pip=23.3.2=pyhd8ed1ab_0 + - pplpy=0.8.9=py39h248ee18_0 + - primecountpy=0.1.0=py39h8ee36c8_4 + - prompt-toolkit=3.0.42=pyha770c72_0 + - pybind11=2.11.1=py39h8ee36c8_2 + - pyobjc-core=10.1=py39h8602b6b_0 + - pyproject-api=1.6.1=pyhd8ed1ab_0 + - python-dateutil=2.8.2=pyhd8ed1ab_0 + - pytz-deprecation-shim=0.1.0.post0=py39h6e9494a_4 + - referencing=0.32.0=pyhd8ed1ab_0 + - rfc3339-validator=0.1.4=pyhd8ed1ab_0 + - sympy=1.12=pypyh9d50eac_103 + - terminado=0.18.0=pyh31c8845_0 + - tinycss2=1.2.1=pyhd8ed1ab_0 + - typing-extensions=4.9.0=hd8ed1ab_0 + - urllib3=2.1.0=pyhd8ed1ab_0 + - virtualenv=20.25.0=pyhd8ed1ab_0 + - argon2-cffi-bindings=21.2.0=py39hdc70f33_4 + - 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 + - fflas-ffpack=2.4.3=h026fd7e_2 + - fqdn=1.5.1=pyhd8ed1ab_0 + - gsl=2.7=h93259b0_0 + - hatchling=1.21.0=pyhd8ed1ab_0 + - iml=1.0.5=h64b42ca_1003 + - importlib-resources=6.1.1=pyhd8ed1ab_0 + - importlib_metadata=7.0.0=hd8ed1ab_0 + - jsonschema-specifications=2023.11.2=pyhd8ed1ab_0 + - jupyter_server_terminals=0.5.0=pyhd8ed1ab_0 + - liblapacke=3.9.0=20_osx64_openblas + - numpy=1.26.2=py39h14c6d2e_0 + - pango=1.50.14=h19c1c8a_2 + - prompt_toolkit=3.0.42=hd8ed1ab_0 + - pyobjc-framework-cocoa=10.1=py39h8602b6b_0 + - requests=2.31.0=pyhd8ed1ab_0 + - setuptools-scm=8.0.4=pyhd8ed1ab_0 + - stack_data=0.6.2=pyhd8ed1ab_0 + - suitesparse=5.10.1=h0a40b7c_2 + - argon2-cffi=23.1.0=pyhd8ed1ab_0 + - blas-devel=3.9.0=20_osx64_openblas + - compiler-rt_osx-64=15.0.7=ha38d28d_2 + - contourpy=1.2.0=py39h6be1789_0 + - 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 + - jupyter_client=8.6.0=pyhd8ed1ab_0 + - linbox=1.6.3=hfb9b24e_8 + - scipy=1.11.4=py39ha321857_0 + - send2trash=1.8.2=pyhd1c38e8_0 + - setuptools_scm=8.0.4=hd8ed1ab_0 + - tox=4.11.4=pyhd8ed1ab_0 + - blas=2.120=openblas + - compiler-rt=15.0.7=ha38d28d_2 + - ipykernel=6.26.0=pyh3cd1d5f_0 + - ipywidgets=8.1.1=pyhd8ed1ab_0 + - jsonschema-with-format-nongpl=4.20.0=pyhd8ed1ab_0 + - matplotlib-base=3.8.2=py39h7070ae8_0 + - nbformat=5.9.2=pyhd8ed1ab_0 + - rw=0.9=h10d778d_1 + - clang_impl_osx-64=15.0.7=h03d6864_7 + - ipympl=0.9.3=pyhd8ed1ab_0 + - jupyter-jsmol=2022.1.0=pyhd8ed1ab_0 + - jupyter_events=0.9.0=pyhd8ed1ab_0 + - matplotlib=3.8.2=py39h6e9494a_0 + - nbclient=0.8.0=pyhd8ed1ab_0 + - clang_osx-64=15.0.7=hb91bd55_7 + - nbconvert-core=7.13.0=pyhd8ed1ab_0 + - c-compiler=1.6.0=h63c33a9_0 + - clangxx_impl_osx-64=15.0.7=h2133e9c_7 + - gfortran_osx-64=12.3.0=h18f7dce_1 + - jupyter_server=2.12.1=pyhd8ed1ab_0 + - nbconvert-pandoc=7.13.0=pyhd8ed1ab_0 + - clangxx_osx-64=15.0.7=hb91bd55_7 + - gfortran=12.3.0=h2c809b3_1 + - jupyter-lsp=2.2.1=pyhd8ed1ab_0 + - jupyterlab_server=2.25.2=pyhd8ed1ab_0 + - nbconvert=7.13.0=pyhd8ed1ab_0 + - notebook-shim=0.2.3=pyhd8ed1ab_0 + - cxx-compiler=1.6.0=h1c7c39f_0 + - fortran-compiler=1.6.0=h932d759_0 + - jupyterlab=4.0.9=pyhd8ed1ab_0 + - pythran=0.14.0=py39h4aa56a1_1 + - r-base=4.3.1=h0ff45fa_6 + - compilers=1.6.0=h694c41f_0 + - notebook=7.0.6=pyhd8ed1ab_0 + - rpy2=3.5.11=py39r43hd01001f_3 + - jupyter_sphinx=0.4.0=py39h6e9494a_1 + - sphinx-basic-ng=1.0.0b2=pyhd8ed1ab_1 + - furo=2023.9.10=pyhd8ed1ab_0 + - sphinx-copybutton=0.5.2=pyhd8ed1ab_0 + - sphinxcontrib-applehelp=1.0.7=pyhd8ed1ab_0 + - sphinxcontrib-devhelp=1.0.5=pyhd8ed1ab_0 + - sphinxcontrib-htmlhelp=2.0.4=pyhd8ed1ab_0 + - sphinxcontrib-qthelp=1.0.6=pyhd8ed1ab_0 + - sphinx=7.2.6=pyhd8ed1ab_0 + - sphinxcontrib-serializinghtml=1.1.9=pyhd8ed1ab_0 + - sphinxcontrib-websupport=1.2.6=pyhd8ed1ab_0 diff --git a/src/environment-dev-3.10-linux-aarch64.yml b/src/environment-dev-3.10-linux-aarch64.yml new file mode 100644 index 00000000000..3e5074485de --- /dev/null +++ b/src/environment-dev-3.10-linux-aarch64.yml @@ -0,0 +1,471 @@ +# Generated by conda-lock. +# platform: linux-aarch64 +# input_hash: 205d24daed98b1bae4fcde7e7d49ad93af55d71901e5f44a5013ef1392e377a7 + +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 + - gh=2.40.1=h652cbe9_0 + - kernel-headers_linux-aarch64=4.18.0=h5b4a56d_13 + - ld_impl_linux-aarch64=2.40=h2d8c526_0 + - libgcc-devel_linux-aarch64=12.3.0=h8b5ab12_103 + - libgomp=13.2.0=hf8544c7_3 + - libstdcxx-devel_linux-aarch64=12.3.0=h8b5ab12_103 + - libstdcxx-ng=13.2.0=h9a76618_3 + - mathjax=3.2.2=h8af1aa0_0 + - pandoc=3.1.3=h8af1aa0_0 + - 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_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.24.0=h31becfc_0 + - cliquer=1.22=hb9de7d4_0 + - fribidi=1.0.10=hb9de7d4_0 + - gengetopt=2.23=h01db608_0 + - gettext=0.21.1=ha18d298_0 + - gf2x=1.3.0=h1b3b3a3_2 + - giflib=5.2.1=hb4cce97_3 + - gmp=6.3.0=h2f0025b_0 + - graphite2=1.3.13=h7fd3ca4_1001 + - icu=70.1=ha18d298_0 + - jpeg=9e=h2a766a3_3 + - keyutils=1.6.1=h4e544f5_0 + - lerc=4.0.0=h4de3ea5_0 + - libatomic_ops=7.6.14=h4e544f5_0 + - libbraiding=1.2=hd600fc2_0 + - libbrotlicommon=1.1.0=h31becfc_1 + - libcbor=0.9.0=h01db608_0 + - libdeflate=1.17=hb4cce97_0 + - 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=h31becfc_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 + - 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.8.8=h31becfc_0 + - ncurses=6.4=h0425590_2 + - ninja=1.11.1=hdd96247_0 + - openssl=3.2.0=h31becfc_1 + - palp=2.20=hb9de7d4_0 + - patch=2.7.6=hf897c2e_1002 + - pixman=0.42.2=h2f0025b_0 + - pkg-config=0.29.2=hb9de7d4_1008 + - planarity=3.0.0.5=hb9de7d4_1002 + - primesieve=11.1=h2f0025b_0 + - pthread-stubs=0.4=hb9de7d4_1001 + - qhull=2020.2=hd62202e_2 + - rhash=1.4.3=h31becfc_2 + - sed=4.8=ha0d5d3d_0 + - symmetrica=3.0.1=hd600fc2_0 + - xorg-inputproto=2.3.2=h3557bc0_1002 + - xorg-kbproto=1.0.7=h3557bc0_1002 + - xorg-libice=1.0.10=h3557bc0_0 + - xorg-libxau=1.0.11=h31becfc_0 + - xorg-libxdmcp=1.1.3=h3557bc0_0 + - xorg-recordproto=1.14.2=hf897c2e_1002 + - xorg-renderproto=0.11.1=h3557bc0_1002 + - xorg-xextproto=7.3.0=h2a766a3_1003 + - xorg-xproto=7.0.31=h3557bc0_1007 + - xz=5.2.6=h9cdd2b7_0 + - yaml=0.2.5=hf897c2e_2 + - cddlib=1!0.94m=h719063d_0 + - ecm=7.0.4=h719063d_1002 + - expat=2.5.0=hd600fc2_1 + - gcc_impl_linux-aarch64=12.3.0=hcde2664_3 + - givaro=4.1.1=h192cbe9_1 + - glpk=5.0=h66325d0_0 + - libbrotlidec=1.1.0=h31becfc_1 + - libbrotlienc=1.1.0=h31becfc_1 + - libcap=2.69=h883460d_0 + - libedit=3.1.20191231=he28a2e2_2 + - libgfortran-ng=13.2.0=he9431aa_3 + - libhomfly=1.02r6=hb9de7d4_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 + - 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.9=hd600fc2_0 + - readline=8.2=h8fc344f_1 + - tar=1.34=h048efde_0 + - tk=8.6.13=h194ca79_0 + - xorg-fixesproto=5.0=h3557bc0_1002 + - xorg-libsm=1.2.3=h965e137_1000 + - zeromq=4.3.5=h2f0025b_0 + - zlib=1.2.13=h31becfc_5 + - zstd=1.5.5=h4c53e97_0 + - autoconf=2.71=pl5321h2148fe1_1 + - boost-cpp=1.81.0=h07c2bc3_0 + - brotli-bin=1.1.0=h31becfc_1 + - bwidget=1.9.14=h8af1aa0_1 + - ecl=21.2.1=haa44c19_2 + - fftw=3.3.10=nompi_h2dcef8e_108 + - freetype=2.12.1=hf0a5ef3_2 + - gap-core=4.12.2=h597289e_3 + - gcc=12.3.0=hc1b51f9_2 + - gcc_linux-aarch64=12.3.0=h464a8f7_2 + - gfan=0.6.2=h5f589ec_1003 + - gfortran_impl_linux-aarch64=12.3.0=hb7244be_3 + - gxx_impl_linux-aarch64=12.3.0=hcde2664_3 + - krb5=1.20.1=h113d92e_0 + - libflint=3.0.1=hc392af7_ntl_100 + - libglib=2.78.1=h0464669_0 + - libhwloc=2.9.1=h21e8147_0 + - libopenblas=0.3.25=pthreads_h5a5ec62_0 + - libtiff=4.5.0=h4c1066a_2 + - libudev1=255=h31becfc_0 + - llvm-openmp=17.0.6=h8b0cb96_0 + - m4ri=20140914=h75e8696_1005 + - mpc=1.3.1=hf4c8f4c_0 + - mpfi=1.5.4=h846f343_1001 + - pari=2.15.4=h169c2a7_2_pthread + - ppl=1.2=h984aac9_1006 + - python=3.10.13=hbbe8eec_0_cpython + - qd=2.3.22=h05efe27_1004 + - sqlite=3.44.2=h3b3482f_0 + - tachyon=0.99b6=h63ab1d9_1001 + - texinfo=7.0=pl5321h17f021e_0 + - tktable=2.10=h4f9ca69_5 + - xorg-libx11=1.8.4=h2a766a3_0 + - alabaster=0.7.13=pyhd8ed1ab_0 + - appdirs=1.4.4=pyh9f0ad1d_0 + - appnope=0.1.3=pyhd8ed1ab_0 + - attrs=23.1.0=pyh71513ae_1 + - automake=1.16.5=pl5321h8af1aa0_0 + - brotli=1.1.0=h31becfc_1 + - brotli-python=1.1.0=py310hbb3657e_1 + - c-compiler=1.6.0=h31becfc_0 + - cached_property=1.5.2=pyha770c72_1 + - cachetools=5.3.2=pyhd8ed1ab_0 + - 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 + - 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.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.8=pyhd8ed1ab_0 + - docutils=0.20.1=py310hbbe02a8_3 + - eclib=20231211=he26bab5_0 + - editables=0.3=pyhd8ed1ab_0 + - entrypoints=0.4=pyhd8ed1ab_0 + - exceptiongroup=1.2.0=pyhd8ed1ab_0 + - execnet=2.0.2=pyhd8ed1ab_0 + - executing=2.0.1=pyhd8ed1ab_0 + - filelock=3.13.1=pyhd8ed1ab_0 + - flit-core=3.9.0=pyhd8ed1ab_0 + - fontconfig=2.14.2=ha9a116f_0 + - fplll=5.4.5=hb3a790e_0 + - gap-defaults=4.12.2=h8af1aa0_3 + - gast=0.5.4=pyhd8ed1ab_0 + - gfortran=12.3.0=h8d4031d_2 + - gfortran_linux-aarch64=12.3.0=h1993883_2 + - gmpy2=2.1.2=py310h9f74ea4_1 + - gxx=12.3.0=hc1b51f9_2 + - gxx_linux-aarch64=12.3.0=h21accf6_2 + - idna=3.6=pyhd8ed1ab_0 + - imagesize=1.4.1=pyhd8ed1ab_0 + - iniconfig=2.0.0=pyhd8ed1ab_0 + - ipython_genutils=0.2.0=py_1 + - jeepney=0.8.0=pyhd8ed1ab_0 + - json5=0.9.14=pyhd8ed1ab_0 + - jsonpointer=2.4=py310h4c7bcd0_3 + - jupyterlab_widgets=3.0.9=pyhd8ed1ab_0 + - kiwisolver=1.4.5=py310he290b8a_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 + - libfido2=1.14.0=heb3f89f_0 + - libwebp=1.2.4=h7bdf6e5_1 + - m4rie=20150908=h75e8696_1001 + - markupsafe=2.1.3=py310h7c1f4a2_1 + - maxima=5.47.0=h6475f26_1 + - mistune=3.0.2=pyhd8ed1ab_0 + - more-itertools=10.1.0=pyhd8ed1ab_0 + - mpmath=1.3.0=pyhd8ed1ab_0 + - msgpack-python=1.0.7=py310he290b8a_0 + - munkres=1.1.4=pyh9f0ad1d_0 + - nest-asyncio=1.5.8=pyhd8ed1ab_0 + - 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 + - pastel=0.2.1=pyhd8ed1ab_0 + - pathspec=0.12.1=pyhd8ed1ab_0 + - pickleshare=0.7.5=py_1003 + - pkgconfig=1.5.5=pyhd8ed1ab_4 + - pkginfo=1.9.6=pyhd8ed1ab_0 + - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 + - platformdirs=4.1.0=pyhd8ed1ab_0 + - pluggy=1.3.0=pyhd8ed1ab_0 + - ply=3.11=py_1 + - prometheus_client=0.19.0=pyhd8ed1ab_0 + - psutil=5.9.7=py310hb299538_0 + - ptyprocess=0.7.0=pyhd3deb0d_0 + - pure_eval=0.2.2=pyhd8ed1ab_0 + - py=1.11.0=pyh6c4a22f_0 + - pybind11-global=2.11.1=py310h586407a_2 + - pycodestyle=2.11.1=pyhd8ed1ab_0 + - pycparser=2.21=pyhd8ed1ab_0 + - pygments=2.17.2=pyhd8ed1ab_0 + - pylev=1.4.0=pyhd8ed1ab_0 + - pyparsing=3.1.1=pyhd8ed1ab_0 + - pyrsistent=0.20.0=py310h7c1f4a2_0 + - pysocks=1.7.1=pyha2e5f31_6 + - pyspellchecker=0.7.2=pyhd8ed1ab_0 + - python-fastjsonschema=2.19.0=pyhd8ed1ab_0 + - python-json-logger=2.0.7=pyhd8ed1ab_0 + - python-lrcalc=2.1=py310h130cc07_5 + - python-tzdata=2023.3=pyhd8ed1ab_0 + - pytz=2023.3.post1=pyhd8ed1ab_0 + - pyyaml=6.0.1=py310hb299538_1 + - pyzmq=25.1.2=py310h014ca53_0 + - rfc3986-validator=0.1.1=pyh9f0ad1d_0 + - rpds-py=0.15.2=py310h057607a_0 + - ruamel.yaml.clib=0.2.7=py310hb299538_2 + - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 + - sagetex=3.6.1=pyhd8ed1ab_0 + - send2trash=1.8.2=pyh41d4057_0 + - setuptools=68.2.2=pyhd8ed1ab_0 + - simplegeneric=0.8.1=py_1 + - singular=4.3.2.p8=hbe76a8a_1 + - six=1.16.0=pyh6c4a22f_0 + - smmap=5.0.0=pyhd8ed1ab_0 + - sniffio=1.3.0=pyhd8ed1ab_0 + - snowballstemmer=2.2.0=pyhd8ed1ab_0 + - soupsieve=2.5=pyhd8ed1ab_1 + - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_0 + - sympow=2.023.6=h157afb5_3 + - tbb=2021.9.0=h4c384f3_0 + - tomli=2.0.1=pyhd8ed1ab_0 + - tomlkit=0.12.3=pyha770c72_0 + - toolz=0.12.0=pyhd8ed1ab_0 + - tornado=6.3.3=py310h7c1f4a2_1 + - traitlets=5.14.0=pyhd8ed1ab_0 + - trove-classifiers=2023.11.29=pyhd8ed1ab_0 + - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 + - typing_extensions=4.9.0=pyha770c72_0 + - typing_utils=0.1.0=pyhd8ed1ab_0 + - tzlocal=5.2=py310h4c7bcd0_0 + - unicodedata2=15.1.0=py310hb299538_0 + - uri-template=1.3.0=pyhd8ed1ab_0 + - wcwidth=0.2.12=pyhd8ed1ab_0 + - webcolors=1.13=pyhd8ed1ab_0 + - webencodings=0.5.1=pyhd8ed1ab_2 + - websocket-client=1.7.0=pyhd8ed1ab_0 + - 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.2.0=pyhd8ed1ab_0 + - asttokens=2.4.1=pyhd8ed1ab_0 + - async-lru=2.0.4=pyhd8ed1ab_0 + - babel=2.14.0=pyhd8ed1ab_0 + - beautifulsoup4=4.12.2=pyha770c72_0 + - beniget=0.4.1=pyhd8ed1ab_0 + - bleach=6.1.0=pyhd8ed1ab_0 + - brial=1.2.12=pyh694c41f_1 + - cached-property=1.5.2=hd8ed1ab_1 + - cairo=1.16.0=hd19fb6e_1014 + - cffi=1.16.0=py310hce94938_0 + - click-default-group=1.2.4=pyhd8ed1ab_0 + - clikit=0.6.2=pyhd8ed1ab_2 + - cmake=3.26.4=hef020d8_0 + - comm=0.1.4=pyhd8ed1ab_0 + - cppy=1.2.1=pyhd8ed1ab_0 + - curl=8.1.2=hc34909b_0 + - cxx-compiler=1.6.0=h2a328a1_0 + - cypari2=2.1.3=py310h4cbba44_2 + - deprecation=2.1.0=pyh9f0ad1d_0 + - fonttools=4.47.0=py310hb299538_0 + - fortran-compiler=1.6.0=h7048d53_0 + - gitdb=4.0.11=pyhd8ed1ab_0 + - html5lib=1.1=pyh9f0ad1d_0 + - importlib-metadata=7.0.0=pyha770c72_0 + - importlib_resources=6.1.1=pyhd8ed1ab_0 + - jaraco.classes=3.3.0=pyhd8ed1ab_0 + - jedi=0.19.1=pyhd8ed1ab_0 + - jinja2=3.1.2=pyhd8ed1ab_1 + - jupyter_core=5.5.1=py310h4c7bcd0_0 + - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 + - 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=py310hb299538_0 + - openssh=9.3p1=hf616e62_1 + - overrides=7.4.0=pyhd8ed1ab_0 + - pexpect=4.8.0=pyh1a96a4e_2 + - pillow=9.4.0=py310h2843b5e_1 + - pip=23.3.2=pyhd8ed1ab_0 + - pplpy=0.8.9=py310hd5c817c_0 + - primecountpy=0.1.0=py310h586407a_4 + - prompt-toolkit=3.0.42=pyha770c72_0 + - pybind11=2.11.1=py310h586407a_2 + - pyproject-api=1.6.1=pyhd8ed1ab_0 + - pytest=7.4.3=pyhd8ed1ab_0 + - python-dateutil=2.8.2=pyhd8ed1ab_0 + - pytz-deprecation-shim=0.1.0.post0=py310h4c7bcd0_4 + - referencing=0.32.0=pyhd8ed1ab_0 + - rfc3339-validator=0.1.4=pyhd8ed1ab_0 + - ruamel.yaml=0.18.5=py310hb299538_0 + - sympy=1.12=pypyh9d50eac_103 + - terminado=0.18.0=pyh0d859eb_0 + - tinycss2=1.2.1=pyhd8ed1ab_0 + - typing-extensions=4.9.0=hd8ed1ab_0 + - urllib3=1.26.18=pyhd8ed1ab_0 + - virtualenv=20.25.0=pyhd8ed1ab_0 + - xorg-libxi=1.7.10=h3557bc0_0 + - annotated-types=0.6.0=pyhd8ed1ab_0 + - argon2-cffi-bindings=21.2.0=py310hb299538_4 + - arpack=3.7.0=hf862f49_2 + - arrow=1.3.0=pyhd8ed1ab_0 + - cattrs=23.2.3=pyhd8ed1ab_0 + - compilers=1.6.0=h8af1aa0_0 + - cryptography=41.0.7=py310he685ff2_1 + - dsdp=5.8=hb12102e_1203 + - fflas-ffpack=2.4.3=hf104d39_2 + - fqdn=1.5.1=pyhd8ed1ab_0 + - git=2.42.0=pl5321h0d979e1_0 + - gitpython=3.1.40=pyhd8ed1ab_0 + - gsl=2.7=h294027d_0 + - harfbuzz=6.0.0=hbcb8a4f_0 + - hatchling=1.21.0=pyhd8ed1ab_0 + - iml=1.0.5=h9076c59_1003 + - importlib-resources=6.1.1=pyhd8ed1ab_0 + - importlib_metadata=7.0.0=hd8ed1ab_0 + - jsonschema-specifications=2023.11.2=pyhd8ed1ab_0 + - jupyter_server_terminals=0.5.0=pyhd8ed1ab_0 + - liblapacke=3.9.0=20_linuxaarch64_openblas + - numpy=1.26.2=py310hcbab775_0 + - prompt_toolkit=3.0.42=hd8ed1ab_0 + - pydantic-core=2.14.5=py310hfd680ee_0 + - pytest-xdist=3.5.0=pyhd8ed1ab_0 + - requests=2.31.0=pyhd8ed1ab_0 + - setuptools-scm=8.0.4=pyhd8ed1ab_0 + - stack_data=0.6.2=pyhd8ed1ab_0 + - suitesparse=5.10.1=h1404dd6_1 + - xorg-libxtst=1.2.3=hf897c2e_1002 + - argon2-cffi=23.1.0=pyhd8ed1ab_0 + - blas-devel=3.9.0=20_linuxaarch64_openblas + - cachecontrol=0.13.1=pyhd8ed1ab_0 + - contourpy=1.2.0=py310h586407a_0 + - cvxopt=1.3.2=py310h536486b_1 + - ensureconda=1.4.3=pyhd8ed1ab_0 + - fpylll=0.6.0=py310hfdbf2a6_1 + - giac=1.9.0.21=h04922a4_1 + - igraph=0.9.10=hefb87a8_1 + - ipython=8.18.1=pyh707e725_3 + - isoduration=20.11.0=pyhd8ed1ab_0 + - jsonschema=4.20.0=pyhd8ed1ab_0 + - jupyter_client=8.6.0=pyhd8ed1ab_0 + - linbox=1.6.3=h681a5ee_8 + - lsprotocol=2023.0.0=pyhd8ed1ab_0 + - openjdk=17.0.3=h1a274e0_5 + - pango=1.50.14=h1f1e9b3_0 + - pydantic=2.5.2=pyhd8ed1ab_0 + - pythran=0.14.0=py310h5e48e15_1 + - scipy=1.11.3=py310hcbab775_1 + - secretstorage=3.3.3=py310hbbe02a8_2 + - setuptools_scm=8.0.4=hd8ed1ab_0 + - tox=4.11.4=pyhd8ed1ab_0 + - blas=2.120=openblas + - cachecontrol-with-filecache=0.13.1=pyhd8ed1ab_0 + - ipykernel=6.26.0=pyhf8b6a83_0 + - ipywidgets=8.1.1=pyhd8ed1ab_0 + - jmol=14.32.10=h8af1aa0_0 + - jsonschema-with-format-nongpl=4.20.0=pyhd8ed1ab_0 + - keyring=24.3.0=py310h4c7bcd0_0 + - matplotlib-base=3.8.2=py310h0a7f329_0 + - nbformat=5.9.2=pyhd8ed1ab_0 + - pygls=1.2.1=pyhd8ed1ab_0 + - r-base=4.2.3=h620ca72_0 + - rw=0.9=hf897c2e_0 + - conda-lock=2.5.1=pyhd8ed1ab_0 + - ipympl=0.9.3=pyhd8ed1ab_0 + - jupyter-jsmol=2022.1.0=pyhd8ed1ab_0 + - jupyter_events=0.9.0=pyhd8ed1ab_0 + - matplotlib=3.8.2=py310hbbe02a8_0 + - nbclient=0.8.0=pyhd8ed1ab_0 + - rpy2=3.5.11=py310r42h8b6b5fc_3 + - nbconvert-core=7.13.0=pyhd8ed1ab_0 + - jupyter_server=2.12.1=pyhd8ed1ab_0 + - nbconvert-pandoc=7.13.0=pyhd8ed1ab_0 + - jupyter-lsp=2.2.1=pyhd8ed1ab_0 + - jupyterlab_server=2.25.2=pyhd8ed1ab_0 + - nbconvert=7.13.0=pyhd8ed1ab_0 + - notebook-shim=0.2.3=pyhd8ed1ab_0 + - jupyterlab=4.0.9=pyhd8ed1ab_0 + - notebook=7.0.6=pyhd8ed1ab_0 + - esbonio=0.16.3=pyhd8ed1ab_0 + - jupyter_sphinx=0.1.4=py_0 + - 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.yml b/src/environment-dev-3.10-linux.yml new file mode 100644 index 00000000000..63279d82c7e --- /dev/null +++ b/src/environment-dev-3.10-linux.yml @@ -0,0 +1,512 @@ +# Generated by conda-lock. +# platform: linux-64 +# input_hash: e806cf8008f4581b2bbb7fa721cb7222007cedcd9dc4ae088a6cfe8342f1c7e7 + +channels: + - conda-forge +dependencies: + - _libgcc_mutex=0.1=conda_forge + - _r-mutex=1.0.1=anacondar_1 + - 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=h77eed37_1 + - 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.84.0=ha770c72_0 + - libgcc-devel_linux-64=12.3.0=h8bca6fd_103 + - libstdcxx-devel_linux-64=12.3.0=h8bca6fd_103 + - libstdcxx-ng=13.2.0=h7e041cc_3 + - mathjax=3.2.2=ha770c72_0 + - 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 + - libgomp=13.2.0=h807b86a_3 + - 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_2 + - _openmp_mutex=4.5=2_kmp_llvm + - libgcc-ng=13.2.0=h807b86a_3 + - alsa-lib=1.2.10=hd590300_0 + - attr=2.5.1=h166bdaf_1 + - bc=1.07.1=h7f98852_0 + - bdw-gc=8.0.6=h4bd325d_0 + - bzip2=1.0.8=hd590300_5 + - c-ares=1.24.0=hd590300_0 + - cliquer=1.22=h36c2ea0_0 + - fribidi=1.0.10=h36c2ea0_0 + - gengetopt=2.23=h9c3ff4c_0 + - gettext=0.21.1=h27087fc_0 + - gf2x=1.3.0=ha476b99_2 + - giflib=5.2.1=h0b41bf4_3 + - gmp=6.3.0=h59595ed_0 + - graphite2=1.3.13=h58526e2_1001 + - icu=73.2=h59595ed_0 + - keyutils=1.6.1=h166bdaf_0 + - lame=3.100=h166bdaf_1003 + - lerc=4.0.0=h27087fc_0 + - libatomic_ops=7.6.14=h166bdaf_0 + - libbraiding=1.2=hcb278e6_0 + - libbrotlicommon=1.1.0=hd590300_1 + - libcbor=0.10.2=hcb278e6_0 + - libdeflate=1.19=hd590300_0 + - libev=4.33=hd590300_2 + - libexpat=2.5.0=hcb278e6_1 + - libffi=3.4.2=h7f98852_5 + - libgfortran5=13.2.0=ha4646dd_3 + - libiconv=1.17=hd590300_2 + - libjpeg-turbo=3.0.0=hd590300_1 + - libnsl=2.0.1=hd590300_0 + - libogg=1.3.4=h7f98852_1 + - libopus=1.3.1=h7f98852_1 + - libsanitizer=12.3.0=h0f45ef3_3 + - libsodium=1.0.18=h36c2ea0_1 + - libtool=2.4.7=h27087fc_0 + - libuuid=2.38.1=h0b41bf4_0 + - libuv=1.46.0=hd590300_0 + - libwebp-base=1.3.2=hd590300_0 + - libzlib=1.2.13=hd590300_5 + - lrcalc=2.1=h27087fc_5 + - lz4-c=1.9.4=hcb278e6_0 + - m4=1.4.18=h516909a_1001 + - make=4.3=hd18ef5c_1 + - metis=5.1.1=h59595ed_2 + - mpg123=1.32.3=h59595ed_0 + - nauty=2.8.8=hd590300_0 + - ncurses=6.4=h59595ed_2 + - ninja=1.11.1=h924138e_0 + - nspr=4.35=h27087fc_0 + - openssl=3.2.0=hd590300_1 + - palp=2.20=h36c2ea0_0 + - patch=2.7.6=h7f98852_1002 + - pixman=0.42.2=h59595ed_0 + - pkg-config=0.29.2=h36c2ea0_1008 + - planarity=3.0.0.5=h36c2ea0_1002 + - primesieve=11.1=h59595ed_0 + - pthread-stubs=0.4=h36c2ea0_1001 + - qhull=2020.2=h4bd325d_2 + - rhash=1.4.4=hd590300_0 + - sed=4.8=he412f7d_0 + - symmetrica=3.0.1=hcb278e6_0 + - xorg-inputproto=2.3.2=h7f98852_1002 + - xorg-kbproto=1.0.7=h7f98852_1002 + - xorg-libice=1.1.1=hd590300_0 + - xorg-libxau=1.0.11=hd590300_0 + - xorg-libxdmcp=1.1.3=h7f98852_0 + - xorg-recordproto=1.14.2=h7f98852_1002 + - xorg-renderproto=0.11.1=h7f98852_1002 + - xorg-xextproto=7.3.0=h0b41bf4_1003 + - xorg-xf86vidmodeproto=2.3.1=h7f98852_1002 + - xorg-xproto=7.0.31=h7f98852_1007 + - xz=5.2.6=h166bdaf_0 + - yaml=0.2.5=h7f98852_2 + - cddlib=1!0.94m=h9202a9a_0 + - ecm=7.0.4=h9202a9a_1002 + - expat=2.5.0=hcb278e6_1 + - gcc_impl_linux-64=12.3.0=he2b93b0_3 + - givaro=4.1.1=h192cbe9_1 + - glpk=5.0=h445213a_0 + - libbrotlidec=1.1.0=hd590300_1 + - libbrotlienc=1.1.0=hd590300_1 + - libcap=2.69=h0f662aa_0 + - libedit=3.1.20191231=he28a2e2_2 + - libevent=2.1.12=hf998b51_1 + - libflac=1.4.3=h59595ed_0 + - libgfortran-ng=13.2.0=h69a702a_3 + - libgpg-error=1.47=h71f35ed_0 + - libhomfly=1.02r6=h36c2ea0_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 + - libvorbis=1.3.7=h9c3ff4c_0 + - libxcb=1.15=h0b41bf4_0 + - 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.42=hcad00b1_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.13=noxft_h4845f30_101 + - xorg-fixesproto=5.0=h7f98852_1002 + - xorg-libsm=1.2.4=h7391055_0 + - zeromq=4.3.5=h59595ed_0 + - zlib=1.2.13=hd590300_5 + - zstd=1.5.5=hfc55251_0 + - autoconf=2.71=pl5321h2b4cb7a_1 + - brotli-bin=1.1.0=hd590300_1 + - bwidget=1.9.14=ha770c72_1 + - ecl=21.2.1=h9d73b02_2 + - fftw=3.3.10=nompi_hc118613_108 + - freetype=2.12.1=h267a509_2 + - gap-core=4.12.2=he9a28a4_3 + - gcc=12.3.0=h8d2909c_2 + - gcc_linux-64=12.3.0=h76fc315_2 + - gfan=0.6.2=hb86e20a_1003 + - gfortran_impl_linux-64=12.3.0=hfcedea8_3 + - gxx_impl_linux-64=12.3.0=he2b93b0_3 + - krb5=1.21.2=h659d440_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 + - libhwloc=2.9.3=default_h554bfaf_1009 + - libllvm15=15.0.7=h5cf9203_3 + - libopenblas=0.3.25=pthreads_h413a1c8_0 + - libsndfile=1.2.2=hc60ed4a_1 + - libtiff=4.6.0=ha9c0a0a_2 + - libudev1=255=h3f72095_0 + - llvm-openmp=17.0.6=h4dfa4b3_0 + - m4ri=20140914=h7ca028e_1005 + - mpc=1.3.1=hfe3b2da_0 + - mpfi=1.5.4=h9f54685_1001 + - mysql-libs=8.0.33=hca2cd23_6 + - nss=3.96=h1d7d5a4_0 + - pandoc=3.1.3=h32600fe_0 + - pari=2.15.4=h4d4ae9b_2_pthread + - ppl=1.2=h6ec01c2_1006 + - python=3.10.13=hd12c33a_0_cpython + - qd=2.3.22=h2cc385e_1004 + - sqlite=3.44.2=h2c6b66d_0 + - tachyon=0.99b6=0 + - texinfo=7.0=pl5321h0f457ee_0 + - tktable=2.10=h0c5db8f_5 + - xcb-util=0.4.0=hd590300_1 + - xcb-util-keysyms=0.4.0=h8ee46fc_1 + - xcb-util-renderutil=0.3.9=hd590300_1 + - xcb-util-wm=0.4.1=h8ee46fc_1 + - xorg-libx11=1.8.7=h8ee46fc_0 + - alabaster=0.7.13=pyhd8ed1ab_0 + - appdirs=1.4.4=pyh9f0ad1d_0 + - appnope=0.1.3=pyhd8ed1ab_0 + - attrs=23.1.0=pyh71513ae_1 + - automake=1.16.5=pl5321ha770c72_0 + - brotli=1.1.0=hd590300_1 + - brotli-python=1.1.0=py310hc6cd4ac_1 + - c-compiler=1.6.0=hd590300_0 + - cached_property=1.5.2=pyha770c72_1 + - cachetools=5.3.2=pyhd8ed1ab_0 + - 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 + - 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.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.8=pyhd8ed1ab_0 + - docutils=0.20.1=py310hff52083_3 + - eclib=20231211=h96f522a_0 + - editables=0.3=pyhd8ed1ab_0 + - entrypoints=0.4=pyhd8ed1ab_0 + - exceptiongroup=1.2.0=pyhd8ed1ab_0 + - execnet=2.0.2=pyhd8ed1ab_0 + - executing=2.0.1=pyhd8ed1ab_0 + - filelock=3.13.1=pyhd8ed1ab_0 + - flit-core=3.9.0=pyhd8ed1ab_0 + - fontconfig=2.14.2=h14ed4e7_0 + - fplll=5.4.5=h384768b_0 + - gap-defaults=4.12.2=ha770c72_3 + - gast=0.5.4=pyhd8ed1ab_0 + - gfortran=12.3.0=h499e0f7_2 + - gfortran_linux-64=12.3.0=h7fe76b4_2 + - glib-tools=2.78.3=hfc55251_0 + - gmpy2=2.1.2=py310h3ec546c_1 + - gxx=12.3.0=h8d2909c_2 + - gxx_linux-64=12.3.0=h8a814eb_2 + - idna=3.6=pyhd8ed1ab_0 + - imagesize=1.4.1=pyhd8ed1ab_0 + - iniconfig=2.0.0=pyhd8ed1ab_0 + - ipython_genutils=0.2.0=py_1 + - jeepney=0.8.0=pyhd8ed1ab_0 + - json5=0.9.14=pyhd8ed1ab_0 + - jsonpointer=2.4=py310hff52083_3 + - jupyterlab_widgets=3.0.9=pyhd8ed1ab_0 + - kiwisolver=1.4.5=py310hd41b1e2_1 + - lcalc=2.0.5=h6a8a7c6_1 + - lcms2=2.16=hb7c19ff_0 + - libblas=3.9.0=20_linux64_openblas + - libboost-devel=1.84.0=h00ab1b0_0 + - libbrial=1.2.12=h3155cbd_1 + - libclang13=15.0.7=default_ha2b6cf4_4 + - libcups=2.3.3=h4637d8d_4 + - libcurl=8.5.0=hca28451_0 + - libfido2=1.14.0=h4446dcb_0 + - libpq=16.1=h33b98f1_7 + - libsystemd0=255=h3516f8a_0 + - libwebp=1.3.2=h658648e_1 + - m4rie=20150908=h7ca028e_1001 + - markupsafe=2.1.3=py310h2372a71_1 + - maxima=5.47.0=hed6455c_1 + - mistune=3.0.2=pyhd8ed1ab_0 + - more-itertools=10.1.0=pyhd8ed1ab_0 + - mpmath=1.3.0=pyhd8ed1ab_0 + - msgpack-python=1.0.7=py310hd41b1e2_0 + - munkres=1.1.4=pyh9f0ad1d_0 + - nest-asyncio=1.5.8=pyhd8ed1ab_0 + - networkx=3.2.1=pyhd8ed1ab_0 + - openblas=0.3.25=pthreads_h7a3da1a_0 + - openjpeg=2.5.0=h488ebb8_3 + - packaging=23.2=pyhd8ed1ab_0 + - pandocfilters=1.5.0=pyhd8ed1ab_0 + - parso=0.8.3=pyhd8ed1ab_0 + - pastel=0.2.1=pyhd8ed1ab_0 + - pathspec=0.12.1=pyhd8ed1ab_0 + - pickleshare=0.7.5=py_1003 + - pkgconfig=1.5.5=pyhd8ed1ab_4 + - pkginfo=1.9.6=pyhd8ed1ab_0 + - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 + - platformdirs=4.1.0=pyhd8ed1ab_0 + - pluggy=1.3.0=pyhd8ed1ab_0 + - ply=3.11=py_1 + - prometheus_client=0.19.0=pyhd8ed1ab_0 + - psutil=5.9.7=py310h2372a71_0 + - ptyprocess=0.7.0=pyhd3deb0d_0 + - pure_eval=0.2.2=pyhd8ed1ab_0 + - py=1.11.0=pyh6c4a22f_0 + - pybind11-global=2.11.1=py310hd41b1e2_2 + - pycodestyle=2.11.1=pyhd8ed1ab_0 + - pycparser=2.21=pyhd8ed1ab_0 + - pygments=2.17.2=pyhd8ed1ab_0 + - pylev=1.4.0=pyhd8ed1ab_0 + - pyparsing=3.1.1=pyhd8ed1ab_0 + - pyrsistent=0.20.0=py310h2372a71_0 + - pysocks=1.7.1=pyha2e5f31_6 + - pyspellchecker=0.7.2=pyhd8ed1ab_0 + - python-fastjsonschema=2.19.0=pyhd8ed1ab_0 + - python-json-logger=2.0.7=pyhd8ed1ab_0 + - python-lrcalc=2.1=py310hd8f1fbe_5 + - python-tzdata=2023.3=pyhd8ed1ab_0 + - pytz=2023.3.post1=pyhd8ed1ab_0 + - pyyaml=6.0.1=py310h2372a71_1 + - pyzmq=25.1.2=py310h795f18f_0 + - rfc3986-validator=0.1.1=pyh9f0ad1d_0 + - rpds-py=0.15.2=py310hcb5633a_0 + - ruamel.yaml.clib=0.2.7=py310h2372a71_2 + - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 + - sagetex=3.6.1=pyhd8ed1ab_0 + - send2trash=1.8.2=pyh41d4057_0 + - setuptools=68.2.2=pyhd8ed1ab_0 + - simplegeneric=0.8.1=py_1 + - singular=4.3.2.p8=h33f5c3f_1 + - six=1.16.0=pyh6c4a22f_0 + - smmap=5.0.0=pyhd8ed1ab_0 + - sniffio=1.3.0=pyhd8ed1ab_0 + - snowballstemmer=2.2.0=pyhd8ed1ab_0 + - soupsieve=2.5=pyhd8ed1ab_1 + - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_0 + - sympow=2.023.6=hc6ab17c_3 + - tbb=2021.11.0=h00ab1b0_0 + - toml=0.10.2=pyhd8ed1ab_0 + - tomli=2.0.1=pyhd8ed1ab_0 + - tomlkit=0.12.3=pyha770c72_0 + - toolz=0.12.0=pyhd8ed1ab_0 + - tornado=6.3.3=py310h2372a71_1 + - traitlets=5.14.0=pyhd8ed1ab_0 + - trove-classifiers=2023.11.29=pyhd8ed1ab_0 + - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 + - typing_extensions=4.9.0=pyha770c72_0 + - typing_utils=0.1.0=pyhd8ed1ab_0 + - tzlocal=5.2=py310hff52083_0 + - unicodedata2=15.1.0=py310h2372a71_0 + - uri-template=1.3.0=pyhd8ed1ab_0 + - wcwidth=0.2.12=pyhd8ed1ab_0 + - webcolors=1.13=pyhd8ed1ab_0 + - webencodings=0.5.1=pyhd8ed1ab_2 + - websocket-client=1.7.0=pyhd8ed1ab_0 + - wheel=0.42.0=pyhd8ed1ab_0 + - widgetsnbextension=4.0.9=pyhd8ed1ab_0 + - xcb-util-image=0.4.0=h8ee46fc_1 + - xkeyboard-config=2.40=hd590300_0 + - xorg-libxext=1.3.4=h0b41bf4_2 + - xorg-libxfixes=5.0.3=h7f98852_1004 + - xorg-libxrender=0.9.11=hd590300_0 + - xorg-libxt=1.3.0=hd590300_1 + - zipp=3.17.0=pyhd8ed1ab_0 + - anyio=4.2.0=pyhd8ed1ab_0 + - asttokens=2.4.1=pyhd8ed1ab_0 + - async-lru=2.0.4=pyhd8ed1ab_0 + - babel=2.14.0=pyhd8ed1ab_0 + - beautifulsoup4=4.12.2=pyha770c72_0 + - beniget=0.4.1=pyhd8ed1ab_0 + - bleach=6.1.0=pyhd8ed1ab_0 + - boost-cpp=1.84.0=h44aadfe_0 + - brial=1.2.12=pyh694c41f_1 + - cached-property=1.5.2=hd8ed1ab_1 + - cairo=1.18.0=h3faef2a_0 + - cffi=1.16.0=py310h2fee648_0 + - click-default-group=1.2.4=pyhd8ed1ab_0 + - clikit=0.6.2=pyhd8ed1ab_2 + - cmake=3.28.1=hcfe8598_0 + - comm=0.1.4=pyhd8ed1ab_0 + - cppy=1.2.1=pyhd8ed1ab_0 + - curl=8.5.0=hca28451_0 + - cxx-compiler=1.6.0=h00ab1b0_0 + - cypari2=2.1.3=py310h14ed79e_2 + - deprecation=2.1.0=pyh9f0ad1d_0 + - fonttools=4.47.0=py310h2372a71_0 + - fortran-compiler=1.6.0=heb67821_0 + - gitdb=4.0.11=pyhd8ed1ab_0 + - glib=2.78.3=hfc55251_0 + - html5lib=1.1=pyh9f0ad1d_0 + - importlib-metadata=7.0.0=pyha770c72_0 + - importlib_resources=6.1.1=pyhd8ed1ab_0 + - jaraco.classes=3.3.0=pyhd8ed1ab_0 + - jedi=0.19.1=pyhd8ed1ab_0 + - jinja2=3.1.2=pyhd8ed1ab_1 + - jupyter_core=5.5.1=py310hff52083_0 + - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 + - libcblas=3.9.0=20_linux64_openblas + - libclang=15.0.7=default_hb11cfb5_4 + - libgd=2.3.3=h119a65a_9 + - liblapack=3.9.0=20_linux64_openblas + - libxkbcommon=1.6.0=h5d7e998_0 + - matplotlib-inline=0.1.6=pyhd8ed1ab_0 + - memory-allocator=0.1.3=py310h2372a71_0 + - openssh=9.3p1=h2d3b35a_2 + - overrides=7.4.0=pyhd8ed1ab_0 + - pexpect=4.8.0=pyh1a96a4e_2 + - pillow=10.1.0=py310h01dd4db_0 + - pip=23.3.2=pyhd8ed1ab_0 + - pplpy=0.8.9=py310h28f6eb6_0 + - primecountpy=0.1.0=py310hd41b1e2_4 + - prompt-toolkit=3.0.42=pyha770c72_0 + - pulseaudio-client=16.1=hb77b528_5 + - pybind11=2.11.1=py310hd41b1e2_2 + - pyproject-api=1.6.1=pyhd8ed1ab_0 + - pytest=7.4.3=pyhd8ed1ab_0 + - python-dateutil=2.8.2=pyhd8ed1ab_0 + - pytz-deprecation-shim=0.1.0.post0=py310hff52083_4 + - referencing=0.32.0=pyhd8ed1ab_0 + - rfc3339-validator=0.1.4=pyhd8ed1ab_0 + - ruamel.yaml=0.18.5=py310h2372a71_0 + - sip=6.7.12=py310hc6cd4ac_0 + - sympy=1.12=pypyh9d50eac_103 + - terminado=0.18.0=pyh0d859eb_0 + - tinycss2=1.2.1=pyhd8ed1ab_0 + - typing-extensions=4.9.0=hd8ed1ab_0 + - urllib3=1.26.18=pyhd8ed1ab_0 + - virtualenv=20.25.0=pyhd8ed1ab_0 + - xorg-libxi=1.7.10=h7f98852_0 + - annotated-types=0.6.0=pyhd8ed1ab_0 + - argon2-cffi-bindings=21.2.0=py310h2372a71_4 + - arpack=3.8.0=nompi_h0baa96a_101 + - arrow=1.3.0=pyhd8ed1ab_0 + - cattrs=23.2.3=pyhd8ed1ab_0 + - compilers=1.6.0=ha770c72_0 + - cryptography=41.0.7=py310hb8475ec_1 + - dsdp=5.8=hd9d9efa_1203 + - fflas-ffpack=2.4.3=h912ac81_2 + - fqdn=1.5.1=pyhd8ed1ab_0 + - git=2.43.0=pl5321h7bc287a_0 + - gitpython=3.1.40=pyhd8ed1ab_0 + - gsl=2.7=he838d99_0 + - gstreamer=1.22.8=h98fc4e7_0 + - harfbuzz=8.3.0=h3d44ed6_0 + - hatchling=1.21.0=pyhd8ed1ab_0 + - iml=1.0.5=hd75c201_1003 + - importlib-resources=6.1.1=pyhd8ed1ab_0 + - importlib_metadata=7.0.0=hd8ed1ab_0 + - jsonschema-specifications=2023.11.2=pyhd8ed1ab_0 + - jupyter_server_terminals=0.5.0=pyhd8ed1ab_0 + - liblapacke=3.9.0=20_linux64_openblas + - numpy=1.26.2=py310hb13e2d6_0 + - prompt_toolkit=3.0.42=hd8ed1ab_0 + - pydantic-core=2.14.5=py310hcb5633a_0 + - pyqt5-sip=12.12.2=py310hc6cd4ac_5 + - pytest-xdist=3.5.0=pyhd8ed1ab_0 + - requests=2.31.0=pyhd8ed1ab_0 + - setuptools-scm=8.0.4=pyhd8ed1ab_0 + - stack_data=0.6.2=pyhd8ed1ab_0 + - suitesparse=5.10.1=h3ec001c_2 + - xorg-libxtst=1.2.3=h7f98852_1002 + - argon2-cffi=23.1.0=pyhd8ed1ab_0 + - blas-devel=3.9.0=20_linux64_openblas + - cachecontrol=0.13.1=pyhd8ed1ab_0 + - contourpy=1.2.0=py310hd41b1e2_0 + - cvxopt=1.3.2=py310h14a12bf_1 + - ensureconda=1.4.3=pyhd8ed1ab_0 + - fpylll=0.6.0=py310h7e26f94_1 + - giac=1.9.0.21=h673759e_1 + - gst-plugins-base=1.22.8=h8e1006c_0 + - igraph=0.10.8=h66a01bf_0 + - ipython=8.18.1=pyh707e725_3 + - isoduration=20.11.0=pyhd8ed1ab_0 + - jsonschema=4.20.0=pyhd8ed1ab_0 + - jupyter_client=8.6.0=pyhd8ed1ab_0 + - linbox=1.6.3=ha329b40_8 + - lsprotocol=2023.0.0=pyhd8ed1ab_0 + - openjdk=21.0.1=haa376d0_0 + - pango=1.50.14=ha41ecd1_2 + - pydantic=2.5.2=pyhd8ed1ab_0 + - pythran=0.14.0=py310hcb52e73_1 + - scipy=1.11.4=py310hb13e2d6_0 + - secretstorage=3.3.3=py310hff52083_2 + - setuptools_scm=8.0.4=hd8ed1ab_0 + - tox=4.11.4=pyhd8ed1ab_0 + - blas=2.120=openblas + - cachecontrol-with-filecache=0.13.1=pyhd8ed1ab_0 + - ipykernel=6.26.0=pyhf8b6a83_0 + - ipywidgets=8.1.1=pyhd8ed1ab_0 + - jmol=14.32.10=ha770c72_0 + - jsonschema-with-format-nongpl=4.20.0=pyhd8ed1ab_0 + - keyring=24.3.0=py310hff52083_0 + - matplotlib-base=3.8.2=py310h62c0568_0 + - nbformat=5.9.2=pyhd8ed1ab_0 + - pygls=1.2.1=pyhd8ed1ab_0 + - qt-main=5.15.8=h82b777d_17 + - r-base=4.3.2=hb8ee39d_1 + - rw=0.9=hd590300_1 + - conda-lock=2.5.1=pyhd8ed1ab_0 + - ipympl=0.9.3=pyhd8ed1ab_0 + - jupyter-jsmol=2022.1.0=pyhd8ed1ab_0 + - jupyter_events=0.9.0=pyhd8ed1ab_0 + - nbclient=0.8.0=pyhd8ed1ab_0 + - pyqt=5.15.9=py310h04931ad_5 + - rpy2=3.5.11=py310r43h1f7b6fc_3 + - matplotlib=3.8.2=py310hff52083_0 + - nbconvert-core=7.13.0=pyhd8ed1ab_0 + - jupyter_server=2.12.1=pyhd8ed1ab_0 + - nbconvert-pandoc=7.13.0=pyhd8ed1ab_0 + - jupyter-lsp=2.2.1=pyhd8ed1ab_0 + - jupyterlab_server=2.25.2=pyhd8ed1ab_0 + - nbconvert=7.13.0=pyhd8ed1ab_0 + - notebook-shim=0.2.3=pyhd8ed1ab_0 + - jupyterlab=4.0.9=pyhd8ed1ab_0 + - notebook=7.0.6=pyhd8ed1ab_0 + - esbonio=0.16.3=pyhd8ed1ab_0 + - jupyter_sphinx=0.4.0=py310hff52083_1 + - sphinx-basic-ng=1.0.0b2=pyhd8ed1ab_1 + - furo=2023.9.10=pyhd8ed1ab_0 + - sphinx-copybutton=0.5.2=pyhd8ed1ab_0 + - sphinxcontrib-applehelp=1.0.7=pyhd8ed1ab_0 + - sphinxcontrib-devhelp=1.0.5=pyhd8ed1ab_0 + - sphinxcontrib-htmlhelp=2.0.4=pyhd8ed1ab_0 + - sphinxcontrib-qthelp=1.0.6=pyhd8ed1ab_0 + - 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-arm64.yml b/src/environment-dev-3.10-macos-arm64.yml new file mode 100644 index 00000000000..d86a78207a8 --- /dev/null +++ b/src/environment-dev-3.10-macos-arm64.yml @@ -0,0 +1,444 @@ +# Generated by conda-lock. +# platform: osx-arm64 +# input_hash: eff22b2db37bc406cee8452950a7798c9503f58420a2ce0031b9564d18b33696 + +channels: + - conda-forge +dependencies: + - _r-mutex=1.0.1=anacondar_1 + - bc=1.07.1=h3422bc3_0 + - bzip2=1.0.8=h93a5062_5 + - c-ares=1.24.0=h93a5062_0 + - ca-certificates=2023.11.17=hf0a4a13_0 + - cliquer=1.22=h27ca646_0 + - font-ttf-dejavu-sans-mono=2.37=hab24e00_0 + - font-ttf-inconsolata=3.000=h77eed37_0 + - font-ttf-source-code-pro=2.038=h77eed37_0 + - font-ttf-ubuntu=0.83=h77eed37_1 + - fribidi=1.0.10=h27ca646_0 + - gh=2.40.1=h75b854d_0 + - giflib=5.2.1=h1a8c8d9_3 + - jpeg=9e=h1a8c8d9_3 + - libatomic_ops=7.6.14=h1a8c8d9_0 + - libbrotlicommon=1.1.0=hb547adb_1 + - libcxx=16.0.6=h4653b0c_0 + - libdeflate=1.17=h1a8c8d9_0 + - libev=4.33=h93a5062_2 + - libexpat=2.5.0=hb7217d7_1 + - libffi=3.4.2=h3422bc3_5 + - libgfortran-devel_osx-arm64=12.3.0=hc62be1c_1 + - libiconv=1.17=h0d3ecfb_2 + - 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.6=hcd81f8e_0 + - m4=1.4.18=h642e427_1001 + - make=4.3=he57ea6c_1 + - mathjax=3.2.2=hce30654_0 + - nauty=2.8.8=h93a5062_0 + - 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 + - tbb=2021.10.0=h1995070_2 + - 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.3.0=h965bd2d_0 + - graphite2=1.3.13=h9f76cd9_1001 + - icu=70.1=h6b3803e_0 + - isl=0.25=h9a09cb3_0 + - lerc=4.0.0=h9a09cb3_0 + - libbraiding=1.2=hb7217d7_0 + - libbrotlidec=1.1.0=hb547adb_1 + - libbrotlienc=1.1.0=hb547adb_1 + - libcbor=0.10.2=hb7217d7_0 + - libgfortran5=13.2.0=hf226fd6_1 + - libpng=1.6.39=h76d750c_0 + - libsqlite=3.44.2=h091b4b1_0 + - libxcb=1.13=h9b22ae9_1004 + - lrcalc=2.1=hb7217d7_5 + - metis=5.1.1=h965bd2d_2 + - ncurses=6.4=h463b476_2 + - ninja=1.11.1=hffc8910_0 + - openjdk=21.0.1=hed44d8b_0 + - openssl=3.2.0=h0d3ecfb_1 + - 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 + - symmetrica=3.0.1=hb7217d7_0 + - tapi=1100.0.11=he4954df_0 + - tar=1.34=h7cb298e_1 + - threejs-sage=122=hd8ed1ab_2 + - tk=8.6.13=h5083fa2_1 + - zeromq=4.3.5=h965bd2d_0 + - zlib=1.2.13=h53f4e23_5 + - zstd=1.5.5=h4f39d0f_0 + - automake=1.16.5=pl5321hce30654_0 + - boost-cpp=1.81.0=hf96b251_0 + - brotli-bin=1.1.0=hb547adb_1 + - bwidget=1.9.14=hce30654_1 + - cddlib=1!0.94m=h6d7a090_0 + - ecm=7.0.4=h47c7c1a_1002 + - fonts-conda-ecosystem=1=0 + - freetype=2.12.1=hadb7bae_2 + - givaro=4.1.1=h0cdca34_3 + - glpk=5.0=h6d7a090_0 + - jmol=14.32.10=hce30654_0 + - libedit=3.1.20191231=hc8eb9b7_2 + - libfido2=1.14.0=h8d15234_0 + - libgfortran=5.0.0=13_2_0_hd922786_1 + - libglib=2.78.1=hd9b11f9_0 + - libhomfly=1.02r6=h27ca646_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 + - m4ri=20140914=h17b34a0_1005 + - mpfr=4.2.1=h9546428_0 + - ntl=11.4.3=hbb3f309_1 + - primecount=7.6=hb6e4faa_0 + - readline=8.2=h92ec313_1 + - sigtool=0.1.3=h44b9a77_0 + - tachyon=0.99b6=hfb72b2a_1001 + - texinfo=7.0=pl5321h9ea1dce_0 + - tktable=2.10=hd996620_5 + - brotli=1.1.0=hb547adb_1 + - ecl=21.2.1=h8492d4d_2 + - fftw=3.3.10=nompi_h3046061_108 + - fontconfig=2.14.2=h82840c6_0 + - gap-core=4.12.2=he8f4e70_3 + - gfan=0.6.2=hec08f5c_1003 + - krb5=1.20.1=h69eda48_0 + - lcms2=2.15=h481adae_0 + - libbrial=1.2.12=ha7f5006_1 + - 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 + - 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 + - attrs=23.1.0=pyh71513ae_1 + - brial=1.2.12=pyh694c41f_1 + - brotli-python=1.1.0=py310h1253130_1 + - cached_property=1.5.2=pyha770c72_1 + - cachetools=5.3.2=pyhd8ed1ab_0 + - cachy=0.3.0=pyhd8ed1ab_1 + - cairo=1.16.0=h73a0509_1014 + - certifi=2023.11.17=pyhd8ed1ab_0 + - chardet=5.2.0=py310hbe9552e_1 + - 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.7=py310h692a8b6_0 + - debugpy=1.8.0=py310h1253130_1 + - decorator=5.1.1=pyhd8ed1ab_0 + - defusedxml=0.7.1=pyhd8ed1ab_0 + - distlib=0.3.8=pyhd8ed1ab_0 + - docutils=0.20.1=py310hbe9552e_3 + - eclib=20231211=h7f07de4_0 + - editables=0.3=pyhd8ed1ab_0 + - entrypoints=0.4=pyhd8ed1ab_0 + - exceptiongroup=1.2.0=pyhd8ed1ab_0 + - execnet=2.0.2=pyhd8ed1ab_0 + - executing=2.0.1=pyhd8ed1ab_0 + - filelock=3.13.1=pyhd8ed1ab_0 + - flit-core=3.9.0=pyhd8ed1ab_0 + - fplll=5.4.5=hb7d509d_0 + - gap-defaults=4.12.2=hce30654_3 + - gast=0.5.4=pyhd8ed1ab_0 + - gfortran_impl_osx-arm64=12.3.0=hbbb9e1e_1 + - gmpy2=2.1.2=py310h2e6cad2_1 + - idna=3.6=pyhd8ed1ab_0 + - imagesize=1.4.1=pyhd8ed1ab_0 + - iniconfig=2.0.0=pyhd8ed1ab_0 + - ipython_genutils=0.2.0=py_1 + - json5=0.9.14=pyhd8ed1ab_0 + - jsonpointer=2.4=py310hbe9552e_3 + - jupyterlab_widgets=3.0.9=pyhd8ed1ab_0 + - kiwisolver=1.4.5=py310h38f39d4_1 + - lcalc=2.0.5=hc94e8e6_1 + - ld64_osx-arm64=609=hc4dc95b_15 + - libblas=3.9.0=20_osxarm64_openblas + - libclang-cpp15=15.0.7=default_hd209bcb_4 + - libcurl=8.1.2=h912dcd9_0 + - libgd=2.3.3=h90fb8ed_4 + - llvm-tools=15.0.7=h62b9111_1 + - markupsafe=2.1.3=py310h2aa6e3c_1 + - 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 + - openblas=0.3.25=openmp_h55c453e_0 + - openssh=9.3p1=h7126958_1 + - packaging=23.2=pyhd8ed1ab_0 + - pandocfilters=1.5.0=pyhd8ed1ab_0 + - parso=0.8.3=pyhd8ed1ab_0 + - pastel=0.2.1=pyhd8ed1ab_0 + - pathspec=0.12.1=pyhd8ed1ab_0 + - pickleshare=0.7.5=py_1003 + - pillow=9.4.0=py310h5a7539a_1 + - pkgconfig=1.5.5=pyhd8ed1ab_4 + - pkginfo=1.9.6=pyhd8ed1ab_0 + - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 + - platformdirs=4.1.0=pyhd8ed1ab_0 + - pluggy=1.3.0=pyhd8ed1ab_0 + - ply=3.11=py_1 + - prometheus_client=0.19.0=pyhd8ed1ab_0 + - psutil=5.9.7=py310hd125d64_0 + - ptyprocess=0.7.0=pyhd3deb0d_0 + - pure_eval=0.2.2=pyhd8ed1ab_0 + - py=1.11.0=pyh6c4a22f_0 + - pybind11-global=2.11.1=py310h38f39d4_2 + - pycodestyle=2.11.1=pyhd8ed1ab_0 + - pycparser=2.21=pyhd8ed1ab_0 + - pygments=2.17.2=pyhd8ed1ab_0 + - pylev=1.4.0=pyhd8ed1ab_0 + - pyparsing=3.1.1=pyhd8ed1ab_0 + - pyrsistent=0.20.0=py310hd125d64_0 + - pysocks=1.7.1=pyha2e5f31_6 + - pyspellchecker=0.7.2=pyhd8ed1ab_0 + - python-fastjsonschema=2.19.0=pyhd8ed1ab_0 + - python-json-logger=2.0.7=pyhd8ed1ab_0 + - python-lrcalc=2.1=py310h0f1eb42_5 + - python-tzdata=2023.3=pyhd8ed1ab_0 + - pytz=2023.3.post1=pyhd8ed1ab_0 + - pyyaml=6.0.1=py310h2aa6e3c_1 + - pyzmq=25.1.2=py310hbb13138_0 + - rfc3986-validator=0.1.1=pyh9f0ad1d_0 + - rpds-py=0.15.2=py310hd442715_0 + - ruamel.yaml.clib=0.2.7=py310h2aa6e3c_2 + - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 + - sagetex=3.6.1=pyhd8ed1ab_0 + - setuptools=68.2.2=pyhd8ed1ab_0 + - simplegeneric=0.8.1=py_1 + - singular=4.3.2.p8=hb460b52_1 + - six=1.16.0=pyh6c4a22f_0 + - smmap=5.0.0=pyhd8ed1ab_0 + - sniffio=1.3.0=pyhd8ed1ab_0 + - snowballstemmer=2.2.0=pyhd8ed1ab_0 + - soupsieve=2.5=pyhd8ed1ab_1 + - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_0 + - sympow=2.023.6=hb0babe8_3 + - tomli=2.0.1=pyhd8ed1ab_0 + - tomlkit=0.12.3=pyha770c72_0 + - toolz=0.12.0=pyhd8ed1ab_0 + - tornado=6.3.3=py310h2aa6e3c_1 + - traitlets=5.14.0=pyhd8ed1ab_0 + - trove-classifiers=2023.11.29=pyhd8ed1ab_0 + - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 + - typing_extensions=4.9.0=pyha770c72_0 + - typing_utils=0.1.0=pyhd8ed1ab_0 + - tzlocal=5.2=py310hbe9552e_0 + - unicodedata2=15.1.0=py310h2aa6e3c_0 + - uri-template=1.3.0=pyhd8ed1ab_0 + - wcwidth=0.2.12=pyhd8ed1ab_0 + - webcolors=1.13=pyhd8ed1ab_0 + - webencodings=0.5.1=pyhd8ed1ab_2 + - websocket-client=1.7.0=pyhd8ed1ab_0 + - wheel=0.42.0=pyhd8ed1ab_0 + - widgetsnbextension=4.0.9=pyhd8ed1ab_0 + - zipp=3.17.0=pyhd8ed1ab_0 + - anyio=4.2.0=pyhd8ed1ab_0 + - asttokens=2.4.1=pyhd8ed1ab_0 + - async-lru=2.0.4=pyhd8ed1ab_0 + - babel=2.14.0=pyhd8ed1ab_0 + - beautifulsoup4=4.12.2=pyha770c72_0 + - beniget=0.4.1=pyhd8ed1ab_0 + - bleach=6.1.0=pyhd8ed1ab_0 + - cached-property=1.5.2=hd8ed1ab_1 + - cctools_osx-arm64=973.0.1=h2a25c60_15 + - cffi=1.16.0=py310hdcd7c05_0 + - clang-15=15.0.7=default_hd209bcb_4 + - click-default-group=1.2.4=pyhd8ed1ab_0 + - clikit=0.6.2=pyhd8ed1ab_2 + - cmake=3.26.4=hc0af03a_0 + - comm=0.1.4=pyhd8ed1ab_0 + - cppy=1.2.1=pyhd8ed1ab_0 + - curl=8.1.2=h912dcd9_0 + - cypari2=2.1.3=py310h13936bf_2 + - deprecation=2.1.0=pyh9f0ad1d_0 + - fonttools=4.47.0=py310hd125d64_0 + - gitdb=4.0.11=pyhd8ed1ab_0 + - harfbuzz=6.0.0=hddbc195_0 + - html5lib=1.1=pyh9f0ad1d_0 + - importlib-metadata=7.0.0=pyha770c72_0 + - importlib_resources=6.1.1=pyhd8ed1ab_0 + - jaraco.classes=3.3.0=pyhd8ed1ab_0 + - jedi=0.19.1=pyhd8ed1ab_0 + - jinja2=3.1.2=pyhd8ed1ab_1 + - jupyter_core=5.5.1=py310hbe9552e_0 + - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 + - ld64=609=h89fa09d_15 + - libcblas=3.9.0=20_osxarm64_openblas + - liblapack=3.9.0=20_osxarm64_openblas + - matplotlib-inline=0.1.6=pyhd8ed1ab_0 + - memory-allocator=0.1.3=py310h2aa6e3c_0 + - overrides=7.4.0=pyhd8ed1ab_0 + - pexpect=4.8.0=pyh1a96a4e_2 + - pip=23.3.2=pyhd8ed1ab_0 + - pplpy=0.8.9=py310hab1f656_0 + - primecountpy=0.1.0=py310h38f39d4_4 + - prompt-toolkit=3.0.42=pyha770c72_0 + - pybind11=2.11.1=py310h38f39d4_2 + - pyobjc-core=10.1=py310hb3aa912_0 + - pyproject-api=1.6.1=pyhd8ed1ab_0 + - pytest=7.4.3=pyhd8ed1ab_0 + - python-dateutil=2.8.2=pyhd8ed1ab_0 + - pytz-deprecation-shim=0.1.0.post0=py310hbe9552e_4 + - referencing=0.32.0=pyhd8ed1ab_0 + - rfc3339-validator=0.1.4=pyhd8ed1ab_0 + - ruamel.yaml=0.18.5=py310hd125d64_0 + - sympy=1.12=pypyh9d50eac_103 + - terminado=0.18.0=pyh31c8845_0 + - tinycss2=1.2.1=pyhd8ed1ab_0 + - typing-extensions=4.9.0=hd8ed1ab_0 + - urllib3=1.26.18=pyhd8ed1ab_0 + - virtualenv=20.25.0=pyhd8ed1ab_0 + - annotated-types=0.6.0=pyhd8ed1ab_0 + - argon2-cffi-bindings=21.2.0=py310h2aa6e3c_4 + - arpack=3.7.0=h58ebc17_2 + - arrow=1.3.0=pyhd8ed1ab_0 + - cattrs=23.2.3=pyhd8ed1ab_0 + - cctools=973.0.1=hd1ac623_15 + - clang=15.0.7=haab561b_4 + - dsdp=5.8=h9397a75_1203 + - fflas-ffpack=2.4.3=h11f2abc_2 + - fqdn=1.5.1=pyhd8ed1ab_0 + - git=2.42.0=pl5321h46e2b6d_0 + - gitpython=3.1.40=pyhd8ed1ab_0 + - gsl=2.7=h6e638da_0 + - hatchling=1.21.0=pyhd8ed1ab_0 + - iml=1.0.5=hd52f0d1_1003 + - importlib-resources=6.1.1=pyhd8ed1ab_0 + - importlib_metadata=7.0.0=hd8ed1ab_0 + - jsonschema-specifications=2023.11.2=pyhd8ed1ab_0 + - jupyter_server_terminals=0.5.0=pyhd8ed1ab_0 + - liblapacke=3.9.0=20_osxarm64_openblas + - numpy=1.26.2=py310h30ee222_0 + - pango=1.50.14=h6c112b8_0 + - prompt_toolkit=3.0.42=hd8ed1ab_0 + - pydantic-core=2.14.5=py310hd442715_0 + - pyobjc-framework-cocoa=10.1=py310hb3aa912_0 + - pytest-xdist=3.5.0=pyhd8ed1ab_0 + - requests=2.31.0=pyhd8ed1ab_0 + - setuptools-scm=8.0.4=pyhd8ed1ab_0 + - stack_data=0.6.2=pyhd8ed1ab_0 + - suitesparse=5.10.1=h88be0ae_2 + - argon2-cffi=23.1.0=pyhd8ed1ab_0 + - blas-devel=3.9.0=20_osxarm64_openblas + - cachecontrol=0.13.1=pyhd8ed1ab_0 + - clangxx=15.0.7=default_h5c94ee4_4 + - 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 + - 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=py310hbe9552e_0 + - linbox=1.6.3=h380be0f_8 + - lsprotocol=2023.0.0=pyhd8ed1ab_0 + - pydantic=2.5.2=pyhd8ed1ab_0 + - scipy=1.11.4=py310h2b794db_0 + - send2trash=1.8.2=pyhd1c38e8_0 + - setuptools_scm=8.0.4=hd8ed1ab_0 + - tox=4.11.4=pyhd8ed1ab_0 + - blas=2.120=openblas + - cachecontrol-with-filecache=0.13.1=pyhd8ed1ab_0 + - compiler-rt_osx-arm64=15.0.7=h3808999_2 + - ipykernel=6.26.0=pyh3cd1d5f_0 + - ipywidgets=8.1.1=pyhd8ed1ab_0 + - jsonschema-with-format-nongpl=4.20.0=pyhd8ed1ab_0 + - matplotlib-base=3.8.2=py310h9d2df84_0 + - nbformat=5.9.2=pyhd8ed1ab_0 + - pygls=1.2.1=pyhd8ed1ab_0 + - rw=0.9=h3422bc3_0 + - compiler-rt=15.0.7=h3808999_2 + - conda-lock=2.5.1=pyhd8ed1ab_0 + - ipympl=0.9.3=pyhd8ed1ab_0 + - jupyter-jsmol=2022.1.0=pyhd8ed1ab_0 + - jupyter_events=0.9.0=pyhd8ed1ab_0 + - matplotlib=3.8.2=py310hb6292c7_0 + - nbclient=0.8.0=pyhd8ed1ab_0 + - clang_impl_osx-arm64=15.0.7=h77e971b_7 + - nbconvert-core=7.13.0=pyhd8ed1ab_0 + - clang_osx-arm64=15.0.7=h54d7cd3_7 + - jupyter_server=2.12.1=pyhd8ed1ab_0 + - nbconvert-pandoc=7.13.0=pyhd8ed1ab_0 + - c-compiler=1.6.0=hd291e01_0 + - clangxx_impl_osx-arm64=15.0.7=h768a7fd_7 + - gfortran_osx-arm64=12.3.0=h57527a5_1 + - jupyter-lsp=2.2.1=pyhd8ed1ab_0 + - jupyterlab_server=2.25.2=pyhd8ed1ab_0 + - nbconvert=7.13.0=pyhd8ed1ab_0 + - notebook-shim=0.2.3=pyhd8ed1ab_0 + - clangxx_osx-arm64=15.0.7=h54d7cd3_7 + - gfortran=12.3.0=h1ca8e4b_1 + - jupyterlab=4.0.9=pyhd8ed1ab_0 + - cxx-compiler=1.6.0=h1995070_0 + - fortran-compiler=1.6.0=h5a50232_0 + - notebook=7.0.6=pyhd8ed1ab_0 + - pythran=0.14.0=py310he53c7d2_1 + - r-base=4.1.3=h9c4d319_6 + - compilers=1.6.0=hce30654_0 + - rpy2=3.5.11=py310r41hf1a086a_0 + - esbonio=0.16.3=pyhd8ed1ab_0 + - jupyter_sphinx=0.1.4=py_0 + - 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 new file mode 100644 index 00000000000..c35a0480400 --- /dev/null +++ b/src/environment-dev-3.10-macos.yml @@ -0,0 +1,448 @@ +# Generated by conda-lock. +# platform: osx-64 +# input_hash: 6eb9d5d3e7cea14a6487c37418ba6c346a5e94b0bbb07ea1594ce8447bc2d700 + +channels: + - conda-forge +dependencies: + - _r-mutex=1.0.1=anacondar_1 + - bc=1.07.1=h0d85af4_0 + - bzip2=1.0.8=h10d778d_5 + - c-ares=1.24.0=h10d778d_0 + - ca-certificates=2023.11.17=h8857fd0_0 + - cliquer=1.22=hbcb3906_0 + - font-ttf-dejavu-sans-mono=2.37=hab24e00_0 + - font-ttf-inconsolata=3.000=h77eed37_0 + - font-ttf-source-code-pro=2.038=h77eed37_0 + - font-ttf-ubuntu=0.83=h77eed37_1 + - fribidi=1.0.10=hbcb3906_0 + - gh=2.40.1=h990441c_0 + - giflib=5.2.1=hb7f2c08_3 + - icu=73.2=hf5e326d_0 + - libatomic_ops=7.6.14=hb7f2c08_0 + - libboost-headers=1.84.0=h694c41f_0 + - libbrotlicommon=1.1.0=h0dc2134_1 + - libcxx=16.0.6=hd57cbcb_0 + - libdeflate=1.19=ha4e1b8e_0 + - libev=4.33=h10d778d_2 + - libexpat=2.5.0=hf0c8a7f_1 + - libffi=3.4.2=h0d85af4_5 + - libgfortran-devel_osx-64=12.3.0=h0b6f5ec_1 + - libiconv=1.17=hd75f5a5_2 + - libjpeg-turbo=3.0.0=h0dc2134_1 + - libsodium=1.0.18=hbcb3906_1 + - libtool=2.4.7=hf0c8a7f_0 + - libuv=1.46.0=h0c2f820_0 + - libwebp-base=1.3.2=h0dc2134_0 + - libzlib=1.2.13=h8a1eda9_5 + - llvm-openmp=17.0.6=hb6ac08f_0 + - m4=1.4.18=haf1e3a3_1001 + - make=4.3=h22f3db7_1 + - mathjax=3.2.2=h694c41f_0 + - nauty=2.8.8=h10d778d_0 + - 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 + - planarity=3.0.0.5=hbcb3906_1002 + - pthread-stubs=0.4=hc929b4f_1001 + - python_abi=3.10=4_cp310 + - rhash=1.4.4=h0dc2134_0 + - sagemath-db-combinatorial-designs=20140630=1 + - sagemath-db-graphs=20210214=hd8ed1ab_0 + - sagemath-db-polytopes=20170220=1 + - three.js=122=hd8ed1ab_2 + - tzdata=2023c=h71feb2d_0 + - xorg-libxau=1.0.11=h0dc2134_0 + - xorg-libxdmcp=1.1.3=h35c211d_0 + - xz=5.2.6=h775f41a_0 + - yaml=0.2.5=h0d85af4_2 + - autoconf=2.71=pl5321hed12c24_1 + - bdw-gc=8.0.6=h940c156_0 + - expat=2.5.0=hf0c8a7f_1 + - fonts-conda-forge=1=0 + - gengetopt=2.23=he49afe7_0 + - gettext=0.21.1=h8a4c099_0 + - gf2x=1.3.0=hb2a7efb_2 + - gmp=6.3.0=h93d8f39_0 + - graphite2=1.3.13=h2e338ed_1001 + - isl=0.25=hb486fe8_0 + - lerc=4.0.0=hb486fe8_0 + - libbraiding=1.2=hf0c8a7f_0 + - libbrotlidec=1.1.0=h0dc2134_1 + - libbrotlienc=1.1.0=h0dc2134_1 + - libcbor=0.10.2=hf0c8a7f_0 + - libgfortran5=13.2.0=h2873a65_1 + - libpng=1.6.39=ha978bb4_0 + - libsqlite=3.44.2=h92b6c6a_0 + - libxcb=1.15=hb7f2c08_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 + - openssl=3.2.0=hd75f5a5_1 + - 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 + - symmetrica=3.0.1=hf0c8a7f_0 + - tapi=1100.0.11=h9ce4665_0 + - tar=1.34=hcb2f6ea_1 + - threejs-sage=122=hd8ed1ab_2 + - tk=8.6.13=h1abcd95_1 + - zeromq=4.3.5=h93d8f39_0 + - zlib=1.2.13=h8a1eda9_5 + - zstd=1.5.5=h829000d_0 + - automake=1.16.5=pl5321h694c41f_0 + - brotli-bin=1.1.0=h0dc2134_1 + - bwidget=1.9.14=h694c41f_1 + - cddlib=1!0.94m=h0f52abe_0 + - ecm=7.0.4=h343d7f2_1002 + - fonts-conda-ecosystem=1=0 + - freetype=2.12.1=h60636b9_2 + - givaro=4.1.1=h0a799c6_3 + - glpk=5.0=h3cb5acd_0 + - jmol=14.32.9=h694c41f_0 + - libboost=1.84.0=h5b2dd29_0 + - libedit=3.1.20191231=h0678c8f_2 + - libfido2=1.14.0=h3cbcf74_0 + - libgfortran=5.0.0=13_2_0_h97931a8_1 + - libglib=2.78.1=h6d9ecee_0 + - libhomfly=1.02r6=hc929b4f_0 + - libhwloc=2.9.3=default_h24e0189_1009 + - libllvm15=15.0.7=he4b1e75_3 + - libnghttp2=1.58.0=h64cf6d3_1 + - libssh2=1.11.0=hd019ec5_0 + - libtiff=4.6.0=h684deea_2 + - m4ri=20140914=h3f75d11_1005 + - mpfr=4.2.1=h0c69b56_0 + - ntl=11.4.3=h0ab3c2f_1 + - primecount=7.6=ha894c9a_0 + - readline=8.2=h9e318b2_1 + - sigtool=0.1.3=h88f4db0_0 + - tachyon=0.99b6=0 + - texinfo=7.0=pl5321hc47821c_0 + - tktable=2.10=ha166976_5 + - brotli=1.1.0=h0dc2134_1 + - ecl=21.2.1=hd029580_2 + - fftw=3.3.10=nompi_h4fa670e_108 + - fontconfig=2.14.2=h5bb23bf_0 + - gap-core=4.12.2=hc16eb5f_3 + - gfan=0.6.2=hd793b56_1003 + - krb5=1.21.2=hb884880_0 + - lcms2=2.16=ha2f27b4_0 + - ld64_osx-64=609=h0fd476b_15 + - libboost-devel=1.84.0=h7728843_0 + - libbrial=1.2.12=h8d08345_1 + - libclang-cpp15=15.0.7=default_h6b1ee41_4 + - libflint=3.0.1=h5d15de0_ntl_100 + - libopenblas=0.3.25=openmp_hfef2a42_0 + - libwebp=1.3.2=h44782d1_1 + - llvm-tools=15.0.7=he4b1e75_3 + - 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 + - tbb=2021.11.0=he51d815_0 + - alabaster=0.7.13=pyhd8ed1ab_0 + - appdirs=1.4.4=pyh9f0ad1d_0 + - appnope=0.1.3=pyhd8ed1ab_0 + - attrs=23.1.0=pyh71513ae_1 + - boost-cpp=1.84.0=h07eb623_0 + - brial=1.2.12=pyh694c41f_1 + - brotli-python=1.1.0=py310h9e9d8ca_1 + - cached_property=1.5.2=pyha770c72_1 + - cachetools=5.3.2=pyhd8ed1ab_0 + - cachy=0.3.0=pyhd8ed1ab_1 + - cairo=1.18.0=h99e66fa_0 + - cctools_osx-64=973.0.1=habff3f6_15 + - certifi=2023.11.17=pyhd8ed1ab_0 + - chardet=5.2.0=py310h2ec42d9_1 + - charset-normalizer=3.3.2=pyhd8ed1ab_0 + - 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.7=py310h5daac23_0 + - debugpy=1.8.0=py310h9e9d8ca_1 + - decorator=5.1.1=pyhd8ed1ab_0 + - defusedxml=0.7.1=pyhd8ed1ab_0 + - distlib=0.3.8=pyhd8ed1ab_0 + - docutils=0.20.1=py310h2ec42d9_3 + - eclib=20231211=h02435c3_0 + - editables=0.3=pyhd8ed1ab_0 + - entrypoints=0.4=pyhd8ed1ab_0 + - exceptiongroup=1.2.0=pyhd8ed1ab_0 + - execnet=2.0.2=pyhd8ed1ab_0 + - executing=2.0.1=pyhd8ed1ab_0 + - filelock=3.13.1=pyhd8ed1ab_0 + - flit-core=3.9.0=pyhd8ed1ab_0 + - fplll=5.4.5=hb7981ad_0 + - gap-defaults=4.12.2=h694c41f_3 + - gast=0.5.4=pyhd8ed1ab_0 + - gfortran_impl_osx-64=12.3.0=h54fd467_1 + - gmpy2=2.1.2=py310hb691cb2_1 + - idna=3.6=pyhd8ed1ab_0 + - imagesize=1.4.1=pyhd8ed1ab_0 + - iniconfig=2.0.0=pyhd8ed1ab_0 + - ipython_genutils=0.2.0=py_1 + - json5=0.9.14=pyhd8ed1ab_0 + - jsonpointer=2.4=py310h2ec42d9_3 + - jupyterlab_widgets=3.0.9=pyhd8ed1ab_0 + - kiwisolver=1.4.5=py310h88cfcbd_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 + - markupsafe=2.1.3=py310h6729b98_1 + - maxima=5.47.0=h2b27fa8_1 + - mistune=3.0.2=pyhd8ed1ab_0 + - more-itertools=10.1.0=pyhd8ed1ab_0 + - mpmath=1.3.0=pyhd8ed1ab_0 + - msgpack-python=1.0.7=py310ha697434_0 + - munkres=1.1.4=pyh9f0ad1d_0 + - nest-asyncio=1.5.8=pyhd8ed1ab_0 + - networkx=3.2.1=pyhd8ed1ab_0 + - openblas=0.3.25=openmp_h6794695_0 + - openssh=9.3p1=h3df487d_2 + - packaging=23.2=pyhd8ed1ab_0 + - pandocfilters=1.5.0=pyhd8ed1ab_0 + - parso=0.8.3=pyhd8ed1ab_0 + - pastel=0.2.1=pyhd8ed1ab_0 + - pathspec=0.12.1=pyhd8ed1ab_0 + - pickleshare=0.7.5=py_1003 + - pillow=10.1.0=py310he65384d_0 + - pkgconfig=1.5.5=pyhd8ed1ab_4 + - pkginfo=1.9.6=pyhd8ed1ab_0 + - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 + - platformdirs=4.1.0=pyhd8ed1ab_0 + - pluggy=1.3.0=pyhd8ed1ab_0 + - ply=3.11=py_1 + - prometheus_client=0.19.0=pyhd8ed1ab_0 + - psutil=5.9.7=py310hb372a2b_0 + - ptyprocess=0.7.0=pyhd3deb0d_0 + - pure_eval=0.2.2=pyhd8ed1ab_0 + - py=1.11.0=pyh6c4a22f_0 + - pybind11-global=2.11.1=py310h88cfcbd_2 + - pycodestyle=2.11.1=pyhd8ed1ab_0 + - pycparser=2.21=pyhd8ed1ab_0 + - pygments=2.17.2=pyhd8ed1ab_0 + - pylev=1.4.0=pyhd8ed1ab_0 + - pyparsing=3.1.1=pyhd8ed1ab_0 + - pyrsistent=0.20.0=py310hb372a2b_0 + - pysocks=1.7.1=pyha2e5f31_6 + - pyspellchecker=0.7.2=pyhd8ed1ab_0 + - python-fastjsonschema=2.19.0=pyhd8ed1ab_0 + - python-json-logger=2.0.7=pyhd8ed1ab_0 + - python-lrcalc=2.1=py310h7a76584_5 + - python-tzdata=2023.3=pyhd8ed1ab_0 + - pytz=2023.3.post1=pyhd8ed1ab_0 + - pyyaml=6.0.1=py310h6729b98_1 + - pyzmq=25.1.2=py310h6b67f7f_0 + - rfc3986-validator=0.1.1=pyh9f0ad1d_0 + - rpds-py=0.15.2=py310h0e083fb_0 + - ruamel.yaml.clib=0.2.7=py310h6729b98_2 + - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 + - sagetex=3.6.1=pyhd8ed1ab_0 + - setuptools=68.2.2=pyhd8ed1ab_0 + - simplegeneric=0.8.1=py_1 + - singular=4.3.2.p8=h0d51a9f_1 + - six=1.16.0=pyh6c4a22f_0 + - smmap=5.0.0=pyhd8ed1ab_0 + - sniffio=1.3.0=pyhd8ed1ab_0 + - snowballstemmer=2.2.0=pyhd8ed1ab_0 + - soupsieve=2.5=pyhd8ed1ab_1 + - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_0 + - sympow=2.023.6=h115ba6a_3 + - tomli=2.0.1=pyhd8ed1ab_0 + - tomlkit=0.12.3=pyha770c72_0 + - toolz=0.12.0=pyhd8ed1ab_0 + - tornado=6.3.3=py310h6729b98_1 + - traitlets=5.14.0=pyhd8ed1ab_0 + - trove-classifiers=2023.11.29=pyhd8ed1ab_0 + - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 + - typing_extensions=4.9.0=pyha770c72_0 + - typing_utils=0.1.0=pyhd8ed1ab_0 + - tzlocal=5.2=py310h2ec42d9_0 + - unicodedata2=15.1.0=py310h6729b98_0 + - uri-template=1.3.0=pyhd8ed1ab_0 + - wcwidth=0.2.12=pyhd8ed1ab_0 + - webcolors=1.13=pyhd8ed1ab_0 + - webencodings=0.5.1=pyhd8ed1ab_2 + - websocket-client=1.7.0=pyhd8ed1ab_0 + - wheel=0.42.0=pyhd8ed1ab_0 + - widgetsnbextension=4.0.9=pyhd8ed1ab_0 + - zipp=3.17.0=pyhd8ed1ab_0 + - anyio=4.2.0=pyhd8ed1ab_0 + - asttokens=2.4.1=pyhd8ed1ab_0 + - async-lru=2.0.4=pyhd8ed1ab_0 + - babel=2.14.0=pyhd8ed1ab_0 + - beautifulsoup4=4.12.2=pyha770c72_0 + - beniget=0.4.1=pyhd8ed1ab_0 + - bleach=6.1.0=pyhd8ed1ab_0 + - cached-property=1.5.2=hd8ed1ab_1 + - cctools=973.0.1=hd9ad811_15 + - cffi=1.16.0=py310hdca579f_0 + - clang=15.0.7=hac416ee_4 + - click-default-group=1.2.4=pyhd8ed1ab_0 + - clikit=0.6.2=pyhd8ed1ab_2 + - cmake=3.28.1=h7c85d92_0 + - comm=0.1.4=pyhd8ed1ab_0 + - cppy=1.2.1=pyhd8ed1ab_0 + - curl=8.5.0=h726d00d_0 + - cypari2=2.1.3=py310hb5d31c9_2 + - deprecation=2.1.0=pyh9f0ad1d_0 + - fonttools=4.47.0=py310hb372a2b_0 + - gitdb=4.0.11=pyhd8ed1ab_0 + - harfbuzz=8.3.0=hf45c392_0 + - html5lib=1.1=pyh9f0ad1d_0 + - importlib-metadata=7.0.0=pyha770c72_0 + - importlib_resources=6.1.1=pyhd8ed1ab_0 + - jaraco.classes=3.3.0=pyhd8ed1ab_0 + - jedi=0.19.1=pyhd8ed1ab_0 + - jinja2=3.1.2=pyhd8ed1ab_1 + - jupyter_core=5.5.1=py310h2ec42d9_0 + - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 + - libcblas=3.9.0=20_osx64_openblas + - liblapack=3.9.0=20_osx64_openblas + - matplotlib-inline=0.1.6=pyhd8ed1ab_0 + - memory-allocator=0.1.3=py310h6729b98_0 + - overrides=7.4.0=pyhd8ed1ab_0 + - pexpect=4.8.0=pyh1a96a4e_2 + - pip=23.3.2=pyhd8ed1ab_0 + - pplpy=0.8.9=py310hd89f7aa_0 + - primecountpy=0.1.0=py310h88cfcbd_4 + - prompt-toolkit=3.0.42=pyha770c72_0 + - pybind11=2.11.1=py310h88cfcbd_2 + - pyobjc-core=10.1=py310h3674b6a_0 + - pyproject-api=1.6.1=pyhd8ed1ab_0 + - pytest=7.4.3=pyhd8ed1ab_0 + - python-dateutil=2.8.2=pyhd8ed1ab_0 + - pytz-deprecation-shim=0.1.0.post0=py310h2ec42d9_4 + - referencing=0.32.0=pyhd8ed1ab_0 + - rfc3339-validator=0.1.4=pyhd8ed1ab_0 + - ruamel.yaml=0.18.5=py310hb372a2b_0 + - sympy=1.12=pypyh9d50eac_103 + - terminado=0.18.0=pyh31c8845_0 + - tinycss2=1.2.1=pyhd8ed1ab_0 + - typing-extensions=4.9.0=hd8ed1ab_0 + - urllib3=1.26.18=pyhd8ed1ab_0 + - virtualenv=20.25.0=pyhd8ed1ab_0 + - annotated-types=0.6.0=pyhd8ed1ab_0 + - argon2-cffi-bindings=21.2.0=py310h6729b98_4 + - arpack=3.8.0=nompi_hb44a6d1_101 + - arrow=1.3.0=pyhd8ed1ab_0 + - cattrs=23.2.3=pyhd8ed1ab_0 + - clangxx=15.0.7=default_h6b1ee41_4 + - dsdp=5.8=h6e329d1_1203 + - fflas-ffpack=2.4.3=h026fd7e_2 + - fqdn=1.5.1=pyhd8ed1ab_0 + - git=2.42.0=pl5321hbb4c4ee_0 + - gitpython=3.1.40=pyhd8ed1ab_0 + - gsl=2.7=h93259b0_0 + - hatchling=1.21.0=pyhd8ed1ab_0 + - iml=1.0.5=h64b42ca_1003 + - importlib-resources=6.1.1=pyhd8ed1ab_0 + - importlib_metadata=7.0.0=hd8ed1ab_0 + - jsonschema-specifications=2023.11.2=pyhd8ed1ab_0 + - jupyter_server_terminals=0.5.0=pyhd8ed1ab_0 + - liblapacke=3.9.0=20_osx64_openblas + - numpy=1.26.2=py310h2a7ecf2_0 + - pango=1.50.14=h19c1c8a_2 + - prompt_toolkit=3.0.42=hd8ed1ab_0 + - pydantic-core=2.14.5=py310h0e083fb_0 + - pyobjc-framework-cocoa=10.1=py310h3674b6a_0 + - pytest-xdist=3.5.0=pyhd8ed1ab_0 + - requests=2.31.0=pyhd8ed1ab_0 + - setuptools-scm=8.0.4=pyhd8ed1ab_0 + - stack_data=0.6.2=pyhd8ed1ab_0 + - suitesparse=5.10.1=h0a40b7c_2 + - argon2-cffi=23.1.0=pyhd8ed1ab_0 + - blas-devel=3.9.0=20_osx64_openblas + - cachecontrol=0.13.1=pyhd8ed1ab_0 + - compiler-rt_osx-64=15.0.7=ha38d28d_2 + - 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 + - igraph=0.10.8=h29df365_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=hfb9b24e_8 + - lsprotocol=2023.0.0=pyhd8ed1ab_0 + - pydantic=2.5.2=pyhd8ed1ab_0 + - scipy=1.11.4=py310h3f1db6d_0 + - send2trash=1.8.2=pyhd1c38e8_0 + - setuptools_scm=8.0.4=hd8ed1ab_0 + - tox=4.11.4=pyhd8ed1ab_0 + - blas=2.120=openblas + - cachecontrol-with-filecache=0.13.1=pyhd8ed1ab_0 + - compiler-rt=15.0.7=ha38d28d_2 + - ipykernel=6.26.0=pyh3cd1d5f_0 + - ipywidgets=8.1.1=pyhd8ed1ab_0 + - jsonschema-with-format-nongpl=4.20.0=pyhd8ed1ab_0 + - matplotlib-base=3.8.2=py310hec49e92_0 + - nbformat=5.9.2=pyhd8ed1ab_0 + - pygls=1.2.1=pyhd8ed1ab_0 + - rw=0.9=h10d778d_1 + - clang_impl_osx-64=15.0.7=h03d6864_7 + - conda-lock=2.5.1=pyhd8ed1ab_0 + - ipympl=0.9.3=pyhd8ed1ab_0 + - jupyter-jsmol=2022.1.0=pyhd8ed1ab_0 + - jupyter_events=0.9.0=pyhd8ed1ab_0 + - matplotlib=3.8.2=py310h2ec42d9_0 + - nbclient=0.8.0=pyhd8ed1ab_0 + - clang_osx-64=15.0.7=hb91bd55_7 + - nbconvert-core=7.13.0=pyhd8ed1ab_0 + - c-compiler=1.6.0=h63c33a9_0 + - clangxx_impl_osx-64=15.0.7=h2133e9c_7 + - gfortran_osx-64=12.3.0=h18f7dce_1 + - jupyter_server=2.12.1=pyhd8ed1ab_0 + - nbconvert-pandoc=7.13.0=pyhd8ed1ab_0 + - clangxx_osx-64=15.0.7=hb91bd55_7 + - gfortran=12.3.0=h2c809b3_1 + - jupyter-lsp=2.2.1=pyhd8ed1ab_0 + - jupyterlab_server=2.25.2=pyhd8ed1ab_0 + - nbconvert=7.13.0=pyhd8ed1ab_0 + - notebook-shim=0.2.3=pyhd8ed1ab_0 + - cxx-compiler=1.6.0=h1c7c39f_0 + - fortran-compiler=1.6.0=h932d759_0 + - jupyterlab=4.0.9=pyhd8ed1ab_0 + - pythran=0.14.0=py310h92ebccd_1 + - r-base=4.3.1=h0ff45fa_6 + - compilers=1.6.0=h694c41f_0 + - notebook=7.0.6=pyhd8ed1ab_0 + - rpy2=3.5.11=py310r43hf0b6da5_3 + - esbonio=0.16.3=pyhd8ed1ab_0 + - jupyter_sphinx=0.4.0=py310h2ec42d9_1 + - 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-aarch64.yml b/src/environment-dev-3.11-linux-aarch64.yml new file mode 100644 index 00000000000..d3fef3676c5 --- /dev/null +++ b/src/environment-dev-3.11-linux-aarch64.yml @@ -0,0 +1,470 @@ +# Generated by conda-lock. +# platform: linux-aarch64 +# input_hash: 61440f9bf5b10e5736a9f88f0d4d24374ac0851704ea2bd8947851379f6d2985 + +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 + - gh=2.40.1=h652cbe9_0 + - kernel-headers_linux-aarch64=4.18.0=h5b4a56d_13 + - ld_impl_linux-aarch64=2.40=h2d8c526_0 + - libgcc-devel_linux-aarch64=12.3.0=h8b5ab12_103 + - libgomp=13.2.0=hf8544c7_3 + - libstdcxx-devel_linux-aarch64=12.3.0=h8b5ab12_103 + - libstdcxx-ng=13.2.0=h9a76618_3 + - mathjax=3.2.2=h8af1aa0_0 + - pandoc=3.1.3=h8af1aa0_0 + - 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_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.24.0=h31becfc_0 + - cliquer=1.22=hb9de7d4_0 + - fribidi=1.0.10=hb9de7d4_0 + - gengetopt=2.23=h01db608_0 + - gettext=0.21.1=ha18d298_0 + - gf2x=1.3.0=h1b3b3a3_2 + - giflib=5.2.1=hb4cce97_3 + - gmp=6.3.0=h2f0025b_0 + - graphite2=1.3.13=h7fd3ca4_1001 + - icu=70.1=ha18d298_0 + - jpeg=9e=h2a766a3_3 + - keyutils=1.6.1=h4e544f5_0 + - lerc=4.0.0=h4de3ea5_0 + - libatomic_ops=7.6.14=h4e544f5_0 + - libbraiding=1.2=hd600fc2_0 + - libbrotlicommon=1.1.0=h31becfc_1 + - libcbor=0.9.0=h01db608_0 + - libdeflate=1.17=hb4cce97_0 + - 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=h31becfc_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 + - 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.8.8=h31becfc_0 + - ncurses=6.4=h0425590_2 + - ninja=1.11.1=hdd96247_0 + - openssl=3.2.0=h31becfc_1 + - palp=2.20=hb9de7d4_0 + - patch=2.7.6=hf897c2e_1002 + - pixman=0.42.2=h2f0025b_0 + - pkg-config=0.29.2=hb9de7d4_1008 + - planarity=3.0.0.5=hb9de7d4_1002 + - primesieve=11.1=h2f0025b_0 + - pthread-stubs=0.4=hb9de7d4_1001 + - qhull=2020.2=hd62202e_2 + - rhash=1.4.3=h31becfc_2 + - sed=4.8=ha0d5d3d_0 + - symmetrica=3.0.1=hd600fc2_0 + - xorg-inputproto=2.3.2=h3557bc0_1002 + - xorg-kbproto=1.0.7=h3557bc0_1002 + - xorg-libice=1.0.10=h3557bc0_0 + - xorg-libxau=1.0.11=h31becfc_0 + - xorg-libxdmcp=1.1.3=h3557bc0_0 + - xorg-recordproto=1.14.2=hf897c2e_1002 + - xorg-renderproto=0.11.1=h3557bc0_1002 + - xorg-xextproto=7.3.0=h2a766a3_1003 + - xorg-xproto=7.0.31=h3557bc0_1007 + - xz=5.2.6=h9cdd2b7_0 + - yaml=0.2.5=hf897c2e_2 + - cddlib=1!0.94m=h719063d_0 + - ecm=7.0.4=h719063d_1002 + - expat=2.5.0=hd600fc2_1 + - gcc_impl_linux-aarch64=12.3.0=hcde2664_3 + - givaro=4.1.1=h192cbe9_1 + - glpk=5.0=h66325d0_0 + - libbrotlidec=1.1.0=h31becfc_1 + - libbrotlienc=1.1.0=h31becfc_1 + - libcap=2.69=h883460d_0 + - libedit=3.1.20191231=he28a2e2_2 + - libgfortran-ng=13.2.0=he9431aa_3 + - libhomfly=1.02r6=hb9de7d4_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 + - 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.9=hd600fc2_0 + - readline=8.2=h8fc344f_1 + - tar=1.34=h048efde_0 + - tk=8.6.13=h194ca79_0 + - xorg-fixesproto=5.0=h3557bc0_1002 + - xorg-libsm=1.2.3=h965e137_1000 + - zeromq=4.3.5=h2f0025b_0 + - zlib=1.2.13=h31becfc_5 + - zstd=1.5.5=h4c53e97_0 + - autoconf=2.71=pl5321h2148fe1_1 + - boost-cpp=1.81.0=h07c2bc3_0 + - brotli-bin=1.1.0=h31becfc_1 + - bwidget=1.9.14=h8af1aa0_1 + - ecl=21.2.1=haa44c19_2 + - fftw=3.3.10=nompi_h2dcef8e_108 + - freetype=2.12.1=hf0a5ef3_2 + - gap-core=4.12.2=h597289e_3 + - gcc=12.3.0=hc1b51f9_2 + - gcc_linux-aarch64=12.3.0=h464a8f7_2 + - gfan=0.6.2=h5f589ec_1003 + - gfortran_impl_linux-aarch64=12.3.0=hb7244be_3 + - gxx_impl_linux-aarch64=12.3.0=hcde2664_3 + - krb5=1.20.1=h113d92e_0 + - libflint=3.0.1=hc392af7_ntl_100 + - libglib=2.78.1=h0464669_0 + - libhwloc=2.9.1=h21e8147_0 + - libopenblas=0.3.25=pthreads_h5a5ec62_0 + - libtiff=4.5.0=h4c1066a_2 + - libudev1=255=h31becfc_0 + - llvm-openmp=17.0.6=h8b0cb96_0 + - m4ri=20140914=h75e8696_1005 + - mpc=1.3.1=hf4c8f4c_0 + - mpfi=1.5.4=h846f343_1001 + - pari=2.15.4=h169c2a7_2_pthread + - ppl=1.2=h984aac9_1006 + - python=3.11.7=h43d1f9e_0_cpython + - qd=2.3.22=h05efe27_1004 + - sqlite=3.44.2=h3b3482f_0 + - tachyon=0.99b6=h63ab1d9_1001 + - texinfo=7.0=pl5321h17f021e_0 + - tktable=2.10=h4f9ca69_5 + - xorg-libx11=1.8.4=h2a766a3_0 + - alabaster=0.7.13=pyhd8ed1ab_0 + - appdirs=1.4.4=pyh9f0ad1d_0 + - appnope=0.1.3=pyhd8ed1ab_0 + - attrs=23.1.0=pyh71513ae_1 + - automake=1.16.5=pl5321h8af1aa0_0 + - brotli=1.1.0=h31becfc_1 + - brotli-python=1.1.0=py311h8715677_1 + - c-compiler=1.6.0=h31becfc_0 + - cached_property=1.5.2=pyha770c72_1 + - cachetools=5.3.2=pyhd8ed1ab_0 + - 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 + - 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.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.8=pyhd8ed1ab_0 + - docutils=0.20.1=py311hfecb2dc_3 + - eclib=20231211=he26bab5_0 + - editables=0.3=pyhd8ed1ab_0 + - entrypoints=0.4=pyhd8ed1ab_0 + - exceptiongroup=1.2.0=pyhd8ed1ab_0 + - execnet=2.0.2=pyhd8ed1ab_0 + - executing=2.0.1=pyhd8ed1ab_0 + - filelock=3.13.1=pyhd8ed1ab_0 + - flit-core=3.9.0=pyhd8ed1ab_0 + - fontconfig=2.14.2=ha9a116f_0 + - fplll=5.4.5=hb3a790e_0 + - gap-defaults=4.12.2=h8af1aa0_3 + - gast=0.5.4=pyhd8ed1ab_0 + - gfortran=12.3.0=h8d4031d_2 + - gfortran_linux-aarch64=12.3.0=h1993883_2 + - gmpy2=2.1.2=py311h00bc151_1 + - gxx=12.3.0=hc1b51f9_2 + - gxx_linux-aarch64=12.3.0=h21accf6_2 + - idna=3.6=pyhd8ed1ab_0 + - imagesize=1.4.1=pyhd8ed1ab_0 + - iniconfig=2.0.0=pyhd8ed1ab_0 + - ipython_genutils=0.2.0=py_1 + - jeepney=0.8.0=pyhd8ed1ab_0 + - json5=0.9.14=pyhd8ed1ab_0 + - jsonpointer=2.4=py311hec3470c_3 + - jupyterlab_widgets=3.0.9=pyhd8ed1ab_0 + - kiwisolver=1.4.5=py311h0d5d7b0_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 + - libfido2=1.14.0=heb3f89f_0 + - libwebp=1.2.4=h7bdf6e5_1 + - m4rie=20150908=h75e8696_1001 + - markupsafe=2.1.3=py311hc8f2f60_1 + - maxima=5.47.0=h6475f26_1 + - mistune=3.0.2=pyhd8ed1ab_0 + - more-itertools=10.1.0=pyhd8ed1ab_0 + - mpmath=1.3.0=pyhd8ed1ab_0 + - msgpack-python=1.0.7=py311h0d5d7b0_0 + - munkres=1.1.4=pyh9f0ad1d_0 + - nest-asyncio=1.5.8=pyhd8ed1ab_0 + - 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 + - pastel=0.2.1=pyhd8ed1ab_0 + - pathspec=0.12.1=pyhd8ed1ab_0 + - pickleshare=0.7.5=py_1003 + - pkgconfig=1.5.5=pyhd8ed1ab_4 + - pkginfo=1.9.6=pyhd8ed1ab_0 + - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 + - platformdirs=4.1.0=pyhd8ed1ab_0 + - pluggy=1.3.0=pyhd8ed1ab_0 + - ply=3.11=py_1 + - prometheus_client=0.19.0=pyhd8ed1ab_0 + - psutil=5.9.7=py311hcd402e7_0 + - ptyprocess=0.7.0=pyhd3deb0d_0 + - pure_eval=0.2.2=pyhd8ed1ab_0 + - py=1.11.0=pyh6c4a22f_0 + - pybind11-global=2.11.1=py311h098ece5_2 + - pycodestyle=2.11.1=pyhd8ed1ab_0 + - pycparser=2.21=pyhd8ed1ab_0 + - pygments=2.17.2=pyhd8ed1ab_0 + - pylev=1.4.0=pyhd8ed1ab_0 + - pyparsing=3.1.1=pyhd8ed1ab_0 + - pyrsistent=0.20.0=py311hc8f2f60_0 + - pysocks=1.7.1=pyha2e5f31_6 + - pyspellchecker=0.7.2=pyhd8ed1ab_0 + - python-fastjsonschema=2.19.0=pyhd8ed1ab_0 + - python-json-logger=2.0.7=pyhd8ed1ab_0 + - python-lrcalc=2.1=py311h5a24a75_5 + - python-tzdata=2023.3=pyhd8ed1ab_0 + - pytz=2023.3.post1=pyhd8ed1ab_0 + - pyyaml=6.0.1=py311hcd402e7_1 + - pyzmq=25.1.2=py311h0fdcd05_0 + - rfc3986-validator=0.1.1=pyh9f0ad1d_0 + - rpds-py=0.15.2=py311h32437ce_0 + - ruamel.yaml.clib=0.2.7=py311hcd402e7_2 + - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 + - sagetex=3.6.1=pyhd8ed1ab_0 + - send2trash=1.8.2=pyh41d4057_0 + - setuptools=68.2.2=pyhd8ed1ab_0 + - simplegeneric=0.8.1=py_1 + - singular=4.3.2.p8=hbe76a8a_1 + - six=1.16.0=pyh6c4a22f_0 + - smmap=5.0.0=pyhd8ed1ab_0 + - sniffio=1.3.0=pyhd8ed1ab_0 + - snowballstemmer=2.2.0=pyhd8ed1ab_0 + - soupsieve=2.5=pyhd8ed1ab_1 + - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_0 + - sympow=2.023.6=h157afb5_3 + - tbb=2021.9.0=h4c384f3_0 + - tomli=2.0.1=pyhd8ed1ab_0 + - tomlkit=0.12.3=pyha770c72_0 + - toolz=0.12.0=pyhd8ed1ab_0 + - tornado=6.3.3=py311hc8f2f60_1 + - traitlets=5.14.0=pyhd8ed1ab_0 + - trove-classifiers=2023.11.29=pyhd8ed1ab_0 + - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 + - typing_extensions=4.9.0=pyha770c72_0 + - typing_utils=0.1.0=pyhd8ed1ab_0 + - tzlocal=5.2=py311hec3470c_0 + - uri-template=1.3.0=pyhd8ed1ab_0 + - wcwidth=0.2.12=pyhd8ed1ab_0 + - webcolors=1.13=pyhd8ed1ab_0 + - webencodings=0.5.1=pyhd8ed1ab_2 + - websocket-client=1.7.0=pyhd8ed1ab_0 + - 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.2.0=pyhd8ed1ab_0 + - asttokens=2.4.1=pyhd8ed1ab_0 + - async-lru=2.0.4=pyhd8ed1ab_0 + - babel=2.14.0=pyhd8ed1ab_0 + - beautifulsoup4=4.12.2=pyha770c72_0 + - beniget=0.4.1=pyhd8ed1ab_0 + - bleach=6.1.0=pyhd8ed1ab_0 + - brial=1.2.12=pyh694c41f_1 + - cached-property=1.5.2=hd8ed1ab_1 + - cairo=1.16.0=hd19fb6e_1014 + - cffi=1.16.0=py311h7963103_0 + - click-default-group=1.2.4=pyhd8ed1ab_0 + - clikit=0.6.2=pyhd8ed1ab_2 + - cmake=3.26.4=hef020d8_0 + - comm=0.1.4=pyhd8ed1ab_0 + - cppy=1.2.1=pyhd8ed1ab_0 + - curl=8.1.2=hc34909b_0 + - cxx-compiler=1.6.0=h2a328a1_0 + - cypari2=2.1.3=py311h5ab95f0_2 + - deprecation=2.1.0=pyh9f0ad1d_0 + - fonttools=4.47.0=py311hcd402e7_0 + - fortran-compiler=1.6.0=h7048d53_0 + - gitdb=4.0.11=pyhd8ed1ab_0 + - html5lib=1.1=pyh9f0ad1d_0 + - importlib-metadata=7.0.0=pyha770c72_0 + - importlib_resources=6.1.1=pyhd8ed1ab_0 + - jaraco.classes=3.3.0=pyhd8ed1ab_0 + - jedi=0.19.1=pyhd8ed1ab_0 + - jinja2=3.1.2=pyhd8ed1ab_1 + - jupyter_core=5.5.1=py311hec3470c_0 + - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 + - 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=py311hcd402e7_0 + - openssh=9.3p1=hf616e62_1 + - overrides=7.4.0=pyhd8ed1ab_0 + - pexpect=4.8.0=pyh1a96a4e_2 + - pillow=9.4.0=py311hf18358d_1 + - pip=23.3.2=pyhd8ed1ab_0 + - pplpy=0.8.9=py311haefeb0b_0 + - primecountpy=0.1.0=py311h098ece5_4 + - prompt-toolkit=3.0.42=pyha770c72_0 + - pybind11=2.11.1=py311h098ece5_2 + - pyproject-api=1.6.1=pyhd8ed1ab_0 + - pytest=7.4.3=pyhd8ed1ab_0 + - python-dateutil=2.8.2=pyhd8ed1ab_0 + - pytz-deprecation-shim=0.1.0.post0=py311hec3470c_4 + - referencing=0.32.0=pyhd8ed1ab_0 + - rfc3339-validator=0.1.4=pyhd8ed1ab_0 + - ruamel.yaml=0.18.5=py311hcd402e7_0 + - sympy=1.12=pypyh9d50eac_103 + - terminado=0.18.0=pyh0d859eb_0 + - tinycss2=1.2.1=pyhd8ed1ab_0 + - typing-extensions=4.9.0=hd8ed1ab_0 + - urllib3=1.26.18=pyhd8ed1ab_0 + - virtualenv=20.25.0=pyhd8ed1ab_0 + - xorg-libxi=1.7.10=h3557bc0_0 + - annotated-types=0.6.0=pyhd8ed1ab_0 + - argon2-cffi-bindings=21.2.0=py311hcd402e7_4 + - arpack=3.7.0=hf862f49_2 + - arrow=1.3.0=pyhd8ed1ab_0 + - cattrs=23.2.3=pyhd8ed1ab_0 + - compilers=1.6.0=h8af1aa0_0 + - cryptography=41.0.7=py311h2245af3_1 + - dsdp=5.8=hb12102e_1203 + - fflas-ffpack=2.4.3=hf104d39_2 + - fqdn=1.5.1=pyhd8ed1ab_0 + - git=2.42.0=pl5321h0d979e1_0 + - gitpython=3.1.40=pyhd8ed1ab_0 + - gsl=2.7=h294027d_0 + - harfbuzz=6.0.0=hbcb8a4f_0 + - hatchling=1.21.0=pyhd8ed1ab_0 + - iml=1.0.5=h9076c59_1003 + - importlib-resources=6.1.1=pyhd8ed1ab_0 + - importlib_metadata=7.0.0=hd8ed1ab_0 + - jsonschema-specifications=2023.11.2=pyhd8ed1ab_0 + - jupyter_server_terminals=0.5.0=pyhd8ed1ab_0 + - liblapacke=3.9.0=20_linuxaarch64_openblas + - numpy=1.26.2=py311h69ead2a_0 + - prompt_toolkit=3.0.42=hd8ed1ab_0 + - pydantic-core=2.14.5=py311h2bdde80_0 + - pytest-xdist=3.5.0=pyhd8ed1ab_0 + - requests=2.31.0=pyhd8ed1ab_0 + - setuptools-scm=8.0.4=pyhd8ed1ab_0 + - stack_data=0.6.2=pyhd8ed1ab_0 + - suitesparse=5.10.1=h1404dd6_1 + - xorg-libxtst=1.2.3=hf897c2e_1002 + - argon2-cffi=23.1.0=pyhd8ed1ab_0 + - blas-devel=3.9.0=20_linuxaarch64_openblas + - cachecontrol=0.13.1=pyhd8ed1ab_0 + - contourpy=1.2.0=py311h098ece5_0 + - cvxopt=1.3.2=py311hd9cfd3c_1 + - ensureconda=1.4.3=pyhd8ed1ab_0 + - fpylll=0.6.0=py311h5d3d69a_1 + - giac=1.9.0.21=h04922a4_1 + - igraph=0.9.10=hefb87a8_1 + - ipython=8.18.1=pyh707e725_3 + - isoduration=20.11.0=pyhd8ed1ab_0 + - jsonschema=4.20.0=pyhd8ed1ab_0 + - jupyter_client=8.6.0=pyhd8ed1ab_0 + - linbox=1.6.3=h681a5ee_8 + - lsprotocol=2023.0.0=pyhd8ed1ab_0 + - openjdk=17.0.3=h1a274e0_5 + - pango=1.50.14=h1f1e9b3_0 + - pydantic=2.5.2=pyhd8ed1ab_0 + - pythran=0.14.0=py311hec5c23b_1 + - scipy=1.11.3=py311h69ead2a_1 + - secretstorage=3.3.3=py311hfecb2dc_2 + - setuptools_scm=8.0.4=hd8ed1ab_0 + - tox=4.11.4=pyhd8ed1ab_0 + - blas=2.120=openblas + - cachecontrol-with-filecache=0.13.1=pyhd8ed1ab_0 + - ipykernel=6.26.0=pyhf8b6a83_0 + - ipywidgets=8.1.1=pyhd8ed1ab_0 + - jmol=14.32.10=h8af1aa0_0 + - jsonschema-with-format-nongpl=4.20.0=pyhd8ed1ab_0 + - keyring=24.3.0=py311hec3470c_0 + - matplotlib-base=3.8.2=py311h1f11223_0 + - nbformat=5.9.2=pyhd8ed1ab_0 + - pygls=1.2.1=pyhd8ed1ab_0 + - r-base=4.2.3=h620ca72_0 + - rw=0.9=hf897c2e_0 + - conda-lock=2.5.1=pyhd8ed1ab_0 + - ipympl=0.9.3=pyhd8ed1ab_0 + - jupyter-jsmol=2022.1.0=pyhd8ed1ab_0 + - jupyter_events=0.9.0=pyhd8ed1ab_0 + - matplotlib=3.8.2=py311hfecb2dc_0 + - nbclient=0.8.0=pyhd8ed1ab_0 + - rpy2=3.5.11=py311r42hf13da56_3 + - nbconvert-core=7.13.0=pyhd8ed1ab_0 + - jupyter_server=2.12.1=pyhd8ed1ab_0 + - nbconvert-pandoc=7.13.0=pyhd8ed1ab_0 + - jupyter-lsp=2.2.1=pyhd8ed1ab_0 + - jupyterlab_server=2.25.2=pyhd8ed1ab_0 + - nbconvert=7.13.0=pyhd8ed1ab_0 + - notebook-shim=0.2.3=pyhd8ed1ab_0 + - jupyterlab=4.0.9=pyhd8ed1ab_0 + - notebook=7.0.6=pyhd8ed1ab_0 + - esbonio=0.16.3=pyhd8ed1ab_0 + - jupyter_sphinx=0.1.4=py_0 + - 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 new file mode 100644 index 00000000000..0e23f16474b --- /dev/null +++ b/src/environment-dev-3.11-linux.yml @@ -0,0 +1,511 @@ +# Generated by conda-lock. +# platform: linux-64 +# input_hash: 56c42ecbe65cba7282953f079a512567282badec48b591a1070d8b4df13df565 + +channels: + - conda-forge +dependencies: + - _libgcc_mutex=0.1=conda_forge + - _r-mutex=1.0.1=anacondar_1 + - 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=h77eed37_1 + - 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.84.0=ha770c72_0 + - libgcc-devel_linux-64=12.3.0=h8bca6fd_103 + - libstdcxx-devel_linux-64=12.3.0=h8bca6fd_103 + - libstdcxx-ng=13.2.0=h7e041cc_3 + - mathjax=3.2.2=ha770c72_0 + - 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 + - libgomp=13.2.0=h807b86a_3 + - 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_2 + - _openmp_mutex=4.5=2_kmp_llvm + - libgcc-ng=13.2.0=h807b86a_3 + - alsa-lib=1.2.10=hd590300_0 + - attr=2.5.1=h166bdaf_1 + - bc=1.07.1=h7f98852_0 + - bdw-gc=8.0.6=h4bd325d_0 + - bzip2=1.0.8=hd590300_5 + - c-ares=1.24.0=hd590300_0 + - cliquer=1.22=h36c2ea0_0 + - fribidi=1.0.10=h36c2ea0_0 + - gengetopt=2.23=h9c3ff4c_0 + - gettext=0.21.1=h27087fc_0 + - gf2x=1.3.0=ha476b99_2 + - giflib=5.2.1=h0b41bf4_3 + - gmp=6.3.0=h59595ed_0 + - graphite2=1.3.13=h58526e2_1001 + - icu=73.2=h59595ed_0 + - keyutils=1.6.1=h166bdaf_0 + - lame=3.100=h166bdaf_1003 + - lerc=4.0.0=h27087fc_0 + - libatomic_ops=7.6.14=h166bdaf_0 + - libbraiding=1.2=hcb278e6_0 + - libbrotlicommon=1.1.0=hd590300_1 + - libcbor=0.10.2=hcb278e6_0 + - libdeflate=1.19=hd590300_0 + - libev=4.33=hd590300_2 + - libexpat=2.5.0=hcb278e6_1 + - libffi=3.4.2=h7f98852_5 + - libgfortran5=13.2.0=ha4646dd_3 + - libiconv=1.17=hd590300_2 + - libjpeg-turbo=3.0.0=hd590300_1 + - libnsl=2.0.1=hd590300_0 + - libogg=1.3.4=h7f98852_1 + - libopus=1.3.1=h7f98852_1 + - libsanitizer=12.3.0=h0f45ef3_3 + - libsodium=1.0.18=h36c2ea0_1 + - libtool=2.4.7=h27087fc_0 + - libuuid=2.38.1=h0b41bf4_0 + - libuv=1.46.0=hd590300_0 + - libwebp-base=1.3.2=hd590300_0 + - libzlib=1.2.13=hd590300_5 + - lrcalc=2.1=h27087fc_5 + - lz4-c=1.9.4=hcb278e6_0 + - m4=1.4.18=h516909a_1001 + - make=4.3=hd18ef5c_1 + - metis=5.1.1=h59595ed_2 + - mpg123=1.32.3=h59595ed_0 + - nauty=2.8.8=hd590300_0 + - ncurses=6.4=h59595ed_2 + - ninja=1.11.1=h924138e_0 + - nspr=4.35=h27087fc_0 + - openssl=3.2.0=hd590300_1 + - palp=2.20=h36c2ea0_0 + - patch=2.7.6=h7f98852_1002 + - pixman=0.42.2=h59595ed_0 + - pkg-config=0.29.2=h36c2ea0_1008 + - planarity=3.0.0.5=h36c2ea0_1002 + - primesieve=11.1=h59595ed_0 + - pthread-stubs=0.4=h36c2ea0_1001 + - qhull=2020.2=h4bd325d_2 + - rhash=1.4.4=hd590300_0 + - sed=4.8=he412f7d_0 + - symmetrica=3.0.1=hcb278e6_0 + - xorg-inputproto=2.3.2=h7f98852_1002 + - xorg-kbproto=1.0.7=h7f98852_1002 + - xorg-libice=1.1.1=hd590300_0 + - xorg-libxau=1.0.11=hd590300_0 + - xorg-libxdmcp=1.1.3=h7f98852_0 + - xorg-recordproto=1.14.2=h7f98852_1002 + - xorg-renderproto=0.11.1=h7f98852_1002 + - xorg-xextproto=7.3.0=h0b41bf4_1003 + - xorg-xf86vidmodeproto=2.3.1=h7f98852_1002 + - xorg-xproto=7.0.31=h7f98852_1007 + - xz=5.2.6=h166bdaf_0 + - yaml=0.2.5=h7f98852_2 + - cddlib=1!0.94m=h9202a9a_0 + - ecm=7.0.4=h9202a9a_1002 + - expat=2.5.0=hcb278e6_1 + - gcc_impl_linux-64=12.3.0=he2b93b0_3 + - givaro=4.1.1=h192cbe9_1 + - glpk=5.0=h445213a_0 + - libbrotlidec=1.1.0=hd590300_1 + - libbrotlienc=1.1.0=hd590300_1 + - libcap=2.69=h0f662aa_0 + - libedit=3.1.20191231=he28a2e2_2 + - libevent=2.1.12=hf998b51_1 + - libflac=1.4.3=h59595ed_0 + - libgfortran-ng=13.2.0=h69a702a_3 + - libgpg-error=1.47=h71f35ed_0 + - libhomfly=1.02r6=h36c2ea0_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 + - libvorbis=1.3.7=h9c3ff4c_0 + - libxcb=1.15=h0b41bf4_0 + - 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.42=hcad00b1_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.13=noxft_h4845f30_101 + - xorg-fixesproto=5.0=h7f98852_1002 + - xorg-libsm=1.2.4=h7391055_0 + - zeromq=4.3.5=h59595ed_0 + - zlib=1.2.13=hd590300_5 + - zstd=1.5.5=hfc55251_0 + - autoconf=2.71=pl5321h2b4cb7a_1 + - brotli-bin=1.1.0=hd590300_1 + - bwidget=1.9.14=ha770c72_1 + - ecl=21.2.1=h9d73b02_2 + - fftw=3.3.10=nompi_hc118613_108 + - freetype=2.12.1=h267a509_2 + - gap-core=4.12.2=he9a28a4_3 + - gcc=12.3.0=h8d2909c_2 + - gcc_linux-64=12.3.0=h76fc315_2 + - gfan=0.6.2=hb86e20a_1003 + - gfortran_impl_linux-64=12.3.0=hfcedea8_3 + - gxx_impl_linux-64=12.3.0=he2b93b0_3 + - krb5=1.21.2=h659d440_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 + - libhwloc=2.9.3=default_h554bfaf_1009 + - libllvm15=15.0.7=h5cf9203_3 + - libopenblas=0.3.25=pthreads_h413a1c8_0 + - libsndfile=1.2.2=hc60ed4a_1 + - libtiff=4.6.0=ha9c0a0a_2 + - libudev1=255=h3f72095_0 + - llvm-openmp=17.0.6=h4dfa4b3_0 + - m4ri=20140914=h7ca028e_1005 + - mpc=1.3.1=hfe3b2da_0 + - mpfi=1.5.4=h9f54685_1001 + - mysql-libs=8.0.33=hca2cd23_6 + - nss=3.96=h1d7d5a4_0 + - pandoc=3.1.3=h32600fe_0 + - pari=2.15.4=h4d4ae9b_2_pthread + - ppl=1.2=h6ec01c2_1006 + - python=3.11.7=hab00c5b_0_cpython + - qd=2.3.22=h2cc385e_1004 + - sqlite=3.44.2=h2c6b66d_0 + - tachyon=0.99b6=0 + - texinfo=7.0=pl5321h0f457ee_0 + - tktable=2.10=h0c5db8f_5 + - xcb-util=0.4.0=hd590300_1 + - xcb-util-keysyms=0.4.0=h8ee46fc_1 + - xcb-util-renderutil=0.3.9=hd590300_1 + - xcb-util-wm=0.4.1=h8ee46fc_1 + - xorg-libx11=1.8.7=h8ee46fc_0 + - alabaster=0.7.13=pyhd8ed1ab_0 + - appdirs=1.4.4=pyh9f0ad1d_0 + - appnope=0.1.3=pyhd8ed1ab_0 + - attrs=23.1.0=pyh71513ae_1 + - automake=1.16.5=pl5321ha770c72_0 + - brotli=1.1.0=hd590300_1 + - brotli-python=1.1.0=py311hb755f60_1 + - c-compiler=1.6.0=hd590300_0 + - cached_property=1.5.2=pyha770c72_1 + - cachetools=5.3.2=pyhd8ed1ab_0 + - 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 + - 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.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.8=pyhd8ed1ab_0 + - docutils=0.20.1=py311h38be061_3 + - eclib=20231211=h96f522a_0 + - editables=0.3=pyhd8ed1ab_0 + - entrypoints=0.4=pyhd8ed1ab_0 + - exceptiongroup=1.2.0=pyhd8ed1ab_0 + - execnet=2.0.2=pyhd8ed1ab_0 + - executing=2.0.1=pyhd8ed1ab_0 + - filelock=3.13.1=pyhd8ed1ab_0 + - flit-core=3.9.0=pyhd8ed1ab_0 + - fontconfig=2.14.2=h14ed4e7_0 + - fplll=5.4.5=h384768b_0 + - gap-defaults=4.12.2=ha770c72_3 + - gast=0.5.4=pyhd8ed1ab_0 + - gfortran=12.3.0=h499e0f7_2 + - gfortran_linux-64=12.3.0=h7fe76b4_2 + - glib-tools=2.78.3=hfc55251_0 + - gmpy2=2.1.2=py311h6a5fa03_1 + - gxx=12.3.0=h8d2909c_2 + - gxx_linux-64=12.3.0=h8a814eb_2 + - idna=3.6=pyhd8ed1ab_0 + - imagesize=1.4.1=pyhd8ed1ab_0 + - iniconfig=2.0.0=pyhd8ed1ab_0 + - ipython_genutils=0.2.0=py_1 + - jeepney=0.8.0=pyhd8ed1ab_0 + - json5=0.9.14=pyhd8ed1ab_0 + - jsonpointer=2.4=py311h38be061_3 + - jupyterlab_widgets=3.0.9=pyhd8ed1ab_0 + - kiwisolver=1.4.5=py311h9547e67_1 + - lcalc=2.0.5=h6a8a7c6_1 + - lcms2=2.16=hb7c19ff_0 + - libblas=3.9.0=20_linux64_openblas + - libboost-devel=1.84.0=h00ab1b0_0 + - libbrial=1.2.12=h3155cbd_1 + - libclang13=15.0.7=default_ha2b6cf4_4 + - libcups=2.3.3=h4637d8d_4 + - libcurl=8.5.0=hca28451_0 + - libfido2=1.14.0=h4446dcb_0 + - libpq=16.1=h33b98f1_7 + - libsystemd0=255=h3516f8a_0 + - libwebp=1.3.2=h658648e_1 + - m4rie=20150908=h7ca028e_1001 + - markupsafe=2.1.3=py311h459d7ec_1 + - maxima=5.47.0=hed6455c_1 + - mistune=3.0.2=pyhd8ed1ab_0 + - more-itertools=10.1.0=pyhd8ed1ab_0 + - mpmath=1.3.0=pyhd8ed1ab_0 + - msgpack-python=1.0.7=py311h9547e67_0 + - munkres=1.1.4=pyh9f0ad1d_0 + - nest-asyncio=1.5.8=pyhd8ed1ab_0 + - networkx=3.2.1=pyhd8ed1ab_0 + - openblas=0.3.25=pthreads_h7a3da1a_0 + - openjpeg=2.5.0=h488ebb8_3 + - packaging=23.2=pyhd8ed1ab_0 + - pandocfilters=1.5.0=pyhd8ed1ab_0 + - parso=0.8.3=pyhd8ed1ab_0 + - pastel=0.2.1=pyhd8ed1ab_0 + - pathspec=0.12.1=pyhd8ed1ab_0 + - pickleshare=0.7.5=py_1003 + - pkgconfig=1.5.5=pyhd8ed1ab_4 + - pkginfo=1.9.6=pyhd8ed1ab_0 + - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 + - platformdirs=4.1.0=pyhd8ed1ab_0 + - pluggy=1.3.0=pyhd8ed1ab_0 + - ply=3.11=py_1 + - prometheus_client=0.19.0=pyhd8ed1ab_0 + - psutil=5.9.7=py311h459d7ec_0 + - ptyprocess=0.7.0=pyhd3deb0d_0 + - pure_eval=0.2.2=pyhd8ed1ab_0 + - py=1.11.0=pyh6c4a22f_0 + - pybind11-global=2.11.1=py311h9547e67_2 + - pycodestyle=2.11.1=pyhd8ed1ab_0 + - pycparser=2.21=pyhd8ed1ab_0 + - pygments=2.17.2=pyhd8ed1ab_0 + - pylev=1.4.0=pyhd8ed1ab_0 + - pyparsing=3.1.1=pyhd8ed1ab_0 + - pyrsistent=0.20.0=py311h459d7ec_0 + - pysocks=1.7.1=pyha2e5f31_6 + - pyspellchecker=0.7.2=pyhd8ed1ab_0 + - python-fastjsonschema=2.19.0=pyhd8ed1ab_0 + - python-json-logger=2.0.7=pyhd8ed1ab_0 + - python-lrcalc=2.1=py311ha362b79_5 + - python-tzdata=2023.3=pyhd8ed1ab_0 + - pytz=2023.3.post1=pyhd8ed1ab_0 + - pyyaml=6.0.1=py311h459d7ec_1 + - pyzmq=25.1.2=py311h34ded2d_0 + - rfc3986-validator=0.1.1=pyh9f0ad1d_0 + - rpds-py=0.15.2=py311h46250e7_0 + - ruamel.yaml.clib=0.2.7=py311h459d7ec_2 + - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 + - sagetex=3.6.1=pyhd8ed1ab_0 + - send2trash=1.8.2=pyh41d4057_0 + - setuptools=68.2.2=pyhd8ed1ab_0 + - simplegeneric=0.8.1=py_1 + - singular=4.3.2.p8=h33f5c3f_1 + - six=1.16.0=pyh6c4a22f_0 + - smmap=5.0.0=pyhd8ed1ab_0 + - sniffio=1.3.0=pyhd8ed1ab_0 + - snowballstemmer=2.2.0=pyhd8ed1ab_0 + - soupsieve=2.5=pyhd8ed1ab_1 + - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_0 + - sympow=2.023.6=hc6ab17c_3 + - tbb=2021.11.0=h00ab1b0_0 + - toml=0.10.2=pyhd8ed1ab_0 + - tomli=2.0.1=pyhd8ed1ab_0 + - tomlkit=0.12.3=pyha770c72_0 + - toolz=0.12.0=pyhd8ed1ab_0 + - tornado=6.3.3=py311h459d7ec_1 + - traitlets=5.14.0=pyhd8ed1ab_0 + - trove-classifiers=2023.11.29=pyhd8ed1ab_0 + - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 + - typing_extensions=4.9.0=pyha770c72_0 + - typing_utils=0.1.0=pyhd8ed1ab_0 + - tzlocal=5.2=py311h38be061_0 + - uri-template=1.3.0=pyhd8ed1ab_0 + - wcwidth=0.2.12=pyhd8ed1ab_0 + - webcolors=1.13=pyhd8ed1ab_0 + - webencodings=0.5.1=pyhd8ed1ab_2 + - websocket-client=1.7.0=pyhd8ed1ab_0 + - wheel=0.42.0=pyhd8ed1ab_0 + - widgetsnbextension=4.0.9=pyhd8ed1ab_0 + - xcb-util-image=0.4.0=h8ee46fc_1 + - xkeyboard-config=2.40=hd590300_0 + - xorg-libxext=1.3.4=h0b41bf4_2 + - xorg-libxfixes=5.0.3=h7f98852_1004 + - xorg-libxrender=0.9.11=hd590300_0 + - xorg-libxt=1.3.0=hd590300_1 + - zipp=3.17.0=pyhd8ed1ab_0 + - anyio=4.2.0=pyhd8ed1ab_0 + - asttokens=2.4.1=pyhd8ed1ab_0 + - async-lru=2.0.4=pyhd8ed1ab_0 + - babel=2.14.0=pyhd8ed1ab_0 + - beautifulsoup4=4.12.2=pyha770c72_0 + - beniget=0.4.1=pyhd8ed1ab_0 + - bleach=6.1.0=pyhd8ed1ab_0 + - boost-cpp=1.84.0=h44aadfe_0 + - brial=1.2.12=pyh694c41f_1 + - cached-property=1.5.2=hd8ed1ab_1 + - cairo=1.18.0=h3faef2a_0 + - cffi=1.16.0=py311hb3a22ac_0 + - click-default-group=1.2.4=pyhd8ed1ab_0 + - clikit=0.6.2=pyhd8ed1ab_2 + - cmake=3.28.1=hcfe8598_0 + - comm=0.1.4=pyhd8ed1ab_0 + - cppy=1.2.1=pyhd8ed1ab_0 + - curl=8.5.0=hca28451_0 + - cxx-compiler=1.6.0=h00ab1b0_0 + - cypari2=2.1.3=py311hd2352ae_2 + - deprecation=2.1.0=pyh9f0ad1d_0 + - fonttools=4.47.0=py311h459d7ec_0 + - fortran-compiler=1.6.0=heb67821_0 + - gitdb=4.0.11=pyhd8ed1ab_0 + - glib=2.78.3=hfc55251_0 + - html5lib=1.1=pyh9f0ad1d_0 + - importlib-metadata=7.0.0=pyha770c72_0 + - importlib_resources=6.1.1=pyhd8ed1ab_0 + - jaraco.classes=3.3.0=pyhd8ed1ab_0 + - jedi=0.19.1=pyhd8ed1ab_0 + - jinja2=3.1.2=pyhd8ed1ab_1 + - jupyter_core=5.5.1=py311h38be061_0 + - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 + - libcblas=3.9.0=20_linux64_openblas + - libclang=15.0.7=default_hb11cfb5_4 + - libgd=2.3.3=h119a65a_9 + - liblapack=3.9.0=20_linux64_openblas + - libxkbcommon=1.6.0=h5d7e998_0 + - matplotlib-inline=0.1.6=pyhd8ed1ab_0 + - memory-allocator=0.1.3=py311h459d7ec_0 + - openssh=9.3p1=h2d3b35a_2 + - overrides=7.4.0=pyhd8ed1ab_0 + - pexpect=4.8.0=pyh1a96a4e_2 + - pillow=10.1.0=py311ha6c5da5_0 + - pip=23.3.2=pyhd8ed1ab_0 + - pplpy=0.8.9=py311h85abca9_0 + - primecountpy=0.1.0=py311h9547e67_4 + - prompt-toolkit=3.0.42=pyha770c72_0 + - pulseaudio-client=16.1=hb77b528_5 + - pybind11=2.11.1=py311h9547e67_2 + - pyproject-api=1.6.1=pyhd8ed1ab_0 + - pytest=7.4.3=pyhd8ed1ab_0 + - python-dateutil=2.8.2=pyhd8ed1ab_0 + - pytz-deprecation-shim=0.1.0.post0=py311h38be061_4 + - referencing=0.32.0=pyhd8ed1ab_0 + - rfc3339-validator=0.1.4=pyhd8ed1ab_0 + - ruamel.yaml=0.18.5=py311h459d7ec_0 + - sip=6.7.12=py311hb755f60_0 + - sympy=1.12=pypyh9d50eac_103 + - terminado=0.18.0=pyh0d859eb_0 + - tinycss2=1.2.1=pyhd8ed1ab_0 + - typing-extensions=4.9.0=hd8ed1ab_0 + - urllib3=1.26.18=pyhd8ed1ab_0 + - virtualenv=20.25.0=pyhd8ed1ab_0 + - xorg-libxi=1.7.10=h7f98852_0 + - annotated-types=0.6.0=pyhd8ed1ab_0 + - argon2-cffi-bindings=21.2.0=py311h459d7ec_4 + - arpack=3.8.0=nompi_h0baa96a_101 + - arrow=1.3.0=pyhd8ed1ab_0 + - cattrs=23.2.3=pyhd8ed1ab_0 + - compilers=1.6.0=ha770c72_0 + - cryptography=41.0.7=py311hcb13ee4_1 + - dsdp=5.8=hd9d9efa_1203 + - fflas-ffpack=2.4.3=h912ac81_2 + - fqdn=1.5.1=pyhd8ed1ab_0 + - git=2.43.0=pl5321h7bc287a_0 + - gitpython=3.1.40=pyhd8ed1ab_0 + - gsl=2.7=he838d99_0 + - gstreamer=1.22.8=h98fc4e7_0 + - harfbuzz=8.3.0=h3d44ed6_0 + - hatchling=1.21.0=pyhd8ed1ab_0 + - iml=1.0.5=hd75c201_1003 + - importlib-resources=6.1.1=pyhd8ed1ab_0 + - importlib_metadata=7.0.0=hd8ed1ab_0 + - jsonschema-specifications=2023.11.2=pyhd8ed1ab_0 + - jupyter_server_terminals=0.5.0=pyhd8ed1ab_0 + - liblapacke=3.9.0=20_linux64_openblas + - numpy=1.26.2=py311h64a7726_0 + - prompt_toolkit=3.0.42=hd8ed1ab_0 + - pydantic-core=2.14.5=py311h46250e7_0 + - pyqt5-sip=12.12.2=py311hb755f60_5 + - pytest-xdist=3.5.0=pyhd8ed1ab_0 + - requests=2.31.0=pyhd8ed1ab_0 + - setuptools-scm=8.0.4=pyhd8ed1ab_0 + - stack_data=0.6.2=pyhd8ed1ab_0 + - suitesparse=5.10.1=h3ec001c_2 + - xorg-libxtst=1.2.3=h7f98852_1002 + - argon2-cffi=23.1.0=pyhd8ed1ab_0 + - blas-devel=3.9.0=20_linux64_openblas + - cachecontrol=0.13.1=pyhd8ed1ab_0 + - contourpy=1.2.0=py311h9547e67_0 + - cvxopt=1.3.2=py311h2b3fd1d_1 + - ensureconda=1.4.3=pyhd8ed1ab_0 + - fpylll=0.6.0=py311hcfae7cf_1 + - giac=1.9.0.21=h673759e_1 + - gst-plugins-base=1.22.8=h8e1006c_0 + - igraph=0.10.8=h66a01bf_0 + - ipython=8.18.1=pyh707e725_3 + - isoduration=20.11.0=pyhd8ed1ab_0 + - jsonschema=4.20.0=pyhd8ed1ab_0 + - jupyter_client=8.6.0=pyhd8ed1ab_0 + - linbox=1.6.3=ha329b40_8 + - lsprotocol=2023.0.0=pyhd8ed1ab_0 + - openjdk=21.0.1=haa376d0_0 + - pango=1.50.14=ha41ecd1_2 + - pydantic=2.5.2=pyhd8ed1ab_0 + - pythran=0.14.0=py311h92ebd52_1 + - scipy=1.11.4=py311h64a7726_0 + - secretstorage=3.3.3=py311h38be061_2 + - setuptools_scm=8.0.4=hd8ed1ab_0 + - tox=4.11.4=pyhd8ed1ab_0 + - blas=2.120=openblas + - cachecontrol-with-filecache=0.13.1=pyhd8ed1ab_0 + - ipykernel=6.26.0=pyhf8b6a83_0 + - ipywidgets=8.1.1=pyhd8ed1ab_0 + - jmol=14.32.10=ha770c72_0 + - jsonschema-with-format-nongpl=4.20.0=pyhd8ed1ab_0 + - keyring=24.3.0=py311h38be061_0 + - matplotlib-base=3.8.2=py311h54ef318_0 + - nbformat=5.9.2=pyhd8ed1ab_0 + - pygls=1.2.1=pyhd8ed1ab_0 + - qt-main=5.15.8=h82b777d_17 + - r-base=4.3.2=hb8ee39d_1 + - rw=0.9=hd590300_1 + - conda-lock=2.5.1=pyhd8ed1ab_0 + - ipympl=0.9.3=pyhd8ed1ab_0 + - jupyter-jsmol=2022.1.0=pyhd8ed1ab_0 + - jupyter_events=0.9.0=pyhd8ed1ab_0 + - nbclient=0.8.0=pyhd8ed1ab_0 + - pyqt=5.15.9=py311hf0fb5b6_5 + - rpy2=3.5.11=py311r43h1f0f07a_3 + - matplotlib=3.8.2=py311h38be061_0 + - nbconvert-core=7.13.0=pyhd8ed1ab_0 + - jupyter_server=2.12.1=pyhd8ed1ab_0 + - nbconvert-pandoc=7.13.0=pyhd8ed1ab_0 + - jupyter-lsp=2.2.1=pyhd8ed1ab_0 + - jupyterlab_server=2.25.2=pyhd8ed1ab_0 + - nbconvert=7.13.0=pyhd8ed1ab_0 + - notebook-shim=0.2.3=pyhd8ed1ab_0 + - jupyterlab=4.0.9=pyhd8ed1ab_0 + - notebook=7.0.6=pyhd8ed1ab_0 + - esbonio=0.16.3=pyhd8ed1ab_0 + - jupyter_sphinx=0.4.0=py311h38be061_1 + - sphinx-basic-ng=1.0.0b2=pyhd8ed1ab_1 + - furo=2023.9.10=pyhd8ed1ab_0 + - sphinx-copybutton=0.5.2=pyhd8ed1ab_0 + - sphinxcontrib-applehelp=1.0.7=pyhd8ed1ab_0 + - sphinxcontrib-devhelp=1.0.5=pyhd8ed1ab_0 + - sphinxcontrib-htmlhelp=2.0.4=pyhd8ed1ab_0 + - sphinxcontrib-qthelp=1.0.6=pyhd8ed1ab_0 + - 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-arm64.yml b/src/environment-dev-3.11-macos-arm64.yml new file mode 100644 index 00000000000..57e973865a7 --- /dev/null +++ b/src/environment-dev-3.11-macos-arm64.yml @@ -0,0 +1,443 @@ +# Generated by conda-lock. +# platform: osx-arm64 +# input_hash: 27412966e5080ea2aee7d435840d7e4763032989dbb5d6af642016276929ae26 + +channels: + - conda-forge +dependencies: + - _r-mutex=1.0.1=anacondar_1 + - bc=1.07.1=h3422bc3_0 + - bzip2=1.0.8=h93a5062_5 + - c-ares=1.24.0=h93a5062_0 + - ca-certificates=2023.11.17=hf0a4a13_0 + - cliquer=1.22=h27ca646_0 + - font-ttf-dejavu-sans-mono=2.37=hab24e00_0 + - font-ttf-inconsolata=3.000=h77eed37_0 + - font-ttf-source-code-pro=2.038=h77eed37_0 + - font-ttf-ubuntu=0.83=h77eed37_1 + - fribidi=1.0.10=h27ca646_0 + - gh=2.40.1=h75b854d_0 + - giflib=5.2.1=h1a8c8d9_3 + - jpeg=9e=h1a8c8d9_3 + - libatomic_ops=7.6.14=h1a8c8d9_0 + - libbrotlicommon=1.1.0=hb547adb_1 + - libcxx=16.0.6=h4653b0c_0 + - libdeflate=1.17=h1a8c8d9_0 + - libev=4.33=h93a5062_2 + - libexpat=2.5.0=hb7217d7_1 + - libffi=3.4.2=h3422bc3_5 + - libgfortran-devel_osx-arm64=12.3.0=hc62be1c_1 + - libiconv=1.17=h0d3ecfb_2 + - 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.6=hcd81f8e_0 + - m4=1.4.18=h642e427_1001 + - make=4.3=he57ea6c_1 + - mathjax=3.2.2=hce30654_0 + - nauty=2.8.8=h93a5062_0 + - 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 + - tbb=2021.10.0=h1995070_2 + - 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.3.0=h965bd2d_0 + - graphite2=1.3.13=h9f76cd9_1001 + - icu=70.1=h6b3803e_0 + - isl=0.25=h9a09cb3_0 + - lerc=4.0.0=h9a09cb3_0 + - libbraiding=1.2=hb7217d7_0 + - libbrotlidec=1.1.0=hb547adb_1 + - libbrotlienc=1.1.0=hb547adb_1 + - libcbor=0.10.2=hb7217d7_0 + - libgfortran5=13.2.0=hf226fd6_1 + - libpng=1.6.39=h76d750c_0 + - libsqlite=3.44.2=h091b4b1_0 + - libxcb=1.13=h9b22ae9_1004 + - lrcalc=2.1=hb7217d7_5 + - metis=5.1.1=h965bd2d_2 + - ncurses=6.4=h463b476_2 + - ninja=1.11.1=hffc8910_0 + - openjdk=21.0.1=hed44d8b_0 + - openssl=3.2.0=h0d3ecfb_1 + - 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 + - symmetrica=3.0.1=hb7217d7_0 + - tapi=1100.0.11=he4954df_0 + - tar=1.34=h7cb298e_1 + - threejs-sage=122=hd8ed1ab_2 + - tk=8.6.13=h5083fa2_1 + - zeromq=4.3.5=h965bd2d_0 + - zlib=1.2.13=h53f4e23_5 + - zstd=1.5.5=h4f39d0f_0 + - automake=1.16.5=pl5321hce30654_0 + - boost-cpp=1.81.0=hf96b251_0 + - brotli-bin=1.1.0=hb547adb_1 + - bwidget=1.9.14=hce30654_1 + - cddlib=1!0.94m=h6d7a090_0 + - ecm=7.0.4=h47c7c1a_1002 + - fonts-conda-ecosystem=1=0 + - freetype=2.12.1=hadb7bae_2 + - givaro=4.1.1=h0cdca34_3 + - glpk=5.0=h6d7a090_0 + - jmol=14.32.10=hce30654_0 + - libedit=3.1.20191231=hc8eb9b7_2 + - libfido2=1.14.0=h8d15234_0 + - libgfortran=5.0.0=13_2_0_hd922786_1 + - libglib=2.78.1=hd9b11f9_0 + - libhomfly=1.02r6=h27ca646_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 + - m4ri=20140914=h17b34a0_1005 + - mpfr=4.2.1=h9546428_0 + - ntl=11.4.3=hbb3f309_1 + - primecount=7.6=hb6e4faa_0 + - readline=8.2=h92ec313_1 + - sigtool=0.1.3=h44b9a77_0 + - tachyon=0.99b6=hfb72b2a_1001 + - texinfo=7.0=pl5321h9ea1dce_0 + - tktable=2.10=hd996620_5 + - brotli=1.1.0=hb547adb_1 + - ecl=21.2.1=h8492d4d_2 + - fftw=3.3.10=nompi_h3046061_108 + - fontconfig=2.14.2=h82840c6_0 + - gap-core=4.12.2=he8f4e70_3 + - gfan=0.6.2=hec08f5c_1003 + - krb5=1.20.1=h69eda48_0 + - lcms2=2.15=h481adae_0 + - libbrial=1.2.12=ha7f5006_1 + - 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 + - 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.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 + - brial=1.2.12=pyh694c41f_1 + - brotli-python=1.1.0=py311ha891d26_1 + - cached_property=1.5.2=pyha770c72_1 + - cachetools=5.3.2=pyhd8ed1ab_0 + - cachy=0.3.0=pyhd8ed1ab_1 + - cairo=1.16.0=h73a0509_1014 + - certifi=2023.11.17=pyhd8ed1ab_0 + - chardet=5.2.0=py311h267d04e_1 + - 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.7=py311h92babd0_0 + - debugpy=1.8.0=py311ha891d26_1 + - decorator=5.1.1=pyhd8ed1ab_0 + - defusedxml=0.7.1=pyhd8ed1ab_0 + - distlib=0.3.8=pyhd8ed1ab_0 + - docutils=0.20.1=py311h267d04e_3 + - eclib=20231211=h7f07de4_0 + - editables=0.3=pyhd8ed1ab_0 + - entrypoints=0.4=pyhd8ed1ab_0 + - exceptiongroup=1.2.0=pyhd8ed1ab_0 + - execnet=2.0.2=pyhd8ed1ab_0 + - executing=2.0.1=pyhd8ed1ab_0 + - filelock=3.13.1=pyhd8ed1ab_0 + - flit-core=3.9.0=pyhd8ed1ab_0 + - fplll=5.4.5=hb7d509d_0 + - gap-defaults=4.12.2=hce30654_3 + - gast=0.5.4=pyhd8ed1ab_0 + - gfortran_impl_osx-arm64=12.3.0=hbbb9e1e_1 + - gmpy2=2.1.2=py311h2ba9262_1 + - idna=3.6=pyhd8ed1ab_0 + - imagesize=1.4.1=pyhd8ed1ab_0 + - iniconfig=2.0.0=pyhd8ed1ab_0 + - ipython_genutils=0.2.0=py_1 + - json5=0.9.14=pyhd8ed1ab_0 + - jsonpointer=2.4=py311h267d04e_3 + - jupyterlab_widgets=3.0.9=pyhd8ed1ab_0 + - kiwisolver=1.4.5=py311he4fd1f5_1 + - lcalc=2.0.5=hc94e8e6_1 + - ld64_osx-arm64=609=hc4dc95b_15 + - libblas=3.9.0=20_osxarm64_openblas + - libclang-cpp15=15.0.7=default_hd209bcb_4 + - libcurl=8.1.2=h912dcd9_0 + - libgd=2.3.3=h90fb8ed_4 + - llvm-tools=15.0.7=h62b9111_1 + - markupsafe=2.1.3=py311heffc1b2_1 + - 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 + - openblas=0.3.25=openmp_h55c453e_0 + - openssh=9.3p1=h7126958_1 + - packaging=23.2=pyhd8ed1ab_0 + - pandocfilters=1.5.0=pyhd8ed1ab_0 + - parso=0.8.3=pyhd8ed1ab_0 + - pastel=0.2.1=pyhd8ed1ab_0 + - pathspec=0.12.1=pyhd8ed1ab_0 + - pickleshare=0.7.5=py_1003 + - pillow=9.4.0=py311h627eb56_1 + - pkgconfig=1.5.5=pyhd8ed1ab_4 + - pkginfo=1.9.6=pyhd8ed1ab_0 + - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 + - platformdirs=4.1.0=pyhd8ed1ab_0 + - pluggy=1.3.0=pyhd8ed1ab_0 + - ply=3.11=py_1 + - prometheus_client=0.19.0=pyhd8ed1ab_0 + - psutil=5.9.7=py311h05b510d_0 + - ptyprocess=0.7.0=pyhd3deb0d_0 + - pure_eval=0.2.2=pyhd8ed1ab_0 + - py=1.11.0=pyh6c4a22f_0 + - pybind11-global=2.11.1=py311he4fd1f5_2 + - pycodestyle=2.11.1=pyhd8ed1ab_0 + - pycparser=2.21=pyhd8ed1ab_0 + - pygments=2.17.2=pyhd8ed1ab_0 + - pylev=1.4.0=pyhd8ed1ab_0 + - pyparsing=3.1.1=pyhd8ed1ab_0 + - pyrsistent=0.20.0=py311h05b510d_0 + - pysocks=1.7.1=pyha2e5f31_6 + - pyspellchecker=0.7.2=pyhd8ed1ab_0 + - python-fastjsonschema=2.19.0=pyhd8ed1ab_0 + - python-json-logger=2.0.7=pyhd8ed1ab_0 + - python-lrcalc=2.1=py311ha397e9f_5 + - python-tzdata=2023.3=pyhd8ed1ab_0 + - pytz=2023.3.post1=pyhd8ed1ab_0 + - pyyaml=6.0.1=py311heffc1b2_1 + - pyzmq=25.1.2=py311h6727e71_0 + - rfc3986-validator=0.1.1=pyh9f0ad1d_0 + - rpds-py=0.15.2=py311h94f323b_0 + - ruamel.yaml.clib=0.2.7=py311heffc1b2_2 + - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 + - sagetex=3.6.1=pyhd8ed1ab_0 + - setuptools=68.2.2=pyhd8ed1ab_0 + - simplegeneric=0.8.1=py_1 + - singular=4.3.2.p8=hb460b52_1 + - six=1.16.0=pyh6c4a22f_0 + - smmap=5.0.0=pyhd8ed1ab_0 + - sniffio=1.3.0=pyhd8ed1ab_0 + - snowballstemmer=2.2.0=pyhd8ed1ab_0 + - soupsieve=2.5=pyhd8ed1ab_1 + - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_0 + - sympow=2.023.6=hb0babe8_3 + - tomli=2.0.1=pyhd8ed1ab_0 + - tomlkit=0.12.3=pyha770c72_0 + - toolz=0.12.0=pyhd8ed1ab_0 + - tornado=6.3.3=py311heffc1b2_1 + - traitlets=5.14.0=pyhd8ed1ab_0 + - trove-classifiers=2023.11.29=pyhd8ed1ab_0 + - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 + - typing_extensions=4.9.0=pyha770c72_0 + - typing_utils=0.1.0=pyhd8ed1ab_0 + - tzlocal=5.2=py311h267d04e_0 + - uri-template=1.3.0=pyhd8ed1ab_0 + - wcwidth=0.2.12=pyhd8ed1ab_0 + - webcolors=1.13=pyhd8ed1ab_0 + - webencodings=0.5.1=pyhd8ed1ab_2 + - websocket-client=1.7.0=pyhd8ed1ab_0 + - wheel=0.42.0=pyhd8ed1ab_0 + - widgetsnbextension=4.0.9=pyhd8ed1ab_0 + - zipp=3.17.0=pyhd8ed1ab_0 + - anyio=4.2.0=pyhd8ed1ab_0 + - asttokens=2.4.1=pyhd8ed1ab_0 + - async-lru=2.0.4=pyhd8ed1ab_0 + - babel=2.14.0=pyhd8ed1ab_0 + - beautifulsoup4=4.12.2=pyha770c72_0 + - beniget=0.4.1=pyhd8ed1ab_0 + - bleach=6.1.0=pyhd8ed1ab_0 + - cached-property=1.5.2=hd8ed1ab_1 + - cctools_osx-arm64=973.0.1=h2a25c60_15 + - cffi=1.16.0=py311h4a08483_0 + - clang-15=15.0.7=default_hd209bcb_4 + - click-default-group=1.2.4=pyhd8ed1ab_0 + - clikit=0.6.2=pyhd8ed1ab_2 + - cmake=3.26.4=hc0af03a_0 + - comm=0.1.4=pyhd8ed1ab_0 + - cppy=1.2.1=pyhd8ed1ab_0 + - curl=8.1.2=h912dcd9_0 + - cypari2=2.1.3=py311h149620a_2 + - deprecation=2.1.0=pyh9f0ad1d_0 + - fonttools=4.47.0=py311h05b510d_0 + - gitdb=4.0.11=pyhd8ed1ab_0 + - harfbuzz=6.0.0=hddbc195_0 + - html5lib=1.1=pyh9f0ad1d_0 + - importlib-metadata=7.0.0=pyha770c72_0 + - importlib_resources=6.1.1=pyhd8ed1ab_0 + - jaraco.classes=3.3.0=pyhd8ed1ab_0 + - jedi=0.19.1=pyhd8ed1ab_0 + - jinja2=3.1.2=pyhd8ed1ab_1 + - jupyter_core=5.5.1=py311h267d04e_0 + - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 + - ld64=609=h89fa09d_15 + - libcblas=3.9.0=20_osxarm64_openblas + - liblapack=3.9.0=20_osxarm64_openblas + - matplotlib-inline=0.1.6=pyhd8ed1ab_0 + - memory-allocator=0.1.3=py311heffc1b2_0 + - overrides=7.4.0=pyhd8ed1ab_0 + - pexpect=4.8.0=pyh1a96a4e_2 + - pip=23.3.2=pyhd8ed1ab_0 + - pplpy=0.8.9=py311h5ba3760_0 + - primecountpy=0.1.0=py311he4fd1f5_4 + - prompt-toolkit=3.0.42=pyha770c72_0 + - pybind11=2.11.1=py311he4fd1f5_2 + - pyobjc-core=10.1=py311h665608e_0 + - pyproject-api=1.6.1=pyhd8ed1ab_0 + - pytest=7.4.3=pyhd8ed1ab_0 + - python-dateutil=2.8.2=pyhd8ed1ab_0 + - pytz-deprecation-shim=0.1.0.post0=py311h267d04e_4 + - referencing=0.32.0=pyhd8ed1ab_0 + - rfc3339-validator=0.1.4=pyhd8ed1ab_0 + - ruamel.yaml=0.18.5=py311h05b510d_0 + - sympy=1.12=pypyh9d50eac_103 + - terminado=0.18.0=pyh31c8845_0 + - tinycss2=1.2.1=pyhd8ed1ab_0 + - typing-extensions=4.9.0=hd8ed1ab_0 + - urllib3=1.26.18=pyhd8ed1ab_0 + - virtualenv=20.25.0=pyhd8ed1ab_0 + - annotated-types=0.6.0=pyhd8ed1ab_0 + - argon2-cffi-bindings=21.2.0=py311heffc1b2_4 + - arpack=3.7.0=h58ebc17_2 + - arrow=1.3.0=pyhd8ed1ab_0 + - cattrs=23.2.3=pyhd8ed1ab_0 + - cctools=973.0.1=hd1ac623_15 + - clang=15.0.7=haab561b_4 + - dsdp=5.8=h9397a75_1203 + - fflas-ffpack=2.4.3=h11f2abc_2 + - fqdn=1.5.1=pyhd8ed1ab_0 + - git=2.42.0=pl5321h46e2b6d_0 + - gitpython=3.1.40=pyhd8ed1ab_0 + - gsl=2.7=h6e638da_0 + - hatchling=1.21.0=pyhd8ed1ab_0 + - iml=1.0.5=hd52f0d1_1003 + - importlib-resources=6.1.1=pyhd8ed1ab_0 + - importlib_metadata=7.0.0=hd8ed1ab_0 + - jsonschema-specifications=2023.11.2=pyhd8ed1ab_0 + - jupyter_server_terminals=0.5.0=pyhd8ed1ab_0 + - liblapacke=3.9.0=20_osxarm64_openblas + - numpy=1.26.2=py311h6d074dd_0 + - pango=1.50.14=h6c112b8_0 + - prompt_toolkit=3.0.42=hd8ed1ab_0 + - pydantic-core=2.14.5=py311h94f323b_0 + - pyobjc-framework-cocoa=10.1=py311h665608e_0 + - pytest-xdist=3.5.0=pyhd8ed1ab_0 + - requests=2.31.0=pyhd8ed1ab_0 + - setuptools-scm=8.0.4=pyhd8ed1ab_0 + - stack_data=0.6.2=pyhd8ed1ab_0 + - suitesparse=5.10.1=h88be0ae_2 + - argon2-cffi=23.1.0=pyhd8ed1ab_0 + - blas-devel=3.9.0=20_osxarm64_openblas + - cachecontrol=0.13.1=pyhd8ed1ab_0 + - clangxx=15.0.7=default_h5c94ee4_4 + - 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 + - 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=py311h267d04e_0 + - linbox=1.6.3=h380be0f_8 + - lsprotocol=2023.0.0=pyhd8ed1ab_0 + - pydantic=2.5.2=pyhd8ed1ab_0 + - scipy=1.11.4=py311h2b215a9_0 + - send2trash=1.8.2=pyhd1c38e8_0 + - setuptools_scm=8.0.4=hd8ed1ab_0 + - tox=4.11.4=pyhd8ed1ab_0 + - blas=2.120=openblas + - cachecontrol-with-filecache=0.13.1=pyhd8ed1ab_0 + - compiler-rt_osx-arm64=15.0.7=h3808999_2 + - ipykernel=6.26.0=pyh3cd1d5f_0 + - ipywidgets=8.1.1=pyhd8ed1ab_0 + - jsonschema-with-format-nongpl=4.20.0=pyhd8ed1ab_0 + - matplotlib-base=3.8.2=py311hfdba5f6_0 + - nbformat=5.9.2=pyhd8ed1ab_0 + - pygls=1.2.1=pyhd8ed1ab_0 + - rw=0.9=h3422bc3_0 + - compiler-rt=15.0.7=h3808999_2 + - conda-lock=2.5.1=pyhd8ed1ab_0 + - ipympl=0.9.3=pyhd8ed1ab_0 + - jupyter-jsmol=2022.1.0=pyhd8ed1ab_0 + - jupyter_events=0.9.0=pyhd8ed1ab_0 + - matplotlib=3.8.2=py311ha1ab1f8_0 + - nbclient=0.8.0=pyhd8ed1ab_0 + - clang_impl_osx-arm64=15.0.7=h77e971b_7 + - nbconvert-core=7.13.0=pyhd8ed1ab_0 + - clang_osx-arm64=15.0.7=h54d7cd3_7 + - jupyter_server=2.12.1=pyhd8ed1ab_0 + - nbconvert-pandoc=7.13.0=pyhd8ed1ab_0 + - c-compiler=1.6.0=hd291e01_0 + - clangxx_impl_osx-arm64=15.0.7=h768a7fd_7 + - gfortran_osx-arm64=12.3.0=h57527a5_1 + - jupyter-lsp=2.2.1=pyhd8ed1ab_0 + - jupyterlab_server=2.25.2=pyhd8ed1ab_0 + - nbconvert=7.13.0=pyhd8ed1ab_0 + - notebook-shim=0.2.3=pyhd8ed1ab_0 + - clangxx_osx-arm64=15.0.7=h54d7cd3_7 + - gfortran=12.3.0=h1ca8e4b_1 + - jupyterlab=4.0.9=pyhd8ed1ab_0 + - cxx-compiler=1.6.0=h1995070_0 + - fortran-compiler=1.6.0=h5a50232_0 + - notebook=7.0.6=pyhd8ed1ab_0 + - pythran=0.14.0=py311hddbb800_1 + - r-base=4.1.3=h9c4d319_6 + - compilers=1.6.0=hce30654_0 + - rpy2=3.5.11=py311r41h4add359_0 + - esbonio=0.16.3=pyhd8ed1ab_0 + - jupyter_sphinx=0.1.4=py_0 + - 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 new file mode 100644 index 00000000000..def5a0a3c44 --- /dev/null +++ b/src/environment-dev-3.11-macos.yml @@ -0,0 +1,447 @@ +# Generated by conda-lock. +# platform: osx-64 +# input_hash: 44b85991c6586ed547f231313cf900e49e139d33b4763935c5cead2842a07f01 + +channels: + - conda-forge +dependencies: + - _r-mutex=1.0.1=anacondar_1 + - bc=1.07.1=h0d85af4_0 + - bzip2=1.0.8=h10d778d_5 + - c-ares=1.24.0=h10d778d_0 + - ca-certificates=2023.11.17=h8857fd0_0 + - cliquer=1.22=hbcb3906_0 + - font-ttf-dejavu-sans-mono=2.37=hab24e00_0 + - font-ttf-inconsolata=3.000=h77eed37_0 + - font-ttf-source-code-pro=2.038=h77eed37_0 + - font-ttf-ubuntu=0.83=h77eed37_1 + - fribidi=1.0.10=hbcb3906_0 + - gh=2.40.1=h990441c_0 + - giflib=5.2.1=hb7f2c08_3 + - icu=73.2=hf5e326d_0 + - libatomic_ops=7.6.14=hb7f2c08_0 + - libboost-headers=1.84.0=h694c41f_0 + - libbrotlicommon=1.1.0=h0dc2134_1 + - libcxx=16.0.6=hd57cbcb_0 + - libdeflate=1.19=ha4e1b8e_0 + - libev=4.33=h10d778d_2 + - libexpat=2.5.0=hf0c8a7f_1 + - libffi=3.4.2=h0d85af4_5 + - libgfortran-devel_osx-64=12.3.0=h0b6f5ec_1 + - libiconv=1.17=hd75f5a5_2 + - libjpeg-turbo=3.0.0=h0dc2134_1 + - libsodium=1.0.18=hbcb3906_1 + - libtool=2.4.7=hf0c8a7f_0 + - libuv=1.46.0=h0c2f820_0 + - libwebp-base=1.3.2=h0dc2134_0 + - libzlib=1.2.13=h8a1eda9_5 + - llvm-openmp=17.0.6=hb6ac08f_0 + - m4=1.4.18=haf1e3a3_1001 + - make=4.3=h22f3db7_1 + - mathjax=3.2.2=h694c41f_0 + - nauty=2.8.8=h10d778d_0 + - 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 + - planarity=3.0.0.5=hbcb3906_1002 + - pthread-stubs=0.4=hc929b4f_1001 + - python_abi=3.11=4_cp311 + - rhash=1.4.4=h0dc2134_0 + - sagemath-db-combinatorial-designs=20140630=1 + - sagemath-db-graphs=20210214=hd8ed1ab_0 + - sagemath-db-polytopes=20170220=1 + - three.js=122=hd8ed1ab_2 + - tzdata=2023c=h71feb2d_0 + - xorg-libxau=1.0.11=h0dc2134_0 + - xorg-libxdmcp=1.1.3=h35c211d_0 + - xz=5.2.6=h775f41a_0 + - yaml=0.2.5=h0d85af4_2 + - autoconf=2.71=pl5321hed12c24_1 + - bdw-gc=8.0.6=h940c156_0 + - expat=2.5.0=hf0c8a7f_1 + - fonts-conda-forge=1=0 + - gengetopt=2.23=he49afe7_0 + - gettext=0.21.1=h8a4c099_0 + - gf2x=1.3.0=hb2a7efb_2 + - gmp=6.3.0=h93d8f39_0 + - graphite2=1.3.13=h2e338ed_1001 + - isl=0.25=hb486fe8_0 + - lerc=4.0.0=hb486fe8_0 + - libbraiding=1.2=hf0c8a7f_0 + - libbrotlidec=1.1.0=h0dc2134_1 + - libbrotlienc=1.1.0=h0dc2134_1 + - libcbor=0.10.2=hf0c8a7f_0 + - libgfortran5=13.2.0=h2873a65_1 + - libpng=1.6.39=ha978bb4_0 + - libsqlite=3.44.2=h92b6c6a_0 + - libxcb=1.15=hb7f2c08_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 + - openssl=3.2.0=hd75f5a5_1 + - 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 + - symmetrica=3.0.1=hf0c8a7f_0 + - tapi=1100.0.11=h9ce4665_0 + - tar=1.34=hcb2f6ea_1 + - threejs-sage=122=hd8ed1ab_2 + - tk=8.6.13=h1abcd95_1 + - zeromq=4.3.5=h93d8f39_0 + - zlib=1.2.13=h8a1eda9_5 + - zstd=1.5.5=h829000d_0 + - automake=1.16.5=pl5321h694c41f_0 + - brotli-bin=1.1.0=h0dc2134_1 + - bwidget=1.9.14=h694c41f_1 + - cddlib=1!0.94m=h0f52abe_0 + - ecm=7.0.4=h343d7f2_1002 + - fonts-conda-ecosystem=1=0 + - freetype=2.12.1=h60636b9_2 + - givaro=4.1.1=h0a799c6_3 + - glpk=5.0=h3cb5acd_0 + - jmol=14.32.9=h694c41f_0 + - libboost=1.84.0=h5b2dd29_0 + - libedit=3.1.20191231=h0678c8f_2 + - libfido2=1.14.0=h3cbcf74_0 + - libgfortran=5.0.0=13_2_0_h97931a8_1 + - libglib=2.78.1=h6d9ecee_0 + - libhomfly=1.02r6=hc929b4f_0 + - libhwloc=2.9.3=default_h24e0189_1009 + - libllvm15=15.0.7=he4b1e75_3 + - libnghttp2=1.58.0=h64cf6d3_1 + - libssh2=1.11.0=hd019ec5_0 + - libtiff=4.6.0=h684deea_2 + - m4ri=20140914=h3f75d11_1005 + - mpfr=4.2.1=h0c69b56_0 + - ntl=11.4.3=h0ab3c2f_1 + - primecount=7.6=ha894c9a_0 + - readline=8.2=h9e318b2_1 + - sigtool=0.1.3=h88f4db0_0 + - tachyon=0.99b6=0 + - texinfo=7.0=pl5321hc47821c_0 + - tktable=2.10=ha166976_5 + - brotli=1.1.0=h0dc2134_1 + - ecl=21.2.1=hd029580_2 + - fftw=3.3.10=nompi_h4fa670e_108 + - fontconfig=2.14.2=h5bb23bf_0 + - gap-core=4.12.2=hc16eb5f_3 + - gfan=0.6.2=hd793b56_1003 + - krb5=1.21.2=hb884880_0 + - lcms2=2.16=ha2f27b4_0 + - ld64_osx-64=609=h0fd476b_15 + - libboost-devel=1.84.0=h7728843_0 + - libbrial=1.2.12=h8d08345_1 + - libclang-cpp15=15.0.7=default_h6b1ee41_4 + - libflint=3.0.1=h5d15de0_ntl_100 + - libopenblas=0.3.25=openmp_hfef2a42_0 + - libwebp=1.3.2=h44782d1_1 + - llvm-tools=15.0.7=he4b1e75_3 + - m4rie=20150908=h3f75d11_1001 + - mpc=1.3.1=h81bd1dd_0 + - mpfi=1.5.4=h52b28e3_1001 + - openjpeg=2.5.0=ha4da562_3 + - pari=2.15.4=h93f793c_2_pthread + - ppl=1.2=ha60d53e_1006 + - python=3.11.7=h9f0c242_0_cpython + - qd=2.3.22=h2beb688_1004 + - sqlite=3.44.2=h7461747_0 + - tbb=2021.11.0=he51d815_0 + - alabaster=0.7.13=pyhd8ed1ab_0 + - appdirs=1.4.4=pyh9f0ad1d_0 + - appnope=0.1.3=pyhd8ed1ab_0 + - attrs=23.1.0=pyh71513ae_1 + - boost-cpp=1.84.0=h07eb623_0 + - brial=1.2.12=pyh694c41f_1 + - brotli-python=1.1.0=py311hdf8f085_1 + - cached_property=1.5.2=pyha770c72_1 + - cachetools=5.3.2=pyhd8ed1ab_0 + - cachy=0.3.0=pyhd8ed1ab_1 + - cairo=1.18.0=h99e66fa_0 + - cctools_osx-64=973.0.1=habff3f6_15 + - certifi=2023.11.17=pyhd8ed1ab_0 + - chardet=5.2.0=py311h6eed73b_1 + - charset-normalizer=3.3.2=pyhd8ed1ab_0 + - 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.7=py311hdd0406b_0 + - debugpy=1.8.0=py311hdf8f085_1 + - decorator=5.1.1=pyhd8ed1ab_0 + - defusedxml=0.7.1=pyhd8ed1ab_0 + - distlib=0.3.8=pyhd8ed1ab_0 + - docutils=0.20.1=py311h6eed73b_3 + - eclib=20231211=h02435c3_0 + - editables=0.3=pyhd8ed1ab_0 + - entrypoints=0.4=pyhd8ed1ab_0 + - exceptiongroup=1.2.0=pyhd8ed1ab_0 + - execnet=2.0.2=pyhd8ed1ab_0 + - executing=2.0.1=pyhd8ed1ab_0 + - filelock=3.13.1=pyhd8ed1ab_0 + - flit-core=3.9.0=pyhd8ed1ab_0 + - fplll=5.4.5=hb7981ad_0 + - gap-defaults=4.12.2=h694c41f_3 + - gast=0.5.4=pyhd8ed1ab_0 + - gfortran_impl_osx-64=12.3.0=h54fd467_1 + - gmpy2=2.1.2=py311hc5b4402_1 + - idna=3.6=pyhd8ed1ab_0 + - imagesize=1.4.1=pyhd8ed1ab_0 + - iniconfig=2.0.0=pyhd8ed1ab_0 + - ipython_genutils=0.2.0=py_1 + - json5=0.9.14=pyhd8ed1ab_0 + - jsonpointer=2.4=py311h6eed73b_3 + - jupyterlab_widgets=3.0.9=pyhd8ed1ab_0 + - kiwisolver=1.4.5=py311h5fe6e05_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 + - markupsafe=2.1.3=py311h2725bcf_1 + - maxima=5.47.0=h2b27fa8_1 + - mistune=3.0.2=pyhd8ed1ab_0 + - more-itertools=10.1.0=pyhd8ed1ab_0 + - mpmath=1.3.0=pyhd8ed1ab_0 + - msgpack-python=1.0.7=py311h7bea37d_0 + - munkres=1.1.4=pyh9f0ad1d_0 + - nest-asyncio=1.5.8=pyhd8ed1ab_0 + - networkx=3.2.1=pyhd8ed1ab_0 + - openblas=0.3.25=openmp_h6794695_0 + - openssh=9.3p1=h3df487d_2 + - packaging=23.2=pyhd8ed1ab_0 + - pandocfilters=1.5.0=pyhd8ed1ab_0 + - parso=0.8.3=pyhd8ed1ab_0 + - pastel=0.2.1=pyhd8ed1ab_0 + - pathspec=0.12.1=pyhd8ed1ab_0 + - pickleshare=0.7.5=py_1003 + - pillow=10.1.0=py311hea5c87a_0 + - pkgconfig=1.5.5=pyhd8ed1ab_4 + - pkginfo=1.9.6=pyhd8ed1ab_0 + - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 + - platformdirs=4.1.0=pyhd8ed1ab_0 + - pluggy=1.3.0=pyhd8ed1ab_0 + - ply=3.11=py_1 + - prometheus_client=0.19.0=pyhd8ed1ab_0 + - psutil=5.9.7=py311he705e18_0 + - ptyprocess=0.7.0=pyhd3deb0d_0 + - pure_eval=0.2.2=pyhd8ed1ab_0 + - py=1.11.0=pyh6c4a22f_0 + - pybind11-global=2.11.1=py311h5fe6e05_2 + - pycodestyle=2.11.1=pyhd8ed1ab_0 + - pycparser=2.21=pyhd8ed1ab_0 + - pygments=2.17.2=pyhd8ed1ab_0 + - pylev=1.4.0=pyhd8ed1ab_0 + - pyparsing=3.1.1=pyhd8ed1ab_0 + - pyrsistent=0.20.0=py311he705e18_0 + - pysocks=1.7.1=pyha2e5f31_6 + - pyspellchecker=0.7.2=pyhd8ed1ab_0 + - python-fastjsonschema=2.19.0=pyhd8ed1ab_0 + - python-json-logger=2.0.7=pyhd8ed1ab_0 + - python-lrcalc=2.1=py311h814d153_5 + - python-tzdata=2023.3=pyhd8ed1ab_0 + - pytz=2023.3.post1=pyhd8ed1ab_0 + - pyyaml=6.0.1=py311h2725bcf_1 + - pyzmq=25.1.2=py311h889d6d6_0 + - rfc3986-validator=0.1.1=pyh9f0ad1d_0 + - rpds-py=0.15.2=py311h5e0f0e4_0 + - ruamel.yaml.clib=0.2.7=py311h2725bcf_2 + - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 + - sagetex=3.6.1=pyhd8ed1ab_0 + - setuptools=68.2.2=pyhd8ed1ab_0 + - simplegeneric=0.8.1=py_1 + - singular=4.3.2.p8=h0d51a9f_1 + - six=1.16.0=pyh6c4a22f_0 + - smmap=5.0.0=pyhd8ed1ab_0 + - sniffio=1.3.0=pyhd8ed1ab_0 + - snowballstemmer=2.2.0=pyhd8ed1ab_0 + - soupsieve=2.5=pyhd8ed1ab_1 + - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_0 + - sympow=2.023.6=h115ba6a_3 + - tomli=2.0.1=pyhd8ed1ab_0 + - tomlkit=0.12.3=pyha770c72_0 + - toolz=0.12.0=pyhd8ed1ab_0 + - tornado=6.3.3=py311h2725bcf_1 + - traitlets=5.14.0=pyhd8ed1ab_0 + - trove-classifiers=2023.11.29=pyhd8ed1ab_0 + - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 + - typing_extensions=4.9.0=pyha770c72_0 + - typing_utils=0.1.0=pyhd8ed1ab_0 + - tzlocal=5.2=py311h6eed73b_0 + - uri-template=1.3.0=pyhd8ed1ab_0 + - wcwidth=0.2.12=pyhd8ed1ab_0 + - webcolors=1.13=pyhd8ed1ab_0 + - webencodings=0.5.1=pyhd8ed1ab_2 + - websocket-client=1.7.0=pyhd8ed1ab_0 + - wheel=0.42.0=pyhd8ed1ab_0 + - widgetsnbextension=4.0.9=pyhd8ed1ab_0 + - zipp=3.17.0=pyhd8ed1ab_0 + - anyio=4.2.0=pyhd8ed1ab_0 + - asttokens=2.4.1=pyhd8ed1ab_0 + - async-lru=2.0.4=pyhd8ed1ab_0 + - babel=2.14.0=pyhd8ed1ab_0 + - beautifulsoup4=4.12.2=pyha770c72_0 + - beniget=0.4.1=pyhd8ed1ab_0 + - bleach=6.1.0=pyhd8ed1ab_0 + - cached-property=1.5.2=hd8ed1ab_1 + - cctools=973.0.1=hd9ad811_15 + - cffi=1.16.0=py311hc0b63fd_0 + - clang=15.0.7=hac416ee_4 + - click-default-group=1.2.4=pyhd8ed1ab_0 + - clikit=0.6.2=pyhd8ed1ab_2 + - cmake=3.28.1=h7c85d92_0 + - comm=0.1.4=pyhd8ed1ab_0 + - cppy=1.2.1=pyhd8ed1ab_0 + - curl=8.5.0=h726d00d_0 + - cypari2=2.1.3=py311h7d823c7_2 + - deprecation=2.1.0=pyh9f0ad1d_0 + - fonttools=4.47.0=py311he705e18_0 + - gitdb=4.0.11=pyhd8ed1ab_0 + - harfbuzz=8.3.0=hf45c392_0 + - html5lib=1.1=pyh9f0ad1d_0 + - importlib-metadata=7.0.0=pyha770c72_0 + - importlib_resources=6.1.1=pyhd8ed1ab_0 + - jaraco.classes=3.3.0=pyhd8ed1ab_0 + - jedi=0.19.1=pyhd8ed1ab_0 + - jinja2=3.1.2=pyhd8ed1ab_1 + - jupyter_core=5.5.1=py311h6eed73b_0 + - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 + - libcblas=3.9.0=20_osx64_openblas + - liblapack=3.9.0=20_osx64_openblas + - matplotlib-inline=0.1.6=pyhd8ed1ab_0 + - memory-allocator=0.1.3=py311h2725bcf_0 + - overrides=7.4.0=pyhd8ed1ab_0 + - pexpect=4.8.0=pyh1a96a4e_2 + - pip=23.3.2=pyhd8ed1ab_0 + - pplpy=0.8.9=py311h7355a2a_0 + - primecountpy=0.1.0=py311h5fe6e05_4 + - prompt-toolkit=3.0.42=pyha770c72_0 + - pybind11=2.11.1=py311h5fe6e05_2 + - pyobjc-core=10.1=py311h9b70068_0 + - pyproject-api=1.6.1=pyhd8ed1ab_0 + - pytest=7.4.3=pyhd8ed1ab_0 + - python-dateutil=2.8.2=pyhd8ed1ab_0 + - pytz-deprecation-shim=0.1.0.post0=py311h6eed73b_4 + - referencing=0.32.0=pyhd8ed1ab_0 + - rfc3339-validator=0.1.4=pyhd8ed1ab_0 + - ruamel.yaml=0.18.5=py311he705e18_0 + - sympy=1.12=pypyh9d50eac_103 + - terminado=0.18.0=pyh31c8845_0 + - tinycss2=1.2.1=pyhd8ed1ab_0 + - typing-extensions=4.9.0=hd8ed1ab_0 + - urllib3=1.26.18=pyhd8ed1ab_0 + - virtualenv=20.25.0=pyhd8ed1ab_0 + - annotated-types=0.6.0=pyhd8ed1ab_0 + - argon2-cffi-bindings=21.2.0=py311h2725bcf_4 + - arpack=3.8.0=nompi_hb44a6d1_101 + - arrow=1.3.0=pyhd8ed1ab_0 + - cattrs=23.2.3=pyhd8ed1ab_0 + - clangxx=15.0.7=default_h6b1ee41_4 + - dsdp=5.8=h6e329d1_1203 + - fflas-ffpack=2.4.3=h026fd7e_2 + - fqdn=1.5.1=pyhd8ed1ab_0 + - git=2.42.0=pl5321hbb4c4ee_0 + - gitpython=3.1.40=pyhd8ed1ab_0 + - gsl=2.7=h93259b0_0 + - hatchling=1.21.0=pyhd8ed1ab_0 + - iml=1.0.5=h64b42ca_1003 + - importlib-resources=6.1.1=pyhd8ed1ab_0 + - importlib_metadata=7.0.0=hd8ed1ab_0 + - jsonschema-specifications=2023.11.2=pyhd8ed1ab_0 + - jupyter_server_terminals=0.5.0=pyhd8ed1ab_0 + - liblapacke=3.9.0=20_osx64_openblas + - numpy=1.26.2=py311h93c810c_0 + - pango=1.50.14=h19c1c8a_2 + - prompt_toolkit=3.0.42=hd8ed1ab_0 + - pydantic-core=2.14.5=py311h5e0f0e4_0 + - pyobjc-framework-cocoa=10.1=py311h9b70068_0 + - pytest-xdist=3.5.0=pyhd8ed1ab_0 + - requests=2.31.0=pyhd8ed1ab_0 + - setuptools-scm=8.0.4=pyhd8ed1ab_0 + - stack_data=0.6.2=pyhd8ed1ab_0 + - suitesparse=5.10.1=h0a40b7c_2 + - argon2-cffi=23.1.0=pyhd8ed1ab_0 + - blas-devel=3.9.0=20_osx64_openblas + - cachecontrol=0.13.1=pyhd8ed1ab_0 + - compiler-rt_osx-64=15.0.7=ha38d28d_2 + - 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 + - igraph=0.10.8=h29df365_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=hfb9b24e_8 + - lsprotocol=2023.0.0=pyhd8ed1ab_0 + - pydantic=2.5.2=pyhd8ed1ab_0 + - scipy=1.11.4=py311he0bea55_0 + - send2trash=1.8.2=pyhd1c38e8_0 + - setuptools_scm=8.0.4=hd8ed1ab_0 + - tox=4.11.4=pyhd8ed1ab_0 + - blas=2.120=openblas + - cachecontrol-with-filecache=0.13.1=pyhd8ed1ab_0 + - compiler-rt=15.0.7=ha38d28d_2 + - ipykernel=6.26.0=pyh3cd1d5f_0 + - ipywidgets=8.1.1=pyhd8ed1ab_0 + - jsonschema-with-format-nongpl=4.20.0=pyhd8ed1ab_0 + - matplotlib-base=3.8.2=py311hd316c10_0 + - nbformat=5.9.2=pyhd8ed1ab_0 + - pygls=1.2.1=pyhd8ed1ab_0 + - rw=0.9=h10d778d_1 + - clang_impl_osx-64=15.0.7=h03d6864_7 + - conda-lock=2.5.1=pyhd8ed1ab_0 + - ipympl=0.9.3=pyhd8ed1ab_0 + - jupyter-jsmol=2022.1.0=pyhd8ed1ab_0 + - jupyter_events=0.9.0=pyhd8ed1ab_0 + - matplotlib=3.8.2=py311h6eed73b_0 + - nbclient=0.8.0=pyhd8ed1ab_0 + - clang_osx-64=15.0.7=hb91bd55_7 + - nbconvert-core=7.13.0=pyhd8ed1ab_0 + - c-compiler=1.6.0=h63c33a9_0 + - clangxx_impl_osx-64=15.0.7=h2133e9c_7 + - gfortran_osx-64=12.3.0=h18f7dce_1 + - jupyter_server=2.12.1=pyhd8ed1ab_0 + - nbconvert-pandoc=7.13.0=pyhd8ed1ab_0 + - clangxx_osx-64=15.0.7=hb91bd55_7 + - gfortran=12.3.0=h2c809b3_1 + - jupyter-lsp=2.2.1=pyhd8ed1ab_0 + - jupyterlab_server=2.25.2=pyhd8ed1ab_0 + - nbconvert=7.13.0=pyhd8ed1ab_0 + - notebook-shim=0.2.3=pyhd8ed1ab_0 + - cxx-compiler=1.6.0=h1c7c39f_0 + - fortran-compiler=1.6.0=h932d759_0 + - jupyterlab=4.0.9=pyhd8ed1ab_0 + - pythran=0.14.0=py311hd5c4f45_1 + - r-base=4.3.1=h0ff45fa_6 + - compilers=1.6.0=h694c41f_0 + - notebook=7.0.6=pyhd8ed1ab_0 + - rpy2=3.5.11=py311r43h4a70a88_3 + - esbonio=0.16.3=pyhd8ed1ab_0 + - jupyter_sphinx=0.4.0=py311h6eed73b_1 + - 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-aarch64.yml b/src/environment-dev-3.9-linux-aarch64.yml new file mode 100644 index 00000000000..4b70d0a4e98 --- /dev/null +++ b/src/environment-dev-3.9-linux-aarch64.yml @@ -0,0 +1,471 @@ +# Generated by conda-lock. +# platform: linux-aarch64 +# input_hash: 6bb8baa489bd6fe865a20fa985509961599b43e728e121ea29e980a671f65b17 + +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 + - gh=2.40.1=h652cbe9_0 + - kernel-headers_linux-aarch64=4.18.0=h5b4a56d_13 + - ld_impl_linux-aarch64=2.40=h2d8c526_0 + - libgcc-devel_linux-aarch64=12.3.0=h8b5ab12_103 + - libgomp=13.2.0=hf8544c7_3 + - libstdcxx-devel_linux-aarch64=12.3.0=h8b5ab12_103 + - libstdcxx-ng=13.2.0=h9a76618_3 + - mathjax=3.2.2=h8af1aa0_0 + - pandoc=3.1.3=h8af1aa0_0 + - 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 + - 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.24.0=h31becfc_0 + - cliquer=1.22=hb9de7d4_0 + - fribidi=1.0.10=hb9de7d4_0 + - gengetopt=2.23=h01db608_0 + - gettext=0.21.1=ha18d298_0 + - gf2x=1.3.0=h1b3b3a3_2 + - giflib=5.2.1=hb4cce97_3 + - gmp=6.3.0=h2f0025b_0 + - graphite2=1.3.13=h7fd3ca4_1001 + - icu=70.1=ha18d298_0 + - jpeg=9e=h2a766a3_3 + - keyutils=1.6.1=h4e544f5_0 + - lerc=4.0.0=h4de3ea5_0 + - libatomic_ops=7.6.14=h4e544f5_0 + - libbraiding=1.2=hd600fc2_0 + - libbrotlicommon=1.1.0=h31becfc_1 + - libcbor=0.9.0=h01db608_0 + - libdeflate=1.17=hb4cce97_0 + - 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=h31becfc_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 + - 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.8.8=h31becfc_0 + - ncurses=6.4=h0425590_2 + - ninja=1.11.1=hdd96247_0 + - openssl=3.2.0=h31becfc_1 + - 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 + - libcap=2.69=h883460d_0 + - libedit=3.1.20191231=he28a2e2_2 + - libgfortran-ng=13.2.0=he9431aa_3 + - libhomfly=1.02r6=hb9de7d4_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 + - 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 + - tar=1.34=h048efde_0 + - tk=8.6.13=h194ca79_0 + - xorg-fixesproto=5.0=h3557bc0_1002 + - xorg-libsm=1.2.3=h965e137_1000 + - zeromq=4.3.5=h2f0025b_0 + - zlib=1.2.13=h31becfc_5 + - zstd=1.5.5=h4c53e97_0 + - autoconf=2.71=pl5321h2148fe1_1 + - boost-cpp=1.81.0=h07c2bc3_0 + - brotli-bin=1.1.0=h31becfc_1 + - bwidget=1.9.14=h8af1aa0_1 + - ecl=21.2.1=haa44c19_2 + - fftw=3.3.10=nompi_h2dcef8e_108 + - freetype=2.12.1=hf0a5ef3_2 + - gap-core=4.12.2=h597289e_3 + - gcc=12.3.0=hc1b51f9_2 + - gcc_linux-aarch64=12.3.0=h464a8f7_2 + - gfan=0.6.2=h5f589ec_1003 + - gfortran_impl_linux-aarch64=12.3.0=hb7244be_3 + - gxx_impl_linux-aarch64=12.3.0=hcde2664_3 + - krb5=1.20.1=h113d92e_0 + - libflint=3.0.1=hc392af7_ntl_100 + - libglib=2.78.1=h0464669_0 + - libhwloc=2.9.1=h21e8147_0 + - libopenblas=0.3.25=pthreads_h5a5ec62_0 + - libtiff=4.5.0=h4c1066a_2 + - libudev1=255=h31becfc_0 + - llvm-openmp=17.0.6=h8b0cb96_0 + - m4ri=20140914=h75e8696_1005 + - mpc=1.3.1=hf4c8f4c_0 + - mpfi=1.5.4=h846f343_1001 + - pari=2.15.4=h169c2a7_2_pthread + - ppl=1.2=h984aac9_1006 + - python=3.9.18=h4ac3b42_0_cpython + - qd=2.3.22=h05efe27_1004 + - sqlite=3.44.2=h3b3482f_0 + - tachyon=0.99b6=h63ab1d9_1001 + - texinfo=7.0=pl5321h17f021e_0 + - tktable=2.10=h4f9ca69_5 + - xorg-libx11=1.8.4=h2a766a3_0 + - alabaster=0.7.13=pyhd8ed1ab_0 + - appdirs=1.4.4=pyh9f0ad1d_0 + - appnope=0.1.3=pyhd8ed1ab_0 + - attrs=23.1.0=pyh71513ae_1 + - automake=1.16.5=pl5321h8af1aa0_0 + - brotli=1.1.0=h31becfc_1 + - brotli-python=1.1.0=py39h387a81e_1 + - c-compiler=1.6.0=h31becfc_0 + - cached_property=1.5.2=pyha770c72_1 + - cachetools=5.3.2=pyhd8ed1ab_0 + - 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 + - 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.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.8=pyhd8ed1ab_0 + - docutils=0.20.1=py39ha65689a_3 + - eclib=20231211=he26bab5_0 + - editables=0.3=pyhd8ed1ab_0 + - entrypoints=0.4=pyhd8ed1ab_0 + - exceptiongroup=1.2.0=pyhd8ed1ab_0 + - execnet=2.0.2=pyhd8ed1ab_0 + - executing=2.0.1=pyhd8ed1ab_0 + - filelock=3.13.1=pyhd8ed1ab_0 + - flit-core=3.9.0=pyhd8ed1ab_0 + - fontconfig=2.14.2=ha9a116f_0 + - fplll=5.4.5=hb3a790e_0 + - gap-defaults=4.12.2=h8af1aa0_3 + - gast=0.5.4=pyhd8ed1ab_0 + - gfortran=12.3.0=h8d4031d_2 + - gfortran_linux-aarch64=12.3.0=h1993883_2 + - gmpy2=2.1.2=py39h3ba43c8_1 + - gxx=12.3.0=hc1b51f9_2 + - gxx_linux-aarch64=12.3.0=h21accf6_2 + - idna=3.6=pyhd8ed1ab_0 + - imagesize=1.4.1=pyhd8ed1ab_0 + - iniconfig=2.0.0=pyhd8ed1ab_0 + - ipython_genutils=0.2.0=py_1 + - jeepney=0.8.0=pyhd8ed1ab_0 + - json5=0.9.14=pyhd8ed1ab_0 + - jsonpointer=2.4=py39h4420490_3 + - jupyterlab_widgets=3.0.9=pyhd8ed1ab_0 + - 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 + - libfido2=1.14.0=heb3f89f_0 + - libwebp=1.2.4=h7bdf6e5_1 + - m4rie=20150908=h75e8696_1001 + - markupsafe=2.1.3=py39h7cc1d5f_1 + - maxima=5.47.0=h6475f26_1 + - mistune=3.0.2=pyhd8ed1ab_0 + - more-itertools=10.1.0=pyhd8ed1ab_0 + - mpmath=1.3.0=pyhd8ed1ab_0 + - msgpack-python=1.0.7=py39had2cf8c_0 + - munkres=1.1.4=pyh9f0ad1d_0 + - nest-asyncio=1.5.8=pyhd8ed1ab_0 + - 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 + - pastel=0.2.1=pyhd8ed1ab_0 + - pathspec=0.12.1=pyhd8ed1ab_0 + - pickleshare=0.7.5=py_1003 + - pkgconfig=1.5.5=pyhd8ed1ab_4 + - pkginfo=1.9.6=pyhd8ed1ab_0 + - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 + - platformdirs=4.1.0=pyhd8ed1ab_0 + - pluggy=1.3.0=pyhd8ed1ab_0 + - ply=3.11=py_1 + - prometheus_client=0.19.0=pyhd8ed1ab_0 + - psutil=5.9.7=py39h898b7ef_0 + - ptyprocess=0.7.0=pyhd3deb0d_0 + - pure_eval=0.2.2=pyhd8ed1ab_0 + - py=1.11.0=pyh6c4a22f_0 + - pybind11-global=2.11.1=py39hd16970a_2 + - pycodestyle=2.11.1=pyhd8ed1ab_0 + - pycparser=2.21=pyhd8ed1ab_0 + - pygments=2.17.2=pyhd8ed1ab_0 + - pylev=1.4.0=pyhd8ed1ab_0 + - pyparsing=3.1.1=pyhd8ed1ab_0 + - pyrsistent=0.20.0=py39h7cc1d5f_0 + - pysocks=1.7.1=pyha2e5f31_6 + - pyspellchecker=0.7.2=pyhd8ed1ab_0 + - python-fastjsonschema=2.19.0=pyhd8ed1ab_0 + - python-json-logger=2.0.7=pyhd8ed1ab_0 + - python-lrcalc=2.1=py39h3d8bfb9_5 + - python-tzdata=2023.3=pyhd8ed1ab_0 + - pytz=2023.3.post1=pyhd8ed1ab_0 + - pyyaml=6.0.1=py39h898b7ef_1 + - pyzmq=25.1.2=py39hbab03a2_0 + - rfc3986-validator=0.1.1=pyh9f0ad1d_0 + - rpds-py=0.15.2=py39hfe8b3a4_0 + - ruamel.yaml.clib=0.2.7=py39h898b7ef_2 + - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 + - sagetex=3.6.1=pyhd8ed1ab_0 + - send2trash=1.8.2=pyh41d4057_0 + - setuptools=68.2.2=pyhd8ed1ab_0 + - simplegeneric=0.8.1=py_1 + - singular=4.3.2.p8=hbe76a8a_1 + - six=1.16.0=pyh6c4a22f_0 + - smmap=5.0.0=pyhd8ed1ab_0 + - sniffio=1.3.0=pyhd8ed1ab_0 + - snowballstemmer=2.2.0=pyhd8ed1ab_0 + - soupsieve=2.5=pyhd8ed1ab_1 + - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_0 + - sympow=2.023.6=h157afb5_3 + - tbb=2021.9.0=h4c384f3_0 + - tomli=2.0.1=pyhd8ed1ab_0 + - tomlkit=0.12.3=pyha770c72_0 + - toolz=0.12.0=pyhd8ed1ab_0 + - tornado=6.3.3=py39h7cc1d5f_1 + - traitlets=5.14.0=pyhd8ed1ab_0 + - trove-classifiers=2023.11.29=pyhd8ed1ab_0 + - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 + - typing_extensions=4.9.0=pyha770c72_0 + - typing_utils=0.1.0=pyhd8ed1ab_0 + - tzlocal=5.2=py39h4420490_0 + - unicodedata2=15.1.0=py39h898b7ef_0 + - uri-template=1.3.0=pyhd8ed1ab_0 + - wcwidth=0.2.12=pyhd8ed1ab_0 + - webcolors=1.13=pyhd8ed1ab_0 + - webencodings=0.5.1=pyhd8ed1ab_2 + - websocket-client=1.7.0=pyhd8ed1ab_0 + - 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.2.0=pyhd8ed1ab_0 + - asttokens=2.4.1=pyhd8ed1ab_0 + - async-lru=2.0.4=pyhd8ed1ab_0 + - babel=2.14.0=pyhd8ed1ab_0 + - beautifulsoup4=4.12.2=pyha770c72_0 + - beniget=0.4.1=pyhd8ed1ab_0 + - bleach=6.1.0=pyhd8ed1ab_0 + - brial=1.2.12=pyh694c41f_1 + - cached-property=1.5.2=hd8ed1ab_1 + - cairo=1.16.0=hd19fb6e_1014 + - cffi=1.16.0=py39hdf53b9e_0 + - click-default-group=1.2.4=pyhd8ed1ab_0 + - clikit=0.6.2=pyhd8ed1ab_2 + - cmake=3.26.4=hef020d8_0 + - comm=0.1.4=pyhd8ed1ab_0 + - cppy=1.2.1=pyhd8ed1ab_0 + - curl=8.1.2=hc34909b_0 + - cxx-compiler=1.6.0=h2a328a1_0 + - cypari2=2.1.3=py39h532d932_2 + - deprecation=2.1.0=pyh9f0ad1d_0 + - fonttools=4.47.0=py39h898b7ef_0 + - fortran-compiler=1.6.0=h7048d53_0 + - gitdb=4.0.11=pyhd8ed1ab_0 + - html5lib=1.1=pyh9f0ad1d_0 + - importlib-metadata=7.0.0=pyha770c72_0 + - importlib_resources=6.1.1=pyhd8ed1ab_0 + - jaraco.classes=3.3.0=pyhd8ed1ab_0 + - jedi=0.19.1=pyhd8ed1ab_0 + - jinja2=3.1.2=pyhd8ed1ab_1 + - jupyter_core=5.5.1=py39h4420490_0 + - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 + - 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 + - openssh=9.3p1=hf616e62_1 + - overrides=7.4.0=pyhd8ed1ab_0 + - pexpect=4.8.0=pyh1a96a4e_2 + - pillow=9.4.0=py39h72365ce_1 + - pip=23.3.2=pyhd8ed1ab_0 + - pplpy=0.8.9=py39h087fc0e_0 + - primecountpy=0.1.0=py39hd16970a_3 + - prompt-toolkit=3.0.42=pyha770c72_0 + - pybind11=2.11.1=py39hd16970a_2 + - pyproject-api=1.6.1=pyhd8ed1ab_0 + - pytest=7.4.3=pyhd8ed1ab_0 + - python-dateutil=2.8.2=pyhd8ed1ab_0 + - pytz-deprecation-shim=0.1.0.post0=py39h4420490_4 + - referencing=0.32.0=pyhd8ed1ab_0 + - rfc3339-validator=0.1.4=pyhd8ed1ab_0 + - ruamel.yaml=0.18.5=py39h898b7ef_0 + - sympy=1.12=pypyh9d50eac_103 + - terminado=0.18.0=pyh0d859eb_0 + - tinycss2=1.2.1=pyhd8ed1ab_0 + - typing-extensions=4.9.0=hd8ed1ab_0 + - urllib3=1.26.18=pyhd8ed1ab_0 + - virtualenv=20.25.0=pyhd8ed1ab_0 + - xorg-libxi=1.7.10=h3557bc0_0 + - annotated-types=0.6.0=pyhd8ed1ab_0 + - argon2-cffi-bindings=21.2.0=py39h898b7ef_4 + - arpack=3.7.0=hf862f49_2 + - arrow=1.3.0=pyhd8ed1ab_0 + - cattrs=23.2.3=pyhd8ed1ab_0 + - compilers=1.6.0=h8af1aa0_0 + - cryptography=41.0.7=py39h58638f2_1 + - dsdp=5.8=hb12102e_1203 + - fflas-ffpack=2.4.3=hf104d39_2 + - fqdn=1.5.1=pyhd8ed1ab_0 + - git=2.42.0=pl5321h0d979e1_0 + - gitpython=3.1.40=pyhd8ed1ab_0 + - gsl=2.7=h294027d_0 + - harfbuzz=6.0.0=hbcb8a4f_0 + - hatchling=1.21.0=pyhd8ed1ab_0 + - iml=1.0.5=h9076c59_1003 + - importlib-resources=6.1.1=pyhd8ed1ab_0 + - importlib_metadata=7.0.0=hd8ed1ab_0 + - jsonschema-specifications=2023.11.2=pyhd8ed1ab_0 + - jupyter_server_terminals=0.5.0=pyhd8ed1ab_0 + - liblapacke=3.9.0=20_linuxaarch64_openblas + - numpy=1.26.2=py39h91c28bb_0 + - prompt_toolkit=3.0.42=hd8ed1ab_0 + - pydantic-core=2.14.5=py39hf916c31_0 + - pytest-xdist=3.5.0=pyhd8ed1ab_0 + - requests=2.31.0=pyhd8ed1ab_0 + - setuptools-scm=8.0.4=pyhd8ed1ab_0 + - stack_data=0.6.2=pyhd8ed1ab_0 + - suitesparse=5.10.1=h1404dd6_1 + - xorg-libxtst=1.2.3=hf897c2e_1002 + - argon2-cffi=23.1.0=pyhd8ed1ab_0 + - blas-devel=3.9.0=20_linuxaarch64_openblas + - cachecontrol=0.13.1=pyhd8ed1ab_0 + - contourpy=1.2.0=py39hd16970a_0 + - cvxopt=1.3.2=py39h9d7d0b6_1 + - ensureconda=1.4.3=pyhd8ed1ab_0 + - fpylll=0.6.0=py39h97065f7_1 + - giac=1.9.0.21=h04922a4_1 + - igraph=0.9.10=hefb87a8_1 + - ipython=8.18.1=pyh707e725_3 + - isoduration=20.11.0=pyhd8ed1ab_0 + - jsonschema=4.20.0=pyhd8ed1ab_0 + - jupyter_client=8.6.0=pyhd8ed1ab_0 + - linbox=1.6.3=h681a5ee_8 + - lsprotocol=2023.0.0=pyhd8ed1ab_0 + - openjdk=17.0.3=h1a274e0_5 + - pango=1.50.14=h1f1e9b3_0 + - pydantic=2.5.2=pyhd8ed1ab_0 + - pythran=0.14.0=py39hc2250db_1 + - scipy=1.11.3=py39h91c28bb_1 + - secretstorage=3.3.3=py39ha65689a_2 + - setuptools_scm=8.0.4=hd8ed1ab_0 + - tox=4.11.4=pyhd8ed1ab_0 + - blas=2.120=openblas + - cachecontrol-with-filecache=0.13.1=pyhd8ed1ab_0 + - ipykernel=6.26.0=pyhf8b6a83_0 + - ipywidgets=8.1.1=pyhd8ed1ab_0 + - jmol=14.32.10=h8af1aa0_0 + - jsonschema-with-format-nongpl=4.20.0=pyhd8ed1ab_0 + - keyring=24.3.0=py39h4420490_0 + - matplotlib-base=3.8.2=py39h8e43113_0 + - nbformat=5.9.2=pyhd8ed1ab_0 + - pygls=1.2.1=pyhd8ed1ab_0 + - r-base=4.2.3=h620ca72_0 + - rw=0.9=hf897c2e_0 + - conda-lock=2.5.1=pyhd8ed1ab_0 + - ipympl=0.9.3=pyhd8ed1ab_0 + - jupyter-jsmol=2022.1.0=pyhd8ed1ab_0 + - jupyter_events=0.9.0=pyhd8ed1ab_0 + - matplotlib=3.8.2=py39ha65689a_0 + - nbclient=0.8.0=pyhd8ed1ab_0 + - rpy2=3.5.11=py39r42h1ae4408_3 + - nbconvert-core=7.13.0=pyhd8ed1ab_0 + - jupyter_server=2.12.1=pyhd8ed1ab_0 + - nbconvert-pandoc=7.13.0=pyhd8ed1ab_0 + - jupyter-lsp=2.2.1=pyhd8ed1ab_0 + - jupyterlab_server=2.25.2=pyhd8ed1ab_0 + - nbconvert=7.13.0=pyhd8ed1ab_0 + - notebook-shim=0.2.3=pyhd8ed1ab_0 + - jupyterlab=4.0.9=pyhd8ed1ab_0 + - notebook=7.0.6=pyhd8ed1ab_0 + - esbonio=0.16.3=pyhd8ed1ab_0 + - jupyter_sphinx=0.1.4=py_0 + - 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 new file mode 100644 index 00000000000..6da40a4af0c --- /dev/null +++ b/src/environment-dev-3.9-linux.yml @@ -0,0 +1,512 @@ +# Generated by conda-lock. +# platform: linux-64 +# input_hash: 8228c70c3f4709e6768e87980d54e76c4e66183c854327691d173d864f96b80a + +channels: + - conda-forge +dependencies: + - _libgcc_mutex=0.1=conda_forge + - _r-mutex=1.0.1=anacondar_1 + - 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=h77eed37_1 + - 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.84.0=ha770c72_0 + - libgcc-devel_linux-64=12.3.0=h8bca6fd_103 + - libstdcxx-devel_linux-64=12.3.0=h8bca6fd_103 + - libstdcxx-ng=13.2.0=h7e041cc_3 + - mathjax=3.2.2=ha770c72_0 + - 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 + - libgomp=13.2.0=h807b86a_3 + - 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_2 + - _openmp_mutex=4.5=2_kmp_llvm + - libgcc-ng=13.2.0=h807b86a_3 + - alsa-lib=1.2.10=hd590300_0 + - attr=2.5.1=h166bdaf_1 + - bc=1.07.1=h7f98852_0 + - bdw-gc=8.0.6=h4bd325d_0 + - bzip2=1.0.8=hd590300_5 + - c-ares=1.24.0=hd590300_0 + - cliquer=1.22=h36c2ea0_0 + - fribidi=1.0.10=h36c2ea0_0 + - gengetopt=2.23=h9c3ff4c_0 + - gettext=0.21.1=h27087fc_0 + - gf2x=1.3.0=ha476b99_2 + - giflib=5.2.1=h0b41bf4_3 + - gmp=6.3.0=h59595ed_0 + - graphite2=1.3.13=h58526e2_1001 + - icu=73.2=h59595ed_0 + - keyutils=1.6.1=h166bdaf_0 + - lame=3.100=h166bdaf_1003 + - lerc=4.0.0=h27087fc_0 + - libatomic_ops=7.6.14=h166bdaf_0 + - libbraiding=1.2=hcb278e6_0 + - libbrotlicommon=1.1.0=hd590300_1 + - libcbor=0.10.2=hcb278e6_0 + - libdeflate=1.19=hd590300_0 + - libev=4.33=hd590300_2 + - libexpat=2.5.0=hcb278e6_1 + - libffi=3.4.2=h7f98852_5 + - libgfortran5=13.2.0=ha4646dd_3 + - libiconv=1.17=hd590300_2 + - libjpeg-turbo=3.0.0=hd590300_1 + - libnsl=2.0.1=hd590300_0 + - libogg=1.3.4=h7f98852_1 + - libopus=1.3.1=h7f98852_1 + - libsanitizer=12.3.0=h0f45ef3_3 + - libsodium=1.0.18=h36c2ea0_1 + - libtool=2.4.7=h27087fc_0 + - libuuid=2.38.1=h0b41bf4_0 + - libuv=1.46.0=hd590300_0 + - libwebp-base=1.3.2=hd590300_0 + - libzlib=1.2.13=hd590300_5 + - lrcalc=2.1=h27087fc_5 + - lz4-c=1.9.4=hcb278e6_0 + - m4=1.4.18=h516909a_1001 + - make=4.3=hd18ef5c_1 + - metis=5.1.1=h59595ed_2 + - mpg123=1.32.3=h59595ed_0 + - nauty=2.8.8=hd590300_0 + - ncurses=6.4=h59595ed_2 + - ninja=1.11.1=h924138e_0 + - nspr=4.35=h27087fc_0 + - openssl=3.2.0=hd590300_1 + - palp=2.20=h36c2ea0_0 + - patch=2.7.6=h7f98852_1002 + - pixman=0.42.2=h59595ed_0 + - pkg-config=0.29.2=h36c2ea0_1008 + - planarity=3.0.0.5=h36c2ea0_1002 + - primesieve=11.1=h59595ed_0 + - pthread-stubs=0.4=h36c2ea0_1001 + - qhull=2020.2=h4bd325d_2 + - rhash=1.4.4=hd590300_0 + - sed=4.8=he412f7d_0 + - symmetrica=3.0.1=hcb278e6_0 + - xorg-inputproto=2.3.2=h7f98852_1002 + - xorg-kbproto=1.0.7=h7f98852_1002 + - xorg-libice=1.1.1=hd590300_0 + - xorg-libxau=1.0.11=hd590300_0 + - xorg-libxdmcp=1.1.3=h7f98852_0 + - xorg-recordproto=1.14.2=h7f98852_1002 + - xorg-renderproto=0.11.1=h7f98852_1002 + - xorg-xextproto=7.3.0=h0b41bf4_1003 + - xorg-xf86vidmodeproto=2.3.1=h7f98852_1002 + - xorg-xproto=7.0.31=h7f98852_1007 + - xz=5.2.6=h166bdaf_0 + - yaml=0.2.5=h7f98852_2 + - cddlib=1!0.94m=h9202a9a_0 + - ecm=7.0.4=h9202a9a_1002 + - expat=2.5.0=hcb278e6_1 + - gcc_impl_linux-64=12.3.0=he2b93b0_3 + - givaro=4.1.1=h192cbe9_1 + - glpk=5.0=h445213a_0 + - libbrotlidec=1.1.0=hd590300_1 + - libbrotlienc=1.1.0=hd590300_1 + - libcap=2.69=h0f662aa_0 + - libedit=3.1.20191231=he28a2e2_2 + - libevent=2.1.12=hf998b51_1 + - libflac=1.4.3=h59595ed_0 + - libgfortran-ng=13.2.0=h69a702a_3 + - libgpg-error=1.47=h71f35ed_0 + - libhomfly=1.02r6=h36c2ea0_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 + - libvorbis=1.3.7=h9c3ff4c_0 + - libxcb=1.15=h0b41bf4_0 + - 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.42=hcad00b1_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.13=noxft_h4845f30_101 + - xorg-fixesproto=5.0=h7f98852_1002 + - xorg-libsm=1.2.4=h7391055_0 + - zeromq=4.3.5=h59595ed_0 + - zlib=1.2.13=hd590300_5 + - zstd=1.5.5=hfc55251_0 + - autoconf=2.71=pl5321h2b4cb7a_1 + - brotli-bin=1.1.0=hd590300_1 + - bwidget=1.9.14=ha770c72_1 + - ecl=21.2.1=h9d73b02_2 + - fftw=3.3.10=nompi_hc118613_108 + - freetype=2.12.1=h267a509_2 + - gap-core=4.12.2=he9a28a4_3 + - gcc=12.3.0=h8d2909c_2 + - gcc_linux-64=12.3.0=h76fc315_2 + - gfan=0.6.2=hb86e20a_1003 + - gfortran_impl_linux-64=12.3.0=hfcedea8_3 + - gxx_impl_linux-64=12.3.0=he2b93b0_3 + - krb5=1.21.2=h659d440_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 + - libhwloc=2.9.3=default_h554bfaf_1009 + - libllvm15=15.0.7=h5cf9203_3 + - libopenblas=0.3.25=pthreads_h413a1c8_0 + - libsndfile=1.2.2=hc60ed4a_1 + - libtiff=4.6.0=ha9c0a0a_2 + - libudev1=255=h3f72095_0 + - llvm-openmp=17.0.6=h4dfa4b3_0 + - m4ri=20140914=h7ca028e_1005 + - mpc=1.3.1=hfe3b2da_0 + - mpfi=1.5.4=h9f54685_1001 + - mysql-libs=8.0.33=hca2cd23_6 + - nss=3.96=h1d7d5a4_0 + - pandoc=3.1.3=h32600fe_0 + - pari=2.15.4=h4d4ae9b_2_pthread + - ppl=1.2=h6ec01c2_1006 + - python=3.9.18=h0755675_0_cpython + - qd=2.3.22=h2cc385e_1004 + - sqlite=3.44.2=h2c6b66d_0 + - tachyon=0.99b6=0 + - texinfo=7.0=pl5321h0f457ee_0 + - tktable=2.10=h0c5db8f_5 + - xcb-util=0.4.0=hd590300_1 + - xcb-util-keysyms=0.4.0=h8ee46fc_1 + - xcb-util-renderutil=0.3.9=hd590300_1 + - xcb-util-wm=0.4.1=h8ee46fc_1 + - xorg-libx11=1.8.7=h8ee46fc_0 + - alabaster=0.7.13=pyhd8ed1ab_0 + - appdirs=1.4.4=pyh9f0ad1d_0 + - appnope=0.1.3=pyhd8ed1ab_0 + - attrs=23.1.0=pyh71513ae_1 + - automake=1.16.5=pl5321ha770c72_0 + - brotli=1.1.0=hd590300_1 + - brotli-python=1.1.0=py39h3d6467e_1 + - c-compiler=1.6.0=hd590300_0 + - cached_property=1.5.2=pyha770c72_1 + - cachetools=5.3.2=pyhd8ed1ab_0 + - 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 + - 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.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.8=pyhd8ed1ab_0 + - docutils=0.20.1=py39hf3d152e_3 + - eclib=20231211=h96f522a_0 + - editables=0.3=pyhd8ed1ab_0 + - entrypoints=0.4=pyhd8ed1ab_0 + - exceptiongroup=1.2.0=pyhd8ed1ab_0 + - execnet=2.0.2=pyhd8ed1ab_0 + - executing=2.0.1=pyhd8ed1ab_0 + - filelock=3.13.1=pyhd8ed1ab_0 + - flit-core=3.9.0=pyhd8ed1ab_0 + - fontconfig=2.14.2=h14ed4e7_0 + - fplll=5.4.5=h384768b_0 + - gap-defaults=4.12.2=ha770c72_3 + - gast=0.5.4=pyhd8ed1ab_0 + - gfortran=12.3.0=h499e0f7_2 + - gfortran_linux-64=12.3.0=h7fe76b4_2 + - glib-tools=2.78.3=hfc55251_0 + - gmpy2=2.1.2=py39h376b7d2_1 + - gxx=12.3.0=h8d2909c_2 + - gxx_linux-64=12.3.0=h8a814eb_2 + - idna=3.6=pyhd8ed1ab_0 + - imagesize=1.4.1=pyhd8ed1ab_0 + - iniconfig=2.0.0=pyhd8ed1ab_0 + - ipython_genutils=0.2.0=py_1 + - jeepney=0.8.0=pyhd8ed1ab_0 + - json5=0.9.14=pyhd8ed1ab_0 + - jsonpointer=2.4=py39hf3d152e_3 + - jupyterlab_widgets=3.0.9=pyhd8ed1ab_0 + - kiwisolver=1.4.5=py39h7633fee_1 + - lcalc=2.0.5=h6a8a7c6_1 + - lcms2=2.16=hb7c19ff_0 + - libblas=3.9.0=20_linux64_openblas + - libboost-devel=1.84.0=h00ab1b0_0 + - libbrial=1.2.12=h3155cbd_1 + - libclang13=15.0.7=default_ha2b6cf4_4 + - libcups=2.3.3=h4637d8d_4 + - libcurl=8.5.0=hca28451_0 + - libfido2=1.14.0=h4446dcb_0 + - libpq=16.1=h33b98f1_7 + - libsystemd0=255=h3516f8a_0 + - libwebp=1.3.2=h658648e_1 + - m4rie=20150908=h7ca028e_1001 + - markupsafe=2.1.3=py39hd1e30aa_1 + - maxima=5.47.0=hed6455c_1 + - mistune=3.0.2=pyhd8ed1ab_0 + - more-itertools=10.1.0=pyhd8ed1ab_0 + - mpmath=1.3.0=pyhd8ed1ab_0 + - msgpack-python=1.0.7=py39h7633fee_0 + - munkres=1.1.4=pyh9f0ad1d_0 + - nest-asyncio=1.5.8=pyhd8ed1ab_0 + - networkx=3.2.1=pyhd8ed1ab_0 + - openblas=0.3.25=pthreads_h7a3da1a_0 + - openjpeg=2.5.0=h488ebb8_3 + - packaging=23.2=pyhd8ed1ab_0 + - pandocfilters=1.5.0=pyhd8ed1ab_0 + - parso=0.8.3=pyhd8ed1ab_0 + - pastel=0.2.1=pyhd8ed1ab_0 + - pathspec=0.12.1=pyhd8ed1ab_0 + - pickleshare=0.7.5=py_1003 + - pkgconfig=1.5.5=pyhd8ed1ab_4 + - pkginfo=1.9.6=pyhd8ed1ab_0 + - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 + - platformdirs=4.1.0=pyhd8ed1ab_0 + - pluggy=1.3.0=pyhd8ed1ab_0 + - ply=3.11=py_1 + - prometheus_client=0.19.0=pyhd8ed1ab_0 + - psutil=5.9.7=py39hd1e30aa_0 + - ptyprocess=0.7.0=pyhd3deb0d_0 + - pure_eval=0.2.2=pyhd8ed1ab_0 + - py=1.11.0=pyh6c4a22f_0 + - pybind11-global=2.11.1=py39h7633fee_2 + - pycodestyle=2.11.1=pyhd8ed1ab_0 + - pycparser=2.21=pyhd8ed1ab_0 + - pygments=2.17.2=pyhd8ed1ab_0 + - pylev=1.4.0=pyhd8ed1ab_0 + - pyparsing=3.1.1=pyhd8ed1ab_0 + - pyrsistent=0.20.0=py39hd1e30aa_0 + - pysocks=1.7.1=pyha2e5f31_6 + - pyspellchecker=0.7.2=pyhd8ed1ab_0 + - python-fastjsonschema=2.19.0=pyhd8ed1ab_0 + - python-json-logger=2.0.7=pyhd8ed1ab_0 + - python-lrcalc=2.1=py39h5a03fae_5 + - python-tzdata=2023.3=pyhd8ed1ab_0 + - pytz=2023.3.post1=pyhd8ed1ab_0 + - pyyaml=6.0.1=py39hd1e30aa_1 + - pyzmq=25.1.2=py39h8c080ef_0 + - rfc3986-validator=0.1.1=pyh9f0ad1d_0 + - rpds-py=0.15.2=py39h9fdd4d6_0 + - ruamel.yaml.clib=0.2.7=py39hd1e30aa_2 + - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 + - sagetex=3.6.1=pyhd8ed1ab_0 + - send2trash=1.8.2=pyh41d4057_0 + - setuptools=68.2.2=pyhd8ed1ab_0 + - simplegeneric=0.8.1=py_1 + - singular=4.3.2.p8=h33f5c3f_1 + - six=1.16.0=pyh6c4a22f_0 + - smmap=5.0.0=pyhd8ed1ab_0 + - sniffio=1.3.0=pyhd8ed1ab_0 + - snowballstemmer=2.2.0=pyhd8ed1ab_0 + - soupsieve=2.5=pyhd8ed1ab_1 + - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_0 + - sympow=2.023.6=hc6ab17c_3 + - tbb=2021.11.0=h00ab1b0_0 + - toml=0.10.2=pyhd8ed1ab_0 + - tomli=2.0.1=pyhd8ed1ab_0 + - tomlkit=0.12.3=pyha770c72_0 + - toolz=0.12.0=pyhd8ed1ab_0 + - tornado=6.3.3=py39hd1e30aa_1 + - traitlets=5.14.0=pyhd8ed1ab_0 + - trove-classifiers=2023.11.29=pyhd8ed1ab_0 + - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 + - typing_extensions=4.9.0=pyha770c72_0 + - typing_utils=0.1.0=pyhd8ed1ab_0 + - tzlocal=5.2=py39hf3d152e_0 + - unicodedata2=15.1.0=py39hd1e30aa_0 + - uri-template=1.3.0=pyhd8ed1ab_0 + - wcwidth=0.2.12=pyhd8ed1ab_0 + - webcolors=1.13=pyhd8ed1ab_0 + - webencodings=0.5.1=pyhd8ed1ab_2 + - websocket-client=1.7.0=pyhd8ed1ab_0 + - wheel=0.42.0=pyhd8ed1ab_0 + - widgetsnbextension=4.0.9=pyhd8ed1ab_0 + - xcb-util-image=0.4.0=h8ee46fc_1 + - xkeyboard-config=2.40=hd590300_0 + - xorg-libxext=1.3.4=h0b41bf4_2 + - xorg-libxfixes=5.0.3=h7f98852_1004 + - xorg-libxrender=0.9.11=hd590300_0 + - xorg-libxt=1.3.0=hd590300_1 + - zipp=3.17.0=pyhd8ed1ab_0 + - anyio=4.2.0=pyhd8ed1ab_0 + - asttokens=2.4.1=pyhd8ed1ab_0 + - async-lru=2.0.4=pyhd8ed1ab_0 + - babel=2.14.0=pyhd8ed1ab_0 + - beautifulsoup4=4.12.2=pyha770c72_0 + - beniget=0.4.1=pyhd8ed1ab_0 + - bleach=6.1.0=pyhd8ed1ab_0 + - boost-cpp=1.84.0=h44aadfe_0 + - brial=1.2.12=pyh694c41f_1 + - cached-property=1.5.2=hd8ed1ab_1 + - cairo=1.18.0=h3faef2a_0 + - cffi=1.16.0=py39h7a31438_0 + - click-default-group=1.2.4=pyhd8ed1ab_0 + - clikit=0.6.2=pyhd8ed1ab_2 + - cmake=3.28.1=hcfe8598_0 + - comm=0.1.4=pyhd8ed1ab_0 + - cppy=1.2.1=pyhd8ed1ab_0 + - curl=8.5.0=hca28451_0 + - cxx-compiler=1.6.0=h00ab1b0_0 + - cypari2=2.1.3=py39h1698a45_2 + - deprecation=2.1.0=pyh9f0ad1d_0 + - fonttools=4.47.0=py39hd1e30aa_0 + - fortran-compiler=1.6.0=heb67821_0 + - gitdb=4.0.11=pyhd8ed1ab_0 + - glib=2.78.3=hfc55251_0 + - html5lib=1.1=pyh9f0ad1d_0 + - importlib-metadata=7.0.0=pyha770c72_0 + - importlib_resources=6.1.1=pyhd8ed1ab_0 + - jaraco.classes=3.3.0=pyhd8ed1ab_0 + - jedi=0.19.1=pyhd8ed1ab_0 + - jinja2=3.1.2=pyhd8ed1ab_1 + - jupyter_core=5.5.1=py39hf3d152e_0 + - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 + - libcblas=3.9.0=20_linux64_openblas + - libclang=15.0.7=default_hb11cfb5_4 + - libgd=2.3.3=h119a65a_9 + - liblapack=3.9.0=20_linux64_openblas + - libxkbcommon=1.6.0=h5d7e998_0 + - matplotlib-inline=0.1.6=pyhd8ed1ab_0 + - memory-allocator=0.1.3=py39hd1e30aa_0 + - openssh=9.3p1=h2d3b35a_2 + - overrides=7.4.0=pyhd8ed1ab_0 + - pexpect=4.8.0=pyh1a96a4e_2 + - pillow=10.1.0=py39had0adad_0 + - pip=23.3.2=pyhd8ed1ab_0 + - pplpy=0.8.9=py39hba3e9e5_0 + - primecountpy=0.1.0=py39h7633fee_4 + - prompt-toolkit=3.0.42=pyha770c72_0 + - pulseaudio-client=16.1=hb77b528_5 + - pybind11=2.11.1=py39h7633fee_2 + - pyproject-api=1.6.1=pyhd8ed1ab_0 + - pytest=7.4.3=pyhd8ed1ab_0 + - python-dateutil=2.8.2=pyhd8ed1ab_0 + - pytz-deprecation-shim=0.1.0.post0=py39hf3d152e_4 + - referencing=0.32.0=pyhd8ed1ab_0 + - rfc3339-validator=0.1.4=pyhd8ed1ab_0 + - ruamel.yaml=0.18.5=py39hd1e30aa_0 + - sip=6.7.12=py39h3d6467e_0 + - sympy=1.12=pypyh9d50eac_103 + - terminado=0.18.0=pyh0d859eb_0 + - tinycss2=1.2.1=pyhd8ed1ab_0 + - typing-extensions=4.9.0=hd8ed1ab_0 + - urllib3=1.26.18=pyhd8ed1ab_0 + - virtualenv=20.25.0=pyhd8ed1ab_0 + - xorg-libxi=1.7.10=h7f98852_0 + - annotated-types=0.6.0=pyhd8ed1ab_0 + - argon2-cffi-bindings=21.2.0=py39hd1e30aa_4 + - arpack=3.8.0=nompi_h0baa96a_101 + - arrow=1.3.0=pyhd8ed1ab_0 + - cattrs=23.2.3=pyhd8ed1ab_0 + - compilers=1.6.0=ha770c72_0 + - cryptography=41.0.7=py39he6105cc_1 + - dsdp=5.8=hd9d9efa_1203 + - fflas-ffpack=2.4.3=h912ac81_2 + - fqdn=1.5.1=pyhd8ed1ab_0 + - git=2.43.0=pl5321h7bc287a_0 + - gitpython=3.1.40=pyhd8ed1ab_0 + - gsl=2.7=he838d99_0 + - gstreamer=1.22.8=h98fc4e7_0 + - harfbuzz=8.3.0=h3d44ed6_0 + - hatchling=1.21.0=pyhd8ed1ab_0 + - iml=1.0.5=hd75c201_1003 + - importlib-resources=6.1.1=pyhd8ed1ab_0 + - importlib_metadata=7.0.0=hd8ed1ab_0 + - jsonschema-specifications=2023.11.2=pyhd8ed1ab_0 + - jupyter_server_terminals=0.5.0=pyhd8ed1ab_0 + - liblapacke=3.9.0=20_linux64_openblas + - numpy=1.26.2=py39h474f0d3_0 + - prompt_toolkit=3.0.42=hd8ed1ab_0 + - pydantic-core=2.14.5=py39h9fdd4d6_0 + - pyqt5-sip=12.12.2=py39h3d6467e_5 + - pytest-xdist=3.5.0=pyhd8ed1ab_0 + - requests=2.31.0=pyhd8ed1ab_0 + - setuptools-scm=8.0.4=pyhd8ed1ab_0 + - stack_data=0.6.2=pyhd8ed1ab_0 + - suitesparse=5.10.1=h3ec001c_2 + - xorg-libxtst=1.2.3=h7f98852_1002 + - argon2-cffi=23.1.0=pyhd8ed1ab_0 + - blas-devel=3.9.0=20_linux64_openblas + - cachecontrol=0.13.1=pyhd8ed1ab_0 + - contourpy=1.2.0=py39h7633fee_0 + - cvxopt=1.3.2=py39hef4d4b4_1 + - ensureconda=1.4.3=pyhd8ed1ab_0 + - fpylll=0.6.0=py39h2525e16_1 + - giac=1.9.0.21=h673759e_1 + - gst-plugins-base=1.22.8=h8e1006c_0 + - igraph=0.10.8=h66a01bf_0 + - ipython=8.18.1=pyh707e725_3 + - isoduration=20.11.0=pyhd8ed1ab_0 + - jsonschema=4.20.0=pyhd8ed1ab_0 + - jupyter_client=8.6.0=pyhd8ed1ab_0 + - linbox=1.6.3=ha329b40_8 + - lsprotocol=2023.0.0=pyhd8ed1ab_0 + - openjdk=21.0.1=haa376d0_0 + - pango=1.50.14=ha41ecd1_2 + - pydantic=2.5.2=pyhd8ed1ab_0 + - pythran=0.14.0=py39hda80f44_1 + - scipy=1.11.4=py39h474f0d3_0 + - secretstorage=3.3.3=py39hf3d152e_2 + - setuptools_scm=8.0.4=hd8ed1ab_0 + - tox=4.11.4=pyhd8ed1ab_0 + - blas=2.120=openblas + - cachecontrol-with-filecache=0.13.1=pyhd8ed1ab_0 + - ipykernel=6.26.0=pyhf8b6a83_0 + - ipywidgets=8.1.1=pyhd8ed1ab_0 + - jmol=14.32.10=ha770c72_0 + - jsonschema-with-format-nongpl=4.20.0=pyhd8ed1ab_0 + - keyring=24.3.0=py39hf3d152e_0 + - matplotlib-base=3.8.2=py39he9076e7_0 + - nbformat=5.9.2=pyhd8ed1ab_0 + - pygls=1.2.1=pyhd8ed1ab_0 + - qt-main=5.15.8=h82b777d_17 + - r-base=4.3.2=hb8ee39d_1 + - rw=0.9=hd590300_1 + - conda-lock=2.5.1=pyhd8ed1ab_0 + - ipympl=0.9.3=pyhd8ed1ab_0 + - jupyter-jsmol=2022.1.0=pyhd8ed1ab_0 + - jupyter_events=0.9.0=pyhd8ed1ab_0 + - nbclient=0.8.0=pyhd8ed1ab_0 + - pyqt=5.15.9=py39h52134e7_5 + - rpy2=3.5.11=py39r43h44dd56e_3 + - matplotlib=3.8.2=py39hf3d152e_0 + - nbconvert-core=7.13.0=pyhd8ed1ab_0 + - jupyter_server=2.12.1=pyhd8ed1ab_0 + - nbconvert-pandoc=7.13.0=pyhd8ed1ab_0 + - jupyter-lsp=2.2.1=pyhd8ed1ab_0 + - jupyterlab_server=2.25.2=pyhd8ed1ab_0 + - nbconvert=7.13.0=pyhd8ed1ab_0 + - notebook-shim=0.2.3=pyhd8ed1ab_0 + - jupyterlab=4.0.9=pyhd8ed1ab_0 + - notebook=7.0.6=pyhd8ed1ab_0 + - esbonio=0.16.3=pyhd8ed1ab_0 + - jupyter_sphinx=0.4.0=py39hf3d152e_1 + - sphinx-basic-ng=1.0.0b2=pyhd8ed1ab_1 + - furo=2023.9.10=pyhd8ed1ab_0 + - sphinx-copybutton=0.5.2=pyhd8ed1ab_0 + - sphinxcontrib-applehelp=1.0.7=pyhd8ed1ab_0 + - sphinxcontrib-devhelp=1.0.5=pyhd8ed1ab_0 + - sphinxcontrib-htmlhelp=2.0.4=pyhd8ed1ab_0 + - sphinxcontrib-qthelp=1.0.6=pyhd8ed1ab_0 + - 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-arm64.yml b/src/environment-dev-3.9-macos-arm64.yml new file mode 100644 index 00000000000..df36d72fe93 --- /dev/null +++ b/src/environment-dev-3.9-macos-arm64.yml @@ -0,0 +1,444 @@ +# Generated by conda-lock. +# platform: osx-arm64 +# input_hash: 0048aada15edee17d798a7bb4c2443c62747b86e759ca3f37153d5ef80efc852 + +channels: + - conda-forge +dependencies: + - _r-mutex=1.0.1=anacondar_1 + - bc=1.07.1=h3422bc3_0 + - bzip2=1.0.8=h93a5062_5 + - c-ares=1.24.0=h93a5062_0 + - ca-certificates=2023.11.17=hf0a4a13_0 + - cliquer=1.22=h27ca646_0 + - font-ttf-dejavu-sans-mono=2.37=hab24e00_0 + - font-ttf-inconsolata=3.000=h77eed37_0 + - font-ttf-source-code-pro=2.038=h77eed37_0 + - font-ttf-ubuntu=0.83=h77eed37_1 + - fribidi=1.0.10=h27ca646_0 + - gh=2.40.1=h75b854d_0 + - giflib=5.2.1=h1a8c8d9_3 + - jpeg=9e=h1a8c8d9_3 + - libatomic_ops=7.6.14=h1a8c8d9_0 + - libbrotlicommon=1.1.0=hb547adb_1 + - libcxx=16.0.6=h4653b0c_0 + - libdeflate=1.17=h1a8c8d9_0 + - libev=4.33=h93a5062_2 + - libexpat=2.5.0=hb7217d7_1 + - libffi=3.4.2=h3422bc3_5 + - libgfortran-devel_osx-arm64=12.3.0=hc62be1c_1 + - libiconv=1.17=h0d3ecfb_2 + - 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.6=hcd81f8e_0 + - m4=1.4.18=h642e427_1001 + - make=4.3=he57ea6c_1 + - mathjax=3.2.2=hce30654_0 + - nauty=2.8.8=h93a5062_0 + - 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 + - tbb=2021.10.0=h1995070_2 + - 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.3.0=h965bd2d_0 + - graphite2=1.3.13=h9f76cd9_1001 + - icu=70.1=h6b3803e_0 + - isl=0.25=h9a09cb3_0 + - lerc=4.0.0=h9a09cb3_0 + - libbraiding=1.2=hb7217d7_0 + - libbrotlidec=1.1.0=hb547adb_1 + - libbrotlienc=1.1.0=hb547adb_1 + - libcbor=0.10.2=hb7217d7_0 + - libgfortran5=13.2.0=hf226fd6_1 + - libpng=1.6.39=h76d750c_0 + - libsqlite=3.44.2=h091b4b1_0 + - libxcb=1.13=h9b22ae9_1004 + - lrcalc=2.1=hb7217d7_5 + - metis=5.1.1=h965bd2d_2 + - ncurses=6.4=h463b476_2 + - ninja=1.11.1=hffc8910_0 + - openjdk=21.0.1=hed44d8b_0 + - openssl=3.2.0=h0d3ecfb_1 + - 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 + - symmetrica=3.0.1=hb7217d7_0 + - tapi=1100.0.11=he4954df_0 + - tar=1.34=h7cb298e_1 + - threejs-sage=122=hd8ed1ab_2 + - tk=8.6.13=h5083fa2_1 + - zeromq=4.3.5=h965bd2d_0 + - zlib=1.2.13=h53f4e23_5 + - zstd=1.5.5=h4f39d0f_0 + - automake=1.16.5=pl5321hce30654_0 + - boost-cpp=1.81.0=hf96b251_0 + - brotli-bin=1.1.0=hb547adb_1 + - bwidget=1.9.14=hce30654_1 + - cddlib=1!0.94m=h6d7a090_0 + - ecm=7.0.4=h47c7c1a_1002 + - fonts-conda-ecosystem=1=0 + - freetype=2.12.1=hadb7bae_2 + - givaro=4.1.1=h0cdca34_3 + - glpk=5.0=h6d7a090_0 + - jmol=14.32.10=hce30654_0 + - libedit=3.1.20191231=hc8eb9b7_2 + - libfido2=1.14.0=h8d15234_0 + - libgfortran=5.0.0=13_2_0_hd922786_1 + - libglib=2.78.1=hd9b11f9_0 + - libhomfly=1.02r6=h27ca646_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 + - m4ri=20140914=h17b34a0_1005 + - mpfr=4.2.1=h9546428_0 + - ntl=11.4.3=hbb3f309_1 + - primecount=7.6=hb6e4faa_0 + - readline=8.2=h92ec313_1 + - sigtool=0.1.3=h44b9a77_0 + - tachyon=0.99b6=hfb72b2a_1001 + - texinfo=7.0=pl5321h9ea1dce_0 + - tktable=2.10=hd996620_5 + - brotli=1.1.0=hb547adb_1 + - ecl=21.2.1=h8492d4d_2 + - fftw=3.3.10=nompi_h3046061_108 + - fontconfig=2.14.2=h82840c6_0 + - gap-core=4.12.2=he8f4e70_3 + - gfan=0.6.2=hec08f5c_1003 + - krb5=1.20.1=h69eda48_0 + - lcms2=2.15=h481adae_0 + - libbrial=1.2.12=ha7f5006_1 + - 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 + - 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 + - attrs=23.1.0=pyh71513ae_1 + - brial=1.2.12=pyh694c41f_1 + - brotli-python=1.1.0=py39hb198ff7_1 + - cached_property=1.5.2=pyha770c72_1 + - cachetools=5.3.2=pyhd8ed1ab_0 + - cachy=0.3.0=pyhd8ed1ab_1 + - cairo=1.16.0=h73a0509_1014 + - certifi=2023.11.17=pyhd8ed1ab_0 + - chardet=5.2.0=py39h2804cbe_1 + - 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.7=py39hf3050f2_0 + - debugpy=1.8.0=py39hb198ff7_1 + - decorator=5.1.1=pyhd8ed1ab_0 + - defusedxml=0.7.1=pyhd8ed1ab_0 + - distlib=0.3.8=pyhd8ed1ab_0 + - docutils=0.20.1=py39h2804cbe_3 + - eclib=20231211=h7f07de4_0 + - editables=0.3=pyhd8ed1ab_0 + - entrypoints=0.4=pyhd8ed1ab_0 + - exceptiongroup=1.2.0=pyhd8ed1ab_0 + - execnet=2.0.2=pyhd8ed1ab_0 + - executing=2.0.1=pyhd8ed1ab_0 + - filelock=3.13.1=pyhd8ed1ab_0 + - flit-core=3.9.0=pyhd8ed1ab_0 + - fplll=5.4.5=hb7d509d_0 + - gap-defaults=4.12.2=hce30654_3 + - gast=0.5.4=pyhd8ed1ab_0 + - gfortran_impl_osx-arm64=12.3.0=hbbb9e1e_1 + - gmpy2=2.1.2=py39h0b4f9c6_1 + - idna=3.6=pyhd8ed1ab_0 + - imagesize=1.4.1=pyhd8ed1ab_0 + - iniconfig=2.0.0=pyhd8ed1ab_0 + - ipython_genutils=0.2.0=py_1 + - json5=0.9.14=pyhd8ed1ab_0 + - jsonpointer=2.4=py39h2804cbe_3 + - jupyterlab_widgets=3.0.9=pyhd8ed1ab_0 + - kiwisolver=1.4.5=py39hbd775c9_1 + - lcalc=2.0.5=hc94e8e6_1 + - ld64_osx-arm64=609=hc4dc95b_15 + - libblas=3.9.0=20_osxarm64_openblas + - libclang-cpp15=15.0.7=default_hd209bcb_4 + - libcurl=8.1.2=h912dcd9_0 + - libgd=2.3.3=h90fb8ed_4 + - llvm-tools=15.0.7=h62b9111_1 + - markupsafe=2.1.3=py39h0f82c59_1 + - 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 + - openblas=0.3.25=openmp_h55c453e_0 + - openssh=9.3p1=h7126958_1 + - packaging=23.2=pyhd8ed1ab_0 + - pandocfilters=1.5.0=pyhd8ed1ab_0 + - parso=0.8.3=pyhd8ed1ab_0 + - pastel=0.2.1=pyhd8ed1ab_0 + - pathspec=0.12.1=pyhd8ed1ab_0 + - pickleshare=0.7.5=py_1003 + - pillow=9.4.0=py39h8bd98a6_1 + - pkgconfig=1.5.5=pyhd8ed1ab_4 + - pkginfo=1.9.6=pyhd8ed1ab_0 + - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 + - platformdirs=4.1.0=pyhd8ed1ab_0 + - pluggy=1.3.0=pyhd8ed1ab_0 + - ply=3.11=py_1 + - prometheus_client=0.19.0=pyhd8ed1ab_0 + - psutil=5.9.7=py39h17cfd9d_0 + - ptyprocess=0.7.0=pyhd3deb0d_0 + - pure_eval=0.2.2=pyhd8ed1ab_0 + - py=1.11.0=pyh6c4a22f_0 + - pybind11-global=2.11.1=py39hbd775c9_2 + - pycodestyle=2.11.1=pyhd8ed1ab_0 + - pycparser=2.21=pyhd8ed1ab_0 + - pygments=2.17.2=pyhd8ed1ab_0 + - pylev=1.4.0=pyhd8ed1ab_0 + - pyparsing=3.1.1=pyhd8ed1ab_0 + - pyrsistent=0.20.0=py39h17cfd9d_0 + - pysocks=1.7.1=pyha2e5f31_6 + - pyspellchecker=0.7.2=pyhd8ed1ab_0 + - python-fastjsonschema=2.19.0=pyhd8ed1ab_0 + - python-json-logger=2.0.7=pyhd8ed1ab_0 + - python-lrcalc=2.1=py39h23fbdae_5 + - python-tzdata=2023.3=pyhd8ed1ab_0 + - pytz=2023.3.post1=pyhd8ed1ab_0 + - pyyaml=6.0.1=py39h0f82c59_1 + - pyzmq=25.1.2=py39he1e2164_0 + - rfc3986-validator=0.1.1=pyh9f0ad1d_0 + - rpds-py=0.15.2=py39h8fec3ad_0 + - ruamel.yaml.clib=0.2.7=py39h0f82c59_2 + - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 + - sagetex=3.6.1=pyhd8ed1ab_0 + - setuptools=68.2.2=pyhd8ed1ab_0 + - simplegeneric=0.8.1=py_1 + - singular=4.3.2.p8=hb460b52_1 + - six=1.16.0=pyh6c4a22f_0 + - smmap=5.0.0=pyhd8ed1ab_0 + - sniffio=1.3.0=pyhd8ed1ab_0 + - snowballstemmer=2.2.0=pyhd8ed1ab_0 + - soupsieve=2.5=pyhd8ed1ab_1 + - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_0 + - sympow=2.023.6=hb0babe8_3 + - tomli=2.0.1=pyhd8ed1ab_0 + - tomlkit=0.12.3=pyha770c72_0 + - toolz=0.12.0=pyhd8ed1ab_0 + - tornado=6.3.3=py39h0f82c59_1 + - traitlets=5.14.0=pyhd8ed1ab_0 + - trove-classifiers=2023.11.29=pyhd8ed1ab_0 + - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 + - typing_extensions=4.9.0=pyha770c72_0 + - typing_utils=0.1.0=pyhd8ed1ab_0 + - tzlocal=5.2=py39h2804cbe_0 + - unicodedata2=15.1.0=py39h0f82c59_0 + - uri-template=1.3.0=pyhd8ed1ab_0 + - wcwidth=0.2.12=pyhd8ed1ab_0 + - webcolors=1.13=pyhd8ed1ab_0 + - webencodings=0.5.1=pyhd8ed1ab_2 + - websocket-client=1.7.0=pyhd8ed1ab_0 + - wheel=0.42.0=pyhd8ed1ab_0 + - widgetsnbextension=4.0.9=pyhd8ed1ab_0 + - zipp=3.17.0=pyhd8ed1ab_0 + - anyio=4.2.0=pyhd8ed1ab_0 + - asttokens=2.4.1=pyhd8ed1ab_0 + - async-lru=2.0.4=pyhd8ed1ab_0 + - babel=2.14.0=pyhd8ed1ab_0 + - beautifulsoup4=4.12.2=pyha770c72_0 + - beniget=0.4.1=pyhd8ed1ab_0 + - bleach=6.1.0=pyhd8ed1ab_0 + - cached-property=1.5.2=hd8ed1ab_1 + - cctools_osx-arm64=973.0.1=h2a25c60_15 + - cffi=1.16.0=py39he153c15_0 + - clang-15=15.0.7=default_hd209bcb_4 + - click-default-group=1.2.4=pyhd8ed1ab_0 + - clikit=0.6.2=pyhd8ed1ab_2 + - cmake=3.26.4=hc0af03a_0 + - comm=0.1.4=pyhd8ed1ab_0 + - cppy=1.2.1=pyhd8ed1ab_0 + - curl=8.1.2=h912dcd9_0 + - cypari2=2.1.3=py39h7462d2a_2 + - deprecation=2.1.0=pyh9f0ad1d_0 + - fonttools=4.47.0=py39h17cfd9d_0 + - gitdb=4.0.11=pyhd8ed1ab_0 + - harfbuzz=6.0.0=hddbc195_0 + - html5lib=1.1=pyh9f0ad1d_0 + - importlib-metadata=7.0.0=pyha770c72_0 + - importlib_resources=6.1.1=pyhd8ed1ab_0 + - jaraco.classes=3.3.0=pyhd8ed1ab_0 + - jedi=0.19.1=pyhd8ed1ab_0 + - jinja2=3.1.2=pyhd8ed1ab_1 + - jupyter_core=5.5.1=py39h2804cbe_0 + - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 + - ld64=609=h89fa09d_15 + - libcblas=3.9.0=20_osxarm64_openblas + - liblapack=3.9.0=20_osxarm64_openblas + - matplotlib-inline=0.1.6=pyhd8ed1ab_0 + - memory-allocator=0.1.3=py39h0f82c59_0 + - overrides=7.4.0=pyhd8ed1ab_0 + - pexpect=4.8.0=pyh1a96a4e_2 + - pip=23.3.2=pyhd8ed1ab_0 + - pplpy=0.8.9=py39haf103f8_0 + - primecountpy=0.1.0=py39hbd775c9_4 + - prompt-toolkit=3.0.42=pyha770c72_0 + - pybind11=2.11.1=py39hbd775c9_2 + - pyobjc-core=10.1=py39hb167abd_0 + - pyproject-api=1.6.1=pyhd8ed1ab_0 + - pytest=7.4.3=pyhd8ed1ab_0 + - python-dateutil=2.8.2=pyhd8ed1ab_0 + - pytz-deprecation-shim=0.1.0.post0=py39h2804cbe_4 + - referencing=0.32.0=pyhd8ed1ab_0 + - rfc3339-validator=0.1.4=pyhd8ed1ab_0 + - ruamel.yaml=0.18.5=py39h17cfd9d_0 + - sympy=1.12=pypyh9d50eac_103 + - terminado=0.18.0=pyh31c8845_0 + - tinycss2=1.2.1=pyhd8ed1ab_0 + - typing-extensions=4.9.0=hd8ed1ab_0 + - urllib3=1.26.18=pyhd8ed1ab_0 + - virtualenv=20.25.0=pyhd8ed1ab_0 + - annotated-types=0.6.0=pyhd8ed1ab_0 + - argon2-cffi-bindings=21.2.0=py39h0f82c59_4 + - arpack=3.7.0=h58ebc17_2 + - arrow=1.3.0=pyhd8ed1ab_0 + - cattrs=23.2.3=pyhd8ed1ab_0 + - cctools=973.0.1=hd1ac623_15 + - clang=15.0.7=haab561b_4 + - dsdp=5.8=h9397a75_1203 + - fflas-ffpack=2.4.3=h11f2abc_2 + - fqdn=1.5.1=pyhd8ed1ab_0 + - git=2.42.0=pl5321h46e2b6d_0 + - gitpython=3.1.40=pyhd8ed1ab_0 + - gsl=2.7=h6e638da_0 + - hatchling=1.21.0=pyhd8ed1ab_0 + - iml=1.0.5=hd52f0d1_1003 + - importlib-resources=6.1.1=pyhd8ed1ab_0 + - importlib_metadata=7.0.0=hd8ed1ab_0 + - jsonschema-specifications=2023.11.2=pyhd8ed1ab_0 + - jupyter_server_terminals=0.5.0=pyhd8ed1ab_0 + - liblapacke=3.9.0=20_osxarm64_openblas + - numpy=1.26.2=py39heee92a0_0 + - pango=1.50.14=h6c112b8_0 + - prompt_toolkit=3.0.42=hd8ed1ab_0 + - pydantic-core=2.14.5=py39h8fec3ad_0 + - pyobjc-framework-cocoa=10.1=py39hb167abd_0 + - pytest-xdist=3.5.0=pyhd8ed1ab_0 + - requests=2.31.0=pyhd8ed1ab_0 + - setuptools-scm=8.0.4=pyhd8ed1ab_0 + - stack_data=0.6.2=pyhd8ed1ab_0 + - suitesparse=5.10.1=h88be0ae_2 + - argon2-cffi=23.1.0=pyhd8ed1ab_0 + - blas-devel=3.9.0=20_osxarm64_openblas + - cachecontrol=0.13.1=pyhd8ed1ab_0 + - clangxx=15.0.7=default_h5c94ee4_4 + - 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 + - ipython=8.18.1=pyh707e725_3 + - isoduration=20.11.0=pyhd8ed1ab_0 + - jsonschema=4.20.0=pyhd8ed1ab_0 + - jupyter_client=8.6.0=pyhd8ed1ab_0 + - keyring=24.3.0=py39h2804cbe_0 + - linbox=1.6.3=h380be0f_8 + - lsprotocol=2023.0.0=pyhd8ed1ab_0 + - pydantic=2.5.2=pyhd8ed1ab_0 + - scipy=1.11.4=py39h36c428d_0 + - send2trash=1.8.2=pyhd1c38e8_0 + - setuptools_scm=8.0.4=hd8ed1ab_0 + - tox=4.11.4=pyhd8ed1ab_0 + - blas=2.120=openblas + - cachecontrol-with-filecache=0.13.1=pyhd8ed1ab_0 + - compiler-rt_osx-arm64=15.0.7=h3808999_2 + - ipykernel=6.26.0=pyh3cd1d5f_0 + - ipywidgets=8.1.1=pyhd8ed1ab_0 + - jsonschema-with-format-nongpl=4.20.0=pyhd8ed1ab_0 + - matplotlib-base=3.8.2=py39h1a09f3e_0 + - nbformat=5.9.2=pyhd8ed1ab_0 + - pygls=1.2.1=pyhd8ed1ab_0 + - rw=0.9=h3422bc3_0 + - compiler-rt=15.0.7=h3808999_2 + - conda-lock=2.5.1=pyhd8ed1ab_0 + - ipympl=0.9.3=pyhd8ed1ab_0 + - jupyter-jsmol=2022.1.0=pyhd8ed1ab_0 + - jupyter_events=0.9.0=pyhd8ed1ab_0 + - matplotlib=3.8.2=py39hdf13c20_0 + - nbclient=0.8.0=pyhd8ed1ab_0 + - clang_impl_osx-arm64=15.0.7=h77e971b_7 + - nbconvert-core=7.13.0=pyhd8ed1ab_0 + - clang_osx-arm64=15.0.7=h54d7cd3_7 + - jupyter_server=2.12.1=pyhd8ed1ab_0 + - nbconvert-pandoc=7.13.0=pyhd8ed1ab_0 + - c-compiler=1.6.0=hd291e01_0 + - clangxx_impl_osx-arm64=15.0.7=h768a7fd_7 + - gfortran_osx-arm64=12.3.0=h57527a5_1 + - jupyter-lsp=2.2.1=pyhd8ed1ab_0 + - jupyterlab_server=2.25.2=pyhd8ed1ab_0 + - nbconvert=7.13.0=pyhd8ed1ab_0 + - notebook-shim=0.2.3=pyhd8ed1ab_0 + - clangxx_osx-arm64=15.0.7=h54d7cd3_7 + - gfortran=12.3.0=h1ca8e4b_1 + - jupyterlab=4.0.9=pyhd8ed1ab_0 + - cxx-compiler=1.6.0=h1995070_0 + - fortran-compiler=1.6.0=h5a50232_0 + - notebook=7.0.6=pyhd8ed1ab_0 + - pythran=0.14.0=py39h819cc4c_1 + - r-base=4.1.3=h9c4d319_6 + - compilers=1.6.0=hce30654_0 + - rpy2=3.5.11=py39r41hf9b1952_0 + - esbonio=0.16.3=pyhd8ed1ab_0 + - jupyter_sphinx=0.1.4=py_0 + - 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 new file mode 100644 index 00000000000..ac77cf8ce96 --- /dev/null +++ b/src/environment-dev-3.9-macos.yml @@ -0,0 +1,448 @@ +# Generated by conda-lock. +# platform: osx-64 +# input_hash: 02de012815b6a6a4f1eca5e694350ba62ade15820e1fde8a68f04682cd2698c0 + +channels: + - conda-forge +dependencies: + - _r-mutex=1.0.1=anacondar_1 + - bc=1.07.1=h0d85af4_0 + - bzip2=1.0.8=h10d778d_5 + - c-ares=1.24.0=h10d778d_0 + - ca-certificates=2023.11.17=h8857fd0_0 + - cliquer=1.22=hbcb3906_0 + - font-ttf-dejavu-sans-mono=2.37=hab24e00_0 + - font-ttf-inconsolata=3.000=h77eed37_0 + - font-ttf-source-code-pro=2.038=h77eed37_0 + - font-ttf-ubuntu=0.83=h77eed37_1 + - fribidi=1.0.10=hbcb3906_0 + - gh=2.40.1=h990441c_0 + - giflib=5.2.1=hb7f2c08_3 + - icu=73.2=hf5e326d_0 + - libatomic_ops=7.6.14=hb7f2c08_0 + - libboost-headers=1.84.0=h694c41f_0 + - libbrotlicommon=1.1.0=h0dc2134_1 + - libcxx=16.0.6=hd57cbcb_0 + - libdeflate=1.19=ha4e1b8e_0 + - libev=4.33=h10d778d_2 + - libexpat=2.5.0=hf0c8a7f_1 + - libffi=3.4.2=h0d85af4_5 + - libgfortran-devel_osx-64=12.3.0=h0b6f5ec_1 + - libiconv=1.17=hd75f5a5_2 + - libjpeg-turbo=3.0.0=h0dc2134_1 + - libsodium=1.0.18=hbcb3906_1 + - libtool=2.4.7=hf0c8a7f_0 + - libuv=1.46.0=h0c2f820_0 + - libwebp-base=1.3.2=h0dc2134_0 + - libzlib=1.2.13=h8a1eda9_5 + - llvm-openmp=17.0.6=hb6ac08f_0 + - m4=1.4.18=haf1e3a3_1001 + - make=4.3=h22f3db7_1 + - mathjax=3.2.2=h694c41f_0 + - nauty=2.8.8=h10d778d_0 + - 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 + - planarity=3.0.0.5=hbcb3906_1002 + - pthread-stubs=0.4=hc929b4f_1001 + - python_abi=3.9=4_cp39 + - rhash=1.4.4=h0dc2134_0 + - sagemath-db-combinatorial-designs=20140630=1 + - sagemath-db-graphs=20210214=hd8ed1ab_0 + - sagemath-db-polytopes=20170220=1 + - three.js=122=hd8ed1ab_2 + - tzdata=2023c=h71feb2d_0 + - xorg-libxau=1.0.11=h0dc2134_0 + - xorg-libxdmcp=1.1.3=h35c211d_0 + - xz=5.2.6=h775f41a_0 + - yaml=0.2.5=h0d85af4_2 + - autoconf=2.71=pl5321hed12c24_1 + - bdw-gc=8.0.6=h940c156_0 + - expat=2.5.0=hf0c8a7f_1 + - fonts-conda-forge=1=0 + - gengetopt=2.23=he49afe7_0 + - gettext=0.21.1=h8a4c099_0 + - gf2x=1.3.0=hb2a7efb_2 + - gmp=6.3.0=h93d8f39_0 + - graphite2=1.3.13=h2e338ed_1001 + - isl=0.25=hb486fe8_0 + - lerc=4.0.0=hb486fe8_0 + - libbraiding=1.2=hf0c8a7f_0 + - libbrotlidec=1.1.0=h0dc2134_1 + - libbrotlienc=1.1.0=h0dc2134_1 + - libcbor=0.10.2=hf0c8a7f_0 + - libgfortran5=13.2.0=h2873a65_1 + - libpng=1.6.39=ha978bb4_0 + - libsqlite=3.44.2=h92b6c6a_0 + - libxcb=1.15=hb7f2c08_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 + - openssl=3.2.0=hd75f5a5_1 + - 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 + - symmetrica=3.0.1=hf0c8a7f_0 + - tapi=1100.0.11=h9ce4665_0 + - tar=1.34=hcb2f6ea_1 + - threejs-sage=122=hd8ed1ab_2 + - tk=8.6.13=h1abcd95_1 + - zeromq=4.3.5=h93d8f39_0 + - zlib=1.2.13=h8a1eda9_5 + - zstd=1.5.5=h829000d_0 + - automake=1.16.5=pl5321h694c41f_0 + - brotli-bin=1.1.0=h0dc2134_1 + - bwidget=1.9.14=h694c41f_1 + - cddlib=1!0.94m=h0f52abe_0 + - ecm=7.0.4=h343d7f2_1002 + - fonts-conda-ecosystem=1=0 + - freetype=2.12.1=h60636b9_2 + - givaro=4.1.1=h0a799c6_3 + - glpk=5.0=h3cb5acd_0 + - jmol=14.32.9=h694c41f_0 + - libboost=1.84.0=h5b2dd29_0 + - libedit=3.1.20191231=h0678c8f_2 + - libfido2=1.14.0=h3cbcf74_0 + - libgfortran=5.0.0=13_2_0_h97931a8_1 + - libglib=2.78.1=h6d9ecee_0 + - libhomfly=1.02r6=hc929b4f_0 + - libhwloc=2.9.3=default_h24e0189_1009 + - libllvm15=15.0.7=he4b1e75_3 + - libnghttp2=1.58.0=h64cf6d3_1 + - libssh2=1.11.0=hd019ec5_0 + - libtiff=4.6.0=h684deea_2 + - m4ri=20140914=h3f75d11_1005 + - mpfr=4.2.1=h0c69b56_0 + - ntl=11.4.3=h0ab3c2f_1 + - primecount=7.6=ha894c9a_0 + - readline=8.2=h9e318b2_1 + - sigtool=0.1.3=h88f4db0_0 + - tachyon=0.99b6=0 + - texinfo=7.0=pl5321hc47821c_0 + - tktable=2.10=ha166976_5 + - brotli=1.1.0=h0dc2134_1 + - ecl=21.2.1=hd029580_2 + - fftw=3.3.10=nompi_h4fa670e_108 + - fontconfig=2.14.2=h5bb23bf_0 + - gap-core=4.12.2=hc16eb5f_3 + - gfan=0.6.2=hd793b56_1003 + - krb5=1.21.2=hb884880_0 + - lcms2=2.16=ha2f27b4_0 + - ld64_osx-64=609=h0fd476b_15 + - libboost-devel=1.84.0=h7728843_0 + - libbrial=1.2.12=h8d08345_1 + - libclang-cpp15=15.0.7=default_h6b1ee41_4 + - libflint=3.0.1=h5d15de0_ntl_100 + - libopenblas=0.3.25=openmp_hfef2a42_0 + - libwebp=1.3.2=h44782d1_1 + - llvm-tools=15.0.7=he4b1e75_3 + - 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 + - tbb=2021.11.0=he51d815_0 + - alabaster=0.7.13=pyhd8ed1ab_0 + - appdirs=1.4.4=pyh9f0ad1d_0 + - appnope=0.1.3=pyhd8ed1ab_0 + - attrs=23.1.0=pyh71513ae_1 + - boost-cpp=1.84.0=h07eb623_0 + - brial=1.2.12=pyh694c41f_1 + - brotli-python=1.1.0=py39h840bb9f_1 + - cached_property=1.5.2=pyha770c72_1 + - cachetools=5.3.2=pyhd8ed1ab_0 + - cachy=0.3.0=pyhd8ed1ab_1 + - cairo=1.18.0=h99e66fa_0 + - cctools_osx-64=973.0.1=habff3f6_15 + - certifi=2023.11.17=pyhd8ed1ab_0 + - chardet=5.2.0=py39h6e9494a_1 + - charset-normalizer=3.3.2=pyhd8ed1ab_0 + - 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.7=py39hd253f6c_0 + - debugpy=1.8.0=py39h840bb9f_1 + - decorator=5.1.1=pyhd8ed1ab_0 + - defusedxml=0.7.1=pyhd8ed1ab_0 + - distlib=0.3.8=pyhd8ed1ab_0 + - docutils=0.20.1=py39h6e9494a_3 + - eclib=20231211=h02435c3_0 + - editables=0.3=pyhd8ed1ab_0 + - entrypoints=0.4=pyhd8ed1ab_0 + - exceptiongroup=1.2.0=pyhd8ed1ab_0 + - execnet=2.0.2=pyhd8ed1ab_0 + - executing=2.0.1=pyhd8ed1ab_0 + - filelock=3.13.1=pyhd8ed1ab_0 + - flit-core=3.9.0=pyhd8ed1ab_0 + - fplll=5.4.5=hb7981ad_0 + - gap-defaults=4.12.2=h694c41f_3 + - gast=0.5.4=pyhd8ed1ab_0 + - gfortran_impl_osx-64=12.3.0=h54fd467_1 + - gmpy2=2.1.2=py39h2da61ea_1 + - idna=3.6=pyhd8ed1ab_0 + - imagesize=1.4.1=pyhd8ed1ab_0 + - iniconfig=2.0.0=pyhd8ed1ab_0 + - ipython_genutils=0.2.0=py_1 + - json5=0.9.14=pyhd8ed1ab_0 + - jsonpointer=2.4=py39h6e9494a_3 + - jupyterlab_widgets=3.0.9=pyhd8ed1ab_0 + - kiwisolver=1.4.5=py39h8ee36c8_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 + - markupsafe=2.1.3=py39hdc70f33_1 + - maxima=5.47.0=h2b27fa8_1 + - mistune=3.0.2=pyhd8ed1ab_0 + - more-itertools=10.1.0=pyhd8ed1ab_0 + - mpmath=1.3.0=pyhd8ed1ab_0 + - msgpack-python=1.0.7=py39h6be1789_0 + - munkres=1.1.4=pyh9f0ad1d_0 + - nest-asyncio=1.5.8=pyhd8ed1ab_0 + - networkx=3.2.1=pyhd8ed1ab_0 + - openblas=0.3.25=openmp_h6794695_0 + - openssh=9.3p1=h3df487d_2 + - packaging=23.2=pyhd8ed1ab_0 + - pandocfilters=1.5.0=pyhd8ed1ab_0 + - parso=0.8.3=pyhd8ed1ab_0 + - pastel=0.2.1=pyhd8ed1ab_0 + - pathspec=0.12.1=pyhd8ed1ab_0 + - pickleshare=0.7.5=py_1003 + - pillow=10.1.0=py39hdd30358_0 + - pkgconfig=1.5.5=pyhd8ed1ab_4 + - pkginfo=1.9.6=pyhd8ed1ab_0 + - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 + - platformdirs=4.1.0=pyhd8ed1ab_0 + - pluggy=1.3.0=pyhd8ed1ab_0 + - ply=3.11=py_1 + - prometheus_client=0.19.0=pyhd8ed1ab_0 + - psutil=5.9.7=py39ha09f3b3_0 + - ptyprocess=0.7.0=pyhd3deb0d_0 + - pure_eval=0.2.2=pyhd8ed1ab_0 + - py=1.11.0=pyh6c4a22f_0 + - pybind11-global=2.11.1=py39h8ee36c8_2 + - pycodestyle=2.11.1=pyhd8ed1ab_0 + - pycparser=2.21=pyhd8ed1ab_0 + - pygments=2.17.2=pyhd8ed1ab_0 + - pylev=1.4.0=pyhd8ed1ab_0 + - pyparsing=3.1.1=pyhd8ed1ab_0 + - pyrsistent=0.20.0=py39ha09f3b3_0 + - pysocks=1.7.1=pyha2e5f31_6 + - pyspellchecker=0.7.2=pyhd8ed1ab_0 + - python-fastjsonschema=2.19.0=pyhd8ed1ab_0 + - python-json-logger=2.0.7=pyhd8ed1ab_0 + - python-lrcalc=2.1=py39h7a8716b_5 + - python-tzdata=2023.3=pyhd8ed1ab_0 + - pytz=2023.3.post1=pyhd8ed1ab_0 + - pyyaml=6.0.1=py39hdc70f33_1 + - pyzmq=25.1.2=py39hcb7a90d_0 + - rfc3986-validator=0.1.1=pyh9f0ad1d_0 + - rpds-py=0.15.2=py39h3f9c672_0 + - ruamel.yaml.clib=0.2.7=py39hdc70f33_2 + - sagemath-db-elliptic-curves=0.8.1=hecc5488_0 + - sagetex=3.6.1=pyhd8ed1ab_0 + - setuptools=68.2.2=pyhd8ed1ab_0 + - simplegeneric=0.8.1=py_1 + - singular=4.3.2.p8=h0d51a9f_1 + - six=1.16.0=pyh6c4a22f_0 + - smmap=5.0.0=pyhd8ed1ab_0 + - sniffio=1.3.0=pyhd8ed1ab_0 + - snowballstemmer=2.2.0=pyhd8ed1ab_0 + - soupsieve=2.5=pyhd8ed1ab_1 + - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_0 + - sympow=2.023.6=h115ba6a_3 + - tomli=2.0.1=pyhd8ed1ab_0 + - tomlkit=0.12.3=pyha770c72_0 + - toolz=0.12.0=pyhd8ed1ab_0 + - tornado=6.3.3=py39hdc70f33_1 + - traitlets=5.14.0=pyhd8ed1ab_0 + - trove-classifiers=2023.11.29=pyhd8ed1ab_0 + - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 + - typing_extensions=4.9.0=pyha770c72_0 + - typing_utils=0.1.0=pyhd8ed1ab_0 + - tzlocal=5.2=py39h6e9494a_0 + - unicodedata2=15.1.0=py39hdc70f33_0 + - uri-template=1.3.0=pyhd8ed1ab_0 + - wcwidth=0.2.12=pyhd8ed1ab_0 + - webcolors=1.13=pyhd8ed1ab_0 + - webencodings=0.5.1=pyhd8ed1ab_2 + - websocket-client=1.7.0=pyhd8ed1ab_0 + - wheel=0.42.0=pyhd8ed1ab_0 + - widgetsnbextension=4.0.9=pyhd8ed1ab_0 + - zipp=3.17.0=pyhd8ed1ab_0 + - anyio=4.2.0=pyhd8ed1ab_0 + - asttokens=2.4.1=pyhd8ed1ab_0 + - async-lru=2.0.4=pyhd8ed1ab_0 + - babel=2.14.0=pyhd8ed1ab_0 + - beautifulsoup4=4.12.2=pyha770c72_0 + - beniget=0.4.1=pyhd8ed1ab_0 + - bleach=6.1.0=pyhd8ed1ab_0 + - cached-property=1.5.2=hd8ed1ab_1 + - cctools=973.0.1=hd9ad811_15 + - cffi=1.16.0=py39h18ef598_0 + - clang=15.0.7=hac416ee_4 + - click-default-group=1.2.4=pyhd8ed1ab_0 + - clikit=0.6.2=pyhd8ed1ab_2 + - cmake=3.28.1=h7c85d92_0 + - comm=0.1.4=pyhd8ed1ab_0 + - cppy=1.2.1=pyhd8ed1ab_0 + - curl=8.5.0=h726d00d_0 + - cypari2=2.1.3=py39he2cb11e_2 + - deprecation=2.1.0=pyh9f0ad1d_0 + - fonttools=4.47.0=py39ha09f3b3_0 + - gitdb=4.0.11=pyhd8ed1ab_0 + - harfbuzz=8.3.0=hf45c392_0 + - html5lib=1.1=pyh9f0ad1d_0 + - importlib-metadata=7.0.0=pyha770c72_0 + - importlib_resources=6.1.1=pyhd8ed1ab_0 + - jaraco.classes=3.3.0=pyhd8ed1ab_0 + - jedi=0.19.1=pyhd8ed1ab_0 + - jinja2=3.1.2=pyhd8ed1ab_1 + - jupyter_core=5.5.1=py39h6e9494a_0 + - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 + - libcblas=3.9.0=20_osx64_openblas + - liblapack=3.9.0=20_osx64_openblas + - matplotlib-inline=0.1.6=pyhd8ed1ab_0 + - memory-allocator=0.1.3=py39hdc70f33_0 + - overrides=7.4.0=pyhd8ed1ab_0 + - pexpect=4.8.0=pyh1a96a4e_2 + - pip=23.3.2=pyhd8ed1ab_0 + - pplpy=0.8.9=py39h248ee18_0 + - primecountpy=0.1.0=py39h8ee36c8_4 + - prompt-toolkit=3.0.42=pyha770c72_0 + - pybind11=2.11.1=py39h8ee36c8_2 + - pyobjc-core=10.1=py39h8602b6b_0 + - pyproject-api=1.6.1=pyhd8ed1ab_0 + - pytest=7.4.3=pyhd8ed1ab_0 + - python-dateutil=2.8.2=pyhd8ed1ab_0 + - pytz-deprecation-shim=0.1.0.post0=py39h6e9494a_4 + - referencing=0.32.0=pyhd8ed1ab_0 + - rfc3339-validator=0.1.4=pyhd8ed1ab_0 + - ruamel.yaml=0.18.5=py39ha09f3b3_0 + - sympy=1.12=pypyh9d50eac_103 + - terminado=0.18.0=pyh31c8845_0 + - tinycss2=1.2.1=pyhd8ed1ab_0 + - typing-extensions=4.9.0=hd8ed1ab_0 + - urllib3=1.26.18=pyhd8ed1ab_0 + - virtualenv=20.25.0=pyhd8ed1ab_0 + - annotated-types=0.6.0=pyhd8ed1ab_0 + - argon2-cffi-bindings=21.2.0=py39hdc70f33_4 + - arpack=3.8.0=nompi_hb44a6d1_101 + - arrow=1.3.0=pyhd8ed1ab_0 + - cattrs=23.2.3=pyhd8ed1ab_0 + - clangxx=15.0.7=default_h6b1ee41_4 + - dsdp=5.8=h6e329d1_1203 + - fflas-ffpack=2.4.3=h026fd7e_2 + - fqdn=1.5.1=pyhd8ed1ab_0 + - git=2.42.0=pl5321hbb4c4ee_0 + - gitpython=3.1.40=pyhd8ed1ab_0 + - gsl=2.7=h93259b0_0 + - hatchling=1.21.0=pyhd8ed1ab_0 + - iml=1.0.5=h64b42ca_1003 + - importlib-resources=6.1.1=pyhd8ed1ab_0 + - importlib_metadata=7.0.0=hd8ed1ab_0 + - jsonschema-specifications=2023.11.2=pyhd8ed1ab_0 + - jupyter_server_terminals=0.5.0=pyhd8ed1ab_0 + - liblapacke=3.9.0=20_osx64_openblas + - numpy=1.26.2=py39h14c6d2e_0 + - pango=1.50.14=h19c1c8a_2 + - prompt_toolkit=3.0.42=hd8ed1ab_0 + - pydantic-core=2.14.5=py39h3f9c672_0 + - pyobjc-framework-cocoa=10.1=py39h8602b6b_0 + - pytest-xdist=3.5.0=pyhd8ed1ab_0 + - requests=2.31.0=pyhd8ed1ab_0 + - setuptools-scm=8.0.4=pyhd8ed1ab_0 + - stack_data=0.6.2=pyhd8ed1ab_0 + - suitesparse=5.10.1=h0a40b7c_2 + - argon2-cffi=23.1.0=pyhd8ed1ab_0 + - blas-devel=3.9.0=20_osx64_openblas + - cachecontrol=0.13.1=pyhd8ed1ab_0 + - compiler-rt_osx-64=15.0.7=ha38d28d_2 + - 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 + - igraph=0.10.8=h29df365_0 + - ipython=8.18.1=pyh707e725_3 + - isoduration=20.11.0=pyhd8ed1ab_0 + - jsonschema=4.20.0=pyhd8ed1ab_0 + - jupyter_client=8.6.0=pyhd8ed1ab_0 + - keyring=24.3.0=py39h6e9494a_0 + - linbox=1.6.3=hfb9b24e_8 + - lsprotocol=2023.0.0=pyhd8ed1ab_0 + - pydantic=2.5.2=pyhd8ed1ab_0 + - scipy=1.11.4=py39ha321857_0 + - send2trash=1.8.2=pyhd1c38e8_0 + - setuptools_scm=8.0.4=hd8ed1ab_0 + - tox=4.11.4=pyhd8ed1ab_0 + - blas=2.120=openblas + - cachecontrol-with-filecache=0.13.1=pyhd8ed1ab_0 + - compiler-rt=15.0.7=ha38d28d_2 + - ipykernel=6.26.0=pyh3cd1d5f_0 + - ipywidgets=8.1.1=pyhd8ed1ab_0 + - jsonschema-with-format-nongpl=4.20.0=pyhd8ed1ab_0 + - matplotlib-base=3.8.2=py39h7070ae8_0 + - nbformat=5.9.2=pyhd8ed1ab_0 + - pygls=1.2.1=pyhd8ed1ab_0 + - rw=0.9=h10d778d_1 + - clang_impl_osx-64=15.0.7=h03d6864_7 + - conda-lock=2.5.1=pyhd8ed1ab_0 + - ipympl=0.9.3=pyhd8ed1ab_0 + - jupyter-jsmol=2022.1.0=pyhd8ed1ab_0 + - jupyter_events=0.9.0=pyhd8ed1ab_0 + - matplotlib=3.8.2=py39h6e9494a_0 + - nbclient=0.8.0=pyhd8ed1ab_0 + - clang_osx-64=15.0.7=hb91bd55_7 + - nbconvert-core=7.13.0=pyhd8ed1ab_0 + - c-compiler=1.6.0=h63c33a9_0 + - clangxx_impl_osx-64=15.0.7=h2133e9c_7 + - gfortran_osx-64=12.3.0=h18f7dce_1 + - jupyter_server=2.12.1=pyhd8ed1ab_0 + - nbconvert-pandoc=7.13.0=pyhd8ed1ab_0 + - clangxx_osx-64=15.0.7=hb91bd55_7 + - gfortran=12.3.0=h2c809b3_1 + - jupyter-lsp=2.2.1=pyhd8ed1ab_0 + - jupyterlab_server=2.25.2=pyhd8ed1ab_0 + - nbconvert=7.13.0=pyhd8ed1ab_0 + - notebook-shim=0.2.3=pyhd8ed1ab_0 + - cxx-compiler=1.6.0=h1c7c39f_0 + - fortran-compiler=1.6.0=h932d759_0 + - jupyterlab=4.0.9=pyhd8ed1ab_0 + - pythran=0.14.0=py39h4aa56a1_1 + - r-base=4.3.1=h0ff45fa_6 + - compilers=1.6.0=h694c41f_0 + - notebook=7.0.6=pyhd8ed1ab_0 + - rpy2=3.5.11=py39r43hd01001f_3 + - esbonio=0.16.3=pyhd8ed1ab_0 + - jupyter_sphinx=0.4.0=py39h6e9494a_1 + - 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/pyproject.toml.m4 b/src/pyproject.toml.m4 index 2d60708affa..7065ba1468c 100644 --- a/src/pyproject.toml.m4 +++ b/src/pyproject.toml.m4 @@ -22,3 +22,8 @@ requires = [ memory_allocator \ ')] build-backend = "setuptools.build_meta" + +[tool.conda-lock] +platforms = [ + 'osx-64', 'linux-64', 'linux-aarch64', 'osx-arm64' +]