diff --git a/.github/workflows/tox-pytest.yml b/.github/workflows/tox-pytest.yml index 9ea316ae34..72c24624fb 100644 --- a/.github/workflows/tox-pytest.yml +++ b/.github/workflows/tox-pytest.yml @@ -10,19 +10,15 @@ on: - ready_for_review env: - PUDL_OUTPUT: /home/runner/pudl-work/output - PUDL_INPUT: /home/runner/pudl-work/data/ + PUDL_OUTPUT: /home/runner/pudl-work/output/ + PUDL_INPUT: /home/runner/pudl-work/input/ DAGSTER_HOME: /home/runner/pudl-work/dagster_home/ jobs: - ci-static: + ci-docs: runs-on: ubuntu-latest strategy: fail-fast: false - matrix: - tox-env: - - linters - - docs defaults: run: shell: bash -l {0} @@ -32,7 +28,7 @@ jobs: with: fetch-depth: 2 - - name: Install Conda environment using mamba + - name: Install conda-lock environment with micromamba uses: mamba-org/setup-micromamba@v1 with: environment-file: environments/conda-lock.yml @@ -48,13 +44,12 @@ jobs: conda config --show printenv | sort - - name: Build ${{ matrix.tox-env}} with Tox + - name: Lint and build PUDL documentation with Sphinx run: | - tox -e ${{ matrix.tox-env }} + make github-docs-build - name: Upload coverage uses: actions/upload-artifact@v3 - if: ${{ matrix.tox-env == 'docs' }} with: name: coverage-docs path: coverage.xml @@ -72,7 +67,7 @@ jobs: with: fetch-depth: 2 - - name: Install Conda environment using mamba + - name: Install conda-lock environment with micromamba uses: mamba-org/setup-micromamba@v1 with: environment-file: environments/conda-lock.yml @@ -93,9 +88,9 @@ jobs: which sqlite3 sqlite3 --version - - name: Run unit tests with Tox + - name: Run PUDL unit tests and collect test coverage run: | - tox -e unit -- --durations 0 + make github-pytest-unit - name: Upload coverage uses: actions/upload-artifact@v3 @@ -171,7 +166,7 @@ jobs: - name: Run integration tests, trying to use GCS cache if possible run: | - tox -e integration -- --gcs-cache-path=gs://zenodo-cache.catalyst.coop --durations 0 + make github-pytest-integration - name: Upload coverage uses: actions/upload-artifact@v3 @@ -185,13 +180,13 @@ jobs: ci-coverage: runs-on: ubuntu-latest needs: + - ci-docs - ci-unit - ci-integration - - ci-static steps: - uses: actions/checkout@v4 - name: Download coverage - id: download-unit + id: download-coverage uses: actions/download-artifact@v3 with: path: coverage @@ -207,6 +202,7 @@ jobs: runs-on: ubuntu-latest if: ${{ always() }} needs: + - ci-docs - ci-unit - ci-integration steps: diff --git a/.github/workflows/update-lockfile.yml b/.github/workflows/update-lockfile.yml index 42699db2f3..0f88aa7981 100644 --- a/.github/workflows/update-lockfile.yml +++ b/.github/workflows/update-lockfile.yml @@ -33,26 +33,8 @@ jobs: - name: Run conda-lock to recreate lockfile from scratch run: | - cd environments - rm conda-lock.yml - conda-lock \ - --micromamba \ - --file=../pyproject.toml \ - --lockfile=conda-lock.yml - conda-lock render \ - --kind explicit \ - --kind env \ - --dev-dependencies \ - --extras docs \ - --extras datasette \ - conda-lock.yml - conda-lock render \ - --kind env \ - --extras docs \ - --platform linux-64 \ - --filename-template "readthedocs-{platform}.conda.lock" \ - conda-lock.yml - cd .. + make conda-lock + - name: Open a pull request uses: peter-evans/create-pull-request@v5 with: diff --git a/.readthedocs.yaml b/.readthedocs.yaml index 689bc96f8f..6224b5ed02 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -14,7 +14,7 @@ build: # Define the python environment using conda / mamba conda: - environment: environments/readthedocs-linux-64.conda.lock.yml + environment: environments/conda-linux-64.lock.yml # Build documentation in the docs/ directory with Sphinx sphinx: diff --git a/Makefile b/Makefile new file mode 100644 index 0000000000..ddb74dfd0e --- /dev/null +++ b/Makefile @@ -0,0 +1,165 @@ +covargs := --append --source=src/pudl +gcs_cache_path := --gcs-cache-path=gs://zenodo-cache.catalyst.coop +pytest_covargs := --cov-append --cov=src/pudl --cov-report=xml +pytest_args := --durations 0 ${pytest_covargs} ${gcs_cache_path} +coverage_erase := coverage erase +coverage_report := coverage report --sort=cover +etl_fast_yml := src/pudl/package_data/settings/etl_fast.yml +etl_full_yml := src/pudl/package_data/settings/etl_full.yml +pip_install_pudl := pip install --no-deps --editable ./ + +######################################################################################## +# Conda lockfile generation +######################################################################################## + +ifdef GITHUB_ACTION + mamba := micromamba +else + mamba := mamba +endif + +# Regenerate the conda lockfile and render platform specific conda environments. +conda-lock: + rm -f environments/conda-lock.yml + conda-lock \ + --${mamba} \ + --file=pyproject.toml \ + --lockfile=environments/conda-lock.yml + (cd environments && conda-lock render \ + --kind env \ + --dev-dependencies \ + --extras docs \ + --extras datasette \ + conda-lock.yml) + +######################################################################################## +# Build documentation (for local use) +######################################################################################## + +docs-clean: + rm -rf docs/_build + +docs-build: docs-clean + doc8 docs/ README.rst + sphinx-build -W -b html docs docs/_build/html + +######################################################################################## +# Generic pytest commands for local use, without test coverage +######################################################################################## + +pytest-unit: + pytest --doctest-modules src/pudl test/unit + +pytest-integration: + pytest test/integration + +pytest-validate: + pytest --live-dbs test/validate + pudl_check_fks + +######################################################################################## +# More complex pytest commands for local use that collect test coverage +######################################################################################## + +# Run unit & integration tests on 1-2 years of data and collect test coverage data. +local-pytest-ci: docs-clean + ${coverage_erase} + doc8 docs/ README.rst + coverage run ${covargs} -- ${CONDA_PREFIX}/bin/sphinx-build -W -b html docs docs/_build/html + pytest ${pytest_args} --doctest-modules src/pudl test/unit + pytest ${pytest_args} --etl-settings ${etl_fast_yml} test/integration + ${coverage_report} + +# Run unit & integration tests on ALL years of data and collect test coverage data. +# NOTE: This will take 1+ hours to run and the PUDL DB will not be retained. +local-pytest-ci-all-years: docs-clean + ${coverage_erase} + doc8 docs/ README.rst + coverage run ${covargs} -- ${CONDA_PREFIX}/bin/sphinx-build -W -b html docs docs/_build/html + pytest ${pytest_args} --doctest-modules src/pudl test/unit + pytest ${pytest_args} --etl-settings ${etl_full_yml} test/integration + ${coverage_report} + +# Run the full ETL, generating new FERC & PUDL SQLite DBs and EPA CEMS Parquet files. +# Then run the full integration tests and data validations on all years of data. +# NOTE: This will clobber your existing databases and takes hours to run!!! +# Backgrounding the data validation and integration tests and using wait allows them to +# run in parallel. +nuke: docs-clean + ${coverage_erase} + doc8 docs/ README.rst + coverage run ${covargs} -- ${CONDA_PREFIX}/bin/sphinx-build -W -b html docs docs/_build/html + pytest ${pytest_args} --doctest-modules src/pudl test/unit + pytest ${pytest_args} \ + --etl-settings ${etl_fast_yml} \ + test/integration + rm -f tox-nuke.log + coverage run ${covargs} -- \ + src/pudl/convert/ferc_to_sqlite.py \ + --logfile tox-nuke.log \ + --clobber \ + ${gcs_cache_path} \ + ${etl_full_yml} + coverage run ${covargs} -- \ + src/pudl/cli/etl.py \ + --logfile tox-nuke.log \ + --clobber \ + ${gcs_cache_path} \ + ${etl_full_yml} + pudl_check_fks + pytest ${pytest_args} --live-dbs --etl-settings ${etl_full_yml} test/integration & \ + pytest ${pytest_args} --live-dbs test/validate & \ + wait + ${coverage_report} + +######################################################################################## +# Some miscellaneous test cases +######################################################################################## + +# Check that designated Jupyter notebooks can be run against the current DB +pytest-jupyter: + pytest --live-dbs test/integration/jupyter_notebooks_test.py + +# Compare actual and expected number of rows in many tables: +pytest-minmax-rows: + pytest --live-dbs \ + test/validate/epacamd_eia_test.py::test_minmax_rows \ + test/validate/ferc1_test.py::test_minmax_rows \ + test/validate/eia_test.py::test_minmax_rows \ + test/validate/mcoe_test.py::test_minmax_rows_mcoe + +# Build the FERC 1 and PUDL DBs, ignoring foreign key constraints. +# Identify any plant or utility IDs in the DBs that haven't yet been mapped +# NOTE: This probably needs to be turned into a script of some kind not a test. +# In particular, building these DBs without checking FK constraints, in a location +# where they aren't going to clobber existing user DBs +unmapped-ids: + pytest \ + --save-unmapped-ids \ + --ignore-foreign-key-constraints \ + --etl-settings ${etl_full_yml} \ + test/integration/glue_test.py + +######################################################################################## +# The github- prefixed targets are meant to be run by GitHub Actions +######################################################################################## + +github-docs-build: docs-clean + ${pip_install_pudl} + ${coverage_erase} + doc8 docs/ README.rst + coverage run ${covargs} -- ${CONDA_PREFIX}/bin/sphinx-build -W -b html docs docs/_build/html + ${coverage_report} + coverage xml + +github-pytest-unit: + ${pip_install_pudl} + ${coverage_erase} + pytest ${pytest_args} --doctest-modules src/pudl test/unit + ${coverage_report} + +github-pytest-integration: + ${pip_install_pudl} + ${coverage_erase} + pytest ${pytest_args} test/integration + ${coverage_report} diff --git a/devtools/.gitignore b/devtools/.gitignore new file mode 100644 index 0000000000..b91e2df9fd --- /dev/null +++ b/devtools/.gitignore @@ -0,0 +1 @@ +user-environment.yml diff --git a/docker/docker-compose.yml b/docker/docker-compose.yml index 47b6a730b6..c5d88f4430 100644 --- a/docker/docker-compose.yml +++ b/docker/docker-compose.yml @@ -10,7 +10,6 @@ services: pudl-etl: platform: linux/x86_64 # Need to specify x84 because M1 chips default to use ARM: https://stackoverflow.com/questions/68630526/lib64-ld-linux-x86-64-so-2-no-such-file-or-directory-error environment: - - API_KEY_EIA - GCP_BILLING_PROJECT env_file: - .env diff --git a/docker/gcp_pudl_etl.sh b/docker/gcp_pudl_etl.sh index 2829576c9e..fdb6233525 100644 --- a/docker/gcp_pudl_etl.sh +++ b/docker/gcp_pudl_etl.sh @@ -20,23 +20,29 @@ function authenticate_gcp() { function run_pudl_etl() { send_slack_msg ":large_yellow_circle: Deployment started for $ACTION_SHA-$GITHUB_REF :floppy_disk:" - authenticate_gcp \ - && alembic upgrade head \ - && pudl_setup \ - && ferc_to_sqlite \ + authenticate_gcp && \ + alembic upgrade head && \ + pudl_setup && \ + ferc_to_sqlite \ --loglevel=DEBUG \ --gcs-cache-path=gs://internal-zenodo-cache.catalyst.coop \ --workers=8 \ - $PUDL_SETTINGS_YML \ - && pudl_etl \ + $PUDL_SETTINGS_YML && \ + pudl_etl \ --loglevel DEBUG \ --max-concurrent 6 \ --gcs-cache-path gs://internal-zenodo-cache.catalyst.coop \ - $PUDL_SETTINGS_YML \ - && pytest \ + $PUDL_SETTINGS_YML && \ + # Run multiple pytest processes in the background and wait for them to exit + pytest \ --gcs-cache-path=gs://internal-zenodo-cache.catalyst.coop \ --etl-settings=$PUDL_SETTINGS_YML \ - --live-dbs test + --live-dbs test/integration test/unit & \ + pytest \ + --gcs-cache-path=gs://internal-zenodo-cache.catalyst.coop \ + --etl-settings=$PUDL_SETTINGS_YML \ + --live-dbs test/validate & \ + wait } function shutdown_vm() { diff --git a/environments/conda-linux-64.lock b/environments/conda-linux-64.lock deleted file mode 100644 index ca1fb8e998..0000000000 --- a/environments/conda-linux-64.lock +++ /dev/null @@ -1,539 +0,0 @@ -# Generated by conda-lock. -# platform: linux-64 -# input_hash: de7a61eb05706475d7310916d22612941ecd2a1f43f939bd8052f7c389034fbb -@EXPLICIT -https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2#d7c89558ba9fa0495403155b64376d81 -https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2023.7.22-hbcca054_0.conda#a73ecd2988327ad4c8f2c331482917f2 -https://conda.anaconda.org/conda-forge/noarch/font-ttf-dejavu-sans-mono-2.37-hab24e00_0.tar.bz2#0c96522c6bdaed4b1566d11387caaf45 -https://conda.anaconda.org/conda-forge/noarch/font-ttf-inconsolata-3.000-h77eed37_0.tar.bz2#34893075a5c9e55cdafac56607368fc6 -https://conda.anaconda.org/conda-forge/noarch/font-ttf-source-code-pro-2.038-h77eed37_0.tar.bz2#4d59c254e01d9cde7957100457e2d5fb -https://conda.anaconda.org/conda-forge/noarch/font-ttf-ubuntu-0.83-hab24e00_0.tar.bz2#19410c3df09dfb12d1206132a1d357c5 -https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.40-h41732ed_0.conda#7aca3059a1729aa76c597603f10b0dd3 -https://conda.anaconda.org/conda-forge/linux-64/libboost-headers-1.82.0-ha770c72_6.conda#a943dcb8fd22cf23ce901ac84f6538c2 -https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-13.2.0-h7e041cc_2.conda#9172c297304f2a20134fc56c97fbe229 -https://conda.anaconda.org/conda-forge/noarch/nomkl-1.0-h5ca1d4c_0.tar.bz2#9a66894dfd07c4510beb6b3f9672ccc0 -https://conda.anaconda.org/conda-forge/noarch/poppler-data-0.4.12-hd8ed1ab_0.conda#d8d7293c5b37f39b2ac32940621c6592 -https://conda.anaconda.org/conda-forge/linux-64/python_abi-3.11-4_cp311.conda#d786502c97404c94d7d58d258a445a65 -https://conda.anaconda.org/conda-forge/noarch/tzdata-2023c-h71feb2d_0.conda#939e3e74d8be4dac89ce83b20de2492a -https://conda.anaconda.org/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2#f766549260d6815b0c52253f1fb1bb29 -https://conda.anaconda.org/conda-forge/linux-64/libgomp-13.2.0-h807b86a_2.conda#e2042154faafe61969556f28bade94b9 -https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2#73aaf86a425cc6e73fcf236a5a46396d -https://conda.anaconda.org/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2#fee5683a3f04bd15cbd8318b096a27ab -https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-13.2.0-h807b86a_2.conda#c28003b0be0494f9a7664389146716ff -https://conda.anaconda.org/conda-forge/linux-64/aws-c-common-0.9.3-hd590300_0.conda#434466e97a4174b0c4de114eb7100550 -https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-h7f98852_4.tar.bz2#a1fd65c7ccbf10880423d82bca54eb54 -https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.20.1-hd590300_0.conda#6642e4faa4804be3a0e7edfefbd16595 -https://conda.anaconda.org/conda-forge/linux-64/geos-3.12.0-h59595ed_0.conda#3fdf79ef322c8379ae83be491d805369 -https://conda.anaconda.org/conda-forge/linux-64/gettext-0.21.1-h27087fc_0.tar.bz2#14947d8770185e5153fdd04d4673ed37 -https://conda.anaconda.org/conda-forge/linux-64/gflags-2.2.2-he1b5a44_1004.tar.bz2#cddaf2c63ea4a5901cf09524c490ecdc -https://conda.anaconda.org/conda-forge/linux-64/giflib-5.2.1-h0b41bf4_3.conda#96f3b11872ef6fad973eac856cd2624f -https://conda.anaconda.org/conda-forge/linux-64/icu-73.2-h59595ed_0.conda#cc47e1facc155f91abd89b11e48e72ff -https://conda.anaconda.org/conda-forge/linux-64/json-c-0.17-h7ab15ed_0.conda#9961b1f100c3b6852bd97c9233d06979 -https://conda.anaconda.org/conda-forge/linux-64/keyutils-1.6.1-h166bdaf_0.tar.bz2#30186d27e2c9fa62b45fb1476b7200e3 -https://conda.anaconda.org/conda-forge/linux-64/lerc-4.0.0-h27087fc_0.tar.bz2#76bbff344f0134279f225174e9064c8f -https://conda.anaconda.org/conda-forge/linux-64/libabseil-20230802.1-cxx17_h59595ed_0.conda#2785ddf4cb0e7e743477991d64353947 -https://conda.anaconda.org/conda-forge/linux-64/libaec-1.1.2-h59595ed_1.conda#127b0be54c1c90760d7fe02ea7a56426 -https://conda.anaconda.org/conda-forge/linux-64/libbrotlicommon-1.1.0-hd590300_1.conda#aec6c91c7371c26392a06708a73c70e5 -https://conda.anaconda.org/conda-forge/linux-64/libcrc32c-1.1.2-h9c3ff4c_0.tar.bz2#c965a5aa0d5c1c37ffc62dff36e28400 -https://conda.anaconda.org/conda-forge/linux-64/libdeflate-1.19-hd590300_0.conda#1635570038840ee3f9c71d22aa5b8b6d -https://conda.anaconda.org/conda-forge/linux-64/libev-4.33-h516909a_1.tar.bz2#6f8720dff19e17ce5d48cfe7f3d2f0a3 -https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.5.0-hcb278e6_1.conda#6305a3dd2752c76335295da4e581f2fd -https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.2-h7f98852_5.tar.bz2#d645c6d2ac96843a2bfaccd2d62b3ac3 -https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-13.2.0-ha4646dd_2.conda#78fdab09d9138851dde2b5fe2a11019e -https://conda.anaconda.org/conda-forge/linux-64/libiconv-1.17-h166bdaf_0.tar.bz2#b62b52da46c39ee2bc3c162ac7f1804d -https://conda.anaconda.org/conda-forge/linux-64/libjpeg-turbo-3.0.0-hd590300_1.conda#ea25936bb4080d843790b586850f82b8 -https://conda.anaconda.org/conda-forge/linux-64/libnsl-2.0.1-hd590300_0.conda#30fd6e37fe21f86f4bd26d6ee73eeec7 -https://conda.anaconda.org/conda-forge/linux-64/libnuma-2.0.16-h0b41bf4_1.conda#28bfe2cb11357ccc5be21101a6b7ce86 -https://conda.anaconda.org/conda-forge/linux-64/libsodium-1.0.18-h36c2ea0_1.tar.bz2#c3788462a6fbddafdb413a9f9053e58d -https://conda.anaconda.org/conda-forge/linux-64/libspatialindex-1.9.3-h9c3ff4c_4.tar.bz2#d87fbe9c0ff589e802ff13872980bfd9 -https://conda.anaconda.org/conda-forge/linux-64/libutf8proc-2.8.0-h166bdaf_0.tar.bz2#ede4266dc02e875fe1ea77b25dd43747 -https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda#40b61aab5c7ba9ff276c41cfffe6b80b -https://conda.anaconda.org/conda-forge/linux-64/libuv-1.46.0-hd590300_0.conda#d23c76f7e6dcd6243d1b6ef5e62d17d2 -https://conda.anaconda.org/conda-forge/linux-64/libwebp-base-1.3.2-hd590300_0.conda#30de3fd9b3b602f7473f30e684eeea8c -https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.2.13-hd590300_5.conda#f36c115f1ee199da648e0597ec2047ad -https://conda.anaconda.org/conda-forge/linux-64/lz4-c-1.9.4-hcb278e6_0.conda#318b08df404f9c9be5712aaa5a6f0bb0 -https://conda.anaconda.org/conda-forge/linux-64/lzo-2.10-h516909a_1000.tar.bz2#bb14fcb13341b81d5eb386423b9d2bac -https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.4-hcb278e6_0.conda#681105bccc2a3f7f1a837d47d39c9179 -https://conda.anaconda.org/conda-forge/linux-64/nspr-4.35-h27087fc_0.conda#da0ec11a6454ae19bff5b02ed881a2b1 -https://conda.anaconda.org/conda-forge/linux-64/openssl-3.1.3-hd590300_0.conda#7bb88ce04c8deb9f7d763ae04a1da72f -https://conda.anaconda.org/conda-forge/linux-64/pixman-0.42.2-h59595ed_0.conda#700edd63ccd5fc66b70b1c028cea9a68 -https://conda.anaconda.org/conda-forge/linux-64/pthread-stubs-0.4-h36c2ea0_1001.tar.bz2#22dad4df6e8630e8dff2428f6f6a7036 -https://conda.anaconda.org/conda-forge/linux-64/rdma-core-28.9-h59595ed_1.conda#aeffb7c06b5f65e55e6c637408dc4100 -https://conda.anaconda.org/conda-forge/linux-64/re2-2023.03.02-h8c504da_0.conda#206f8fa808748f6e90599c3368a1114e -https://conda.anaconda.org/conda-forge/linux-64/snappy-1.1.10-h9fff704_0.conda#e6d228cd0bb74a51dd18f5bfce0b4115 -https://conda.anaconda.org/conda-forge/linux-64/tzcode-2023c-h0b41bf4_0.conda#0c0533894f21c3d35697cb8378d390e2 -https://conda.anaconda.org/conda-forge/linux-64/uriparser-0.9.7-hcb278e6_1.conda#2c46deb08ba9b10e90d0a6401ad65deb -https://conda.anaconda.org/conda-forge/linux-64/xorg-kbproto-1.0.7-h7f98852_1002.tar.bz2#4b230e8381279d76131116660f5a241a -https://conda.anaconda.org/conda-forge/linux-64/xorg-libice-1.1.1-hd590300_0.conda#b462a33c0be1421532f28bfe8f4a7514 -https://conda.anaconda.org/conda-forge/linux-64/xorg-libxau-1.0.11-hd590300_0.conda#2c80dc38fface310c9bd81b17037fee5 -https://conda.anaconda.org/conda-forge/linux-64/xorg-libxdmcp-1.1.3-h7f98852_0.tar.bz2#be93aabceefa2fac576e971aef407908 -https://conda.anaconda.org/conda-forge/linux-64/xorg-renderproto-0.11.1-h7f98852_1002.tar.bz2#06feff3d2634e3097ce2fe681474b534 -https://conda.anaconda.org/conda-forge/linux-64/xorg-xextproto-7.3.0-h0b41bf4_1003.conda#bce9f945da8ad2ae9b1d7165a64d0f87 -https://conda.anaconda.org/conda-forge/linux-64/xorg-xproto-7.0.31-h7f98852_1007.tar.bz2#b4a4381d54784606820704f7b5f05a15 -https://conda.anaconda.org/conda-forge/linux-64/xz-5.2.6-h166bdaf_0.tar.bz2#2161070d867d1b1204ea749c8eec4ef0 -https://conda.anaconda.org/conda-forge/linux-64/yaml-0.2.5-h7f98852_2.tar.bz2#4cb3ad778ec2d5a7acbdf254eb1c42ae -https://conda.anaconda.org/conda-forge/linux-64/aws-c-cal-0.6.2-h09139f6_2.conda#29c3112841eee851f6f5451f6d705782 -https://conda.anaconda.org/conda-forge/linux-64/aws-c-compression-0.2.17-h184a658_3.conda#c62775b5028b5a4eda25037f9af7f5b3 -https://conda.anaconda.org/conda-forge/linux-64/aws-c-sdkutils-0.1.12-h184a658_2.conda#ba06d81b81ec3eaf4ee83cd47f808134 -https://conda.anaconda.org/conda-forge/linux-64/aws-checksums-0.1.17-h184a658_2.conda#10fcdbd02ba7fa0827fb8f7d94f8375b -https://conda.anaconda.org/conda-forge/linux-64/expat-2.5.0-hcb278e6_1.conda#8b9b5aca60558d02ddaa09d599e55920 -https://conda.anaconda.org/conda-forge/linux-64/glog-0.6.0-h6f12383_0.tar.bz2#b31f3565cb84435407594e548a2fb7b2 -https://conda.anaconda.org/conda-forge/linux-64/hdf4-4.2.15-h2a13503_7.conda#bd77f8da987968ec3927990495dc22e4 -https://conda.anaconda.org/conda-forge/linux-64/libbrotlidec-1.1.0-hd590300_1.conda#f07002e225d7a60a694d42a7bf5ff53f -https://conda.anaconda.org/conda-forge/linux-64/libbrotlienc-1.1.0-hd590300_1.conda#5fc11c6020d421960607d821310fcd4d -https://conda.anaconda.org/conda-forge/linux-64/libedit-3.1.20191231-he28a2e2_2.tar.bz2#4d331e44109e3f0e19b4cb8f9b82f3e1 -https://conda.anaconda.org/conda-forge/linux-64/libevent-2.1.12-hf998b51_1.conda#a1cfcc585f0c42bf8d5546bb1dfb668d -https://conda.anaconda.org/conda-forge/linux-64/libgfortran-ng-13.2.0-h69a702a_2.conda#e75a75a6eaf6f318dae2631158c46575 -https://conda.anaconda.org/conda-forge/linux-64/libkml-1.3.0-h01aab08_1018.conda#3eb5f16bcc8a02892199aa63555c731f -https://conda.anaconda.org/conda-forge/linux-64/libllvm14-14.0.6-hcd5def8_4.conda#73301c133ded2bf71906aa2104edae8b -https://conda.anaconda.org/conda-forge/linux-64/libnghttp2-1.52.0-h61bc06f_0.conda#613955a50485812985c059e7b269f42e -https://conda.anaconda.org/conda-forge/linux-64/libpng-1.6.39-h753d276_0.conda#e1c890aebdebbfbf87e2c917187b4416 -https://conda.anaconda.org/conda-forge/linux-64/libprotobuf-4.23.4-hf27288f_6.conda#f28b3651e20e63f7da58798880061089 -https://conda.anaconda.org/conda-forge/linux-64/librttopo-1.1.0-hb58d41b_14.conda#264f9a3a4ea52c8f4d3e8ae1213a3335 -https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.43.2-h2797004_0.conda#4b441a1ee22397d5a27dc1126b849edd -https://conda.anaconda.org/conda-forge/linux-64/libssh2-1.11.0-h0841786_0.conda#1f5a58e686b13bcfde88b93f547d23fe -https://conda.anaconda.org/conda-forge/linux-64/libxcb-1.15-h0b41bf4_0.conda#33277193f5b92bad9fdd230eb700929c -https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.11.5-h232c23b_1.conda#f3858448893839820d4bcfb14ad3ecdf -https://conda.anaconda.org/conda-forge/linux-64/libzip-1.10.1-h2629f0a_3.conda#ac79812548e7e8cf61f7b0abdef01d3b -https://conda.anaconda.org/conda-forge/linux-64/pandoc-2.19.2-h32600fe_2.conda#326f46f36d15c44cff5f81d505cb717f -https://conda.anaconda.org/conda-forge/linux-64/pcre2-10.40-hc3806b6_0.tar.bz2#69e2c796349cd9b273890bee0febfe1b -https://conda.anaconda.org/conda-forge/linux-64/readline-8.2-h8228510_1.conda#47d31b792659ce70f470b5c82fdfb7a4 -https://conda.anaconda.org/conda-forge/linux-64/s2n-1.3.54-h06160fa_0.conda#149520612b92991a7de6f17550a19739 -https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-h2797004_0.conda#513336054f884f95d9fd925748f41ef3 -https://conda.anaconda.org/conda-forge/linux-64/ucx-1.15.0-h64cca9d_0.conda#b35b1f1a9fdbf93266c91f297dc9060e -https://conda.anaconda.org/conda-forge/linux-64/xorg-libsm-1.2.4-h7391055_0.conda#93ee23f12bc2e684548181256edd2cf6 -https://conda.anaconda.org/conda-forge/linux-64/zeromq-4.3.5-h59595ed_0.conda#8851084c192dbc56215ac4e3c9aa30fa -https://conda.anaconda.org/conda-forge/linux-64/zlib-1.2.13-hd590300_5.conda#68c34ec6149623be41a1933ab996a209 -https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.5-hfc55251_0.conda#04b88013080254850d6c01ed54810589 -https://conda.anaconda.org/conda-forge/linux-64/aws-c-io-0.13.33-h161b759_0.conda#1f4e673ce48eaa46af6ce98781b89410 -https://conda.anaconda.org/conda-forge/linux-64/blosc-1.21.5-h0f2a231_0.conda#009521b7ed97cca25f8f997f9e745976 -https://conda.anaconda.org/conda-forge/linux-64/brotli-bin-1.1.0-hd590300_1.conda#39f910d205726805a958da408ca194ba -https://conda.anaconda.org/conda-forge/linux-64/freetype-2.12.1-h267a509_2.conda#9ae35c3d96db2c94ce0cef86efdfa2cb -https://conda.anaconda.org/conda-forge/linux-64/krb5-1.21.2-h659d440_0.conda#cd95826dbd331ed1be26bdf401432844 -https://conda.anaconda.org/conda-forge/linux-64/libarchive-3.7.2-h039dbb9_0.conda#611d6c83d1130ea60c916531adfb11db -https://conda.anaconda.org/conda-forge/linux-64/libglib-2.78.0-hebfc3b9_0.conda#e618003da3547216310088478e475945 -https://conda.anaconda.org/conda-forge/linux-64/libgrpc-1.57.0-ha4d0f93_2.conda#19973c7be5bd01eec5fded46d10ac46f -https://conda.anaconda.org/conda-forge/linux-64/libopenblas-0.3.24-pthreads_h413a1c8_0.conda#6e4ef6ca28655124dcde9bd500e44c32 -https://conda.anaconda.org/conda-forge/linux-64/libthrift-0.19.0-hb90f79a_1.conda#8cdb7d41faa0260875ba92414c487e2d -https://conda.anaconda.org/conda-forge/linux-64/libtiff-4.6.0-ha9c0a0a_2.conda#55ed21669b2015f77c180feb1dd41930 -https://conda.anaconda.org/conda-forge/linux-64/libxslt-1.1.37-h0054252_1.conda#f27960e8873abb5476e96ef33bdbdccd -https://conda.anaconda.org/conda-forge/linux-64/minizip-4.0.1-h0ab5242_5.conda#2f0f7031d8f0f9f6520093009eb3628f -https://conda.anaconda.org/conda-forge/linux-64/nodejs-20.8.1-h1990674_0.conda#05b928e13df9548a47568d581fdfa8a1 -https://conda.anaconda.org/conda-forge/linux-64/nss-3.94-h1d7d5a4_0.conda#7caef74bbfa730e014b20f0852068509 -https://conda.anaconda.org/conda-forge/linux-64/orc-1.9.0-h52d3b3c_2.conda#6e1931d3d8512593f606aa08d9bd5192 -https://conda.anaconda.org/conda-forge/linux-64/python-3.11.6-hab00c5b_0_cpython.conda#b0dfbe2fcbfdb097d321bfd50ecddab1 -https://conda.anaconda.org/conda-forge/linux-64/sqlite-3.43.2-h2c6b66d_0.conda#c37b95bcd6c6833dacfd5df0ae2f4303 -https://conda.anaconda.org/conda-forge/linux-64/xorg-libx11-1.8.7-h8ee46fc_0.conda#49e482d882669206653b095f5206c05b -https://conda.anaconda.org/conda-forge/noarch/aiofiles-23.1.0-pyhd8ed1ab_1.conda#4e0624567be59edd7d0fec20db4d7a9c -https://conda.anaconda.org/conda-forge/noarch/alabaster-0.7.13-pyhd8ed1ab_0.conda#06006184e203b61d3525f90de394471e -https://conda.anaconda.org/conda-forge/noarch/anyascii-0.3.2-pyhd8ed1ab_0.conda#70b6fc71d80ea6176f5302ebbeb13d8a -https://conda.anaconda.org/conda-forge/noarch/appdirs-1.4.4-pyh9f0ad1d_0.tar.bz2#5f095bc6454094e96f146491fd03633b -https://conda.anaconda.org/conda-forge/linux-64/astroid-3.0.1-py311h38be061_0.conda#1cfd7512ea9cf20a14568c6991da262f -https://conda.anaconda.org/conda-forge/noarch/attrs-23.1.0-pyh71513ae_1.conda#3edfead7cedd1ab4400a6c588f3e75f8 -https://conda.anaconda.org/conda-forge/linux-64/aws-c-event-stream-0.3.2-h6fea174_2.conda#e0670f76fe5783fc488619fbcc497816 -https://conda.anaconda.org/conda-forge/linux-64/aws-c-http-0.7.13-hb59894b_2.conda#02012f387c8b9e3a8312da89e5a251ec -https://conda.anaconda.org/conda-forge/noarch/backcall-0.2.0-pyh9f0ad1d_0.tar.bz2#6006a6d08a3fa99268a2681c7fb55213 -https://conda.anaconda.org/conda-forge/noarch/backoff-2.2.1-pyhd8ed1ab_0.tar.bz2#4600709bd85664d8606ae0c76642f8db -https://conda.anaconda.org/conda-forge/noarch/backports-1.0-pyhd8ed1ab_3.conda#54ca2e08b3220c148a1d8329c2678e02 -https://conda.anaconda.org/conda-forge/noarch/blinker-1.6.3-pyhd8ed1ab_0.conda#d33cf7357de636cec64320f0c4fb7b6f -https://conda.anaconda.org/conda-forge/linux-64/brotli-1.1.0-hd590300_1.conda#f27a24d46e3ea7b70a1f98e50c62508f -https://conda.anaconda.org/conda-forge/linux-64/brotli-python-1.1.0-py311hb755f60_1.conda#cce9e7c3f1c307f2a5fb08a2922d6164 -https://conda.anaconda.org/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2#576d629e47797577ab0f1b351297ef4a -https://conda.anaconda.org/conda-forge/noarch/cachetools-5.3.1-pyhd8ed1ab_0.conda#60b5eb16d9a7a5482ba37f67aa49db5b -https://conda.anaconda.org/conda-forge/noarch/cachy-0.3.0-pyhd8ed1ab_1.tar.bz2#5dfee17f24e2dfd18d7392b48c9351e2 -https://conda.anaconda.org/conda-forge/noarch/catalystcoop.dbfread-3.0.0-py_0.tar.bz2#301d8b0d49e76f6bd586d2c96c2e259e -https://conda.anaconda.org/conda-forge/linux-64/cchardet-2.1.7-py311hb755f60_5.conda#7e2bfbfc5c66756cc026984c25c9ec18 -https://conda.anaconda.org/conda-forge/noarch/certifi-2023.7.22-pyhd8ed1ab_0.conda#7f3dbc9179b4dde7da98dfb151d0ad22 -https://conda.anaconda.org/conda-forge/noarch/cfgv-3.3.1-pyhd8ed1ab_0.tar.bz2#ebb5f5f7dc4f1a3780ef7ea7738db08c -https://conda.anaconda.org/conda-forge/linux-64/chardet-5.2.0-py311h38be061_1.conda#b8cfb13de4dbe349a41800644391de6a -https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.3.0-pyhd8ed1ab_0.conda#fef8ef5f0a54546b9efee39468229917 -https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_0.conda#f3ad426304898027fc619827ff428eca -https://conda.anaconda.org/conda-forge/noarch/cloudpickle-3.0.0-pyhd8ed1ab_0.conda#753d29fe41bb881e4b9c004f0abf973f -https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2#3faab06a954c2a04039983f2c4a50d99 -https://conda.anaconda.org/conda-forge/noarch/crashtest-0.4.1-pyhd8ed1ab_0.tar.bz2#709a2295dd907bb34afb57d54320642f -https://conda.anaconda.org/conda-forge/noarch/cycler-0.12.1-pyhd8ed1ab_0.conda#5cd86562580f274031ede6aa6aa24441 -https://conda.anaconda.org/conda-forge/noarch/dagster-pipes-1.5.3-pyhd8ed1ab_1.conda#f1d822044ec73e262eb9de200e8ddc9e -https://conda.anaconda.org/conda-forge/noarch/dataclasses-0.8-pyhc8e2a94_3.tar.bz2#a362b2124b06aad102e2ee4581acee7d -https://conda.anaconda.org/conda-forge/linux-64/dbus-1.13.6-h5008d03_3.tar.bz2#ecfff944ba3960ecb334b9a2663d708d -https://conda.anaconda.org/conda-forge/linux-64/debugpy-1.8.0-py311hb755f60_1.conda#2c241533b8eafe8028442d46ef41eb13 -https://conda.anaconda.org/conda-forge/noarch/decorator-5.1.1-pyhd8ed1ab_0.tar.bz2#43afe5ab04e35e17ba28649471dd7364 -https://conda.anaconda.org/conda-forge/noarch/defusedxml-0.7.1-pyhd8ed1ab_0.tar.bz2#961b3a227b437d82ad7054484cfa71b2 -https://conda.anaconda.org/conda-forge/noarch/distlib-0.3.7-pyhd8ed1ab_0.conda#12d8aae6994f342618443a8f05c652a0 -https://conda.anaconda.org/conda-forge/noarch/docstring_parser-0.15-pyhd8ed1ab_0.conda#031fcb28b8e80c1f7bec22ccdf4904b2 -https://conda.anaconda.org/conda-forge/linux-64/docutils-0.20.1-py311h38be061_2.conda#33f8066e53679dd4be2355fec849bf01 -https://conda.anaconda.org/conda-forge/noarch/entrypoints-0.4-pyhd8ed1ab_0.tar.bz2#3cf04868fee0a029769bd41f4b2fbf2d -https://conda.anaconda.org/conda-forge/noarch/et_xmlfile-1.1.0-pyhd8ed1ab_0.conda#a2f2138597905eaa72e561d8efb42cf3 -https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.1.3-pyhd8ed1ab_0.conda#e6518222753f519e911e83136d2158d9 -https://conda.anaconda.org/conda-forge/noarch/executing-1.2.0-pyhd8ed1ab_0.tar.bz2#4c1bc140e2be5c8ba6e3acab99e25c50 -https://conda.anaconda.org/conda-forge/noarch/filelock-3.12.4-pyhd8ed1ab_0.conda#5173d4b8267a0699a43d73231e0b6596 -https://conda.anaconda.org/conda-forge/linux-64/fontconfig-2.14.2-h14ed4e7_0.conda#0f69b688f52ff6da70bccb7ff7001d1d -https://conda.anaconda.org/conda-forge/linux-64/freexl-2.0.0-h743c826_0.conda#12e6988845706b2cfbc3bc35c9a61a95 -https://conda.anaconda.org/conda-forge/linux-64/frozenlist-1.4.0-py311h459d7ec_1.conda#23d0b2d02252b32ee14e5063ccfb41e2 -https://conda.anaconda.org/conda-forge/noarch/fsspec-2023.9.2-pyh1a96a4e_0.conda#9d15cd3a0e944594ab528da37dc72ecc -https://conda.anaconda.org/conda-forge/linux-64/greenlet-3.0.0-py311hb755f60_1.conda#f902187d6de294292d8462bdcec9a7b2 -https://conda.anaconda.org/conda-forge/linux-64/grpcio-1.57.0-py311ha6695c7_2.conda#f2ba73bcabd8d7f3b7afc34c23800745 -https://conda.anaconda.org/conda-forge/noarch/hpack-4.0.0-pyh9f0ad1d_0.tar.bz2#914d6646c4dbb1fd3ff539830a12fd71 -https://conda.anaconda.org/conda-forge/linux-64/httptools-0.6.1-py311h459d7ec_0.conda#97b41332ad07a69a1ebb06e26aed50c8 -https://conda.anaconda.org/conda-forge/noarch/humanfriendly-10.0-pyhd8ed1ab_6.conda#2ed1fe4b9079da97c44cfe9c2e5078fd -https://conda.anaconda.org/conda-forge/noarch/hupper-1.12-pyhd8ed1ab_0.conda#2654ff96e839bc699e5c3780689a596b -https://conda.anaconda.org/conda-forge/noarch/hyperframe-6.0.1-pyhd8ed1ab_0.tar.bz2#9f765cbfab6870c8435b9eefecd7a1f4 -https://conda.anaconda.org/conda-forge/noarch/idna-3.4-pyhd8ed1ab_0.tar.bz2#34272b248891bddccc64479f9a7fffed -https://conda.anaconda.org/conda-forge/noarch/ijson-3.2.3-pyhd8ed1ab_0.conda#6b1e4cb33f797d6487efd3ebad39d103 -https://conda.anaconda.org/conda-forge/noarch/imagesize-1.4.1-pyhd8ed1ab_0.tar.bz2#7de5386c8fea29e76b303f37dde4c352 -https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_0.conda#f800d2da156d08e289b14e87e43c1ae5 -https://conda.anaconda.org/conda-forge/noarch/ipython_genutils-0.2.0-py_1.tar.bz2#5071c982548b3a20caf70462f04f5287 -https://conda.anaconda.org/conda-forge/noarch/itsdangerous-2.1.2-pyhd8ed1ab_0.tar.bz2#3c3de74912f11d2b590184f03c7cd09b -https://conda.anaconda.org/conda-forge/noarch/jeepney-0.8.0-pyhd8ed1ab_0.tar.bz2#9800ad1699b42612478755a2d26c722d -https://conda.anaconda.org/conda-forge/linux-64/jellyfish-1.0.1-py311h46250e7_1.conda#6f38f2017654d124c2745fad7eb96968 -https://conda.anaconda.org/conda-forge/noarch/jmespath-1.0.1-pyhd8ed1ab_0.tar.bz2#2cfa3e1cf3fb51bb9b17acc5b5e9ea11 -https://conda.anaconda.org/conda-forge/noarch/json5-0.9.14-pyhd8ed1ab_0.conda#dac1dabba2b5a9d1aee175c5fcc7b436 -https://conda.anaconda.org/conda-forge/linux-64/jsonpointer-2.4-py311h38be061_3.conda#41d52d822edf991bf0e6b08c1921a8ec -https://conda.anaconda.org/conda-forge/noarch/jupyterlab_widgets-3.0.9-pyhd8ed1ab_0.conda#8370e0a9dc443f9b45a23fd30e7a6b3b -https://conda.anaconda.org/conda-forge/linux-64/kiwisolver-1.4.5-py311h9547e67_1.conda#2c65bdf442b0d37aad080c8a4e0d452f -https://conda.anaconda.org/conda-forge/linux-64/lcms2-2.15-hb7c19ff_3.conda#e96637dd92c5f340215c753a5c9a22d7 -https://conda.anaconda.org/conda-forge/linux-64/libblas-3.9.0-19_linux64_openblas.conda#420f4e9be59d0dc9133a0f43f7bab3f3 -https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.4.0-hca28451_0.conda#1158ac1d2613b28685644931f11ee807 -https://conda.anaconda.org/conda-forge/linux-64/libpq-16.0-hfc447b1_1.conda#e4a9a5ba40123477db33e02a78dffb01 -https://conda.anaconda.org/conda-forge/linux-64/llvmlite-0.40.1-py311ha6695c7_0.conda#7a2b62d839516ba0cf56717e902229f4 -https://conda.anaconda.org/conda-forge/noarch/locket-1.0.0-pyhd8ed1ab_0.tar.bz2#91e27ef3d05cc772ce627e51cff111c4 -https://conda.anaconda.org/conda-forge/linux-64/lxml-4.9.3-py311h1a07684_1.conda#aab51e50d994e58efdfa5382139b0468 -https://conda.anaconda.org/conda-forge/noarch/marko-1.3.1-pyhd8ed1ab_0.conda#9651c1c1c19dbc072c557e3e2da38329 -https://conda.anaconda.org/conda-forge/linux-64/markupsafe-2.1.3-py311h459d7ec_1.conda#71120b5155a0c500826cf81536721a15 -https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.0-pyhd8ed1ab_0.tar.bz2#f8dab71fdc13b1bf29a01248b156d268 -https://conda.anaconda.org/conda-forge/noarch/mergedeep-1.3.4-pyhd8ed1ab_0.tar.bz2#1a160a3cab5cb6bd46264b52cd6f69a2 -https://conda.anaconda.org/conda-forge/noarch/mistune-3.0.1-pyhd8ed1ab_0.conda#1dad8397c94e4de97a70de552a7dcf49 -https://conda.anaconda.org/conda-forge/noarch/more-itertools-10.1.0-pyhd8ed1ab_0.conda#8549fafed0351bbfaa1ddaa15fdf9b4e -https://conda.anaconda.org/conda-forge/linux-64/msgpack-python-1.0.6-py311h9547e67_0.conda#e826b71bf3dc8c91ee097663e2bcface -https://conda.anaconda.org/conda-forge/linux-64/multidict-6.0.4-py311h459d7ec_1.conda#3dc76316237c8f7e7231d61b76c62b7c -https://conda.anaconda.org/conda-forge/noarch/munch-4.0.0-pyhd8ed1ab_0.conda#376b32e8f9d3eacbd625f37d39bd507d -https://conda.anaconda.org/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2#2ba8498c1018c1e9c61eb99b973dfe19 -https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda#4eccaeba205f0aed9ac3a9ea58568ca3 -https://conda.anaconda.org/conda-forge/noarch/nest-asyncio-1.5.8-pyhd8ed1ab_0.conda#a4f0e4519bc50eee4f53f689be9607f7 -https://conda.anaconda.org/conda-forge/noarch/networkx-3.1-pyhd8ed1ab_0.conda#254f787d5068bc89f578bf63893ce8b4 -https://conda.anaconda.org/conda-forge/linux-64/nh3-0.2.14-py311h46250e7_1.conda#8faffafe1f60438f96710edef4fdafe5 -https://conda.anaconda.org/conda-forge/linux-64/openjpeg-2.5.0-h488ebb8_3.conda#128c25b7fe6a25286a48f3a6a9b5b6f3 -https://conda.anaconda.org/conda-forge/noarch/packaging-23.2-pyhd8ed1ab_0.conda#79002079284aa895f883c6b7f3f88fd6 -https://conda.anaconda.org/conda-forge/noarch/pandocfilters-1.5.0-pyhd8ed1ab_0.tar.bz2#457c2c8c08e54905d6954e79cb5b5db9 -https://conda.anaconda.org/conda-forge/noarch/parso-0.8.3-pyhd8ed1ab_0.tar.bz2#17a565a0c3899244e938cdf417e7b094 -https://conda.anaconda.org/conda-forge/noarch/pastel-0.2.1-pyhd8ed1ab_0.tar.bz2#a4eea5bff523f26442405bc5d1f52adb -https://conda.anaconda.org/conda-forge/noarch/pathspec-0.11.2-pyhd8ed1ab_0.conda#e41debb259e68490e3ab81e46b639ab6 -https://conda.anaconda.org/conda-forge/noarch/petl-1.7.14-pyhd8ed1ab_0.conda#65813db01f2331768d909c0852ff5d70 -https://conda.anaconda.org/conda-forge/noarch/pickleshare-0.7.5-py_1003.tar.bz2#415f0ebb6198cc2801c73438a9fb5761 -https://conda.anaconda.org/conda-forge/noarch/pkginfo-1.9.6-pyhd8ed1ab_0.conda#be1e9f1c65a1ed0f2ae9352fec99db64 -https://conda.anaconda.org/conda-forge/noarch/pkgutil-resolve-name-1.3.10-pyhd8ed1ab_1.conda#405678b942f2481cecdb3e010f4925d9 -https://conda.anaconda.org/conda-forge/noarch/pluggy-1.3.0-pyhd8ed1ab_0.conda#2390bd10bed1f3fdc7a537fb5a447d8d -https://conda.anaconda.org/conda-forge/noarch/prometheus_client-0.17.1-pyhd8ed1ab_0.conda#02153b6b760bbec00cfe9e4c97993d06 -https://conda.anaconda.org/conda-forge/linux-64/psutil-5.9.5-py311h459d7ec_1.conda#490d7fa8675afd1aa6f1b2332d156a45 -https://conda.anaconda.org/conda-forge/noarch/ptyprocess-0.7.0-pyhd3deb0d_0.tar.bz2#359eeb6536da0e687af562ed265ec263 -https://conda.anaconda.org/conda-forge/noarch/pure_eval-0.2.2-pyhd8ed1ab_0.tar.bz2#6784285c7e55cb7212efabc79e4c2883 -https://conda.anaconda.org/conda-forge/noarch/pyasn1-0.5.0-pyhd8ed1ab_0.conda#4b1c0db24e212190be1969b0aa490ad8 -https://conda.anaconda.org/conda-forge/noarch/pycparser-2.21-pyhd8ed1ab_0.tar.bz2#076becd9e05608f8dc72757d5f3a91ff -https://conda.anaconda.org/conda-forge/noarch/pygments-2.16.1-pyhd8ed1ab_0.conda#40e5cb18165466773619e5c963f00a7b -https://conda.anaconda.org/conda-forge/noarch/pyjwt-2.8.0-pyhd8ed1ab_0.conda#912c0194f898fdb783021fd25f913c31 -https://conda.anaconda.org/conda-forge/noarch/pylev-1.4.0-pyhd8ed1ab_0.tar.bz2#edf8651c4379d9d1495ad6229622d150 -https://conda.anaconda.org/conda-forge/noarch/pyparsing-3.1.1-pyhd8ed1ab_0.conda#176f7d56f0cfe9008bdf1bccd7de02fb -https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2#2a7de29fb590ca14b5243c4c812c8025 -https://conda.anaconda.org/conda-forge/noarch/python-dotenv-1.0.0-pyhd8ed1ab_1.conda#111e7f9edd31865e2659fa9aad8ec8fd -https://conda.anaconda.org/conda-forge/noarch/python-fastjsonschema-2.18.1-pyhd8ed1ab_0.conda#305141cff54af2f90e089d868fffce28 -https://conda.anaconda.org/conda-forge/noarch/python-json-logger-2.0.7-pyhd8ed1ab_0.conda#a61bf9ec79426938ff785eb69dbb1960 -https://conda.anaconda.org/conda-forge/noarch/python-multipart-0.0.6-pyhd8ed1ab_0.conda#f4f642eeda814c1b65f46fbdf7e89096 -https://conda.anaconda.org/conda-forge/noarch/python-tzdata-2023.3-pyhd8ed1ab_0.conda#2590495f608a63625e165915fb4e2e34 -https://conda.anaconda.org/conda-forge/noarch/pytz-2023.3.post1-pyhd8ed1ab_0.conda#c93346b446cd08c169d843ae5fc0da97 -https://conda.anaconda.org/conda-forge/noarch/pytzdata-2020.1-pyh9f0ad1d_0.tar.bz2#7dd824593f3a861130ac17c6571546e2 -https://conda.anaconda.org/conda-forge/noarch/pywin32-on-windows-0.1.0-pyh1179c8e_3.tar.bz2#2807a0becd1d986fe1ef9b7f8135f215 -https://conda.anaconda.org/conda-forge/noarch/pyxlsb-1.0.10-pyhd8ed1ab_0.tar.bz2#0c14e44bc93a99cdc11398311c3c0dcf -https://conda.anaconda.org/conda-forge/linux-64/pyyaml-6.0.1-py311h459d7ec_1.conda#52719a74ad130de8fb5d047dc91f247a -https://conda.anaconda.org/conda-forge/linux-64/pyzmq-25.1.1-py311h75c88c4_1.conda#b858421f6a3052950c33aecd44a905cb -https://conda.anaconda.org/conda-forge/linux-64/regex-2023.10.3-py311h459d7ec_0.conda#c690bffc22c33b3a976d588937eb32bf -https://conda.anaconda.org/conda-forge/noarch/rfc3986-2.0.0-pyhd8ed1ab_0.tar.bz2#d337886e38f965bf97aaec382ff6db00 -https://conda.anaconda.org/conda-forge/noarch/rfc3986-validator-0.1.1-pyh9f0ad1d_0.tar.bz2#912a71cc01012ee38e6b90ddd561e36f -https://conda.anaconda.org/conda-forge/linux-64/rpds-py-0.10.6-py311h46250e7_0.conda#b7237977dbca779aaaab65f42f5558d9 -https://conda.anaconda.org/conda-forge/linux-64/rtree-1.1.0-py311h3bb2b0f_0.conda#341bbb97186f23835d2d0456d96c5aba -https://conda.anaconda.org/conda-forge/linux-64/ruamel.yaml.clib-0.2.7-py311h459d7ec_2.conda#56bc3fe5180c0b23e05c7a5708153ac7 -https://conda.anaconda.org/conda-forge/linux-64/ruff-0.1.1-py311h7145743_0.conda#fe053898a5654ca5d8a0f1557a16b6a5 -https://conda.anaconda.org/conda-forge/noarch/send2trash-1.8.2-pyh41d4057_0.conda#ada5a17adcd10be4fc7e37e4166ba0e2 -https://conda.anaconda.org/conda-forge/noarch/setuptools-68.2.2-pyhd8ed1ab_0.conda#fc2166155db840c634a1291a5c35a709 -https://conda.anaconda.org/conda-forge/noarch/shellingham-1.5.3-pyhd8ed1ab_0.conda#83795060a5d8cd12b90a58bd62bc251e -https://conda.anaconda.org/conda-forge/linux-64/simpleeval-0.9.13-py311h459d7ec_1.conda#147dfc4c21c86bb09f0033148c3bc9a2 -https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2#e5f25f8dbc060e9a8d912e432202afc2 -https://conda.anaconda.org/conda-forge/noarch/smmap-5.0.0-pyhd8ed1ab_0.tar.bz2#62f26a3d1387acee31322208f0cfa3e0 -https://conda.anaconda.org/conda-forge/noarch/sniffio-1.3.0-pyhd8ed1ab_0.tar.bz2#dd6cbc539e74cb1f430efbd4575b9303 -https://conda.anaconda.org/conda-forge/noarch/snowballstemmer-2.2.0-pyhd8ed1ab_0.tar.bz2#4d22a9315e78c6827f806065957d566e -https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.5-pyhd8ed1ab_1.conda#3f144b2c34f8cb5a9abd9ed23a39c561 -https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-jsmath-1.0.1-pyhd8ed1ab_0.conda#da1d979339e2714c30a8e806a33ec087 -https://conda.anaconda.org/conda-forge/noarch/stringcase-1.2.0-py_0.tar.bz2#26a9caf3173939377bac7152379daac0 -https://conda.anaconda.org/conda-forge/noarch/tabulate-0.9.0-pyhd8ed1ab_1.tar.bz2#4759805cce2d914c38472f70bf4d8bcb -https://conda.anaconda.org/conda-forge/noarch/text-unidecode-1.3-pyhd8ed1ab_1.conda#ba8aba332d8868897ce44ad74015a7fe -https://conda.anaconda.org/conda-forge/noarch/threadpoolctl-3.2.0-pyha21a80b_0.conda#978d03388b62173b8e6f79162cf52b86 -https://conda.anaconda.org/conda-forge/noarch/toml-0.10.2-pyhd8ed1ab_0.tar.bz2#f832c45a477c78bebd107098db465095 -https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2#5844808ffab9ebdb694585b50ba02a96 -https://conda.anaconda.org/conda-forge/noarch/tomlkit-0.12.1-pyha770c72_0.conda#62f5b331c53d73e2f6c4c130b53518a0 -https://conda.anaconda.org/conda-forge/noarch/toolz-0.12.0-pyhd8ed1ab_0.tar.bz2#92facfec94bc02d6ccf42e7173831a36 -https://conda.anaconda.org/conda-forge/noarch/toposort-1.10-pyhd8ed1ab_0.conda#aeef653e20028f19a3c2cc70e166b509 -https://conda.anaconda.org/conda-forge/linux-64/tornado-6.3.3-py311h459d7ec_1.conda#a700fcb5cedd3e72d0c75d095c7a6eda -https://conda.anaconda.org/conda-forge/noarch/traitlets-5.11.2-pyhd8ed1ab_0.conda#bd3f90f7551e1cffb1f402880eb2cef1 -https://conda.anaconda.org/conda-forge/noarch/types-python-dateutil-2.8.19.14-pyhd8ed1ab_0.conda#4df15c51a543e806d439490b862be1c6 -https://conda.anaconda.org/conda-forge/noarch/types-pyyaml-6.0.12.12-pyhd8ed1ab_0.conda#0cb14c80f66937df894d60626dd1921f -https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.8.0-pyha770c72_0.conda#5b1be40a26d10a06f6d4f1f9e19fa0c7 -https://conda.anaconda.org/conda-forge/noarch/typing_utils-0.1.0-pyhd8ed1ab_0.tar.bz2#eb67e3cace64c66233e2d35949e20f92 -https://conda.anaconda.org/conda-forge/noarch/unicodecsv-0.14.1-py_1.tar.bz2#3b2b0e9d7f73db2b5e45db113badb7f7 -https://conda.anaconda.org/conda-forge/noarch/uri-template-1.3.0-pyhd8ed1ab_0.conda#0944dc65cb4a9b5b68522c3bb585d41c -https://conda.anaconda.org/conda-forge/linux-64/uvloop-0.18.0-py311h460e60f_0.conda#389048f4f426f8fa7e7af4f03056fdf4 -https://conda.anaconda.org/conda-forge/noarch/validators-0.22.0-pyhd8ed1ab_0.conda#56435633ef70e7b92c54151599cbf757 -https://conda.anaconda.org/conda-forge/noarch/webcolors-1.13-pyhd8ed1ab_0.conda#166212fe82dad8735550030488a01d03 -https://conda.anaconda.org/conda-forge/noarch/webencodings-0.5.1-pyhd8ed1ab_2.conda#daf5160ff9cde3a468556965329085b9 -https://conda.anaconda.org/conda-forge/noarch/websocket-client-1.6.4-pyhd8ed1ab_0.conda#bdb77b28cf16deac0eef431a068320e8 -https://conda.anaconda.org/conda-forge/linux-64/websockets-10.4-py311hd4cff14_1.tar.bz2#ff58b7e4d10dd88e679cf86988d3fbfb -https://conda.anaconda.org/conda-forge/noarch/wheel-0.41.2-pyhd8ed1ab_0.conda#1ccd092478b3e0ee10d7a891adbf8a4f -https://conda.anaconda.org/conda-forge/noarch/widgetsnbextension-4.0.9-pyhd8ed1ab_0.conda#82617d07b2f5f5a96296d3c19684b37a -https://conda.anaconda.org/conda-forge/noarch/xlrd-2.0.1-pyhd8ed1ab_3.tar.bz2#97dfcd5ff030d829b55f67e82f928093 -https://conda.anaconda.org/conda-forge/noarch/xlsxwriter-3.1.7-pyhd8ed1ab_0.conda#57ed13683ed80362014f6499e27f7b05 -https://conda.anaconda.org/conda-forge/linux-64/xorg-libxext-1.3.4-h0b41bf4_2.conda#82b6df12252e6f32402b96dacc656fec -https://conda.anaconda.org/conda-forge/linux-64/xorg-libxrender-0.9.11-hd590300_0.conda#ed67c36f215b310412b2af935bf3e530 -https://conda.anaconda.org/conda-forge/noarch/xyzservices-2023.10.0-pyhd8ed1ab_0.conda#9c6fe7db9c9133ade38b9a5011103243 -https://conda.anaconda.org/conda-forge/noarch/zipp-3.17.0-pyhd8ed1ab_0.conda#2e4d6bc0b14e10f895fc6791a7d9b26a -https://conda.anaconda.org/conda-forge/noarch/aiosignal-1.3.1-pyhd8ed1ab_0.tar.bz2#d1e1eb7e21a9e2c74279d87dafb68156 -https://conda.anaconda.org/conda-forge/noarch/anyio-4.0.0-pyhd8ed1ab_0.conda#3c4e99d3ae4ec033d4dd99fb5220e540 -https://conda.anaconda.org/conda-forge/noarch/asgi-csrf-0.9-pyhd8ed1ab_0.tar.bz2#eae21b40ce9beded0ce0e5c67180b1e7 -https://conda.anaconda.org/conda-forge/noarch/asgiref-3.7.2-pyhd8ed1ab_0.conda#596932155bf88bb6837141550cb721b0 -https://conda.anaconda.org/conda-forge/noarch/asttokens-2.4.0-pyhd8ed1ab_0.conda#056f04e51dd63337e8d7c425c18c86f1 -https://conda.anaconda.org/conda-forge/noarch/async-lru-2.0.4-pyhd8ed1ab_0.conda#3d081de3a6ea9f894bbb585e8e3a4dcb -https://conda.anaconda.org/conda-forge/linux-64/aws-c-auth-0.7.4-h1083cbe_2.conda#abffe039376c2c06d55d01ef2edee6dc -https://conda.anaconda.org/conda-forge/linux-64/aws-c-mqtt-0.9.7-h55cd26b_0.conda#0c201052392df0eb8845dc67cbb9c6f7 -https://conda.anaconda.org/conda-forge/noarch/babel-2.13.0-pyhd8ed1ab_0.conda#22541af7a9eb59fc6afcadb7ecdf9219 -https://conda.anaconda.org/conda-forge/noarch/backports.functools_lru_cache-1.6.5-pyhd8ed1ab_0.conda#6b1b907661838a75d067a22f87996b2e -https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.12.2-pyha770c72_0.conda#a362ff7d976217f8fa78c0f1c4f59717 -https://conda.anaconda.org/conda-forge/noarch/bleach-6.1.0-pyhd8ed1ab_0.conda#0ed9d7c0e9afa7c025807a9a8136ea3e -https://conda.anaconda.org/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2#9b347a7ec10940d3f7941ff6c460b551 -https://conda.anaconda.org/conda-forge/linux-64/cairo-1.18.0-h3faef2a_0.conda#f907bb958910dc404647326ca80c263e -https://conda.anaconda.org/conda-forge/linux-64/cffi-1.16.0-py311hb3a22ac_0.conda#b3469563ac5e808b0cd92810d0697043 -https://conda.anaconda.org/conda-forge/linux-64/cfitsio-4.3.0-hbdc6101_0.conda#797554b8b7603011e8677884381fbcc5 -https://conda.anaconda.org/conda-forge/noarch/click-default-group-1.2.4-pyhd8ed1ab_0.conda#7c2b6931f9b3548ed78478332095c3e9 -https://conda.anaconda.org/conda-forge/noarch/click-default-group-wheel-1.2.2-pyhd8ed1ab_0.tar.bz2#2228f2640491b5e9c03b6f6346cba887 -https://conda.anaconda.org/conda-forge/noarch/click-plugins-1.1.1-py_0.tar.bz2#4fd2c6b53934bd7d96d1f3fdaf99b79f -https://conda.anaconda.org/conda-forge/noarch/cligj-0.7.2-pyhd8ed1ab_1.tar.bz2#a29b7c141d6b2de4bb67788a5f107734 -https://conda.anaconda.org/conda-forge/noarch/clikit-0.6.2-pyhd8ed1ab_2.conda#02abb7b66b02e8b9f5a9b05454400087 -https://conda.anaconda.org/conda-forge/noarch/coloredlogs-14.0-pyhd8ed1ab_3.tar.bz2#6b92f390b198cb631c95fd37097098c8 -https://conda.anaconda.org/conda-forge/noarch/comm-0.1.4-pyhd8ed1ab_0.conda#c8eaca39e2b6abae1fc96acc929ae939 -https://conda.anaconda.org/conda-forge/linux-64/coverage-7.3.2-py311h459d7ec_0.conda#7b3145fed7adc7c63a0e08f6f29f5480 -https://conda.anaconda.org/conda-forge/linux-64/fonttools-4.43.1-py311h459d7ec_0.conda#ac995b680de3bdce2531c553b27dfe7e -https://conda.anaconda.org/conda-forge/noarch/gitdb-4.0.11-pyhd8ed1ab_0.conda#623b19f616f2ca0c261441067e18ae40 -https://conda.anaconda.org/conda-forge/noarch/graphql-core-3.2.3-pyhd8ed1ab_0.tar.bz2#87cafe8c7638a5ac6fd8ec8fb01f1508 -https://conda.anaconda.org/conda-forge/noarch/h11-0.14.0-pyhd8ed1ab_0.tar.bz2#b21ed0883505ba1910994f1df031a428 -https://conda.anaconda.org/conda-forge/noarch/h2-4.1.0-pyhd8ed1ab_0.tar.bz2#b748fbf7060927a6e82df7cb5ee8f097 -https://conda.anaconda.org/conda-forge/linux-64/hdf5-1.14.2-nompi_h4f84152_100.conda#2de6a9bc8083b49f09b2f6eb28d3ba3c -https://conda.anaconda.org/conda-forge/noarch/html5lib-1.1-pyh9f0ad1d_0.tar.bz2#b2355343d6315c892543200231d7154a -https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-6.8.0-pyha770c72_0.conda#4e9f59a060c3be52bc4ddc46ee9b6946 -https://conda.anaconda.org/conda-forge/noarch/importlib_resources-6.1.0-pyhd8ed1ab_0.conda#48b0d98e0c0ec810d3ccc2a0926c8c0e -https://conda.anaconda.org/conda-forge/noarch/isodate-0.6.1-pyhd8ed1ab_0.tar.bz2#4a62c93c1b5c0b920508ae3fd285eaf5 -https://conda.anaconda.org/conda-forge/noarch/janus-1.0.0-pyhd8ed1ab_0.tar.bz2#304b5bce5a9b3590d825ffd85ac63471 -https://conda.anaconda.org/conda-forge/noarch/jaraco.classes-3.3.0-pyhd8ed1ab_0.conda#e9f79248d30e942f7c358ff21a1790f5 -https://conda.anaconda.org/conda-forge/noarch/jedi-0.19.1-pyhd8ed1ab_0.conda#81a3be0b2023e1ea8555781f0ad904a2 -https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.2-pyhd8ed1ab_1.tar.bz2#c8490ed5c70966d232fdd389d0dbed37 -https://conda.anaconda.org/conda-forge/noarch/joblib-1.3.2-pyhd8ed1ab_0.conda#4da50d410f553db77e62ab62ffaa1abc -https://conda.anaconda.org/conda-forge/noarch/jsonlines-4.0.0-pyhd8ed1ab_0.conda#df32eb56c2a48a5ca9465aef29dd46bc -https://conda.anaconda.org/conda-forge/noarch/jupyterlab_pygments-0.2.2-pyhd8ed1ab_0.tar.bz2#243f63592c8e449f40cd42eb5cf32f40 -https://conda.anaconda.org/conda-forge/noarch/latexcodec-2.0.1-pyh9f0ad1d_0.tar.bz2#8d67904973263afd2985ba56aa2d6bb4 -https://conda.anaconda.org/conda-forge/linux-64/libcblas-3.9.0-19_linux64_openblas.conda#d12374af44575413fbbd4a217d46ea33 -https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-2.12.0-h8d7e28b_2.conda#ed3cd026aa12259ce96c0552873705c9 -https://conda.anaconda.org/conda-forge/linux-64/liblapack-3.9.0-19_linux64_openblas.conda#9f100edf65436e3eabc2a51fc00b2c37 -https://conda.anaconda.org/conda-forge/noarch/linear-tsv-1.1.0-py_1.tar.bz2#16491914064fdfe1b9a8fba94ac90e9a -https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_0.conda#93a8e71256479c62074356ef6ebf501b -https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.1.6-pyhd8ed1ab_0.tar.bz2#b21613793fcc81d944c76c9f2864a7de -https://conda.anaconda.org/conda-forge/noarch/nodeenv-1.8.0-pyhd8ed1ab_0.conda#2a75b296096adabbabadd5e9782e5fcc -https://conda.anaconda.org/conda-forge/linux-64/openpyxl-3.1.2-py311h459d7ec_1.conda#5c809fb753f06a04c2f114394404769e -https://conda.anaconda.org/conda-forge/noarch/overrides-7.4.0-pyhd8ed1ab_0.conda#4625b7b01d7f4ac9c96300a5515acfaa -https://conda.anaconda.org/conda-forge/noarch/partd-1.4.1-pyhd8ed1ab_0.conda#acf4b7c0bcd5fa3b0e05801c4d2accd6 -https://conda.anaconda.org/conda-forge/noarch/pexpect-4.8.0-pyh1a96a4e_2.tar.bz2#330448ce4403cc74990ac07c555942a1 -https://conda.anaconda.org/conda-forge/linux-64/pillow-10.1.0-py311ha6c5da5_0.conda#83a988daf5c49e57f7d2086fb6781fe8 -https://conda.anaconda.org/conda-forge/noarch/pint-0.22-pyhd8ed1ab_1.conda#a719c3f3959c529e558e9ed9f98c3f30 -https://conda.anaconda.org/conda-forge/noarch/pip-23.3.1-pyhd8ed1ab_0.conda#2400c0b86889f43aa52067161e1fb108 -https://conda.anaconda.org/conda-forge/linux-64/postgresql-16.0-h8972f4a_1.conda#6ce1ab5480d3aa4308654971ac5f731b -https://conda.anaconda.org/conda-forge/linux-64/proj-9.3.0-h1d62c97_2.conda#b5e57a0c643da391bef850922963eece -https://conda.anaconda.org/conda-forge/linux-64/protobuf-4.23.4-py311h46cbc50_3.conda#94c6e34f880bcadefa6165f94a9ef69d -https://conda.anaconda.org/conda-forge/noarch/pyasn1-modules-0.3.0-pyhd8ed1ab_0.conda#26db749166cdca55e5ef1ffdc7767d0e -https://conda.anaconda.org/conda-forge/noarch/pyproject-api-1.6.1-pyhd8ed1ab_0.conda#1815c7974568079cf384f012de5ea1b7 -https://conda.anaconda.org/conda-forge/noarch/pyproject_hooks-1.0.0-pyhd8ed1ab_0.conda#21de50391d584eb7f4441b9de1ad773f -https://conda.anaconda.org/conda-forge/noarch/pytest-7.4.2-pyhd8ed1ab_0.conda#6dd662ff5ac9a783e5c940ce9f3fe649 -https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.8.2-pyhd8ed1ab_0.tar.bz2#dd999d1cc9f79e67dbb855c8924c7984 -https://conda.anaconda.org/conda-forge/noarch/python-slugify-8.0.1-pyhd8ed1ab_2.conda#519897ff446e0dc056e12402e6785cd5 -https://conda.anaconda.org/conda-forge/noarch/pyu2f-0.1.5-pyhd8ed1ab_0.tar.bz2#caabbeaa83928d0c3e3949261daa18eb -https://conda.anaconda.org/conda-forge/noarch/qtpy-2.4.0-pyhd8ed1ab_0.conda#a4c1fc5f8ef46ec8130defcaa2d322ea -https://conda.anaconda.org/conda-forge/noarch/referencing-0.30.2-pyhd8ed1ab_0.conda#a33161b983172ba6ef69d5fc850650cd -https://conda.anaconda.org/conda-forge/noarch/restructuredtext_lint-1.4.0-pyhd8ed1ab_0.tar.bz2#1f3c21740038aba9c174df58986bdccb -https://conda.anaconda.org/conda-forge/noarch/rfc3339-validator-0.1.4-pyhd8ed1ab_0.tar.bz2#fed45fc5ea0813240707998abe49f520 -https://conda.anaconda.org/conda-forge/noarch/rsa-4.9-pyhd8ed1ab_0.tar.bz2#03bf410858b2cefc267316408a77c436 -https://conda.anaconda.org/conda-forge/linux-64/ruamel.yaml-0.17.39-py311h459d7ec_0.conda#a30e488d26792c61e5bb964b23316ea5 -https://conda.anaconda.org/conda-forge/linux-64/sqlalchemy-1.4.49-py311h459d7ec_1.conda#17392bcb4ceac1b2c95db9d54b4ac018 -https://conda.anaconda.org/conda-forge/noarch/terminado-0.17.1-pyh41d4057_0.conda#3788984d535770cad699efaeb6cb3037 -https://conda.anaconda.org/conda-forge/noarch/tinycss2-1.2.1-pyhd8ed1ab_0.tar.bz2#7234c9eefff659501cd2fe0d2ede4d48 -https://conda.anaconda.org/conda-forge/noarch/tqdm-4.66.1-pyhd8ed1ab_0.conda#03c97908b976498dcae97eb4e4f3149c -https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.8.0-hd8ed1ab_0.conda#384462e63262a527bda564fa2d9126c0 -https://conda.anaconda.org/conda-forge/noarch/universal_pathlib-0.1.4-pyhd8ed1ab_0.conda#08ca974df312b574c4d6511426539a87 -https://conda.anaconda.org/conda-forge/noarch/urllib3-1.26.18-pyhd8ed1ab_0.conda#bf61cfd2a7f212efba378167a07d4a6a -https://conda.anaconda.org/conda-forge/linux-64/watchdog-3.0.0-py311h38be061_1.conda#1901b9f3ca3782f31450fd7158d2fe8a -https://conda.anaconda.org/conda-forge/linux-64/xerces-c-3.2.4-hac6953d_3.conda#297e6a75dc1b6a440cd341a85eab8a00 -https://conda.anaconda.org/conda-forge/linux-64/yarl-1.9.2-py311h459d7ec_1.conda#132637a291f818a0e99c8ca468e92eb8 -https://conda.anaconda.org/conda-forge/noarch/addfips-0.4.0-pyhd8ed1ab_1.conda#cb434d01bfd3ba57c54a423f3773ffda -https://conda.anaconda.org/conda-forge/noarch/aniso8601-9.0.1-pyhd8ed1ab_0.tar.bz2#36fba1a639f2d24723c5480345b78553 -https://conda.anaconda.org/conda-forge/linux-64/argon2-cffi-bindings-21.2.0-py311h459d7ec_4.conda#de5b16869a430949b02161b04b844a30 -https://conda.anaconda.org/conda-forge/noarch/arrow-1.3.0-pyhd8ed1ab_0.conda#b77d8c2313158e6e461ca0efb1c2c508 -https://conda.anaconda.org/conda-forge/noarch/async-timeout-4.0.3-pyhd8ed1ab_0.conda#3ce482ec3066e6d809dbbb1d1679f215 -https://conda.anaconda.org/conda-forge/linux-64/aws-c-s3-0.3.17-hfb4bb88_4.conda#eafe48f5110a31258778a0696361afb1 -https://conda.anaconda.org/conda-forge/noarch/botocore-1.31.68-pyhd8ed1ab_0.conda#0bf56dadacce6f9218d88df71d3e7576 -https://conda.anaconda.org/conda-forge/noarch/branca-0.6.0-pyhd8ed1ab_0.tar.bz2#f4cc65697763ef8c2f7555f1ec355a6b -https://conda.anaconda.org/conda-forge/linux-64/cmarkgfm-0.8.0-py311h459d7ec_3.conda#5090d5a3ab2580cabb17a3ae965e257f -https://conda.anaconda.org/conda-forge/noarch/croniter-2.0.1-pyhd8ed1ab_0.conda#f67f52c1f555785b86c3bd8e5de4c66f -https://conda.anaconda.org/conda-forge/linux-64/cryptography-41.0.4-py311h63ff55d_0.conda#2b14cd05541532521196b0d2e0291ecf -https://conda.anaconda.org/conda-forge/noarch/fqdn-1.5.1-pyhd8ed1ab_0.tar.bz2#642d35437078749ef23a5dca2c9bb1f3 -https://conda.anaconda.org/conda-forge/linux-64/geotiff-1.7.1-hf074850_14.conda#1d53ee057d8481bd2b4c2c34c8e92aac -https://conda.anaconda.org/conda-forge/noarch/gitpython-3.1.40-pyhd8ed1ab_0.conda#6bf74c3b7c13079a91d4bd3da51cefcf -https://conda.anaconda.org/conda-forge/linux-64/google-crc32c-1.1.2-py311h9b08b9c_5.conda#59b908ae2a7e328eae0ccb03fa3fa0dd -https://conda.anaconda.org/conda-forge/noarch/googleapis-common-protos-1.61.0-pyhd8ed1ab_0.conda#f315d7fdc1905dcc2e18a1c7bed22fa9 -https://conda.anaconda.org/conda-forge/noarch/gql-3.4.1-pyhd8ed1ab_0.conda#6ad94588f33ddb97175c7f22feef7d2c -https://conda.anaconda.org/conda-forge/noarch/graphql-relay-3.2.0-pyhd8ed1ab_0.tar.bz2#1b2b83e3528f8fb83007161eff51073d -https://conda.anaconda.org/conda-forge/noarch/grpcio-health-checking-1.57.0-pyhd8ed1ab_0.conda#c22fdc1bd41d6c71e0eb4da829d7b228 -https://conda.anaconda.org/conda-forge/noarch/httpcore-0.18.0-pyhd8ed1ab_0.conda#eb69a63c23bbda9aac55bc0c0c6144f9 -https://conda.anaconda.org/conda-forge/noarch/importlib_metadata-6.8.0-hd8ed1ab_0.conda#b279b07ce18058034e5b3606ba103a8b -https://conda.anaconda.org/conda-forge/noarch/jsonschema-specifications-2023.7.1-pyhd8ed1ab_0.conda#7c27ea1bdbe520bb830dcadd59f55cbf -https://conda.anaconda.org/conda-forge/noarch/jupyter_server_terminals-0.4.4-pyhd8ed1ab_1.conda#7c0965e1d4a0ee1529e8eaa03a78a5b3 -https://conda.anaconda.org/conda-forge/linux-64/kealib-1.5.2-hcd42e92_1.conda#b04c039f0bd511533a0d8bc8a7b6835e -https://conda.anaconda.org/conda-forge/linux-64/libnetcdf-4.9.2-nompi_h80fb2b6_112.conda#a19fa6cacf80c8a366572853d5890eb4 -https://conda.anaconda.org/conda-forge/linux-64/libspatialite-5.1.0-h090f1da_0.conda#c4360eaa543bb3bcbb9cd135eb6fb0fc -https://conda.anaconda.org/conda-forge/noarch/mako-1.2.4-pyhd8ed1ab_0.tar.bz2#0d072f0edc017b6318dbab701e053f94 -https://conda.anaconda.org/conda-forge/linux-64/numpy-1.24.4-py311h64a7726_0.conda#5a03d7c75dd4a9ae9a58850860eca468 -https://conda.anaconda.org/conda-forge/noarch/pbr-5.11.1-pyhd8ed1ab_0.conda#5bde4ebca51438054099b9527c904ecb -https://conda.anaconda.org/conda-forge/linux-64/pendulum-2.1.2-py311h459d7ec_6.conda#7ada98068961b6a6f1f620dcbfedd1ec -https://conda.anaconda.org/conda-forge/noarch/platformdirs-3.11.0-pyhd8ed1ab_0.conda#8f567c0a74aa44cf732f15773b4083b0 -https://conda.anaconda.org/conda-forge/linux-64/poppler-23.10.0-h590f24d_0.conda#06b4a80e2cc3974e55f83e2115e2e90a -https://conda.anaconda.org/conda-forge/noarch/pybtex-0.24.0-pyhd8ed1ab_2.tar.bz2#2099b86a7399c44c0c61cdb6de6915ba -https://conda.anaconda.org/conda-forge/linux-64/pydantic-1.10.13-py311h459d7ec_1.conda#8a92f40420211897a35841861e7e8348 -https://conda.anaconda.org/conda-forge/linux-64/pyproj-3.6.1-py311h1facc83_2.conda#8298afb85a731b02dac82e02b6e13ae0 -https://conda.anaconda.org/conda-forge/noarch/pytest-console-scripts-1.4.1-pyhd8ed1ab_0.conda#ee8808504c73665bed76e20ede28bd56 -https://conda.anaconda.org/conda-forge/noarch/pytest-cov-4.1.0-pyhd8ed1ab_0.conda#06eb685a3a0b146347a58dda979485da -https://conda.anaconda.org/conda-forge/noarch/pytest-mock-3.11.1-pyhd8ed1ab_0.conda#fcd2531bc3e492657aeb042349aeaf8a -https://conda.anaconda.org/conda-forge/noarch/python-build-1.0.3-pyhd8ed1ab_0.conda#d9ccabf228cb98419ca3d5694b25e1a2 -https://conda.anaconda.org/conda-forge/noarch/requests-2.31.0-pyhd8ed1ab_0.conda#a30144e4156cdbb236f99ebb49828f8b -https://conda.anaconda.org/conda-forge/noarch/rich-13.6.0-pyhd8ed1ab_0.conda#3ca4829f40710f581ca1d76bc907e99f -https://conda.anaconda.org/conda-forge/noarch/stack_data-0.6.2-pyhd8ed1ab_0.conda#e7df0fdd404616638df5ece6e69ba7af -https://conda.anaconda.org/conda-forge/noarch/starlette-0.31.1-pyhd8ed1ab_0.conda#409034f0925a73b5f27ae71849e60034 -https://conda.anaconda.org/conda-forge/linux-64/tiledb-2.16.3-h8c794c1_3.conda#7de728789b0aba16018f726dc5ddbec2 -https://conda.anaconda.org/conda-forge/linux-64/ukkonen-1.0.1-py311h9547e67_4.conda#586da7df03b68640de14dc3e8bcbf76f -https://conda.anaconda.org/conda-forge/linux-64/uvicorn-0.23.2-py311h38be061_1.conda#9184151aa69290804f1a14701bf5a4e7 -https://conda.anaconda.org/conda-forge/linux-64/watchfiles-0.20.0-py311h46250e7_2.conda#19667098320c065048a8e483ac860051 -https://conda.anaconda.org/conda-forge/noarch/wcwidth-0.2.8-pyhd8ed1ab_0.conda#367386d2575a0e62412448eda1012efd -https://conda.anaconda.org/conda-forge/linux-64/aiohttp-3.8.6-py311h459d7ec_1.conda#7d4b63a745f293029b5689b0b5d8aa15 -https://conda.anaconda.org/conda-forge/noarch/alembic-1.12.0-pyhd8ed1ab_0.conda#ba29026b587195548ef82444518061f7 -https://conda.anaconda.org/conda-forge/noarch/arelle-release-2.16.1-pyhd8ed1ab_0.conda#8b03e47972a8e0759dce09378c962d3d -https://conda.anaconda.org/conda-forge/noarch/argon2-cffi-23.1.0-pyhd8ed1ab_0.conda#3afef1f55a1366b4d3b6a0d92e2235e4 -https://conda.anaconda.org/conda-forge/linux-64/aws-crt-cpp-0.24.2-ha28989d_2.conda#afb10c619ce2f13ca8badd70c2a62c64 -https://conda.anaconda.org/conda-forge/linux-64/black-23.10.0-py311h38be061_0.conda#0d176b0299edecbfe90511c9bcd06ee5 -https://conda.anaconda.org/conda-forge/linux-64/bottleneck-1.3.7-py311h1f0f07a_1.conda#f12c27e2cf84d2bd9f306d05f07cfc2b -https://conda.anaconda.org/conda-forge/noarch/cachecontrol-0.13.1-pyhd8ed1ab_0.conda#174bd699bb5aa9e2622eb4b288276ff8 -https://conda.anaconda.org/conda-forge/linux-64/contourpy-1.1.1-py311h9547e67_1.conda#52d3de443952d33c5cee6b24b172ce96 -https://conda.anaconda.org/conda-forge/noarch/dask-core-2023.10.0-pyhd8ed1ab_0.conda#6b415b2cd4a106b8eb1632be126ede81 -https://conda.anaconda.org/conda-forge/noarch/dnspython-2.4.2-pyhd8ed1ab_1.conda#b9657eab1e69207feba4f21fa1207b03 -https://conda.anaconda.org/conda-forge/noarch/ensureconda-1.4.3-pyhd8ed1ab_0.tar.bz2#c99ae3abf501990769047b4b40a98f17 -https://conda.anaconda.org/conda-forge/noarch/folium-0.14.0-pyhd8ed1ab_0.conda#48c8bb19df0d0268f1a9d30ffc56c5b0 -https://conda.anaconda.org/conda-forge/noarch/google-resumable-media-2.6.0-pyhd8ed1ab_0.conda#74fd9d08866e60fc412abc8dd7c5486c -https://conda.anaconda.org/conda-forge/noarch/graphene-3.3-pyhd8ed1ab_0.conda#ed2ae94977dfd96566e6eaf373216728 -https://conda.anaconda.org/conda-forge/noarch/grpcio-status-1.57.0-pyhd8ed1ab_0.conda#288d9a5edd2619ffd7592ef273b663e3 -https://conda.anaconda.org/conda-forge/linux-64/h3-py-3.7.6-py311hb755f60_1.conda#9a688ad1ba707128952ab37ee99ad78d -https://conda.anaconda.org/conda-forge/noarch/httpx-0.25.0-pyhd8ed1ab_0.conda#37c6a92b2493f801068cccdbbcfe4201 -https://conda.anaconda.org/conda-forge/noarch/identify-2.5.30-pyhd8ed1ab_0.conda#b7a2e3bb89bda8c69839485c20aabadf -https://conda.anaconda.org/conda-forge/noarch/isoduration-20.11.0-pyhd8ed1ab_0.tar.bz2#4cb68948e0b8429534380243d063a27a -https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.19.1-pyhd8ed1ab_0.conda#78aff5d2af74e6537c1ca73017f01f4f -https://conda.anaconda.org/conda-forge/linux-64/jupyter_core-5.4.0-py311h38be061_0.conda#eb4ab2a92a2cc9715226382abb8ebaee -https://conda.anaconda.org/conda-forge/linux-64/libgdal-3.7.2-h6f3d308_7.conda#f9555eada0412c9f3dd4b34f5afecf5b -https://conda.anaconda.org/conda-forge/linux-64/numba-0.57.1-py311h96b013e_0.conda#618010d18c4a38073a7f51d9dd3fd8a8 -https://conda.anaconda.org/conda-forge/linux-64/numexpr-2.8.7-py311h039bad6_104.conda#525b0f41e7fcf20a17787be9e2896f49 -https://conda.anaconda.org/conda-forge/noarch/oauthlib-3.2.2-pyhd8ed1ab_0.tar.bz2#8f882b197fd9c4941a787926baea4868 -https://conda.anaconda.org/conda-forge/linux-64/pandas-2.1.1-py311h320fe9a_1.conda#a4371a95a8ae703a22949af28467b93d -https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.39-pyha770c72_0.conda#a4986c6bb5b0d05a38855b0880a5f425 -https://conda.anaconda.org/conda-forge/linux-64/pybtex-docutils-1.0.3-py311h38be061_1.conda#137a63bd93d3e1a2b6812119b671f44e -https://conda.anaconda.org/conda-forge/noarch/pyopenssl-23.2.0-pyhd8ed1ab_1.conda#34f7d568bf59d18e3fef8c405cbece21 -https://conda.anaconda.org/conda-forge/noarch/readme_renderer-42.0-pyhd8ed1ab_0.conda#fdc16f5dc3a911d8f43f64f814a45961 -https://conda.anaconda.org/conda-forge/noarch/readthedocs-sphinx-ext-2.2.3-pyhd8ed1ab_0.conda#6bc1a00f5502f9ed13526e4c6bea6900 -https://conda.anaconda.org/conda-forge/noarch/requests-toolbelt-0.10.1-pyhd8ed1ab_0.tar.bz2#a4cd20af9711434f89d1ec0d2b3ae6ba -https://conda.anaconda.org/conda-forge/noarch/responses-0.23.1-pyhd8ed1ab_0.conda#bf15c93720dfea117aaea3155cbebce5 -https://conda.anaconda.org/conda-forge/noarch/s3transfer-0.7.0-pyhd8ed1ab_0.conda#5fe335cb1420d13a818fe01310af2b80 -https://conda.anaconda.org/conda-forge/linux-64/scipy-1.11.3-py311h64a7726_1.conda#e4b4d3b764e2d029477d0db88248a8b5 -https://conda.anaconda.org/conda-forge/linux-64/secretstorage-3.3.3-py311h38be061_2.conda#30a57eaa8e72cb0c2c84d6d7db32010c -https://conda.anaconda.org/conda-forge/linux-64/shapely-2.0.2-py311he06c224_0.conda#c90e2469d7512f3bba893533a82d7a02 -https://conda.anaconda.org/conda-forge/noarch/stevedore-5.1.0-pyhd8ed1ab_0.conda#55864c50fd9354fd19f6a5078a068170 -https://conda.anaconda.org/conda-forge/noarch/typer-0.9.0-pyhd8ed1ab_0.conda#5030a13b2fe5e143d5956d4943d3018f -https://conda.anaconda.org/conda-forge/linux-64/uvicorn-standard-0.23.2-h38be061_1.conda#d76e2498dbec3868a7b52be68a22babf -https://conda.anaconda.org/conda-forge/noarch/virtualenv-20.24.4-pyhd8ed1ab_0.conda#c3feaf947264a59a125e8c26e98c3c5a -https://conda.anaconda.org/conda-forge/linux-64/aws-sdk-cpp-1.11.156-h314d761_4.conda#5e41eee446cb42a53090c2c46922f4dd -https://conda.anaconda.org/conda-forge/noarch/boto3-1.28.68-pyhd8ed1ab_0.conda#4b81c7adfe8551654cf528e3d708b326 -https://conda.anaconda.org/conda-forge/noarch/cachecontrol-with-filecache-0.13.1-pyhd8ed1ab_0.conda#8c4781ca0893cff3a64423954ce234a1 -https://conda.anaconda.org/conda-forge/noarch/dagster-1.5.3-pyhd8ed1ab_1.conda#269916d868c11d9790d340a6587708bb -https://conda.anaconda.org/conda-forge/noarch/datasette-0.64.4-pyhd8ed1ab_1.conda#cd1207af03052f6b81906e1a914ad3c5 -https://conda.anaconda.org/conda-forge/noarch/doc8-1.1.1-pyhd8ed1ab_0.conda#5e9e17751f19d03c4034246de428582e -https://conda.anaconda.org/conda-forge/noarch/email-validator-2.0.0.post2-pyhd8ed1ab_0.conda#af9f5d81309e51c05b5964f9573c2cc0 -https://conda.anaconda.org/conda-forge/noarch/frictionless-4.40.8-pyh6c4a22f_0.tar.bz2#d2791ef8f6c1252aa8d2e2001a603815 -https://conda.anaconda.org/conda-forge/linux-64/gdal-3.7.2-py311h815a124_7.conda#e68c90c9490e1621ff4a7871849f03b2 -https://conda.anaconda.org/conda-forge/noarch/geopandas-base-0.14.0-pyha770c72_1.conda#614a383c5f4350e0606689f54c6497b1 -https://conda.anaconda.org/conda-forge/noarch/google-auth-2.23.3-pyhca7485f_0.conda#79faaf9cd0e5114c19253552d8d92872 -https://conda.anaconda.org/conda-forge/noarch/gql-with-requests-3.4.1-pyhd8ed1ab_0.conda#1814ff1e969b01d3570027efcf4f163a -https://conda.anaconda.org/conda-forge/noarch/jsonschema-with-format-nongpl-4.19.1-pyhd8ed1ab_0.conda#daca0665e6fe8a376e48b9f0b5865326 -https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.4.0-pyhd8ed1ab_0.conda#554496685357ab0d69676cab8e8fb594 -https://conda.anaconda.org/conda-forge/linux-64/keyring-24.2.0-py311h38be061_1.conda#656d1107cb4934fd950eea244affd3c5 -https://conda.anaconda.org/conda-forge/linux-64/matplotlib-base-3.8.0-py311h54ef318_2.conda#5655371cc61b8c31c369a7e709acb294 -https://conda.anaconda.org/conda-forge/noarch/nbformat-5.9.2-pyhd8ed1ab_0.conda#61ba076de6530d9301a0053b02f093d2 -https://conda.anaconda.org/conda-forge/noarch/pre-commit-3.5.0-pyha770c72_0.conda#964e3d762e427661c59263435a14c492 -https://conda.anaconda.org/conda-forge/noarch/prompt_toolkit-3.0.39-hd8ed1ab_0.conda#4bbbe67d5df19db30f04b8e344dc9976 -https://conda.anaconda.org/conda-forge/noarch/requests-oauthlib-1.3.1-pyhd8ed1ab_0.tar.bz2#61b279f051eef9c89d58f4d813e75e04 -https://conda.anaconda.org/conda-forge/linux-64/scikit-learn-1.3.1-py311hc009520_1.conda#0f06a0c10766b511c62050f9aed88b24 -https://conda.anaconda.org/conda-forge/linux-64/timezonefinder-6.2.0-py311h459d7ec_1.conda#af26cb1037ec15c21c7e2c417b9e2834 -https://conda.anaconda.org/conda-forge/noarch/tox-4.11.3-pyhd8ed1ab_0.conda#9ad1597140aa28f50fee5567775057dc -https://conda.anaconda.org/conda-forge/noarch/catalystcoop.ferc_xbrl_extractor-1.1.1-pyhd8ed1ab_0.conda#d40f9751f064b3180e93aadb683bb2b7 -https://conda.anaconda.org/conda-forge/noarch/conda-lock-2.4.0-pyhd8ed1ab_0.conda#edcd5c7565a5cd1c7862a911a899fb20 -https://conda.anaconda.org/conda-forge/noarch/dagster-graphql-1.5.3-pyhd8ed1ab_1.conda#9c67172e4c79a12d965f17d650b5336b -https://conda.anaconda.org/conda-forge/linux-64/fiona-1.9.5-py311hbac4ec9_0.conda#786d3808394b1bdfd3f41f2e2c67279e -https://conda.anaconda.org/conda-forge/noarch/google-api-core-2.12.0-pyhd8ed1ab_0.conda#f978eac45a312816fffd61eb65f5ed0e -https://conda.anaconda.org/conda-forge/noarch/google-auth-oauthlib-1.1.0-pyhd8ed1ab_0.conda#ffa1e2fd52bc00ec0fc5680a2f4bd167 -https://conda.anaconda.org/conda-forge/noarch/ipython-8.16.1-pyh0d859eb_0.conda#7e52cb0dbf01b90365bfe433ec8bd3c0 -https://conda.anaconda.org/conda-forge/noarch/jupyter_events-0.8.0-pyhd8ed1ab_0.conda#04272d87d3e06c2e26af5e2d4b0e0ad8 -https://conda.anaconda.org/conda-forge/linux-64/libarrow-13.0.0-h0f80be4_7_cpu.conda#d65ad15df78e144f4067cd6d1831a205 -https://conda.anaconda.org/conda-forge/noarch/mapclassify-2.6.1-pyhd8ed1ab_0.conda#6aceae1ad4f16cf7b73ee04189947f98 -https://conda.anaconda.org/conda-forge/noarch/nbclient-0.8.0-pyhd8ed1ab_0.conda#e78da91cf428faaf05701ce8cc8f2f9b -https://conda.anaconda.org/conda-forge/noarch/recordlinkage-0.16-pyhd8ed1ab_0.conda#948205d11a8b036e065c46462db0632a -https://conda.anaconda.org/conda-forge/noarch/tabulator-1.53.5-pyhd8ed1ab_0.tar.bz2#c967687222ad29a74f68e99698d08d30 -https://conda.anaconda.org/conda-forge/noarch/twine-4.0.2-pyhd8ed1ab_0.conda#e3a16168d6b9deefb8c1caa7943fb49e -https://conda.anaconda.org/conda-forge/noarch/dagster-webserver-1.5.3-pyhd8ed1ab_1.conda#821b36bfafdd03da8af532b6a9518fe9 -https://conda.anaconda.org/conda-forge/noarch/geopandas-0.14.0-pyhd8ed1ab_1.conda#d3617cddba7ea3dd3234d28faa3bc3b4 -https://conda.anaconda.org/conda-forge/noarch/google-cloud-core-2.3.3-pyhd8ed1ab_0.conda#a26b1fa8555cc1d2f0f7ff9985303e66 -https://conda.anaconda.org/conda-forge/noarch/ipdb-0.13.13-pyhd8ed1ab_0.conda#86baea403007ad4898d85c897c80b758 -https://conda.anaconda.org/conda-forge/noarch/ipykernel-6.25.2-pyh2140261_0.conda#226f2032ec491cc6e9ce66072660e4f6 -https://conda.anaconda.org/conda-forge/noarch/ipywidgets-8.1.1-pyhd8ed1ab_0.conda#2605fae5ee27100e5f10037baebf4d41 -https://conda.anaconda.org/conda-forge/noarch/nbconvert-core-7.9.2-pyhd8ed1ab_0.conda#01e4314c780ca73759c694ce3ece281f -https://conda.anaconda.org/conda-forge/linux-64/pyarrow-13.0.0-py311h39c9aba_7_cpu.conda#1bb98b653ba54bc5adbe2f0193a44726 -https://conda.anaconda.org/conda-forge/noarch/tableschema-1.19.3-pyh9f0ad1d_0.tar.bz2#57f70b39e74b4af667775c0a07f35cc3 -https://conda.anaconda.org/conda-forge/noarch/datapackage-1.15.2-pyh44b312d_0.tar.bz2#3f1a6895ab9c423cf59de7c46e56a824 -https://conda.anaconda.org/conda-forge/noarch/google-cloud-storage-2.12.0-pyhca7485f_0.conda#fea9a0827d3285450ea0c4d4b78b2664 -https://conda.anaconda.org/conda-forge/noarch/jupyter_console-6.6.3-pyhd8ed1ab_0.conda#7cf6f52a66f8e3cd9d8b6c231262dcab -https://conda.anaconda.org/conda-forge/noarch/jupyter_server-2.8.0-pyhd8ed1ab_0.conda#a750b082b9319e96556df4ee6023b068 -https://conda.anaconda.org/conda-forge/noarch/nbconvert-pandoc-7.9.2-pyhd8ed1ab_0.conda#1ad46253f2eb46fb8c9b2c22b7ca012f -https://conda.anaconda.org/conda-forge/noarch/qtconsole-base-5.4.4-pyha770c72_0.conda#08961a76f2a4e2ebdb9b56f451beaa45 -https://conda.anaconda.org/conda-forge/noarch/gcsfs-2023.9.2-pyhd8ed1ab_0.conda#c9deedf93585c3d5ce5525a89bf7287e -https://conda.anaconda.org/conda-forge/noarch/jupyter-lsp-2.2.0-pyhd8ed1ab_0.conda#38589f4104d11f2a59ff01a9f4e3bfb3 -https://conda.anaconda.org/conda-forge/noarch/jupyter-resource-usage-1.0.1-pyhd8ed1ab_0.conda#b079fd1b0ee75199a042537d036b496f -https://conda.anaconda.org/conda-forge/noarch/jupyterlab_server-2.25.0-pyhd8ed1ab_0.conda#a52834fa7e3d12abc5efdf06b2097a05 -https://conda.anaconda.org/conda-forge/noarch/nbconvert-7.9.2-pyhd8ed1ab_0.conda#16ccaddfcfa0a1a606a9ecf6a52d6c11 -https://conda.anaconda.org/conda-forge/noarch/notebook-shim-0.2.3-pyhd8ed1ab_0.conda#67e0fe74c156267d9159e9133df7fd37 -https://conda.anaconda.org/conda-forge/noarch/jupyterlab-4.0.7-pyhd8ed1ab_0.conda#80318d83f33b3bf4e57b8533b7a6691d -https://conda.anaconda.org/conda-forge/noarch/notebook-7.0.6-pyhd8ed1ab_0.conda#d60881c78a54cbf8042ae719f1f77a50 -https://conda.anaconda.org/conda-forge/noarch/jupyter-1.0.0-pyhd8ed1ab_10.conda#056b8cc3d9b03f54fc49e6d70d7dc359 -https://conda.anaconda.org/conda-forge/noarch/sphinx-autoapi-3.0.0-pyhd8ed1ab_0.conda#736b53813c2b9582b1345462d8ca66e7 -https://conda.anaconda.org/conda-forge/noarch/sphinx-basic-ng-1.0.0b2-pyhd8ed1ab_1.conda#a631f5c7b7f5045448f966ad71aa2881 -https://conda.anaconda.org/conda-forge/noarch/furo-2023.9.10-pyhd8ed1ab_0.conda#0dcfacf6d3e49f2957c69c81356cf892 -https://conda.anaconda.org/conda-forge/noarch/sphinx-issues-1.2.0-py_0.tar.bz2#2d5c0dddca9bb724dcf5a3fb295a2266 -https://conda.anaconda.org/conda-forge/noarch/sphinx-reredirects-0.1.2-pyhd8ed1ab_0.conda#30e618adaaf11aa4a98912913c62a12b -https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-applehelp-1.0.7-pyhd8ed1ab_0.conda#aebfabcb60c33a89c1f9290cab49bc93 -https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-bibtex-2.6.1-pyhd8ed1ab_1.conda#109cf3a7c844834267057e80b4f4eae3 -https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-devhelp-1.0.5-pyhd8ed1ab_0.conda#ebf08f5184d8eaa486697bc060031953 -https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-htmlhelp-2.0.4-pyhd8ed1ab_0.conda#a9a89000dfd19656ad004b937eeb6828 -https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-qthelp-1.0.6-pyhd8ed1ab_0.conda#cf5c9649272c677a964a7313279e3a9b -https://conda.anaconda.org/conda-forge/noarch/sphinx-7.2.6-pyhd8ed1ab_0.conda#bbfd1120d1824d2d073bc65935f0e4c0 -https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-serializinghtml-1.1.9-pyhd8ed1ab_0.conda#0612e497d7860728f2cda421ea2aec09 diff --git a/environments/conda-linux-64.lock.yml b/environments/conda-linux-64.lock.yml index c4449fdded..13602a5423 100644 --- a/environments/conda-linux-64.lock.yml +++ b/environments/conda-linux-64.lock.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: de7a61eb05706475d7310916d22612941ecd2a1f43f939bd8052f7c389034fbb +# input_hash: 7c8b2f7fe28cdfc4b83bb1b9bf64f5957d45794c915656c2c040ddb9df08ef23 channels: - conda-forge @@ -26,7 +26,7 @@ dependencies: - libgcc-ng=13.2.0=h807b86a_2 - aws-c-common=0.9.3=hd590300_0 - bzip2=1.0.8=h7f98852_4 - - c-ares=1.20.1=hd590300_0 + - c-ares=1.20.1=hd590300_1 - geos=3.12.0=h59595ed_0 - gettext=0.21.1=h27087fc_0 - gflags=2.2.2=he1b5a44_1004 @@ -59,7 +59,7 @@ dependencies: - lzo=2.10=h516909a_1000 - ncurses=6.4=hcb278e6_0 - nspr=4.35=h27087fc_0 - - openssl=3.1.3=hd590300_0 + - openssl=3.1.4=hd590300_0 - pixman=0.42.2=h59595ed_0 - pthread-stubs=0.4=h36c2ea0_1001 - rdma-core=28.9=h59595ed_1 @@ -143,20 +143,20 @@ dependencies: - brotli=1.1.0=hd590300_1 - brotli-python=1.1.0=py311hb755f60_1 - cached_property=1.5.2=pyha770c72_1 - - cachetools=5.3.1=pyhd8ed1ab_0 + - cachetools=5.3.2=pyhd8ed1ab_0 - cachy=0.3.0=pyhd8ed1ab_1 - catalystcoop.dbfread=3.0.0=py_0 - cchardet=2.1.7=py311hb755f60_5 - certifi=2023.7.22=pyhd8ed1ab_0 - cfgv=3.3.1=pyhd8ed1ab_0 - chardet=5.2.0=py311h38be061_1 - - charset-normalizer=3.3.0=pyhd8ed1ab_0 + - charset-normalizer=3.3.1=pyhd8ed1ab_0 - click=8.1.7=unix_pyh707e725_0 - cloudpickle=3.0.0=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_0 - crashtest=0.4.1=pyhd8ed1ab_0 - cycler=0.12.1=pyhd8ed1ab_0 - - dagster-pipes=1.5.3=pyhd8ed1ab_1 + - dagster-pipes=1.5.4=pyhd8ed1ab_1 - dataclasses=0.8=pyhc8e2a94_3 - dbus=1.13.6=h5008d03_3 - debugpy=1.8.0=py311hb755f60_1 @@ -174,7 +174,7 @@ dependencies: - freexl=2.0.0=h743c826_0 - frozenlist=1.4.0=py311h459d7ec_1 - fsspec=2023.9.2=pyh1a96a4e_0 - - greenlet=3.0.0=py311hb755f60_1 + - greenlet=3.0.1=py311hb755f60_0 - grpcio=1.57.0=py311ha6695c7_2 - hpack=4.0.0=pyh9f0ad1d_0 - httptools=0.6.1=py311h459d7ec_0 @@ -213,7 +213,7 @@ dependencies: - munkres=1.1.4=pyh9f0ad1d_0 - mypy_extensions=1.0.0=pyha770c72_0 - nest-asyncio=1.5.8=pyhd8ed1ab_0 - - networkx=3.1=pyhd8ed1ab_0 + - networkx=3.2=pyhd8ed1ab_1 - nh3=0.2.14=py311h46250e7_1 - openjpeg=2.5.0=h488ebb8_3 - packaging=23.2=pyhd8ed1ab_0 @@ -247,18 +247,18 @@ dependencies: - pywin32-on-windows=0.1.0=pyh1179c8e_3 - pyxlsb=1.0.10=pyhd8ed1ab_0 - pyyaml=6.0.1=py311h459d7ec_1 - - pyzmq=25.1.1=py311h75c88c4_1 + - pyzmq=25.1.1=py311h34ded2d_2 - regex=2023.10.3=py311h459d7ec_0 - rfc3986=2.0.0=pyhd8ed1ab_0 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - rpds-py=0.10.6=py311h46250e7_0 - rtree=1.1.0=py311h3bb2b0f_0 - ruamel.yaml.clib=0.2.7=py311h459d7ec_2 - - ruff=0.1.1=py311h7145743_0 + - ruff=0.1.2=py311h7145743_0 - send2trash=1.8.2=pyh41d4057_0 - setuptools=68.2.2=pyhd8ed1ab_0 - - shellingham=1.5.3=pyhd8ed1ab_0 - - simpleeval=0.9.13=py311h459d7ec_1 + - shellingham=1.5.4=pyhd8ed1ab_0 + - simpleeval=0.9.13=pyhd8ed1ab_1 - six=1.16.0=pyh6c4a22f_0 - smmap=5.0.0=pyhd8ed1ab_0 - sniffio=1.3.0=pyhd8ed1ab_0 @@ -275,14 +275,14 @@ dependencies: - toolz=0.12.0=pyhd8ed1ab_0 - toposort=1.10=pyhd8ed1ab_0 - tornado=6.3.3=py311h459d7ec_1 - - traitlets=5.11.2=pyhd8ed1ab_0 + - traitlets=5.12.0=pyhd8ed1ab_0 - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 - types-pyyaml=6.0.12.12=pyhd8ed1ab_0 - typing_extensions=4.8.0=pyha770c72_0 - typing_utils=0.1.0=pyhd8ed1ab_0 - unicodecsv=0.14.1=py_1 - uri-template=1.3.0=pyhd8ed1ab_0 - - uvloop=0.18.0=py311h460e60f_0 + - uvloop=0.19.0=py311h460e60f_0 - validators=0.22.0=pyhd8ed1ab_0 - webcolors=1.13=pyhd8ed1ab_0 - webencodings=0.5.1=pyhd8ed1ab_2 @@ -304,7 +304,7 @@ dependencies: - async-lru=2.0.4=pyhd8ed1ab_0 - aws-c-auth=0.7.4=h1083cbe_2 - aws-c-mqtt=0.9.7=h55cd26b_0 - - babel=2.13.0=pyhd8ed1ab_0 + - babel=2.13.1=pyhd8ed1ab_0 - backports.functools_lru_cache=1.6.5=pyhd8ed1ab_0 - beautifulsoup4=4.12.2=pyha770c72_0 - bleach=6.1.0=pyhd8ed1ab_0 @@ -356,18 +356,17 @@ dependencies: - proj=9.3.0=h1d62c97_2 - protobuf=4.23.4=py311h46cbc50_3 - pyasn1-modules=0.3.0=pyhd8ed1ab_0 - - pyproject-api=1.6.1=pyhd8ed1ab_0 - pyproject_hooks=1.0.0=pyhd8ed1ab_0 - - pytest=7.4.2=pyhd8ed1ab_0 + - pytest=7.4.3=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - python-slugify=8.0.1=pyhd8ed1ab_2 - pyu2f=0.1.5=pyhd8ed1ab_0 - - qtpy=2.4.0=pyhd8ed1ab_0 + - qtpy=2.4.1=pyhd8ed1ab_0 - referencing=0.30.2=pyhd8ed1ab_0 - restructuredtext_lint=1.4.0=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - rsa=4.9=pyhd8ed1ab_0 - - ruamel.yaml=0.17.39=py311h459d7ec_0 + - ruamel.yaml=0.18.2=py311h459d7ec_0 - sqlalchemy=1.4.49=py311h459d7ec_1 - terminado=0.17.1=pyh41d4057_0 - tinycss2=1.2.1=pyhd8ed1ab_0 @@ -384,11 +383,11 @@ dependencies: - arrow=1.3.0=pyhd8ed1ab_0 - async-timeout=4.0.3=pyhd8ed1ab_0 - aws-c-s3=0.3.17=hfb4bb88_4 - - botocore=1.31.68=pyhd8ed1ab_0 + - botocore=1.31.70=pyhd8ed1ab_0 - branca=0.6.0=pyhd8ed1ab_0 - cmarkgfm=0.8.0=py311h459d7ec_3 - croniter=2.0.1=pyhd8ed1ab_0 - - cryptography=41.0.4=py311h63ff55d_0 + - cryptography=41.0.5=py311h63ff55d_0 - fqdn=1.5.1=pyhd8ed1ab_0 - geotiff=1.7.1=hf074850_14 - gitpython=3.1.40=pyhd8ed1ab_0 @@ -412,10 +411,10 @@ dependencies: - poppler=23.10.0=h590f24d_0 - pybtex=0.24.0=pyhd8ed1ab_2 - pydantic=1.10.13=py311h459d7ec_1 - - pyproj=3.6.1=py311h1facc83_2 + - pyproj=3.6.1=py311h1facc83_3 - pytest-console-scripts=1.4.1=pyhd8ed1ab_0 - pytest-cov=4.1.0=pyhd8ed1ab_0 - - pytest-mock=3.11.1=pyhd8ed1ab_0 + - pytest-mock=3.12.0=pyhd8ed1ab_0 - python-build=1.0.3=pyhd8ed1ab_0 - requests=2.31.0=pyhd8ed1ab_0 - rich=13.6.0=pyhd8ed1ab_0 @@ -428,7 +427,7 @@ dependencies: - wcwidth=0.2.8=pyhd8ed1ab_0 - aiohttp=3.8.6=py311h459d7ec_1 - alembic=1.12.0=pyhd8ed1ab_0 - - arelle-release=2.16.1=pyhd8ed1ab_0 + - arelle-release=2.16.3=pyhd8ed1ab_0 - argon2-cffi=23.1.0=pyhd8ed1ab_0 - aws-crt-cpp=0.24.2=ha28989d_2 - black=23.10.0=py311h38be061_0 @@ -467,33 +466,32 @@ dependencies: - stevedore=5.1.0=pyhd8ed1ab_0 - typer=0.9.0=pyhd8ed1ab_0 - uvicorn-standard=0.23.2=h38be061_1 - - virtualenv=20.24.4=pyhd8ed1ab_0 + - virtualenv=20.24.6=pyhd8ed1ab_0 - aws-sdk-cpp=1.11.156=h314d761_4 - - boto3=1.28.68=pyhd8ed1ab_0 + - boto3=1.28.70=pyhd8ed1ab_0 - cachecontrol-with-filecache=0.13.1=pyhd8ed1ab_0 - - dagster=1.5.3=pyhd8ed1ab_1 + - dagster=1.5.4=pyhd8ed1ab_1 - datasette=0.64.4=pyhd8ed1ab_1 - doc8=1.1.1=pyhd8ed1ab_0 - - email-validator=2.0.0.post2=pyhd8ed1ab_0 + - email-validator=2.1.0.post1=pyhd8ed1ab_0 - frictionless=4.40.8=pyh6c4a22f_0 - gdal=3.7.2=py311h815a124_7 - geopandas-base=0.14.0=pyha770c72_1 - google-auth=2.23.3=pyhca7485f_0 - gql-with-requests=3.4.1=pyhd8ed1ab_0 - jsonschema-with-format-nongpl=4.19.1=pyhd8ed1ab_0 - - jupyter_client=8.4.0=pyhd8ed1ab_0 + - jupyter_client=8.5.0=pyhd8ed1ab_0 - keyring=24.2.0=py311h38be061_1 - matplotlib-base=3.8.0=py311h54ef318_2 - nbformat=5.9.2=pyhd8ed1ab_0 - pre-commit=3.5.0=pyha770c72_0 - prompt_toolkit=3.0.39=hd8ed1ab_0 - requests-oauthlib=1.3.1=pyhd8ed1ab_0 - - scikit-learn=1.3.1=py311hc009520_1 + - scikit-learn=1.3.2=py311hc009520_1 - timezonefinder=6.2.0=py311h459d7ec_1 - - tox=4.11.3=pyhd8ed1ab_0 - catalystcoop.ferc_xbrl_extractor=1.1.1=pyhd8ed1ab_0 - - conda-lock=2.4.0=pyhd8ed1ab_0 - - dagster-graphql=1.5.3=pyhd8ed1ab_1 + - conda-lock=2.4.1=pyhd8ed1ab_0 + - dagster-graphql=1.5.4=pyhd8ed1ab_1 - fiona=1.9.5=py311hbac4ec9_0 - google-api-core=2.12.0=pyhd8ed1ab_0 - google-auth-oauthlib=1.1.0=pyhd8ed1ab_0 @@ -505,11 +503,11 @@ dependencies: - recordlinkage=0.16=pyhd8ed1ab_0 - tabulator=1.53.5=pyhd8ed1ab_0 - twine=4.0.2=pyhd8ed1ab_0 - - dagster-webserver=1.5.3=pyhd8ed1ab_1 + - dagster-webserver=1.5.4=pyhd8ed1ab_1 - geopandas=0.14.0=pyhd8ed1ab_1 - google-cloud-core=2.3.3=pyhd8ed1ab_0 - ipdb=0.13.13=pyhd8ed1ab_0 - - ipykernel=6.25.2=pyh2140261_0 + - ipykernel=6.26.0=pyhf8b6a83_0 - ipywidgets=8.1.1=pyhd8ed1ab_0 - nbconvert-core=7.9.2=pyhd8ed1ab_0 - pyarrow=13.0.0=py311h39c9aba_7_cpu @@ -517,7 +515,7 @@ dependencies: - datapackage=1.15.2=pyh44b312d_0 - google-cloud-storage=2.12.0=pyhca7485f_0 - jupyter_console=6.6.3=pyhd8ed1ab_0 - - jupyter_server=2.8.0=pyhd8ed1ab_0 + - jupyter_server=2.9.1=pyhd8ed1ab_0 - nbconvert-pandoc=7.9.2=pyhd8ed1ab_0 - qtconsole-base=5.4.4=pyha770c72_0 - gcsfs=2023.9.2=pyhd8ed1ab_0 diff --git a/environments/readthedocs-linux-64.conda.lock.yml b/environments/conda-linux-aarch64.lock.yml similarity index 54% rename from environments/readthedocs-linux-64.conda.lock.yml rename to environments/conda-linux-aarch64.lock.yml index b885c51c6d..1b8711407d 100644 --- a/environments/readthedocs-linux-64.conda.lock.yml +++ b/environments/conda-linux-aarch64.lock.yml @@ -1,217 +1,218 @@ # Generated by conda-lock. -# platform: linux-64 -# input_hash: de7a61eb05706475d7310916d22612941ecd2a1f43f939bd8052f7c389034fbb +# platform: linux-aarch64 +# input_hash: 292bb46747ebd38671341e093e05638cdb51ad7fafdbc87e9ee1a6794baa9ed3 channels: - conda-forge - defaults dependencies: - - _libgcc_mutex=0.1=conda_forge - - ca-certificates=2023.7.22=hbcca054_0 + - 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 - - ld_impl_linux-64=2.40=h41732ed_0 - - libboost-headers=1.82.0=ha770c72_6 - - libstdcxx-ng=13.2.0=h7e041cc_2 - - nomkl=1.0=h5ca1d4c_0 + - ld_impl_linux-aarch64=2.40=h2d8c526_0 + - libboost-headers=1.82.0=h8af1aa0_6 + - libgomp=13.2.0=hf8544c7_2 + - libstdcxx-ng=13.2.0=h9a76618_2 + - pandoc=2.19.2=h8af1aa0_2 - poppler-data=0.4.12=hd8ed1ab_0 - python_abi=3.11=4_cp311 - tzdata=2023c=h71feb2d_0 - - fonts-conda-forge=1=0 - - libgomp=13.2.0=h807b86a_2 - _openmp_mutex=4.5=2_gnu + - fonts-conda-forge=1=0 - fonts-conda-ecosystem=1=0 - - libgcc-ng=13.2.0=h807b86a_2 - - aws-c-common=0.9.3=hd590300_0 - - bzip2=1.0.8=h7f98852_4 - - c-ares=1.20.1=hd590300_0 - - geos=3.12.0=h59595ed_0 - - gettext=0.21.1=h27087fc_0 - - gflags=2.2.2=he1b5a44_1004 - - giflib=5.2.1=h0b41bf4_3 - - icu=73.2=h59595ed_0 - - json-c=0.17=h7ab15ed_0 - - keyutils=1.6.1=h166bdaf_0 - - lerc=4.0.0=h27087fc_0 - - libabseil=20230802.1=cxx17_h59595ed_0 - - libaec=1.1.2=h59595ed_1 - - libbrotlicommon=1.1.0=hd590300_1 - - libcrc32c=1.1.2=h9c3ff4c_0 - - libdeflate=1.19=hd590300_0 + - libgcc-ng=13.2.0=hf8544c7_2 + - aws-c-common=0.9.3=h31becfc_0 + - bzip2=1.0.8=hf897c2e_4 + - c-ares=1.20.1=h31becfc_1 + - geos=3.12.0=h2f0025b_0 + - gettext=0.21.1=ha18d298_0 + - gflags=2.2.2=h54f1f3f_1004 + - giflib=5.2.1=hb4cce97_3 + - icu=73.2=h787c7f5_0 + - json-c=0.17=h9d1147b_0 + - keyutils=1.6.1=h4e544f5_0 + - lerc=4.0.0=h4de3ea5_0 + - libabseil=20230802.1=cxx17_h2f0025b_0 + - libaec=1.1.2=h2f0025b_1 + - libbrotlicommon=1.1.0=h31becfc_1 + - libcrc32c=1.1.2=h01db608_0 + - libdeflate=1.19=h31becfc_0 - libev=4.33=h516909a_1 - - libexpat=2.5.0=hcb278e6_1 - - libffi=3.4.2=h7f98852_5 - - libgfortran5=13.2.0=ha4646dd_2 - - libiconv=1.17=h166bdaf_0 - - libjpeg-turbo=3.0.0=hd590300_1 - - libnsl=2.0.1=hd590300_0 - - libnuma=2.0.16=h0b41bf4_1 - - libsodium=1.0.18=h36c2ea0_1 - - libspatialindex=1.9.3=h9c3ff4c_4 - - libutf8proc=2.8.0=h166bdaf_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 - - lz4-c=1.9.4=hcb278e6_0 + - libexpat=2.5.0=hd600fc2_1 + - libffi=3.4.2=h3557bc0_5 + - libgfortran5=13.2.0=h582850c_2 + - libiconv=1.17=h9cdd2b7_0 + - libjpeg-turbo=3.0.0=h31becfc_1 + - libnsl=2.0.1=h31becfc_0 + - libnuma=2.0.16=hb4cce97_1 + - libsodium=1.0.18=hb9de7d4_1 + - libspatialindex=1.9.3=h01db608_4 + - libutf8proc=2.8.0=h4e544f5_0 + - libuuid=2.38.1=hb4cce97_0 + - libuv=1.46.0=h31becfc_0 + - libwebp-base=1.3.2=h31becfc_0 + - libzlib=1.2.13=h31becfc_5 + - lz4-c=1.9.4=hd600fc2_0 - lzo=2.10=h516909a_1000 - - ncurses=6.4=hcb278e6_0 - - nspr=4.35=h27087fc_0 - - openssl=3.1.3=hd590300_0 - - pixman=0.42.2=h59595ed_0 - - pthread-stubs=0.4=h36c2ea0_1001 - - rdma-core=28.9=h59595ed_1 - - re2=2023.03.02=h8c504da_0 - - snappy=1.1.10=h9fff704_0 - - tzcode=2023c=h0b41bf4_0 - - uriparser=0.9.7=hcb278e6_1 - - 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-renderproto=0.11.1=h7f98852_1002 - - xorg-xextproto=7.3.0=h0b41bf4_1003 - - xorg-xproto=7.0.31=h7f98852_1007 - - xz=5.2.6=h166bdaf_0 - - yaml=0.2.5=h7f98852_2 - - aws-c-cal=0.6.2=h09139f6_2 - - aws-c-compression=0.2.17=h184a658_3 - - aws-c-sdkutils=0.1.12=h184a658_2 - - aws-checksums=0.1.17=h184a658_2 - - expat=2.5.0=hcb278e6_1 - - glog=0.6.0=h6f12383_0 - - hdf4=4.2.15=h2a13503_7 - - libbrotlidec=1.1.0=hd590300_1 - - libbrotlienc=1.1.0=hd590300_1 + - ncurses=6.4=h2e1726e_0 + - nspr=4.35=h4de3ea5_0 + - openssl=3.1.4=h31becfc_0 + - pixman=0.42.2=h2f0025b_0 + - pthread-stubs=0.4=hb9de7d4_1001 + - re2=2023.03.02=hdc0ed08_0 + - snappy=1.1.10=he8610fa_0 + - tzcode=2023c=hb4cce97_0 + - uriparser=0.9.7=hd600fc2_1 + - xorg-kbproto=1.0.7=h3557bc0_1002 + - xorg-libice=1.1.1=h7935292_0 + - xorg-libxau=1.0.11=h31becfc_0 + - xorg-libxdmcp=1.1.3=h3557bc0_0 + - 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 + - aws-c-cal=0.6.2=h3c248d9_2 + - aws-c-compression=0.2.17=hc96350a_3 + - aws-c-sdkutils=0.1.12=hc96350a_2 + - aws-checksums=0.1.17=hc96350a_2 + - expat=2.5.0=hd600fc2_1 + - glog=0.6.0=h8ab10f1_0 + - hdf4=4.2.15=hb6ba311_7 + - libbrotlidec=1.1.0=h31becfc_1 + - libbrotlienc=1.1.0=h31becfc_1 - libedit=3.1.20191231=he28a2e2_2 - - libevent=2.1.12=hf998b51_1 - - libgfortran-ng=13.2.0=h69a702a_2 - - libkml=1.3.0=h01aab08_1018 - - libllvm14=14.0.6=hcd5def8_4 - - libnghttp2=1.52.0=h61bc06f_0 - - libpng=1.6.39=h753d276_0 - - libprotobuf=4.23.4=hf27288f_6 - - librttopo=1.1.0=hb58d41b_14 - - libsqlite=3.43.2=h2797004_0 - - libssh2=1.11.0=h0841786_0 - - libxcb=1.15=h0b41bf4_0 - - libxml2=2.11.5=h232c23b_1 - - libzip=1.10.1=h2629f0a_3 - - pandoc=2.19.2=h32600fe_2 - - pcre2=10.40=hc3806b6_0 - - readline=8.2=h8228510_1 - - s2n=1.3.54=h06160fa_0 - - tk=8.6.13=h2797004_0 - - ucx=1.15.0=h64cca9d_0 - - 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 - - aws-c-io=0.13.33=h161b759_0 - - blosc=1.21.5=h0f2a231_0 - - brotli-bin=1.1.0=hd590300_1 - - freetype=2.12.1=h267a509_2 - - krb5=1.21.2=h659d440_0 - - libarchive=3.7.2=h039dbb9_0 - - libglib=2.78.0=hebfc3b9_0 - - libgrpc=1.57.0=ha4d0f93_2 - - libopenblas=0.3.24=pthreads_h413a1c8_0 - - libthrift=0.19.0=hb90f79a_1 - - libtiff=4.6.0=ha9c0a0a_2 - - libxslt=1.1.37=h0054252_1 - - minizip=4.0.1=h0ab5242_5 - - nodejs=20.8.1=h1990674_0 - - nss=3.94=h1d7d5a4_0 - - orc=1.9.0=h52d3b3c_2 - - python=3.11.6=hab00c5b_0_cpython - - sqlite=3.43.2=h2c6b66d_0 - - xorg-libx11=1.8.7=h8ee46fc_0 + - libevent=2.1.12=h4ba1bb4_1 + - libgfortran-ng=13.2.0=he9431aa_2 + - libkml=1.3.0=h7d16752_1018 + - libllvm14=14.0.6=h966f666_4 + - libnghttp2=1.52.0=h250e5c5_0 + - libpng=1.6.39=hf9034f9_0 + - libprotobuf=4.23.4=h87e877f_6 + - librttopo=1.1.0=h707ec9f_14 + - libsqlite=3.43.2=h194ca79_0 + - libssh2=1.11.0=h492db2e_0 + - libxcb=1.15=h2a766a3_0 + - libxml2=2.11.5=h3091e33_1 + - libzip=1.10.1=h4156a30_3 + - pcre2=10.40=he7b27c6_0 + - readline=8.2=h8fc344f_1 + - s2n=1.3.54=h5a25046_0 + - tk=8.6.13=h194ca79_0 + - ucx=1.15.0=h1c93fb9_0 + - xorg-libsm=1.2.4=h5a01bc2_0 + - zeromq=4.3.5=h2f0025b_0 + - zlib=1.2.13=h31becfc_5 + - zstd=1.5.5=h4c53e97_0 + - aws-c-io=0.13.33=hf6573a2_0 + - blosc=1.21.5=h2f3a684_0 + - brotli-bin=1.1.0=h31becfc_1 + - freetype=2.12.1=hf0a5ef3_2 + - krb5=1.21.2=hc419048_0 + - libarchive=3.7.2=h566b526_0 + - libglib=2.78.0=h0464669_0 + - libgrpc=1.57.0=h048544f_2 + - libopenblas=0.3.24=pthreads_h5a5ec62_0 + - libthrift=0.19.0=h043aeee_1 + - libtiff=4.6.0=h1708d11_2 + - libxslt=1.1.37=hc886646_1 + - minizip=4.0.1=hb75dd74_5 + - nodejs=20.8.1=hc1f8a26_0 + - nss=3.94=hc5a5cc2_0 + - orc=1.9.0=hfcd03c9_2 + - python=3.11.6=h43d1f9e_0_cpython + - sqlite=3.43.2=h3b3482f_0 + - tiledb=2.16.3=hdb54b9b_3 + - xorg-libx11=1.8.7=h055a233_0 + - aiofiles=23.1.0=pyhd8ed1ab_1 - alabaster=0.7.13=pyhd8ed1ab_0 - anyascii=0.3.2=pyhd8ed1ab_0 - appdirs=1.4.4=pyh9f0ad1d_0 - - astroid=3.0.1=py311h38be061_0 + - astroid=3.0.1=py311hec3470c_0 - attrs=23.1.0=pyh71513ae_1 - - aws-c-event-stream=0.3.2=h6fea174_2 - - aws-c-http=0.7.13=hb59894b_2 + - aws-c-event-stream=0.3.2=h13ef912_2 + - aws-c-http=0.7.13=h2aeb8d6_2 - backcall=0.2.0=pyh9f0ad1d_0 - backoff=2.2.1=pyhd8ed1ab_0 - backports=1.0=pyhd8ed1ab_3 - blinker=1.6.3=pyhd8ed1ab_0 - - brotli=1.1.0=hd590300_1 - - brotli-python=1.1.0=py311hb755f60_1 + - brotli=1.1.0=h31becfc_1 + - brotli-python=1.1.0=py311h8715677_1 - cached_property=1.5.2=pyha770c72_1 - - cachetools=5.3.1=pyhd8ed1ab_0 + - cachetools=5.3.2=pyhd8ed1ab_0 - cachy=0.3.0=pyhd8ed1ab_1 - catalystcoop.dbfread=3.0.0=py_0 - - cchardet=2.1.7=py311hb755f60_5 + - cchardet=2.1.7=py311h8715677_5 - certifi=2023.7.22=pyhd8ed1ab_0 - cfgv=3.3.1=pyhd8ed1ab_0 - - chardet=5.2.0=py311h38be061_1 - - charset-normalizer=3.3.0=pyhd8ed1ab_0 + - chardet=5.2.0=py311hfecb2dc_1 + - charset-normalizer=3.3.1=pyhd8ed1ab_0 - click=8.1.7=unix_pyh707e725_0 - cloudpickle=3.0.0=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_0 - crashtest=0.4.1=pyhd8ed1ab_0 - cycler=0.12.1=pyhd8ed1ab_0 - - dagster-pipes=1.5.3=pyhd8ed1ab_1 + - dagster-pipes=1.5.4=pyhd8ed1ab_1 - dataclasses=0.8=pyhc8e2a94_3 - - dbus=1.13.6=h5008d03_3 - - debugpy=1.8.0=py311hb755f60_1 + - dbus=1.13.6=h12b9eeb_3 + - debugpy=1.8.0=py311h8715677_1 - decorator=5.1.1=pyhd8ed1ab_0 - defusedxml=0.7.1=pyhd8ed1ab_0 - distlib=0.3.7=pyhd8ed1ab_0 - docstring_parser=0.15=pyhd8ed1ab_0 - - docutils=0.20.1=py311h38be061_2 + - docutils=0.20.1=py311hfecb2dc_2 - entrypoints=0.4=pyhd8ed1ab_0 - et_xmlfile=1.1.0=pyhd8ed1ab_0 - exceptiongroup=1.1.3=pyhd8ed1ab_0 - executing=1.2.0=pyhd8ed1ab_0 - filelock=3.12.4=pyhd8ed1ab_0 - - fontconfig=2.14.2=h14ed4e7_0 - - freexl=2.0.0=h743c826_0 - - frozenlist=1.4.0=py311h459d7ec_1 + - fontconfig=2.14.2=ha9a116f_0 + - freexl=2.0.0=h5428426_0 + - frozenlist=1.4.0=py311hcd402e7_1 - fsspec=2023.9.2=pyh1a96a4e_0 - - greenlet=3.0.0=py311hb755f60_1 - - grpcio=1.57.0=py311ha6695c7_2 + - greenlet=3.0.1=py311h8715677_0 + - grpcio=1.57.0=py311h1a7908d_2 - hpack=4.0.0=pyh9f0ad1d_0 - - httptools=0.6.1=py311h459d7ec_0 + - httptools=0.6.1=py311hcd402e7_0 - humanfriendly=10.0=pyhd8ed1ab_6 + - hupper=1.12=pyhd8ed1ab_0 - hyperframe=6.0.1=pyhd8ed1ab_0 - idna=3.4=pyhd8ed1ab_0 - ijson=3.2.3=pyhd8ed1ab_0 - imagesize=1.4.1=pyhd8ed1ab_0 - iniconfig=2.0.0=pyhd8ed1ab_0 - ipython_genutils=0.2.0=py_1 + - itsdangerous=2.1.2=pyhd8ed1ab_0 - jeepney=0.8.0=pyhd8ed1ab_0 - - jellyfish=1.0.1=py311h46250e7_1 + - jellyfish=1.0.1=py311h2bdde80_1 - jmespath=1.0.1=pyhd8ed1ab_0 - json5=0.9.14=pyhd8ed1ab_0 - - jsonpointer=2.4=py311h38be061_3 + - jsonpointer=2.4=py311hec3470c_3 - jupyterlab_widgets=3.0.9=pyhd8ed1ab_0 - - kiwisolver=1.4.5=py311h9547e67_1 - - lcms2=2.15=hb7c19ff_3 - - libblas=3.9.0=19_linux64_openblas - - libcurl=8.4.0=hca28451_0 - - libpq=16.0=hfc447b1_1 - - llvmlite=0.40.1=py311ha6695c7_0 + - kiwisolver=1.4.5=py311h0d5d7b0_1 + - lcms2=2.15=h922389a_3 + - libblas=3.9.0=19_linuxaarch64_openblas + - libcurl=8.4.0=h4e8248e_0 + - libpq=16.0=h04b8c23_1 + - llvmlite=0.40.1=py311h1a7908d_0 - locket=1.0.0=pyhd8ed1ab_0 - - lxml=4.9.3=py311h1a07684_1 + - lxml=4.9.3=py311h40dcbb3_1 - marko=1.3.1=pyhd8ed1ab_0 - - markupsafe=2.1.3=py311h459d7ec_1 + - markupsafe=2.1.3=py311hc8f2f60_1 - mdurl=0.1.0=pyhd8ed1ab_0 + - mergedeep=1.3.4=pyhd8ed1ab_0 - mistune=3.0.1=pyhd8ed1ab_0 - more-itertools=10.1.0=pyhd8ed1ab_0 - - msgpack-python=1.0.6=py311h9547e67_0 - - multidict=6.0.4=py311h459d7ec_1 + - msgpack-python=1.0.6=py311h0d5d7b0_0 + - multidict=6.0.4=py311hcd402e7_1 - munch=4.0.0=pyhd8ed1ab_0 - munkres=1.1.4=pyh9f0ad1d_0 - mypy_extensions=1.0.0=pyha770c72_0 - nest-asyncio=1.5.8=pyhd8ed1ab_0 - - networkx=3.1=pyhd8ed1ab_0 - - nh3=0.2.14=py311h46250e7_1 - - openjpeg=2.5.0=h488ebb8_3 + - networkx=3.2=pyhd8ed1ab_1 + - openjpeg=2.5.0=h0d9d63b_3 - packaging=23.2=pyhd8ed1ab_0 - pandocfilters=1.5.0=pyhd8ed1ab_0 - parso=0.8.3=pyhd8ed1ab_0 @@ -223,7 +224,7 @@ dependencies: - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 - pluggy=1.3.0=pyhd8ed1ab_0 - prometheus_client=0.17.1=pyhd8ed1ab_0 - - psutil=5.9.5=py311h459d7ec_1 + - psutil=5.9.5=py311hcd402e7_1 - ptyprocess=0.7.0=pyhd3deb0d_0 - pure_eval=0.2.2=pyhd8ed1ab_0 - pyasn1=0.5.0=pyhd8ed1ab_0 @@ -236,24 +237,25 @@ dependencies: - python-dotenv=1.0.0=pyhd8ed1ab_1 - python-fastjsonschema=2.18.1=pyhd8ed1ab_0 - python-json-logger=2.0.7=pyhd8ed1ab_0 + - python-multipart=0.0.6=pyhd8ed1ab_0 - python-tzdata=2023.3=pyhd8ed1ab_0 - pytz=2023.3.post1=pyhd8ed1ab_0 - pytzdata=2020.1=pyh9f0ad1d_0 - pywin32-on-windows=0.1.0=pyh1179c8e_3 - pyxlsb=1.0.10=pyhd8ed1ab_0 - - pyyaml=6.0.1=py311h459d7ec_1 - - pyzmq=25.1.1=py311h75c88c4_1 - - regex=2023.10.3=py311h459d7ec_0 + - pyyaml=6.0.1=py311hcd402e7_1 + - pyzmq=25.1.1=py311h0fdcd05_2 + - regex=2023.10.3=py311hcd402e7_0 - rfc3986=2.0.0=pyhd8ed1ab_0 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rpds-py=0.10.6=py311h46250e7_0 - - rtree=1.1.0=py311h3bb2b0f_0 - - ruamel.yaml.clib=0.2.7=py311h459d7ec_2 - - ruff=0.1.1=py311h7145743_0 + - rpds-py=0.10.6=py311h32437ce_0 + - rtree=1.1.0=py311h04fbf56_0 + - ruamel.yaml.clib=0.2.7=py311hcd402e7_2 + - ruff=0.1.2=py311he69e3a7_0 - send2trash=1.8.2=pyh41d4057_0 - setuptools=68.2.2=pyhd8ed1ab_0 - - shellingham=1.5.3=pyhd8ed1ab_0 - - simpleeval=0.9.13=py311h459d7ec_1 + - shellingham=1.5.4=pyhd8ed1ab_0 + - simpleeval=0.9.13=pyhd8ed1ab_1 - six=1.16.0=pyh6c4a22f_0 - smmap=5.0.0=pyhd8ed1ab_0 - sniffio=1.3.0=pyhd8ed1ab_0 @@ -269,59 +271,63 @@ dependencies: - tomlkit=0.12.1=pyha770c72_0 - toolz=0.12.0=pyhd8ed1ab_0 - toposort=1.10=pyhd8ed1ab_0 - - tornado=6.3.3=py311h459d7ec_1 - - traitlets=5.11.2=pyhd8ed1ab_0 + - tornado=6.3.3=py311hc8f2f60_1 + - traitlets=5.12.0=pyhd8ed1ab_0 - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 - types-pyyaml=6.0.12.12=pyhd8ed1ab_0 - typing_extensions=4.8.0=pyha770c72_0 - typing_utils=0.1.0=pyhd8ed1ab_0 - unicodecsv=0.14.1=py_1 - uri-template=1.3.0=pyhd8ed1ab_0 - - uvloop=0.18.0=py311h460e60f_0 + - uvloop=0.19.0=py311hf7b7e1d_0 - validators=0.22.0=pyhd8ed1ab_0 - webcolors=1.13=pyhd8ed1ab_0 - webencodings=0.5.1=pyhd8ed1ab_2 - websocket-client=1.6.4=pyhd8ed1ab_0 - - websockets=10.4=py311hd4cff14_1 + - websockets=10.4=py311hdfa8b44_1 - wheel=0.41.2=pyhd8ed1ab_0 - widgetsnbextension=4.0.9=pyhd8ed1ab_0 - xlrd=2.0.1=pyhd8ed1ab_3 - xlsxwriter=3.1.7=pyhd8ed1ab_0 - - xorg-libxext=1.3.4=h0b41bf4_2 - - xorg-libxrender=0.9.11=hd590300_0 + - xorg-libxext=1.3.4=h2a766a3_2 + - xorg-libxrender=0.9.11=h7935292_0 - xyzservices=2023.10.0=pyhd8ed1ab_0 - zipp=3.17.0=pyhd8ed1ab_0 - aiosignal=1.3.1=pyhd8ed1ab_0 - anyio=4.0.0=pyhd8ed1ab_0 + - asgi-csrf=0.9=pyhd8ed1ab_0 + - asgiref=3.7.2=pyhd8ed1ab_0 - asttokens=2.4.0=pyhd8ed1ab_0 - async-lru=2.0.4=pyhd8ed1ab_0 - - aws-c-auth=0.7.4=h1083cbe_2 - - aws-c-mqtt=0.9.7=h55cd26b_0 - - babel=2.13.0=pyhd8ed1ab_0 + - aws-c-auth=0.7.4=ha133c5f_2 + - aws-c-mqtt=0.9.7=h0fef486_0 + - babel=2.13.1=pyhd8ed1ab_0 - backports.functools_lru_cache=1.6.5=pyhd8ed1ab_0 - beautifulsoup4=4.12.2=pyha770c72_0 - bleach=6.1.0=pyhd8ed1ab_0 - cached-property=1.5.2=hd8ed1ab_1 - - cairo=1.18.0=h3faef2a_0 - - cffi=1.16.0=py311hb3a22ac_0 - - cfitsio=4.3.0=hbdc6101_0 + - cairo=1.18.0=ha13f110_0 + - cffi=1.16.0=py311h7963103_0 + - cfitsio=4.3.0=hf28c5f1_0 - click-default-group=1.2.4=pyhd8ed1ab_0 + - click-default-group-wheel=1.2.2=pyhd8ed1ab_0 - click-plugins=1.1.1=py_0 - cligj=0.7.2=pyhd8ed1ab_1 - clikit=0.6.2=pyhd8ed1ab_2 - coloredlogs=14.0=pyhd8ed1ab_3 - comm=0.1.4=pyhd8ed1ab_0 - - coverage=7.3.2=py311h459d7ec_0 - - fonttools=4.43.1=py311h459d7ec_0 + - coverage=7.3.2=py311hc8f2f60_0 + - fonttools=4.43.1=py311hcd402e7_0 - gitdb=4.0.11=pyhd8ed1ab_0 - graphql-core=3.2.3=pyhd8ed1ab_0 - h11=0.14.0=pyhd8ed1ab_0 - h2=4.1.0=pyhd8ed1ab_0 - - hdf5=1.14.2=nompi_h4f84152_100 + - hdf5=1.14.2=nompi_ha486f32_100 - html5lib=1.1=pyh9f0ad1d_0 - importlib-metadata=6.8.0=pyha770c72_0 - importlib_resources=6.1.0=pyhd8ed1ab_0 - isodate=0.6.1=pyhd8ed1ab_0 + - janus=1.0.0=pyhd8ed1ab_0 - jaraco.classes=3.3.0=pyhd8ed1ab_0 - jedi=0.19.1=pyhd8ed1ab_0 - jinja2=3.1.2=pyhd8ed1ab_1 @@ -329,60 +335,60 @@ dependencies: - jsonlines=4.0.0=pyhd8ed1ab_0 - jupyterlab_pygments=0.2.2=pyhd8ed1ab_0 - latexcodec=2.0.1=pyh9f0ad1d_0 - - libcblas=3.9.0=19_linux64_openblas - - libgoogle-cloud=2.12.0=h8d7e28b_2 - - liblapack=3.9.0=19_linux64_openblas + - libcblas=3.9.0=19_linuxaarch64_openblas + - libgoogle-cloud=2.12.0=hcf22bcc_2 + - liblapack=3.9.0=19_linuxaarch64_openblas - linear-tsv=1.1.0=py_1 - markdown-it-py=3.0.0=pyhd8ed1ab_0 - matplotlib-inline=0.1.6=pyhd8ed1ab_0 - nodeenv=1.8.0=pyhd8ed1ab_0 - - openpyxl=3.1.2=py311h459d7ec_1 + - openpyxl=3.1.2=py311hcd402e7_1 - overrides=7.4.0=pyhd8ed1ab_0 - partd=1.4.1=pyhd8ed1ab_0 - pexpect=4.8.0=pyh1a96a4e_2 - - pillow=10.1.0=py311ha6c5da5_0 + - pillow=10.1.0=py311hbcc2232_0 + - pint=0.22=pyhd8ed1ab_1 - pip=23.3.1=pyhd8ed1ab_0 - - postgresql=16.0=h8972f4a_1 - - proj=9.3.0=h1d62c97_2 - - protobuf=4.23.4=py311h46cbc50_3 + - postgresql=16.0=he3d1b8e_1 + - proj=9.3.0=h7b42f86_2 + - protobuf=4.23.4=py311h2dbc127_3 - pyasn1-modules=0.3.0=pyhd8ed1ab_0 - - pyproject-api=1.6.1=pyhd8ed1ab_0 - pyproject_hooks=1.0.0=pyhd8ed1ab_0 - - pytest=7.4.2=pyhd8ed1ab_0 + - pytest=7.4.3=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - python-slugify=8.0.1=pyhd8ed1ab_2 - pyu2f=0.1.5=pyhd8ed1ab_0 - - qtpy=2.4.0=pyhd8ed1ab_0 + - qtpy=2.4.1=pyhd8ed1ab_0 - referencing=0.30.2=pyhd8ed1ab_0 - restructuredtext_lint=1.4.0=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - rsa=4.9=pyhd8ed1ab_0 - - ruamel.yaml=0.17.39=py311h459d7ec_0 - - sqlalchemy=1.4.49=py311h459d7ec_1 + - ruamel.yaml=0.18.2=py311hcd402e7_0 + - sqlalchemy=1.4.49=py311hc8f2f60_1 - terminado=0.17.1=pyh41d4057_0 - tinycss2=1.2.1=pyhd8ed1ab_0 - tqdm=4.66.1=pyhd8ed1ab_0 - typing-extensions=4.8.0=hd8ed1ab_0 - universal_pathlib=0.1.4=pyhd8ed1ab_0 - urllib3=1.26.18=pyhd8ed1ab_0 - - watchdog=3.0.0=py311h38be061_1 - - xerces-c=3.2.4=hac6953d_3 - - yarl=1.9.2=py311h459d7ec_1 + - watchdog=3.0.0=py311hfecb2dc_1 + - xerces-c=3.2.4=hf13c1fb_3 + - yarl=1.9.2=py311hcd402e7_1 - addfips=0.4.0=pyhd8ed1ab_1 - aniso8601=9.0.1=pyhd8ed1ab_0 - - argon2-cffi-bindings=21.2.0=py311h459d7ec_4 + - argon2-cffi-bindings=21.2.0=py311hcd402e7_4 - arrow=1.3.0=pyhd8ed1ab_0 - async-timeout=4.0.3=pyhd8ed1ab_0 - - aws-c-s3=0.3.17=hfb4bb88_4 - - botocore=1.31.68=pyhd8ed1ab_0 + - aws-c-s3=0.3.17=he0cbd1c_4 + - botocore=1.31.70=pyhd8ed1ab_0 - branca=0.6.0=pyhd8ed1ab_0 - - cmarkgfm=0.8.0=py311h459d7ec_3 + - cmarkgfm=0.8.0=py311hcd402e7_3 - croniter=2.0.1=pyhd8ed1ab_0 - - cryptography=41.0.4=py311h63ff55d_0 + - cryptography=41.0.5=py311hd42d77a_0 - fqdn=1.5.1=pyhd8ed1ab_0 - - geotiff=1.7.1=hf074850_14 + - geotiff=1.7.1=he43841b_14 - gitpython=3.1.40=pyhd8ed1ab_0 - - google-crc32c=1.1.2=py311h9b08b9c_5 + - google-crc32c=1.1.2=py311h52a290d_5 - googleapis-common-protos=1.61.0=pyhd8ed1ab_0 - gql=3.4.1=pyhd8ed1ab_0 - graphql-relay=3.2.0=pyhd8ed1ab_0 @@ -391,40 +397,39 @@ dependencies: - importlib_metadata=6.8.0=hd8ed1ab_0 - jsonschema-specifications=2023.7.1=pyhd8ed1ab_0 - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1 - - kealib=1.5.2=hcd42e92_1 - - libnetcdf=4.9.2=nompi_h80fb2b6_112 - - libspatialite=5.1.0=h090f1da_0 + - kealib=1.5.2=h105ac0c_1 + - libnetcdf=4.9.2=nompi_hc188a27_112 + - libspatialite=5.1.0=h761fefd_0 - mako=1.2.4=pyhd8ed1ab_0 - - numpy=1.24.4=py311h64a7726_0 + - numpy=1.24.4=py311h69ead2a_0 - pbr=5.11.1=pyhd8ed1ab_0 - - pendulum=2.1.2=py311h459d7ec_6 + - pendulum=2.1.2=py311hcd402e7_6 - platformdirs=3.11.0=pyhd8ed1ab_0 - - poppler=23.10.0=h590f24d_0 + - poppler=23.10.0=h3cd87ed_0 - pybtex=0.24.0=pyhd8ed1ab_2 - - pydantic=1.10.13=py311h459d7ec_1 - - pyproj=3.6.1=py311h1facc83_2 + - pydantic=1.10.13=py311hcd402e7_1 + - pyproj=3.6.1=py311he9ea5f7_3 - pytest-console-scripts=1.4.1=pyhd8ed1ab_0 - pytest-cov=4.1.0=pyhd8ed1ab_0 - - pytest-mock=3.11.1=pyhd8ed1ab_0 + - pytest-mock=3.12.0=pyhd8ed1ab_0 - python-build=1.0.3=pyhd8ed1ab_0 - requests=2.31.0=pyhd8ed1ab_0 - rich=13.6.0=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 - starlette=0.31.1=pyhd8ed1ab_0 - - tiledb=2.16.3=h8c794c1_3 - - ukkonen=1.0.1=py311h9547e67_4 - - uvicorn=0.23.2=py311h38be061_1 - - watchfiles=0.20.0=py311h46250e7_2 + - ukkonen=1.0.1=py311h098ece5_4 + - uvicorn=0.23.2=py311hfecb2dc_1 + - watchfiles=0.20.0=py311h2bdde80_2 - wcwidth=0.2.8=pyhd8ed1ab_0 - - aiohttp=3.8.6=py311h459d7ec_1 + - aiohttp=3.8.6=py311hcd402e7_1 - alembic=1.12.0=pyhd8ed1ab_0 - - arelle-release=2.16.1=pyhd8ed1ab_0 + - arelle-release=2.16.3=pyhd8ed1ab_0 - argon2-cffi=23.1.0=pyhd8ed1ab_0 - - aws-crt-cpp=0.24.2=ha28989d_2 - - black=23.10.0=py311h38be061_0 - - bottleneck=1.3.7=py311h1f0f07a_1 + - aws-crt-cpp=0.24.2=h9c4eaab_2 + - black=23.10.0=py311hec3470c_0 + - bottleneck=1.3.7=py311hf13da56_1 - cachecontrol=0.13.1=pyhd8ed1ab_0 - - contourpy=1.1.1=py311h9547e67_1 + - contourpy=1.1.1=py311h098ece5_1 - dask-core=2023.10.0=pyhd8ed1ab_0 - dnspython=2.4.2=pyhd8ed1ab_1 - ensureconda=1.4.3=pyhd8ed1ab_0 @@ -432,80 +437,81 @@ dependencies: - google-resumable-media=2.6.0=pyhd8ed1ab_0 - graphene=3.3=pyhd8ed1ab_0 - grpcio-status=1.57.0=pyhd8ed1ab_0 - - h3-py=3.7.6=py311hb755f60_1 + - h3-py=3.7.6=py311h8715677_1 + - httpx=0.25.0=pyhd8ed1ab_0 - identify=2.5.30=pyhd8ed1ab_0 - isoduration=20.11.0=pyhd8ed1ab_0 - jsonschema=4.19.1=pyhd8ed1ab_0 - - jupyter_core=5.4.0=py311h38be061_0 - - libgdal=3.7.2=h6f3d308_7 - - numba=0.57.1=py311h96b013e_0 - - numexpr=2.8.7=py311h039bad6_104 + - jupyter_core=5.4.0=py311hec3470c_0 + - libgdal=3.7.2=hade022d_7 + - numba=0.57.1=py311h9c3f3d9_0 + - numexpr=2.8.7=py311h20c0e1e_4 - oauthlib=3.2.2=pyhd8ed1ab_0 - - pandas=2.1.1=py311h320fe9a_1 + - pandas=2.1.1=py311h2dc6514_1 - prompt-toolkit=3.0.39=pyha770c72_0 - - pybtex-docutils=1.0.3=py311h38be061_1 + - pybtex-docutils=1.0.3=py311hec3470c_1 - pyopenssl=23.2.0=pyhd8ed1ab_1 - - readme_renderer=42.0=pyhd8ed1ab_0 + - readme_renderer=41.0=pyhd8ed1ab_0 - readthedocs-sphinx-ext=2.2.3=pyhd8ed1ab_0 - requests-toolbelt=0.10.1=pyhd8ed1ab_0 - responses=0.23.1=pyhd8ed1ab_0 - s3transfer=0.7.0=pyhd8ed1ab_0 - - scipy=1.11.3=py311h64a7726_1 - - secretstorage=3.3.3=py311h38be061_2 - - shapely=2.0.2=py311he06c224_0 + - scipy=1.11.3=py311h69ead2a_1 + - secretstorage=3.3.3=py311hfecb2dc_2 + - shapely=2.0.2=py311h50b4e29_0 - stevedore=5.1.0=pyhd8ed1ab_0 - typer=0.9.0=pyhd8ed1ab_0 - - uvicorn-standard=0.23.2=h38be061_1 - - virtualenv=20.24.4=pyhd8ed1ab_0 - - aws-sdk-cpp=1.11.156=h314d761_4 - - boto3=1.28.68=pyhd8ed1ab_0 + - uvicorn-standard=0.23.2=hfecb2dc_1 + - virtualenv=20.24.6=pyhd8ed1ab_0 + - aws-sdk-cpp=1.11.156=hdea27d8_4 + - boto3=1.28.70=pyhd8ed1ab_0 - cachecontrol-with-filecache=0.13.1=pyhd8ed1ab_0 - - dagster=1.5.3=pyhd8ed1ab_1 + - dagster=1.5.4=pyhd8ed1ab_1 + - datasette=0.64.4=pyhd8ed1ab_1 - doc8=1.1.1=pyhd8ed1ab_0 - - email-validator=2.0.0.post2=pyhd8ed1ab_0 + - email-validator=2.1.0.post1=pyhd8ed1ab_0 - frictionless=4.40.8=pyh6c4a22f_0 - - gdal=3.7.2=py311h815a124_7 + - gdal=3.7.2=py311h010e1cf_7 - geopandas-base=0.14.0=pyha770c72_1 - google-auth=2.23.3=pyhca7485f_0 - gql-with-requests=3.4.1=pyhd8ed1ab_0 - jsonschema-with-format-nongpl=4.19.1=pyhd8ed1ab_0 - - jupyter_client=8.4.0=pyhd8ed1ab_0 - - keyring=24.2.0=py311h38be061_1 - - matplotlib-base=3.8.0=py311h54ef318_2 + - jupyter_client=8.5.0=pyhd8ed1ab_0 + - keyring=24.2.0=py311hec3470c_1 + - matplotlib-base=3.8.0=py311h1f11223_2 - nbformat=5.9.2=pyhd8ed1ab_0 - pre-commit=3.5.0=pyha770c72_0 - prompt_toolkit=3.0.39=hd8ed1ab_0 - requests-oauthlib=1.3.1=pyhd8ed1ab_0 - - scikit-learn=1.3.1=py311hc009520_1 - - timezonefinder=6.2.0=py311h459d7ec_1 - - tox=4.11.3=pyhd8ed1ab_0 + - scikit-learn=1.3.2=py311hb93614b_1 + - timezonefinder=6.0.2=pyhd8ed1ab_0 - catalystcoop.ferc_xbrl_extractor=1.1.1=pyhd8ed1ab_0 - - conda-lock=2.4.0=pyhd8ed1ab_0 - - dagster-graphql=1.5.3=pyhd8ed1ab_1 - - fiona=1.9.5=py311hbac4ec9_0 + - conda-lock=2.4.1=pyhd8ed1ab_0 + - dagster-graphql=1.5.4=pyhd8ed1ab_1 + - fiona=1.9.5=py311h717dbbd_0 - google-api-core=2.12.0=pyhd8ed1ab_0 - google-auth-oauthlib=1.1.0=pyhd8ed1ab_0 - ipython=8.16.1=pyh0d859eb_0 - jupyter_events=0.8.0=pyhd8ed1ab_0 - - libarrow=13.0.0=h0f80be4_7_cpu + - libarrow=13.0.0=h399ce64_7_cpu - mapclassify=2.6.1=pyhd8ed1ab_0 - nbclient=0.8.0=pyhd8ed1ab_0 - recordlinkage=0.16=pyhd8ed1ab_0 - tabulator=1.53.5=pyhd8ed1ab_0 - twine=4.0.2=pyhd8ed1ab_0 - - dagster-webserver=1.5.3=pyhd8ed1ab_1 + - dagster-webserver=1.5.4=pyhd8ed1ab_1 - geopandas=0.14.0=pyhd8ed1ab_1 - google-cloud-core=2.3.3=pyhd8ed1ab_0 - ipdb=0.13.13=pyhd8ed1ab_0 - - ipykernel=6.25.2=pyh2140261_0 + - ipykernel=6.26.0=pyhf8b6a83_0 - ipywidgets=8.1.1=pyhd8ed1ab_0 - nbconvert-core=7.9.2=pyhd8ed1ab_0 - - pyarrow=13.0.0=py311h39c9aba_7_cpu + - pyarrow=13.0.0=py311h1eb6f34_7_cpu - tableschema=1.19.3=pyh9f0ad1d_0 - datapackage=1.15.2=pyh44b312d_0 - google-cloud-storage=2.12.0=pyhca7485f_0 - jupyter_console=6.6.3=pyhd8ed1ab_0 - - jupyter_server=2.8.0=pyhd8ed1ab_0 + - jupyter_server=2.9.1=pyhd8ed1ab_0 - nbconvert-pandoc=7.9.2=pyhd8ed1ab_0 - qtconsole-base=5.4.4=pyha770c72_0 - gcsfs=2023.9.2=pyhd8ed1ab_0 diff --git a/environments/conda-lock.yml b/environments/conda-lock.yml index 00989ee8b0..e31e58cca8 100644 --- a/environments/conda-lock.yml +++ b/environments/conda-lock.yml @@ -17,16 +17,18 @@ version: 1 metadata: content_hash: - linux-64: de7a61eb05706475d7310916d22612941ecd2a1f43f939bd8052f7c389034fbb - osx-64: 8aa42773a7607bf040989d5613479361acc24671ae6c8249c38b2d8110f6ea4f - osx-arm64: 6cdef4ded203f30eb46bb8f715fb04964ebf1bd0dcdcea768bffc03e3d52cc64 - win-64: b88fac7d018b2ad0c30bd9b3df8c0861aa204c5633d40ec0a71d1fbff60e0086 + linux-aarch64: 292bb46747ebd38671341e093e05638cdb51ad7fafdbc87e9ee1a6794baa9ed3 + linux-64: 7c8b2f7fe28cdfc4b83bb1b9bf64f5957d45794c915656c2c040ddb9df08ef23 + osx-64: 9f5d630b29b23ce10e90cefc9bd0027208b275e1454c2857376e9ad24d38f078 + osx-arm64: fa47a41573d71b012f3e7c8a64aab6beb2a737e2dd124ce8b6cf070159df2705 + win-64: 5342803a78bc96b9effde36098e7abbaae7dbed8a84c02e4a68e8154592dba13 channels: - url: conda-forge used_env_vars: [] - url: defaults used_env_vars: [] platforms: + - linux-aarch64 - linux-64 - osx-64 - osx-arm64 @@ -272,10 +274,10 @@ package: platform: linux-64 dependencies: libgcc-ng: ">=12" - url: https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.20.1-hd590300_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.20.1-hd590300_1.conda hash: - md5: 6642e4faa4804be3a0e7edfefbd16595 - sha256: afe0f91314a1de2969bb7ebb92bf6c9d3326fb8cdbdc00d8111bad8952a8dc0f + md5: 2facbaf5ee1a56967aecaee89799160e + sha256: 1700d9ebfd3b21c8b50e12a502f26e015719e1f3dbb5d491b5be061cf148ca7a category: main optional: false - name: geos @@ -673,16 +675,16 @@ package: category: main optional: false - name: openssl - version: 3.1.3 + version: 3.1.4 manager: conda platform: linux-64 dependencies: ca-certificates: "" libgcc-ng: ">=12" - url: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.1.3-hd590300_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.1.4-hd590300_0.conda hash: - md5: 7bb88ce04c8deb9f7d763ae04a1da72f - sha256: f4e35f506c7e8ab7dfdc47255b0d5aa8ce0c99028ae0affafd274333042c4f70 + md5: 412ba6938c3e2abaca8b1129ea82e238 + sha256: d15b3e83ce66c6f6fbb4707f2f5c53337124c01fb03bfda1cf25c5b41123efc7 category: main optional: false - name: pixman @@ -1865,15 +1867,15 @@ package: category: main optional: false - name: cachetools - version: 5.3.1 + version: 5.3.2 manager: conda platform: linux-64 dependencies: python: ">=3.7" - url: https://conda.anaconda.org/conda-forge/noarch/cachetools-5.3.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/cachetools-5.3.2-pyhd8ed1ab_0.conda hash: - md5: 60b5eb16d9a7a5482ba37f67aa49db5b - sha256: 8d30a41a88900730c748f5b296730a0d48e5cfa2c8b260aab60fa9f26ffafcc0 + md5: 185cc1bf1d5af90020292888a3c7eb5d + sha256: cb8a6688d5650e4546a5f3c5b825bfe3c82594f1f588a93817f1bdb23e74baad category: main optional: false - name: cachy @@ -1953,15 +1955,15 @@ package: category: main optional: false - name: charset-normalizer - version: 3.3.0 + version: 3.3.1 manager: conda platform: linux-64 dependencies: python: ">=3.7" - url: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.3.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.3.1-pyhd8ed1ab_0.conda hash: - md5: fef8ef5f0a54546b9efee39468229917 - sha256: 3407cd21af7e85aeb9499c377e7db25d2bbb9cbaf2f47d92626b3471dca65b4c + md5: 985378f74689fccce52f158027bd9acd + sha256: a31739c49c4b1c8e0cbdec965ba152683d36ce6e23bdaefcfee99937524dabd1 category: main optional: false - name: click @@ -2026,15 +2028,15 @@ package: category: main optional: false - name: dagster-pipes - version: 1.5.3 + version: 1.5.4 manager: conda platform: linux-64 dependencies: python: ">=3.8" - url: https://conda.anaconda.org/conda-forge/noarch/dagster-pipes-1.5.3-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/dagster-pipes-1.5.4-pyhd8ed1ab_1.conda hash: - md5: f1d822044ec73e262eb9de200e8ddc9e - sha256: b50f5c65bee572e6834d778b09d9258bd5932349fdc71afcda24429183ef1cd6 + md5: e415c49419cae013a09145a3a16244ca + sha256: c84ac60663552b916422a81abd243aad60358ca32170cd564c3c6af9179dc100 category: main optional: false - name: dataclasses @@ -2257,7 +2259,7 @@ package: category: main optional: false - name: greenlet - version: 3.0.0 + version: 3.0.1 manager: conda platform: linux-64 dependencies: @@ -2265,10 +2267,10 @@ package: libstdcxx-ng: ">=12" python: ">=3.11,<3.12.0a0" python_abi: 3.11.* - url: https://conda.anaconda.org/conda-forge/linux-64/greenlet-3.0.0-py311hb755f60_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/greenlet-3.0.1-py311hb755f60_0.conda hash: - md5: f902187d6de294292d8462bdcec9a7b2 - sha256: 3f7c4602b95cb40562e191f5f4079573bc829b09c7767cef84ed651c4b071c81 + md5: 7c82abd17036c6ca0f02f2a8935c5572 + sha256: 8470a1c15889f4830df38966e29e3a7aa4473681b7b5997d916428c929544d74 category: main optional: false - name: grpcio @@ -2770,15 +2772,15 @@ package: category: dev optional: true - name: networkx - version: "3.1" + version: "3.2" manager: conda platform: linux-64 dependencies: - python: ">=3.8" - url: https://conda.anaconda.org/conda-forge/noarch/networkx-3.1-pyhd8ed1ab_0.conda + python: ">=3.9" + url: https://conda.anaconda.org/conda-forge/noarch/networkx-3.2-pyhd8ed1ab_1.conda hash: - md5: 254f787d5068bc89f578bf63893ce8b4 - sha256: 6b955c8530985fa727ad3323653a54af44ecf453cfdb1b549b3edff609bd3728 + md5: 522039fb968d6d0a10e872e6f3856f53 + sha256: 857dc30c287f90da1dd1c0a781a5305abb92db900fd5675c8bdd16ae339abb45 category: main optional: false - name: nh3 @@ -3200,11 +3202,11 @@ package: libstdcxx-ng: ">=12" python: ">=3.11,<3.12.0a0" python_abi: 3.11.* - zeromq: ">=4.3.4,<4.4.0a0" - url: https://conda.anaconda.org/conda-forge/linux-64/pyzmq-25.1.1-py311h75c88c4_1.conda + zeromq: ">=4.3.5,<4.4.0a0" + url: https://conda.anaconda.org/conda-forge/linux-64/pyzmq-25.1.1-py311h34ded2d_2.conda hash: - md5: b858421f6a3052950c33aecd44a905cb - sha256: 846612e248330bfa579c71b837d2c82a2b3755c1b982dd647f5bcb0047f58f9f + md5: ea365280db99687905b4d76cf6a3568c + sha256: a5ed6592f32b0caf3883a2f863e8a6258845310d4eebeab2eaf1c5abed04d6b8 category: dev optional: true - name: regex @@ -3288,7 +3290,7 @@ package: category: dev optional: true - name: ruff - version: 0.1.1 + version: 0.1.2 manager: conda platform: linux-64 dependencies: @@ -3296,10 +3298,10 @@ package: libstdcxx-ng: ">=12" python: ">=3.11,<3.12.0a0" python_abi: 3.11.* - url: https://conda.anaconda.org/conda-forge/linux-64/ruff-0.1.1-py311h7145743_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/ruff-0.1.2-py311h7145743_0.conda hash: - md5: fe053898a5654ca5d8a0f1557a16b6a5 - sha256: 8f7de4c2233789ea17407fb73394c04fcea16fe963b5372856c71a21aae23228 + md5: 4c457c2b25f5b58e75e052ada556314d + sha256: fb600b02d9d20266a7f9ee9eed4b63a8a5829d7f1c0ed7c290720560bb7dac39 category: dev optional: true - name: send2trash @@ -3328,15 +3330,15 @@ package: category: main optional: false - name: shellingham - version: 1.5.3 + version: 1.5.4 manager: conda platform: linux-64 dependencies: python: ">=3.7" - url: https://conda.anaconda.org/conda-forge/noarch/shellingham-1.5.3-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/shellingham-1.5.4-pyhd8ed1ab_0.conda hash: - md5: 83795060a5d8cd12b90a58bd62bc251e - sha256: 1e204005ad00a48ab3fd67b6b154b388084ac9743b31952d2f6138cfd20dab18 + md5: d08db09a552699ee9e7eec56b4eb3899 + sha256: 3c49a0a101c41b7cf6ac05a1872d7a1f91f1b6d02eecb4a36b605a19517862bb category: main optional: false - name: simpleeval @@ -3344,13 +3346,11 @@ package: manager: conda platform: linux-64 dependencies: - libgcc-ng: ">=12" - python: ">=3.11,<3.12.0a0" - python_abi: 3.11.* - url: https://conda.anaconda.org/conda-forge/linux-64/simpleeval-0.9.13-py311h459d7ec_1.conda + python: ">=2.5,!=3.0.*,!=3.1.*,!=3.2.*" + url: https://conda.anaconda.org/conda-forge/noarch/simpleeval-0.9.13-pyhd8ed1ab_1.conda hash: - md5: 147dfc4c21c86bb09f0033148c3bc9a2 - sha256: 43d2f41a225f87f94070746dff330d0de6b8b39219f59cfe257b298a72cbd301 + md5: b3282d9b9e4a7c42d6c570492316dcaa + sha256: 5c9c537011327fc281c3c108020f1ad2a40284df0e1625a87825c0699d98f67f category: main optional: false - name: six @@ -3548,15 +3548,15 @@ package: category: dev optional: true - name: traitlets - version: 5.11.2 + version: 5.12.0 manager: conda platform: linux-64 dependencies: python: ">=3.8" - url: https://conda.anaconda.org/conda-forge/noarch/traitlets-5.11.2-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/traitlets-5.12.0-pyhd8ed1ab_0.conda hash: - md5: bd3f90f7551e1cffb1f402880eb2cef1 - sha256: 81f2675ebc2bd6016c304770c81812aab8947953b0f0cca766077b127cc7e8f1 + md5: 3ecde21191a20e0e4ab5a4d69aaaa22c + sha256: cd0709a388063aa4024fa9c721b91cac982983435ab12bf564871c27ef983e13 category: dev optional: true - name: types-python-dateutil @@ -3632,7 +3632,7 @@ package: category: dev optional: true - name: uvloop - version: 0.18.0 + version: 0.19.0 manager: conda platform: linux-64 dependencies: @@ -3641,10 +3641,10 @@ package: libuv: ">=1.46.0,<2.0a0" python: ">=3.11,<3.12.0a0" python_abi: 3.11.* - url: https://conda.anaconda.org/conda-forge/linux-64/uvloop-0.18.0-py311h460e60f_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/uvloop-0.19.0-py311h460e60f_0.conda hash: - md5: 389048f4f426f8fa7e7af4f03056fdf4 - sha256: 95d135fdfb4d53170d100b5b1d82d46d96de0c0cb5d5f3c2ffe1917ba08f4941 + md5: 671712f2371367c4df72dcba03ef6b82 + sha256: 5748b7c33b7e3238c3f8fce654e1f5ad4877da04e8f30bd3c26c59ae7bfdcd92 category: main optional: false - name: validators @@ -3923,17 +3923,17 @@ package: category: main optional: false - name: babel - version: 2.13.0 + version: 2.13.1 manager: conda platform: linux-64 dependencies: python: ">=3.7" pytz: "" setuptools: "" - url: https://conda.anaconda.org/conda-forge/noarch/babel-2.13.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/babel-2.13.1-pyhd8ed1ab_0.conda hash: - md5: 22541af7a9eb59fc6afcadb7ecdf9219 - sha256: 25b0a72c9d35319307a9714b05aa5c18b5c82f8c8e7bece65778202c6b8ad2a7 + md5: 3ccff479c246692468f604df9c85ef26 + sha256: 1f955c700db16f65b16c9e9c1613436480d5497970b8030b7a9ebe1620cc2147 category: dev optional: true - name: backports.functools_lru_cache @@ -4674,20 +4674,6 @@ package: sha256: 7867ba43b6ef1e66054ca6b70f59bbef4cdb0cc761f0be3b66d79d15bd43143b category: main optional: false - - name: pyproject-api - version: 1.6.1 - manager: conda - platform: linux-64 - dependencies: - packaging: ">=23.1" - python: ">=3.8" - tomli: ">=2.0.1" - url: https://conda.anaconda.org/conda-forge/noarch/pyproject-api-1.6.1-pyhd8ed1ab_0.conda - hash: - md5: 1815c7974568079cf384f012de5ea1b7 - sha256: 698f4ea1c2777d6464774bdfe7aeedb9d06bbb81f552bc14e4d071fab8c59e53 - category: dev - optional: true - name: pyproject_hooks version: 1.0.0 manager: conda @@ -4702,7 +4688,7 @@ package: category: dev optional: true - name: pytest - version: 7.4.2 + version: 7.4.3 manager: conda platform: linux-64 dependencies: @@ -4713,10 +4699,10 @@ package: pluggy: ">=0.12,<2.0" python: ">=3.7" tomli: ">=1.0.0" - url: https://conda.anaconda.org/conda-forge/noarch/pytest-7.4.2-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/pytest-7.4.3-pyhd8ed1ab_0.conda hash: - md5: 6dd662ff5ac9a783e5c940ce9f3fe649 - sha256: 150bfb2a86dffd4ce1e91c2d61dde5779fb3ee338675e210fec4ef508ffff28c + md5: 5bdca0aca30b0ee62bb84854e027eae0 + sha256: 14e948e620ec87d9e62a8d9c21d40084b4805a939cfee322be7d457379dc96a0 category: dev optional: true - name: python-dateutil @@ -4759,16 +4745,16 @@ package: category: main optional: false - name: qtpy - version: 2.4.0 + version: 2.4.1 manager: conda platform: linux-64 dependencies: packaging: "" python: ">=3.7" - url: https://conda.anaconda.org/conda-forge/noarch/qtpy-2.4.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/qtpy-2.4.1-pyhd8ed1ab_0.conda hash: - md5: a4c1fc5f8ef46ec8130defcaa2d322ea - sha256: 4a6a63c396009f5363173f618a79adde79c0670cf023211901cf7e10a43f71f5 + md5: 7f391bd70d2abfb70f304ba5aa4e1261 + sha256: 925bf48e747af6ceff1b073c10b12fc94ef79c88a34729059d253e43466a33f1 category: dev optional: true - name: referencing @@ -4825,7 +4811,7 @@ package: category: main optional: false - name: ruamel.yaml - version: 0.17.39 + version: 0.18.2 manager: conda platform: linux-64 dependencies: @@ -4834,10 +4820,10 @@ package: python_abi: 3.11.* ruamel.yaml.clib: ">=0.1.2" setuptools: "" - url: https://conda.anaconda.org/conda-forge/linux-64/ruamel.yaml-0.17.39-py311h459d7ec_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/ruamel.yaml-0.18.2-py311h459d7ec_0.conda hash: - md5: a30e488d26792c61e5bb964b23316ea5 - sha256: ade58bdbc63afc646594dde4a8797b8872f5989c6504f751d894120e85aa7c99 + md5: ffd24106fe1cb28377cecec176a395b4 + sha256: 7c2ab653156c294eb48e5283f5943e71394e8e46b5cc9a63364f2aeba81cdc9e category: dev optional: true - name: sqlalchemy @@ -5069,7 +5055,7 @@ package: category: main optional: false - name: botocore - version: 1.31.68 + version: 1.31.70 manager: conda platform: linux-64 dependencies: @@ -5077,10 +5063,10 @@ package: python: ">=3.7" python-dateutil: ">=2.1,<3.0.0" urllib3: ">=1.25.4,<1.27" - url: https://conda.anaconda.org/conda-forge/noarch/botocore-1.31.68-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/botocore-1.31.70-pyhd8ed1ab_0.conda hash: - md5: 0bf56dadacce6f9218d88df71d3e7576 - sha256: 01496595fe3483c81b880ac68f01bc0e1e85fefb8e7c2e08d95eaf3f393e319d + md5: 0e04ee2da772c7a8df863d9084fb4445 + sha256: 045cc3ee816a0a5e48ba0090858b9d8be0a0d3f54be0976b1b0c7491903cd58b category: main optional: false - name: branca @@ -5127,19 +5113,19 @@ package: category: main optional: false - name: cryptography - version: 41.0.4 + version: 41.0.5 manager: conda platform: linux-64 dependencies: cffi: ">=1.12" libgcc-ng: ">=12" - openssl: ">=3.1.3,<4.0a0" + openssl: ">=3.1.4,<4.0a0" python: ">=3.11,<3.12.0a0" python_abi: 3.11.* - url: https://conda.anaconda.org/conda-forge/linux-64/cryptography-41.0.4-py311h63ff55d_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/cryptography-41.0.5-py311h63ff55d_0.conda hash: - md5: 2b14cd05541532521196b0d2e0291ecf - sha256: 5de1eb15efe9d1e018d0d085c2989b1c7c7f1fa18a16031ec06528841531fafd + md5: 22584e5c97ed8f1a6b63a0ff43dba827 + sha256: 236ed2218fb857fecaa11fc7fee23574f683b3d03576f8f26f628b7fd2ced5fa category: main optional: false - name: fqdn @@ -5520,10 +5506,10 @@ package: proj: ">=9.3.0,<9.3.1.0a0" python: ">=3.11,<3.12.0a0" python_abi: 3.11.* - url: https://conda.anaconda.org/conda-forge/linux-64/pyproj-3.6.1-py311h1facc83_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/pyproj-3.6.1-py311h1facc83_3.conda hash: - md5: 8298afb85a731b02dac82e02b6e13ae0 - sha256: 7d43c396ffc5d97abf44927e802fbe7a1a670bd371f5cea6e9fb021403b2a431 + md5: fee8c3c4404e37e724f08c2983eb484c + sha256: d9a8e3dff436e0e24d660024b496d705ea534e68d3ae656b54ef738ccaafa3c1 category: main optional: false - name: pytest-console-scripts @@ -5556,16 +5542,16 @@ package: category: dev optional: true - name: pytest-mock - version: 3.11.1 + version: 3.12.0 manager: conda platform: linux-64 dependencies: pytest: ">=5.0" - python: ">=3.7" - url: https://conda.anaconda.org/conda-forge/noarch/pytest-mock-3.11.1-pyhd8ed1ab_0.conda + python: ">=3.8" + url: https://conda.anaconda.org/conda-forge/noarch/pytest-mock-3.12.0-pyhd8ed1ab_0.conda hash: - md5: fcd2531bc3e492657aeb042349aeaf8a - sha256: d2f6a46fe31dea91b427bcc57302edc345eb763caf3c6b6dcd09b2aee002324b + md5: ac9fedc9a0c397f2318e82525491dd83 + sha256: 58d3bd93a0cf9b51ac105de1e01b1fcd1fcfa5993023b67658344e329b02d6e0 category: dev optional: true - name: python-build @@ -5764,7 +5750,7 @@ package: category: main optional: false - name: arelle-release - version: 2.16.1 + version: 2.16.3 manager: conda platform: linux-64 dependencies: @@ -5776,10 +5762,10 @@ package: pyparsing: 3.* python: ">=3.7" regex: "" - url: https://conda.anaconda.org/conda-forge/noarch/arelle-release-2.16.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/arelle-release-2.16.3-pyhd8ed1ab_0.conda hash: - md5: 8b03e47972a8e0759dce09378c962d3d - sha256: bbdaca39a19f3790dff27e573fc263ab650a45f3813147d5b01e8bb02c61fd81 + md5: cc1662776e4169d33d24aeb34af074e8 + sha256: 9f9daff44b2099904135c0f3478246e55123b15bba0252e24fec0366d88c293a category: main optional: false - name: argon2-cffi @@ -6423,7 +6409,7 @@ package: category: main optional: false - name: virtualenv - version: 20.24.4 + version: 20.24.6 manager: conda platform: linux-64 dependencies: @@ -6431,10 +6417,10 @@ package: filelock: <4,>=3.12.2 platformdirs: <4,>=3.9.1 python: ">=3.8" - url: https://conda.anaconda.org/conda-forge/noarch/virtualenv-20.24.4-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/virtualenv-20.24.6-pyhd8ed1ab_0.conda hash: - md5: c3feaf947264a59a125e8c26e98c3c5a - sha256: 85c96449202ca87ec12783d8675b3655b4cd7b7afe49f2dc37d743adb0ed177f + md5: fb1fc875719e217ed799a7aae11d3be4 + sha256: 09492f89a22dc17d9b32f2a791deee93d06e99fb312c3d47430fe35343b7fbde category: dev optional: true - name: aws-sdk-cpp @@ -6458,18 +6444,18 @@ package: category: main optional: false - name: boto3 - version: 1.28.68 + version: 1.28.70 manager: conda platform: linux-64 dependencies: - botocore: ">=1.31.68,<1.32.0" + botocore: ">=1.31.70,<1.32.0" jmespath: ">=0.7.1,<2.0.0" python: ">=3.7" s3transfer: ">=0.7.0,<0.8.0" - url: https://conda.anaconda.org/conda-forge/noarch/boto3-1.28.68-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/boto3-1.28.70-pyhd8ed1ab_0.conda hash: - md5: 4b81c7adfe8551654cf528e3d708b326 - sha256: 0d7f5949867a06e86855e1dc67fb7c6118b8410e4bc69dc44bd05c237716642c + md5: cdc672d21bb4f620c4ee6cd83fd9aec7 + sha256: 3d53ab4af8016b2d807e329e05e8aa6c32ffa166ccfacac023110df41b81fad4 category: main optional: false - name: cachecontrol-with-filecache @@ -6487,7 +6473,7 @@ package: category: dev optional: true - name: dagster - version: 1.5.3 + version: 1.5.4 manager: conda platform: linux-64 dependencies: @@ -6495,7 +6481,7 @@ package: click: ">=5.0" coloredlogs: ">=6.1,<=14.0" croniter: ">=0.3.34" - dagster-pipes: ">=1.5.3,<1.5.4.0a0" + dagster-pipes: ">=1.5.4,<1.5.5.0a0" docstring_parser: "" grpcio: ">=1.44.0" grpcio-health-checking: ">=1.44.0" @@ -6521,10 +6507,10 @@ package: typing_extensions: ">=4.4.0" universal_pathlib: "" watchdog: ">=0.8.3" - url: https://conda.anaconda.org/conda-forge/noarch/dagster-1.5.3-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/dagster-1.5.4-pyhd8ed1ab_1.conda hash: - md5: 269916d868c11d9790d340a6587708bb - sha256: d8bd233701add17c17fc0a46819587311604a197bb1b28b20f88cf7aedcf8b06 + md5: d3f90ca494ebd4495c32a30f337f8258 + sha256: dac4c049b3464a3b5e0ad53bdb0209c443e7d52eca4cba6f1545f6a1089d73df category: main optional: false - name: datasette @@ -6574,17 +6560,17 @@ package: category: docs optional: true - name: email-validator - version: 2.0.0.post2 + version: 2.1.0.post1 manager: conda platform: linux-64 dependencies: dnspython: ">=2.0.0" idna: ">=2.0.0" python: ">=3.7" - url: https://conda.anaconda.org/conda-forge/noarch/email-validator-2.0.0.post2-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/email-validator-2.1.0.post1-pyhd8ed1ab_0.conda hash: - md5: af9f5d81309e51c05b5964f9573c2cc0 - sha256: abe8703c189827b2036064b9e4fa108b95baf286e9ff2e3f7aca247054bc2a76 + md5: 192fe8f657c763c6120d9f8592055847 + sha256: 0b2e503da10648e2fa8d13035ddda174a549732c4f17476363882ebf67867283 category: main optional: false - name: frictionless @@ -6709,7 +6695,7 @@ package: category: dev optional: true - name: jupyter_client - version: 8.4.0 + version: 8.5.0 manager: conda platform: linux-64 dependencies: @@ -6720,10 +6706,10 @@ package: pyzmq: ">=23.0" tornado: ">=6.2" traitlets: ">=5.3" - url: https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.4.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.5.0-pyhd8ed1ab_0.conda hash: - md5: 554496685357ab0d69676cab8e8fb594 - sha256: e964a43ea1c587e1868aa19d4d6dec43887e1a6f19f4a0b7e558d4d4aa5e7e6e + md5: 77e442cb7c382d01c916f91a8652811a + sha256: e4478e137e0975ce94ef4ee6e4a6736afaf4a00e99bc8007a275bcb39fe728d9 category: dev optional: true - name: keyring @@ -6830,7 +6816,7 @@ package: category: main optional: false - name: scikit-learn - version: 1.3.1 + version: 1.3.2 manager: conda platform: linux-64 dependencies: @@ -6843,10 +6829,10 @@ package: python_abi: 3.11.* scipy: "" threadpoolctl: ">=2.0.0" - url: https://conda.anaconda.org/conda-forge/linux-64/scikit-learn-1.3.1-py311hc009520_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/scikit-learn-1.3.2-py311hc009520_1.conda hash: - md5: 0f06a0c10766b511c62050f9aed88b24 - sha256: 5d8111c6429df7b3fd4f5b1c06b0210c0b2d44717ebb002d17e34fe21de2f9ce + md5: 6b92d3d0680eae9d1d9860a721f7fb51 + sha256: 638253cba17e44081674b2dd7bee2025c202e91b653182da511ca57de942689d category: main optional: false - name: timezonefinder @@ -6867,30 +6853,6 @@ package: sha256: 12cb553b8735e8a2e2323e6df98e53d23a2e1b5d1119d8ba9c4fd60b4e142e24 category: main optional: false - - name: tox - version: 4.11.3 - manager: conda - platform: linux-64 - dependencies: - cachetools: ">=5.3.1" - chardet: ">=5.2" - colorama: ">=0.4.6" - filelock: ">=3.12.3" - importlib_metadata: ">=6.8" - packaging: ">=23.1" - platformdirs: ">=3.10" - pluggy: ">=1.3" - pyproject-api: ">=1.6.1" - python: ">=3.8" - tomli: ">=2.0.1" - typing-extensions: ">=4.7.1" - virtualenv: ">=20.24.3" - url: https://conda.anaconda.org/conda-forge/noarch/tox-4.11.3-pyhd8ed1ab_0.conda - hash: - md5: 9ad1597140aa28f50fee5567775057dc - sha256: 160180a1755715c404176fa147f9f06adb8806f68193297b6e572784023f8b2d - category: dev - optional: true - name: catalystcoop.ferc_xbrl_extractor version: 1.1.1 manager: conda @@ -6913,7 +6875,7 @@ package: category: main optional: false - name: conda-lock - version: 2.4.0 + version: 2.4.1 manager: conda platform: linux-64 dependencies: @@ -6941,27 +6903,27 @@ package: typing_extensions: "" urllib3: ">=1.26.5,<2.0" virtualenv: ">=20.0.26" - url: https://conda.anaconda.org/conda-forge/noarch/conda-lock-2.4.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/conda-lock-2.4.1-pyhd8ed1ab_0.conda hash: - md5: edcd5c7565a5cd1c7862a911a899fb20 - sha256: f3829c7be0d0b37c4a7146cf65123c23cd37b1c21fc051cc93c812d5bc8d4ff7 + md5: deb6e2f8d8b4de933563cc681165b833 + sha256: 08cd768d033db260e043982ba91de007213adbde5210a76fd2decad3c135e666 category: dev optional: true - name: dagster-graphql - version: 1.5.3 + version: 1.5.4 manager: conda platform: linux-64 dependencies: - dagster: ">=1.5.3,<1.5.4.0a0" + dagster: ">=1.5.4,<1.5.5.0a0" gql-with-requests: ">=3.0.0" graphene: ">=3" python: ">=3.8" requests: "" starlette: "" - url: https://conda.anaconda.org/conda-forge/noarch/dagster-graphql-1.5.3-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/dagster-graphql-1.5.4-pyhd8ed1ab_1.conda hash: - md5: 9c67172e4c79a12d965f17d650b5336b - sha256: b86e95381c8e85618c3a6424e9f42fffa381bd0993105e8645b44ca5b5b41080 + md5: 8bc6d9ce80023e7a51130301737a3a47 + sha256: ac0b6dbbbd0bc91e40eacf68e9f5469c3e1194cd463405bd943c8383eadb75ee category: main optional: false - name: fiona @@ -7197,20 +7159,20 @@ package: category: dev optional: true - name: dagster-webserver - version: 1.5.3 + version: 1.5.4 manager: conda platform: linux-64 dependencies: click: ">=7.0,<9.0" - dagster: ">=1.5.3,<1.5.4.0a0" - dagster-graphql: ">=1.5.3,<1.5.4.0a0" + dagster: ">=1.5.4,<1.5.5.0a0" + dagster-graphql: ">=1.5.4,<1.5.5.0a0" python: ">=3.8" starlette: "" uvicorn-standard: "" - url: https://conda.anaconda.org/conda-forge/noarch/dagster-webserver-1.5.3-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/dagster-webserver-1.5.4-pyhd8ed1ab_1.conda hash: - md5: 821b36bfafdd03da8af532b6a9518fe9 - sha256: e9415290d38ae4ba05c2de3808cb035376e4091b1d49162eae04d64defc6965d + md5: 2f2da26ea9a7ceeca97d8368120794d8 + sha256: 3eac291e2b8e200ecb4cb5bbd541e9c3465c9e61854bc6774c5850f8e9c1758e category: main optional: false - name: geopandas @@ -7263,7 +7225,7 @@ package: category: dev optional: true - name: ipykernel - version: 6.25.2 + version: 6.26.0 manager: conda platform: linux-64 dependencies: @@ -7281,10 +7243,10 @@ package: pyzmq: ">=20" tornado: ">=6.1" traitlets: ">=5.4.0" - url: https://conda.anaconda.org/conda-forge/noarch/ipykernel-6.25.2-pyh2140261_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/ipykernel-6.26.0-pyhf8b6a83_0.conda hash: - md5: 226f2032ec491cc6e9ce66072660e4f6 - sha256: 30316b79a8b2777ad6120c724440ae8a260c6b61eeb3edffbe0380e87c26c4b9 + md5: 2307f71f5f0896d4b91b93e6b468abff + sha256: 9e647454f7572101657a07820ebed294df9a6a527b041cd5e4dd98b8aa3db625 category: dev optional: true - name: ipywidgets @@ -7432,7 +7394,7 @@ package: category: dev optional: true - name: jupyter_server - version: 2.8.0 + version: 2.9.1 manager: conda platform: linux-64 dependencies: @@ -7455,10 +7417,10 @@ package: tornado: ">=6.2.0" traitlets: ">=5.6.0" websocket-client: "" - url: https://conda.anaconda.org/conda-forge/noarch/jupyter_server-2.8.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyter_server-2.9.1-pyhd8ed1ab_0.conda hash: - md5: a750b082b9319e96556df4ee6023b068 - sha256: e781e971220fa2d1801446c6d76873c678479b17ef53a9b157dc5f5ee7f6aab5 + md5: 8e0cfa69e5b0062b829a9dbb14645def + sha256: bb9a60ff41085031a28204add4e6120990437cfad341db297519f0a0f0df8e18 category: dev optional: true - name: nbconvert-pandoc @@ -7535,7 +7497,7702 @@ package: dependencies: jupyter_server: ">=2.0.0,<3" psutil: ">=5.6.0,<6" - python: ">=3.8" + python: ">=3.8" + pyzmq: ">=19" + url: https://conda.anaconda.org/conda-forge/noarch/jupyter-resource-usage-1.0.1-pyhd8ed1ab_0.conda + hash: + md5: b079fd1b0ee75199a042537d036b496f + sha256: 076d6cc25e0338e725a653eb0bb468ba920e49449143335696581fe98f86853b + category: dev + optional: true + - name: jupyterlab_server + version: 2.25.0 + manager: conda + platform: linux-64 + dependencies: + babel: ">=2.10" + importlib-metadata: ">=4.8.3" + jinja2: ">=3.0.3" + json5: ">=0.9.0" + jsonschema: ">=4.18" + jupyter_server: ">=1.21,<3" + packaging: ">=21.3" + python: ">=3.8" + requests: ">=2.31" + url: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_server-2.25.0-pyhd8ed1ab_0.conda + hash: + md5: a52834fa7e3d12abc5efdf06b2097a05 + sha256: 608a878d08e0f4f51dd9a61eaead7c0e22d07f48aad06e3e2f6d6f1d0a929746 + category: dev + optional: true + - name: nbconvert + version: 7.9.2 + manager: conda + platform: linux-64 + dependencies: + nbconvert-core: 7.9.2 + nbconvert-pandoc: 7.9.2 + python: ">=3.8" + url: https://conda.anaconda.org/conda-forge/noarch/nbconvert-7.9.2-pyhd8ed1ab_0.conda + hash: + md5: 16ccaddfcfa0a1a606a9ecf6a52d6c11 + sha256: d7402466864e0b76d26be95235dd68dae5814bd6d25b8d5827e368b9f952961f + category: dev + optional: true + - name: notebook-shim + version: 0.2.3 + manager: conda + platform: linux-64 + dependencies: + jupyter_server: ">=1.8,<3" + python: ">=3.7" + url: https://conda.anaconda.org/conda-forge/noarch/notebook-shim-0.2.3-pyhd8ed1ab_0.conda + hash: + md5: 67e0fe74c156267d9159e9133df7fd37 + sha256: f028d7ad1f2175cde307db08b60d07e371b9d6f035cfae6c81ea94b4c408c538 + category: dev + optional: true + - name: jupyterlab + version: 4.0.7 + manager: conda + platform: linux-64 + dependencies: + async-lru: ">=1.0.0" + importlib_metadata: ">=4.8.3" + importlib_resources: ">=1.4" + ipykernel: "" + jinja2: ">=3.0.3" + jupyter-lsp: ">=2.0.0" + jupyter_core: "" + jupyter_server: ">=2.4.0,<3" + jupyterlab_server: ">=2.19.0,<3" + notebook-shim: ">=0.2" + packaging: "" + python: ">=3.8" + tomli: "" + tornado: ">=6.2.0" + traitlets: "" + url: https://conda.anaconda.org/conda-forge/noarch/jupyterlab-4.0.7-pyhd8ed1ab_0.conda + hash: + md5: 80318d83f33b3bf4e57b8533b7a6691d + sha256: 1d841546fd239d7edefbf00edd3bad4680b12c3eb2549026d6aa70a301f23295 + category: dev + optional: true + - name: notebook + version: 7.0.6 + manager: conda + platform: linux-64 + dependencies: + jupyter_server: ">=2.4.0,<3" + jupyterlab: ">=4.0.7,<5" + jupyterlab_server: ">=2.22.1,<3" + notebook-shim: ">=0.2,<0.3" + python: ">=3.8" + tornado: ">=6.2.0" + url: https://conda.anaconda.org/conda-forge/noarch/notebook-7.0.6-pyhd8ed1ab_0.conda + hash: + md5: d60881c78a54cbf8042ae719f1f77a50 + sha256: 5259ad2fb47300407dafa6ea5e78085a2c8de8dcdbfbaa58592bf2677d7187a9 + category: dev + optional: true + - name: jupyter + version: 1.0.0 + manager: conda + platform: linux-64 + dependencies: + ipykernel: "" + ipywidgets: "" + jupyter_console: "" + nbconvert: "" + notebook: "" + python: ">=3.6" + qtconsole-base: "" + url: https://conda.anaconda.org/conda-forge/noarch/jupyter-1.0.0-pyhd8ed1ab_10.conda + hash: + md5: 056b8cc3d9b03f54fc49e6d70d7dc359 + sha256: 308b521b149e7a1739f717538b929bc2d87b9001b94f13ee8baa939632a86150 + category: dev + optional: true + - name: sphinx-autoapi + version: 3.0.0 + manager: conda + platform: linux-64 + dependencies: + anyascii: "" + astroid: ">=2.7" + jinja2: "" + python: ">=3.8" + pyyaml: "" + sphinx: ">=6.1.0" + url: https://conda.anaconda.org/conda-forge/noarch/sphinx-autoapi-3.0.0-pyhd8ed1ab_0.conda + hash: + md5: 736b53813c2b9582b1345462d8ca66e7 + sha256: 61d127c9e32176ac75a24b85c4d1ba3e8cf7e638884331429752a2da6a3ac63a + category: docs + optional: true + - name: sphinx-basic-ng + version: 1.0.0b2 + manager: conda + platform: linux-64 + dependencies: + python: ">=3.7" + sphinx: ">=4.0,<8.0" + url: https://conda.anaconda.org/conda-forge/noarch/sphinx-basic-ng-1.0.0b2-pyhd8ed1ab_1.conda + hash: + md5: a631f5c7b7f5045448f966ad71aa2881 + sha256: 3c7a6a8bb6c9921741ef940cd61ff1694beac3c95ca7e9ad4b0ea32e2f6ac2fa + category: docs + optional: true + - name: furo + version: 2023.9.10 + manager: conda + platform: linux-64 + dependencies: + beautifulsoup4: "" + pygments: ">=2.7" + python: ">=3.7" + sphinx: ">=6.0,<8.0" + sphinx-basic-ng: "" + url: https://conda.anaconda.org/conda-forge/noarch/furo-2023.9.10-pyhd8ed1ab_0.conda + hash: + md5: 0dcfacf6d3e49f2957c69c81356cf892 + sha256: 95f69e36078dd598f5b28b2e0d7ff94946170af9f990b7474ee5501378203bc3 + category: docs + optional: true + - name: sphinx-issues + version: 1.2.0 + manager: conda + platform: linux-64 + dependencies: + python: "" + sphinx: "" + url: https://conda.anaconda.org/conda-forge/noarch/sphinx-issues-1.2.0-py_0.tar.bz2 + hash: + md5: 2d5c0dddca9bb724dcf5a3fb295a2266 + sha256: 9d98392bff12194c45c6f13c6c93d0b15b2fe489de5746654e732009fce41a86 + category: docs + optional: true + - name: sphinx-reredirects + version: 0.1.2 + manager: conda + platform: linux-64 + dependencies: + python: ">=3.6" + sphinx: "" + url: https://conda.anaconda.org/conda-forge/noarch/sphinx-reredirects-0.1.2-pyhd8ed1ab_0.conda + hash: + md5: 30e618adaaf11aa4a98912913c62a12b + sha256: bcc792d6fbfc06298d23e98216d1aeca95eb69005ce8176094128990aed1f11c + category: docs + optional: true + - name: sphinxcontrib-applehelp + version: 1.0.7 + manager: conda + platform: linux-64 + dependencies: + python: ">=3.9" + sphinx: ">=5" + url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-applehelp-1.0.7-pyhd8ed1ab_0.conda + hash: + md5: aebfabcb60c33a89c1f9290cab49bc93 + sha256: 67e2b386c7b3c858ead88fa71fe4fa5eb1f4f59d7994d167b3910a744db392d3 + category: docs + optional: true + - name: sphinxcontrib-bibtex + version: 2.6.1 + manager: conda + platform: linux-64 + dependencies: + dataclasses: "" + docutils: ">=0.8,!=0.18.*,!=0.19.*" + importlib_metadata: ">=3.6" + pybtex: ">=0.24" + pybtex-docutils: ">=1" + python: ">=3.7" + sphinx: ">=3.5" + url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-bibtex-2.6.1-pyhd8ed1ab_1.conda + hash: + md5: 109cf3a7c844834267057e80b4f4eae3 + sha256: 2d04d3e165c0959d995faab5ccd5fa3581016c02fb94df4eb5d0e0a89fe9ff50 + category: docs + optional: true + - name: sphinxcontrib-devhelp + version: 1.0.5 + manager: conda + platform: linux-64 + dependencies: + python: ">=3.9" + sphinx: ">=5" + url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-devhelp-1.0.5-pyhd8ed1ab_0.conda + hash: + md5: ebf08f5184d8eaa486697bc060031953 + sha256: 770e13ebfef321426c09ec51d95c57755512db160518b2922a4337546ee51672 + category: docs + optional: true + - name: sphinxcontrib-htmlhelp + version: 2.0.4 + manager: conda + platform: linux-64 + dependencies: + python: ">=3.9" + sphinx: ">=5" + url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-htmlhelp-2.0.4-pyhd8ed1ab_0.conda + hash: + md5: a9a89000dfd19656ad004b937eeb6828 + sha256: 5f09cd4a08a6c194c11999871a8c7cedc2cd7edd9ff7ceb6f0667b6698be4cc5 + category: docs + optional: true + - name: sphinxcontrib-qthelp + version: 1.0.6 + manager: conda + platform: linux-64 + dependencies: + python: ">=3.9" + sphinx: ">=5" + url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-qthelp-1.0.6-pyhd8ed1ab_0.conda + hash: + md5: cf5c9649272c677a964a7313279e3a9b + sha256: 9ba5cea9cbab64106e8b5a9b19add855dcb52b8fbb1674398c715bccdbc04471 + category: docs + optional: true + - name: sphinx + version: 7.2.6 + manager: conda + platform: linux-64 + dependencies: + alabaster: ">=0.7,<0.8" + babel: ">=2.9" + colorama: ">=0.4.5" + docutils: ">=0.18.1,<0.21" + imagesize: ">=1.3" + importlib-metadata: ">=4.8" + jinja2: ">=3.0" + packaging: ">=21.0" + pygments: ">=2.14" + python: ">=3.9" + requests: ">=2.25.0" + snowballstemmer: ">=2.0" + sphinxcontrib-applehelp: "" + sphinxcontrib-devhelp: "" + sphinxcontrib-htmlhelp: ">=2.0.0" + sphinxcontrib-jsmath: "" + sphinxcontrib-qthelp: "" + sphinxcontrib-serializinghtml: ">=1.1.9" + url: https://conda.anaconda.org/conda-forge/noarch/sphinx-7.2.6-pyhd8ed1ab_0.conda + hash: + md5: bbfd1120d1824d2d073bc65935f0e4c0 + sha256: 665d1fe6d20c6cc672ff20e6ebb405860f878b487d3d8d86a5952733fb7bbc42 + category: docs + optional: true + - name: sphinxcontrib-serializinghtml + version: 1.1.9 + manager: conda + platform: linux-64 + dependencies: + python: ">=3.9" + sphinx: ">=5" + url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-serializinghtml-1.1.9-pyhd8ed1ab_0.conda + hash: + md5: 0612e497d7860728f2cda421ea2aec09 + sha256: c5710ae7bb7465f25a29cc845d9fb6ad0ea561972d796d379fcb48d801e96d6d + category: docs + optional: true + - name: ca-certificates + version: 2023.7.22 + manager: conda + platform: linux-aarch64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/linux-aarch64/ca-certificates-2023.7.22-hcefe29a_0.conda + hash: + md5: 95d7f998087114466fa91e7c2887fa2f + sha256: 40e98cf2a105a618cae899d9e4d26c46fdd733f015f7a322ff313bd71cab8be4 + category: main + optional: false + - name: font-ttf-dejavu-sans-mono + version: "2.37" + manager: conda + platform: linux-aarch64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-dejavu-sans-mono-2.37-hab24e00_0.tar.bz2 + hash: + md5: 0c96522c6bdaed4b1566d11387caaf45 + sha256: 58d7f40d2940dd0a8aa28651239adbf5613254df0f75789919c4e6762054403b + category: main + optional: false + - name: font-ttf-inconsolata + version: "3.000" + manager: conda + platform: linux-aarch64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-inconsolata-3.000-h77eed37_0.tar.bz2 + hash: + md5: 34893075a5c9e55cdafac56607368fc6 + sha256: c52a29fdac682c20d252facc50f01e7c2e7ceac52aa9817aaf0bb83f7559ec5c + category: main + optional: false + - name: font-ttf-source-code-pro + version: "2.038" + manager: conda + platform: linux-aarch64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-source-code-pro-2.038-h77eed37_0.tar.bz2 + hash: + md5: 4d59c254e01d9cde7957100457e2d5fb + sha256: 00925c8c055a2275614b4d983e1df637245e19058d79fc7dd1a93b8d9fb4b139 + category: main + optional: false + - name: font-ttf-ubuntu + version: "0.83" + manager: conda + platform: linux-aarch64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-ubuntu-0.83-hab24e00_0.tar.bz2 + hash: + md5: 19410c3df09dfb12d1206132a1d357c5 + sha256: 470d5db54102bd51dbb0c5990324a2f4a0bc976faa493b22193338adb9882e2e + category: main + optional: false + - name: ld_impl_linux-aarch64 + version: "2.40" + manager: conda + platform: linux-aarch64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/linux-aarch64/ld_impl_linux-aarch64-2.40-h2d8c526_0.conda + hash: + md5: 16246d69e945d0b1969a6099e7c5d457 + sha256: 1ba06e8645094b340b4aee23603a6abb1b0383788180e65f3de34e655c5f577c + category: main + optional: false + - name: libboost-headers + version: 1.82.0 + manager: conda + platform: linux-aarch64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libboost-headers-1.82.0-h8af1aa0_6.conda + hash: + md5: 0a23b260a1a98609f2ea852283fbf0c6 + sha256: 2561bc0035edbdc782e949da8954fb1b7e5b8ab5b1c60b67d2842dc8ce324e29 + category: main + optional: false + - name: libgomp + version: 13.2.0 + manager: conda + platform: linux-aarch64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libgomp-13.2.0-hf8544c7_2.conda + hash: + md5: 8ce66e4e1d30f0936a525127eaaaf63d + sha256: 7d22718b7f4f0a5f219d260edbd4c2bd4e70527eff6129609e3e3faa0f373dc0 + category: main + optional: false + - name: libstdcxx-ng + version: 13.2.0 + manager: conda + platform: linux-aarch64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libstdcxx-ng-13.2.0-h9a76618_2.conda + hash: + md5: 921c652898c8602bf2697d015f3efc77 + sha256: 9e31f1bc62de5cc78e70bf8dc5869e807983f1c831b63201b508328e0c65e2d3 + category: main + optional: false + - name: pandoc + version: 2.19.2 + manager: conda + platform: linux-aarch64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/linux-aarch64/pandoc-2.19.2-h8af1aa0_2.conda + hash: + md5: 210300d4fbbc7935c22d0e5281665dd4 + sha256: fa1d1d113e30e5dfa7a0633926f73a026d716c1f6122ed2b3fe502c6f701800b + category: main + optional: false + - name: poppler-data + version: 0.4.12 + manager: conda + platform: linux-aarch64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/noarch/poppler-data-0.4.12-hd8ed1ab_0.conda + hash: + md5: d8d7293c5b37f39b2ac32940621c6592 + sha256: 2f227e17b3c0346112815faa605502b66c1c4511a856127f2899abf15a98a2cf + category: main + optional: false + - name: python_abi + version: "3.11" + manager: conda + platform: linux-aarch64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/linux-aarch64/python_abi-3.11-4_cp311.conda + hash: + md5: 89983f987dfee288f94ddb2ee550ea60 + sha256: 135a21de5721a2667613529b4ac50a9454979bf969fa99d74b6e5ad9a4ff284d + category: main + optional: false + - name: tzdata + version: 2023c + manager: conda + platform: linux-aarch64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/noarch/tzdata-2023c-h71feb2d_0.conda + hash: + md5: 939e3e74d8be4dac89ce83b20de2492a + sha256: 0449138224adfa125b220154408419ec37c06b0b49f63c5954724325903ecf55 + category: main + optional: false + - name: _openmp_mutex + version: "4.5" + manager: conda + platform: linux-aarch64 + dependencies: + libgomp: ">=7.5.0" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/_openmp_mutex-4.5-2_gnu.tar.bz2 + hash: + md5: 6168d71addc746e8f2b8d57dfd2edcea + sha256: 3702bef2f0a4d38bd8288bbe54aace623602a1343c2cfbefd3fa188e015bebf0 + category: main + optional: false + - name: fonts-conda-forge + version: "1" + manager: conda + platform: linux-aarch64 + dependencies: + font-ttf-inconsolata: "" + font-ttf-source-code-pro: "" + font-ttf-dejavu-sans-mono: "" + font-ttf-ubuntu: "" + url: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2 + hash: + md5: f766549260d6815b0c52253f1fb1bb29 + sha256: 53f23a3319466053818540bcdf2091f253cbdbab1e0e9ae7b9e509dcaa2a5e38 + category: main + optional: false + - name: fonts-conda-ecosystem + version: "1" + manager: conda + platform: linux-aarch64 + dependencies: + fonts-conda-forge: "" + url: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2 + hash: + md5: fee5683a3f04bd15cbd8318b096a27ab + sha256: a997f2f1921bb9c9d76e6fa2f6b408b7fa549edd349a77639c9fe7a23ea93e61 + category: main + optional: false + - name: libgcc-ng + version: 13.2.0 + manager: conda + platform: linux-aarch64 + dependencies: + _openmp_mutex: ">=4.5" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libgcc-ng-13.2.0-hf8544c7_2.conda + hash: + md5: f4dfb3bad7c8b38c3f8ed7f15a91a1ed + sha256: 2d7ab7264cf885c81ed2ceed9d279388cdde181aa7a0e549ee03511c7502a381 + category: main + optional: false + - name: aws-c-common + version: 0.9.3 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-common-0.9.3-h31becfc_0.conda + hash: + md5: 6a1036db3d6492731b0a0fc3f224253d + sha256: ebaf21e9e51fbe1c535ebf73281e2814d0a23edfbc1e7d6e54a3f2f18a29f344 + category: main + optional: false + - name: bzip2 + version: 1.0.8 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=9.3.0" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/bzip2-1.0.8-hf897c2e_4.tar.bz2 + hash: + md5: 2d787570a729e273a4e75775ddf3348a + sha256: 3aeb6ab92aa0351722497b2d2a735dc20921cf6c60d9196c04b7a2b9ece198d2 + category: main + optional: false + - name: c-ares + version: 1.20.1 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/c-ares-1.20.1-h31becfc_1.conda + hash: + md5: e03ca35ab3df23b2e423d42ffb9fef4b + sha256: 5ee47e7011fac4404b9299c95dc2cf26de9f76f9825a8e1a807e09a1e5188437 + category: main + optional: false + - name: geos + version: 3.12.0 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/geos-3.12.0-h2f0025b_0.conda + hash: + md5: 672da12b1c20c17ca36b9ca1cbbfa653 + sha256: b180f402d54749b446a19547230283235e3574e4d28d08fac1e0e9d406bd8da8 + category: main + optional: false + - name: gettext + version: 0.21.1 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/gettext-0.21.1-ha18d298_0.tar.bz2 + hash: + md5: b109f1a4d22966793d61fd7f75b744c3 + sha256: b1d8ee80b7577661a8cebdfd21dd1676ba73b676d106c458d4ecdbe4a6d9c2eb + category: main + optional: false + - name: gflags + version: 2.2.2 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=7.5.0" + libstdcxx-ng: ">=7.5.0" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/gflags-2.2.2-h54f1f3f_1004.tar.bz2 + hash: + md5: f286d3464cc8d467c92e4f17990c98c1 + sha256: c72f18b94048df5525d8ae73a9efb8d830048b70328d63738d91d3ea54e55b91 + category: main + optional: false + - name: giflib + version: 5.2.1 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/giflib-5.2.1-hb4cce97_3.conda + hash: + md5: a1f16c57cf6c50399556a32e750e9461 + sha256: ae2d7dbf4e2fd5105cb7ccfff5f12c982ef0c12e22d59c23e10d9e8a5c853dc7 + category: main + optional: false + - name: icu + version: "73.2" + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/icu-73.2-h787c7f5_0.conda + hash: + md5: 9d3c29d71f28452a2e843aff8cbe09d2 + sha256: aedb9c911ede5596c87e1abd763ed940fab680d71fdb953bce8e4094119d47b3 + category: main + optional: false + - name: json-c + version: "0.17" + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/json-c-0.17-h9d1147b_0.conda + hash: + md5: d29aae0f70e8082d021842256c86b49f + sha256: 4cd7c08275a91df826d0ffa2d6aa1e3279afdfaf15adcf687c6fb8dd92170c54 + category: main + optional: false + - name: keyutils + version: 1.6.1 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=10.3.0" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/keyutils-1.6.1-h4e544f5_0.tar.bz2 + hash: + md5: 1f24853e59c68892452ef94ddd8afd4b + sha256: 6d4233d97a9b38acbb26e1268bcf8c10a8e79c2aed7e5a385ec3769967e3e65b + category: main + optional: false + - name: lerc + version: 4.0.0 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/lerc-4.0.0-h4de3ea5_0.tar.bz2 + hash: + md5: 1a0ffc65e03ce81559dbcb0695ad1476 + sha256: 2d09ef9b7796d83364957e420b41c32d94e628c3f0520b61c332518a7b5cd586 + category: main + optional: false + - name: libabseil + version: "20230802.1" + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libabseil-20230802.1-cxx17_h2f0025b_0.conda + hash: + md5: d1d7afab9c131b52ffe11aed370d06cd + sha256: 7890ac8c806e63d2acf8b6917151ad80a17c63b832bf0926723a890d9861b856 + category: main + optional: false + - name: libaec + version: 1.1.2 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libaec-1.1.2-h2f0025b_1.conda + hash: + md5: 35cdc41045e1041d7f3bf29081b3d3cb + sha256: faf1c20e0a0f823c01913ae0243a3fc5ebe822689c95896d24f80492903b497a + category: main + optional: false + - name: libbrotlicommon + version: 1.1.0 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libbrotlicommon-1.1.0-h31becfc_1.conda + hash: + md5: 1b219fd801eddb7a94df5bd001053ad9 + sha256: 1c3d4ea61e862eb5f1968915f6f5917ea61db9921aec30b14785775c87234060 + category: main + optional: false + - name: libcrc32c + version: 1.1.2 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=9.4.0" + libstdcxx-ng: ">=9.4.0" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libcrc32c-1.1.2-h01db608_0.tar.bz2 + hash: + md5: 268ee639c17ada0002fb04dd21816cc2 + sha256: b8b8c57a87da86b3ea24280fd6aa8efaf92f4e684b606bf2db5d3cb06ffbe2ea + category: main + optional: false + - name: libdeflate + version: "1.19" + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libdeflate-1.19-h31becfc_0.conda + hash: + md5: 014e57e35f2dc95c9a12f63d4378e093 + sha256: 77f04fced83cf1da09ffb7ef16d531ac889d944dbffe8a4dc00b61e4bae076a5 + category: main + optional: false + - name: libev + version: "4.33" + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=7.5.0" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libev-4.33-h516909a_1.tar.bz2 + hash: + md5: 9eac5901791494108c9b9ab85ca8aa93 + sha256: b9e8bcd26f0b0ded4c43232d55048bab910a4268197757f2368458759d9f3ef9 + category: main + optional: false + - name: libexpat + version: 2.5.0 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libexpat-2.5.0-hd600fc2_1.conda + hash: + md5: 6cd3d0a28437b3845c260f9d71d434d7 + sha256: b4651d196d5adb0637c678d874160a318078d963caec264bda7ac07ff6a1cbc7 + category: main + optional: false + - name: libffi + version: 3.4.2 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=9.4.0" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libffi-3.4.2-h3557bc0_5.tar.bz2 + hash: + md5: dddd85f4d52121fab0a8b099c5e06501 + sha256: 7e9258a102480757fe3faeb225a3ca04dffd10fecd2a958c65cdb4cdf75f2c3c + category: main + optional: false + - name: libgfortran5 + version: 13.2.0 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=13.2.0" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libgfortran5-13.2.0-h582850c_2.conda + hash: + md5: 1be4fb84d6b6617a844933ca406c6bd5 + sha256: 2ee27c078601b0ce489ec65904b4ab498b0febf5ecfa9dc6756e3baa794eea78 + category: main + optional: false + - name: libiconv + version: "1.17" + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=10.3.0" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libiconv-1.17-h9cdd2b7_0.tar.bz2 + hash: + md5: efc27cfbc82a027f65c02c661832ecfc + sha256: e3c95d751ea71a638f781e82b1498e914e1d11536ea52fc354fecb2e65d3a7d3 + category: main + optional: false + - name: libjpeg-turbo + version: 3.0.0 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libjpeg-turbo-3.0.0-h31becfc_1.conda + hash: + md5: ed24e702928be089d9ba3f05618515c6 + sha256: 675bc1f2a8581cd34a86c412663ec29c5f90c1d9f8d11866aa1ade5cdbdf8429 + category: main + optional: false + - name: libnsl + version: 2.0.1 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libnsl-2.0.1-h31becfc_0.conda + hash: + md5: c14f32510f694e3185704d89967ec422 + sha256: fd18c2b75d7411096428d36a70b36b1a17e31f7b8956b6905d145792d49e97f8 + category: main + optional: false + - name: libnuma + version: 2.0.16 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libnuma-2.0.16-hb4cce97_1.conda + hash: + md5: a63d3c8b8384e64056a8c4bfd80edbdd + sha256: 2f26e79ffadcf679033ef13b9dc72292c65e0511aa045059c2a4f4c8c2c74a32 + category: main + optional: false + - name: libsodium + version: 1.0.18 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=7.5.0" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libsodium-1.0.18-hb9de7d4_1.tar.bz2 + hash: + md5: d09ab3c60eebb6f14eb4d07e172775cc + sha256: 9ee442d889242c633bc3ce3f50ae89e6d8ebf12e04d943c371c0a56913fa069b + category: dev + optional: true + - name: libspatialindex + version: 1.9.3 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=9.3.0" + libstdcxx-ng: ">=9.3.0" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libspatialindex-1.9.3-h01db608_4.tar.bz2 + hash: + md5: b68ef401a75f73e542f30851dc8eed49 + sha256: b9ec8cedfb185cb651cc422ef9d6c65b6a4f5ec3e179fdc00046feefde9a8432 + category: main + optional: false + - name: libutf8proc + version: 2.8.0 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libutf8proc-2.8.0-h4e544f5_0.tar.bz2 + hash: + md5: bf0defbd8ac06270fb5ec05c85fb3c96 + sha256: c1956b64ad9613c66cf87398f5e2c36d071034a93892da7e8cc22e75cface878 + category: main + optional: false + - name: libuuid + version: 2.38.1 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libuuid-2.38.1-hb4cce97_0.conda + hash: + md5: 000e30b09db0b7c775b21695dff30969 + sha256: 616277b0c5f7616c2cdf36f6c316ea3f9aa5bb35f2d4476a349ab58b9b91675f + category: main + optional: false + - name: libuv + version: 1.46.0 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libuv-1.46.0-h31becfc_0.conda + hash: + md5: 9f34d91c42a7820676a895c314910ba7 + sha256: 8c7aca3bb0cdcdc94984dbdeeb6e81669e140e4e70e1b58243a39019380aa600 + category: main + optional: false + - name: libwebp-base + version: 1.3.2 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libwebp-base-1.3.2-h31becfc_0.conda + hash: + md5: 1490de434d2a2c06a98af27641a2ffff + sha256: a85484d8399bfa310512fe94863c8da3b224ac13f5e97736da65be6f509a8bf8 + category: main + optional: false + - name: libzlib + version: 1.2.13 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libzlib-1.2.13-h31becfc_5.conda + hash: + md5: b213aa87eea9491ef7b129179322e955 + sha256: aeeefbb61e5e8227e53566d5e42dbb49e120eb99109996bf0dbfde8f180747a7 + category: main + optional: false + - name: lz4-c + version: 1.9.4 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/lz4-c-1.9.4-hd600fc2_0.conda + hash: + md5: 500145a83ed07ce79c8cef24252f366b + sha256: 076870eb72411f41c46598c7582a2f3f42ba94c526a2d60a0c8f70a0a7a64429 + category: main + optional: false + - name: lzo + version: "2.10" + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=7.5.0" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/lzo-2.10-h516909a_1000.tar.bz2 + hash: + md5: ef5661339990c399c68c71cfb341e6d7 + sha256: d322607e1b113a3fdaf949872e6fb3c43bc61bb8b698bd756e730c5f337e4c94 + category: main + optional: false + - name: ncurses + version: "6.4" + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/ncurses-6.4-h2e1726e_0.conda + hash: + md5: 40beaf447150c2760affc591c7509595 + sha256: 650fddca6831a4950b526e4bb6cc6508a04372f21ef1cfee19ebe24605d47c2f + category: main + optional: false + - name: nspr + version: "4.35" + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/nspr-4.35-h4de3ea5_0.conda + hash: + md5: 7a392f26f76fc55354c8ed60c2b99162 + sha256: 23ff7274a021dd87966277b271e5d0944fcc8b893f4920cb46dd4224604218cc + category: main + optional: false + - name: openssl + version: 3.1.4 + manager: conda + platform: linux-aarch64 + dependencies: + ca-certificates: "" + libgcc-ng: ">=12" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/openssl-3.1.4-h31becfc_0.conda + hash: + md5: bc0e17d9ee24d18aa8ba435d86a2a460 + sha256: efdafcc17973512b0a4a577daf5e64414a07da362bb5110d434ecd98d913589e + category: main + optional: false + - name: pixman + version: 0.42.2 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/pixman-0.42.2-h2f0025b_0.conda + hash: + md5: b4235d240908a49af200f2fc43cb50fe + sha256: fb1f15cd3fbcd4beb59d8024c00a14a56b37f01abc57f51d2557da12fbed6188 + category: main + optional: false + - name: pthread-stubs + version: "0.4" + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=7.5.0" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/pthread-stubs-0.4-hb9de7d4_1001.tar.bz2 + hash: + md5: d0183ec6ce0b5aaa3486df25fa5f0ded + sha256: f1d7ff5e06cc515ec82010537813c796369f8e9dde46ce3f4fa1a9f70bc7db7d + category: main + optional: false + - name: re2 + version: 2023.03.02 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/re2-2023.03.02-hdc0ed08_0.conda + hash: + md5: de7bc1306fbb9e94b30385a30dae955a + sha256: 99934fe2d1c811482f95130de0db21b41ea13757cb9462921baff510b3b64a7c + category: main + optional: false + - name: snappy + version: 1.1.10 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/snappy-1.1.10-he8610fa_0.conda + hash: + md5: 11c25e55894bb8207a81a87e6a32b6e7 + sha256: 5a7d6cf781cbaaea4effce4d8f2677cd6173af5e8b744912e1283a704eb91946 + category: main + optional: false + - name: tzcode + version: 2023c + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/tzcode-2023c-hb4cce97_0.conda + hash: + md5: 6266e713b1255d53ccaf25d5a7c9d977 + sha256: 56c5c8c36ae3bbb517eb86227efb8e49261f6a4ed1eae263a35e461d2c76e44f + category: main + optional: false + - name: uriparser + version: 0.9.7 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/uriparser-0.9.7-hd600fc2_1.conda + hash: + md5: 72c24e7cfeeecdc48f0f8816b651796f + sha256: 879cd1f3b14eb9984c718ca5607ffc08d96efa891931aa41bad38af4f0b38ebf + category: main + optional: false + - name: xorg-kbproto + version: 1.0.7 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=9.3.0" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-kbproto-1.0.7-h3557bc0_1002.tar.bz2 + hash: + md5: ec8ce6b3dac3945a4010559a6284b755 + sha256: 421c0a115b31f02082f95c8f06dbba48b2274718f66a72d64d5102141e5a8731 + category: main + optional: false + - name: xorg-libice + version: 1.1.1 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libice-1.1.1-h7935292_0.conda + hash: + md5: 025968e2637bca910b9b3e7f6743beff + sha256: c889673c9313798372bea7c93640e853561bda5ba361b265ad4b14d7d1295235 + category: main + optional: false + - name: xorg-libxau + version: 1.0.11 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libxau-1.0.11-h31becfc_0.conda + hash: + md5: 13de34f69cb73165dbe08c1e9148bedb + sha256: c00a8909e783ba7f4ada7256f0385ae46fc21322f4090fa396c80b4481abd5f4 + category: main + optional: false + - name: xorg-libxdmcp + version: 1.1.3 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=9.3.0" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libxdmcp-1.1.3-h3557bc0_0.tar.bz2 + hash: + md5: a6c9016ae1ca5c47a3603ed4cd65fedd + sha256: 2aad9a0b57796170b8fb40317598fd79cfc7ae27fa7fb68c417d815e44499d59 + category: main + optional: false + - name: xorg-renderproto + version: 0.11.1 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=9.3.0" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-renderproto-0.11.1-h3557bc0_1002.tar.bz2 + hash: + md5: 01cbfe96ce66b78a9a270ac305791dd2 + sha256: e57e8b4a58f8c3b5011bf6cd66f499fca9fc5067981bb33f828750b168c3698d + category: main + optional: false + - name: xorg-xextproto + version: 7.3.0 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-xextproto-7.3.0-h2a766a3_1003.conda + hash: + md5: 32de1e4422c986e3b6eff59e7edc4d04 + sha256: 62298f1c7b963f3a5921a65d9cb6aae82c3ec8b3069319c8264c5b0a3d190286 + category: main + optional: false + - name: xorg-xproto + version: 7.0.31 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=9.3.0" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-xproto-7.0.31-h3557bc0_1007.tar.bz2 + hash: + md5: 987e98faa0ad2c667bbea6b6aae260bc + sha256: 7711ca1898e6f74a8434931fe6c0593ff7201277778aa09ea012d8be8bc7a7f5 + category: main + optional: false + - name: xz + version: 5.2.6 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/xz-5.2.6-h9cdd2b7_0.tar.bz2 + hash: + md5: 83baad393a31d59c20b63ba4da6592df + sha256: 93f58a7b393adf41fa007ac8c55978765e957e90cd31877ece1e5a343cb98220 + category: main + optional: false + - name: yaml + version: 0.2.5 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=9.4.0" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/yaml-0.2.5-hf897c2e_2.tar.bz2 + hash: + md5: b853307650cb226731f653aa623936a4 + sha256: 8bc601d6dbe249eba44b3c456765265cd8f42ef1e778f8df9b0c9c88b8558d7e + category: main + optional: false + - name: aws-c-cal + version: 0.6.2 + manager: conda + platform: linux-aarch64 + dependencies: + aws-c-common: ">=0.9.3,<0.9.4.0a0" + libgcc-ng: ">=12" + openssl: ">=3.1.3,<4.0a0" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-cal-0.6.2-h3c248d9_2.conda + hash: + md5: e5e8b2d00c74ca001cdd11fa7306e835 + sha256: d1892a74ce6aeb6915f131cdfa97b77f7751977b2ddb1eb004878e3089e47f53 + category: main + optional: false + - name: aws-c-compression + version: 0.2.17 + manager: conda + platform: linux-aarch64 + dependencies: + aws-c-common: ">=0.9.3,<0.9.4.0a0" + libgcc-ng: ">=12" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-compression-0.2.17-hc96350a_3.conda + hash: + md5: c63f0ed1fc73e35d211d7810f4a0c33c + sha256: 1caac726a248a2eba62c3766c8ca01836da4234b28ba6d2caba3bd272c8bbbf5 + category: main + optional: false + - name: aws-c-sdkutils + version: 0.1.12 + manager: conda + platform: linux-aarch64 + dependencies: + aws-c-common: ">=0.9.3,<0.9.4.0a0" + libgcc-ng: ">=12" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-sdkutils-0.1.12-hc96350a_2.conda + hash: + md5: e8fee02dd8db9bb0bedfffc7c07cf53c + sha256: 12671ada17b97d4adf1c138ee132f1830b43cc9d1fddd62215875a2bd589d787 + category: main + optional: false + - name: aws-checksums + version: 0.1.17 + manager: conda + platform: linux-aarch64 + dependencies: + aws-c-common: ">=0.9.3,<0.9.4.0a0" + libgcc-ng: ">=12" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-checksums-0.1.17-hc96350a_2.conda + hash: + md5: ca1f217dc28772887cde39f46532c25b + sha256: 422477cab3488a23d7a5f8cfb4b52d6bd6916f8a2a2fc0d9f24c50aa9fe56ecb + category: main + optional: false + - name: expat + version: 2.5.0 + manager: conda + platform: linux-aarch64 + dependencies: + libexpat: 2.5.0 + libgcc-ng: ">=12" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/expat-2.5.0-hd600fc2_1.conda + hash: + md5: 6dfca4be3e0080934b1105d009747e98 + sha256: a00bae815836f8fc73e47701c25998be81284dcefab28e002efde68e0bb7eee0 + category: main + optional: false + - name: glog + version: 0.6.0 + manager: conda + platform: linux-aarch64 + dependencies: + gflags: ">=2.2.2,<2.3.0a0" + libgcc-ng: ">=10.3.0" + libstdcxx-ng: ">=10.3.0" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/glog-0.6.0-h8ab10f1_0.tar.bz2 + hash: + md5: 9dc55595db8d7947bb253f63bbcec8ca + sha256: e41461399e2a5d139935caaa95f8264f700b058ea077708f8b0417a79ced215c + category: main + optional: false + - name: hdf4 + version: 4.2.15 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + libjpeg-turbo: ">=3.0.0,<4.0a0" + libstdcxx-ng: ">=12" + libzlib: ">=1.2.13,<1.3.0a0" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/hdf4-4.2.15-hb6ba311_7.conda + hash: + md5: e1b6676b77b9690d07ea25de48aed97e + sha256: 70d1e2d3e0b9ae1b149a31a4270adfbb5a4ceb2f8c36d17feffcd7bcb6208022 + category: main + optional: false + - name: libbrotlidec + version: 1.1.0 + manager: conda + platform: linux-aarch64 + dependencies: + libbrotlicommon: 1.1.0 + libgcc-ng: ">=12" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libbrotlidec-1.1.0-h31becfc_1.conda + hash: + md5: 8db7cff89510bec0b863a0a8ee6a7bce + sha256: 1d2558efbb727f9065dd94d5f906aa68252153f80e571456d3695fa102e8a352 + category: main + optional: false + - name: libbrotlienc + version: 1.1.0 + manager: conda + platform: linux-aarch64 + dependencies: + libbrotlicommon: 1.1.0 + libgcc-ng: ">=12" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libbrotlienc-1.1.0-h31becfc_1.conda + hash: + md5: ad3d3a826b5848d99936e4466ebbaa26 + sha256: 271fd8ef9181ad19246bf8b4273c99b9608c6eedecb6b11cd925211b8f1c6217 + category: main + optional: false + - name: libedit + version: 3.1.20191231 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=7.5.0" + ncurses: ">=6.2,<7.0.0a0" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libedit-3.1.20191231-he28a2e2_2.tar.bz2 + hash: + md5: 29371161d77933a54fccf1bb66b96529 + sha256: debc31fb2f07ba2b0363f90e455873670734082822926ba4a9556431ec0bf36d + category: main + optional: false + - name: libevent + version: 2.1.12 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + openssl: ">=3.1.1,<4.0a0" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libevent-2.1.12-h4ba1bb4_1.conda + hash: + md5: 96ae6083cd1ac9f6bc81631ac835b317 + sha256: 01333cc7d6e6985dd5700b43660d90e9e58049182017fd24862088ecbe1458e4 + category: main + optional: false + - name: libgfortran-ng + version: 13.2.0 + manager: conda + platform: linux-aarch64 + dependencies: + libgfortran5: 13.2.0 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libgfortran-ng-13.2.0-he9431aa_2.conda + hash: + md5: 720092257480c53e80f32cc819821fea + sha256: 9b083dbae4610dba83fa9df483742b0257a41e7b9105b9e16dde5ae1937f868a + category: main + optional: false + - name: libkml + version: 1.3.0 + manager: conda + platform: linux-aarch64 + dependencies: + libboost-headers: "" + libexpat: ">=2.5.0,<3.0a0" + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + libzlib: ">=1.2.13,<1.3.0a0" + uriparser: ">=0.9.7,<1.0a0" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libkml-1.3.0-h7d16752_1018.conda + hash: + md5: 0a2cb881ed5cf04e6e05079ee0a7a18b + sha256: 3695e5046f617307a9c2b01763d81fc584c900d2da1b7186fe54d40c16cacc4c + category: main + optional: false + - name: libllvm14 + version: 14.0.6 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + libzlib: ">=1.2.13,<1.3.0a0" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libllvm14-14.0.6-h966f666_4.conda + hash: + md5: 2174896f810f800bb63775855c497c3c + sha256: 3152e5b3d350e5af79226d0409a0a4d691428e2e83967247a3651ad7b80dfc3f + category: main + optional: false + - name: libnghttp2 + version: 1.52.0 + manager: conda + platform: linux-aarch64 + dependencies: + c-ares: ">=1.18.1,<2.0a0" + libev: ">=4.33,<4.34.0a0" + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + libzlib: ">=1.2.13,<1.3.0a0" + openssl: ">=3.0.8,<4.0a0" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libnghttp2-1.52.0-h250e5c5_0.conda + hash: + md5: bfacd7a58ed56ff30d9454d32513d8d3 + sha256: aebb40d3ea3540deca76195bdd8023509eec21f456e609a5e71dee91385243e6 + category: main + optional: false + - name: libpng + version: 1.6.39 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + libzlib: ">=1.2.13,<1.3.0a0" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libpng-1.6.39-hf9034f9_0.conda + hash: + md5: 5ec9052384a6ac85e9111e9ac7c5ec4c + sha256: a43ab7cb0a66febe26e33b75e4aef6ce4ce532f69e6336e24ce00235ed000fd9 + category: main + optional: false + - name: libprotobuf + version: 4.23.4 + manager: conda + platform: linux-aarch64 + dependencies: + libabseil: ">=20230802.0,<20230803.0a0" + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + libzlib: ">=1.2.13,<1.3.0a0" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libprotobuf-4.23.4-h87e877f_6.conda + hash: + md5: 715a9d5194a46fe952f41aa12bfee0ca + sha256: cb17340bfa23e67f6f81bc8d6abd05e3c9789160802f844894feee2df9e1ed29 + category: main + optional: false + - name: librttopo + version: 1.1.0 + manager: conda + platform: linux-aarch64 + dependencies: + geos: ">=3.12.0,<3.12.1.0a0" + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/librttopo-1.1.0-h707ec9f_14.conda + hash: + md5: 19a99c890d452179711622da68506abf + sha256: c2e840c0c26cd20ef23f07df7a5dc9c9601c7869bce420bb9573aba72287db41 + category: main + optional: false + - name: libsqlite + version: 3.43.2 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + libzlib: ">=1.2.13,<1.3.0a0" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libsqlite-3.43.2-h194ca79_0.conda + hash: + md5: 16417bba0efbcb7539b942a611cc899a + sha256: 1c94079b370f535630279dfba695b0ba91f40afdb800aebea43c47cc6b6cf9e1 + category: main + optional: false + - name: libssh2 + version: 1.11.0 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + libzlib: ">=1.2.13,<1.3.0a0" + openssl: ">=3.1.1,<4.0a0" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libssh2-1.11.0-h492db2e_0.conda + hash: + md5: 45532845e121677ad328c9af9953f161 + sha256: 409163dd4a888b9266369f1bce57b5ca56c216e34249637c3e10eb404e356171 + category: main + optional: false + - name: libxcb + version: "1.15" + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + pthread-stubs: "" + xorg-libxau: "" + xorg-libxdmcp: "" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libxcb-1.15-h2a766a3_0.conda + hash: + md5: eb3d8c8170e3d03f2564ed2024aa00c8 + sha256: d159fcdb8b74187b0bd32f2d9b3a9191bc8b786a97e413aa66e19c39ba7050a0 + category: main + optional: false + - name: libxml2 + version: 2.11.5 + manager: conda + platform: linux-aarch64 + dependencies: + icu: ">=73.2,<74.0a0" + libgcc-ng: ">=12" + libiconv: ">=1.17,<2.0a0" + libzlib: ">=1.2.13,<1.3.0a0" + xz: ">=5.2.6,<6.0a0" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libxml2-2.11.5-h3091e33_1.conda + hash: + md5: 32df81aac32e3196589e176572d9c720 + sha256: d5aaa50328f8471bca30f9b633f575e67278b31a55b397d89cf40a64976b801d + category: main + optional: false + - name: libzip + version: 1.10.1 + manager: conda + platform: linux-aarch64 + dependencies: + bzip2: ">=1.0.8,<2.0a0" + libgcc-ng: ">=12" + libzlib: ">=1.2.13,<1.3.0a0" + openssl: ">=3.1.2,<4.0a0" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libzip-1.10.1-h4156a30_3.conda + hash: + md5: ad9400456170b46f2615bdd48dff87fe + sha256: 4b1a653eeb5a139431fb074830b7a099d111594b1867363772f27ac84dee0acd + category: main + optional: false + - name: pcre2 + version: "10.40" + manager: conda + platform: linux-aarch64 + dependencies: + bzip2: ">=1.0.8,<2.0a0" + libgcc-ng: ">=12" + libzlib: ">=1.2.12,<1.3.0a0" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/pcre2-10.40-he7b27c6_0.tar.bz2 + hash: + md5: 2bb3167087f621daefab01b6a2ddc7f9 + sha256: 1c9967f4a1641801b9f976c264e6d3ad92ceb856d244d89e7b5ff3cd893e8751 + category: main + optional: false + - name: readline + version: "8.2" + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + ncurses: ">=6.3,<7.0a0" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/readline-8.2-h8fc344f_1.conda + hash: + md5: 105eb1e16bf83bfb2eb380a48032b655 + sha256: 4c99f7417419734e3797d45bc355e61c26520e111893b0d7087a01a7fbfbe3dd + category: main + optional: false + - name: s2n + version: 1.3.54 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + openssl: ">=3.1.3,<4.0a0" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/s2n-1.3.54-h5a25046_0.conda + hash: + md5: ad5f12651e61f2873a292b4426586fef + sha256: 22dba4453c6740b14e8f78402e7141e04a752f838d19d9fee479b6e568cd9eae + category: main + optional: false + - name: tk + version: 8.6.13 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + libzlib: ">=1.2.13,<1.3.0a0" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/tk-8.6.13-h194ca79_0.conda + hash: + md5: f75105e0585851f818e0009dd1dde4dc + sha256: 7fa27cc512d3a783f38bd16bbbffc008807372499d5b65d089a8e43bde9db267 + category: main + optional: false + - name: ucx + version: 1.15.0 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + libnuma: ">=2.0.16,<3.0a0" + libstdcxx-ng: ">=12" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/ucx-1.15.0-h1c93fb9_0.conda + hash: + md5: e679a9bf135509acefc058e1ed7f5974 + sha256: 1cb7880bc23ed9590d7b0ae3543dd3b8ea112c7f7c34c349791561207776588b + category: main + optional: false + - name: xorg-libsm + version: 1.2.4 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + libuuid: ">=2.38.1,<3.0a0" + xorg-libice: ">=1.1.1,<2.0a0" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libsm-1.2.4-h5a01bc2_0.conda + hash: + md5: d788eca20ecd63bad8eea7219e5c5fb7 + sha256: 2678975d4001f1123752ceabf9e2810cab51f740624320077de1ab12b537b498 + category: main + optional: false + - name: zeromq + version: 4.3.5 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + libsodium: ">=1.0.18,<1.0.19.0a0" + libstdcxx-ng: ">=12" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/zeromq-4.3.5-h2f0025b_0.conda + hash: + md5: 88905c542167163a0dea6bdad01c3366 + sha256: a165a5c67afcfe2512c23beee8e274080926bc91ba1f30d18a3ba945547485d1 + category: dev + optional: true + - name: zlib + version: 1.2.13 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + libzlib: 1.2.13 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/zlib-1.2.13-h31becfc_5.conda + hash: + md5: 96866c7301479abaf8308c50958c71a4 + sha256: aa3e9d46b13d1959faf634f03d929d7dec950dc1b84a8ff109f7f0e3f364b562 + category: main + optional: false + - name: zstd + version: 1.5.5 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + libzlib: ">=1.2.13,<1.3.0a0" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/zstd-1.5.5-h4c53e97_0.conda + hash: + md5: b74eb9dbb5c3c15cb3cee7cbdf198c75 + sha256: d1e070029e9d07a3f25e6ed082d507b0f3cff1b109dd18d0b091a5c7b86dd07b + category: main + optional: false + - name: aws-c-io + version: 0.13.33 + manager: conda + platform: linux-aarch64 + dependencies: + aws-c-cal: ">=0.6.2,<0.6.3.0a0" + aws-c-common: ">=0.9.3,<0.9.4.0a0" + libgcc-ng: ">=12" + s2n: ">=1.3.54,<1.3.55.0a0" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-io-0.13.33-hf6573a2_0.conda + hash: + md5: 756b83f80535227281a32e2c97ca5cd9 + sha256: 0a77d05baddb10dcda031ab089ca04df669156ce574b9761739a01dfa79ef8d4 + category: main + optional: false + - name: blosc + version: 1.21.5 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + libzlib: ">=1.2.13,<1.3.0a0" + lz4-c: ">=1.9.3,<1.10.0a0" + snappy: ">=1.1.10,<2.0a0" + zstd: ">=1.5.5,<1.6.0a0" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/blosc-1.21.5-h2f3a684_0.conda + hash: + md5: c1f53cf8a0e36464e084d9f167365552 + sha256: 4b7cecdece6e31651993bd2960f6a025d8e546b4778fff101b19e66107667860 + category: main + optional: false + - name: brotli-bin + version: 1.1.0 + manager: conda + platform: linux-aarch64 + dependencies: + libbrotlidec: 1.1.0 + libbrotlienc: 1.1.0 + libgcc-ng: ">=12" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/brotli-bin-1.1.0-h31becfc_1.conda + hash: + md5: 9e4a13596ab651ea8d77aae023d0ce3f + sha256: fd1e57615b995565939fdb9910534933c4c27ec0c37a911a2c923241dbf8ad3b + category: main + optional: false + - name: freetype + version: 2.12.1 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + libpng: ">=1.6.39,<1.7.0a0" + libzlib: ">=1.2.13,<1.3.0a0" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/freetype-2.12.1-hf0a5ef3_2.conda + hash: + md5: a5ab74c5bd158c3d5532b66d8d83d907 + sha256: 7af93030f4407f076dce181062360efac2cd54dce863b5d7765287a6f5382537 + category: main + optional: false + - name: krb5 + version: 1.21.2 + manager: conda + platform: linux-aarch64 + dependencies: + keyutils: ">=1.6.1,<2.0a0" + libedit: ">=3.1.20191231,<4.0a0" + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + openssl: ">=3.1.2,<4.0a0" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/krb5-1.21.2-hc419048_0.conda + hash: + md5: 55b51af37bf6fdcfe06f140e62e8c8db + sha256: c3f24ead49fb7d7c29fae491bec3f090f63d77a46954eadbc4463f137e2b42cd + category: main + optional: false + - name: libarchive + version: 3.7.2 + manager: conda + platform: linux-aarch64 + dependencies: + bzip2: ">=1.0.8,<2.0a0" + libgcc-ng: ">=12" + libxml2: ">=2.11.5,<2.12.0a0" + libzlib: ">=1.2.13,<1.3.0a0" + lz4-c: ">=1.9.3,<1.10.0a0" + lzo: ">=2.10,<3.0a0" + openssl: ">=3.1.2,<4.0a0" + xz: ">=5.2.6,<6.0a0" + zstd: ">=1.5.5,<1.6.0a0" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libarchive-3.7.2-h566b526_0.conda + hash: + md5: 6814151313d1b1314c96ffe547b8c9b0 + sha256: e6ec0458b2fc3d59c546f106f9ab96c12608db0249f73c90e6aa690cf834c3ee + category: main + optional: false + - name: libglib + version: 2.78.0 + manager: conda + platform: linux-aarch64 + dependencies: + gettext: ">=0.21.1,<1.0a0" + libffi: ">=3.4,<4.0a0" + libgcc-ng: ">=12" + libiconv: ">=1.17,<2.0a0" + libstdcxx-ng: ">=12" + libzlib: ">=1.2.13,<1.3.0a0" + pcre2: ">=10.40,<10.41.0a0" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libglib-2.78.0-h0464669_0.conda + hash: + md5: 1371bbb534b32f8dfc592835e142eb31 + sha256: 55ae2d02f2007d0a10f0c7e7aad2cdce1c08dbbc0a78ef84aa70d2089cb1a2a5 + category: main + optional: false + - name: libgrpc + version: 1.57.0 + manager: conda + platform: linux-aarch64 + dependencies: + c-ares: ">=1.20.1,<2.0a0" + libabseil: ">=20230802.1,<20230803.0a0" + libgcc-ng: ">=12" + libprotobuf: ">=4.23.4,<4.23.5.0a0" + libstdcxx-ng: ">=12" + libzlib: ">=1.2.13,<1.3.0a0" + openssl: ">=3.1.3,<4.0a0" + re2: ">=2023.3.2,<2023.3.3.0a0" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libgrpc-1.57.0-h048544f_2.conda + hash: + md5: d2836da1dfc526cb4fb1bc44b2ad26dd + sha256: 5f459ec8c6e81c6c0163afe31f8061bb56b7679579962ab4bf91598e7cd80a97 + category: main + optional: false + - name: libopenblas + version: 0.3.24 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + libgfortran-ng: "" + libgfortran5: ">=12.3.0" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libopenblas-0.3.24-pthreads_h5a5ec62_0.conda + hash: + md5: 22555a102c05b77dc45ff22a21255935 + sha256: faf62bc8c12cb96e5991eafa743f1800c86e7ec923fec70eb90ed473587c206e + category: main + optional: false + - name: libthrift + version: 0.19.0 + manager: conda + platform: linux-aarch64 + dependencies: + libevent: ">=2.1.12,<2.1.13.0a0" + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + libzlib: ">=1.2.13,<1.3.0a0" + openssl: ">=3.1.3,<4.0a0" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libthrift-0.19.0-h043aeee_1.conda + hash: + md5: 591ef1567ed4989d824fe35b45e3ae68 + sha256: 83d38df283ae258eb73807442ccee62364cf50b853d238a5b03092374c7bcf45 + category: main + optional: false + - name: libtiff + version: 4.6.0 + manager: conda + platform: linux-aarch64 + dependencies: + lerc: ">=4.0.0,<5.0a0" + libdeflate: ">=1.19,<1.20.0a0" + libgcc-ng: ">=12" + libjpeg-turbo: ">=3.0.0,<4.0a0" + libstdcxx-ng: ">=12" + libwebp-base: ">=1.3.2,<2.0a0" + libzlib: ">=1.2.13,<1.3.0a0" + xz: ">=5.2.6,<6.0a0" + zstd: ">=1.5.5,<1.6.0a0" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libtiff-4.6.0-h1708d11_2.conda + hash: + md5: d5638e110e7f22e2602a8edd20656720 + sha256: e6aecca5bbf354ab34fb04d8d6ef4a50477f64997c368d734cc5d1d8b1a21d3a + category: main + optional: false + - name: libxslt + version: 1.1.37 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + libxml2: ">=2.11.3,<2.12.0a0" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libxslt-1.1.37-hc886646_1.conda + hash: + md5: 00ba4036e7d23b7e5acca17c00668e03 + sha256: b66810854e6432db0e9ac9192fa28ebbe70407d83beba5c79d29638ee8157484 + category: main + optional: false + - name: minizip + version: 4.0.1 + manager: conda + platform: linux-aarch64 + dependencies: + bzip2: ">=1.0.8,<2.0a0" + libgcc-ng: ">=12" + libiconv: ">=1.17,<2.0a0" + libstdcxx-ng: ">=12" + libzlib: ">=1.2.13,<1.3.0a0" + openssl: ">=3.1.3,<4.0a0" + xz: ">=5.2.6,<6.0a0" + zstd: ">=1.5.5,<1.6.0a0" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/minizip-4.0.1-hb75dd74_5.conda + hash: + md5: cd3b85129e04fcf00c270891021ed4b6 + sha256: 75c38b055bee25bc07847b5c296f21fa1dd763a9196e2e7b856ff9152893d944 + category: main + optional: false + - name: nodejs + version: 20.8.1 + manager: conda + platform: linux-aarch64 + dependencies: + icu: ">=73.2,<74.0a0" + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + libuv: ">=1.46.0,<1.47.0a0" + libzlib: ">=1.2.13,<1.3.0a0" + openssl: ">=3.1.3,<4.0a0" + zlib: "" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/nodejs-20.8.1-hc1f8a26_0.conda + hash: + md5: 2f64009d835593256a78e748843d1040 + sha256: 38f6933cf0d4a9231657e29a8acad0c16986bc243e68141e6f15aa3ee4a0671a + category: main + optional: false + - name: nss + version: "3.94" + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + libsqlite: ">=3.43.0,<4.0a0" + libstdcxx-ng: ">=12" + libzlib: ">=1.2.13,<1.3.0a0" + nspr: ">=4.35,<5.0a0" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/nss-3.94-hc5a5cc2_0.conda + hash: + md5: 9894563da5c5e7d6c54f7dc1ab0e2edf + sha256: 00278bc0a12cca58b95c8e8cc0bcdae96730adbc862d6f78607dc7d147e51a8d + category: main + optional: false + - name: orc + version: 1.9.0 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + libprotobuf: ">=4.23.4,<4.23.5.0a0" + libstdcxx-ng: ">=12" + libzlib: ">=1.2.13,<1.3.0a0" + lz4-c: ">=1.9.3,<1.10.0a0" + snappy: ">=1.1.10,<2.0a0" + zstd: ">=1.5.5,<1.6.0a0" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/orc-1.9.0-hfcd03c9_2.conda + hash: + md5: 94604f9c2b2fa7df12b55d8bfe877e1b + sha256: 023ec88c4ac7c62ae684c2ef2bb805f14bfb38e639268e8b4cae255fced98fd1 + category: main + optional: false + - name: python + version: 3.11.6 + manager: conda + platform: linux-aarch64 + dependencies: + bzip2: ">=1.0.8,<2.0a0" + ld_impl_linux-aarch64: ">=2.36.1" + libexpat: ">=2.5.0,<3.0a0" + libffi: ">=3.4,<4.0a0" + libgcc-ng: ">=12" + libnsl: ">=2.0.0,<2.1.0a0" + libsqlite: ">=3.43.0,<4.0a0" + libuuid: ">=2.38.1,<3.0a0" + libzlib: ">=1.2.13,<1.3.0a0" + ncurses: ">=6.4,<7.0a0" + openssl: ">=3.1.3,<4.0a0" + readline: ">=8.2,<9.0a0" + tk: ">=8.6.13,<8.7.0a0" + tzdata: "" + xz: ">=5.2.6,<6.0a0" + pip: "" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/python-3.11.6-h43d1f9e_0_cpython.conda + hash: + md5: 5f56b82899b4e77b4757b881e7e26ce0 + sha256: 81df051705bbdb193df780d0dbe40a9fd8d0ec73dd5a97485a98fe69d67d0aff + category: main + optional: false + - name: sqlite + version: 3.43.2 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + libsqlite: 3.43.2 + libzlib: ">=1.2.13,<1.3.0a0" + ncurses: ">=6.4,<7.0a0" + readline: ">=8.2,<9.0a0" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/sqlite-3.43.2-h3b3482f_0.conda + hash: + md5: 9340c895bb8a07ffb056e1742a8c746b + sha256: 34d9d12dd70b6164662aac14f3a726f86dcfff8b67360e22102d000a5f8cc4a7 + category: main + optional: false + - name: tiledb + version: 2.16.3 + manager: conda + platform: linux-aarch64 + dependencies: + bzip2: ">=1.0.8,<2.0a0" + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + libxml2: ">=2.11.5,<2.12.0a0" + libzlib: ">=1.2.13,<1.3.0a0" + lz4-c: ">=1.9.3,<1.10.0a0" + openssl: ">=3.1.2,<4.0a0" + zstd: ">=1.5.5,<1.6.0a0" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/tiledb-2.16.3-hdb54b9b_3.conda + hash: + md5: e9f97b0e940562a7c0ddf279143312d6 + sha256: 0f795613b66de8592c3151fcbd108b1239a1092cc009bf0e8098221b2ae97f99 + category: main + optional: false + - name: xorg-libx11 + version: 1.8.7 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + libxcb: ">=1.15,<1.16.0a0" + xorg-kbproto: "" + xorg-xextproto: ">=7.3.0,<8.0a0" + xorg-xproto: "" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libx11-1.8.7-h055a233_0.conda + hash: + md5: b3ff774afbb2cd7678044e1fed24f59e + sha256: dc688480f6afa3b5880b9d4e11e25e6c8dd10e961a07cfa30b2dc5e529e250bb + category: main + optional: false + - name: aiofiles + version: 23.1.0 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.7" + url: https://conda.anaconda.org/conda-forge/noarch/aiofiles-23.1.0-pyhd8ed1ab_1.conda + hash: + md5: 4e0624567be59edd7d0fec20db4d7a9c + sha256: 76f4a3bedd87897b5d33be777035087c47416550a6e7329d4710248dcfa4700e + category: datasette + optional: true + - name: alabaster + version: 0.7.13 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.6" + url: https://conda.anaconda.org/conda-forge/noarch/alabaster-0.7.13-pyhd8ed1ab_0.conda + hash: + md5: 06006184e203b61d3525f90de394471e + sha256: b2d160a050996950434c6e87a174fc01c4a937cbeffbdd20d1b46126b4478a95 + category: docs + optional: true + - name: anyascii + version: 0.3.2 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.6" + url: https://conda.anaconda.org/conda-forge/noarch/anyascii-0.3.2-pyhd8ed1ab_0.conda + hash: + md5: 70b6fc71d80ea6176f5302ebbeb13d8a + sha256: 8ad0591c262e63f3a66fe093886a4b5d00d3ad6223560fc2a88da441c672fddc + category: docs + optional: true + - name: appdirs + version: 1.4.4 + manager: conda + platform: linux-aarch64 + dependencies: + python: "" + url: https://conda.anaconda.org/conda-forge/noarch/appdirs-1.4.4-pyh9f0ad1d_0.tar.bz2 + hash: + md5: 5f095bc6454094e96f146491fd03633b + sha256: ae9fb8f68281f84482f2c234379aa12405a9e365151d43af20b3ae1f17312111 + category: dev + optional: true + - name: astroid + version: 3.0.1 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.11,<3.12.0a0" + python_abi: 3.11.* + url: https://conda.anaconda.org/conda-forge/linux-aarch64/astroid-3.0.1-py311hec3470c_0.conda + hash: + md5: e55a67498405c6823c34bb4ad5d5914e + sha256: ad1a67462e4fbb4cdae193b9133938ca153cb31a1d45a68fce8b4afebbfd29a6 + category: dev + optional: true + - name: attrs + version: 23.1.0 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.7" + url: https://conda.anaconda.org/conda-forge/noarch/attrs-23.1.0-pyh71513ae_1.conda + hash: + md5: 3edfead7cedd1ab4400a6c588f3e75f8 + sha256: 063639cd568f5c7a557b0fb1cc27f098598c0d8ff869088bfeb82934674f8821 + category: main + optional: false + - name: aws-c-event-stream + version: 0.3.2 + manager: conda + platform: linux-aarch64 + dependencies: + aws-c-common: ">=0.9.3,<0.9.4.0a0" + aws-c-io: ">=0.13.33,<0.13.34.0a0" + aws-checksums: ">=0.1.17,<0.1.18.0a0" + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-event-stream-0.3.2-h13ef912_2.conda + hash: + md5: b428d456213966893abaaa7f5f54c1bf + sha256: 2e61c501f91cbe144af6a9f312d0c7ed8a08a7b46eab58378d0a3477244c4567 + category: main + optional: false + - name: aws-c-http + version: 0.7.13 + manager: conda + platform: linux-aarch64 + dependencies: + aws-c-cal: ">=0.6.2,<0.6.3.0a0" + aws-c-common: ">=0.9.3,<0.9.4.0a0" + aws-c-compression: ">=0.2.17,<0.2.18.0a0" + aws-c-io: ">=0.13.33,<0.13.34.0a0" + libgcc-ng: ">=12" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-http-0.7.13-h2aeb8d6_2.conda + hash: + md5: 41dcbc9122fde5266d1fb9f5e07768d3 + sha256: d4d58cbe9285dd6abc9474c6813de2a086cb16963afc0be2d41396ddf86d33ed + category: main + optional: false + - name: backcall + version: 0.2.0 + manager: conda + platform: linux-aarch64 + dependencies: + python: "" + url: https://conda.anaconda.org/conda-forge/noarch/backcall-0.2.0-pyh9f0ad1d_0.tar.bz2 + hash: + md5: 6006a6d08a3fa99268a2681c7fb55213 + sha256: ee62d6434090c1327a48551734e06bd10e65a64ef7f3b6e68719500dab0e42b9 + category: dev + optional: true + - name: backoff + version: 2.2.1 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.7" + url: https://conda.anaconda.org/conda-forge/noarch/backoff-2.2.1-pyhd8ed1ab_0.tar.bz2 + hash: + md5: 4600709bd85664d8606ae0c76642f8db + sha256: b1cf7df15741e5fbc57e22a3a89db427383335aaab22ddc1b30710deeb0130de + category: main + optional: false + - name: backports + version: "1.0" + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=2.7" + url: https://conda.anaconda.org/conda-forge/noarch/backports-1.0-pyhd8ed1ab_3.conda + hash: + md5: 54ca2e08b3220c148a1d8329c2678e02 + sha256: 711602276ae39276cb0faaca6fd0ac851fff0ca17151917569174841ef830bbd + category: dev + optional: true + - name: blinker + version: 1.6.3 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.7" + url: https://conda.anaconda.org/conda-forge/noarch/blinker-1.6.3-pyhd8ed1ab_0.conda + hash: + md5: d33cf7357de636cec64320f0c4fb7b6f + sha256: b9e264f0acb369040da1c3cbeb032b0ca54e017ffe166cd9d946dab78dad0d44 + category: main + optional: false + - name: brotli + version: 1.1.0 + manager: conda + platform: linux-aarch64 + dependencies: + brotli-bin: 1.1.0 + libbrotlidec: 1.1.0 + libbrotlienc: 1.1.0 + libgcc-ng: ">=12" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/brotli-1.1.0-h31becfc_1.conda + hash: + md5: e41f5862ac746428407f3fd44d2ed01f + sha256: 1e1e46a4d16936d1bd1a605767b4cc36cf8fd3180ad776b5ba9e4c8ce64859bf + category: main + optional: false + - name: brotli-python + version: 1.1.0 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + python: ">=3.11,<3.12.0a0" + python_abi: 3.11.* + url: https://conda.anaconda.org/conda-forge/linux-aarch64/brotli-python-1.1.0-py311h8715677_1.conda + hash: + md5: 22c060f41b1407ed9f40ce6468bdc338 + sha256: f108fced985f7aa4457564c1e8f49cc5166d2e82bfdc120657c61888cd1f3a53 + category: main + optional: false + - name: cached_property + version: 1.5.2 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.6" + url: https://conda.anaconda.org/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2 + hash: + md5: 576d629e47797577ab0f1b351297ef4a + sha256: 6dbf7a5070cc43d90a1e4c2ec0c541c69d8e30a0e25f50ce9f6e4a432e42c5d7 + category: main + optional: false + - name: cachetools + version: 5.3.2 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.7" + url: https://conda.anaconda.org/conda-forge/noarch/cachetools-5.3.2-pyhd8ed1ab_0.conda + hash: + md5: 185cc1bf1d5af90020292888a3c7eb5d + sha256: cb8a6688d5650e4546a5f3c5b825bfe3c82594f1f588a93817f1bdb23e74baad + category: main + optional: false + - name: cachy + version: 0.3.0 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.6" + url: https://conda.anaconda.org/conda-forge/noarch/cachy-0.3.0-pyhd8ed1ab_1.tar.bz2 + hash: + md5: 5dfee17f24e2dfd18d7392b48c9351e2 + sha256: 9b193a4e483c4d0004bc5b88fac7a02516b6311137ab61b8db85aa9741422e35 + category: dev + optional: true + - name: catalystcoop.dbfread + version: 3.0.0 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.6" + url: https://conda.anaconda.org/conda-forge/noarch/catalystcoop.dbfread-3.0.0-py_0.tar.bz2 + hash: + md5: 301d8b0d49e76f6bd586d2c96c2e259e + sha256: bfba35085bcf84c3368b38ed0c5e6f03aeadf0712e866cb9e89283d6ff5292d7 + category: main + optional: false + - name: cchardet + version: 2.1.7 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + python: ">=3.11,<3.12.0a0" + python_abi: 3.11.* + url: https://conda.anaconda.org/conda-forge/linux-aarch64/cchardet-2.1.7-py311h8715677_5.conda + hash: + md5: 0799b82b392b6ae1c17a61b0a4e0867e + sha256: 9eeaa3847b63075c51acf23aa03866cd2ed6a5e0f74fc88825a944398fddf1e3 + category: main + optional: false + - name: certifi + version: 2023.7.22 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.7" + url: https://conda.anaconda.org/conda-forge/noarch/certifi-2023.7.22-pyhd8ed1ab_0.conda + hash: + md5: 7f3dbc9179b4dde7da98dfb151d0ad22 + sha256: db66e31866ff4250c190788769e3a8a1709237c3e9c38d7143aae95ab75fcb31 + category: main + optional: false + - name: cfgv + version: 3.3.1 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.6.1" + url: https://conda.anaconda.org/conda-forge/noarch/cfgv-3.3.1-pyhd8ed1ab_0.tar.bz2 + hash: + md5: ebb5f5f7dc4f1a3780ef7ea7738db08c + sha256: fbc03537a27ef756162c49b1d0608bf7ab12fa5e38ceb8563d6f4859e835ac5c + category: dev + optional: true + - name: chardet + version: 5.2.0 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.11,<3.12.0a0" + python_abi: 3.11.* + url: https://conda.anaconda.org/conda-forge/linux-aarch64/chardet-5.2.0-py311hfecb2dc_1.conda + hash: + md5: 679e97a67198ee498124243b1685b920 + sha256: 8e1e494e7fa02302bcc8a22222da5b616263fafdb1c5189a5f7bdcfee93e4649 + category: main + optional: false + - name: charset-normalizer + version: 3.3.1 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.7" + url: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.3.1-pyhd8ed1ab_0.conda + hash: + md5: 985378f74689fccce52f158027bd9acd + sha256: a31739c49c4b1c8e0cbdec965ba152683d36ce6e23bdaefcfee99937524dabd1 + category: main + optional: false + - name: click + version: 8.1.7 + manager: conda + platform: linux-aarch64 + dependencies: + __unix: "" + python: ">=3.8" + url: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_0.conda + hash: + md5: f3ad426304898027fc619827ff428eca + sha256: f0016cbab6ac4138a429e28dbcb904a90305b34b3fe41a9b89d697c90401caec + category: main + optional: false + - name: cloudpickle + version: 3.0.0 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.8" + url: https://conda.anaconda.org/conda-forge/noarch/cloudpickle-3.0.0-pyhd8ed1ab_0.conda + hash: + md5: 753d29fe41bb881e4b9c004f0abf973f + sha256: 0dfbc1ffa72e7a0882f486c9b1e4e9cccb68cf5c576fe53a89d076c9f1d43754 + category: main + optional: false + - name: colorama + version: 0.4.6 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.7" + url: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2 + hash: + md5: 3faab06a954c2a04039983f2c4a50d99 + sha256: 2c1b2e9755ce3102bca8d69e8f26e4f087ece73f50418186aee7c74bef8e1698 + category: main + optional: false + - name: crashtest + version: 0.4.1 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.6,<4.0" + url: https://conda.anaconda.org/conda-forge/noarch/crashtest-0.4.1-pyhd8ed1ab_0.tar.bz2 + hash: + md5: 709a2295dd907bb34afb57d54320642f + sha256: 2f05954a3faf0700c14c1deddc085385160ee32abe111699c78d9cb277e915cc + category: dev + optional: true + - name: cycler + version: 0.12.1 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.8" + url: https://conda.anaconda.org/conda-forge/noarch/cycler-0.12.1-pyhd8ed1ab_0.conda + hash: + md5: 5cd86562580f274031ede6aa6aa24441 + sha256: f221233f21b1d06971792d491445fd548224641af9443739b4b7b6d5d72954a8 + category: main + optional: false + - name: dagster-pipes + version: 1.5.4 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.8" + url: https://conda.anaconda.org/conda-forge/noarch/dagster-pipes-1.5.4-pyhd8ed1ab_1.conda + hash: + md5: e415c49419cae013a09145a3a16244ca + sha256: c84ac60663552b916422a81abd243aad60358ca32170cd564c3c6af9179dc100 + category: main + optional: false + - name: dataclasses + version: "0.8" + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.7" + url: https://conda.anaconda.org/conda-forge/noarch/dataclasses-0.8-pyhc8e2a94_3.tar.bz2 + hash: + md5: a362b2124b06aad102e2ee4581acee7d + sha256: 63a83e62e0939bc1ab32de4ec736f6403084198c4639638b354a352113809c92 + category: docs + optional: true + - name: dbus + version: 1.13.6 + manager: conda + platform: linux-aarch64 + dependencies: + expat: ">=2.4.2,<3.0a0" + libgcc-ng: ">=9.4.0" + libglib: ">=2.70.2,<3.0a0" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/dbus-1.13.6-h12b9eeb_3.tar.bz2 + hash: + md5: f3d63805602166bac09386741e00935e + sha256: 5fe76bdf27a142cfb9da0fb3197c562e528d2622b573765bee5c9904cf5e6b6b + category: dev + optional: true + - name: debugpy + version: 1.8.0 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + python: ">=3.11,<3.12.0a0" + python_abi: 3.11.* + url: https://conda.anaconda.org/conda-forge/linux-aarch64/debugpy-1.8.0-py311h8715677_1.conda + hash: + md5: 3dccf38a4c102ecf75ee7d18d31b9349 + sha256: 827bc98dda9430d937f702472acb375bf5b17cb2cdbd2c7a3eb1926471aa9a1d + category: dev + optional: true + - name: decorator + version: 5.1.1 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.5" + url: https://conda.anaconda.org/conda-forge/noarch/decorator-5.1.1-pyhd8ed1ab_0.tar.bz2 + hash: + md5: 43afe5ab04e35e17ba28649471dd7364 + sha256: 328a6a379f9bdfd0230e51de291ce858e6479411ea4b0545fb377c71662ef3e2 + category: main + optional: false + - name: defusedxml + version: 0.7.1 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.6" + url: https://conda.anaconda.org/conda-forge/noarch/defusedxml-0.7.1-pyhd8ed1ab_0.tar.bz2 + hash: + md5: 961b3a227b437d82ad7054484cfa71b2 + sha256: 9717a059677553562a8f38ff07f3b9f61727bd614f505658b0a5ecbcf8df89be + category: dev + optional: true + - name: distlib + version: 0.3.7 + manager: conda + platform: linux-aarch64 + dependencies: + python: 2.7|>=3.6 + url: https://conda.anaconda.org/conda-forge/noarch/distlib-0.3.7-pyhd8ed1ab_0.conda + hash: + md5: 12d8aae6994f342618443a8f05c652a0 + sha256: 13c887cb4a29e1e853a118cfc0e42b72a7e1d1c50c66c0974885d37f0db30619 + category: dev + optional: true + - name: docstring_parser + version: "0.15" + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.6" + url: https://conda.anaconda.org/conda-forge/noarch/docstring_parser-0.15-pyhd8ed1ab_0.conda + hash: + md5: 031fcb28b8e80c1f7bec22ccdf4904b2 + sha256: 9b22e1f1d0decc26cc0743ce929e1a7e233fd7921d1b5c390db0691b8042a706 + category: main + optional: false + - name: docutils + version: 0.20.1 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.11,<3.12.0a0" + python_abi: 3.11.* + url: https://conda.anaconda.org/conda-forge/linux-aarch64/docutils-0.20.1-py311hfecb2dc_2.conda + hash: + md5: 4d47b5de98e152508db25b36b9f1406c + sha256: 3024c0e919b80c55b331c87c1b25f263cbfad8afbce72a5d55339f9f64d703c6 + category: dev + optional: true + - name: entrypoints + version: "0.4" + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.6" + url: https://conda.anaconda.org/conda-forge/noarch/entrypoints-0.4-pyhd8ed1ab_0.tar.bz2 + hash: + md5: 3cf04868fee0a029769bd41f4b2fbf2d + sha256: 2ec4a0900a4a9f42615fc04d0fb3286b796abe56590e8e042f6ec25e102dd5af + category: dev + optional: true + - name: et_xmlfile + version: 1.1.0 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.6" + url: https://conda.anaconda.org/conda-forge/noarch/et_xmlfile-1.1.0-pyhd8ed1ab_0.conda + hash: + md5: a2f2138597905eaa72e561d8efb42cf3 + sha256: 0c7bb50e1382615a660468dc531b8b17c5b91b88a02ed131c8e3cc63db507ce2 + category: main + optional: false + - name: exceptiongroup + version: 1.1.3 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.7" + url: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.1.3-pyhd8ed1ab_0.conda + hash: + md5: e6518222753f519e911e83136d2158d9 + sha256: c28f715e049fe0f09785660bcbffa175ffb438720e5bc5a60d56d4b08364b315 + category: main + optional: false + - name: executing + version: 1.2.0 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=2.7" + url: https://conda.anaconda.org/conda-forge/noarch/executing-1.2.0-pyhd8ed1ab_0.tar.bz2 + hash: + md5: 4c1bc140e2be5c8ba6e3acab99e25c50 + sha256: 9c03425cd58c474af20e179c9ba121a82984d6c4bfc896bbc992f5ed75dd7539 + category: dev + optional: true + - name: filelock + version: 3.12.4 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.7" + url: https://conda.anaconda.org/conda-forge/noarch/filelock-3.12.4-pyhd8ed1ab_0.conda + hash: + md5: 5173d4b8267a0699a43d73231e0b6596 + sha256: 7463c64364c14b34a7a69a7550a880ccd1ec6d3014001e55913e6e4e8b0c7395 + category: dev + optional: true + - name: fontconfig + version: 2.14.2 + manager: conda + platform: linux-aarch64 + dependencies: + expat: ">=2.5.0,<3.0a0" + freetype: ">=2.12.1,<3.0a0" + libgcc-ng: ">=12" + libuuid: ">=2.32.1,<3.0a0" + libzlib: ">=1.2.13,<1.3.0a0" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/fontconfig-2.14.2-ha9a116f_0.conda + hash: + md5: 6d2d19ea85f9d41534cd28fdefd59a25 + sha256: 71143b04d9beeb76264a54cb42a2953ff858a95f7383531fcb3a33ac6433e7f6 + category: main + optional: false + - name: freexl + version: 2.0.0 + manager: conda + platform: linux-aarch64 + dependencies: + libexpat: ">=2.5.0,<3.0a0" + libgcc-ng: ">=12" + libiconv: ">=1.17,<2.0a0" + minizip: ">=4.0.1,<5.0a0" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/freexl-2.0.0-h5428426_0.conda + hash: + md5: 1338ecf4f6072e376e87f3ae6bc34170 + sha256: d1c1b82336de80f6b2045654ec980419520e32db9d54e75a41feb6180ab26c8a + category: main + optional: false + - name: frozenlist + version: 1.4.0 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + python: ">=3.11,<3.12.0a0" + python_abi: 3.11.* + url: https://conda.anaconda.org/conda-forge/linux-aarch64/frozenlist-1.4.0-py311hcd402e7_1.conda + hash: + md5: 59d4681ac4157d34d416645c9fc466d2 + sha256: db3c049f9930cdc646d44d732074fb7174677ad2f0e0093998e5064a93cdd507 + category: main + optional: false + - name: fsspec + version: 2023.9.2 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.8" + url: https://conda.anaconda.org/conda-forge/noarch/fsspec-2023.9.2-pyh1a96a4e_0.conda + hash: + md5: 9d15cd3a0e944594ab528da37dc72ecc + sha256: d95d11d1f501cb69528bb2b620b728f12caf872cb23837bc9bdd6ef405b4ecfb + category: main + optional: false + - name: greenlet + version: 3.0.1 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + python: ">=3.11,<3.12.0a0" + python_abi: 3.11.* + url: https://conda.anaconda.org/conda-forge/linux-aarch64/greenlet-3.0.1-py311h8715677_0.conda + hash: + md5: e7db12015c1f04c8e3d5777994b7e3da + sha256: 3c775c8b1ab86f03b397bea30fae6251eea7b3f60d3e3f691a3a65be619a34a9 + category: main + optional: false + - name: grpcio + version: 1.57.0 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + libgrpc: 1.57.0 + libstdcxx-ng: ">=12" + libzlib: ">=1.2.13,<1.3.0a0" + python: ">=3.11,<3.12.0a0" + python_abi: 3.11.* + url: https://conda.anaconda.org/conda-forge/linux-aarch64/grpcio-1.57.0-py311h1a7908d_2.conda + hash: + md5: 7933ba6ab7af102f7df33020764d8946 + sha256: 33bbd470aea6ceecbb772b44510fe22d9e56d27cf876569dc90c6172b59777d6 + category: main + optional: false + - name: hpack + version: 4.0.0 + manager: conda + platform: linux-aarch64 + dependencies: + python: "" + url: https://conda.anaconda.org/conda-forge/noarch/hpack-4.0.0-pyh9f0ad1d_0.tar.bz2 + hash: + md5: 914d6646c4dbb1fd3ff539830a12fd71 + sha256: 5dec948932c4f740674b1afb551223ada0c55103f4c7bf86a110454da3d27cb8 + category: main + optional: false + - name: httptools + version: 0.6.1 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + python: ">=3.11,<3.12.0a0" + python_abi: 3.11.* + url: https://conda.anaconda.org/conda-forge/linux-aarch64/httptools-0.6.1-py311hcd402e7_0.conda + hash: + md5: 0e1f8da2303e4097de25ff2830196d96 + sha256: b6a80fdc9d5c6bed398b4ce2d550fa4d40566685ac1271ceba373999f8e14c69 + category: main + optional: false + - name: humanfriendly + version: "10.0" + manager: conda + platform: linux-aarch64 + dependencies: + __unix: "" + python: ">=3.8" + url: https://conda.anaconda.org/conda-forge/noarch/humanfriendly-10.0-pyhd8ed1ab_6.conda + hash: + md5: 2ed1fe4b9079da97c44cfe9c2e5078fd + sha256: cd93d5d4b1d98f7ce76a8658c35de9c63e17b3a40e52f40fa2f459e0da83d0b1 + category: main + optional: false + - name: hupper + version: "1.12" + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.6" + url: https://conda.anaconda.org/conda-forge/noarch/hupper-1.12-pyhd8ed1ab_0.conda + hash: + md5: 2654ff96e839bc699e5c3780689a596b + sha256: 0b172391000a008029f32e4a34d37d79b114d4ea3b6948d2be72a78568fdadcd + category: datasette + optional: true + - name: hyperframe + version: 6.0.1 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.6" + url: https://conda.anaconda.org/conda-forge/noarch/hyperframe-6.0.1-pyhd8ed1ab_0.tar.bz2 + hash: + md5: 9f765cbfab6870c8435b9eefecd7a1f4 + sha256: e374a9d0f53149328134a8d86f5d72bca4c6dcebed3c0ecfa968c02996289330 + category: main + optional: false + - name: idna + version: "3.4" + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.6" + url: https://conda.anaconda.org/conda-forge/noarch/idna-3.4-pyhd8ed1ab_0.tar.bz2 + hash: + md5: 34272b248891bddccc64479f9a7fffed + sha256: 9887c35c374ec1847f167292d3fde023cb4c994a4ceeec283072b95440131f09 + category: main + optional: false + - name: ijson + version: 3.2.3 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.4" + url: https://conda.anaconda.org/conda-forge/noarch/ijson-3.2.3-pyhd8ed1ab_0.conda + hash: + md5: 6b1e4cb33f797d6487efd3ebad39d103 + sha256: 133fb51b4c638c453ef7de37cc4d412b9a4442839a9c7ad986b9bf473234b585 + category: main + optional: false + - name: imagesize + version: 1.4.1 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.4" + url: https://conda.anaconda.org/conda-forge/noarch/imagesize-1.4.1-pyhd8ed1ab_0.tar.bz2 + hash: + md5: 7de5386c8fea29e76b303f37dde4c352 + sha256: c2bfd7043e0c4c12d8b5593de666c1e81d67b83c474a0a79282cc5c4ef845460 + category: docs + optional: true + - name: iniconfig + version: 2.0.0 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.7" + url: https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_0.conda + hash: + md5: f800d2da156d08e289b14e87e43c1ae5 + sha256: 38740c939b668b36a50ef455b077e8015b8c9cf89860d421b3fff86048f49666 + category: dev + optional: true + - name: ipython_genutils + version: 0.2.0 + manager: conda + platform: linux-aarch64 + dependencies: + python: "" + url: https://conda.anaconda.org/conda-forge/noarch/ipython_genutils-0.2.0-py_1.tar.bz2 + hash: + md5: 5071c982548b3a20caf70462f04f5287 + sha256: 0fafbc60209f1d8c0b89a2f79f3ff0f7bc45589a23da1d2e5cc55bcca906707b + category: dev + optional: true + - name: itsdangerous + version: 2.1.2 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.7" + url: https://conda.anaconda.org/conda-forge/noarch/itsdangerous-2.1.2-pyhd8ed1ab_0.tar.bz2 + hash: + md5: 3c3de74912f11d2b590184f03c7cd09b + sha256: 31e3492686b4e92b53db9b48bc0eb03873b1caaf28629fee7d2d47627a2c56d3 + category: datasette + optional: true + - name: jeepney + version: 0.8.0 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.7" + url: https://conda.anaconda.org/conda-forge/noarch/jeepney-0.8.0-pyhd8ed1ab_0.tar.bz2 + hash: + md5: 9800ad1699b42612478755a2d26c722d + sha256: 16639759b811866d63315fe1391f6fb45f5478b823972f4d3d9f0392b7dd80b8 + category: dev + optional: true + - name: jellyfish + version: 1.0.1 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + python: ">=3.11,<3.12.0a0" + python_abi: 3.11.* + url: https://conda.anaconda.org/conda-forge/linux-aarch64/jellyfish-1.0.1-py311h2bdde80_1.conda + hash: + md5: d355b9f575128f478b4a562690b44748 + sha256: 478e80f55e06ea7f0a90fd1216ccd238ba7b99f95351d8b86f24c1a5fd7b784c + category: main + optional: false + - name: jmespath + version: 1.0.1 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.7" + url: https://conda.anaconda.org/conda-forge/noarch/jmespath-1.0.1-pyhd8ed1ab_0.tar.bz2 + hash: + md5: 2cfa3e1cf3fb51bb9b17acc5b5e9ea11 + sha256: 95ac5f9ee95fd4e34dc051746fc86016d3d4f6abefed113e2ede049d59ec2991 + category: main + optional: false + - name: json5 + version: 0.9.14 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.7,<4.0" + url: https://conda.anaconda.org/conda-forge/noarch/json5-0.9.14-pyhd8ed1ab_0.conda + hash: + md5: dac1dabba2b5a9d1aee175c5fcc7b436 + sha256: 41514104208c092959bef0713cbd795e72c535f2f939b7903d8c97809f2adaa7 + category: dev + optional: true + - name: jsonpointer + version: "2.4" + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.11,<3.12.0a0" + python_abi: 3.11.* + url: https://conda.anaconda.org/conda-forge/linux-aarch64/jsonpointer-2.4-py311hec3470c_3.conda + hash: + md5: 4f2983c27363a8685eccfb721acd2a03 + sha256: 38933d7923ce261a9ec0a1c539991e8ca6951670d99ac37783584fdf18d663d6 + category: main + optional: false + - name: jupyterlab_widgets + version: 3.0.9 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.7" + url: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_widgets-3.0.9-pyhd8ed1ab_0.conda + hash: + md5: 8370e0a9dc443f9b45a23fd30e7a6b3b + sha256: ec66991d2175f7b1f35973d6c4f56ad9a49666f77acf1037d72f3bc6e37224f3 + category: dev + optional: true + - name: kiwisolver + version: 1.4.5 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + python: ">=3.11,<3.12.0a0" + python_abi: 3.11.* + url: https://conda.anaconda.org/conda-forge/linux-aarch64/kiwisolver-1.4.5-py311h0d5d7b0_1.conda + hash: + md5: 9863ea5e3f203a10762b4ae827d496fb + sha256: b7745580ae9ac455e8f0410ab68c07fa2c955b8de895f936de4494422598b95f + category: main + optional: false + - name: lcms2 + version: "2.15" + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + libjpeg-turbo: ">=3.0.0,<4.0a0" + libtiff: ">=4.6.0,<4.7.0a0" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/lcms2-2.15-h922389a_3.conda + hash: + md5: a3d4d0d61fc9619bc9066263ed014b45 + sha256: 03a7b6c69e8d657d97bd2271790b582e60a97a9d63333ccba8e70641f1626c31 + category: main + optional: false + - name: libblas + version: 3.9.0 + manager: conda + platform: linux-aarch64 + dependencies: + libopenblas: ">=0.3.24,<1.0a0" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libblas-3.9.0-19_linuxaarch64_openblas.conda + hash: + md5: b5e24d17a35602ac07c72e1133a3cc20 + sha256: 75de46749fdb2fb084ae6622cbd0751b732546907072d60798c1b86116f049fb + category: main + optional: false + - name: libcurl + version: 8.4.0 + manager: conda + platform: linux-aarch64 + dependencies: + krb5: ">=1.21.2,<1.22.0a0" + libgcc-ng: ">=12" + libnghttp2: ">=1.52.0,<2.0a0" + libssh2: ">=1.11.0,<2.0a0" + libzlib: ">=1.2.13,<1.3.0a0" + openssl: ">=3.1.3,<4.0a0" + zstd: ">=1.5.5,<1.6.0a0" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libcurl-8.4.0-h4e8248e_0.conda + hash: + md5: f4b9521a3f5f065fcbb536e23f5e6068 + sha256: 4b91045d2a9a635524fd5cf6bf9323f6f95b749e5d6a0225849ef3fb11e77bbe + category: main + optional: false + - name: libpq + version: "16.0" + manager: conda + platform: linux-aarch64 + dependencies: + krb5: ">=1.21.2,<1.22.0a0" + libgcc-ng: ">=12" + libzlib: ">=1.2.13,<1.3.0a0" + openssl: ">=3.1.3,<4.0a0" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libpq-16.0-h04b8c23_1.conda + hash: + md5: 3923b4a2e586d63543ee7f4ec2e6fdf1 + sha256: 9f61b6529ae4bf19a96aae5c0f2f66007d669abf6a6d9490a9f24d62c782891b + category: main + optional: false + - name: llvmlite + version: 0.40.1 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + libllvm14: ">=14.0.6,<14.1.0a0" + libstdcxx-ng: ">=12" + libzlib: ">=1.2.13,<1.3.0a0" + python: ">=3.11,<3.12.0a0" + python_abi: 3.11.* + url: https://conda.anaconda.org/conda-forge/linux-aarch64/llvmlite-0.40.1-py311h1a7908d_0.conda + hash: + md5: 815d40a8f5276d473a81d61ce258d64d + sha256: 36d799570f70a3b1b2e8f265aa40f0af60d28ce95c67ffb3a5162ada6c300569 + category: main + optional: false + - name: locket + version: 1.0.0 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*" + url: https://conda.anaconda.org/conda-forge/noarch/locket-1.0.0-pyhd8ed1ab_0.tar.bz2 + hash: + md5: 91e27ef3d05cc772ce627e51cff111c4 + sha256: 9afe0b5cfa418e8bdb30d8917c5a6cec10372b037924916f1f85b9f4899a67a6 + category: main + optional: false + - name: lxml + version: 4.9.3 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + libxml2: ">=2.11.5,<2.12.0a0" + libxslt: ">=1.1.37,<2.0a0" + libzlib: ">=1.2.13,<1.3.0a0" + python: ">=3.11,<3.12.0a0" + python_abi: 3.11.* + url: https://conda.anaconda.org/conda-forge/linux-aarch64/lxml-4.9.3-py311h40dcbb3_1.conda + hash: + md5: 77b60009a043e3ffe8b30c436a468beb + sha256: 5f315d2d5198249168d2bcb67b7dd973edf9fca1b36187ec17c839c6d098336e + category: dev + optional: true + - name: marko + version: 1.3.1 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.6" + url: https://conda.anaconda.org/conda-forge/noarch/marko-1.3.1-pyhd8ed1ab_0.conda + hash: + md5: 9651c1c1c19dbc072c557e3e2da38329 + sha256: 42a84421edb86e09b83aaaa340921b8f2c78daa787305895e886ade6913d8690 + category: main + optional: false + - name: markupsafe + version: 2.1.3 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + python: ">=3.11,<3.12.0a0" + python_abi: 3.11.* + url: https://conda.anaconda.org/conda-forge/linux-aarch64/markupsafe-2.1.3-py311hc8f2f60_1.conda + hash: + md5: 7c2101fff3f6c30b76f3a296218cff4b + sha256: 8671467621e1b879ade6d967eb832510f997d9f84cfaf61e38e323957a00576c + category: main + optional: false + - name: mdurl + version: 0.1.0 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.6" + url: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.0-pyhd8ed1ab_0.tar.bz2 + hash: + md5: f8dab71fdc13b1bf29a01248b156d268 + sha256: c678b9194e025b1fb665bec30ee20aab93399203583875b1dcc0a3b52a8f5523 + category: main + optional: false + - name: mergedeep + version: 1.3.4 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.6" + url: https://conda.anaconda.org/conda-forge/noarch/mergedeep-1.3.4-pyhd8ed1ab_0.tar.bz2 + hash: + md5: 1a160a3cab5cb6bd46264b52cd6f69a2 + sha256: 41ad8c16876820981adfc6e17a62935c950214bd9a9bb092e6aaefdc89a33f0b + category: datasette + optional: true + - name: mistune + version: 3.0.1 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.7" + url: https://conda.anaconda.org/conda-forge/noarch/mistune-3.0.1-pyhd8ed1ab_0.conda + hash: + md5: 1dad8397c94e4de97a70de552a7dcf49 + sha256: 0b4558d3afb64e23b66f5279b704de76ebeb6b4eebbf913d65fbd4ba7d9acc2f + category: dev + optional: true + - name: more-itertools + version: 10.1.0 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.8" + url: https://conda.anaconda.org/conda-forge/noarch/more-itertools-10.1.0-pyhd8ed1ab_0.conda + hash: + md5: 8549fafed0351bbfaa1ddaa15fdf9b4e + sha256: 07ce65497dec537e490992758934ddbc4fb5ed9285b41387a7cca966f1a98a0f + category: dev + optional: true + - name: msgpack-python + version: 1.0.6 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + python: ">=3.11,<3.12.0a0" + python_abi: 3.11.* + url: https://conda.anaconda.org/conda-forge/linux-aarch64/msgpack-python-1.0.6-py311h0d5d7b0_0.conda + hash: + md5: 4742c4ae732f30635f93bc4d062a16d3 + sha256: 9ed9a721c12cd19200087407ea0e9f6aa6f6cc4651f63024cb12963e8945521d + category: dev + optional: true + - name: multidict + version: 6.0.4 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + python: ">=3.11,<3.12.0a0" + python_abi: 3.11.* + url: https://conda.anaconda.org/conda-forge/linux-aarch64/multidict-6.0.4-py311hcd402e7_1.conda + hash: + md5: a7afdb9c9a3463fa7ec6bc4469a9f248 + sha256: 1d243ba1d1e70de45979be2eeb697fc44e139a0e02a56d631e7f33f4c0365e9a + category: main + optional: false + - name: munch + version: 4.0.0 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.8" + url: https://conda.anaconda.org/conda-forge/noarch/munch-4.0.0-pyhd8ed1ab_0.conda + hash: + md5: 376b32e8f9d3eacbd625f37d39bd507d + sha256: 093020ae2deb6c468120111a54909e1c576d70dfea6bc0eec5093e36d2fb8ff8 + category: main + optional: false + - name: munkres + version: 1.1.4 + manager: conda + platform: linux-aarch64 + dependencies: + python: "" + url: https://conda.anaconda.org/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2 + hash: + md5: 2ba8498c1018c1e9c61eb99b973dfe19 + sha256: f86fb22b58e93d04b6f25e0d811b56797689d598788b59dcb47f59045b568306 + category: main + optional: false + - name: mypy_extensions + version: 1.0.0 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.5" + url: https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda + hash: + md5: 4eccaeba205f0aed9ac3a9ea58568ca3 + sha256: f240217476e148e825420c6bc3a0c0efb08c0718b7042fae960400c02af858a3 + category: dev + optional: true + - name: nest-asyncio + version: 1.5.8 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.5" + url: https://conda.anaconda.org/conda-forge/noarch/nest-asyncio-1.5.8-pyhd8ed1ab_0.conda + hash: + md5: a4f0e4519bc50eee4f53f689be9607f7 + sha256: d7b795b4e754136841c6da3f9fa1a0f7ec37bc7167e7dd68c5b45e657133e008 + category: dev + optional: true + - name: networkx + version: "3.2" + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.9" + url: https://conda.anaconda.org/conda-forge/noarch/networkx-3.2-pyhd8ed1ab_1.conda + hash: + md5: 522039fb968d6d0a10e872e6f3856f53 + sha256: 857dc30c287f90da1dd1c0a781a5305abb92db900fd5675c8bdd16ae339abb45 + category: main + optional: false + - name: openjpeg + version: 2.5.0 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + libpng: ">=1.6.39,<1.7.0a0" + libstdcxx-ng: ">=12" + libtiff: ">=4.6.0,<4.7.0a0" + libzlib: ">=1.2.13,<1.3.0a0" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/openjpeg-2.5.0-h0d9d63b_3.conda + hash: + md5: 123f5df3bc7f0e23c6950fddb97d1f43 + sha256: 1e897431b207d531e881c2137a8983ebe679030f0c9188777e2c163e7e594389 + category: main + optional: false + - name: packaging + version: "23.2" + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.7" + url: https://conda.anaconda.org/conda-forge/noarch/packaging-23.2-pyhd8ed1ab_0.conda + hash: + md5: 79002079284aa895f883c6b7f3f88fd6 + sha256: 69b3ace6cca2dab9047b2c24926077d81d236bef45329d264b394001e3c3e52f + category: main + optional: false + - name: pandocfilters + version: 1.5.0 + manager: conda + platform: linux-aarch64 + dependencies: + python: "!=3.0,!=3.1,!=3.2,!=3.3" + url: https://conda.anaconda.org/conda-forge/noarch/pandocfilters-1.5.0-pyhd8ed1ab_0.tar.bz2 + hash: + md5: 457c2c8c08e54905d6954e79cb5b5db9 + sha256: 2bb9ba9857f4774b85900c2562f7e711d08dd48e2add9bee4e1612fbee27e16f + category: dev + optional: true + - name: parso + version: 0.8.3 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.6" + url: https://conda.anaconda.org/conda-forge/noarch/parso-0.8.3-pyhd8ed1ab_0.tar.bz2 + hash: + md5: 17a565a0c3899244e938cdf417e7b094 + sha256: 4e26d5daf5de0e31aa5e74ac56386a361b202433b83f024fdadbf07d4a244da4 + category: dev + optional: true + - name: pastel + version: 0.2.1 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=2.7" + url: https://conda.anaconda.org/conda-forge/noarch/pastel-0.2.1-pyhd8ed1ab_0.tar.bz2 + hash: + md5: a4eea5bff523f26442405bc5d1f52adb + sha256: 9153f0f38c76a09da7688a61fdbf8f3d7504e2326bef53e4ec20d994311b15bd + category: dev + optional: true + - name: pathspec + version: 0.11.2 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.7" + url: https://conda.anaconda.org/conda-forge/noarch/pathspec-0.11.2-pyhd8ed1ab_0.conda + hash: + md5: e41debb259e68490e3ab81e46b639ab6 + sha256: 7bcfa6d86359d45572ba9ccaeaedc04b0452e2654fe44b6fe378d0d37b8745e1 + category: dev + optional: true + - name: petl + version: 1.7.14 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.6" + url: https://conda.anaconda.org/conda-forge/noarch/petl-1.7.14-pyhd8ed1ab_0.conda + hash: + md5: 65813db01f2331768d909c0852ff5d70 + sha256: f802a980b04ea3355831be31c4b94421040ec95902e203ea08c2e3fc0a1f4286 + category: main + optional: false + - name: pickleshare + version: 0.7.5 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3" + url: https://conda.anaconda.org/conda-forge/noarch/pickleshare-0.7.5-py_1003.tar.bz2 + hash: + md5: 415f0ebb6198cc2801c73438a9fb5761 + sha256: a1ed1a094dd0d1b94a09ed85c283a0eb28943f2e6f22161fb45e128d35229738 + category: dev + optional: true + - name: pkginfo + version: 1.9.6 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.6" + url: https://conda.anaconda.org/conda-forge/noarch/pkginfo-1.9.6-pyhd8ed1ab_0.conda + hash: + md5: be1e9f1c65a1ed0f2ae9352fec99db64 + sha256: 7ea5a5af62a15376d9f4f9f3c134874d0b0710f39be719e849b7fa9ca8870502 + category: dev + optional: true + - name: pkgutil-resolve-name + version: 1.3.10 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.6" + url: https://conda.anaconda.org/conda-forge/noarch/pkgutil-resolve-name-1.3.10-pyhd8ed1ab_1.conda + hash: + md5: 405678b942f2481cecdb3e010f4925d9 + sha256: fecf95377134b0e8944762d92ecf7b0149c07d8186fb5db583125a2705c7ea0a + category: main + optional: false + - name: pluggy + version: 1.3.0 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.8" + url: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.3.0-pyhd8ed1ab_0.conda + hash: + md5: 2390bd10bed1f3fdc7a537fb5a447d8d + sha256: 7bf2ad9d747e71f1e93d0863c2c8061dd0f2fe1e582f28d292abfb40264a2eb5 + category: dev + optional: true + - name: prometheus_client + version: 0.17.1 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.6" + url: https://conda.anaconda.org/conda-forge/noarch/prometheus_client-0.17.1-pyhd8ed1ab_0.conda + hash: + md5: 02153b6b760bbec00cfe9e4c97993d06 + sha256: a149184fde856dba7968fc50ca89dbb07ebe84abd710d4076e2fada1b9399231 + category: dev + optional: true + - name: psutil + version: 5.9.5 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + python: ">=3.11,<3.12.0a0" + python_abi: 3.11.* + url: https://conda.anaconda.org/conda-forge/linux-aarch64/psutil-5.9.5-py311hcd402e7_1.conda + hash: + md5: ed330c5e852e3b60aeccd3098529a2ed + sha256: 6666f812e19a5651e53baa2e119c1d3b673f7055531c286da092eff19711d313 + category: main + optional: false + - name: ptyprocess + version: 0.7.0 + manager: conda + platform: linux-aarch64 + dependencies: + python: "" + url: https://conda.anaconda.org/conda-forge/noarch/ptyprocess-0.7.0-pyhd3deb0d_0.tar.bz2 + hash: + md5: 359eeb6536da0e687af562ed265ec263 + sha256: fb31e006a25eb2e18f3440eb8d17be44c8ccfae559499199f73584566d0a444a + category: dev + optional: true + - name: pure_eval + version: 0.2.2 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.5" + url: https://conda.anaconda.org/conda-forge/noarch/pure_eval-0.2.2-pyhd8ed1ab_0.tar.bz2 + hash: + md5: 6784285c7e55cb7212efabc79e4c2883 + sha256: 72792f9fc2b1820e37cc57f84a27bc819c71088c3002ca6db05a2e56404f9d44 + category: dev + optional: true + - name: pyasn1 + version: 0.5.0 + manager: conda + platform: linux-aarch64 + dependencies: + python: "!=3.0,!=3.1,!=3.2,!=3.3,!=3.4,!=3.5" + url: https://conda.anaconda.org/conda-forge/noarch/pyasn1-0.5.0-pyhd8ed1ab_0.conda + hash: + md5: 4b1c0db24e212190be1969b0aa490ad8 + sha256: 259b1107ae7d6983a8fdebe1717b67005fdf5328e827f33d38a9df43dee5ef82 + category: main + optional: false + - name: pycparser + version: "2.21" + manager: conda + platform: linux-aarch64 + dependencies: + python: 2.7.*|>=3.4 + url: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.21-pyhd8ed1ab_0.tar.bz2 + hash: + md5: 076becd9e05608f8dc72757d5f3a91ff + sha256: 74c63fd03f1f1ea2b54e8bc529fd1a600aaafb24027b738d0db87909ee3a33dc + category: main + optional: false + - name: pygments + version: 2.16.1 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.7" + url: https://conda.anaconda.org/conda-forge/noarch/pygments-2.16.1-pyhd8ed1ab_0.conda + hash: + md5: 40e5cb18165466773619e5c963f00a7b + sha256: 3f0f0fadc6084960ec8cc00a32a03529c562ffea3b527eb73b1653183daad389 + category: main + optional: false + - name: pyjwt + version: 2.8.0 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.6" + url: https://conda.anaconda.org/conda-forge/noarch/pyjwt-2.8.0-pyhd8ed1ab_0.conda + hash: + md5: 912c0194f898fdb783021fd25f913c31 + sha256: 88ac94c42ade15113397e30d1831dd341399b5262fb5330b9240f915c33cd232 + category: main + optional: false + - name: pylev + version: 1.4.0 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.3" + url: https://conda.anaconda.org/conda-forge/noarch/pylev-1.4.0-pyhd8ed1ab_0.tar.bz2 + hash: + md5: edf8651c4379d9d1495ad6229622d150 + sha256: 50bd91767686bfe769e50a5a1b883e238d944a6163fea43e7c0beaac54ca674f + category: dev + optional: true + - name: pyparsing + version: 3.1.1 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.6" + url: https://conda.anaconda.org/conda-forge/noarch/pyparsing-3.1.1-pyhd8ed1ab_0.conda + hash: + md5: 176f7d56f0cfe9008bdf1bccd7de02fb + sha256: 4a1332d634b6c2501a973655d68f08c9c42c0bd509c349239127b10572b8354b + category: main + optional: false + - name: pysocks + version: 1.7.1 + manager: conda + platform: linux-aarch64 + dependencies: + __unix: "" + python: ">=3.8" + url: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2 + hash: + md5: 2a7de29fb590ca14b5243c4c812c8025 + sha256: a42f826e958a8d22e65b3394f437af7332610e43ee313393d1cf143f0a2d274b + category: main + optional: false + - name: python-dotenv + version: 1.0.0 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.8" + url: https://conda.anaconda.org/conda-forge/noarch/python-dotenv-1.0.0-pyhd8ed1ab_1.conda + hash: + md5: 111e7f9edd31865e2659fa9aad8ec8fd + sha256: bc5663f224ff6d8a399ec6bd8517e0c0f87a69ead438f82e5ce5c30f00077586 + category: main + optional: false + - name: python-fastjsonschema + version: 2.18.1 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.3" + url: https://conda.anaconda.org/conda-forge/noarch/python-fastjsonschema-2.18.1-pyhd8ed1ab_0.conda + hash: + md5: 305141cff54af2f90e089d868fffce28 + sha256: 3fb1af1ac7525072c46e111bc4e96ddf971f792ab049ca3aa25dbebbaffb6f7d + category: dev + optional: true + - name: python-json-logger + version: 2.0.7 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.6" + url: https://conda.anaconda.org/conda-forge/noarch/python-json-logger-2.0.7-pyhd8ed1ab_0.conda + hash: + md5: a61bf9ec79426938ff785eb69dbb1960 + sha256: 4790787fe1f4e8da616edca4acf6a4f8ed4e7c6967aa31b920208fc8f95efcca + category: dev + optional: true + - name: python-multipart + version: 0.0.6 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.7" + url: https://conda.anaconda.org/conda-forge/noarch/python-multipart-0.0.6-pyhd8ed1ab_0.conda + hash: + md5: f4f642eeda814c1b65f46fbdf7e89096 + sha256: 2a9b8d02a6ec9862433cfc2741c4cbfe321e4ae3bab066f7ed84bc00effb73d7 + category: datasette + optional: true + - name: python-tzdata + version: "2023.3" + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.6" + url: https://conda.anaconda.org/conda-forge/noarch/python-tzdata-2023.3-pyhd8ed1ab_0.conda + hash: + md5: 2590495f608a63625e165915fb4e2e34 + sha256: 0108888507014fb24573c31e4deceb61c99e63d37776dddcadd7c89b2ecae0b6 + category: main + optional: false + - name: pytz + version: 2023.3.post1 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.6" + url: https://conda.anaconda.org/conda-forge/noarch/pytz-2023.3.post1-pyhd8ed1ab_0.conda + hash: + md5: c93346b446cd08c169d843ae5fc0da97 + sha256: 6b680e63d69aaf087cd43ca765a23838723ef59b0a328799e6363eb13f52c49e + category: main + optional: false + - name: pytzdata + version: "2020.1" + manager: conda + platform: linux-aarch64 + dependencies: + python: "" + url: https://conda.anaconda.org/conda-forge/noarch/pytzdata-2020.1-pyh9f0ad1d_0.tar.bz2 + hash: + md5: 7dd824593f3a861130ac17c6571546e2 + sha256: e7e628c1247b096e3af147b1c32d5ac328266fa95656e27b79f71bb410251356 + category: main + optional: false + - name: pywin32-on-windows + version: 0.1.0 + manager: conda + platform: linux-aarch64 + dependencies: + __unix: "" + python: ">=2.7" + url: https://conda.anaconda.org/conda-forge/noarch/pywin32-on-windows-0.1.0-pyh1179c8e_3.tar.bz2 + hash: + md5: 2807a0becd1d986fe1ef9b7f8135f215 + sha256: 6502696aaef571913b22a808b15c185bd8ea4aabb952685deb29e6a6765761cb + category: main + optional: false + - name: pyxlsb + version: 1.0.10 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.6" + url: https://conda.anaconda.org/conda-forge/noarch/pyxlsb-1.0.10-pyhd8ed1ab_0.tar.bz2 + hash: + md5: 0c14e44bc93a99cdc11398311c3c0dcf + sha256: 7e6e7064ad976ba6d38e7cf5a893c93a47025d4074b888e8db31386a914935fb + category: main + optional: false + - name: pyyaml + version: 6.0.1 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + python: ">=3.11,<3.12.0a0" + python_abi: 3.11.* + yaml: ">=0.2.5,<0.3.0a0" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/pyyaml-6.0.1-py311hcd402e7_1.conda + hash: + md5: 78775409be46d19acb2b453f1f2c4757 + sha256: bee3c9c09f9d099a4e5c49a274160c25f5a5b7d0e1faf16a3348b2704351e620 + category: main + optional: false + - name: pyzmq + version: 25.1.1 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + libsodium: ">=1.0.18,<1.0.19.0a0" + libstdcxx-ng: ">=12" + python: ">=3.11,<3.12.0a0" + python_abi: 3.11.* + zeromq: ">=4.3.5,<4.4.0a0" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/pyzmq-25.1.1-py311h0fdcd05_2.conda + hash: + md5: dbd5df144dd6fef38bf1c80d44236993 + sha256: 5342cb05620878a12234a6f904d4ca6fd905d762deefc269a502ab6035937662 + category: dev + optional: true + - name: regex + version: 2023.10.3 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + python: ">=3.11,<3.12.0a0" + python_abi: 3.11.* + url: https://conda.anaconda.org/conda-forge/linux-aarch64/regex-2023.10.3-py311hcd402e7_0.conda + hash: + md5: 6797cdf775c6ac7f56845f95ed64e262 + sha256: 04c9a41e711430a8940dfbb9a89244e14257a6d331e50efc91a14257bd89d576 + category: main + optional: false + - name: rfc3986 + version: 2.0.0 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.4" + url: https://conda.anaconda.org/conda-forge/noarch/rfc3986-2.0.0-pyhd8ed1ab_0.tar.bz2 + hash: + md5: d337886e38f965bf97aaec382ff6db00 + sha256: dd6bfb7c4248ba7612f2e6e4a066d6804ba96dfcaeddf43475a2c846ccfcc396 + category: main + optional: false + - name: rfc3986-validator + version: 0.1.1 + manager: conda + platform: linux-aarch64 + dependencies: + python: "" + url: https://conda.anaconda.org/conda-forge/noarch/rfc3986-validator-0.1.1-pyh9f0ad1d_0.tar.bz2 + hash: + md5: 912a71cc01012ee38e6b90ddd561e36f + sha256: 2a5b495a1de0f60f24d8a74578ebc23b24aa53279b1ad583755f223097c41c37 + category: dev + optional: true + - name: rpds-py + version: 0.10.6 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + python: ">=3.11,<3.12.0a0" + python_abi: 3.11.* + url: https://conda.anaconda.org/conda-forge/linux-aarch64/rpds-py-0.10.6-py311h32437ce_0.conda + hash: + md5: b3be057e627c4eddea773a368c0519a4 + sha256: f116a749cf050196bfefcbaaffb6e047d090673ecce040e85e997fedd1fd6b6a + category: main + optional: false + - name: rtree + version: 1.1.0 + manager: conda + platform: linux-aarch64 + dependencies: + libspatialindex: ">=1.9.3,<1.9.4.0a0" + python: ">=3.11,<3.12.0a0" + python_abi: 3.11.* + url: https://conda.anaconda.org/conda-forge/linux-aarch64/rtree-1.1.0-py311h04fbf56_0.conda + hash: + md5: 75bf51d665b8b6a7e3a3fabab9b36deb + sha256: e26e76f3aa245acd21635b08de6f33721c5d7935118744cf1e047a5c170778a0 + category: main + optional: false + - name: ruamel.yaml.clib + version: 0.2.7 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + python: ">=3.11,<3.12.0a0" + python_abi: 3.11.* + url: https://conda.anaconda.org/conda-forge/linux-aarch64/ruamel.yaml.clib-0.2.7-py311hcd402e7_2.conda + hash: + md5: 10fad26bcf4222541f156415f11cbdc3 + sha256: d82b7063b5752c360ea56b672778249cca95217b1d3167e3aeb76fcc75e51a00 + category: dev + optional: true + - name: ruff + version: 0.1.2 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + python: ">=3.11,<3.12.0a0" + python_abi: 3.11.* + url: https://conda.anaconda.org/conda-forge/linux-aarch64/ruff-0.1.2-py311he69e3a7_0.conda + hash: + md5: 834627e10593a21ae3231c59a510be59 + sha256: abe163b4858e9add7c77b1ae78ad7702b4a3efa5748eaeadf6b229dbc6563187 + category: dev + optional: true + - name: send2trash + version: 1.8.2 + manager: conda + platform: linux-aarch64 + dependencies: + __linux: "" + python: ">=3.6" + url: https://conda.anaconda.org/conda-forge/noarch/send2trash-1.8.2-pyh41d4057_0.conda + hash: + md5: ada5a17adcd10be4fc7e37e4166ba0e2 + sha256: e74d3faf51a6cc429898da0209d95b209270160f3edbf2f6d8b61a99428301cd + category: dev + optional: true + - name: setuptools + version: 68.2.2 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.7" + url: https://conda.anaconda.org/conda-forge/noarch/setuptools-68.2.2-pyhd8ed1ab_0.conda + hash: + md5: fc2166155db840c634a1291a5c35a709 + sha256: 851901b1f8f2049edb36a675f0c3f9a98e1495ef4eb214761b048c6f696a06f7 + category: main + optional: false + - name: shellingham + version: 1.5.4 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.7" + url: https://conda.anaconda.org/conda-forge/noarch/shellingham-1.5.4-pyhd8ed1ab_0.conda + hash: + md5: d08db09a552699ee9e7eec56b4eb3899 + sha256: 3c49a0a101c41b7cf6ac05a1872d7a1f91f1b6d02eecb4a36b605a19517862bb + category: main + optional: false + - name: simpleeval + version: 0.9.13 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=2.5,!=3.0.*,!=3.1.*,!=3.2.*" + url: https://conda.anaconda.org/conda-forge/noarch/simpleeval-0.9.13-pyhd8ed1ab_1.conda + hash: + md5: b3282d9b9e4a7c42d6c570492316dcaa + sha256: 5c9c537011327fc281c3c108020f1ad2a40284df0e1625a87825c0699d98f67f + category: main + optional: false + - name: six + version: 1.16.0 + manager: conda + platform: linux-aarch64 + dependencies: + python: "" + url: https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2 + hash: + md5: e5f25f8dbc060e9a8d912e432202afc2 + sha256: a85c38227b446f42c5b90d9b642f2c0567880c15d72492d8da074a59c8f91dd6 + category: main + optional: false + - name: smmap + version: 5.0.0 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.5" + url: https://conda.anaconda.org/conda-forge/noarch/smmap-5.0.0-pyhd8ed1ab_0.tar.bz2 + hash: + md5: 62f26a3d1387acee31322208f0cfa3e0 + sha256: 23011cb3e064525bdb8787c75126a2e78d2344a72cd6773922006d1da1f2af16 + category: dev + optional: true + - name: sniffio + version: 1.3.0 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.7" + url: https://conda.anaconda.org/conda-forge/noarch/sniffio-1.3.0-pyhd8ed1ab_0.tar.bz2 + hash: + md5: dd6cbc539e74cb1f430efbd4575b9303 + sha256: a3fd30754c20ddb28b777db38345ea00d958f46701f0decd6291a81c0f4eee78 + category: main + optional: false + - name: snowballstemmer + version: 2.2.0 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=2" + url: https://conda.anaconda.org/conda-forge/noarch/snowballstemmer-2.2.0-pyhd8ed1ab_0.tar.bz2 + hash: + md5: 4d22a9315e78c6827f806065957d566e + sha256: a0fd916633252d99efb6223b1050202841fa8d2d53dacca564b0ed77249d3228 + category: docs + optional: true + - name: soupsieve + version: "2.5" + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.8" + url: https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.5-pyhd8ed1ab_1.conda + hash: + md5: 3f144b2c34f8cb5a9abd9ed23a39c561 + sha256: 54ae221033db8fbcd4998ccb07f3c3828b4d77e73b0c72b18c1d6a507059059c + category: dev + optional: true + - name: sphinxcontrib-jsmath + version: 1.0.1 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.5" + url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-jsmath-1.0.1-pyhd8ed1ab_0.conda + hash: + md5: da1d979339e2714c30a8e806a33ec087 + sha256: d4337d83b8edba688547766fc80f1ac86d6ec86ceeeda93f376acc04079c5ce2 + category: docs + optional: true + - name: stringcase + version: 1.2.0 + manager: conda + platform: linux-aarch64 + dependencies: + python: "" + url: https://conda.anaconda.org/conda-forge/noarch/stringcase-1.2.0-py_0.tar.bz2 + hash: + md5: 26a9caf3173939377bac7152379daac0 + sha256: ebd515c57537799ee7829055fe9aa93d1c4695334b991fe1de9d7947f53f18f2 + category: main + optional: false + - name: tabulate + version: 0.9.0 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.7" + url: https://conda.anaconda.org/conda-forge/noarch/tabulate-0.9.0-pyhd8ed1ab_1.tar.bz2 + hash: + md5: 4759805cce2d914c38472f70bf4d8bcb + sha256: f6e4a0dd24ba060a4af69ca79d32361a6678e61d78c73eb5e357909b025b4620 + category: main + optional: false + - name: text-unidecode + version: "1.3" + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.4" + url: https://conda.anaconda.org/conda-forge/noarch/text-unidecode-1.3-pyhd8ed1ab_1.conda + hash: + md5: ba8aba332d8868897ce44ad74015a7fe + sha256: db64669a918dec8c744f80a85b9c82216b79298256c7c8bd19bdba54a02f8914 + category: main + optional: false + - name: threadpoolctl + version: 3.2.0 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.8" + url: https://conda.anaconda.org/conda-forge/noarch/threadpoolctl-3.2.0-pyha21a80b_0.conda + hash: + md5: 978d03388b62173b8e6f79162cf52b86 + sha256: 15e2f916fbfe3cc480160aa99eb6ba3edc183fceb234f10151d63870fdc4eccd + category: main + optional: false + - name: toml + version: 0.10.2 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=2.7" + url: https://conda.anaconda.org/conda-forge/noarch/toml-0.10.2-pyhd8ed1ab_0.tar.bz2 + hash: + md5: f832c45a477c78bebd107098db465095 + sha256: f0f3d697349d6580e4c2f35ba9ce05c65dc34f9f049e85e45da03800b46139c1 + category: dev + optional: true + - name: tomli + version: 2.0.1 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.7" + url: https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2 + hash: + md5: 5844808ffab9ebdb694585b50ba02a96 + sha256: 4cd48aba7cd026d17e86886af48d0d2ebc67ed36f87f6534f4b67138f5a5a58f + category: main + optional: false + - name: tomlkit + version: 0.12.1 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.7" + url: https://conda.anaconda.org/conda-forge/noarch/tomlkit-0.12.1-pyha770c72_0.conda + hash: + md5: 62f5b331c53d73e2f6c4c130b53518a0 + sha256: dc4abf58ca42f29e12b8c0f8aadedfca49cc1e97dab025d15cf000b1787df773 + category: dev + optional: true + - name: toolz + version: 0.12.0 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.5" + url: https://conda.anaconda.org/conda-forge/noarch/toolz-0.12.0-pyhd8ed1ab_0.tar.bz2 + hash: + md5: 92facfec94bc02d6ccf42e7173831a36 + sha256: 90229da7665175b0185183ab7b53f50af487c7f9b0f47cf09c184cbc139fd24b + category: main + optional: false + - name: toposort + version: "1.10" + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.8" + url: https://conda.anaconda.org/conda-forge/noarch/toposort-1.10-pyhd8ed1ab_0.conda + hash: + md5: aeef653e20028f19a3c2cc70e166b509 + sha256: 23589eeb84f55c9f245ffca1201a0dc9b16e838d39fe7857d4bd0e3026e5b75a + category: main + optional: false + - name: tornado + version: 6.3.3 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + python: ">=3.11,<3.12.0a0" + python_abi: 3.11.* + url: https://conda.anaconda.org/conda-forge/linux-aarch64/tornado-6.3.3-py311hc8f2f60_1.conda + hash: + md5: 0680cec7381128327048e18e55d5c301 + sha256: 5a635a1f5349e75402bfc8c609f907f58ce5e38092f6c1db9305e84632bdbaef + category: dev + optional: true + - name: traitlets + version: 5.12.0 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.8" + url: https://conda.anaconda.org/conda-forge/noarch/traitlets-5.12.0-pyhd8ed1ab_0.conda + hash: + md5: 3ecde21191a20e0e4ab5a4d69aaaa22c + sha256: cd0709a388063aa4024fa9c721b91cac982983435ab12bf564871c27ef983e13 + category: dev + optional: true + - name: types-python-dateutil + version: 2.8.19.14 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.6" + url: https://conda.anaconda.org/conda-forge/noarch/types-python-dateutil-2.8.19.14-pyhd8ed1ab_0.conda + hash: + md5: 4df15c51a543e806d439490b862be1c6 + sha256: 7b0129c72d371fa7a06ed5dd1d701844c20d03bb4641a38a88a982b347d087e2 + category: dev + optional: true + - name: types-pyyaml + version: 6.0.12.12 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.6" + url: https://conda.anaconda.org/conda-forge/noarch/types-pyyaml-6.0.12.12-pyhd8ed1ab_0.conda + hash: + md5: 0cb14c80f66937df894d60626dd1921f + sha256: 91873f91a58337d0573584bcdc540ff5545bc460eda0fdd8bd2f471c808c0e4c + category: dev + optional: true + - name: typing_extensions + version: 4.8.0 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.8" + url: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.8.0-pyha770c72_0.conda + hash: + md5: 5b1be40a26d10a06f6d4f1f9e19fa0c7 + sha256: 38d16b5c53ec1af845d37d22e7bb0e6c934c7f19499123507c5a470f6f8b7dde + category: main + optional: false + - name: typing_utils + version: 0.1.0 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.6.1" + url: https://conda.anaconda.org/conda-forge/noarch/typing_utils-0.1.0-pyhd8ed1ab_0.tar.bz2 + hash: + md5: eb67e3cace64c66233e2d35949e20f92 + sha256: 9e3758b620397f56fb709f796969de436d63b7117897159619b87938e1f78739 + category: dev + optional: true + - name: unicodecsv + version: 0.14.1 + manager: conda + platform: linux-aarch64 + dependencies: + python: "" + url: https://conda.anaconda.org/conda-forge/noarch/unicodecsv-0.14.1-py_1.tar.bz2 + hash: + md5: 3b2b0e9d7f73db2b5e45db113badb7f7 + sha256: 4bbf3579d57036725562ccc11c57bc487f1eb5c14c138a6881d10f34c2f04237 + category: main + optional: false + - name: uri-template + version: 1.3.0 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.7" + url: https://conda.anaconda.org/conda-forge/noarch/uri-template-1.3.0-pyhd8ed1ab_0.conda + hash: + md5: 0944dc65cb4a9b5b68522c3bb585d41c + sha256: b76904b53721dc88a46352324c79d2b077c2f74a9f7208ad2c4249892669ae94 + category: dev + optional: true + - name: uvloop + version: 0.19.0 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + libuv: ">=1.46.0,<2.0a0" + python: ">=3.11,<3.12.0a0" + python_abi: 3.11.* + url: https://conda.anaconda.org/conda-forge/linux-aarch64/uvloop-0.19.0-py311hf7b7e1d_0.conda + hash: + md5: e99e3f098f8ac794d118397ab4cd7fd7 + sha256: 3b34815d0ee3b3d0ba237dd48ac7e04baec5c2235f13e39f7e0b94e206a4f848 + category: main + optional: false + - name: validators + version: 0.22.0 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.8" + url: https://conda.anaconda.org/conda-forge/noarch/validators-0.22.0-pyhd8ed1ab_0.conda + hash: + md5: 56435633ef70e7b92c54151599cbf757 + sha256: f30699fd1a76cf3291e042167f8dc8dd28e00e08e49047a353304c7ad7bc279d + category: main + optional: false + - name: webcolors + version: "1.13" + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.5" + url: https://conda.anaconda.org/conda-forge/noarch/webcolors-1.13-pyhd8ed1ab_0.conda + hash: + md5: 166212fe82dad8735550030488a01d03 + sha256: 6e097d5fe92849ad3af2c2a313771ad2fbf1cadd4dc4afd552303b2bf3f85211 + category: dev + optional: true + - name: webencodings + version: 0.5.1 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=2.6" + url: https://conda.anaconda.org/conda-forge/noarch/webencodings-0.5.1-pyhd8ed1ab_2.conda + hash: + md5: daf5160ff9cde3a468556965329085b9 + sha256: 2adf9bd5482802837bc8814cbe28d7b2a4cbd2e2c52e381329eaa283b3ed1944 + category: dev + optional: true + - name: websocket-client + version: 1.6.4 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.8" + url: https://conda.anaconda.org/conda-forge/noarch/websocket-client-1.6.4-pyhd8ed1ab_0.conda + hash: + md5: bdb77b28cf16deac0eef431a068320e8 + sha256: df45b89862edcd7cd5180ec7b8c0c0ca9fb4d3f7d49ddafccdc76afcf50d8da6 + category: dev + optional: true + - name: websockets + version: "10.4" + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + python: ">=3.11,<3.12.0a0" + python_abi: 3.11.* + url: https://conda.anaconda.org/conda-forge/linux-aarch64/websockets-10.4-py311hdfa8b44_1.tar.bz2 + hash: + md5: fe66e17e765069aa47c5b4c04c92cd56 + sha256: e2b1bf7eb08625e745aa06001ffdf61deb00ad2e51b9240105ddea7fefd8e3da + category: main + optional: false + - name: wheel + version: 0.41.2 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.7" + url: https://conda.anaconda.org/conda-forge/noarch/wheel-0.41.2-pyhd8ed1ab_0.conda + hash: + md5: 1ccd092478b3e0ee10d7a891adbf8a4f + sha256: 21bcec5373b04d739ab65252b5532b04a08d229865ebb24b5b94902d6d0a77b0 + category: main + optional: false + - name: widgetsnbextension + version: 4.0.9 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.7" + url: https://conda.anaconda.org/conda-forge/noarch/widgetsnbextension-4.0.9-pyhd8ed1ab_0.conda + hash: + md5: 82617d07b2f5f5a96296d3c19684b37a + sha256: 35dd47b3c117cd759ac46da0b69064bebccd94862e795615ee65dbbe3e6cd86b + category: dev + optional: true + - name: xlrd + version: 2.0.1 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.6" + url: https://conda.anaconda.org/conda-forge/noarch/xlrd-2.0.1-pyhd8ed1ab_3.tar.bz2 + hash: + md5: 97dfcd5ff030d829b55f67e82f928093 + sha256: a97030fc6cde1a335c035392db47efdb4add7d1db76a11b4bfac6ec7fc42bfe5 + category: main + optional: false + - name: xlsxwriter + version: 3.1.7 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.6" + url: https://conda.anaconda.org/conda-forge/noarch/xlsxwriter-3.1.7-pyhd8ed1ab_0.conda + hash: + md5: 57ed13683ed80362014f6499e27f7b05 + sha256: ac8f0f12d1f808466137f06b9eb6ca897a2178950d1dcae4ccea1671231a7706 + category: main + optional: false + - name: xorg-libxext + version: 1.3.4 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + xorg-libx11: ">=1.7.2,<2.0a0" + xorg-xextproto: "" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libxext-1.3.4-h2a766a3_2.conda + hash: + md5: 0cea7d840c8eeaa4e349e0b4775c826d + sha256: 16eff29fb70b2f89b9120d112d2d5df1bf7bd4e95d1e5baafabc61dac4977fa8 + category: main + optional: false + - name: xorg-libxrender + version: 0.9.11 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + xorg-libx11: ">=1.8.6,<2.0a0" + xorg-renderproto: "" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libxrender-0.9.11-h7935292_0.conda + hash: + md5: 8c96b84f7fb97a3cd533a14dbdcd6626 + sha256: 15ab433c3b565d92bbd9dc83e469bb4ff1076f9002f7cd142b8a39e1b6cbcfab + category: main + optional: false + - name: xyzservices + version: 2023.10.0 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.8" + url: https://conda.anaconda.org/conda-forge/noarch/xyzservices-2023.10.0-pyhd8ed1ab_0.conda + hash: + md5: 9c6fe7db9c9133ade38b9a5011103243 + sha256: 21662312078b887bcc5818695e871d81ad87b60eec73f9f8fa35c8f5d4252608 + category: main + optional: false + - name: zipp + version: 3.17.0 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.8" + url: https://conda.anaconda.org/conda-forge/noarch/zipp-3.17.0-pyhd8ed1ab_0.conda + hash: + md5: 2e4d6bc0b14e10f895fc6791a7d9b26a + sha256: bced1423fdbf77bca0a735187d05d9b9812d2163f60ab426fc10f11f92ecbe26 + category: main + optional: false + - name: aiosignal + version: 1.3.1 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.7" + frozenlist: ">=1.1.0" + url: https://conda.anaconda.org/conda-forge/noarch/aiosignal-1.3.1-pyhd8ed1ab_0.tar.bz2 + hash: + md5: d1e1eb7e21a9e2c74279d87dafb68156 + sha256: 575c742e14c86575986dc867463582a970463da50b77264cdf54df74f5563783 + category: main + optional: false + - name: anyio + version: 4.0.0 + manager: conda + platform: linux-aarch64 + dependencies: + exceptiongroup: "" + python: ">=3.8" + sniffio: ">=1.1" + idna: ">=2.8" + url: https://conda.anaconda.org/conda-forge/noarch/anyio-4.0.0-pyhd8ed1ab_0.conda + hash: + md5: 3c4e99d3ae4ec033d4dd99fb5220e540 + sha256: 64125775b2e724db5c72e431dd180495d5d509d0a2d1228a122e6af9f1b60e33 + category: main + optional: false + - name: asgi-csrf + version: "0.9" + manager: conda + platform: linux-aarch64 + dependencies: + itsdangerous: "" + python-multipart: "" + python: ">=3.6" + url: https://conda.anaconda.org/conda-forge/noarch/asgi-csrf-0.9-pyhd8ed1ab_0.tar.bz2 + hash: + md5: eae21b40ce9beded0ce0e5c67180b1e7 + sha256: 9e8d86083dac575490045e570147ff44879aa8412dafa04cff3e539f77eb263f + category: datasette + optional: true + - name: asgiref + version: 3.7.2 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.7" + typing_extensions: ">=4" + url: https://conda.anaconda.org/conda-forge/noarch/asgiref-3.7.2-pyhd8ed1ab_0.conda + hash: + md5: 596932155bf88bb6837141550cb721b0 + sha256: 63f85717fd38912a69be5a03d35a648c404cb86843cd4a1302c380c0e7744e30 + category: datasette + optional: true + - name: asttokens + version: 2.4.0 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.5" + six: ">=1.12.0" + url: https://conda.anaconda.org/conda-forge/noarch/asttokens-2.4.0-pyhd8ed1ab_0.conda + hash: + md5: 056f04e51dd63337e8d7c425c18c86f1 + sha256: e7e91e3fa26abe502be690371893f205d87a82c225668ea6e9a1ba26870388ee + category: dev + optional: true + - name: async-lru + version: 2.0.4 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.8" + typing_extensions: ">=4.0.0" + url: https://conda.anaconda.org/conda-forge/noarch/async-lru-2.0.4-pyhd8ed1ab_0.conda + hash: + md5: 3d081de3a6ea9f894bbb585e8e3a4dcb + sha256: 7ed83731979fe5b046c157730e50af0e24454468bbba1ed8fc1a3107db5d7518 + category: dev + optional: true + - name: aws-c-auth + version: 0.7.4 + manager: conda + platform: linux-aarch64 + dependencies: + aws-c-cal: ">=0.6.2,<0.6.3.0a0" + aws-c-common: ">=0.9.3,<0.9.4.0a0" + aws-c-http: ">=0.7.13,<0.7.14.0a0" + aws-c-io: ">=0.13.33,<0.13.34.0a0" + aws-c-sdkutils: ">=0.1.12,<0.1.13.0a0" + libgcc-ng: ">=12" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-auth-0.7.4-ha133c5f_2.conda + hash: + md5: 0d99ed74f75918d4128146cb6f063ce2 + sha256: 04cf246b5f236e1ecf170e5aa027436a352ce829d4ff506bd13f7d8c16f2da23 + category: main + optional: false + - name: aws-c-mqtt + version: 0.9.7 + manager: conda + platform: linux-aarch64 + dependencies: + aws-c-common: ">=0.9.3,<0.9.4.0a0" + aws-c-http: ">=0.7.13,<0.7.14.0a0" + aws-c-io: ">=0.13.33,<0.13.34.0a0" + libgcc-ng: ">=12" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-mqtt-0.9.7-h0fef486_0.conda + hash: + md5: 6154b03ee600506a0369e835afb79d3b + sha256: 571fa1e2eff140ff0ba388493fc3879d92a359d3b2017bb191d84b19ef3a8be2 + category: main + optional: false + - name: babel + version: 2.13.1 + manager: conda + platform: linux-aarch64 + dependencies: + setuptools: "" + pytz: "" + python: ">=3.7" + url: https://conda.anaconda.org/conda-forge/noarch/babel-2.13.1-pyhd8ed1ab_0.conda + hash: + md5: 3ccff479c246692468f604df9c85ef26 + sha256: 1f955c700db16f65b16c9e9c1613436480d5497970b8030b7a9ebe1620cc2147 + category: dev + optional: true + - name: backports.functools_lru_cache + version: 1.6.5 + manager: conda + platform: linux-aarch64 + dependencies: + setuptools: "" + backports: "" + python: ">=3.6" + url: https://conda.anaconda.org/conda-forge/noarch/backports.functools_lru_cache-1.6.5-pyhd8ed1ab_0.conda + hash: + md5: 6b1b907661838a75d067a22f87996b2e + sha256: 7027bb689dd4ca4a08e3b25805de9d04239be6b31125993558f21f102a9d2700 + category: dev + optional: true + - name: beautifulsoup4 + version: 4.12.2 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.6" + soupsieve: ">=1.2" + url: https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.12.2-pyha770c72_0.conda + hash: + md5: a362ff7d976217f8fa78c0f1c4f59717 + sha256: 52d3e6bcd442537e22699cd227d8fdcfd54b708eeb8ee5b4c671a6a9b9cd74da + category: dev + optional: true + - name: bleach + version: 6.1.0 + manager: conda + platform: linux-aarch64 + dependencies: + setuptools: "" + packaging: "" + webencodings: "" + python: ">=3.6" + six: ">=1.9.0" + url: https://conda.anaconda.org/conda-forge/noarch/bleach-6.1.0-pyhd8ed1ab_0.conda + hash: + md5: 0ed9d7c0e9afa7c025807a9a8136ea3e + sha256: 845e77ef495376c5c3c328ccfd746ca0ef1978150cae8eae61a300fe7755fb08 + category: dev + optional: true + - name: cached-property + version: 1.5.2 + manager: conda + platform: linux-aarch64 + dependencies: + cached_property: ">=1.5.2,<1.5.3.0a0" + url: https://conda.anaconda.org/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2 + hash: + md5: 9b347a7ec10940d3f7941ff6c460b551 + sha256: 561e6660f26c35d137ee150187d89767c988413c978e1b712d53f27ddf70ea17 + category: main + optional: false + - name: cairo + version: 1.18.0 + manager: conda + platform: linux-aarch64 + dependencies: + fontconfig: ">=2.14.2,<3.0a0" + fonts-conda-ecosystem: "" + freetype: ">=2.12.1,<3.0a0" + icu: ">=73.2,<74.0a0" + libgcc-ng: ">=12" + libglib: ">=2.78.0,<3.0a0" + libpng: ">=1.6.39,<1.7.0a0" + libstdcxx-ng: ">=12" + libxcb: ">=1.15,<1.16.0a0" + libzlib: ">=1.2.13,<1.3.0a0" + pixman: ">=0.42.2,<1.0a0" + xorg-libice: ">=1.1.1,<2.0a0" + xorg-libsm: ">=1.2.4,<2.0a0" + xorg-libx11: ">=1.8.6,<2.0a0" + xorg-libxext: ">=1.3.4,<2.0a0" + xorg-libxrender: ">=0.9.11,<0.10.0a0" + zlib: "" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/cairo-1.18.0-ha13f110_0.conda + hash: + md5: 425111f8cc6945c5d1307357dd819b9b + sha256: 79b6323661b535d90aaec0eac0e91ccda88cc5917d9e597a03d7de183bc22f26 + category: main + optional: false + - name: cffi + version: 1.16.0 + manager: conda + platform: linux-aarch64 + dependencies: + libffi: ">=3.4,<4.0a0" + libgcc-ng: ">=12" + pycparser: "" + python: ">=3.11,<3.12.0a0" + python_abi: 3.11.* + url: https://conda.anaconda.org/conda-forge/linux-aarch64/cffi-1.16.0-py311h7963103_0.conda + hash: + md5: 724e9c95346e0545543124bd3237ed7a + sha256: e5ed24fd673ac9b9576e301b3e0b5d9625a8149e780a5d7b319bf93c33a2c828 + category: main + optional: false + - name: cfitsio + version: 4.3.0 + manager: conda + platform: linux-aarch64 + dependencies: + bzip2: ">=1.0.8,<2.0a0" + libcurl: ">=8.2.0,<9.0a0" + libgcc-ng: ">=12" + libgfortran-ng: "" + libgfortran5: ">=12.3.0" + libzlib: ">=1.2.13,<1.3.0a0" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/cfitsio-4.3.0-hf28c5f1_0.conda + hash: + md5: 313042e589d773cabfcf0d3b1daf38a1 + sha256: f7761e8737c70e4a349b9aa1c22b26e2fb217999a0df6ee7bdd7640934e9a2b6 + category: main + optional: false + - name: click-default-group + version: 1.2.4 + manager: conda + platform: linux-aarch64 + dependencies: + click: "" + python: ">=2.7" + url: https://conda.anaconda.org/conda-forge/noarch/click-default-group-1.2.4-pyhd8ed1ab_0.conda + hash: + md5: 7c2b6931f9b3548ed78478332095c3e9 + sha256: b36e35d735ddd29d7c592eb3de4b3979e13a9f76f1b4bc939f2cb4402758d6d0 + category: dev + optional: true + - name: click-default-group-wheel + version: 1.2.2 + manager: conda + platform: linux-aarch64 + dependencies: + click: "" + python: ">=3.6" + url: https://conda.anaconda.org/conda-forge/noarch/click-default-group-wheel-1.2.2-pyhd8ed1ab_0.tar.bz2 + hash: + md5: 2228f2640491b5e9c03b6f6346cba887 + sha256: 3a4d5c96f5375715aec9b8b7639c5a401a90dc1019d24288e4e9494148a640ee + category: datasette + optional: true + - name: click-plugins + version: 1.1.1 + manager: conda + platform: linux-aarch64 + dependencies: + python: "" + click: ">=3.0" + url: https://conda.anaconda.org/conda-forge/noarch/click-plugins-1.1.1-py_0.tar.bz2 + hash: + md5: 4fd2c6b53934bd7d96d1f3fdaf99b79f + sha256: ddef6e559dde6673ee504b0e29dd814d36e22b6b9b1f519fa856ee268905bf92 + category: main + optional: false + - name: cligj + version: 0.7.2 + manager: conda + platform: linux-aarch64 + dependencies: + python: <4.0 + click: ">=4.0" + url: https://conda.anaconda.org/conda-forge/noarch/cligj-0.7.2-pyhd8ed1ab_1.tar.bz2 + hash: + md5: a29b7c141d6b2de4bb67788a5f107734 + sha256: 97bd58f0cfcff56a0bcda101e26f7d936625599325beba3e3a1fa512dd7fc174 + category: main + optional: false + - name: clikit + version: 0.6.2 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.7" + pylev: ">=1.3,<2.0" + pastel: ">=0.2.0,<0.3.0" + url: https://conda.anaconda.org/conda-forge/noarch/clikit-0.6.2-pyhd8ed1ab_2.conda + hash: + md5: 02abb7b66b02e8b9f5a9b05454400087 + sha256: 2d582bc15d9116ec5467b565fb87d9034c8b56f60943e8eb69407f55f1ab5a78 + category: dev + optional: true + - name: coloredlogs + version: "14.0" + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.6" + humanfriendly: ">=7.1" + url: https://conda.anaconda.org/conda-forge/noarch/coloredlogs-14.0-pyhd8ed1ab_3.tar.bz2 + hash: + md5: 6b92f390b198cb631c95fd37097098c8 + sha256: 703557fb1bde384b34cd8b1aa88c485e8900f83420bb69066f958f45c2008ef9 + category: main + optional: false + - name: comm + version: 0.1.4 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.6" + traitlets: ">=5.3" + url: https://conda.anaconda.org/conda-forge/noarch/comm-0.1.4-pyhd8ed1ab_0.conda + hash: + md5: c8eaca39e2b6abae1fc96acc929ae939 + sha256: 11057745946a95ee7cc4c98900a60c7362266a4cb28bc97d96cd88e3056eb701 + category: dev + optional: true + - name: coverage + version: 7.3.2 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + python: ">=3.11,<3.12.0a0" + python_abi: 3.11.* + tomli: "" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/coverage-7.3.2-py311hc8f2f60_0.conda + hash: + md5: ecff52aefc06072df81d8cb4318fbbae + sha256: 60cb4238a5c1862552699b59cb247bf65258531fd47a8a4169dc94ce53e31031 + category: dev + optional: true + - name: fonttools + version: 4.43.1 + manager: conda + platform: linux-aarch64 + dependencies: + brotli: "" + libgcc-ng: ">=12" + munkres: "" + python: ">=3.11,<3.12.0a0" + python_abi: 3.11.* + url: https://conda.anaconda.org/conda-forge/linux-aarch64/fonttools-4.43.1-py311hcd402e7_0.conda + hash: + md5: b65471cfadc8bfec222f7b8abc243364 + sha256: 177e268830c6001eefd36b60388cd73a8a411326d11699cacae58b2b4e5e0dcb + category: main + optional: false + - name: gitdb + version: 4.0.11 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.7" + smmap: ">=3.0.1,<6" + url: https://conda.anaconda.org/conda-forge/noarch/gitdb-4.0.11-pyhd8ed1ab_0.conda + hash: + md5: 623b19f616f2ca0c261441067e18ae40 + sha256: 52ab2798be31b8f509eeec458712f447ced4f96ecb672c6c9a42778f47e07b1b + category: dev + optional: true + - name: graphql-core + version: 3.2.3 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.6" + typing_extensions: ">=4,<5" + url: https://conda.anaconda.org/conda-forge/noarch/graphql-core-3.2.3-pyhd8ed1ab_0.tar.bz2 + hash: + md5: 87cafe8c7638a5ac6fd8ec8fb01f1508 + sha256: 6f7da913ecad98951cadfe512af2c3979fbff752bf714da66760701e5463dd29 + category: main + optional: false + - name: h11 + version: 0.14.0 + manager: conda + platform: linux-aarch64 + dependencies: + typing_extensions: "" + python: ">=3" + url: https://conda.anaconda.org/conda-forge/noarch/h11-0.14.0-pyhd8ed1ab_0.tar.bz2 + hash: + md5: b21ed0883505ba1910994f1df031a428 + sha256: 817d2c77d53afe3f3d9cf7f6eb8745cdd8ea76c7adaa9d7ced75c455a2c2c085 + category: main + optional: false + - name: h2 + version: 4.1.0 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.6.1" + hpack: ">=4.0,<5" + hyperframe: ">=6.0,<7" + url: https://conda.anaconda.org/conda-forge/noarch/h2-4.1.0-pyhd8ed1ab_0.tar.bz2 + hash: + md5: b748fbf7060927a6e82df7cb5ee8f097 + sha256: bfc6a23849953647f4e255c782e74a0e18fe16f7e25c7bb0bc57b83bb6762c7a + category: main + optional: false + - name: hdf5 + version: 1.14.2 + manager: conda + platform: linux-aarch64 + dependencies: + libaec: ">=1.0.6,<2.0a0" + libcurl: ">=8.2.1,<9.0a0" + libgcc-ng: ">=12" + libgfortran-ng: "" + libgfortran5: ">=12.3.0" + libstdcxx-ng: ">=12" + libzlib: ">=1.2.13,<1.3.0a0" + openssl: ">=3.1.2,<4.0a0" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/hdf5-1.14.2-nompi_ha486f32_100.conda + hash: + md5: 4e74fa1de509388d95667b2d3ee5f1fb + sha256: 65c290a4980a4f5c2b48d096ebc2f94b1cc26d6bec808a0ff7b4e5c1a197e8a2 + category: main + optional: false + - name: html5lib + version: "1.1" + manager: conda + platform: linux-aarch64 + dependencies: + python: "" + webencodings: "" + six: ">=1.9" + url: https://conda.anaconda.org/conda-forge/noarch/html5lib-1.1-pyh9f0ad1d_0.tar.bz2 + hash: + md5: b2355343d6315c892543200231d7154a + sha256: 9ad06446fe9847e86cb20d220bf11614afcd2cbe9f58096f08d5d4018877bee4 + category: dev + optional: true + - name: importlib-metadata + version: 6.8.0 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.8" + zipp: ">=0.5" + url: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-6.8.0-pyha770c72_0.conda + hash: + md5: 4e9f59a060c3be52bc4ddc46ee9b6946 + sha256: 2797ed927d65324309b6c630190d917b9f2111e0c217b721f80429aeb57f9fcf + category: main + optional: false + - name: importlib_resources + version: 6.1.0 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.8" + zipp: ">=3.1.0" + url: https://conda.anaconda.org/conda-forge/noarch/importlib_resources-6.1.0-pyhd8ed1ab_0.conda + hash: + md5: 48b0d98e0c0ec810d3ccc2a0926c8c0e + sha256: adab6da633ec3b642f036ab5c1196c3e2db0e8db57fb0c7fc9a8e06e29fa9bdc + category: main + optional: false + - name: isodate + version: 0.6.1 + manager: conda + platform: linux-aarch64 + dependencies: + six: "" + python: ">=3.6" + url: https://conda.anaconda.org/conda-forge/noarch/isodate-0.6.1-pyhd8ed1ab_0.tar.bz2 + hash: + md5: 4a62c93c1b5c0b920508ae3fd285eaf5 + sha256: af8f801e093da52a50ca0ea0510dfaf6898fea37e66d08d335e370235dede9fc + category: main + optional: false + - name: janus + version: 1.0.0 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.7" + typing_extensions: ">=3.7.4.3" + url: https://conda.anaconda.org/conda-forge/noarch/janus-1.0.0-pyhd8ed1ab_0.tar.bz2 + hash: + md5: 304b5bce5a9b3590d825ffd85ac63471 + sha256: b702ef1e280249065d69aef7b0a7b3920903d2de68283bb5282cb57a4ed54d19 + category: datasette + optional: true + - name: jaraco.classes + version: 3.3.0 + manager: conda + platform: linux-aarch64 + dependencies: + more-itertools: "" + python: ">=3.7" + url: https://conda.anaconda.org/conda-forge/noarch/jaraco.classes-3.3.0-pyhd8ed1ab_0.conda + hash: + md5: e9f79248d30e942f7c358ff21a1790f5 + sha256: 14f5240c3834e1b784dd41a5a14392d9150dff62a74ae851f73e65d2e2bbd891 + category: dev + optional: true + - name: jedi + version: 0.19.1 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.6" + parso: ">=0.8.3,<0.9.0" + url: https://conda.anaconda.org/conda-forge/noarch/jedi-0.19.1-pyhd8ed1ab_0.conda + hash: + md5: 81a3be0b2023e1ea8555781f0ad904a2 + sha256: 362f0936ef37dfd1eaa860190e42a6ebf8faa094eaa3be6aa4d9ace95f40047a + category: dev + optional: true + - name: jinja2 + version: 3.1.2 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.7" + markupsafe: ">=2.0" + url: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.2-pyhd8ed1ab_1.tar.bz2 + hash: + md5: c8490ed5c70966d232fdd389d0dbed37 + sha256: b045faba7130ab263db6a8fdc96b1a3de5fcf85c4a607c5f11a49e76851500b5 + category: main + optional: false + - name: joblib + version: 1.3.2 + manager: conda + platform: linux-aarch64 + dependencies: + setuptools: "" + python: ">=3.7" + url: https://conda.anaconda.org/conda-forge/noarch/joblib-1.3.2-pyhd8ed1ab_0.conda + hash: + md5: 4da50d410f553db77e62ab62ffaa1abc + sha256: 31e05d47970d956206188480b038829d24ac11fe8216409d8584d93d40233878 + category: main + optional: false + - name: jsonlines + version: 4.0.0 + manager: conda + platform: linux-aarch64 + dependencies: + typing_extensions: "" + python: ">=3.6" + attrs: ">=19.2.0" + url: https://conda.anaconda.org/conda-forge/noarch/jsonlines-4.0.0-pyhd8ed1ab_0.conda + hash: + md5: df32eb56c2a48a5ca9465aef29dd46bc + sha256: ba99c97cff6534f5ad5e724a074a1204e4a0c73cc8cca21a0fc2d4e92f25b89c + category: main + optional: false + - name: jupyterlab_pygments + version: 0.2.2 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.7" + pygments: ">=2.4.1,<3" + url: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_pygments-0.2.2-pyhd8ed1ab_0.tar.bz2 + hash: + md5: 243f63592c8e449f40cd42eb5cf32f40 + sha256: 08453e09d5a6bbaeeca839553a5dfd7a377a97550efab96019c334a8042f54f5 + category: dev + optional: true + - name: latexcodec + version: 2.0.1 + manager: conda + platform: linux-aarch64 + dependencies: + python: "" + six: "" + url: https://conda.anaconda.org/conda-forge/noarch/latexcodec-2.0.1-pyh9f0ad1d_0.tar.bz2 + hash: + md5: 8d67904973263afd2985ba56aa2d6bb4 + sha256: 5210d31c8f2402dd1ad1b3edcf7a53292b9da5de20cd14d9c243dbf9278b1c4f + category: docs + optional: true + - name: libcblas + version: 3.9.0 + manager: conda + platform: linux-aarch64 + dependencies: + libblas: 3.9.0 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libcblas-3.9.0-19_linuxaarch64_openblas.conda + hash: + md5: 8d52c7095a072dde1990717b5f0ab267 + sha256: 3d1c981065918ac27fd2c9c2d85fb15a38bfc6ee965267ac759780b7112275e8 + category: main + optional: false + - name: libgoogle-cloud + version: 2.12.0 + manager: conda + platform: linux-aarch64 + dependencies: + libabseil: ">=20230802.0,<20230803.0a0" + libcrc32c: ">=1.1.2,<1.2.0a0" + libcurl: ">=8.2.1,<9.0a0" + libgcc-ng: ">=12" + libgrpc: ">=1.57.0,<1.58.0a0" + libprotobuf: ">=4.23.4,<4.23.5.0a0" + libstdcxx-ng: ">=12" + openssl: ">=3.1.2,<4.0a0" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libgoogle-cloud-2.12.0-hcf22bcc_2.conda + hash: + md5: cf0335a53d2ac4b46a584ef5d732d23b + sha256: 6c24564202d32bb012711a6d715cd9bb071284adbaf144a31b0937b26f7a62c6 + category: main + optional: false + - name: liblapack + version: 3.9.0 + manager: conda + platform: linux-aarch64 + dependencies: + libblas: 3.9.0 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/liblapack-3.9.0-19_linuxaarch64_openblas.conda + hash: + md5: c2a01118ea07574a10c19f7e9997f73b + sha256: 7420acb36a54b12b5ec58620053c0d83cc02b949989bd87a31a6fb051dc6012e + category: main + optional: false + - name: linear-tsv + version: 1.1.0 + manager: conda + platform: linux-aarch64 + dependencies: + python: "" + six: "" + url: https://conda.anaconda.org/conda-forge/noarch/linear-tsv-1.1.0-py_1.tar.bz2 + hash: + md5: 16491914064fdfe1b9a8fba94ac90e9a + sha256: 7d653455e3ab3bdbd064e5a8995cce6e657fb1b2fdd26f0bc62ed57687b16043 + category: main + optional: false + - name: markdown-it-py + version: 3.0.0 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.8" + mdurl: ">=0.1,<1" + url: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_0.conda + hash: + md5: 93a8e71256479c62074356ef6ebf501b + sha256: c041b0eaf7a6af3344d5dd452815cdc148d6284fec25a4fa3f4263b3a021e962 + category: main + optional: false + - name: matplotlib-inline + version: 0.1.6 + manager: conda + platform: linux-aarch64 + dependencies: + traitlets: "" + python: ">=3.6" + url: https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.1.6-pyhd8ed1ab_0.tar.bz2 + hash: + md5: b21613793fcc81d944c76c9f2864a7de + sha256: aa091b88aec55bfa2d9207028d8cdc689b9efb090ae27b99557e93c675be2f3c + category: dev + optional: true + - name: nodeenv + version: 1.8.0 + manager: conda + platform: linux-aarch64 + dependencies: + setuptools: "" + python: 2.7|>=3.7 + url: https://conda.anaconda.org/conda-forge/noarch/nodeenv-1.8.0-pyhd8ed1ab_0.conda + hash: + md5: 2a75b296096adabbabadd5e9782e5fcc + sha256: 1320306234552717149f36f825ddc7e27ea295f24829e9db4cc6ceaff0b032bd + category: dev + optional: true + - name: openpyxl + version: 3.1.2 + manager: conda + platform: linux-aarch64 + dependencies: + et_xmlfile: "" + libgcc-ng: ">=12" + python: ">=3.11,<3.12.0a0" + python_abi: 3.11.* + url: https://conda.anaconda.org/conda-forge/linux-aarch64/openpyxl-3.1.2-py311hcd402e7_1.conda + hash: + md5: 3f8eafcb03852bd1adc1ded29fb97e1c + sha256: ca0f770ac94e20c8acb6c2f53976128d83ff98a3b2ba5d85f9c4e8f55bf49b3e + category: main + optional: false + - name: overrides + version: 7.4.0 + manager: conda + platform: linux-aarch64 + dependencies: + typing_utils: "" + python: ">=3.6" + url: https://conda.anaconda.org/conda-forge/noarch/overrides-7.4.0-pyhd8ed1ab_0.conda + hash: + md5: 4625b7b01d7f4ac9c96300a5515acfaa + sha256: 29db8c3b521d261bf71897ba3cfbebc81cd61e581b30fcb984b5a713f02fe1ff + category: dev + optional: true + - name: partd + version: 1.4.1 + manager: conda + platform: linux-aarch64 + dependencies: + toolz: "" + locket: "" + python: ">=3.7" + url: https://conda.anaconda.org/conda-forge/noarch/partd-1.4.1-pyhd8ed1ab_0.conda + hash: + md5: acf4b7c0bcd5fa3b0e05801c4d2accd6 + sha256: b248238da2bb9dfe98e680af911dc7013af86095e3ec8baf08905555632d34c7 + category: main + optional: false + - name: pexpect + version: 4.8.0 + manager: conda + platform: linux-aarch64 + dependencies: + python: "" + ptyprocess: ">=0.5" + url: https://conda.anaconda.org/conda-forge/noarch/pexpect-4.8.0-pyh1a96a4e_2.tar.bz2 + hash: + md5: 330448ce4403cc74990ac07c555942a1 + sha256: 07706c0417ead94f359ca7278f65452d3c396448777aba1da6a11fc351bdca9a + category: dev + optional: true + - name: pillow + version: 10.1.0 + manager: conda + platform: linux-aarch64 + dependencies: + freetype: ">=2.12.1,<3.0a0" + lcms2: ">=2.15,<3.0a0" + libgcc-ng: ">=12" + libjpeg-turbo: ">=3.0.0,<4.0a0" + libtiff: ">=4.6.0,<4.7.0a0" + libwebp-base: ">=1.3.2,<2.0a0" + libxcb: ">=1.15,<1.16.0a0" + libzlib: ">=1.2.13,<1.3.0a0" + openjpeg: ">=2.5.0,<3.0a0" + python: ">=3.11,<3.12.0a0" + python_abi: 3.11.* + tk: ">=8.6.13,<8.7.0a0" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/pillow-10.1.0-py311hbcc2232_0.conda + hash: + md5: 851945c566ce3d464165fdb80a923dc7 + sha256: a939b80cc5868680f513bd22e1ff8ffd99fb287ce5f7a5f770d1596ee9546c65 + category: main + optional: false + - name: pint + version: "0.22" + manager: conda + platform: linux-aarch64 + dependencies: + typing_extensions: "" + python: ">=3.9" + url: https://conda.anaconda.org/conda-forge/noarch/pint-0.22-pyhd8ed1ab_1.conda + hash: + md5: a719c3f3959c529e558e9ed9f98c3f30 + sha256: 49795ff6e5e634523aafe34e869c425e2cdc4a1fcb11aa294d7983035bc38622 + category: datasette + optional: true + - name: pip + version: 23.3.1 + manager: conda + platform: linux-aarch64 + dependencies: + setuptools: "" + wheel: "" + python: ">=3.7" + url: https://conda.anaconda.org/conda-forge/noarch/pip-23.3.1-pyhd8ed1ab_0.conda + hash: + md5: 2400c0b86889f43aa52067161e1fb108 + sha256: 435829a03e1c6009f013f29bb83de8b876c388820bf8cf69a7baeec25f6a3563 + category: main + optional: false + - name: postgresql + version: "16.0" + manager: conda + platform: linux-aarch64 + dependencies: + krb5: ">=1.21.2,<1.22.0a0" + libgcc-ng: ">=12" + libpq: "16.0" + libxml2: ">=2.11.5,<2.12.0a0" + libzlib: ">=1.2.13,<1.3.0a0" + openssl: ">=3.1.3,<4.0a0" + readline: ">=8.2,<9.0a0" + tzcode: "" + tzdata: "" + zlib: "" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/postgresql-16.0-he3d1b8e_1.conda + hash: + md5: 5677a8344ef6f9e6a405841c1330041c + sha256: 044b32c5111fbfbab14a0d7f6624ba799528e39c3b79d198b7c65420d22228ca + category: main + optional: false + - name: proj + version: 9.3.0 + manager: conda + platform: linux-aarch64 + dependencies: + libcurl: ">=8.4.0,<9.0a0" + libgcc-ng: ">=12" + libsqlite: ">=3.43.2,<4.0a0" + libstdcxx-ng: ">=12" + libtiff: ">=4.6.0,<4.7.0a0" + sqlite: "" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/proj-9.3.0-h7b42f86_2.conda + hash: + md5: ffcc4c6dcdffd1316c1224a96dd6ea76 + sha256: a0705dc06e169b4e5e26a927cb960c51dcbc0dc8533d42434b4135b2010f2d7d + category: main + optional: false + - name: protobuf + version: 4.23.4 + manager: conda + platform: linux-aarch64 + dependencies: + libabseil: ">=20230802.1,<20230803.0a0" + libgcc-ng: ">=12" + libprotobuf: ">=4.23.4,<4.23.5.0a0" + libstdcxx-ng: ">=12" + python: ">=3.11,<3.12.0a0" + python_abi: 3.11.* + setuptools: "" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/protobuf-4.23.4-py311h2dbc127_3.conda + hash: + md5: 9c6c9e89b549a2ff39636726f133f069 + sha256: 11cd7ab61567af6fda29191349831e6d950dff266580265946d7d72ea0da1b08 + category: main + optional: false + - name: pyasn1-modules + version: 0.3.0 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.6" + pyasn1: ">=0.4.6,<0.6.0" + url: https://conda.anaconda.org/conda-forge/noarch/pyasn1-modules-0.3.0-pyhd8ed1ab_0.conda + hash: + md5: 26db749166cdca55e5ef1ffdc7767d0e + sha256: 7867ba43b6ef1e66054ca6b70f59bbef4cdb0cc761f0be3b66d79d15bd43143b + category: main + optional: false + - name: pyproject_hooks + version: 1.0.0 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.7" + tomli: ">=1.1.0" + url: https://conda.anaconda.org/conda-forge/noarch/pyproject_hooks-1.0.0-pyhd8ed1ab_0.conda + hash: + md5: 21de50391d584eb7f4441b9de1ad773f + sha256: 016340837fcfef57b351febcbe855eedf0c1f0ecfc910ed48c7fbd20535f9847 + category: dev + optional: true + - name: pytest + version: 7.4.3 + manager: conda + platform: linux-aarch64 + dependencies: + packaging: "" + colorama: "" + iniconfig: "" + python: ">=3.7" + exceptiongroup: ">=1.0.0rc8" + tomli: ">=1.0.0" + pluggy: ">=0.12,<2.0" + url: https://conda.anaconda.org/conda-forge/noarch/pytest-7.4.3-pyhd8ed1ab_0.conda + hash: + md5: 5bdca0aca30b0ee62bb84854e027eae0 + sha256: 14e948e620ec87d9e62a8d9c21d40084b4805a939cfee322be7d457379dc96a0 + category: dev + optional: true + - name: python-dateutil + version: 2.8.2 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.6" + six: ">=1.5" + url: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.8.2-pyhd8ed1ab_0.tar.bz2 + hash: + md5: dd999d1cc9f79e67dbb855c8924c7984 + sha256: 54d7785c7678166aa45adeaccfc1d2b8c3c799ca2dc05d4a82bb39b1968bd7da + category: main + optional: false + - name: python-slugify + version: 8.0.1 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.7" + text-unidecode: ">=1.3" + url: https://conda.anaconda.org/conda-forge/noarch/python-slugify-8.0.1-pyhd8ed1ab_2.conda + hash: + md5: 519897ff446e0dc056e12402e6785cd5 + sha256: 68ac5a6a467b9c0a98e326ec4cc8e3c01d4514f1200c1b44102923424e8ed1eb + category: main + optional: false + - name: pyu2f + version: 0.1.5 + manager: conda + platform: linux-aarch64 + dependencies: + six: "" + python: ">=2.7" + url: https://conda.anaconda.org/conda-forge/noarch/pyu2f-0.1.5-pyhd8ed1ab_0.tar.bz2 + hash: + md5: caabbeaa83928d0c3e3949261daa18eb + sha256: 667a5a30b65a60b15f38fa4cb09efd6d2762b5a0a9563acd9555eaa5e0b953a2 + category: main + optional: false + - name: qtpy + version: 2.4.1 + manager: conda + platform: linux-aarch64 + dependencies: + packaging: "" + python: ">=3.7" + url: https://conda.anaconda.org/conda-forge/noarch/qtpy-2.4.1-pyhd8ed1ab_0.conda + hash: + md5: 7f391bd70d2abfb70f304ba5aa4e1261 + sha256: 925bf48e747af6ceff1b073c10b12fc94ef79c88a34729059d253e43466a33f1 + category: dev + optional: true + - name: referencing + version: 0.30.2 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.8" + attrs: ">=22.2.0" + rpds-py: ">=0.7.0" + url: https://conda.anaconda.org/conda-forge/noarch/referencing-0.30.2-pyhd8ed1ab_0.conda + hash: + md5: a33161b983172ba6ef69d5fc850650cd + sha256: a6768fabc12f1eed87fec68c5c65439e908655cded1e458d70a164abbce13287 + category: main + optional: false + - name: restructuredtext_lint + version: 1.4.0 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.6" + docutils: ">=0.11,<1.0" + url: https://conda.anaconda.org/conda-forge/noarch/restructuredtext_lint-1.4.0-pyhd8ed1ab_0.tar.bz2 + hash: + md5: 1f3c21740038aba9c174df58986bdccb + sha256: 636ceefea3675cdd96e49e9bc344190dd72d722642c47597f7bfd30e7ceb2a33 + category: docs + optional: true + - name: rfc3339-validator + version: 0.1.4 + manager: conda + platform: linux-aarch64 + dependencies: + six: "" + python: ">=3.5" + url: https://conda.anaconda.org/conda-forge/noarch/rfc3339-validator-0.1.4-pyhd8ed1ab_0.tar.bz2 + hash: + md5: fed45fc5ea0813240707998abe49f520 + sha256: 7c7052b51de0b5c558f890bb11f8b5edbb9934a653d76be086b1182b9f54185d + category: dev + optional: true + - name: rsa + version: "4.9" + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.6" + pyasn1: ">=0.1.3" + url: https://conda.anaconda.org/conda-forge/noarch/rsa-4.9-pyhd8ed1ab_0.tar.bz2 + hash: + md5: 03bf410858b2cefc267316408a77c436 + sha256: 23214cdc15a41d14136754857fd9cd46ca3c55a7e751da3b3a48c673f0ee2a57 + category: main + optional: false + - name: ruamel.yaml + version: 0.18.2 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + python: ">=3.11,<3.12.0a0" + python_abi: 3.11.* + ruamel.yaml.clib: ">=0.1.2" + setuptools: "" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/ruamel.yaml-0.18.2-py311hcd402e7_0.conda + hash: + md5: 4fdf7f1fa596779f82e39a9b73a820e2 + sha256: 6d6bdb346aaf0df81dcb546ebca11f9ced252ea4baa3313b4204067d16839c5b + category: dev + optional: true + - name: sqlalchemy + version: 1.4.49 + manager: conda + platform: linux-aarch64 + dependencies: + greenlet: "!=0.4.17" + libgcc-ng: ">=12" + python: ">=3.11,<3.12.0a0" + python_abi: 3.11.* + url: https://conda.anaconda.org/conda-forge/linux-aarch64/sqlalchemy-1.4.49-py311hc8f2f60_1.conda + hash: + md5: c0a2954adf7d1e9f347b7a96e4c9e75b + sha256: 858f5d7ce116764acaf79a486f126cc8f448c8bbda104e6c0196f1414ea2405a + category: main + optional: false + - name: terminado + version: 0.17.1 + manager: conda + platform: linux-aarch64 + dependencies: + __linux: "" + ptyprocess: "" + python: ">=3.7" + tornado: ">=6.1.0" + url: https://conda.anaconda.org/conda-forge/noarch/terminado-0.17.1-pyh41d4057_0.conda + hash: + md5: 3788984d535770cad699efaeb6cb3037 + sha256: bce252eb53330a8ba9617caa7a1dc75ce602c8808cf547a8f4d48285901f47c3 + category: dev + optional: true + - name: tinycss2 + version: 1.2.1 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.5" + webencodings: ">=0.4" + url: https://conda.anaconda.org/conda-forge/noarch/tinycss2-1.2.1-pyhd8ed1ab_0.tar.bz2 + hash: + md5: 7234c9eefff659501cd2fe0d2ede4d48 + sha256: f0db1a2298a5e10e30f4b947566c7229442834702f549dded40a73ecdea7502d + category: dev + optional: true + - name: tqdm + version: 4.66.1 + manager: conda + platform: linux-aarch64 + dependencies: + colorama: "" + python: ">=3.7" + url: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.66.1-pyhd8ed1ab_0.conda + hash: + md5: 03c97908b976498dcae97eb4e4f3149c + sha256: b61c9222af05e8c5ff27e4a4d2eb81870c21ffd7478346be3ef644b7a3759cc4 + category: main + optional: false + - name: typing-extensions + version: 4.8.0 + manager: conda + platform: linux-aarch64 + dependencies: + typing_extensions: 4.8.0 + url: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.8.0-hd8ed1ab_0.conda + hash: + md5: 384462e63262a527bda564fa2d9126c0 + sha256: d6e1dddd0c372218ef15912383d351ac8c73465cbf16238017f0269813cafe2d + category: main + optional: false + - name: universal_pathlib + version: 0.1.4 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.8,<3.12" + fsspec: ">=2022.1.0" + url: https://conda.anaconda.org/conda-forge/noarch/universal_pathlib-0.1.4-pyhd8ed1ab_0.conda + hash: + md5: 08ca974df312b574c4d6511426539a87 + sha256: ee5a8f423b7429e2ebc0051638875a69e4dc4558c07a26d3063866cebed5fb66 + category: main + optional: false + - name: urllib3 + version: 1.26.18 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.7" + brotli-python: ">=1.0.9" + pysocks: ">=1.5.6,<2.0,!=1.5.7" + url: https://conda.anaconda.org/conda-forge/noarch/urllib3-1.26.18-pyhd8ed1ab_0.conda + hash: + md5: bf61cfd2a7f212efba378167a07d4a6a + sha256: 1cc0bab65a6ad0f5a8bd7657760a4fb4e670d30377f9dab88b792977cb3687e7 + category: main + optional: false + - name: watchdog + version: 3.0.0 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.11,<3.12.0a0" + python_abi: 3.11.* + pyyaml: ">=3.10" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/watchdog-3.0.0-py311hfecb2dc_1.conda + hash: + md5: f2d9508455d8a6eac63a4112a58d227e + sha256: bf7991f3365e4130169d1a269678523040b6f21eaec2f79c2878d3de77a73fd7 + category: main + optional: false + - name: xerces-c + version: 3.2.4 + manager: conda + platform: linux-aarch64 + dependencies: + icu: ">=73.2,<74.0a0" + libcurl: ">=8.2.1,<9.0a0" + libgcc-ng: ">=12" + libnsl: ">=2.0.0,<2.1.0a0" + libstdcxx-ng: ">=12" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/xerces-c-3.2.4-hf13c1fb_3.conda + hash: + md5: f5c5f428e6b90e7c2e39467623e76dd1 + sha256: 7f4d4c12b6a5c74282f1abbe19f651bb1134ca643b46b91d6073b74d7c56a786 + category: main + optional: false + - name: yarl + version: 1.9.2 + manager: conda + platform: linux-aarch64 + dependencies: + idna: ">=2.0" + libgcc-ng: ">=12" + multidict: ">=4.0" + python: ">=3.11,<3.12.0a0" + python_abi: 3.11.* + url: https://conda.anaconda.org/conda-forge/linux-aarch64/yarl-1.9.2-py311hcd402e7_1.conda + hash: + md5: e7d053796f9a21c46acaa54f6c624963 + sha256: 7b96d91b22c9586a99afe0fe94d1c4ab9de03efe3d48c3d3cf76593f1360b004 + category: main + optional: false + - name: addfips + version: 0.4.0 + manager: conda + platform: linux-aarch64 + dependencies: + importlib_resources: ">=5.0" + python: ">=3.7.5" + url: https://conda.anaconda.org/conda-forge/noarch/addfips-0.4.0-pyhd8ed1ab_1.conda + hash: + md5: cb434d01bfd3ba57c54a423f3773ffda + sha256: c6f7bf91f19ad4fdd183efde6346a0dfd3df7929f413c9535e19c51610b4f671 + category: main + optional: false + - name: aniso8601 + version: 9.0.1 + manager: conda + platform: linux-aarch64 + dependencies: + python-dateutil: "" + python: ">=2.7" + url: https://conda.anaconda.org/conda-forge/noarch/aniso8601-9.0.1-pyhd8ed1ab_0.tar.bz2 + hash: + md5: 36fba1a639f2d24723c5480345b78553 + sha256: 201c040b6ee0045805a777f75f37a8648eb8dfd4725d62a4fcddc24d7d6c2a9f + category: main + optional: false + - name: argon2-cffi-bindings + version: 21.2.0 + manager: conda + platform: linux-aarch64 + dependencies: + cffi: ">=1.0.1" + libgcc-ng: ">=12" + python: ">=3.11,<3.12.0a0" + python_abi: 3.11.* + url: https://conda.anaconda.org/conda-forge/linux-aarch64/argon2-cffi-bindings-21.2.0-py311hcd402e7_4.conda + hash: + md5: 836640e8a482dc22decea414117bb2ad + sha256: 7e521a52cda3f1055fa4155036ec4d8eb671b3163ecd421249663f5b4b445fc1 + category: dev + optional: true + - name: arrow + version: 1.3.0 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.8" + python-dateutil: ">=2.7.0" + types-python-dateutil: ">=2.8.10" + url: https://conda.anaconda.org/conda-forge/noarch/arrow-1.3.0-pyhd8ed1ab_0.conda + hash: + md5: b77d8c2313158e6e461ca0efb1c2c508 + sha256: ff49825c7f9e29e09afa6284300810e7a8640d621740efb47c4541f4dc4969db + category: dev + optional: true + - name: async-timeout + version: 4.0.3 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.7" + typing-extensions: ">=3.6.5" + url: https://conda.anaconda.org/conda-forge/noarch/async-timeout-4.0.3-pyhd8ed1ab_0.conda + hash: + md5: 3ce482ec3066e6d809dbbb1d1679f215 + sha256: bd8b698e7f037a9c6107216646f1191f4f7a7fc6da6c34d1a6d4c211bcca8979 + category: main + optional: false + - name: aws-c-s3 + version: 0.3.17 + manager: conda + platform: linux-aarch64 + dependencies: + aws-c-auth: ">=0.7.4,<0.7.5.0a0" + aws-c-cal: ">=0.6.2,<0.6.3.0a0" + aws-c-common: ">=0.9.3,<0.9.4.0a0" + aws-c-http: ">=0.7.13,<0.7.14.0a0" + aws-c-io: ">=0.13.33,<0.13.34.0a0" + aws-checksums: ">=0.1.17,<0.1.18.0a0" + libgcc-ng: ">=12" + openssl: ">=3.1.3,<4.0a0" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-s3-0.3.17-he0cbd1c_4.conda + hash: + md5: 2bf5d6d73027fe1a5d4e0431c9e9e687 + sha256: 0bf1a8ea0acb286a9b23efa4197eae09d313bb1d6e121d020a09061dd8499e2c + category: main + optional: false + - name: botocore + version: 1.31.70 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.7" + python-dateutil: ">=2.1,<3.0.0" + jmespath: ">=0.7.1,<2.0.0" + urllib3: ">=1.25.4,<1.27" + url: https://conda.anaconda.org/conda-forge/noarch/botocore-1.31.70-pyhd8ed1ab_0.conda + hash: + md5: 0e04ee2da772c7a8df863d9084fb4445 + sha256: 045cc3ee816a0a5e48ba0090858b9d8be0a0d3f54be0976b1b0c7491903cd58b + category: main + optional: false + - name: branca + version: 0.6.0 + manager: conda + platform: linux-aarch64 + dependencies: + setuptools: "" + jinja2: "" + python: ">=3.7" + url: https://conda.anaconda.org/conda-forge/noarch/branca-0.6.0-pyhd8ed1ab_0.tar.bz2 + hash: + md5: f4cc65697763ef8c2f7555f1ec355a6b + sha256: 46175d4dd94e458b2c5303a4cd816db6c45ff302b1b1852c1fd37411ce171f05 + category: main + optional: false + - name: cmarkgfm + version: 0.8.0 + manager: conda + platform: linux-aarch64 + dependencies: + cffi: ">=1.0.0" + libgcc-ng: ">=12" + python: ">=3.11,<3.12.0a0" + python_abi: 3.11.* + url: https://conda.anaconda.org/conda-forge/linux-aarch64/cmarkgfm-0.8.0-py311hcd402e7_3.conda + hash: + md5: 87c3a5b6f7b7c501d911615f75c5d802 + sha256: f465ef23c9378adc901a3eb99271009bf502edde4df94ab9bae15b645652afee + category: dev + optional: true + - name: croniter + version: 2.0.1 + manager: conda + platform: linux-aarch64 + dependencies: + python-dateutil: "" + python: ">=3.7" + pytz: ">2021.1" + url: https://conda.anaconda.org/conda-forge/noarch/croniter-2.0.1-pyhd8ed1ab_0.conda + hash: + md5: f67f52c1f555785b86c3bd8e5de4c66f + sha256: 0a39004b6e4ddff1a323432c0790d61a8885f35af9e60cc7e76ad8f6d43e3f34 + category: main + optional: false + - name: cryptography + version: 41.0.5 + manager: conda + platform: linux-aarch64 + dependencies: + cffi: ">=1.12" + libgcc-ng: ">=12" + openssl: ">=3.1.4,<4.0a0" + python: ">=3.11,<3.12.0a0" + python_abi: 3.11.* + url: https://conda.anaconda.org/conda-forge/linux-aarch64/cryptography-41.0.5-py311hd42d77a_0.conda + hash: + md5: 8d5eadcedc80ae61dacb084605686d0c + sha256: f41b9dccc1f791e9dd3e887a9061abbf8a088856d1d8e43cd31b6036c67d6df5 + category: main + optional: false + - name: fqdn + version: 1.5.1 + manager: conda + platform: linux-aarch64 + dependencies: + cached-property: ">=1.3.0" + python: ">=2.7,<4" + url: https://conda.anaconda.org/conda-forge/noarch/fqdn-1.5.1-pyhd8ed1ab_0.tar.bz2 + hash: + md5: 642d35437078749ef23a5dca2c9bb1f3 + sha256: 6cfd1f9bcd2358a69fb571f4b3af049b630d52647d906822dbedac03e84e4f63 + category: dev + optional: true + - name: geotiff + version: 1.7.1 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + libjpeg-turbo: ">=3.0.0,<4.0a0" + libstdcxx-ng: ">=12" + libtiff: ">=4.6.0,<4.7.0a0" + libzlib: ">=1.2.13,<1.3.0a0" + proj: ">=9.3.0,<9.3.1.0a0" + zlib: "" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/geotiff-1.7.1-he43841b_14.conda + hash: + md5: 88145472883e82c07f2e3fd37c2445f8 + sha256: 8535dd84cd351cf85fdfc5e25578d594d5cc9a6d91a27ad8814b07cef8f312b4 + category: main + optional: false + - name: gitpython + version: 3.1.40 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.7" + typing_extensions: ">=3.7.4.3" + gitdb: ">=4.0.1,<5" + url: https://conda.anaconda.org/conda-forge/noarch/gitpython-3.1.40-pyhd8ed1ab_0.conda + hash: + md5: 6bf74c3b7c13079a91d4bd3da51cefcf + sha256: 6b85809ffbfe5c1887b674bf0492cc4dd1ac8a25f4d9fa20ef404be92186259b + category: dev + optional: true + - name: google-crc32c + version: 1.1.2 + manager: conda + platform: linux-aarch64 + dependencies: + cffi: ">=1.0.0" + libcrc32c: ">=1.1.2,<1.2.0a0" + libgcc-ng: ">=12" + python: ">=3.11,<3.12.0a0" + python_abi: 3.11.* + url: https://conda.anaconda.org/conda-forge/linux-aarch64/google-crc32c-1.1.2-py311h52a290d_5.conda + hash: + md5: ac99fbbc25e0373ded7221d0e479875c + sha256: 92df3ee7420f856d7f7e2677c3f10109d70b76b200d49d9af5b292e45e975bdd + category: main + optional: false + - name: googleapis-common-protos + version: 1.61.0 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.7" + protobuf: ">=3.19.5,<5.0.0dev0,!=3.20.0,!=3.20.1,!=4.21.1,!=4.21.2,!=4.21.3,!=4.21.4,!=4.21.5" + url: https://conda.anaconda.org/conda-forge/noarch/googleapis-common-protos-1.61.0-pyhd8ed1ab_0.conda + hash: + md5: f315d7fdc1905dcc2e18a1c7bed22fa9 + sha256: aa25665205e8d4895ff1bf042d2fc358a20c207271238069e13b87535f92184e + category: main + optional: false + - name: gql + version: 3.4.1 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.6" + graphql-core: ">=3.2,<3.3" + yarl: ">=1.6,<2.0" + backoff: ">=1.11.1,<3.0" + url: https://conda.anaconda.org/conda-forge/noarch/gql-3.4.1-pyhd8ed1ab_0.conda + hash: + md5: 6ad94588f33ddb97175c7f22feef7d2c + sha256: 6025dcd91083fe1d3f38172d18d041b0c1da4d9d86606a18312efd429c99b93e + category: main + optional: false + - name: graphql-relay + version: 3.2.0 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.6" + graphql-core: ">=3.2,<3.3" + typing_extensions: ">=4.1,<5" + url: https://conda.anaconda.org/conda-forge/noarch/graphql-relay-3.2.0-pyhd8ed1ab_0.tar.bz2 + hash: + md5: 1b2b83e3528f8fb83007161eff51073d + sha256: 04f2a3383e74421441e46eaed4c32940682c1de82036fd1b6f18663d6d5447c4 + category: main + optional: false + - name: grpcio-health-checking + version: 1.57.0 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.5" + protobuf: ">=3.12.1" + grpcio: ">=1.57.0" + url: https://conda.anaconda.org/conda-forge/noarch/grpcio-health-checking-1.57.0-pyhd8ed1ab_0.conda + hash: + md5: c22fdc1bd41d6c71e0eb4da829d7b228 + sha256: bb2a9de74596b4c9919fd1abf96f28e8196681898c7b34fd7b8e74065016da3c + category: main + optional: false + - name: httpcore + version: 0.18.0 + manager: conda + platform: linux-aarch64 + dependencies: + certifi: "" + python: ">=3.8" + sniffio: 1.* + h2: ">=3,<5" + anyio: ">=3.0,<5.0" + h11: ">=0.13,<0.15" + url: https://conda.anaconda.org/conda-forge/noarch/httpcore-0.18.0-pyhd8ed1ab_0.conda + hash: + md5: eb69a63c23bbda9aac55bc0c0c6144f9 + sha256: 5d6e1bad439206926dc8592d59dc87024bfe860cb67e7137128119ab373b072c + category: main + optional: false + - name: importlib_metadata + version: 6.8.0 + manager: conda + platform: linux-aarch64 + dependencies: + importlib-metadata: ">=6.8.0,<6.8.1.0a0" + url: https://conda.anaconda.org/conda-forge/noarch/importlib_metadata-6.8.0-hd8ed1ab_0.conda + hash: + md5: b279b07ce18058034e5b3606ba103a8b + sha256: b96e01dc42d547d6d9ceb1c5b52a5232cc04e40153534350f702c3e0418a6b3f + category: main + optional: false + - name: jsonschema-specifications + version: 2023.7.1 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.8" + importlib_resources: ">=1.4.0" + referencing: ">=0.25.0" + url: https://conda.anaconda.org/conda-forge/noarch/jsonschema-specifications-2023.7.1-pyhd8ed1ab_0.conda + hash: + md5: 7c27ea1bdbe520bb830dcadd59f55cbf + sha256: 7b0061e106674f27cc718f79a095e90a5667a3635ec6626dd23b3be0fd2bfbdc + category: main + optional: false + - name: jupyter_server_terminals + version: 0.4.4 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.8" + terminado: ">=0.8.3" + url: https://conda.anaconda.org/conda-forge/noarch/jupyter_server_terminals-0.4.4-pyhd8ed1ab_1.conda + hash: + md5: 7c0965e1d4a0ee1529e8eaa03a78a5b3 + sha256: 9f4c5fef9beef9fceed628db7a10b888f3308b37ae257ad3d50046088317ebf1 + category: dev + optional: true + - name: kealib + version: 1.5.2 + manager: conda + platform: linux-aarch64 + dependencies: + hdf5: ">=1.14.2,<1.14.3.0a0" + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/kealib-1.5.2-h105ac0c_1.conda + hash: + md5: 6141c7968b7a9eba75d66257ea93384d + sha256: 5a171375f4ad74c6a9cf31151b121d0a030762e2928792cc4cd2c695c3335f15 + category: main + optional: false + - name: libnetcdf + version: 4.9.2 + manager: conda + platform: linux-aarch64 + dependencies: + blosc: ">=1.21.4,<2.0a0" + bzip2: ">=1.0.8,<2.0a0" + hdf4: ">=4.2.15,<4.2.16.0a0" + hdf5: ">=1.14.2,<1.14.3.0a0" + libaec: ">=1.0.6,<2.0a0" + libcurl: ">=8.2.1,<9.0a0" + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + libxml2: ">=2.11.5,<2.12.0a0" + libzip: ">=1.10.1,<2.0a0" + libzlib: ">=1.2.13,<1.3.0a0" + openssl: ">=3.1.2,<4.0a0" + zlib: "" + zstd: ">=1.5.5,<1.6.0a0" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libnetcdf-4.9.2-nompi_hc188a27_112.conda + hash: + md5: 27c6474e17d1e101c64a576b449ffd57 + sha256: 729766e4515a89a87b2ce59de143161244655fbb2614ca7d4bb5959ca1d6ad90 + category: main + optional: false + - name: libspatialite + version: 5.1.0 + manager: conda + platform: linux-aarch64 + dependencies: + freexl: ">=2.0.0,<3.0a0" + geos: ">=3.12.0,<3.12.1.0a0" + libgcc-ng: ">=12" + librttopo: ">=1.1.0,<1.2.0a0" + libsqlite: ">=3.43.0,<4.0a0" + libstdcxx-ng: ">=12" + libxml2: ">=2.11.5,<2.12.0a0" + libzlib: ">=1.2.13,<1.3.0a0" + proj: ">=9.3.0,<9.3.1.0a0" + sqlite: "" + zlib: "" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libspatialite-5.1.0-h761fefd_0.conda + hash: + md5: 22e4f4893031cf659a7ebb53510e8f4a + sha256: e0f1f3d4e008d8568d47abf8dbe523b774fe6d2f9cd6b0de9537634b7ec802e0 + category: main + optional: false + - name: mako + version: 1.2.4 + manager: conda + platform: linux-aarch64 + dependencies: + importlib-metadata: "" + python: ">=3.6" + markupsafe: ">=0.9.2" + url: https://conda.anaconda.org/conda-forge/noarch/mako-1.2.4-pyhd8ed1ab_0.tar.bz2 + hash: + md5: 0d072f0edc017b6318dbab701e053f94 + sha256: 559ed0d4c600d9827c1e9e0f2f3a50724bf2281b28a04e08f60de63f0da309a6 + category: main + optional: false + - name: numpy + version: 1.24.4 + manager: conda + platform: linux-aarch64 + dependencies: + libblas: ">=3.9.0,<4.0a0" + libcblas: ">=3.9.0,<4.0a0" + libgcc-ng: ">=12" + liblapack: ">=3.9.0,<4.0a0" + libstdcxx-ng: ">=12" + python: ">=3.11,<3.12.0a0" + python_abi: 3.11.* + url: https://conda.anaconda.org/conda-forge/linux-aarch64/numpy-1.24.4-py311h69ead2a_0.conda + hash: + md5: 42d1f6d550ab0a49d6ee6d81354ecd72 + sha256: 09dafa90d19786873a2987215c1965149d206fd72bf9bdc289cda08d3cda73c9 + category: main + optional: false + - name: pbr + version: 5.11.1 + manager: conda + platform: linux-aarch64 + dependencies: + pip: "" + python: ">=3.6" + url: https://conda.anaconda.org/conda-forge/noarch/pbr-5.11.1-pyhd8ed1ab_0.conda + hash: + md5: 5bde4ebca51438054099b9527c904ecb + sha256: bb6b283c27a8293cfd6d439959da45e848e401130fe3b44e31cde8243fdebdee + category: docs + optional: true + - name: pendulum + version: 2.1.2 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + python: ">=3.11,<3.12.0a0" + python-dateutil: ">=2.6,<3.0" + python_abi: 3.11.* + pytzdata: ">=2020.1" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/pendulum-2.1.2-py311hcd402e7_6.conda + hash: + md5: f87b168c5d6622917d850f5c4ca080bc + sha256: 70697fce4eb725762c0d79843d2d41083f2fee53c1541f81cce455d6e032ab66 + category: main + optional: false + - name: platformdirs + version: 3.11.0 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.7" + typing-extensions: ">=4.6.3" + url: https://conda.anaconda.org/conda-forge/noarch/platformdirs-3.11.0-pyhd8ed1ab_0.conda + hash: + md5: 8f567c0a74aa44cf732f15773b4083b0 + sha256: b3d809ff5a18ee8514bba8bc05a23b4cdf1758090a18a2cf742af38aed405144 + category: dev + optional: true + - name: poppler + version: 23.10.0 + manager: conda + platform: linux-aarch64 + dependencies: + cairo: ">=1.18.0,<2.0a0" + fontconfig: ">=2.14.2,<3.0a0" + fonts-conda-ecosystem: "" + freetype: ">=2.12.1,<3.0a0" + lcms2: ">=2.15,<3.0a0" + libcurl: ">=8.4.0,<9.0a0" + libgcc-ng: ">=12" + libglib: ">=2.78.0,<3.0a0" + libiconv: ">=1.17,<2.0a0" + libjpeg-turbo: ">=3.0.0,<4.0a0" + libpng: ">=1.6.39,<1.7.0a0" + libstdcxx-ng: ">=12" + libtiff: ">=4.6.0,<4.7.0a0" + libzlib: ">=1.2.13,<1.3.0a0" + nspr: ">=4.35,<5.0a0" + nss: ">=3.94,<4.0a0" + openjpeg: ">=2.5.0,<3.0a0" + poppler-data: "" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/poppler-23.10.0-h3cd87ed_0.conda + hash: + md5: e53bb95767d04a6c6c3d2ac47839e5e4 + sha256: 267266fd05299e7f7b7c895a576bb082507d3723f44137a14142d670999043f0 + category: main + optional: false + - name: pybtex + version: 0.24.0 + manager: conda + platform: linux-aarch64 + dependencies: + setuptools: "" + six: "" + python: ">=3.6" + latexcodec: ">=1.0.4" + pyyaml: ">=3.01" + url: https://conda.anaconda.org/conda-forge/noarch/pybtex-0.24.0-pyhd8ed1ab_2.tar.bz2 + hash: + md5: 2099b86a7399c44c0c61cdb6de6915ba + sha256: 258fbf46050bbd51fbaa504116e56e8f3064156f0e08cad4e2fec97f5f29e6dc + category: docs + optional: true + - name: pydantic + version: 1.10.13 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + python: ">=3.11,<3.12.0a0" + python_abi: 3.11.* + typing-extensions: ">=4.2.0" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/pydantic-1.10.13-py311hcd402e7_1.conda + hash: + md5: 76d80a055d917aca45d5ec2563780530 + sha256: 3f3c5e3871b68387aa592152bbf6bb5de64dbe08bd630396c837f87a0ee7291f + category: main + optional: false + - name: pyproj + version: 3.6.1 + manager: conda + platform: linux-aarch64 + dependencies: + certifi: "" + libgcc-ng: ">=12" + proj: ">=9.3.0,<9.3.1.0a0" + python: ">=3.11,<3.12.0a0" + python_abi: 3.11.* + url: https://conda.anaconda.org/conda-forge/linux-aarch64/pyproj-3.6.1-py311he9ea5f7_3.conda + hash: + md5: 94f7bab4d47f9dc44b7bb3f8a9a60f80 + sha256: 941b3fb8901570801f0b4799eec2d193d30d529de471e435fd9beddf022ad6e3 + category: main + optional: false + - name: pytest-console-scripts + version: 1.4.1 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.7" + importlib-metadata: ">=3.6" + pytest: ">=4.0.0" + url: https://conda.anaconda.org/conda-forge/noarch/pytest-console-scripts-1.4.1-pyhd8ed1ab_0.conda + hash: + md5: ee8808504c73665bed76e20ede28bd56 + sha256: d6603e211019f2581c9f3c0922133b190a46e4ceaad3e3e0e6149f31bc593fa1 + category: dev + optional: true + - name: pytest-cov + version: 4.1.0 + manager: conda + platform: linux-aarch64 + dependencies: + toml: "" + python: ">=3.7" + pytest: ">=4.6" + coverage: ">=5.2.1" + url: https://conda.anaconda.org/conda-forge/noarch/pytest-cov-4.1.0-pyhd8ed1ab_0.conda + hash: + md5: 06eb685a3a0b146347a58dda979485da + sha256: f07d3b44cabbed7843de654c4a6990a08475ce3b708bb735c7da9842614586f2 + category: dev + optional: true + - name: pytest-mock + version: 3.12.0 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.8" + pytest: ">=5.0" + url: https://conda.anaconda.org/conda-forge/noarch/pytest-mock-3.12.0-pyhd8ed1ab_0.conda + hash: + md5: ac9fedc9a0c397f2318e82525491dd83 + sha256: 58d3bd93a0cf9b51ac105de1e01b1fcd1fcfa5993023b67658344e329b02d6e0 + category: dev + optional: true + - name: python-build + version: 1.0.3 + manager: conda + platform: linux-aarch64 + dependencies: + colorama: "" + pyproject_hooks: "" + python: ">=3.7" + tomli: ">=1.1.0" + packaging: ">=19.0" + importlib-metadata: ">=4.6" + url: https://conda.anaconda.org/conda-forge/noarch/python-build-1.0.3-pyhd8ed1ab_0.conda + hash: + md5: d9ccabf228cb98419ca3d5694b25e1a2 + sha256: f32748beb76abf5173ee956f30a82c9e9b4a3d9924b0960f1e19e267ea4f01de + category: dev + optional: true + - name: requests + version: 2.31.0 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.7" + idna: ">=2.5,<4" + certifi: ">=2017.4.17" + charset-normalizer: ">=2,<4" + urllib3: ">=1.21.1,<3" + url: https://conda.anaconda.org/conda-forge/noarch/requests-2.31.0-pyhd8ed1ab_0.conda + hash: + md5: a30144e4156cdbb236f99ebb49828f8b + sha256: 9f629d6fd3c8ac5f2a198639fe7af87c4db2ac9235279164bfe0fcb49d8c4bad + category: main + optional: false + - name: rich + version: 13.6.0 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.7.0" + typing_extensions: ">=4.0.0,<5.0.0" + pygments: ">=2.13.0,<3.0.0" + markdown-it-py: ">=2.2.0" + url: https://conda.anaconda.org/conda-forge/noarch/rich-13.6.0-pyhd8ed1ab_0.conda + hash: + md5: 3ca4829f40710f581ca1d76bc907e99f + sha256: a2f8838a75ab8c2c1da0a813c7569d4f6efba0d2b5dc3a7659e2cb6d96bd8e19 + category: main + optional: false + - name: stack_data + version: 0.6.2 + manager: conda + platform: linux-aarch64 + dependencies: + asttokens: "" + executing: "" + pure_eval: "" + python: ">=3.5" + url: https://conda.anaconda.org/conda-forge/noarch/stack_data-0.6.2-pyhd8ed1ab_0.conda + hash: + md5: e7df0fdd404616638df5ece6e69ba7af + sha256: a58433e75229bec39f3be50c02efbe9b7083e53a1f31d8ee247564f370191eec + category: dev + optional: true + - name: starlette + version: 0.31.1 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.8" + typing_extensions: ">=3.10.0" + anyio: <5,>=3.4.0 + url: https://conda.anaconda.org/conda-forge/noarch/starlette-0.31.1-pyhd8ed1ab_0.conda + hash: + md5: 409034f0925a73b5f27ae71849e60034 + sha256: 2788957c93ad843a8c3870918161a65b2a028c03c17b3c348624cc8bd34f7e82 + category: main + optional: false + - name: ukkonen + version: 1.0.1 + manager: conda + platform: linux-aarch64 + dependencies: + cffi: "" + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + python: ">=3.11,<3.12.0a0" + python_abi: 3.11.* + url: https://conda.anaconda.org/conda-forge/linux-aarch64/ukkonen-1.0.1-py311h098ece5_4.conda + hash: + md5: a2b05b820bc0ac6572e242424e2a15d0 + sha256: 2d843a9510db35ab5ab0e39ba2d868a95c88e54dfc0e085bb09e0e0badd81500 + category: dev + optional: true + - name: uvicorn + version: 0.23.2 + manager: conda + platform: linux-aarch64 + dependencies: + click: ">=7.0" + h11: ">=0.8" + python: ">=3.11,<3.12.0a0" + python_abi: 3.11.* + url: https://conda.anaconda.org/conda-forge/linux-aarch64/uvicorn-0.23.2-py311hfecb2dc_1.conda + hash: + md5: 3473f0e79d6ac47abe6fd1e6e1606e36 + sha256: f1078a88283b8d70aa840945923c70da3a1f564af71c3c1e79c38bccc7045596 + category: main + optional: false + - name: watchfiles + version: 0.20.0 + manager: conda + platform: linux-aarch64 + dependencies: + anyio: ">=3.0.0" + libgcc-ng: ">=12" + python: ">=3.11,<3.12.0a0" + python_abi: 3.11.* + url: https://conda.anaconda.org/conda-forge/linux-aarch64/watchfiles-0.20.0-py311h2bdde80_2.conda + hash: + md5: 7ebff0609f4e3d2284d53b5db06e75df + sha256: cb5693715f0428fc1e2bb89bb97de4945f976513af18362d92dd8b81b9dc9104 + category: main + optional: false + - name: wcwidth + version: 0.2.8 + manager: conda + platform: linux-aarch64 + dependencies: + backports.functools_lru_cache: "" + python: ">=3.6" + url: https://conda.anaconda.org/conda-forge/noarch/wcwidth-0.2.8-pyhd8ed1ab_0.conda + hash: + md5: 367386d2575a0e62412448eda1012efd + sha256: e3b6d2041b4d175a1437dccc71b4ef2e53111dfcc64b219fef4bed379e6ef236 + category: dev + optional: true + - name: aiohttp + version: 3.8.6 + manager: conda + platform: linux-aarch64 + dependencies: + aiosignal: ">=1.1.2" + async-timeout: <5.0,>=4.0.0a3 + attrs: ">=17.3.0" + charset-normalizer: ">=2.0,<4.0" + frozenlist: ">=1.1.1" + libgcc-ng: ">=12" + multidict: ">=4.5,<7.0" + python: ">=3.11,<3.12.0a0" + python_abi: 3.11.* + yarl: ">=1.0,<2.0" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aiohttp-3.8.6-py311hcd402e7_1.conda + hash: + md5: d4cc10ba03b8a0c47d624ad0e17cff21 + sha256: 687ab297e7c6b0e807788037f07a0b6c6b8c958c27e1b31b409a476f33f48aaf + category: main + optional: false + - name: alembic + version: 1.12.0 + manager: conda + platform: linux-aarch64 + dependencies: + importlib-metadata: "" + importlib_resources: "" + mako: "" + python: ">=3.7" + sqlalchemy: ">=1.3.0" + typing-extensions: ">=4" + url: https://conda.anaconda.org/conda-forge/noarch/alembic-1.12.0-pyhd8ed1ab_0.conda + hash: + md5: ba29026b587195548ef82444518061f7 + sha256: b61d21a4fa07fd7a463c189fc2ecb5ddc13565c691a5b8a7ee85a1c6994e5ef0 + category: main + optional: false + - name: arelle-release + version: 2.16.3 + manager: conda + platform: linux-aarch64 + dependencies: + certifi: "" + regex: "" + python: ">=3.7" + numpy: 1.* + isodate: 0.* + lxml: 4.* + openpyxl: 3.* + pyparsing: 3.* + url: https://conda.anaconda.org/conda-forge/noarch/arelle-release-2.16.3-pyhd8ed1ab_0.conda + hash: + md5: cc1662776e4169d33d24aeb34af074e8 + sha256: 9f9daff44b2099904135c0f3478246e55123b15bba0252e24fec0366d88c293a + category: main + optional: false + - name: argon2-cffi + version: 23.1.0 + manager: conda + platform: linux-aarch64 + dependencies: + typing-extensions: "" + argon2-cffi-bindings: "" + python: ">=3.7" + url: https://conda.anaconda.org/conda-forge/noarch/argon2-cffi-23.1.0-pyhd8ed1ab_0.conda + hash: + md5: 3afef1f55a1366b4d3b6a0d92e2235e4 + sha256: 130766446f5507bd44df957b6b5c898a8bd98f024bb426ed6cb9ff1ad67fc677 + category: dev + optional: true + - name: aws-crt-cpp + version: 0.24.2 + manager: conda + platform: linux-aarch64 + dependencies: + aws-c-auth: ">=0.7.4,<0.7.5.0a0" + aws-c-cal: ">=0.6.2,<0.6.3.0a0" + aws-c-common: ">=0.9.3,<0.9.4.0a0" + aws-c-event-stream: ">=0.3.2,<0.3.3.0a0" + aws-c-http: ">=0.7.13,<0.7.14.0a0" + aws-c-io: ">=0.13.33,<0.13.34.0a0" + aws-c-mqtt: ">=0.9.7,<0.9.8.0a0" + aws-c-s3: ">=0.3.17,<0.3.18.0a0" + aws-c-sdkutils: ">=0.1.12,<0.1.13.0a0" + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-crt-cpp-0.24.2-h9c4eaab_2.conda + hash: + md5: 7bfc4dee6f185553fd0e2cde5129493a + sha256: 813445a258dc083bc75bca5975282755a17d639493bad10ef27f91d044eff2b1 + category: main + optional: false + - name: black + version: 23.10.0 + manager: conda + platform: linux-aarch64 + dependencies: + click: ">=8.0.0" + mypy_extensions: ">=0.4.3" + packaging: ">=22.0" + pathspec: ">=0.9" + platformdirs: ">=2" + python: ">=3.11,<3.12.0a0" + python_abi: 3.11.* + url: https://conda.anaconda.org/conda-forge/linux-aarch64/black-23.10.0-py311hec3470c_0.conda + hash: + md5: 33131939b96189db82a34c0b6c5eadc3 + sha256: 198c7e4cb3a0ce28c440a23e3d2b114306dc87b203a765efaf833a9669641f92 + category: dev + optional: true + - name: bottleneck + version: 1.3.7 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + numpy: ">=1.23.5,<2.0a0" + python: ">=3.11,<3.12.0a0" + python_abi: 3.11.* + url: https://conda.anaconda.org/conda-forge/linux-aarch64/bottleneck-1.3.7-py311hf13da56_1.conda + hash: + md5: 90916cbe15c0a63dbe7d9375ef2ae072 + sha256: af98c8ad9ce8defe2f7c929c0d23c0d1cf91373964ac5af31420a54b984f8bbd + category: main + optional: false + - name: cachecontrol + version: 0.13.1 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.7" + msgpack-python: ">=0.5.2" + requests: ">=2.16.0" + url: https://conda.anaconda.org/conda-forge/noarch/cachecontrol-0.13.1-pyhd8ed1ab_0.conda + hash: + md5: 174bd699bb5aa9e2622eb4b288276ff8 + sha256: aae7ab3a54989f9bf9273e4a17c911ba339a8b9354250bc11fb8eff2e3f4be60 + category: dev + optional: true + - name: contourpy + version: 1.1.1 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + numpy: ">=1.16" + python: ">=3.11,<3.12.0a0" + python_abi: 3.11.* + url: https://conda.anaconda.org/conda-forge/linux-aarch64/contourpy-1.1.1-py311h098ece5_1.conda + hash: + md5: f9b946e5a296d0377690a0d2c8673588 + sha256: a7288987cf9da1afb4990fa6284420814892f5fb0dfafb62c829f46d10d2168e + category: main + optional: false + - name: dask-core + version: 2023.10.0 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.9" + packaging: ">=20.0" + pyyaml: ">=5.3.1" + cloudpickle: ">=1.5.0" + click: ">=8.0" + toolz: ">=0.10.0" + partd: ">=1.2.0" + importlib_metadata: ">=4.13.0" + fsspec: ">=2021.09.0" + url: https://conda.anaconda.org/conda-forge/noarch/dask-core-2023.10.0-pyhd8ed1ab_0.conda + hash: + md5: 6b415b2cd4a106b8eb1632be126ede81 + sha256: b190a8d740bbd47b032566177cb0b7eed9caef2129b35a9b93ad733053b8baa3 + category: main + optional: false + - name: dnspython + version: 2.4.2 + manager: conda + platform: linux-aarch64 + dependencies: + sniffio: "" + python: ">=3.8.0,<4.0.0" + cryptography: ">=2.6,<42.0" + httpcore: ">=0.17.3" + idna: ">=2.1,<4.0" + url: https://conda.anaconda.org/conda-forge/noarch/dnspython-2.4.2-pyhd8ed1ab_1.conda + hash: + md5: b9657eab1e69207feba4f21fa1207b03 + sha256: eb7de9ddc2c3a5aef78d6c74d2652ada0e1d47e11304953e65b3c7dfd8290f18 + category: main + optional: false + - name: ensureconda + version: 1.4.3 + manager: conda + platform: linux-aarch64 + dependencies: + appdirs: "" + filelock: "" + python: ">=3.7" + requests: ">=2" + click: ">=5.1" + url: https://conda.anaconda.org/conda-forge/noarch/ensureconda-1.4.3-pyhd8ed1ab_0.tar.bz2 + hash: + md5: c99ae3abf501990769047b4b40a98f17 + sha256: b71784b6c24d2320b2f796d074e75e7dd1be7b7fc0f719c5cf3a582270b368d6 + category: dev + optional: true + - name: folium + version: 0.14.0 + manager: conda + platform: linux-aarch64 + dependencies: + numpy: "" + requests: "" + python: ">=3.6" + jinja2: ">=2.9" + branca: ">=0.6.0" + url: https://conda.anaconda.org/conda-forge/noarch/folium-0.14.0-pyhd8ed1ab_0.conda + hash: + md5: 48c8bb19df0d0268f1a9d30ffc56c5b0 + sha256: 60c51dacc4edb33ba02a7224ddec9d938200f89588eb34b0ccdffc96155795fe + category: main + optional: false + - name: google-resumable-media + version: 2.6.0 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.7" + google-crc32c: ">=1.0,<2.0.0dev" + url: https://conda.anaconda.org/conda-forge/noarch/google-resumable-media-2.6.0-pyhd8ed1ab_0.conda + hash: + md5: 74fd9d08866e60fc412abc8dd7c5486c + sha256: 9e61d4ac7027b6447e83ab4b91fccc4baef6d1ba9490e20d06754254f7616bf5 + category: main + optional: false + - name: graphene + version: "3.3" + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.6" + aniso8601: ">=8,<10" + graphql-core: ">=3.1,<3.3" + graphql-relay: ">=3.1,<3.3" + url: https://conda.anaconda.org/conda-forge/noarch/graphene-3.3-pyhd8ed1ab_0.conda + hash: + md5: ed2ae94977dfd96566e6eaf373216728 + sha256: 8b4e2c1d326849c0094f9e96a9833addb10f638be67bb0590836720879697ec6 + category: main + optional: false + - name: grpcio-status + version: 1.57.0 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.6" + googleapis-common-protos: ">=1.5.5" + protobuf: ">=4.21.6" + grpcio: ">=1.57.0" + url: https://conda.anaconda.org/conda-forge/noarch/grpcio-status-1.57.0-pyhd8ed1ab_0.conda + hash: + md5: 288d9a5edd2619ffd7592ef273b663e3 + sha256: 64e6f8c1afbd9c51cc2bf7bae791ce730ee6506861291567df831fd4412af17a + category: main + optional: false + - name: h3-py + version: 3.7.6 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + numpy: "" + python: ">=3.11,<3.12.0a0" + python_abi: 3.11.* + url: https://conda.anaconda.org/conda-forge/linux-aarch64/h3-py-3.7.6-py311h8715677_1.conda + hash: + md5: 49d449501cb2f99b1e359c9a96d7c8cc + sha256: bfac9814d0a376c5517f39ed2fb7f111992eac955e6b171fc7d8f782f0c5c3d4 + category: main + optional: false + - name: httpx + version: 0.25.0 + manager: conda + platform: linux-aarch64 + dependencies: + certifi: "" + idna: "" + sniffio: "" + python: ">=3.8" + httpcore: ">=0.18.0,<0.19.0" + url: https://conda.anaconda.org/conda-forge/noarch/httpx-0.25.0-pyhd8ed1ab_0.conda + hash: + md5: 37c6a92b2493f801068cccdbbcfe4201 + sha256: 30bf548e8b403d523edfe05a848e70cc6bc75ccc829cfc098785a95b155a1583 + category: datasette + optional: true + - name: identify + version: 2.5.30 + manager: conda + platform: linux-aarch64 + dependencies: + ukkonen: "" + python: ">=3.6" + url: https://conda.anaconda.org/conda-forge/noarch/identify-2.5.30-pyhd8ed1ab_0.conda + hash: + md5: b7a2e3bb89bda8c69839485c20aabadf + sha256: dc9901654af0556209bb5b4194ef2deb643bc641ac859a31f13c41b945b60150 + category: dev + optional: true + - name: isoduration + version: 20.11.0 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.7" + arrow: ">=0.15.0" + url: https://conda.anaconda.org/conda-forge/noarch/isoduration-20.11.0-pyhd8ed1ab_0.tar.bz2 + hash: + md5: 4cb68948e0b8429534380243d063a27a + sha256: 7bb5c4d994361022f47a807b5e7d101b3dce16f7dd8a0af6ffad9f479d346493 + category: dev + optional: true + - name: jsonschema + version: 4.19.1 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.8" + attrs: ">=22.2.0" + importlib_resources: ">=1.4.0" + pkgutil-resolve-name: ">=1.3.10" + jsonschema-specifications: ">=2023.03.6" + referencing: ">=0.28.4" + rpds-py: ">=0.7.1" + url: https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.19.1-pyhd8ed1ab_0.conda + hash: + md5: 78aff5d2af74e6537c1ca73017f01f4f + sha256: b4e50e1d53b984a467e79b7ba69cc408d14e3a2002cad4eaf7798e20268cff2d + category: main + optional: false + - name: jupyter_core + version: 5.4.0 + manager: conda + platform: linux-aarch64 + dependencies: + platformdirs: ">=2.5" + python: ">=3.11,<3.12.0a0" + python_abi: 3.11.* + traitlets: ">=5.3" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/jupyter_core-5.4.0-py311hec3470c_0.conda + hash: + md5: 7b0aa51351cb5d460716ec3441b9c1ca + sha256: 9d80b35a2bb9f7d4edd0277b8b9b21e7f23e82a635425d2310e8b5690c41ac92 + category: dev + optional: true + - name: libgdal + version: 3.7.2 + manager: conda + platform: linux-aarch64 + dependencies: + blosc: ">=1.21.5,<2.0a0" + cfitsio: ">=4.3.0,<4.3.1.0a0" + freexl: ">=2.0.0,<3.0a0" + geos: ">=3.12.0,<3.12.1.0a0" + geotiff: ">=1.7.1,<1.8.0a0" + giflib: ">=5.2.1,<5.3.0a0" + hdf4: ">=4.2.15,<4.2.16.0a0" + hdf5: ">=1.14.2,<1.14.3.0a0" + json-c: ">=0.17,<0.18.0a0" + kealib: ">=1.5.2,<1.6.0a0" + lerc: ">=4.0.0,<5.0a0" + libarchive: ">=3.7.2,<3.8.0a0" + libcurl: ">=8.4.0,<9.0a0" + libdeflate: ">=1.19,<1.20.0a0" + libexpat: ">=2.5.0,<3.0a0" + libgcc-ng: ">=12" + libiconv: ">=1.17,<2.0a0" + libjpeg-turbo: ">=3.0.0,<4.0a0" + libkml: ">=1.3.0,<1.4.0a0" + libnetcdf: ">=4.9.2,<4.9.3.0a0" + libpng: ">=1.6.39,<1.7.0a0" + libpq: ">=16.0,<17.0a0" + libspatialite: ">=5.1.0,<5.2.0a0" + libsqlite: ">=3.43.2,<4.0a0" + libstdcxx-ng: ">=12" + libtiff: ">=4.6.0,<4.7.0a0" + libuuid: ">=2.38.1,<3.0a0" + libwebp-base: ">=1.3.2,<2.0a0" + libxml2: ">=2.11.5,<2.12.0a0" + libzlib: ">=1.2.13,<1.3.0a0" + lz4-c: ">=1.9.3,<1.10.0a0" + openjpeg: ">=2.5.0,<3.0a0" + openssl: ">=3.1.3,<4.0a0" + pcre2: ">=10.40,<10.41.0a0" + poppler: ">=23.10.0,<23.11.0a0" + postgresql: "" + proj: ">=9.3.0,<9.3.1.0a0" + tiledb: ">=2.16,<2.17.0a0" + xerces-c: ">=3.2.4,<3.3.0a0" + xz: ">=5.2.6,<6.0a0" + zstd: ">=1.5.5,<1.6.0a0" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libgdal-3.7.2-hade022d_7.conda + hash: + md5: f193d0023af25b9c0695f0b2b948eecb + sha256: fabfb6cd7fbe7fde3f817af107e666198d71d745b0a86e73426236b6e192fde7 + category: main + optional: false + - name: numba + version: 0.57.1 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + llvmlite: ">=0.40.0,<0.41.0a0" + numpy: ">=1.23.5,<2.0a0" + python: ">=3.11,<3.12.0a0" + python_abi: 3.11.* + url: https://conda.anaconda.org/conda-forge/linux-aarch64/numba-0.57.1-py311h9c3f3d9_0.conda + hash: + md5: c07bd340eb355b50a71aa445b8b58214 + sha256: 9dba68906e5671245ae61942417423454f8ffe49fb7a14f1506c9a5b7ec15b56 + category: main + optional: false + - name: numexpr + version: 2.8.7 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + numpy: ">=1.23.5,<2.0a0" + python: ">=3.11,<3.12.0a0" + python_abi: 3.11.* + url: https://conda.anaconda.org/conda-forge/linux-aarch64/numexpr-2.8.7-py311h20c0e1e_4.conda + hash: + md5: a4696c7b7c86b8f721c46618079cd10e + sha256: b8ade84f570eb160d5363daa12aa0055b9ce5d4d7ab410f1ee286b145019ce96 + category: main + optional: false + - name: oauthlib + version: 3.2.2 + manager: conda + platform: linux-aarch64 + dependencies: + cryptography: "" + blinker: "" + python: ">=3.6" + pyjwt: ">=1.0.0" + url: https://conda.anaconda.org/conda-forge/noarch/oauthlib-3.2.2-pyhd8ed1ab_0.tar.bz2 + hash: + md5: 8f882b197fd9c4941a787926baea4868 + sha256: 0cfd5146a91d3974f4abfc2a45de890371d510a77238fe553e036ec8c031dc5b + category: main + optional: false + - name: pandas + version: 2.1.1 + manager: conda + platform: linux-aarch64 + dependencies: + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + numpy: ">=1.23.5,<2.0a0" + python: ">=3.11,<3.12.0a0" + python-dateutil: ">=2.8.1" + python-tzdata: ">=2022a" + python_abi: 3.11.* + pytz: ">=2020.1" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/pandas-2.1.1-py311h2dc6514_1.conda + hash: + md5: 97f3d4569f30223d10d8a5d0308ea192 + sha256: f6cca1213999907d266d132e6f64abd56f73a76acd67e81f6219e126ebaa83df + category: main + optional: false + - name: prompt-toolkit + version: 3.0.39 + manager: conda + platform: linux-aarch64 + dependencies: + wcwidth: "" + python: ">=3.7" + url: https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.39-pyha770c72_0.conda + hash: + md5: a4986c6bb5b0d05a38855b0880a5f425 + sha256: 10e7fdc75d4b85633be6b12a70b857053987127a808caa0f88b2cba4b3ce6359 + category: dev + optional: true + - name: pybtex-docutils + version: 1.0.3 + manager: conda + platform: linux-aarch64 + dependencies: + docutils: ">=0.14" + pybtex: ">=0.16" + python: ">=3.11,<3.12.0a0" + python_abi: 3.11.* + setuptools: "" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/pybtex-docutils-1.0.3-py311hec3470c_1.conda + hash: + md5: 3ca62d8ade95ce2fa7d2c481404e8fa8 + sha256: 9a01daff94b7dbb8541c5e34f6572ff23342acfa2e264ebffd94d6d9933aadd9 + category: docs + optional: true + - name: pyopenssl + version: 23.2.0 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.6" + cryptography: ">=38.0.0,<42,!=40.0.0,!=40.0.1" + url: https://conda.anaconda.org/conda-forge/noarch/pyopenssl-23.2.0-pyhd8ed1ab_1.conda + hash: + md5: 34f7d568bf59d18e3fef8c405cbece21 + sha256: 4daea3dc896987cc1334956fccfc0ed738663a84ad0c1d3f576a7a7936091534 + category: main + optional: false + - name: readme_renderer + version: "41.0" + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.8" + docutils: ">=0.13.1" + bleach: ">=2.1.0" + cmarkgfm: ">=0.8.0" + pygments: ">=2.5.1" + url: https://conda.anaconda.org/conda-forge/noarch/readme_renderer-41.0-pyhd8ed1ab_0.conda + hash: + md5: 2559f77becdfd3e38b2798d802209bab + sha256: 8ca080999b11d390e97f337d5e68e3e81e516d5d47be47e93d422def0f01acf4 + category: dev + optional: true + - name: readthedocs-sphinx-ext + version: 2.2.3 + manager: conda + platform: linux-aarch64 + dependencies: + requests: "" + packaging: "" + python: ">=3.6" + jinja2: ">=2.9" + url: https://conda.anaconda.org/conda-forge/noarch/readthedocs-sphinx-ext-2.2.3-pyhd8ed1ab_0.conda + hash: + md5: 6bc1a00f5502f9ed13526e4c6bea6900 + sha256: 464cfb706266a2dfbee7d0226c83114c9868a65f9fc7e05b223faac8bd2b3f8e + category: docs + optional: true + - name: requests-toolbelt + version: 0.10.1 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.6" + requests: ">=2.0.1,<=3.0.0" + url: https://conda.anaconda.org/conda-forge/noarch/requests-toolbelt-0.10.1-pyhd8ed1ab_0.tar.bz2 + hash: + md5: a4cd20af9711434f89d1ec0d2b3ae6ba + sha256: 7f4c9c829add7a65a1f536c30539c541bb3c9dddbd03d7ba318f224b4add0d6d + category: main + optional: false + - name: responses + version: 0.23.1 + manager: conda + platform: linux-aarch64 + dependencies: + pyyaml: "" + typing_extensions: "" + types-pyyaml: "" + python: ">=3.7" + requests: ">=2.22.0,<3.0" + urllib3: ">=1.25.10" + url: https://conda.anaconda.org/conda-forge/noarch/responses-0.23.1-pyhd8ed1ab_0.conda + hash: + md5: bf15c93720dfea117aaea3155cbebce5 + sha256: c64db4a71de87e17fbcbd0b3af2186ab25d65428bb565bd7d070850324096f3b + category: dev + optional: true + - name: s3transfer + version: 0.7.0 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.7" + botocore: ">=1.12.36,<2.0a.0" + url: https://conda.anaconda.org/conda-forge/noarch/s3transfer-0.7.0-pyhd8ed1ab_0.conda + hash: + md5: 5fe335cb1420d13a818fe01310af2b80 + sha256: 5ed09d013ad7f2c2f65d1637c04ee19da242ef9bed0d86aa9faae2c48aaa255d + category: main + optional: false + - name: scipy + version: 1.11.3 + manager: conda + platform: linux-aarch64 + dependencies: + libblas: ">=3.9.0,<4.0a0" + libcblas: ">=3.9.0,<4.0a0" + libgcc-ng: ">=12" + libgfortran-ng: "" + libgfortran5: ">=12.3.0" + liblapack: ">=3.9.0,<4.0a0" + libstdcxx-ng: ">=12" + numpy: ">=1.23.5,<2.0a0" + python: ">=3.11,<3.12.0a0" + python_abi: 3.11.* + url: https://conda.anaconda.org/conda-forge/linux-aarch64/scipy-1.11.3-py311h69ead2a_1.conda + hash: + md5: b58b60a4e168bf93b0e53916b8ad5177 + sha256: 73f2318208959090d6a4c302c7c12dce7198ca144f156b47cc4f17b1fcdc1f84 + category: main + optional: false + - name: secretstorage + version: 3.3.3 + manager: conda + platform: linux-aarch64 + dependencies: + cryptography: "" + dbus: "" + jeepney: ">=0.6" + python: ">=3.11,<3.12.0a0" + python_abi: 3.11.* + url: https://conda.anaconda.org/conda-forge/linux-aarch64/secretstorage-3.3.3-py311hfecb2dc_2.conda + hash: + md5: 3499fac9ca62c636d9fca176915cd739 + sha256: 25d88efe927c0b5cc46f5480cc7f20aa86b026996bbd8368f9ef08e35d04f3ba + category: dev + optional: true + - name: shapely + version: 2.0.2 + manager: conda + platform: linux-aarch64 + dependencies: + geos: ">=3.12.0,<3.12.1.0a0" + libgcc-ng: ">=12" + numpy: ">=1.23.5,<2.0a0" + python: ">=3.11,<3.12.0a0" + python_abi: 3.11.* + url: https://conda.anaconda.org/conda-forge/linux-aarch64/shapely-2.0.2-py311h50b4e29_0.conda + hash: + md5: 68e5871f37feedd2e4ac1214f8224194 + sha256: e511872ec2a93bc9d38203b4f3e0bb38f22c75cc3f8c43a81f34165d47d0f057 + category: main + optional: false + - name: stevedore + version: 5.1.0 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.8" + pbr: "!=2.1.0,>=2.0.0" + url: https://conda.anaconda.org/conda-forge/noarch/stevedore-5.1.0-pyhd8ed1ab_0.conda + hash: + md5: 55864c50fd9354fd19f6a5078a068170 + sha256: 69b779f4cdb0b84f87067414bcccaffc83c6d734dac84523c40115c383a2e2d5 + category: docs + optional: true + - name: typer + version: 0.9.0 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.6" + typing-extensions: ">=3.7.4.3" + colorama: ">=0.4.3,<0.5.0" + shellingham: ">=1.3.0,<2.0.0" + click: ">=7.1.1,<9" + rich: ">=10.11.0,<14.0.0" + url: https://conda.anaconda.org/conda-forge/noarch/typer-0.9.0-pyhd8ed1ab_0.conda + hash: + md5: 5030a13b2fe5e143d5956d4943d3018f + sha256: d395e1e92281abb13e043220ecf8ea973ada8d38a1e8c683df14f46541c64bd2 + category: main + optional: false + - name: uvicorn-standard + version: 0.23.2 + manager: conda + platform: linux-aarch64 + dependencies: + httptools: ">=0.5.0" + python-dotenv: ">=0.13" + python_abi: 3.11.* + pyyaml: ">=5.1" + uvicorn: 0.23.2 + uvloop: ">=0.14.0,!=0.15.0,!=0.15.1" + watchfiles: ">=0.13" + websockets: ">=10.4" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/uvicorn-standard-0.23.2-hfecb2dc_1.conda + hash: + md5: 1eaaeb89695bfe373823038878c5b485 + sha256: a3053e2baf4344695e90d86f29d78df6cacfc3a90b0f811a11c0bf24f4f4a2cf + category: main + optional: false + - name: virtualenv + version: 20.24.6 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.8" + distlib: <1,>=0.3.7 + filelock: <4,>=3.12.2 + platformdirs: <4,>=3.9.1 + url: https://conda.anaconda.org/conda-forge/noarch/virtualenv-20.24.6-pyhd8ed1ab_0.conda + hash: + md5: fb1fc875719e217ed799a7aae11d3be4 + sha256: 09492f89a22dc17d9b32f2a791deee93d06e99fb312c3d47430fe35343b7fbde + category: dev + optional: true + - name: aws-sdk-cpp + version: 1.11.156 + manager: conda + platform: linux-aarch64 + dependencies: + aws-c-common: ">=0.9.3,<0.9.4.0a0" + aws-c-event-stream: ">=0.3.2,<0.3.3.0a0" + aws-checksums: ">=0.1.17,<0.1.18.0a0" + aws-crt-cpp: ">=0.24.2,<0.24.3.0a0" + libcurl: ">=8.3.0,<9.0a0" + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + libzlib: ">=1.2.13,<1.3.0a0" + openssl: ">=3.1.3,<4.0a0" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-sdk-cpp-1.11.156-hdea27d8_4.conda + hash: + md5: bdefc939f319d46f18cbf17393689bbf + sha256: 0a3c9d4a9a6ecaded8e42d6abf5b9943eaa85739cfafbba99796dbd1497e88f0 + category: main + optional: false + - name: boto3 + version: 1.28.70 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.7" + jmespath: ">=0.7.1,<2.0.0" + s3transfer: ">=0.7.0,<0.8.0" + botocore: ">=1.31.70,<1.32.0" + url: https://conda.anaconda.org/conda-forge/noarch/boto3-1.28.70-pyhd8ed1ab_0.conda + hash: + md5: cdc672d21bb4f620c4ee6cd83fd9aec7 + sha256: 3d53ab4af8016b2d807e329e05e8aa6c32ffa166ccfacac023110df41b81fad4 + category: main + optional: false + - name: cachecontrol-with-filecache + version: 0.13.1 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.7" + filelock: ">=3.8.0" + cachecontrol: 0.13.1 + url: https://conda.anaconda.org/conda-forge/noarch/cachecontrol-with-filecache-0.13.1-pyhd8ed1ab_0.conda + hash: + md5: 8c4781ca0893cff3a64423954ce234a1 + sha256: 7fd3cd4a667da284ae3aad9b8cb4d592099bc02ed6566cbae00bd8c0b0604e85 + category: dev + optional: true + - name: dagster + version: 1.5.4 + manager: conda + platform: linux-aarch64 + dependencies: + requests: "" + setuptools: "" + tqdm: "" + jinja2: "" + python-dateutil: "" + pytz: "" + tabulate: "" + tomli: "" + python-dotenv: "" + pywin32-on-windows: "" + pendulum: "" + docstring_parser: "" + universal_pathlib: "" + python: ">=3.8" + pyyaml: ">=5.1" + watchdog: ">=0.8.3" + packaging: ">=20.9" + click: ">=5.0" + typing_extensions: ">=4.4.0" + coloredlogs: ">=6.1,<=14.0" + croniter: ">=0.3.34" + toposort: ">=1.0" + psutil: ">=1.0" + sqlalchemy: ">=1.0" + grpcio-health-checking: ">=1.44.0" + protobuf: ">=3.20.0" + grpcio: ">=1.44.0" + alembic: ">=1.2.1,!=1.6.3,!=1.7.0,!=1.11.0" + pydantic: ">1.10.0,!=1.10.7,<2.0.0" + dagster-pipes: ">=1.5.4,<1.5.5.0a0" + url: https://conda.anaconda.org/conda-forge/noarch/dagster-1.5.4-pyhd8ed1ab_1.conda + hash: + md5: d3f90ca494ebd4495c32a30f337f8258 + sha256: dac4c049b3464a3b5e0ad53bdb0209c443e7d52eca4cba6f1545f6a1089d73df + category: main + optional: false + - name: datasette + version: 0.64.4 + manager: conda + platform: linux-aarch64 + dependencies: + setuptools: "" + pip: "" + python: ">=3.7" + pyyaml: ">=5.3" + jinja2: ">=2.10.3" + click: ">=7.1.1" + pint: ">=0.9" + httpx: ">=0.20" + asgi-csrf: ">=0.9" + itsdangerous: ">=1.1" + click-default-group-wheel: ">=1.2.2" + hupper: ">=1.9" + uvicorn: ">=0.11" + pluggy: ">=1.0" + aiofiles: ">=0.4" + asgiref: ">=3.2.10" + janus: ">=0.6.2" + mergedeep: ">=1.1.1" + url: https://conda.anaconda.org/conda-forge/noarch/datasette-0.64.4-pyhd8ed1ab_1.conda + hash: + md5: cd1207af03052f6b81906e1a914ad3c5 + sha256: 8800f86ec23a31ad642a1467d0a8f343038c7e2237a1f9046493ad1868ceb441 + category: datasette + optional: true + - name: doc8 + version: 1.1.1 + manager: conda + platform: linux-aarch64 + dependencies: + pygments: "" + tomli: "" + stevedore: "" + python: ">=3.8" + restructuredtext_lint: ">=0.7" + docutils: ">=0.19,<0.21" + url: https://conda.anaconda.org/conda-forge/noarch/doc8-1.1.1-pyhd8ed1ab_0.conda + hash: + md5: 5e9e17751f19d03c4034246de428582e + sha256: 00691538e6289b7947cabc2024f08883b3e2ded00369c68de7d67677e9d4c250 + category: docs + optional: true + - name: email-validator + version: 2.1.0.post1 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.7" + idna: ">=2.0.0" + dnspython: ">=2.0.0" + url: https://conda.anaconda.org/conda-forge/noarch/email-validator-2.1.0.post1-pyhd8ed1ab_0.conda + hash: + md5: 192fe8f657c763c6120d9f8592055847 + sha256: 0b2e503da10648e2fa8d13035ddda174a549732c4f17476363882ebf67867283 + category: main + optional: false + - name: frictionless + version: 4.40.8 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.6" + pyyaml: ">=5.3" + jsonschema: ">=2.5" + chardet: ">=3.0" + python-dateutil: ">=2.8" + isodate: ">=0.6" + requests: ">=2.10" + python-slugify: ">=1.2" + stringcase: ">=1.2" + petl: ">=1.6" + validators: ">=0.18" + rfc3986: ">=1.4" + marko: ">=1.0" + simpleeval: ">=0.9.11" + tabulate: ">=0.8.10" + typer: ">=0.5" + jinja2: ">=3.0.3" + url: https://conda.anaconda.org/conda-forge/noarch/frictionless-4.40.8-pyh6c4a22f_0.tar.bz2 + hash: + md5: d2791ef8f6c1252aa8d2e2001a603815 + sha256: 0d7d669d92aa4ecf08effb64aea4c98aa65607bdb98e7b82627b7c43556dd9bc + category: main + optional: false + - name: gdal + version: 3.7.2 + manager: conda + platform: linux-aarch64 + dependencies: + hdf5: ">=1.14.2,<1.14.3.0a0" + libgcc-ng: ">=12" + libgdal: 3.7.2 + libstdcxx-ng: ">=12" + libxml2: ">=2.11.5,<2.12.0a0" + numpy: ">=1.23.5,<2.0a0" + openssl: ">=3.1.3,<4.0a0" + python: ">=3.11,<3.12.0a0" + python_abi: 3.11.* + url: https://conda.anaconda.org/conda-forge/linux-aarch64/gdal-3.7.2-py311h010e1cf_7.conda + hash: + md5: 7f7b4e35688693a00a4da85f71a46cf4 + sha256: c42411a116d52d8b9c379156cb4294e5e9f97fd4cc410a2a6bb8e01e7ed753ec + category: main + optional: false + - name: geopandas-base + version: 0.14.0 + manager: conda + platform: linux-aarch64 + dependencies: + packaging: "" + python: ">=3.9" + pandas: ">=1.4.0" + shapely: ">=1.8.0" + pyproj: ">=3.3.0" + url: https://conda.anaconda.org/conda-forge/noarch/geopandas-base-0.14.0-pyha770c72_1.conda + hash: + md5: 614a383c5f4350e0606689f54c6497b1 + sha256: 97fe438e399d9106998e38fc700fdd6f90f15ea92d1e20cf0a01e74436aa24ba + category: main + optional: false + - name: google-auth + version: 2.23.3 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.7" + pyasn1-modules: ">=0.2.1" + rsa: ">=3.1.4,<5" + pyopenssl: ">=20.0.0" + pyu2f: ">=0.1.5" + requests: ">=2.20.0,<3.0.0" + cachetools: ">=2.0.0,<6.0" + aiohttp: ">=3.6.2,<4.0.0" + cryptography: ">=38.0.3" + url: https://conda.anaconda.org/conda-forge/noarch/google-auth-2.23.3-pyhca7485f_0.conda + hash: + md5: 79faaf9cd0e5114c19253552d8d92872 + sha256: 6c5afee3912b169a9d240f05c138d106133f7131c6631399a48ed3597689a97a + category: main + optional: false + - name: gql-with-requests + version: 3.4.1 + manager: conda + platform: linux-aarch64 + dependencies: + requests: "" + urllib3: "" + requests-toolbelt: "" + python: ">=3.6" + gql: 3.4.1 + url: https://conda.anaconda.org/conda-forge/noarch/gql-with-requests-3.4.1-pyhd8ed1ab_0.conda + hash: + md5: 1814ff1e969b01d3570027efcf4f163a + sha256: f11fb42542950f5e96ee252c9bebbd205bcbf1e20a3d8aeb056998bbdfef68f2 + category: main + optional: false + - name: jsonschema-with-format-nongpl + version: 4.19.1 + manager: conda + platform: linux-aarch64 + dependencies: + python: "" + idna: "" + rfc3339-validator: "" + uri-template: "" + fqdn: "" + isoduration: "" + jsonpointer: ">1.13" + webcolors: ">=1.11" + rfc3986-validator: ">0.1.0" + jsonschema: ">=4.19.1,<4.19.2.0a0" + url: https://conda.anaconda.org/conda-forge/noarch/jsonschema-with-format-nongpl-4.19.1-pyhd8ed1ab_0.conda + hash: + md5: daca0665e6fe8a376e48b9f0b5865326 + sha256: af65a8783a89c03ac8437a1d95ee5ac2e50e92d3af231cec515292fe296aff8e + category: dev + optional: true + - name: jupyter_client + version: 8.5.0 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.8" + python-dateutil: ">=2.8.2" + jupyter_core: ">=4.12,!=5.0.*" + traitlets: ">=5.3" + pyzmq: ">=23.0" + importlib_metadata: ">=4.8.3" + tornado: ">=6.2" + url: https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.5.0-pyhd8ed1ab_0.conda + hash: + md5: 77e442cb7c382d01c916f91a8652811a + sha256: e4478e137e0975ce94ef4ee6e4a6736afaf4a00e99bc8007a275bcb39fe728d9 + category: dev + optional: true + - name: keyring + version: 24.2.0 + manager: conda + platform: linux-aarch64 + dependencies: + importlib_metadata: ">=4.11.4" + jaraco.classes: "" + jeepney: ">=0.4.2" + python: ">=3.11,<3.12.0a0" + python_abi: 3.11.* + secretstorage: ">=3.2" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/keyring-24.2.0-py311hec3470c_1.conda + hash: + md5: 5f93880eb0a8a66df3f4dd92dd11d8cb + sha256: 5b94d63f3d000c60d9b06d09ba4f4567070429439a3f18e9664bbccc39608210 + category: dev + optional: true + - name: matplotlib-base + version: 3.8.0 + manager: conda + platform: linux-aarch64 + dependencies: + certifi: ">=2020.06.20" + contourpy: ">=1.0.1" + cycler: ">=0.10" + fonttools: ">=4.22.0" + freetype: ">=2.12.1,<3.0a0" + kiwisolver: ">=1.0.1" + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + numpy: ">=1.23.5,<2.0a0" + packaging: ">=20.0" + pillow: ">=6.2.0" + pyparsing: ">=2.3.1" + python: ">=3.11,<3.12.0a0" + python-dateutil: ">=2.7" + python_abi: 3.11.* + tk: ">=8.6.13,<8.7.0a0" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/matplotlib-base-3.8.0-py311h1f11223_2.conda + hash: + md5: 9783abc7072f9cf735b1d004e5dab020 + sha256: e7c74bc3cd12f3e4a0479689f8be5758eca3da5cc44cd56365d484b43ae4b98b + category: main + optional: false + - name: nbformat + version: 5.9.2 + manager: conda + platform: linux-aarch64 + dependencies: + jupyter_core: "" + python-fastjsonschema: "" + python: ">=3.8" + traitlets: ">=5.1" + jsonschema: ">=2.6" + url: https://conda.anaconda.org/conda-forge/noarch/nbformat-5.9.2-pyhd8ed1ab_0.conda + hash: + md5: 61ba076de6530d9301a0053b02f093d2 + sha256: fc82c5a9116820757b03ffb836b36f0f50e4cd390018024dbadb0ee0217f6992 + category: dev + optional: true + - name: pre-commit + version: 3.5.0 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.8" + pyyaml: ">=5.1" + identify: ">=1.0.0" + nodeenv: ">=0.11.1" + cfgv: ">=2.0.0" + virtualenv: ">=20.10.0" + url: https://conda.anaconda.org/conda-forge/noarch/pre-commit-3.5.0-pyha770c72_0.conda + hash: + md5: 964e3d762e427661c59263435a14c492 + sha256: 51a4a17334a15ec92805cd075776563ff93b3b6c20732c4cb607c98a761ae02f + category: dev + optional: true + - name: prompt_toolkit + version: 3.0.39 + manager: conda + platform: linux-aarch64 + dependencies: + prompt-toolkit: ">=3.0.39,<3.0.40.0a0" + url: https://conda.anaconda.org/conda-forge/noarch/prompt_toolkit-3.0.39-hd8ed1ab_0.conda + hash: + md5: 4bbbe67d5df19db30f04b8e344dc9976 + sha256: 89f7fecc7355181dbc2ab851e668a2fce6aa4830b336a34c93b59bda93206270 + category: dev + optional: true + - name: requests-oauthlib + version: 1.3.1 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.4" + requests: ">=2.0.0" + oauthlib: ">=3.0.0" + url: https://conda.anaconda.org/conda-forge/noarch/requests-oauthlib-1.3.1-pyhd8ed1ab_0.tar.bz2 + hash: + md5: 61b279f051eef9c89d58f4d813e75e04 + sha256: 889e3c1b84467b64046776db95dc4c5ea4dad5afaa5ec18ad811bd95c63286b0 + category: main + optional: false + - name: scikit-learn + version: 1.3.2 + manager: conda + platform: linux-aarch64 + dependencies: + _openmp_mutex: ">=4.5" + joblib: ">=1.1.1" + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + numpy: ">=1.23.5,<2.0a0" + python: ">=3.11,<3.12.0a0" + python_abi: 3.11.* + scipy: "" + threadpoolctl: ">=2.0.0" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/scikit-learn-1.3.2-py311hb93614b_1.conda + hash: + md5: 8ac1e65367914cbc00ef60b54cdcfc24 + sha256: 9e5a5ac10373a2c662ebfc16a0adebd5f2f1cab6026e38c5ef0bfe88577ca058 + category: main + optional: false + - name: timezonefinder + version: 6.0.2 + manager: conda + platform: linux-aarch64 + dependencies: + numpy: "" + numba: "" + h3-py: "" + python: 3.* + url: https://conda.anaconda.org/conda-forge/noarch/timezonefinder-6.0.2-pyhd8ed1ab_0.tar.bz2 + hash: + md5: ea1c4c4249e1b86a9105b10be6395bd6 + sha256: e07cefbbba8837a722f7573f32d8a63c3c5049438526495b94481bd460491771 + category: main + optional: false + - name: catalystcoop.ferc_xbrl_extractor + version: 1.1.1 + manager: conda + platform: linux-aarch64 + dependencies: + sqlalchemy: ">=1.4,<3" + lxml: ">=4.9.1,<5" + python: ">=3.10,<3.12" + coloredlogs: ">=14.0,<15.1" + frictionless: ">=4.4,<5" + numpy: ">=1.16,<2" + arelle-release: ">=2.3,<3" + pandas: ">=1.5,<2.2" + pydantic: ">=1.9,<3" + stringcase: ">=1.2,<2" + url: https://conda.anaconda.org/conda-forge/noarch/catalystcoop.ferc_xbrl_extractor-1.1.1-pyhd8ed1ab_0.conda + hash: + md5: d40f9751f064b3180e93aadb683bb2b7 + sha256: bcb3daab7e92b514718a36b1201cff7c8e285250dc3dd1328b90cbb947cd8f81 + category: main + optional: false + - name: conda-lock + version: 2.4.1 + manager: conda + platform: linux-aarch64 + dependencies: + typing_extensions: "" + jinja2: "" + ruamel.yaml: "" + tomli: "" + click-default-group: "" + python: ">=3.8" + pyyaml: ">=5.1" + click: ">=8.0" + packaging: ">=20.4" + requests: ">=2.18" + ensureconda: ">=1.3" + gitpython: ">=3.1.30" + keyring: ">=21.2.0" + html5lib: ">=1.0" + cachy: ">=0.3.0" + clikit: ">=0.6.2" + crashtest: ">=0.3.0" + pkginfo: ">=1.4" + tomlkit: ">=0.7.0" + virtualenv: ">=20.0.26" + pydantic: ">=1.10" + toolz: ">=0.12.0,<1.0.0" + cachecontrol-with-filecache: ">=0.12.9" + urllib3: ">=1.26.5,<2.0" + url: https://conda.anaconda.org/conda-forge/noarch/conda-lock-2.4.1-pyhd8ed1ab_0.conda + hash: + md5: deb6e2f8d8b4de933563cc681165b833 + sha256: 08cd768d033db260e043982ba91de007213adbde5210a76fd2decad3c135e666 + category: dev + optional: true + - name: dagster-graphql + version: 1.5.4 + manager: conda + platform: linux-aarch64 + dependencies: + requests: "" + starlette: "" + python: ">=3.8" + graphene: ">=3" + dagster: ">=1.5.4,<1.5.5.0a0" + gql-with-requests: ">=3.0.0" + url: https://conda.anaconda.org/conda-forge/noarch/dagster-graphql-1.5.4-pyhd8ed1ab_1.conda + hash: + md5: 8bc6d9ce80023e7a51130301737a3a47 + sha256: ac0b6dbbbd0bc91e40eacf68e9f5469c3e1194cd463405bd943c8383eadb75ee + category: main + optional: false + - name: fiona + version: 1.9.5 + manager: conda + platform: linux-aarch64 + dependencies: + attrs: ">=17" + click: ">=4.0" + click-plugins: ">=1.0" + cligj: ">=0.5" + gdal: "" + importlib-metadata: "" + libgcc-ng: ">=12" + libgdal: ">=3.7.2,<3.8.0a0" + libstdcxx-ng: ">=12" + munch: "" + numpy: ">=1.23.5,<2.0a0" + python: ">=3.11,<3.12.0a0" + python_abi: 3.11.* + setuptools: "" + shapely: "" + six: ">=1.7" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/fiona-1.9.5-py311h717dbbd_0.conda + hash: + md5: ae61b4ffaaf096023505cec0f00c3b08 + sha256: 474c1c9730c86e571254e9a9b81dce7fb956e6a7488cbd63542985279ac7e3f0 + category: main + optional: false + - name: google-api-core + version: 2.12.0 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.7" + google-auth: ">=2.14.1,<3.0.dev0" + googleapis-common-protos: ">=1.56.2,<2.0.dev0" + protobuf: ">=3.19.5,<5.0.0.dev0,!=3.20.0,!=3.20.1,!=4.21.0,!=4.21.1,!=4.21.2,!=4.21.3,!=4.21.4,!=4.21.5" + requests: ">=2.18.0,<3.0.0.dev0" + url: https://conda.anaconda.org/conda-forge/noarch/google-api-core-2.12.0-pyhd8ed1ab_0.conda + hash: + md5: f978eac45a312816fffd61eb65f5ed0e + sha256: 916ef4e06e875c9b3016de60cc90671146b5bc8ad8abd8226070975844f1bb75 + category: main + optional: false + - name: google-auth-oauthlib + version: 1.1.0 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.6" + requests-oauthlib: ">=0.7.0" + click: ">=6.0.0" + google-auth: ">=2.15.0" + url: https://conda.anaconda.org/conda-forge/noarch/google-auth-oauthlib-1.1.0-pyhd8ed1ab_0.conda + hash: + md5: ffa1e2fd52bc00ec0fc5680a2f4bd167 + sha256: fc12c5a06b4d073c855cc2c43edff0b444af7b0db860f578fee1486769af0f21 + category: main + optional: false + - name: ipython + version: 8.16.1 + manager: conda + platform: linux-aarch64 + dependencies: + typing_extensions: "" + decorator: "" + __linux: "" + exceptiongroup: "" + stack_data: "" + matplotlib-inline: "" + backcall: "" + pickleshare: "" + python: ">=3.9" + pygments: ">=2.4.0" + traitlets: ">=5" + jedi: ">=0.16" + pexpect: ">4.3" + prompt_toolkit: ">=3.0.30,<3.1.0,!=3.0.37" + url: https://conda.anaconda.org/conda-forge/noarch/ipython-8.16.1-pyh0d859eb_0.conda + hash: + md5: 7e52cb0dbf01b90365bfe433ec8bd3c0 + sha256: 2dc119746ddac02cb01644ae7c7ac54a296366e2edf0d178f50f833113aaf94a + category: dev + optional: true + - name: jupyter_events + version: 0.8.0 + manager: conda + platform: linux-aarch64 + dependencies: + rfc3339-validator: "" + referencing: "" + python: ">=3.8" + pyyaml: ">=5.3" + rfc3986-validator: ">=0.1.1" + traitlets: ">=5.3" + python-json-logger: ">=2.0.4" + jsonschema-with-format-nongpl: ">=4.18.0" + url: https://conda.anaconda.org/conda-forge/noarch/jupyter_events-0.8.0-pyhd8ed1ab_0.conda + hash: + md5: 04272d87d3e06c2e26af5e2d4b0e0ad8 + sha256: 44742f7b6453774fbbdf7cec20282f88c7362707990790116fec23270b81b447 + category: dev + optional: true + - name: libarrow + version: 13.0.0 + manager: conda + platform: linux-aarch64 + dependencies: + aws-crt-cpp: ">=0.24.2,<0.24.3.0a0" + aws-sdk-cpp: ">=1.11.156,<1.11.157.0a0" + bzip2: ">=1.0.8,<2.0a0" + glog: ">=0.6.0,<0.7.0a0" + libabseil: ">=20230802.1,<20230803.0a0" + libbrotlidec: ">=1.1.0,<1.2.0a0" + libbrotlienc: ">=1.1.0,<1.2.0a0" + libgcc-ng: ">=12" + libgoogle-cloud: ">=2.12.0,<2.13.0a0" + libgrpc: ">=1.57.0,<1.58.0a0" + libprotobuf: ">=4.23.4,<4.23.5.0a0" + libstdcxx-ng: ">=12" + libthrift: ">=0.19.0,<0.19.1.0a0" + libutf8proc: ">=2.8.0,<3.0a0" + libzlib: ">=1.2.13,<1.3.0a0" + lz4-c: ">=1.9.3,<1.10.0a0" + openssl: ">=3.1.3,<4.0a0" + orc: ">=1.9.0,<1.9.1.0a0" + re2: ">=2023.3.2,<2023.3.3.0a0" + snappy: ">=1.1.10,<2.0a0" + ucx: ">=1.15.0,<1.16.0a0" + zstd: ">=1.5.5,<1.6.0a0" + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-13.0.0-h399ce64_7_cpu.conda + hash: + md5: 51369348fdcc58ca0cd4084bb48e4650 + sha256: c04a990ee22018b6947d0da806ced472824bd51b48a6b823788f2c07fa8dd3ea + category: main + optional: false + - name: mapclassify + version: 2.6.1 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.9" + scikit-learn: ">=1.0" + scipy: ">=1.8" + numpy: ">=1.23" + networkx: ">=2.7" + pandas: ">=1.4,!=1.5.0" + url: https://conda.anaconda.org/conda-forge/noarch/mapclassify-2.6.1-pyhd8ed1ab_0.conda + hash: + md5: 6aceae1ad4f16cf7b73ee04189947f98 + sha256: 204ab8b242229d422b33cfec07ea61cefa8bd22375a16658afbabaafce031d64 + category: main + optional: false + - name: nbclient + version: 0.8.0 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.8" + jupyter_client: ">=6.1.12" + jupyter_core: ">=4.12,!=5.0.*" + nbformat: ">=5.1" + traitlets: ">=5.4" + url: https://conda.anaconda.org/conda-forge/noarch/nbclient-0.8.0-pyhd8ed1ab_0.conda + hash: + md5: e78da91cf428faaf05701ce8cc8f2f9b + sha256: 4ebd237cdf4bfa5226f92d2ae78fab8dba27696909391884dc6594ca6f9df5ff + category: dev + optional: true + - name: recordlinkage + version: "0.16" + manager: conda + platform: linux-aarch64 + dependencies: + joblib: "" + numexpr: "" + python: ">=3.8" + numpy: ">=1.13" + scikit-learn: ">=1" + pandas: ">=1,<3" + scipy: ">=1" + jellyfish: ">=1" + url: https://conda.anaconda.org/conda-forge/noarch/recordlinkage-0.16-pyhd8ed1ab_0.conda + hash: + md5: 948205d11a8b036e065c46462db0632a + sha256: 3f3c03719d6bdef41f8a08f51fb3e58a80223a321ffca413eda0c332bfa75bf0 + category: main + optional: false + - name: tabulator + version: 1.53.5 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3" + click: ">=6.0" + six: ">=1.9" + chardet: ">=3.0" + unicodecsv: ">=0.14" + requests: ">=2.8" + boto3: ">=1.9" + xlrd: ">=1.0" + jsonlines: ">=1.1" + linear-tsv: ">=1.0" + sqlalchemy: ">=0.9.6" + openpyxl: ">=2.6" + ijson: ">=3.0.3" + url: https://conda.anaconda.org/conda-forge/noarch/tabulator-1.53.5-pyhd8ed1ab_0.tar.bz2 + hash: + md5: c967687222ad29a74f68e99698d08d30 + sha256: b5fb89f1154cf6b5e620c18a9c4f73c7b79afa72a7e3e840a82e225a90955335 + category: main + optional: false + - name: twine + version: 4.0.2 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.7" + rich: ">=12.0.0" + requests: ">=2.20" + urllib3: ">=1.26.0" + importlib_metadata: ">=3.6" + requests-toolbelt: ">=0.8.0,!=0.9.0" + keyring: ">=15.1" + rfc3986: ">=1.4.0" + pkginfo: ">=1.8.1" + readme_renderer: ">=35.0" + url: https://conda.anaconda.org/conda-forge/noarch/twine-4.0.2-pyhd8ed1ab_0.conda + hash: + md5: e3a16168d6b9deefb8c1caa7943fb49e + sha256: 3e0c4f23d6a7d71783095b715f56c9f5f26feefaa9f30e27793dd12dc28e76c9 + category: dev + optional: true + - name: dagster-webserver + version: 1.5.4 + manager: conda + platform: linux-aarch64 + dependencies: + starlette: "" + uvicorn-standard: "" + python: ">=3.8" + click: ">=7.0,<9.0" + dagster: ">=1.5.4,<1.5.5.0a0" + dagster-graphql: ">=1.5.4,<1.5.5.0a0" + url: https://conda.anaconda.org/conda-forge/noarch/dagster-webserver-1.5.4-pyhd8ed1ab_1.conda + hash: + md5: 2f2da26ea9a7ceeca97d8368120794d8 + sha256: 3eac291e2b8e200ecb4cb5bbd541e9c3465c9e61854bc6774c5850f8e9c1758e + category: main + optional: false + - name: geopandas + version: 0.14.0 + manager: conda + platform: linux-aarch64 + dependencies: + matplotlib-base: "" + rtree: "" + folium: "" + xyzservices: "" + python: ">=3.9" + mapclassify: ">=2.4.0" + fiona: ">=1.8.21" + geopandas-base: 0.14.0 + url: https://conda.anaconda.org/conda-forge/noarch/geopandas-0.14.0-pyhd8ed1ab_1.conda + hash: + md5: d3617cddba7ea3dd3234d28faa3bc3b4 + sha256: 2acdc39438b7152da0a08b3daad9b5b066d7b6005beb4cb176c0ef654ef79668 + category: main + optional: false + - name: google-cloud-core + version: 2.3.3 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.7" + google-auth: ">=1.25.0,<3.0dev" + google-api-core: ">=1.31.6,<3.0.0dev,!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.0" + grpcio: ">=1.38.0,<2.0.0dev" + url: https://conda.anaconda.org/conda-forge/noarch/google-cloud-core-2.3.3-pyhd8ed1ab_0.conda + hash: + md5: a26b1fa8555cc1d2f0f7ff9985303e66 + sha256: e8a840361b23ca7a9cfa62c1885fc66aa5ad94e48556782e9a032678c9f4b76e + category: main + optional: false + - name: ipdb + version: 0.13.13 + manager: conda + platform: linux-aarch64 + dependencies: + ipython: "" + decorator: "" + python: ">=2.7" + toml: ">=0.10.2" + url: https://conda.anaconda.org/conda-forge/noarch/ipdb-0.13.13-pyhd8ed1ab_0.conda + hash: + md5: 86baea403007ad4898d85c897c80b758 + sha256: 16ea279fae5b3b77a694bf7bc8bcda9c310be39d6fbf78664d3111bcd5f5758a + category: dev + optional: true + - name: ipykernel + version: 6.26.0 + manager: conda + platform: linux-aarch64 + dependencies: + packaging: "" + psutil: "" + nest-asyncio: "" + __linux: "" + python: ">=3.8" + tornado: ">=6.1" + jupyter_client: ">=6.1.12" + ipython: ">=7.23.1" + matplotlib-inline: ">=0.1" + jupyter_core: ">=4.12,!=5.0.*" + debugpy: ">=1.6.5" + comm: ">=0.1.1" + pyzmq: ">=20" + traitlets: ">=5.4.0" + url: https://conda.anaconda.org/conda-forge/noarch/ipykernel-6.26.0-pyhf8b6a83_0.conda + hash: + md5: 2307f71f5f0896d4b91b93e6b468abff + sha256: 9e647454f7572101657a07820ebed294df9a6a527b041cd5e4dd98b8aa3db625 + category: dev + optional: true + - name: ipywidgets + version: 8.1.1 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.7" + traitlets: ">=4.3.1" + ipython: ">=6.1.0" + comm: ">=0.1.3" + jupyterlab_widgets: ">=3.0.9,<3.1.0" + widgetsnbextension: ">=4.0.9,<4.1.0" + url: https://conda.anaconda.org/conda-forge/noarch/ipywidgets-8.1.1-pyhd8ed1ab_0.conda + hash: + md5: 2605fae5ee27100e5f10037baebf4d41 + sha256: 8136defec115396ba992273a77f814d74eeafd9cc099f5430d109c60785a7f02 + category: dev + optional: true + - name: nbconvert-core + version: 7.9.2 + manager: conda + platform: linux-aarch64 + dependencies: + packaging: "" + beautifulsoup4: "" + defusedxml: "" + bleach: "" + tinycss2: "" + jupyterlab_pygments: "" + python: ">=3.8" + jinja2: ">=3.0" + entrypoints: ">=0.2.2" + traitlets: ">=5.0" + markupsafe: ">=2.0" + pandocfilters: ">=1.4.1" + jupyter_core: ">=4.7" + nbformat: ">=5.1" + pygments: ">=2.4.1" + nbclient: ">=0.5.0" + mistune: ">=2.0.3,<4" + url: https://conda.anaconda.org/conda-forge/noarch/nbconvert-core-7.9.2-pyhd8ed1ab_0.conda + hash: + md5: 01e4314c780ca73759c694ce3ece281f + sha256: 2c85cf290cffb72b1fe7d24c22ad6bf89873bf0f562c9c51907dfb6c00f2d4dd + category: dev + optional: true + - name: pyarrow + version: 13.0.0 + manager: conda + platform: linux-aarch64 + dependencies: + libarrow: 13.0.0 + libgcc-ng: ">=12" + libstdcxx-ng: ">=12" + numpy: ">=1.23.5,<2.0a0" + python: ">=3.11,<3.12.0a0" + python_abi: 3.11.* + url: https://conda.anaconda.org/conda-forge/linux-aarch64/pyarrow-13.0.0-py311h1eb6f34_7_cpu.conda + hash: + md5: 8f7ce2519b5d2f5af66e7c26c9aac9ef + sha256: d01d435cc4b2b04283238c7f797807a04620c526471bbf4f5ecf291441562c7f + category: main + optional: false + - name: tableschema + version: 1.19.3 + manager: conda + platform: linux-aarch64 + dependencies: + python: "" + python-dateutil: ">=2.4" + six: ">=1.9" + jsonschema: ">=2.5" + requests: ">=2.5" + unicodecsv: ">=0.14" + isodate: ">=0.5.4" + click: ">=3.3" + rfc3986: ">=1.1.0" + cached-property: ">=1.5" + tabulator: ">=1.29" + url: https://conda.anaconda.org/conda-forge/noarch/tableschema-1.19.3-pyh9f0ad1d_0.tar.bz2 + hash: + md5: 57f70b39e74b4af667775c0a07f35cc3 + sha256: bc96dd4ee4d7ee5d6753158ba50aacd08c80a657847d6771cc4c56da538437e7 + category: main + optional: false + - name: datapackage + version: 1.15.2 + manager: conda + platform: linux-aarch64 + dependencies: + python: "" + six: ">=1.10" + jsonschema: ">=2.5" + unicodecsv: ">=0.14" + requests: ">=2.8" + click: ">=6.7" + cchardet: ">=1.0" + jsonpointer: ">=1.10" + tableschema: ">=1.1.0" + tabulator: ">=1.24.2" + url: https://conda.anaconda.org/conda-forge/noarch/datapackage-1.15.2-pyh44b312d_0.tar.bz2 + hash: + md5: 3f1a6895ab9c423cf59de7c46e56a824 + sha256: 3344e3c1ea6a1925504f7cbfba6f4be6521465baa2de6bac86769528ea1c3d0d + category: main + optional: false + - name: google-cloud-storage + version: 2.12.0 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.6" + requests: ">=2.18.0,<3.0.0dev" + google-api-core: ">=1.31.5,<3.0.0dev,!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.0" + google-cloud-core: ">=2.3.0,<3.0dev" + google-crc32c: ">=1.0,<2.0dev" + protobuf: <5.0.0dev + google-resumable-media: ">=2.6.0" + google-auth: ">=2.23.3,<3.0dev" + url: https://conda.anaconda.org/conda-forge/noarch/google-cloud-storage-2.12.0-pyhca7485f_0.conda + hash: + md5: fea9a0827d3285450ea0c4d4b78b2664 + sha256: 8d12ccec6961fbb03d05285a501d949e681c938a1a55c9acf7adf34c1af10a97 + category: main + optional: false + - name: jupyter_console + version: 6.6.3 + manager: conda + platform: linux-aarch64 + dependencies: + ipython: "" + pygments: "" + python: ">=3.7" + pyzmq: ">=17" + jupyter_core: ">=4.12,!=5.0.*" + jupyter_client: ">=7.0.0" + ipykernel: ">=6.14" + traitlets: ">=5.4" + prompt_toolkit: ">=3.0.30" + url: https://conda.anaconda.org/conda-forge/noarch/jupyter_console-6.6.3-pyhd8ed1ab_0.conda + hash: + md5: 7cf6f52a66f8e3cd9d8b6c231262dcab + sha256: 4e51764d5fe2f6e43d83bcfbcf8b4da6569721bf82eaf4d647be8717cd6be75a + category: dev + optional: true + - name: jupyter_server + version: 2.9.1 + manager: conda + platform: linux-aarch64 + dependencies: + packaging: "" + jinja2: "" + prometheus_client: "" + websocket-client: "" + argon2-cffi: "" + overrides: "" + jupyter_server_terminals: "" + python: ">=3.8" + terminado: ">=0.8.3" + jupyter_core: ">=4.12,!=5.0.*" + nbconvert-core: ">=6.4.4" + tornado: ">=6.2.0" + jupyter_client: ">=7.4.4" + nbformat: ">=5.3.0" + pyzmq: ">=24" + traitlets: ">=5.6.0" + jupyter_events: ">=0.6.0" + anyio: ">=3.1.0" + send2trash: ">=1.8.2" + url: https://conda.anaconda.org/conda-forge/noarch/jupyter_server-2.9.1-pyhd8ed1ab_0.conda + hash: + md5: 8e0cfa69e5b0062b829a9dbb14645def + sha256: bb9a60ff41085031a28204add4e6120990437cfad341db297519f0a0f0df8e18 + category: dev + optional: true + - name: nbconvert-pandoc + version: 7.9.2 + manager: conda + platform: linux-aarch64 + dependencies: + pandoc: "" + python: ">=3.8" + nbconvert-core: 7.9.2 + url: https://conda.anaconda.org/conda-forge/noarch/nbconvert-pandoc-7.9.2-pyhd8ed1ab_0.conda + hash: + md5: 1ad46253f2eb46fb8c9b2c22b7ca012f + sha256: 30e0a60a81fa70a10ba4cf1f9a2585f19bfe54c88bb53f0367aaf67a5c56bf37 + category: dev + optional: true + - name: qtconsole-base + version: 5.4.4 + manager: conda + platform: linux-aarch64 + dependencies: + packaging: "" + pygments: "" + traitlets: "" + jupyter_core: "" + ipython_genutils: "" + python: ">=3.7" + ipykernel: ">=4.1" + jupyter_client: ">=4.1" + qtpy: ">=2.4.0" + url: https://conda.anaconda.org/conda-forge/noarch/qtconsole-base-5.4.4-pyha770c72_0.conda + hash: + md5: 08961a76f2a4e2ebdb9b56f451beaa45 + sha256: 86a7705d335558b08219868069293603f4bb225ee5ca02e229dcf5f9b38da7a4 + category: dev + optional: true + - name: gcsfs + version: 2023.9.2 + manager: conda + platform: linux-aarch64 + dependencies: + requests: "" + aiohttp: "" + google-auth-oauthlib: "" + python: ">=3.7" + google-auth: ">=1.2" + decorator: ">4.1.2" + google-cloud-storage: ">1.40" + fsspec: 2023.9.2 + url: https://conda.anaconda.org/conda-forge/noarch/gcsfs-2023.9.2-pyhd8ed1ab_0.conda + hash: + md5: c9deedf93585c3d5ce5525a89bf7287e + sha256: 54a7de26739f764159e7799b83a7b4c135e684c5220a9ca853e7cfe2b6d636f6 + category: main + optional: false + - name: jupyter-lsp + version: 2.2.0 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.8" + importlib-metadata: ">=4.8.3" + jupyter_server: ">=1.1.2" + url: https://conda.anaconda.org/conda-forge/noarch/jupyter-lsp-2.2.0-pyhd8ed1ab_0.conda + hash: + md5: 38589f4104d11f2a59ff01a9f4e3bfb3 + sha256: 16fc7b40024adece716ba7227e5c123a2deccc13f946a10d9a3270493908d11c + category: dev + optional: true + - name: jupyter-resource-usage + version: 1.0.1 + manager: conda + platform: linux-aarch64 + dependencies: + python: ">=3.8" + jupyter_server: ">=2.0.0,<3" + psutil: ">=5.6.0,<6" pyzmq: ">=19" url: https://conda.anaconda.org/conda-forge/noarch/jupyter-resource-usage-1.0.1-pyhd8ed1ab_0.conda hash: @@ -7546,17 +15203,17 @@ package: - name: jupyterlab_server version: 2.25.0 manager: conda - platform: linux-64 + platform: linux-aarch64 dependencies: - babel: ">=2.10" - importlib-metadata: ">=4.8.3" + python: ">=3.8" + packaging: ">=21.3" jinja2: ">=3.0.3" - json5: ">=0.9.0" - jsonschema: ">=4.18" + importlib-metadata: ">=4.8.3" jupyter_server: ">=1.21,<3" - packaging: ">=21.3" - python: ">=3.8" + babel: ">=2.10" + json5: ">=0.9.0" requests: ">=2.31" + jsonschema: ">=4.18" url: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_server-2.25.0-pyhd8ed1ab_0.conda hash: md5: a52834fa7e3d12abc5efdf06b2097a05 @@ -7566,11 +15223,11 @@ package: - name: nbconvert version: 7.9.2 manager: conda - platform: linux-64 + platform: linux-aarch64 dependencies: + python: ">=3.8" nbconvert-core: 7.9.2 nbconvert-pandoc: 7.9.2 - python: ">=3.8" url: https://conda.anaconda.org/conda-forge/noarch/nbconvert-7.9.2-pyhd8ed1ab_0.conda hash: md5: 16ccaddfcfa0a1a606a9ecf6a52d6c11 @@ -7580,10 +15237,10 @@ package: - name: notebook-shim version: 0.2.3 manager: conda - platform: linux-64 + platform: linux-aarch64 dependencies: - jupyter_server: ">=1.8,<3" python: ">=3.7" + jupyter_server: ">=1.8,<3" url: https://conda.anaconda.org/conda-forge/noarch/notebook-shim-0.2.3-pyhd8ed1ab_0.conda hash: md5: 67e0fe74c156267d9159e9133df7fd37 @@ -7593,23 +15250,23 @@ package: - name: jupyterlab version: 4.0.7 manager: conda - platform: linux-64 + platform: linux-aarch64 dependencies: - async-lru: ">=1.0.0" - importlib_metadata: ">=4.8.3" - importlib_resources: ">=1.4" + packaging: "" + traitlets: "" + tomli: "" ipykernel: "" - jinja2: ">=3.0.3" - jupyter-lsp: ">=2.0.0" jupyter_core: "" + python: ">=3.8" + jinja2: ">=3.0.3" + tornado: ">=6.2.0" + importlib_metadata: ">=4.8.3" jupyter_server: ">=2.4.0,<3" + importlib_resources: ">=1.4" + jupyter-lsp: ">=2.0.0" + async-lru: ">=1.0.0" jupyterlab_server: ">=2.19.0,<3" notebook-shim: ">=0.2" - packaging: "" - python: ">=3.8" - tomli: "" - tornado: ">=6.2.0" - traitlets: "" url: https://conda.anaconda.org/conda-forge/noarch/jupyterlab-4.0.7-pyhd8ed1ab_0.conda hash: md5: 80318d83f33b3bf4e57b8533b7a6691d @@ -7619,14 +15276,14 @@ package: - name: notebook version: 7.0.6 manager: conda - platform: linux-64 + platform: linux-aarch64 dependencies: + python: ">=3.8" + tornado: ">=6.2.0" jupyter_server: ">=2.4.0,<3" - jupyterlab: ">=4.0.7,<5" jupyterlab_server: ">=2.22.1,<3" notebook-shim: ">=0.2,<0.3" - python: ">=3.8" - tornado: ">=6.2.0" + jupyterlab: ">=4.0.7,<5" url: https://conda.anaconda.org/conda-forge/noarch/notebook-7.0.6-pyhd8ed1ab_0.conda hash: md5: d60881c78a54cbf8042ae719f1f77a50 @@ -7636,15 +15293,15 @@ package: - name: jupyter version: 1.0.0 manager: conda - platform: linux-64 + platform: linux-aarch64 dependencies: - ipykernel: "" ipywidgets: "" - jupyter_console: "" - nbconvert: "" notebook: "" - python: ">=3.6" + ipykernel: "" + nbconvert: "" + jupyter_console: "" qtconsole-base: "" + python: ">=3.6" url: https://conda.anaconda.org/conda-forge/noarch/jupyter-1.0.0-pyhd8ed1ab_10.conda hash: md5: 056b8cc3d9b03f54fc49e6d70d7dc359 @@ -7654,13 +15311,13 @@ package: - name: sphinx-autoapi version: 3.0.0 manager: conda - platform: linux-64 + platform: linux-aarch64 dependencies: - anyascii: "" - astroid: ">=2.7" + pyyaml: "" jinja2: "" + anyascii: "" python: ">=3.8" - pyyaml: "" + astroid: ">=2.7" sphinx: ">=6.1.0" url: https://conda.anaconda.org/conda-forge/noarch/sphinx-autoapi-3.0.0-pyhd8ed1ab_0.conda hash: @@ -7671,7 +15328,7 @@ package: - name: sphinx-basic-ng version: 1.0.0b2 manager: conda - platform: linux-64 + platform: linux-aarch64 dependencies: python: ">=3.7" sphinx: ">=4.0,<8.0" @@ -7684,13 +15341,13 @@ package: - name: furo version: 2023.9.10 manager: conda - platform: linux-64 + platform: linux-aarch64 dependencies: beautifulsoup4: "" - pygments: ">=2.7" + sphinx-basic-ng: "" python: ">=3.7" + pygments: ">=2.7" sphinx: ">=6.0,<8.0" - sphinx-basic-ng: "" url: https://conda.anaconda.org/conda-forge/noarch/furo-2023.9.10-pyhd8ed1ab_0.conda hash: md5: 0dcfacf6d3e49f2957c69c81356cf892 @@ -7700,7 +15357,7 @@ package: - name: sphinx-issues version: 1.2.0 manager: conda - platform: linux-64 + platform: linux-aarch64 dependencies: python: "" sphinx: "" @@ -7713,10 +15370,10 @@ package: - name: sphinx-reredirects version: 0.1.2 manager: conda - platform: linux-64 + platform: linux-aarch64 dependencies: - python: ">=3.6" sphinx: "" + python: ">=3.6" url: https://conda.anaconda.org/conda-forge/noarch/sphinx-reredirects-0.1.2-pyhd8ed1ab_0.conda hash: md5: 30e618adaaf11aa4a98912913c62a12b @@ -7726,7 +15383,7 @@ package: - name: sphinxcontrib-applehelp version: 1.0.7 manager: conda - platform: linux-64 + platform: linux-aarch64 dependencies: python: ">=3.9" sphinx: ">=5" @@ -7739,14 +15396,14 @@ package: - name: sphinxcontrib-bibtex version: 2.6.1 manager: conda - platform: linux-64 + platform: linux-aarch64 dependencies: dataclasses: "" - docutils: ">=0.8,!=0.18.*,!=0.19.*" - importlib_metadata: ">=3.6" + python: ">=3.7" pybtex: ">=0.24" + importlib_metadata: ">=3.6" pybtex-docutils: ">=1" - python: ">=3.7" + docutils: ">=0.8,!=0.18.*,!=0.19.*" sphinx: ">=3.5" url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-bibtex-2.6.1-pyhd8ed1ab_1.conda hash: @@ -7757,7 +15414,7 @@ package: - name: sphinxcontrib-devhelp version: 1.0.5 manager: conda - platform: linux-64 + platform: linux-aarch64 dependencies: python: ">=3.9" sphinx: ">=5" @@ -7770,7 +15427,7 @@ package: - name: sphinxcontrib-htmlhelp version: 2.0.4 manager: conda - platform: linux-64 + platform: linux-aarch64 dependencies: python: ">=3.9" sphinx: ">=5" @@ -7783,7 +15440,7 @@ package: - name: sphinxcontrib-qthelp version: 1.0.6 manager: conda - platform: linux-64 + platform: linux-aarch64 dependencies: python: ">=3.9" sphinx: ">=5" @@ -7796,25 +15453,25 @@ package: - name: sphinx version: 7.2.6 manager: conda - platform: linux-64 + platform: linux-aarch64 dependencies: - alabaster: ">=0.7,<0.8" - babel: ">=2.9" - colorama: ">=0.4.5" - docutils: ">=0.18.1,<0.21" - imagesize: ">=1.3" - importlib-metadata: ">=4.8" + sphinxcontrib-jsmath: "" + sphinxcontrib-applehelp: "" + sphinxcontrib-devhelp: "" + sphinxcontrib-qthelp: "" + python: ">=3.9" jinja2: ">=3.0" packaging: ">=21.0" - pygments: ">=2.14" - python: ">=3.9" + alabaster: ">=0.7,<0.8" requests: ">=2.25.0" - snowballstemmer: ">=2.0" - sphinxcontrib-applehelp: "" - sphinxcontrib-devhelp: "" + colorama: ">=0.4.5" + pygments: ">=2.14" sphinxcontrib-htmlhelp: ">=2.0.0" - sphinxcontrib-jsmath: "" - sphinxcontrib-qthelp: "" + importlib-metadata: ">=4.8" + babel: ">=2.9" + imagesize: ">=1.3" + snowballstemmer: ">=2.0" + docutils: ">=0.18.1,<0.21" sphinxcontrib-serializinghtml: ">=1.1.9" url: https://conda.anaconda.org/conda-forge/noarch/sphinx-7.2.6-pyhd8ed1ab_0.conda hash: @@ -7825,7 +15482,7 @@ package: - name: sphinxcontrib-serializinghtml version: 1.1.9 manager: conda - platform: linux-64 + platform: linux-aarch64 dependencies: python: ">=3.9" sphinx: ">=5" @@ -7862,10 +15519,10 @@ package: manager: conda platform: osx-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/c-ares-1.20.1-h10d778d_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/c-ares-1.20.1-h10d778d_1.conda hash: - md5: cef472367265d424d83dca1e97f1d8f6 - sha256: a54b5406b7367e0f0431048725c33df7161d218d68fe4c7c3478d86fcf605e1b + md5: 0f9fe8eb46d409939d9b2a7d90a52325 + sha256: 9e99ffb7e3376188c1e0c8037982a8fdc08c5736ea28f2314c20b8846179f0fe category: main optional: false - name: ca-certificates @@ -8577,15 +16234,15 @@ package: category: main optional: false - name: openssl - version: 3.1.3 + version: 3.1.4 manager: conda platform: osx-64 dependencies: ca-certificates: "" - url: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.1.3-h8a1eda9_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.1.4-hd75f5a5_0.conda hash: - md5: 26f9b58f905547e658e9587f8e8cfe43 - sha256: 69731ce62d4b68e538af559747da53f837ae0bbca519b38f2eea28680eb9e8d1 + md5: bc9201da6eb1e0df4107901df5371347 + sha256: 1c436103a8de0dc82c9c56974badaa1b8b8f8cd9f37c2766bd50cd9899720f6b category: main optional: false - name: pcre2 @@ -9278,15 +16935,15 @@ package: category: main optional: false - name: cachetools - version: 5.3.1 + version: 5.3.2 manager: conda platform: osx-64 dependencies: python: ">=3.7" - url: https://conda.anaconda.org/conda-forge/noarch/cachetools-5.3.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/cachetools-5.3.2-pyhd8ed1ab_0.conda hash: - md5: 60b5eb16d9a7a5482ba37f67aa49db5b - sha256: 8d30a41a88900730c748f5b296730a0d48e5cfa2c8b260aab60fa9f26ffafcc0 + md5: 185cc1bf1d5af90020292888a3c7eb5d + sha256: cb8a6688d5650e4546a5f3c5b825bfe3c82594f1f588a93817f1bdb23e74baad category: main optional: false - name: cachy @@ -9365,15 +17022,15 @@ package: category: main optional: false - name: charset-normalizer - version: 3.3.0 + version: 3.3.1 manager: conda platform: osx-64 dependencies: python: ">=3.7" - url: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.3.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.3.1-pyhd8ed1ab_0.conda hash: - md5: fef8ef5f0a54546b9efee39468229917 - sha256: 3407cd21af7e85aeb9499c377e7db25d2bbb9cbaf2f47d92626b3471dca65b4c + md5: 985378f74689fccce52f158027bd9acd + sha256: a31739c49c4b1c8e0cbdec965ba152683d36ce6e23bdaefcfee99937524dabd1 category: main optional: false - name: click @@ -9438,15 +17095,15 @@ package: category: main optional: false - name: dagster-pipes - version: 1.5.3 + version: 1.5.4 manager: conda platform: osx-64 dependencies: python: ">=3.8" - url: https://conda.anaconda.org/conda-forge/noarch/dagster-pipes-1.5.3-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/dagster-pipes-1.5.4-pyhd8ed1ab_1.conda hash: - md5: f1d822044ec73e262eb9de200e8ddc9e - sha256: b50f5c65bee572e6834d778b09d9258bd5932349fdc71afcda24429183ef1cd6 + md5: e415c49419cae013a09145a3a16244ca + sha256: c84ac60663552b916422a81abd243aad60358ca32170cd564c3c6af9179dc100 category: main optional: false - name: dataclasses @@ -9650,7 +17307,7 @@ package: category: main optional: false - name: greenlet - version: 3.0.0 + version: 3.0.1 manager: conda platform: osx-64 dependencies: @@ -9658,10 +17315,10 @@ package: libcxx: ">=16.0.6" python: ">=3.11,<3.12.0a0" python_abi: 3.11.* - url: https://conda.anaconda.org/conda-forge/osx-64/greenlet-3.0.0-py311hd39e593_1.conda + url: https://conda.anaconda.org/conda-forge/osx-64/greenlet-3.0.1-py311hd39e593_0.conda hash: - md5: 792758ffcff1b6ead3e7aa9ce8c4bbff - sha256: ece78c193ba2625252fb0d849aa7b3f9deda815e807645194e7f6077decda1bc + md5: 447a2de59f80041e6f63c222d5a5e77f + sha256: 872e40b28dce3abf5d3df621a99247a79d3e642eaf1db284c8a43888e1c7f74b category: main optional: false - name: hpack @@ -10159,15 +17816,15 @@ package: category: dev optional: true - name: networkx - version: "3.1" + version: "3.2" manager: conda platform: osx-64 dependencies: - python: ">=3.8" - url: https://conda.anaconda.org/conda-forge/noarch/networkx-3.1-pyhd8ed1ab_0.conda + python: ">=3.9" + url: https://conda.anaconda.org/conda-forge/noarch/networkx-3.2-pyhd8ed1ab_1.conda hash: - md5: 254f787d5068bc89f578bf63893ce8b4 - sha256: 6b955c8530985fa727ad3323653a54af44ecf453cfdb1b549b3edff609bd3728 + md5: 522039fb968d6d0a10e872e6f3856f53 + sha256: 857dc30c287f90da1dd1c0a781a5305abb92db900fd5675c8bdd16ae339abb45 category: main optional: false - name: nh3 @@ -10597,15 +18254,14 @@ package: manager: conda platform: osx-64 dependencies: - libcxx: ">=15.0.7" libsodium: ">=1.0.18,<1.0.19.0a0" python: ">=3.11,<3.12.0a0" python_abi: 3.11.* - zeromq: ">=4.3.4,<4.4.0a0" - url: https://conda.anaconda.org/conda-forge/osx-64/pyzmq-25.1.1-py311h5dacc12_1.conda + zeromq: ">=4.3.5,<4.4.0a0" + url: https://conda.anaconda.org/conda-forge/osx-64/pyzmq-25.1.1-py311he3804a1_2.conda hash: - md5: f7199b493d4a542d7344e1f9eb5bc476 - sha256: d556deedd05013eafc5d8df2ef94b81d7f3fd655574698de78a17093b29e0a55 + md5: 9b1ea037c51fcdb06bd2d95804270860 + sha256: 7a9af16e04752c50675ca99ab06888aaf8305efb5d292f62f7268ad911c967f4 category: dev optional: true - name: regex @@ -10686,16 +18342,18 @@ package: category: dev optional: true - name: ruff - version: 0.1.1 + version: 0.1.2 manager: conda platform: osx-64 dependencies: + __osx: ">=10.9" + libcxx: ">=16.0.6" python: ">=3.11,<3.12.0a0" python_abi: 3.11.* - url: https://conda.anaconda.org/conda-forge/osx-64/ruff-0.1.1-py311ha071555_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/ruff-0.1.2-py311hec6fdf1_0.conda hash: - md5: 030342fbcd98d052376b5f66183ece01 - sha256: 0998600ece5c420a0f7460c0f935d62c42eeeb1ef838447b26694c28543d5ec5 + md5: aa5b695132c2c78232b93d80f1e5e04c + sha256: cf0b66945d13d1fa4840421ca169c4cfd68e791931f6316f528ddae6b74f9845 category: dev optional: true - name: setuptools @@ -10711,15 +18369,15 @@ package: category: main optional: false - name: shellingham - version: 1.5.3 + version: 1.5.4 manager: conda platform: osx-64 dependencies: python: ">=3.7" - url: https://conda.anaconda.org/conda-forge/noarch/shellingham-1.5.3-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/shellingham-1.5.4-pyhd8ed1ab_0.conda hash: - md5: 83795060a5d8cd12b90a58bd62bc251e - sha256: 1e204005ad00a48ab3fd67b6b154b388084ac9743b31952d2f6138cfd20dab18 + md5: d08db09a552699ee9e7eec56b4eb3899 + sha256: 3c49a0a101c41b7cf6ac05a1872d7a1f91f1b6d02eecb4a36b605a19517862bb category: main optional: false - name: simpleeval @@ -10727,12 +18385,11 @@ package: manager: conda platform: osx-64 dependencies: - python: ">=3.11,<3.12.0a0" - python_abi: 3.11.* - url: https://conda.anaconda.org/conda-forge/osx-64/simpleeval-0.9.13-py311h2725bcf_1.conda + python: ">=2.5,!=3.0.*,!=3.1.*,!=3.2.*" + url: https://conda.anaconda.org/conda-forge/noarch/simpleeval-0.9.13-pyhd8ed1ab_1.conda hash: - md5: d809ff8b7d30e34d6ec3b36c3367c604 - sha256: be5ffccef228fd8e79431a3fc663a170a663e26cc9fbfbe84805a43f0f9c0776 + md5: b3282d9b9e4a7c42d6c570492316dcaa + sha256: 5c9c537011327fc281c3c108020f1ad2a40284df0e1625a87825c0699d98f67f category: main optional: false - name: six @@ -10929,15 +18586,15 @@ package: category: dev optional: true - name: traitlets - version: 5.11.2 + version: 5.12.0 manager: conda platform: osx-64 dependencies: python: ">=3.8" - url: https://conda.anaconda.org/conda-forge/noarch/traitlets-5.11.2-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/traitlets-5.12.0-pyhd8ed1ab_0.conda hash: - md5: bd3f90f7551e1cffb1f402880eb2cef1 - sha256: 81f2675ebc2bd6016c304770c81812aab8947953b0f0cca766077b127cc7e8f1 + md5: 3ecde21191a20e0e4ab5a4d69aaaa22c + sha256: cd0709a388063aa4024fa9c721b91cac982983435ab12bf564871c27ef983e13 category: dev optional: true - name: types-python-dateutil @@ -11013,17 +18670,17 @@ package: category: dev optional: true - name: uvloop - version: 0.18.0 + version: 0.19.0 manager: conda platform: osx-64 dependencies: libuv: ">=1.46.0,<2.0a0" python: ">=3.11,<3.12.0a0" python_abi: 3.11.* - url: https://conda.anaconda.org/conda-forge/osx-64/uvloop-0.18.0-py311ha272bfe_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/uvloop-0.19.0-py311ha272bfe_0.conda hash: - md5: 5e14591ba7cc8b1b234e7a88efa52763 - sha256: feee4b973aaa116cff2968c4ce984520fc1baf9c521d19ef801fb970cbc098a4 + md5: f878c810a3665d5cca94d1da888413b3 + sha256: 40439cb32c09d961e61528b87f48e86b3ca549b26d62b8b06b7180b1a3356d9e category: main optional: false - name: validators @@ -11271,17 +18928,17 @@ package: category: main optional: false - name: babel - version: 2.13.0 + version: 2.13.1 manager: conda platform: osx-64 dependencies: setuptools: "" pytz: "" python: ">=3.7" - url: https://conda.anaconda.org/conda-forge/noarch/babel-2.13.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/babel-2.13.1-pyhd8ed1ab_0.conda hash: - md5: 22541af7a9eb59fc6afcadb7ecdf9219 - sha256: 25b0a72c9d35319307a9714b05aa5c18b5c82f8c8e7bece65778202c6b8ad2a7 + md5: 3ccff479c246692468f604df9c85ef26 + sha256: 1f955c700db16f65b16c9e9c1613436480d5497970b8030b7a9ebe1620cc2147 category: dev optional: true - name: backports.functools_lru_cache @@ -12026,20 +19683,6 @@ package: sha256: 031b8c48866f1f97a4a12d6a3ea0dc94cb6a735918871460b26f4779f5a01125 category: dev optional: true - - name: pyproject-api - version: 1.6.1 - manager: conda - platform: osx-64 - dependencies: - python: ">=3.8" - tomli: ">=2.0.1" - packaging: ">=23.1" - url: https://conda.anaconda.org/conda-forge/noarch/pyproject-api-1.6.1-pyhd8ed1ab_0.conda - hash: - md5: 1815c7974568079cf384f012de5ea1b7 - sha256: 698f4ea1c2777d6464774bdfe7aeedb9d06bbb81f552bc14e4d071fab8c59e53 - category: dev - optional: true - name: pyproject_hooks version: 1.0.0 manager: conda @@ -12054,7 +19697,7 @@ package: category: dev optional: true - name: pytest - version: 7.4.2 + version: 7.4.3 manager: conda platform: osx-64 dependencies: @@ -12065,10 +19708,10 @@ package: exceptiongroup: ">=1.0.0rc8" tomli: ">=1.0.0" pluggy: ">=0.12,<2.0" - url: https://conda.anaconda.org/conda-forge/noarch/pytest-7.4.2-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/pytest-7.4.3-pyhd8ed1ab_0.conda hash: - md5: 6dd662ff5ac9a783e5c940ce9f3fe649 - sha256: 150bfb2a86dffd4ce1e91c2d61dde5779fb3ee338675e210fec4ef508ffff28c + md5: 5bdca0aca30b0ee62bb84854e027eae0 + sha256: 14e948e620ec87d9e62a8d9c21d40084b4805a939cfee322be7d457379dc96a0 category: dev optional: true - name: python-dateutil @@ -12111,16 +19754,16 @@ package: category: main optional: false - name: qtpy - version: 2.4.0 + version: 2.4.1 manager: conda platform: osx-64 dependencies: packaging: "" python: ">=3.7" - url: https://conda.anaconda.org/conda-forge/noarch/qtpy-2.4.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/qtpy-2.4.1-pyhd8ed1ab_0.conda hash: - md5: a4c1fc5f8ef46ec8130defcaa2d322ea - sha256: 4a6a63c396009f5363173f618a79adde79c0670cf023211901cf7e10a43f71f5 + md5: 7f391bd70d2abfb70f304ba5aa4e1261 + sha256: 925bf48e747af6ceff1b073c10b12fc94ef79c88a34729059d253e43466a33f1 category: dev optional: true - name: referencing @@ -12177,7 +19820,7 @@ package: category: main optional: false - name: ruamel.yaml - version: 0.17.39 + version: 0.18.2 manager: conda platform: osx-64 dependencies: @@ -12185,10 +19828,10 @@ package: python_abi: 3.11.* ruamel.yaml.clib: ">=0.1.2" setuptools: "" - url: https://conda.anaconda.org/conda-forge/osx-64/ruamel.yaml-0.17.39-py311he705e18_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/ruamel.yaml-0.18.2-py311he705e18_0.conda hash: - md5: 597356320317d95d4b062eeefb2e31d2 - sha256: e70f0f92c4e90d90e5ca33960de2d1c5fa070b417fa7adda56f8c05f1572e4fb + md5: d9124b12baf8f22d3c723c880ff29aa5 + sha256: a32da3c396d4333ee377e1306349f5c6688c06d41efa50b9ce7af9a4fd3f5770 category: dev optional: true - name: sqlalchemy @@ -12413,7 +20056,7 @@ package: category: main optional: false - name: botocore - version: 1.31.68 + version: 1.31.70 manager: conda platform: osx-64 dependencies: @@ -12421,10 +20064,10 @@ package: python-dateutil: ">=2.1,<3.0.0" jmespath: ">=0.7.1,<2.0.0" urllib3: ">=1.25.4,<1.27" - url: https://conda.anaconda.org/conda-forge/noarch/botocore-1.31.68-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/botocore-1.31.70-pyhd8ed1ab_0.conda hash: - md5: 0bf56dadacce6f9218d88df71d3e7576 - sha256: 01496595fe3483c81b880ac68f01bc0e1e85fefb8e7c2e08d95eaf3f393e319d + md5: 0e04ee2da772c7a8df863d9084fb4445 + sha256: 045cc3ee816a0a5e48ba0090858b9d8be0a0d3f54be0976b1b0c7491903cd58b category: main optional: false - name: branca @@ -12470,18 +20113,18 @@ package: category: main optional: false - name: cryptography - version: 41.0.4 + version: 41.0.5 manager: conda platform: osx-64 dependencies: cffi: ">=1.12" - openssl: ">=3.1.3,<4.0a0" + openssl: ">=3.1.4,<4.0a0" python: ">=3.11,<3.12.0a0" python_abi: 3.11.* - url: https://conda.anaconda.org/conda-forge/osx-64/cryptography-41.0.4-py311h892b619_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/cryptography-41.0.5-py311hd51016d_0.conda hash: - md5: 2cac7e2bbfea2b26786c147e19a930e3 - sha256: 10e2aa353bc0ca2779d0e1e5dd85883f51c00c7cf04b1950987d19a1bfe0dbd5 + md5: 99f1edef251a9fe4edf620b527ee70ea + sha256: 26ee22b99771f0d338eca6299cbe866f695c544d855d5eab82539497b0a24fc1 category: main optional: false - name: fqdn @@ -12877,10 +20520,10 @@ package: proj: ">=9.3.0,<9.3.1.0a0" python: ">=3.11,<3.12.0a0" python_abi: 3.11.* - url: https://conda.anaconda.org/conda-forge/osx-64/pyproj-3.6.1-py311h7851242_2.conda + url: https://conda.anaconda.org/conda-forge/osx-64/pyproj-3.6.1-py311he36daed_3.conda hash: - md5: 52ae2a9b8f7b2bb59774902d1b703e55 - sha256: 22b16bdd9575247b2673e4bd34a554a2670d35f6d2e42168eabac993157da035 + md5: 36a5e77c81292b71619de017e0d07bd1 + sha256: e0c91ef6905c9930a57cf748d1fa6ec0a6ab4ab556f27c28360d5ff4ff495442 category: main optional: false - name: pytest-console-scripts @@ -12913,16 +20556,16 @@ package: category: dev optional: true - name: pytest-mock - version: 3.11.1 + version: 3.12.0 manager: conda platform: osx-64 dependencies: - python: ">=3.7" + python: ">=3.8" pytest: ">=5.0" - url: https://conda.anaconda.org/conda-forge/noarch/pytest-mock-3.11.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/pytest-mock-3.12.0-pyhd8ed1ab_0.conda hash: - md5: fcd2531bc3e492657aeb042349aeaf8a - sha256: d2f6a46fe31dea91b427bcc57302edc345eb763caf3c6b6dcd09b2aee002324b + md5: ac9fedc9a0c397f2318e82525491dd83 + sha256: 58d3bd93a0cf9b51ac105de1e01b1fcd1fcfa5993023b67658344e329b02d6e0 category: dev optional: true - name: python-build @@ -13633,7 +21276,7 @@ package: category: main optional: false - name: virtualenv - version: 20.24.4 + version: 20.24.6 manager: conda platform: osx-64 dependencies: @@ -13641,14 +21284,14 @@ package: distlib: <1,>=0.3.7 filelock: <4,>=3.12.2 platformdirs: <4,>=3.9.1 - url: https://conda.anaconda.org/conda-forge/noarch/virtualenv-20.24.4-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/virtualenv-20.24.6-pyhd8ed1ab_0.conda hash: - md5: c3feaf947264a59a125e8c26e98c3c5a - sha256: 85c96449202ca87ec12783d8675b3655b4cd7b7afe49f2dc37d743adb0ed177f + md5: fb1fc875719e217ed799a7aae11d3be4 + sha256: 09492f89a22dc17d9b32f2a791deee93d06e99fb312c3d47430fe35343b7fbde category: dev optional: true - name: arelle-release - version: 2.16.1 + version: 2.16.3 manager: conda platform: osx-64 dependencies: @@ -13660,10 +21303,10 @@ package: lxml: 4.* openpyxl: 3.* pyparsing: 3.* - url: https://conda.anaconda.org/conda-forge/noarch/arelle-release-2.16.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/arelle-release-2.16.3-pyhd8ed1ab_0.conda hash: - md5: 8b03e47972a8e0759dce09378c962d3d - sha256: bbdaca39a19f3790dff27e573fc263ab650a45f3813147d5b01e8bb02c61fd81 + md5: cc1662776e4169d33d24aeb34af074e8 + sha256: 9f9daff44b2099904135c0f3478246e55123b15bba0252e24fec0366d88c293a category: main optional: false - name: aws-sdk-cpp @@ -13687,18 +21330,18 @@ package: category: main optional: false - name: boto3 - version: 1.28.68 + version: 1.28.70 manager: conda platform: osx-64 dependencies: python: ">=3.7" jmespath: ">=0.7.1,<2.0.0" s3transfer: ">=0.7.0,<0.8.0" - botocore: ">=1.31.68,<1.32.0" - url: https://conda.anaconda.org/conda-forge/noarch/boto3-1.28.68-pyhd8ed1ab_0.conda + botocore: ">=1.31.70,<1.32.0" + url: https://conda.anaconda.org/conda-forge/noarch/boto3-1.28.70-pyhd8ed1ab_0.conda hash: - md5: 4b81c7adfe8551654cf528e3d708b326 - sha256: 0d7f5949867a06e86855e1dc67fb7c6118b8410e4bc69dc44bd05c237716642c + md5: cdc672d21bb4f620c4ee6cd83fd9aec7 + sha256: 3d53ab4af8016b2d807e329e05e8aa6c32ffa166ccfacac023110df41b81fad4 category: main optional: false - name: bottleneck @@ -13745,7 +21388,7 @@ package: category: main optional: false - name: dagster - version: 1.5.3 + version: 1.5.4 manager: conda platform: osx-64 dependencies: @@ -13777,12 +21420,12 @@ package: protobuf: ">=3.20.0" grpcio: ">=1.44.0" alembic: ">=1.2.1,!=1.6.3,!=1.7.0,!=1.11.0" - dagster-pipes: ">=1.5.3,<1.5.4.0a0" pydantic: ">1.10.0,!=1.10.7,<2.0.0" - url: https://conda.anaconda.org/conda-forge/noarch/dagster-1.5.3-pyhd8ed1ab_1.conda + dagster-pipes: ">=1.5.4,<1.5.5.0a0" + url: https://conda.anaconda.org/conda-forge/noarch/dagster-1.5.4-pyhd8ed1ab_1.conda hash: - md5: 269916d868c11d9790d340a6587708bb - sha256: d8bd233701add17c17fc0a46819587311604a197bb1b28b20f88cf7aedcf8b06 + md5: d3f90ca494ebd4495c32a30f337f8258 + sha256: dac4c049b3464a3b5e0ad53bdb0209c443e7d52eca4cba6f1545f6a1089d73df category: main optional: false - name: datasette @@ -13832,17 +21475,17 @@ package: category: docs optional: true - name: email-validator - version: 2.0.0.post2 + version: 2.1.0.post1 manager: conda platform: osx-64 dependencies: python: ">=3.7" idna: ">=2.0.0" dnspython: ">=2.0.0" - url: https://conda.anaconda.org/conda-forge/noarch/email-validator-2.0.0.post2-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/email-validator-2.1.0.post1-pyhd8ed1ab_0.conda hash: - md5: af9f5d81309e51c05b5964f9573c2cc0 - sha256: abe8703c189827b2036064b9e4fa108b95baf286e9ff2e3f7aca247054bc2a76 + md5: 192fe8f657c763c6120d9f8592055847 + sha256: 0b2e503da10648e2fa8d13035ddda174a549732c4f17476363882ebf67867283 category: main optional: false - name: folium @@ -13982,7 +21625,7 @@ package: category: dev optional: true - name: jupyter_client - version: 8.4.0 + version: 8.5.0 manager: conda platform: osx-64 dependencies: @@ -13993,10 +21636,10 @@ package: pyzmq: ">=23.0" importlib_metadata: ">=4.8.3" tornado: ">=6.2" - url: https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.4.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.5.0-pyhd8ed1ab_0.conda hash: - md5: 554496685357ab0d69676cab8e8fb594 - sha256: e964a43ea1c587e1868aa19d4d6dec43887e1a6f19f4a0b7e558d4d4aa5e7e6e + md5: 77e442cb7c382d01c916f91a8652811a + sha256: e4478e137e0975ce94ef4ee6e4a6736afaf4a00e99bc8007a275bcb39fe728d9 category: dev optional: true - name: nbformat @@ -14144,30 +21787,6 @@ package: sha256: 240cca365e75d5f5aa09ee62c95813288d3652f666a1ab227015195316b8f9fe category: main optional: false - - name: tox - version: 4.11.3 - manager: conda - platform: osx-64 - dependencies: - python: ">=3.8" - tomli: ">=2.0.1" - colorama: ">=0.4.6" - packaging: ">=23.1" - typing-extensions: ">=4.7.1" - cachetools: ">=5.3.1" - platformdirs: ">=3.10" - chardet: ">=5.2" - importlib_metadata: ">=6.8" - virtualenv: ">=20.24.3" - filelock: ">=3.12.3" - pluggy: ">=1.3" - pyproject-api: ">=1.6.1" - url: https://conda.anaconda.org/conda-forge/noarch/tox-4.11.3-pyhd8ed1ab_0.conda - hash: - md5: 9ad1597140aa28f50fee5567775057dc - sha256: 160180a1755715c404176fa147f9f06adb8806f68193297b6e572784023f8b2d - category: dev - optional: true - name: twine version: 4.0.2 manager: conda @@ -14195,8 +21814,8 @@ package: platform: osx-64 dependencies: sqlalchemy: ">=1.4,<3" - python: ">=3.10,<3.12" lxml: ">=4.9.1,<5" + python: ">=3.10,<3.12" coloredlogs: ">=14.0,<15.1" frictionless: ">=4.4,<5" numpy: ">=1.16,<2" @@ -14211,7 +21830,7 @@ package: category: main optional: false - name: conda-lock - version: 2.4.0 + version: 2.4.1 manager: conda platform: osx-64 dependencies: @@ -14239,27 +21858,27 @@ package: toolz: ">=0.12.0,<1.0.0" cachecontrol-with-filecache: ">=0.12.9" urllib3: ">=1.26.5,<2.0" - url: https://conda.anaconda.org/conda-forge/noarch/conda-lock-2.4.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/conda-lock-2.4.1-pyhd8ed1ab_0.conda hash: - md5: edcd5c7565a5cd1c7862a911a899fb20 - sha256: f3829c7be0d0b37c4a7146cf65123c23cd37b1c21fc051cc93c812d5bc8d4ff7 + md5: deb6e2f8d8b4de933563cc681165b833 + sha256: 08cd768d033db260e043982ba91de007213adbde5210a76fd2decad3c135e666 category: dev optional: true - name: dagster-graphql - version: 1.5.3 + version: 1.5.4 manager: conda platform: osx-64 dependencies: requests: "" starlette: "" python: ">=3.8" - dagster: ">=1.5.3,<1.5.4.0a0" graphene: ">=3" + dagster: ">=1.5.4,<1.5.5.0a0" gql-with-requests: ">=3.0.0" - url: https://conda.anaconda.org/conda-forge/noarch/dagster-graphql-1.5.3-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/dagster-graphql-1.5.4-pyhd8ed1ab_1.conda hash: - md5: 9c67172e4c79a12d965f17d650b5336b - sha256: b86e95381c8e85618c3a6424e9f42fffa381bd0993105e8645b44ca5b5b41080 + md5: 8bc6d9ce80023e7a51130301737a3a47 + sha256: ac0b6dbbbd0bc91e40eacf68e9f5469c3e1194cd463405bd943c8383eadb75ee category: main optional: false - name: fiona @@ -14456,7 +22075,7 @@ package: category: dev optional: true - name: scikit-learn - version: 1.3.1 + version: 1.3.2 manager: conda platform: osx-64 dependencies: @@ -14469,10 +22088,10 @@ package: python_abi: 3.11.* scipy: "" threadpoolctl: ">=2.0.0" - url: https://conda.anaconda.org/conda-forge/osx-64/scikit-learn-1.3.1-py311h66081b9_1.conda + url: https://conda.anaconda.org/conda-forge/osx-64/scikit-learn-1.3.2-py311h66081b9_1.conda hash: - md5: d4f5fabfaa9b000f30e0de5c5d42b8d6 - sha256: 0c9c86ea9bdd1e3c3f2c076e44cc900f43c37f97e857f293487748a35d48ae85 + md5: a7053f3e86b6b9139593a027c54e3097 + sha256: 0b4aee092d4689d07aa95ed1d1071eeb74a5e011d34bc9ebd9b27e9b2166db7e category: main optional: false - name: tabulator @@ -14517,7 +22136,7 @@ package: category: main optional: false - name: dagster-webserver - version: 1.5.3 + version: 1.5.4 manager: conda platform: osx-64 dependencies: @@ -14525,12 +22144,12 @@ package: uvicorn-standard: "" python: ">=3.8" click: ">=7.0,<9.0" - dagster: ">=1.5.3,<1.5.4.0a0" - dagster-graphql: ">=1.5.3,<1.5.4.0a0" - url: https://conda.anaconda.org/conda-forge/noarch/dagster-webserver-1.5.3-pyhd8ed1ab_1.conda + dagster: ">=1.5.4,<1.5.5.0a0" + dagster-graphql: ">=1.5.4,<1.5.5.0a0" + url: https://conda.anaconda.org/conda-forge/noarch/dagster-webserver-1.5.4-pyhd8ed1ab_1.conda hash: - md5: 821b36bfafdd03da8af532b6a9518fe9 - sha256: e9415290d38ae4ba05c2de3808cb035376e4091b1d49162eae04d64defc6965d + md5: 2f2da26ea9a7ceeca97d8368120794d8 + sha256: 3eac291e2b8e200ecb4cb5bbd541e9c3465c9e61854bc6774c5850f8e9c1758e category: main optional: false - name: google-cloud-core @@ -14564,7 +22183,7 @@ package: category: dev optional: true - name: ipykernel - version: 6.25.2 + version: 6.26.0 manager: conda platform: osx-64 dependencies: @@ -14583,10 +22202,10 @@ package: comm: ">=0.1.1" pyzmq: ">=20" traitlets: ">=5.4.0" - url: https://conda.anaconda.org/conda-forge/noarch/ipykernel-6.25.2-pyh1050b4e_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/ipykernel-6.26.0-pyh3cd1d5f_0.conda hash: - md5: a643e6f6c33ed821664f2a69f6e4e89f - sha256: f99ab5cbbe2f349ff2f7842ee1ab710e15b27d6140e8b1356098bbbba2e6370c + md5: 3c6e2148d30e6a762d8327a433ebfb5a + sha256: be9927d47fe23cc4d2a09d252e37e1e56ffb137767d2c0577ed882ead16f75fa category: dev optional: true - name: ipywidgets @@ -14788,7 +22407,7 @@ package: category: dev optional: true - name: jupyter_server - version: 2.8.0 + version: 2.9.1 manager: conda platform: osx-64 dependencies: @@ -14811,10 +22430,10 @@ package: jupyter_events: ">=0.6.0" anyio: ">=3.1.0" send2trash: ">=1.8.2" - url: https://conda.anaconda.org/conda-forge/noarch/jupyter_server-2.8.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyter_server-2.9.1-pyhd8ed1ab_0.conda hash: - md5: a750b082b9319e96556df4ee6023b068 - sha256: e781e971220fa2d1801446c6d76873c678479b17ef53a9b157dc5f5ee7f6aab5 + md5: 8e0cfa69e5b0062b829a9dbb14645def + sha256: bb9a60ff41085031a28204add4e6120990437cfad341db297519f0a0f0df8e18 category: dev optional: true - name: nbconvert-pandoc @@ -15160,8 +22779,8 @@ package: sphinxcontrib-qthelp: "" python: ">=3.9" jinja2: ">=3.0" - alabaster: ">=0.7,<0.8" packaging: ">=21.0" + alabaster: ">=0.7,<0.8" requests: ">=2.25.0" colorama: ">=0.4.5" pygments: ">=2.14" @@ -15218,10 +22837,10 @@ package: manager: conda platform: osx-arm64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-arm64/c-ares-1.20.1-h93a5062_0.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/c-ares-1.20.1-h93a5062_1.conda hash: - md5: ff730651c34139afe7d29e3e8b8481e2 - sha256: cc929cacc6c92e4bb8bd9c05e749d3cb32ead1dea632f0f9a4704571b696dd1a + md5: 2bb255dbcb73d1986e03cc5a7767c0bf + sha256: 9f588eb920a793c6501120ed198d34afba763b2b2c0ae6de518c3735aea21d5e category: main optional: false - name: ca-certificates @@ -15933,15 +23552,15 @@ package: category: main optional: false - name: openssl - version: 3.1.3 + version: 3.1.4 manager: conda platform: osx-arm64 dependencies: ca-certificates: "" - url: https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.1.3-h53f4e23_0.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.1.4-h0d3ecfb_0.conda hash: - md5: 40d01d3f39589f54b618ddd28a5a48cb - sha256: d9af6208610d4985322b8eade79215f1ded6e2a2b41b0a885714b971a36a5bae + md5: 5a89552fececf4cd99628318ccbb67a3 + sha256: 3c715b1d4940c7ad6065935db18924b85a54048dde066f963cfc250340639457 category: main optional: false - name: pcre2 @@ -16633,15 +24252,15 @@ package: category: main optional: false - name: cachetools - version: 5.3.1 + version: 5.3.2 manager: conda platform: osx-arm64 dependencies: python: ">=3.7" - url: https://conda.anaconda.org/conda-forge/noarch/cachetools-5.3.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/cachetools-5.3.2-pyhd8ed1ab_0.conda hash: - md5: 60b5eb16d9a7a5482ba37f67aa49db5b - sha256: 8d30a41a88900730c748f5b296730a0d48e5cfa2c8b260aab60fa9f26ffafcc0 + md5: 185cc1bf1d5af90020292888a3c7eb5d + sha256: cb8a6688d5650e4546a5f3c5b825bfe3c82594f1f588a93817f1bdb23e74baad category: main optional: false - name: cachy @@ -16720,15 +24339,15 @@ package: category: main optional: false - name: charset-normalizer - version: 3.3.0 + version: 3.3.1 manager: conda platform: osx-arm64 dependencies: python: ">=3.7" - url: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.3.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.3.1-pyhd8ed1ab_0.conda hash: - md5: fef8ef5f0a54546b9efee39468229917 - sha256: 3407cd21af7e85aeb9499c377e7db25d2bbb9cbaf2f47d92626b3471dca65b4c + md5: 985378f74689fccce52f158027bd9acd + sha256: a31739c49c4b1c8e0cbdec965ba152683d36ce6e23bdaefcfee99937524dabd1 category: main optional: false - name: click @@ -16793,15 +24412,15 @@ package: category: main optional: false - name: dagster-pipes - version: 1.5.3 + version: 1.5.4 manager: conda platform: osx-arm64 dependencies: python: ">=3.8" - url: https://conda.anaconda.org/conda-forge/noarch/dagster-pipes-1.5.3-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/dagster-pipes-1.5.4-pyhd8ed1ab_1.conda hash: - md5: f1d822044ec73e262eb9de200e8ddc9e - sha256: b50f5c65bee572e6834d778b09d9258bd5932349fdc71afcda24429183ef1cd6 + md5: e415c49419cae013a09145a3a16244ca + sha256: c84ac60663552b916422a81abd243aad60358ca32170cd564c3c6af9179dc100 category: main optional: false - name: dataclasses @@ -17005,7 +24624,7 @@ package: category: main optional: false - name: greenlet - version: 3.0.0 + version: 3.0.1 manager: conda platform: osx-arm64 dependencies: @@ -17013,10 +24632,10 @@ package: libcxx: ">=16.0.6" python: ">=3.11,<3.12.0a0" python_abi: 3.11.* - url: https://conda.anaconda.org/conda-forge/osx-arm64/greenlet-3.0.0-py311hbaf5611_1.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/greenlet-3.0.1-py311hbaf5611_0.conda hash: - md5: 00941a98060962ad40a3ce2317fb5e62 - sha256: e4b2ef3d8ef232b7221500710c38329f0086f5d2c96c3d98477dc57b7a473312 + md5: 9136cd518f65a952b2a37c80645ef610 + sha256: 6c8e2e5024ee26099d396a95a55c49ffe3eb8985c764ce875e95f01711f4c2a7 category: main optional: false - name: hpack @@ -17514,15 +25133,15 @@ package: category: dev optional: true - name: networkx - version: "3.1" + version: "3.2" manager: conda platform: osx-arm64 dependencies: - python: ">=3.8" - url: https://conda.anaconda.org/conda-forge/noarch/networkx-3.1-pyhd8ed1ab_0.conda + python: ">=3.9" + url: https://conda.anaconda.org/conda-forge/noarch/networkx-3.2-pyhd8ed1ab_1.conda hash: - md5: 254f787d5068bc89f578bf63893ce8b4 - sha256: 6b955c8530985fa727ad3323653a54af44ecf453cfdb1b549b3edff609bd3728 + md5: 522039fb968d6d0a10e872e6f3856f53 + sha256: 857dc30c287f90da1dd1c0a781a5305abb92db900fd5675c8bdd16ae339abb45 category: main optional: false - name: nh3 @@ -17952,15 +25571,14 @@ package: manager: conda platform: osx-arm64 dependencies: - libcxx: ">=15.0.7" libsodium: ">=1.0.18,<1.0.19.0a0" python: ">=3.11,<3.12.0a0" python_abi: 3.11.* - zeromq: ">=4.3.4,<4.4.0a0" - url: https://conda.anaconda.org/conda-forge/osx-arm64/pyzmq-25.1.1-py311hb1af645_1.conda + zeromq: ">=4.3.5,<4.4.0a0" + url: https://conda.anaconda.org/conda-forge/osx-arm64/pyzmq-25.1.1-py311he9c0408_2.conda hash: - md5: 805fa87be04adc49c3d04cbf266f4552 - sha256: d4ce1a1e201c3db2fbda54799ead8be1a40c870060ebd34889cba5998414947a + md5: 51b7458a36011c4982261478fcc62026 + sha256: 03b78fe912c02547b284bc3404194bb4c1d9a2680e4b46f45c131a0d13d10b48 category: dev optional: true - name: regex @@ -18041,16 +25659,18 @@ package: category: dev optional: true - name: ruff - version: 0.1.1 + version: 0.1.2 manager: conda platform: osx-arm64 dependencies: + __osx: ">=10.9" + libcxx: ">=16.0.6" python: ">=3.11,<3.12.0a0" python_abi: 3.11.* - url: https://conda.anaconda.org/conda-forge/osx-arm64/ruff-0.1.1-py311h8c97afb_0.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/ruff-0.1.2-py311h6fc163c_0.conda hash: - md5: c8c14a5132e90532e2908dac2d138546 - sha256: 40c4f9e69c902957a90abff3355fdafbeae2d63913255cc0a34898b9eba3e988 + md5: 4eae3a2a9b8ae663b4c0c599221d088d + sha256: 4eaab7aaa52989e02e5ed672c16a0da3237e3c24a412f25246ef66e08d7abbf9 category: dev optional: true - name: setuptools @@ -18066,15 +25686,15 @@ package: category: main optional: false - name: shellingham - version: 1.5.3 + version: 1.5.4 manager: conda platform: osx-arm64 dependencies: python: ">=3.7" - url: https://conda.anaconda.org/conda-forge/noarch/shellingham-1.5.3-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/shellingham-1.5.4-pyhd8ed1ab_0.conda hash: - md5: 83795060a5d8cd12b90a58bd62bc251e - sha256: 1e204005ad00a48ab3fd67b6b154b388084ac9743b31952d2f6138cfd20dab18 + md5: d08db09a552699ee9e7eec56b4eb3899 + sha256: 3c49a0a101c41b7cf6ac05a1872d7a1f91f1b6d02eecb4a36b605a19517862bb category: main optional: false - name: simpleeval @@ -18082,12 +25702,11 @@ package: manager: conda platform: osx-arm64 dependencies: - python: ">=3.11,<3.12.0a0" - python_abi: 3.11.* - url: https://conda.anaconda.org/conda-forge/osx-arm64/simpleeval-0.9.13-py311heffc1b2_1.conda + python: ">=2.5,!=3.0.*,!=3.1.*,!=3.2.*" + url: https://conda.anaconda.org/conda-forge/noarch/simpleeval-0.9.13-pyhd8ed1ab_1.conda hash: - md5: e5d9d5e88acf793be6858a38eeec6d77 - sha256: 92bba3e7442ed68390e8ea292a95ed4b34644454a2ada1ef134e85574ee6e973 + md5: b3282d9b9e4a7c42d6c570492316dcaa + sha256: 5c9c537011327fc281c3c108020f1ad2a40284df0e1625a87825c0699d98f67f category: main optional: false - name: six @@ -18284,15 +25903,15 @@ package: category: dev optional: true - name: traitlets - version: 5.11.2 + version: 5.12.0 manager: conda platform: osx-arm64 dependencies: python: ">=3.8" - url: https://conda.anaconda.org/conda-forge/noarch/traitlets-5.11.2-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/traitlets-5.12.0-pyhd8ed1ab_0.conda hash: - md5: bd3f90f7551e1cffb1f402880eb2cef1 - sha256: 81f2675ebc2bd6016c304770c81812aab8947953b0f0cca766077b127cc7e8f1 + md5: 3ecde21191a20e0e4ab5a4d69aaaa22c + sha256: cd0709a388063aa4024fa9c721b91cac982983435ab12bf564871c27ef983e13 category: dev optional: true - name: types-python-dateutil @@ -18368,17 +25987,17 @@ package: category: dev optional: true - name: uvloop - version: 0.18.0 + version: 0.19.0 manager: conda platform: osx-arm64 dependencies: libuv: ">=1.46.0,<2.0a0" python: ">=3.11,<3.12.0a0" python_abi: 3.11.* - url: https://conda.anaconda.org/conda-forge/osx-arm64/uvloop-0.18.0-py311h05b510d_0.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/uvloop-0.19.0-py311h05b510d_0.conda hash: - md5: ecd47f4958b5db080dc2124249b9e01a - sha256: 4d93d6c30bf842962b34532798cebe5107a7b97fa46fd95057ded09107bc4582 + md5: 41568c5b89355b556470de5c41a97c92 + sha256: 631554f96f48818f4b055b2046e35c5072582740074c251fa7fa4f5d9eb527cb category: main optional: false - name: validators @@ -18626,17 +26245,17 @@ package: category: main optional: false - name: babel - version: 2.13.0 + version: 2.13.1 manager: conda platform: osx-arm64 dependencies: setuptools: "" pytz: "" python: ">=3.7" - url: https://conda.anaconda.org/conda-forge/noarch/babel-2.13.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/babel-2.13.1-pyhd8ed1ab_0.conda hash: - md5: 22541af7a9eb59fc6afcadb7ecdf9219 - sha256: 25b0a72c9d35319307a9714b05aa5c18b5c82f8c8e7bece65778202c6b8ad2a7 + md5: 3ccff479c246692468f604df9c85ef26 + sha256: 1f955c700db16f65b16c9e9c1613436480d5497970b8030b7a9ebe1620cc2147 category: dev optional: true - name: backports.functools_lru_cache @@ -19379,20 +26998,6 @@ package: sha256: d3bb68f8da77bffad5fa690d2cc1aeb0be0608ed0b6e08a96d8fc3613f2e7135 category: dev optional: true - - name: pyproject-api - version: 1.6.1 - manager: conda - platform: osx-arm64 - dependencies: - python: ">=3.8" - tomli: ">=2.0.1" - packaging: ">=23.1" - url: https://conda.anaconda.org/conda-forge/noarch/pyproject-api-1.6.1-pyhd8ed1ab_0.conda - hash: - md5: 1815c7974568079cf384f012de5ea1b7 - sha256: 698f4ea1c2777d6464774bdfe7aeedb9d06bbb81f552bc14e4d071fab8c59e53 - category: dev - optional: true - name: pyproject_hooks version: 1.0.0 manager: conda @@ -19407,7 +27012,7 @@ package: category: dev optional: true - name: pytest - version: 7.4.2 + version: 7.4.3 manager: conda platform: osx-arm64 dependencies: @@ -19418,10 +27023,10 @@ package: exceptiongroup: ">=1.0.0rc8" tomli: ">=1.0.0" pluggy: ">=0.12,<2.0" - url: https://conda.anaconda.org/conda-forge/noarch/pytest-7.4.2-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/pytest-7.4.3-pyhd8ed1ab_0.conda hash: - md5: 6dd662ff5ac9a783e5c940ce9f3fe649 - sha256: 150bfb2a86dffd4ce1e91c2d61dde5779fb3ee338675e210fec4ef508ffff28c + md5: 5bdca0aca30b0ee62bb84854e027eae0 + sha256: 14e948e620ec87d9e62a8d9c21d40084b4805a939cfee322be7d457379dc96a0 category: dev optional: true - name: python-dateutil @@ -19464,16 +27069,16 @@ package: category: main optional: false - name: qtpy - version: 2.4.0 + version: 2.4.1 manager: conda platform: osx-arm64 dependencies: packaging: "" python: ">=3.7" - url: https://conda.anaconda.org/conda-forge/noarch/qtpy-2.4.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/qtpy-2.4.1-pyhd8ed1ab_0.conda hash: - md5: a4c1fc5f8ef46ec8130defcaa2d322ea - sha256: 4a6a63c396009f5363173f618a79adde79c0670cf023211901cf7e10a43f71f5 + md5: 7f391bd70d2abfb70f304ba5aa4e1261 + sha256: 925bf48e747af6ceff1b073c10b12fc94ef79c88a34729059d253e43466a33f1 category: dev optional: true - name: referencing @@ -19530,7 +27135,7 @@ package: category: main optional: false - name: ruamel.yaml - version: 0.17.39 + version: 0.18.2 manager: conda platform: osx-arm64 dependencies: @@ -19538,10 +27143,10 @@ package: python_abi: 3.11.* ruamel.yaml.clib: ">=0.1.2" setuptools: "" - url: https://conda.anaconda.org/conda-forge/osx-arm64/ruamel.yaml-0.17.39-py311h05b510d_0.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/ruamel.yaml-0.18.2-py311h05b510d_0.conda hash: - md5: c45eccc5b446d3ae3fbf676c96f4c0e7 - sha256: 6b64b99317fca397ad28dc120824095e4218cd10909afc541e682edb7f418084 + md5: edc947ab24f5d309eb02da22ea00aa0c + sha256: 0bcd847b1adcb5adaf1b685f44166a80d0e26a39f27652796ddbb955001e4bc1 category: dev optional: true - name: sqlalchemy @@ -19766,7 +27371,7 @@ package: category: main optional: false - name: botocore - version: 1.31.68 + version: 1.31.70 manager: conda platform: osx-arm64 dependencies: @@ -19774,10 +27379,10 @@ package: python-dateutil: ">=2.1,<3.0.0" jmespath: ">=0.7.1,<2.0.0" urllib3: ">=1.25.4,<1.27" - url: https://conda.anaconda.org/conda-forge/noarch/botocore-1.31.68-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/botocore-1.31.70-pyhd8ed1ab_0.conda hash: - md5: 0bf56dadacce6f9218d88df71d3e7576 - sha256: 01496595fe3483c81b880ac68f01bc0e1e85fefb8e7c2e08d95eaf3f393e319d + md5: 0e04ee2da772c7a8df863d9084fb4445 + sha256: 045cc3ee816a0a5e48ba0090858b9d8be0a0d3f54be0976b1b0c7491903cd58b category: main optional: false - name: branca @@ -19823,18 +27428,18 @@ package: category: main optional: false - name: cryptography - version: 41.0.4 + version: 41.0.5 manager: conda platform: osx-arm64 dependencies: cffi: ">=1.12" - openssl: ">=3.1.3,<4.0a0" + openssl: ">=3.1.4,<4.0a0" python: ">=3.11,<3.12.0a0" python_abi: 3.11.* - url: https://conda.anaconda.org/conda-forge/osx-arm64/cryptography-41.0.4-py311h5fb2c35_0.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/cryptography-41.0.5-py311h71175c2_0.conda hash: - md5: 76a0ffd24b7bf5a2cf58a35141e0d92d - sha256: d84db72e0d24941d10456a1ccf317dce529bfe99ea4c28f9704c0bec1b23364b + md5: adc55f424334b834098d50e57efe0789 + sha256: 00c9b389b51b6e951a1f639aa04dceca9e329e144275c79b4f6baacd3fb90345 category: main optional: false - name: fqdn @@ -20230,10 +27835,10 @@ package: proj: ">=9.3.0,<9.3.1.0a0" python: ">=3.11,<3.12.0a0" python_abi: 3.11.* - url: https://conda.anaconda.org/conda-forge/osx-arm64/pyproj-3.6.1-py311he1f72a7_2.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/pyproj-3.6.1-py311h20a9b75_3.conda hash: - md5: a1ffdd1f98f2a73f91195e1667c35406 - sha256: 5001bc4e6e5cdb86245cca5a54bd633659b8bce4009e41fe4190a5680a4237bb + md5: 8814c7718c4e16d26d937d401a349999 + sha256: c23285357c7de29f4f49e28df14cbf15c9df1de9254409ee9784bac1233dfb44 category: main optional: false - name: pytest-console-scripts @@ -20266,16 +27871,16 @@ package: category: dev optional: true - name: pytest-mock - version: 3.11.1 + version: 3.12.0 manager: conda platform: osx-arm64 dependencies: - python: ">=3.7" + python: ">=3.8" pytest: ">=5.0" - url: https://conda.anaconda.org/conda-forge/noarch/pytest-mock-3.11.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/pytest-mock-3.12.0-pyhd8ed1ab_0.conda hash: - md5: fcd2531bc3e492657aeb042349aeaf8a - sha256: d2f6a46fe31dea91b427bcc57302edc345eb763caf3c6b6dcd09b2aee002324b + md5: ac9fedc9a0c397f2318e82525491dd83 + sha256: 58d3bd93a0cf9b51ac105de1e01b1fcd1fcfa5993023b67658344e329b02d6e0 category: dev optional: true - name: python-build @@ -20985,7 +28590,7 @@ package: category: main optional: false - name: virtualenv - version: 20.24.4 + version: 20.24.6 manager: conda platform: osx-arm64 dependencies: @@ -20993,14 +28598,14 @@ package: distlib: <1,>=0.3.7 filelock: <4,>=3.12.2 platformdirs: <4,>=3.9.1 - url: https://conda.anaconda.org/conda-forge/noarch/virtualenv-20.24.4-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/virtualenv-20.24.6-pyhd8ed1ab_0.conda hash: - md5: c3feaf947264a59a125e8c26e98c3c5a - sha256: 85c96449202ca87ec12783d8675b3655b4cd7b7afe49f2dc37d743adb0ed177f + md5: fb1fc875719e217ed799a7aae11d3be4 + sha256: 09492f89a22dc17d9b32f2a791deee93d06e99fb312c3d47430fe35343b7fbde category: dev optional: true - name: arelle-release - version: 2.16.1 + version: 2.16.3 manager: conda platform: osx-arm64 dependencies: @@ -21012,10 +28617,10 @@ package: lxml: 4.* openpyxl: 3.* pyparsing: 3.* - url: https://conda.anaconda.org/conda-forge/noarch/arelle-release-2.16.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/arelle-release-2.16.3-pyhd8ed1ab_0.conda hash: - md5: 8b03e47972a8e0759dce09378c962d3d - sha256: bbdaca39a19f3790dff27e573fc263ab650a45f3813147d5b01e8bb02c61fd81 + md5: cc1662776e4169d33d24aeb34af074e8 + sha256: 9f9daff44b2099904135c0f3478246e55123b15bba0252e24fec0366d88c293a category: main optional: false - name: aws-sdk-cpp @@ -21039,18 +28644,18 @@ package: category: main optional: false - name: boto3 - version: 1.28.68 + version: 1.28.70 manager: conda platform: osx-arm64 dependencies: python: ">=3.7" jmespath: ">=0.7.1,<2.0.0" s3transfer: ">=0.7.0,<0.8.0" - botocore: ">=1.31.68,<1.32.0" - url: https://conda.anaconda.org/conda-forge/noarch/boto3-1.28.68-pyhd8ed1ab_0.conda + botocore: ">=1.31.70,<1.32.0" + url: https://conda.anaconda.org/conda-forge/noarch/boto3-1.28.70-pyhd8ed1ab_0.conda hash: - md5: 4b81c7adfe8551654cf528e3d708b326 - sha256: 0d7f5949867a06e86855e1dc67fb7c6118b8410e4bc69dc44bd05c237716642c + md5: cdc672d21bb4f620c4ee6cd83fd9aec7 + sha256: 3d53ab4af8016b2d807e329e05e8aa6c32ffa166ccfacac023110df41b81fad4 category: main optional: false - name: bottleneck @@ -21097,7 +28702,7 @@ package: category: main optional: false - name: dagster - version: 1.5.3 + version: 1.5.4 manager: conda platform: osx-arm64 dependencies: @@ -21129,12 +28734,12 @@ package: protobuf: ">=3.20.0" grpcio: ">=1.44.0" alembic: ">=1.2.1,!=1.6.3,!=1.7.0,!=1.11.0" - dagster-pipes: ">=1.5.3,<1.5.4.0a0" pydantic: ">1.10.0,!=1.10.7,<2.0.0" - url: https://conda.anaconda.org/conda-forge/noarch/dagster-1.5.3-pyhd8ed1ab_1.conda + dagster-pipes: ">=1.5.4,<1.5.5.0a0" + url: https://conda.anaconda.org/conda-forge/noarch/dagster-1.5.4-pyhd8ed1ab_1.conda hash: - md5: 269916d868c11d9790d340a6587708bb - sha256: d8bd233701add17c17fc0a46819587311604a197bb1b28b20f88cf7aedcf8b06 + md5: d3f90ca494ebd4495c32a30f337f8258 + sha256: dac4c049b3464a3b5e0ad53bdb0209c443e7d52eca4cba6f1545f6a1089d73df category: main optional: false - name: datasette @@ -21184,17 +28789,17 @@ package: category: docs optional: true - name: email-validator - version: 2.0.0.post2 + version: 2.1.0.post1 manager: conda platform: osx-arm64 dependencies: python: ">=3.7" idna: ">=2.0.0" dnspython: ">=2.0.0" - url: https://conda.anaconda.org/conda-forge/noarch/email-validator-2.0.0.post2-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/email-validator-2.1.0.post1-pyhd8ed1ab_0.conda hash: - md5: af9f5d81309e51c05b5964f9573c2cc0 - sha256: abe8703c189827b2036064b9e4fa108b95baf286e9ff2e3f7aca247054bc2a76 + md5: 192fe8f657c763c6120d9f8592055847 + sha256: 0b2e503da10648e2fa8d13035ddda174a549732c4f17476363882ebf67867283 category: main optional: false - name: folium @@ -21334,7 +28939,7 @@ package: category: dev optional: true - name: jupyter_client - version: 8.4.0 + version: 8.5.0 manager: conda platform: osx-arm64 dependencies: @@ -21345,10 +28950,10 @@ package: pyzmq: ">=23.0" importlib_metadata: ">=4.8.3" tornado: ">=6.2" - url: https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.4.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.5.0-pyhd8ed1ab_0.conda hash: - md5: 554496685357ab0d69676cab8e8fb594 - sha256: e964a43ea1c587e1868aa19d4d6dec43887e1a6f19f4a0b7e558d4d4aa5e7e6e + md5: 77e442cb7c382d01c916f91a8652811a + sha256: e4478e137e0975ce94ef4ee6e4a6736afaf4a00e99bc8007a275bcb39fe728d9 category: dev optional: true - name: nbformat @@ -21496,30 +29101,6 @@ package: sha256: 3d08d9553565704fef53d0c9cb901bb2f40337f0a590b3ea714d363a34ee2250 category: main optional: false - - name: tox - version: 4.11.3 - manager: conda - platform: osx-arm64 - dependencies: - python: ">=3.8" - tomli: ">=2.0.1" - colorama: ">=0.4.6" - packaging: ">=23.1" - typing-extensions: ">=4.7.1" - cachetools: ">=5.3.1" - platformdirs: ">=3.10" - chardet: ">=5.2" - importlib_metadata: ">=6.8" - virtualenv: ">=20.24.3" - filelock: ">=3.12.3" - pluggy: ">=1.3" - pyproject-api: ">=1.6.1" - url: https://conda.anaconda.org/conda-forge/noarch/tox-4.11.3-pyhd8ed1ab_0.conda - hash: - md5: 9ad1597140aa28f50fee5567775057dc - sha256: 160180a1755715c404176fa147f9f06adb8806f68193297b6e572784023f8b2d - category: dev - optional: true - name: twine version: 4.0.2 manager: conda @@ -21547,8 +29128,8 @@ package: platform: osx-arm64 dependencies: sqlalchemy: ">=1.4,<3" - python: ">=3.10,<3.12" lxml: ">=4.9.1,<5" + python: ">=3.10,<3.12" coloredlogs: ">=14.0,<15.1" frictionless: ">=4.4,<5" numpy: ">=1.16,<2" @@ -21563,7 +29144,7 @@ package: category: main optional: false - name: conda-lock - version: 2.4.0 + version: 2.4.1 manager: conda platform: osx-arm64 dependencies: @@ -21591,27 +29172,27 @@ package: toolz: ">=0.12.0,<1.0.0" cachecontrol-with-filecache: ">=0.12.9" urllib3: ">=1.26.5,<2.0" - url: https://conda.anaconda.org/conda-forge/noarch/conda-lock-2.4.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/conda-lock-2.4.1-pyhd8ed1ab_0.conda hash: - md5: edcd5c7565a5cd1c7862a911a899fb20 - sha256: f3829c7be0d0b37c4a7146cf65123c23cd37b1c21fc051cc93c812d5bc8d4ff7 + md5: deb6e2f8d8b4de933563cc681165b833 + sha256: 08cd768d033db260e043982ba91de007213adbde5210a76fd2decad3c135e666 category: dev optional: true - name: dagster-graphql - version: 1.5.3 + version: 1.5.4 manager: conda platform: osx-arm64 dependencies: requests: "" starlette: "" python: ">=3.8" - dagster: ">=1.5.3,<1.5.4.0a0" graphene: ">=3" + dagster: ">=1.5.4,<1.5.5.0a0" gql-with-requests: ">=3.0.0" - url: https://conda.anaconda.org/conda-forge/noarch/dagster-graphql-1.5.3-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/dagster-graphql-1.5.4-pyhd8ed1ab_1.conda hash: - md5: 9c67172e4c79a12d965f17d650b5336b - sha256: b86e95381c8e85618c3a6424e9f42fffa381bd0993105e8645b44ca5b5b41080 + md5: 8bc6d9ce80023e7a51130301737a3a47 + sha256: ac0b6dbbbd0bc91e40eacf68e9f5469c3e1194cd463405bd943c8383eadb75ee category: main optional: false - name: fiona @@ -21807,7 +29388,7 @@ package: category: dev optional: true - name: scikit-learn - version: 1.3.1 + version: 1.3.2 manager: conda platform: osx-arm64 dependencies: @@ -21820,10 +29401,10 @@ package: python_abi: 3.11.* scipy: "" threadpoolctl: ">=2.0.0" - url: https://conda.anaconda.org/conda-forge/osx-arm64/scikit-learn-1.3.1-py311ha25ca4d_1.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/scikit-learn-1.3.2-py311ha25ca4d_1.conda hash: - md5: 4d60bf52a2cf510bfd2e6799cdfad562 - sha256: d3770dfd3f59a7daa79cdfa660a0e8a480df036b81894f10a237e30c358093a6 + md5: dea73952c589de24ec577c41fac181c5 + sha256: 589bca23648b8969b16a36f87d7114a12fbe88d665cde32427c7126e5b34e63c category: main optional: false - name: tabulator @@ -21866,7 +29447,7 @@ package: category: main optional: false - name: dagster-webserver - version: 1.5.3 + version: 1.5.4 manager: conda platform: osx-arm64 dependencies: @@ -21874,12 +29455,12 @@ package: uvicorn-standard: "" python: ">=3.8" click: ">=7.0,<9.0" - dagster: ">=1.5.3,<1.5.4.0a0" - dagster-graphql: ">=1.5.3,<1.5.4.0a0" - url: https://conda.anaconda.org/conda-forge/noarch/dagster-webserver-1.5.3-pyhd8ed1ab_1.conda + dagster: ">=1.5.4,<1.5.5.0a0" + dagster-graphql: ">=1.5.4,<1.5.5.0a0" + url: https://conda.anaconda.org/conda-forge/noarch/dagster-webserver-1.5.4-pyhd8ed1ab_1.conda hash: - md5: 821b36bfafdd03da8af532b6a9518fe9 - sha256: e9415290d38ae4ba05c2de3808cb035376e4091b1d49162eae04d64defc6965d + md5: 2f2da26ea9a7ceeca97d8368120794d8 + sha256: 3eac291e2b8e200ecb4cb5bbd541e9c3465c9e61854bc6774c5850f8e9c1758e category: main optional: false - name: google-cloud-core @@ -21913,7 +29494,7 @@ package: category: dev optional: true - name: ipykernel - version: 6.25.2 + version: 6.26.0 manager: conda platform: osx-arm64 dependencies: @@ -21932,10 +29513,10 @@ package: comm: ">=0.1.1" pyzmq: ">=20" traitlets: ">=5.4.0" - url: https://conda.anaconda.org/conda-forge/noarch/ipykernel-6.25.2-pyh1050b4e_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/ipykernel-6.26.0-pyh3cd1d5f_0.conda hash: - md5: a643e6f6c33ed821664f2a69f6e4e89f - sha256: f99ab5cbbe2f349ff2f7842ee1ab710e15b27d6140e8b1356098bbbba2e6370c + md5: 3c6e2148d30e6a762d8327a433ebfb5a + sha256: be9927d47fe23cc4d2a09d252e37e1e56ffb137767d2c0577ed882ead16f75fa category: dev optional: true - name: ipywidgets @@ -22137,7 +29718,7 @@ package: category: dev optional: true - name: jupyter_server - version: 2.8.0 + version: 2.9.1 manager: conda platform: osx-arm64 dependencies: @@ -22160,10 +29741,10 @@ package: jupyter_events: ">=0.6.0" anyio: ">=3.1.0" send2trash: ">=1.8.2" - url: https://conda.anaconda.org/conda-forge/noarch/jupyter_server-2.8.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyter_server-2.9.1-pyhd8ed1ab_0.conda hash: - md5: a750b082b9319e96556df4ee6023b068 - sha256: e781e971220fa2d1801446c6d76873c678479b17ef53a9b157dc5f5ee7f6aab5 + md5: 8e0cfa69e5b0062b829a9dbb14645def + sha256: bb9a60ff41085031a28204add4e6120990437cfad341db297519f0a0f0df8e18 category: dev optional: true - name: nbconvert-pandoc @@ -22509,8 +30090,8 @@ package: sphinxcontrib-qthelp: "" python: ">=3.9" jinja2: ">=3.0" - alabaster: ">=0.7,<0.8" packaging: ">=21.0" + alabaster: ">=0.7,<0.8" requests: ">=2.25.0" colorama: ">=0.4.5" pygments: ">=2.14" @@ -22875,10 +30456,10 @@ package: ucrt: ">=10.0.20348.0" vc: ">=14.2,<15" vc14_runtime: ">=14.29.30139" - url: https://conda.anaconda.org/conda-forge/win-64/c-ares-1.20.1-hcfcfb64_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/c-ares-1.20.1-hcfcfb64_1.conda hash: - md5: 4044c96668b5ca9068cc61673bc05a13 - sha256: d3d329c571a129925ef9d082703351524dcf43dd2eb11cbbf4fea037085a0546 + md5: 0a45278f9b791a68dbe4acc234fa8a26 + sha256: 817b2733caef6f8513ed6dc9a1b5883ddc9ac303eaf1971e4d4ec73080f6ab99 category: main optional: false - name: geos @@ -23167,7 +30748,7 @@ package: category: main optional: false - name: openssl - version: 3.1.3 + version: 3.1.4 manager: conda platform: win-64 dependencies: @@ -23175,10 +30756,10 @@ package: ucrt: ">=10.0.20348.0" vc: ">=14.2,<15" vc14_runtime: ">=14.29.30139" - url: https://conda.anaconda.org/conda-forge/win-64/openssl-3.1.3-hcfcfb64_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/openssl-3.1.4-hcfcfb64_0.conda hash: - md5: 16b2c80ad196f18acd31b588ef28cb9a - sha256: 6a6b20aa2b9f32d94f8d2c352b7635b5e8b9fb7ffad823bf2ce88dc8ef61ffc8 + md5: 2eebbc64373a1c6db62ad23304e9678e + sha256: e30b7f55c27d06e3322876c9433a3522e751d06a40b3bb6c4f8b4bcd781a3794 category: main optional: false - name: pixman @@ -23637,17 +31218,18 @@ package: category: main optional: false - name: zeromq - version: 4.3.4 + version: 4.3.5 manager: conda platform: win-64 dependencies: libsodium: ">=1.0.18,<1.0.19.0a0" - vc: ">=14.1,<15.0a0" - vs2015_runtime: ">=14.16.27012" - url: https://conda.anaconda.org/conda-forge/win-64/zeromq-4.3.4-h0e60522_1.tar.bz2 + ucrt: ">=10.0.20348.0" + vc: ">=14.2,<15" + vc14_runtime: ">=14.29.30139" + url: https://conda.anaconda.org/conda-forge/win-64/zeromq-4.3.5-h63175ca_0.conda hash: - md5: e1aff0583dda5fb917eb3d2c1025aa80 - sha256: 0489cc6c3bff50620879890431d7142fd6e66b7770ddc6f2d7852094471c0d6c + md5: e954e1881091405f36416f772292b396 + sha256: f8377793c36e19da17bbb8cf517f1a969b89e1cc7cb9622dc6d60c3d1383c919 category: dev optional: true - name: zlib @@ -23880,15 +31462,15 @@ package: category: main optional: false - name: cachetools - version: 5.3.1 + version: 5.3.2 manager: conda platform: win-64 dependencies: python: ">=3.7" - url: https://conda.anaconda.org/conda-forge/noarch/cachetools-5.3.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/cachetools-5.3.2-pyhd8ed1ab_0.conda hash: - md5: 60b5eb16d9a7a5482ba37f67aa49db5b - sha256: 8d30a41a88900730c748f5b296730a0d48e5cfa2c8b260aab60fa9f26ffafcc0 + md5: 185cc1bf1d5af90020292888a3c7eb5d + sha256: cb8a6688d5650e4546a5f3c5b825bfe3c82594f1f588a93817f1bdb23e74baad category: main optional: false - name: cachy @@ -23969,15 +31551,15 @@ package: category: main optional: false - name: charset-normalizer - version: 3.3.0 + version: 3.3.1 manager: conda platform: win-64 dependencies: python: ">=3.7" - url: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.3.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.3.1-pyhd8ed1ab_0.conda hash: - md5: fef8ef5f0a54546b9efee39468229917 - sha256: 3407cd21af7e85aeb9499c377e7db25d2bbb9cbaf2f47d92626b3471dca65b4c + md5: 985378f74689fccce52f158027bd9acd + sha256: a31739c49c4b1c8e0cbdec965ba152683d36ce6e23bdaefcfee99937524dabd1 category: main optional: false - name: cloudpickle @@ -24029,15 +31611,15 @@ package: category: main optional: false - name: dagster-pipes - version: 1.5.3 + version: 1.5.4 manager: conda platform: win-64 dependencies: python: ">=3.8" - url: https://conda.anaconda.org/conda-forge/noarch/dagster-pipes-1.5.3-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/dagster-pipes-1.5.4-pyhd8ed1ab_1.conda hash: - md5: f1d822044ec73e262eb9de200e8ddc9e - sha256: b50f5c65bee572e6834d778b09d9258bd5932349fdc71afcda24429183ef1cd6 + md5: e415c49419cae013a09145a3a16244ca + sha256: c84ac60663552b916422a81abd243aad60358ca32170cd564c3c6af9179dc100 category: main optional: false - name: dataclasses @@ -24234,7 +31816,7 @@ package: category: main optional: false - name: greenlet - version: 3.0.0 + version: 3.0.1 manager: conda platform: win-64 dependencies: @@ -24243,10 +31825,10 @@ package: ucrt: ">=10.0.20348.0" vc: ">=14.2,<15" vc14_runtime: ">=14.29.30139" - url: https://conda.anaconda.org/conda-forge/win-64/greenlet-3.0.0-py311h12c1d0e_1.conda + url: https://conda.anaconda.org/conda-forge/win-64/greenlet-3.0.1-py311h12c1d0e_0.conda hash: - md5: 11e26000bb4515cb9be1e750a296c17d - sha256: 946dc471a4572d114a5c11089eb3f21529f0a88ea162d16b3812e562e805ecd1 + md5: d07d2cd4571a84b9bd64f051c60eba05 + sha256: 8c6db55e4a197074dc278541cd40e340b86670b4a9511b31b05589e16deb2f8f category: main optional: false - name: hpack @@ -24821,15 +32403,15 @@ package: category: dev optional: true - name: networkx - version: "3.1" + version: "3.2" manager: conda platform: win-64 dependencies: - python: ">=3.8" - url: https://conda.anaconda.org/conda-forge/noarch/networkx-3.1-pyhd8ed1ab_0.conda + python: ">=3.9" + url: https://conda.anaconda.org/conda-forge/noarch/networkx-3.2-pyhd8ed1ab_1.conda hash: - md5: 254f787d5068bc89f578bf63893ce8b4 - sha256: 6b955c8530985fa727ad3323653a54af44ecf453cfdb1b549b3edff609bd3728 + md5: 522039fb968d6d0a10e872e6f3856f53 + sha256: 857dc30c287f90da1dd1c0a781a5305abb92db900fd5675c8bdd16ae339abb45 category: main optional: false - name: nh3 @@ -25291,11 +32873,11 @@ package: ucrt: ">=10.0.20348.0" vc: ">=14.2,<15" vc14_runtime: ">=14.29.30139" - zeromq: ">=4.3.4,<4.3.5.0a0" - url: https://conda.anaconda.org/conda-forge/win-64/pyzmq-25.1.1-py311h7b3f143_1.conda + zeromq: ">=4.3.5,<4.3.6.0a0" + url: https://conda.anaconda.org/conda-forge/win-64/pyzmq-25.1.1-py311h9250fbb_2.conda hash: - md5: e3d0dd062963011239017d79be3ecdaa - sha256: 7412e89a3574d4fb476a3fe1c5f0356f1748d9a0fa611c6301e637456571588c + md5: e2e285b5528875d9008c0f1527f8436e + sha256: 11e347a6756cef1454322de743fc1c7aff634a5d0161dd57261c5c610cae2a40 category: dev optional: true - name: regex @@ -25385,7 +32967,7 @@ package: category: dev optional: true - name: ruff - version: 0.1.1 + version: 0.1.2 manager: conda platform: win-64 dependencies: @@ -25394,10 +32976,10 @@ package: ucrt: ">=10.0.20348.0" vc: ">=14.2,<15" vc14_runtime: ">=14.29.30139" - url: https://conda.anaconda.org/conda-forge/win-64/ruff-0.1.1-py311hc14472d_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/ruff-0.1.2-py311hc14472d_0.conda hash: - md5: 070be80ee7e211f5cc98ca011defdc89 - sha256: 2242b79b90e9b8f36a461d73614463dfaedd7ae642d57bfe9df151ab4f05a55b + md5: aeb1cc6180bf34af39f4c6c567bb7b4d + sha256: 0456eb29fb927927371df97edba3391eccb6f93a6a554f2bc8221b9913aa9875 category: dev optional: true - name: setuptools @@ -25413,15 +32995,15 @@ package: category: main optional: false - name: shellingham - version: 1.5.3 + version: 1.5.4 manager: conda platform: win-64 dependencies: python: ">=3.7" - url: https://conda.anaconda.org/conda-forge/noarch/shellingham-1.5.3-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/shellingham-1.5.4-pyhd8ed1ab_0.conda hash: - md5: 83795060a5d8cd12b90a58bd62bc251e - sha256: 1e204005ad00a48ab3fd67b6b154b388084ac9743b31952d2f6138cfd20dab18 + md5: d08db09a552699ee9e7eec56b4eb3899 + sha256: 3c49a0a101c41b7cf6ac05a1872d7a1f91f1b6d02eecb4a36b605a19517862bb category: main optional: false - name: simpleeval @@ -25429,15 +33011,11 @@ package: manager: conda platform: win-64 dependencies: - python: ">=3.11,<3.12.0a0" - python_abi: 3.11.* - ucrt: ">=10.0.20348.0" - vc: ">=14.2,<15" - vc14_runtime: ">=14.29.30139" - url: https://conda.anaconda.org/conda-forge/win-64/simpleeval-0.9.13-py311ha68e1ae_1.conda + python: ">=2.5,!=3.0.*,!=3.1.*,!=3.2.*" + url: https://conda.anaconda.org/conda-forge/noarch/simpleeval-0.9.13-pyhd8ed1ab_1.conda hash: - md5: 68baa9db80958d05d9ed91aa4ef11cbf - sha256: a77e004bc3523e7e1a17f67fe7393798fc82c44f9975321ccd8efde50703e966 + md5: b3282d9b9e4a7c42d6c570492316dcaa + sha256: 5c9c537011327fc281c3c108020f1ad2a40284df0e1625a87825c0699d98f67f category: main optional: false - name: six @@ -25637,15 +33215,15 @@ package: category: dev optional: true - name: traitlets - version: 5.11.2 + version: 5.12.0 manager: conda platform: win-64 dependencies: python: ">=3.8" - url: https://conda.anaconda.org/conda-forge/noarch/traitlets-5.11.2-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/traitlets-5.12.0-pyhd8ed1ab_0.conda hash: - md5: bd3f90f7551e1cffb1f402880eb2cef1 - sha256: 81f2675ebc2bd6016c304770c81812aab8947953b0f0cca766077b127cc7e8f1 + md5: 3ecde21191a20e0e4ab5a4d69aaaa22c + sha256: cd0709a388063aa4024fa9c721b91cac982983435ab12bf564871c27ef983e13 category: dev optional: true - name: types-python-dateutil @@ -26011,17 +33589,17 @@ package: category: main optional: false - name: babel - version: 2.13.0 + version: 2.13.1 manager: conda platform: win-64 dependencies: setuptools: "" pytz: "" python: ">=3.7" - url: https://conda.anaconda.org/conda-forge/noarch/babel-2.13.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/babel-2.13.1-pyhd8ed1ab_0.conda hash: - md5: 22541af7a9eb59fc6afcadb7ecdf9219 - sha256: 25b0a72c9d35319307a9714b05aa5c18b5c82f8c8e7bece65778202c6b8ad2a7 + md5: 3ccff479c246692468f604df9c85ef26 + sha256: 1f955c700db16f65b16c9e9c1613436480d5497970b8030b7a9ebe1620cc2147 category: dev optional: true - name: backports.functools_lru_cache @@ -26776,20 +34354,6 @@ package: sha256: 7867ba43b6ef1e66054ca6b70f59bbef4cdb0cc761f0be3b66d79d15bd43143b category: main optional: false - - name: pyproject-api - version: 1.6.1 - manager: conda - platform: win-64 - dependencies: - python: ">=3.8" - tomli: ">=2.0.1" - packaging: ">=23.1" - url: https://conda.anaconda.org/conda-forge/noarch/pyproject-api-1.6.1-pyhd8ed1ab_0.conda - hash: - md5: 1815c7974568079cf384f012de5ea1b7 - sha256: 698f4ea1c2777d6464774bdfe7aeedb9d06bbb81f552bc14e4d071fab8c59e53 - category: dev - optional: true - name: pyproject_hooks version: 1.0.0 manager: conda @@ -26818,7 +34382,7 @@ package: category: main optional: false - name: pytest - version: 7.4.2 + version: 7.4.3 manager: conda platform: win-64 dependencies: @@ -26829,10 +34393,10 @@ package: exceptiongroup: ">=1.0.0rc8" tomli: ">=1.0.0" pluggy: ">=0.12,<2.0" - url: https://conda.anaconda.org/conda-forge/noarch/pytest-7.4.2-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/pytest-7.4.3-pyhd8ed1ab_0.conda hash: - md5: 6dd662ff5ac9a783e5c940ce9f3fe649 - sha256: 150bfb2a86dffd4ce1e91c2d61dde5779fb3ee338675e210fec4ef508ffff28c + md5: 5bdca0aca30b0ee62bb84854e027eae0 + sha256: 14e948e620ec87d9e62a8d9c21d40084b4805a939cfee322be7d457379dc96a0 category: dev optional: true - name: python-dateutil @@ -26888,16 +34452,16 @@ package: category: main optional: false - name: qtpy - version: 2.4.0 + version: 2.4.1 manager: conda platform: win-64 dependencies: packaging: "" python: ">=3.7" - url: https://conda.anaconda.org/conda-forge/noarch/qtpy-2.4.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/qtpy-2.4.1-pyhd8ed1ab_0.conda hash: - md5: a4c1fc5f8ef46ec8130defcaa2d322ea - sha256: 4a6a63c396009f5363173f618a79adde79c0670cf023211901cf7e10a43f71f5 + md5: 7f391bd70d2abfb70f304ba5aa4e1261 + sha256: 925bf48e747af6ceff1b073c10b12fc94ef79c88a34729059d253e43466a33f1 category: dev optional: true - name: referencing @@ -26954,7 +34518,7 @@ package: category: main optional: false - name: ruamel.yaml - version: 0.17.39 + version: 0.18.2 manager: conda platform: win-64 dependencies: @@ -26965,10 +34529,10 @@ package: ucrt: ">=10.0.20348.0" vc: ">=14.2,<15" vc14_runtime: ">=14.29.30139" - url: https://conda.anaconda.org/conda-forge/win-64/ruamel.yaml-0.17.39-py311ha68e1ae_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/ruamel.yaml-0.18.2-py311ha68e1ae_0.conda hash: - md5: 27c24841506e5ebb0c8fdb2b55f7b48c - sha256: 9f630d108f3d42ddc1c0fc79910eaa04ca06f8f047da9e2b6e88772d7bd88bab + md5: 0055ca161ba33abe206b6504f8c3111b + sha256: 3240006c8ff234e617244e6122b323d3825f98769c48c9087dc18f39c51429d6 category: dev optional: true - name: send2trash @@ -27340,21 +34904,21 @@ package: category: main optional: false - name: cryptography - version: 41.0.4 + version: 41.0.5 manager: conda platform: win-64 dependencies: cffi: ">=1.12" - openssl: ">=3.1.2,<4.0a0" + openssl: ">=3.1.4,<4.0a0" python: ">=3.11,<3.12.0a0" python_abi: 3.11.* ucrt: ">=10.0.20348.0" vc: ">=14.2,<15" vc14_runtime: ">=14.29.30139" - url: https://conda.anaconda.org/conda-forge/win-64/cryptography-41.0.4-py311h28e9c30_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/cryptography-41.0.5-py311h28e9c30_0.conda hash: - md5: dce7f7b41c39193776231fc94db82b70 - sha256: 12fbca6c691f91ef7749dc92099ce2a345f4c06b0fafeecb14dc65aee2a88f61 + md5: 686fc60d09a0ed7a0661018e6b050b79 + sha256: e3363baf1421b9b1ed11850efd8688e0e1f48484b30709064100106062cb4acd category: main optional: false - name: fonttools @@ -27766,10 +35330,10 @@ package: ucrt: ">=10.0.20348.0" vc: ">=14.2,<15" vc14_runtime: ">=14.29.30139" - url: https://conda.anaconda.org/conda-forge/win-64/pyproj-3.6.1-py311h517f58c_2.conda + url: https://conda.anaconda.org/conda-forge/win-64/pyproj-3.6.1-py311h517f58c_3.conda hash: - md5: 6b149ee1b6d9577b9fc59a61176e78c4 - sha256: 8a96679cbcba69b54cb3ccc52e8ae8fc0048b6368a4881e9482c6c5556ab37d5 + md5: 5944afc3c85983eae92212555599a184 + sha256: ec49aa2494bed4c1ccb1f0c4be0bdbcaca0930d5d918952ddbd9645c899d222f category: main optional: false - name: pytest-console-scripts @@ -27802,16 +35366,16 @@ package: category: dev optional: true - name: pytest-mock - version: 3.11.1 + version: 3.12.0 manager: conda platform: win-64 dependencies: - python: ">=3.7" + python: ">=3.8" pytest: ">=5.0" - url: https://conda.anaconda.org/conda-forge/noarch/pytest-mock-3.11.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/pytest-mock-3.12.0-pyhd8ed1ab_0.conda hash: - md5: fcd2531bc3e492657aeb042349aeaf8a - sha256: d2f6a46fe31dea91b427bcc57302edc345eb763caf3c6b6dcd09b2aee002324b + md5: ac9fedc9a0c397f2318e82525491dd83 + sha256: 58d3bd93a0cf9b51ac105de1e01b1fcd1fcfa5993023b67658344e329b02d6e0 category: dev optional: true - name: python-build @@ -28068,7 +35632,7 @@ package: category: dev optional: true - name: botocore - version: 1.31.68 + version: 1.31.70 manager: conda platform: win-64 dependencies: @@ -28076,10 +35640,10 @@ package: python-dateutil: ">=2.1,<3.0.0" jmespath: ">=0.7.1,<2.0.0" urllib3: ">=1.25.4,<1.27" - url: https://conda.anaconda.org/conda-forge/noarch/botocore-1.31.68-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/botocore-1.31.70-pyhd8ed1ab_0.conda hash: - md5: 0bf56dadacce6f9218d88df71d3e7576 - sha256: 01496595fe3483c81b880ac68f01bc0e1e85fefb8e7c2e08d95eaf3f393e319d + md5: 0e04ee2da772c7a8df863d9084fb4445 + sha256: 045cc3ee816a0a5e48ba0090858b9d8be0a0d3f54be0976b1b0c7491903cd58b category: main optional: false - name: dask-core @@ -28437,7 +36001,7 @@ package: category: main optional: false - name: virtualenv - version: 20.24.4 + version: 20.24.6 manager: conda platform: win-64 dependencies: @@ -28445,14 +36009,14 @@ package: distlib: <1,>=0.3.7 filelock: <4,>=3.12.2 platformdirs: <4,>=3.9.1 - url: https://conda.anaconda.org/conda-forge/noarch/virtualenv-20.24.4-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/virtualenv-20.24.6-pyhd8ed1ab_0.conda hash: - md5: c3feaf947264a59a125e8c26e98c3c5a - sha256: 85c96449202ca87ec12783d8675b3655b4cd7b7afe49f2dc37d743adb0ed177f + md5: fb1fc875719e217ed799a7aae11d3be4 + sha256: 09492f89a22dc17d9b32f2a791deee93d06e99fb312c3d47430fe35343b7fbde category: dev optional: true - name: arelle-release - version: 2.16.1 + version: 2.16.3 manager: conda platform: win-64 dependencies: @@ -28464,10 +36028,10 @@ package: lxml: 4.* openpyxl: 3.* pyparsing: 3.* - url: https://conda.anaconda.org/conda-forge/noarch/arelle-release-2.16.1-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/arelle-release-2.16.3-pyhd8ed1ab_0.conda hash: - md5: 8b03e47972a8e0759dce09378c962d3d - sha256: bbdaca39a19f3790dff27e573fc263ab650a45f3813147d5b01e8bb02c61fd81 + md5: cc1662776e4169d33d24aeb34af074e8 + sha256: 9f9daff44b2099904135c0f3478246e55123b15bba0252e24fec0366d88c293a category: main optional: false - name: aws-crt-cpp @@ -28542,7 +36106,7 @@ package: category: main optional: false - name: dagster - version: 1.5.3 + version: 1.5.4 manager: conda platform: win-64 dependencies: @@ -28574,12 +36138,12 @@ package: protobuf: ">=3.20.0" grpcio: ">=1.44.0" alembic: ">=1.2.1,!=1.6.3,!=1.7.0,!=1.11.0" - dagster-pipes: ">=1.5.3,<1.5.4.0a0" pydantic: ">1.10.0,!=1.10.7,<2.0.0" - url: https://conda.anaconda.org/conda-forge/noarch/dagster-1.5.3-pyhd8ed1ab_1.conda + dagster-pipes: ">=1.5.4,<1.5.5.0a0" + url: https://conda.anaconda.org/conda-forge/noarch/dagster-1.5.4-pyhd8ed1ab_1.conda hash: - md5: 269916d868c11d9790d340a6587708bb - sha256: d8bd233701add17c17fc0a46819587311604a197bb1b28b20f88cf7aedcf8b06 + md5: d3f90ca494ebd4495c32a30f337f8258 + sha256: dac4c049b3464a3b5e0ad53bdb0209c443e7d52eca4cba6f1545f6a1089d73df category: main optional: false - name: datasette @@ -28629,17 +36193,17 @@ package: category: docs optional: true - name: email-validator - version: 2.0.0.post2 + version: 2.1.0.post1 manager: conda platform: win-64 dependencies: python: ">=3.7" idna: ">=2.0.0" dnspython: ">=2.0.0" - url: https://conda.anaconda.org/conda-forge/noarch/email-validator-2.0.0.post2-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/email-validator-2.1.0.post1-pyhd8ed1ab_0.conda hash: - md5: af9f5d81309e51c05b5964f9573c2cc0 - sha256: abe8703c189827b2036064b9e4fa108b95baf286e9ff2e3f7aca247054bc2a76 + md5: 192fe8f657c763c6120d9f8592055847 + sha256: 0b2e503da10648e2fa8d13035ddda174a549732c4f17476363882ebf67867283 category: main optional: false - name: ensureconda @@ -28761,7 +36325,7 @@ package: category: dev optional: true - name: jupyter_client - version: 8.4.0 + version: 8.5.0 manager: conda platform: win-64 dependencies: @@ -28772,10 +36336,10 @@ package: pyzmq: ">=23.0" importlib_metadata: ">=4.8.3" tornado: ">=6.2" - url: https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.4.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.5.0-pyhd8ed1ab_0.conda hash: - md5: 554496685357ab0d69676cab8e8fb594 - sha256: e964a43ea1c587e1868aa19d4d6dec43887e1a6f19f4a0b7e558d4d4aa5e7e6e + md5: 77e442cb7c382d01c916f91a8652811a + sha256: e4478e137e0975ce94ef4ee6e4a6736afaf4a00e99bc8007a275bcb39fe728d9 category: dev optional: true - name: libgdal @@ -29039,30 +36603,6 @@ package: sha256: 23adfdb0f4911fd58845485d318e647161b8c2b316c5c0f40ca40295d09e96e3 category: main optional: false - - name: tox - version: 4.11.3 - manager: conda - platform: win-64 - dependencies: - python: ">=3.8" - tomli: ">=2.0.1" - colorama: ">=0.4.6" - packaging: ">=23.1" - typing-extensions: ">=4.7.1" - cachetools: ">=5.3.1" - platformdirs: ">=3.10" - chardet: ">=5.2" - importlib_metadata: ">=6.8" - virtualenv: ">=20.24.3" - filelock: ">=3.12.3" - pluggy: ">=1.3" - pyproject-api: ">=1.6.1" - url: https://conda.anaconda.org/conda-forge/noarch/tox-4.11.3-pyhd8ed1ab_0.conda - hash: - md5: 9ad1597140aa28f50fee5567775057dc - sha256: 160180a1755715c404176fa147f9f06adb8806f68193297b6e572784023f8b2d - category: dev - optional: true - name: aws-sdk-cpp version: 1.11.156 manager: conda @@ -29083,18 +36623,18 @@ package: category: main optional: false - name: boto3 - version: 1.28.68 + version: 1.28.70 manager: conda platform: win-64 dependencies: python: ">=3.7" jmespath: ">=0.7.1,<2.0.0" s3transfer: ">=0.7.0,<0.8.0" - botocore: ">=1.31.68,<1.32.0" - url: https://conda.anaconda.org/conda-forge/noarch/boto3-1.28.68-pyhd8ed1ab_0.conda + botocore: ">=1.31.70,<1.32.0" + url: https://conda.anaconda.org/conda-forge/noarch/boto3-1.28.70-pyhd8ed1ab_0.conda hash: - md5: 4b81c7adfe8551654cf528e3d708b326 - sha256: 0d7f5949867a06e86855e1dc67fb7c6118b8410e4bc69dc44bd05c237716642c + md5: cdc672d21bb4f620c4ee6cd83fd9aec7 + sha256: 3d53ab4af8016b2d807e329e05e8aa6c32ffa166ccfacac023110df41b81fad4 category: main optional: false - name: cachecontrol-with-filecache @@ -29117,8 +36657,8 @@ package: platform: win-64 dependencies: sqlalchemy: ">=1.4,<3" - python: ">=3.10,<3.12" lxml: ">=4.9.1,<5" + python: ">=3.10,<3.12" coloredlogs: ">=14.0,<15.1" frictionless: ">=4.4,<5" numpy: ">=1.16,<2" @@ -29304,7 +36844,7 @@ package: category: dev optional: true - name: scikit-learn - version: 1.3.1 + version: 1.3.2 manager: conda platform: win-64 dependencies: @@ -29317,10 +36857,10 @@ package: ucrt: ">=10.0.20348.0" vc: ">=14.2,<15" vc14_runtime: ">=14.29.30139" - url: https://conda.anaconda.org/conda-forge/win-64/scikit-learn-1.3.1-py311h142b183_1.conda + url: https://conda.anaconda.org/conda-forge/win-64/scikit-learn-1.3.2-py311h142b183_1.conda hash: - md5: 3d404996b0f7e1117a980e7f0a22acdf - sha256: 962c68afe6e90d9480cf38a8e15c5452fb15adeae144aab1575c080aaf55af64 + md5: a24599e0d80cf658b7d942c82907caef + sha256: 55893f59edf4bc55c6911b82207dc3d0052e28ebbef94ed0643f887a2c231fd7 category: main optional: false - name: timezonefinder @@ -29365,7 +36905,7 @@ package: category: dev optional: true - name: conda-lock - version: 2.4.0 + version: 2.4.1 manager: conda platform: win-64 dependencies: @@ -29393,27 +36933,27 @@ package: toolz: ">=0.12.0,<1.0.0" cachecontrol-with-filecache: ">=0.12.9" urllib3: ">=1.26.5,<2.0" - url: https://conda.anaconda.org/conda-forge/noarch/conda-lock-2.4.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/conda-lock-2.4.1-pyhd8ed1ab_0.conda hash: - md5: edcd5c7565a5cd1c7862a911a899fb20 - sha256: f3829c7be0d0b37c4a7146cf65123c23cd37b1c21fc051cc93c812d5bc8d4ff7 + md5: deb6e2f8d8b4de933563cc681165b833 + sha256: 08cd768d033db260e043982ba91de007213adbde5210a76fd2decad3c135e666 category: dev optional: true - name: dagster-graphql - version: 1.5.3 + version: 1.5.4 manager: conda platform: win-64 dependencies: requests: "" starlette: "" python: ">=3.8" - dagster: ">=1.5.3,<1.5.4.0a0" graphene: ">=3" + dagster: ">=1.5.4,<1.5.5.0a0" gql-with-requests: ">=3.0.0" - url: https://conda.anaconda.org/conda-forge/noarch/dagster-graphql-1.5.3-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/dagster-graphql-1.5.4-pyhd8ed1ab_1.conda hash: - md5: 9c67172e4c79a12d965f17d650b5336b - sha256: b86e95381c8e85618c3a6424e9f42fffa381bd0993105e8645b44ca5b5b41080 + md5: 8bc6d9ce80023e7a51130301737a3a47 + sha256: ac0b6dbbbd0bc91e40eacf68e9f5469c3e1194cd463405bd943c8383eadb75ee category: main optional: false - name: fiona @@ -29475,7 +37015,7 @@ package: category: dev optional: true - name: ipykernel - version: 6.25.2 + version: 6.26.0 manager: conda platform: win-64 dependencies: @@ -29493,10 +37033,10 @@ package: comm: ">=0.1.1" pyzmq: ">=20" traitlets: ">=5.4.0" - url: https://conda.anaconda.org/conda-forge/noarch/ipykernel-6.25.2-pyh60829e3_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/ipykernel-6.26.0-pyha63f2e9_0.conda hash: - md5: 387f16a39a2e57bff9de9bc0216baa09 - sha256: 8531e04e585db4fb95ba5152e7f6af0fa9be0b3e68a8c9e335e4a3585222db2c + md5: 10e1de12f78f0fedb82ff723f602b5c5 + sha256: 7208f5ae35c321d03c71e4072c959c60f877d1b9cc2fb32d805972b54123fb95 category: dev optional: true - name: ipywidgets @@ -29639,7 +37179,7 @@ package: category: main optional: false - name: dagster-webserver - version: 1.5.3 + version: 1.5.4 manager: conda platform: win-64 dependencies: @@ -29647,12 +37187,12 @@ package: uvicorn-standard: "" python: ">=3.8" click: ">=7.0,<9.0" - dagster: ">=1.5.3,<1.5.4.0a0" - dagster-graphql: ">=1.5.3,<1.5.4.0a0" - url: https://conda.anaconda.org/conda-forge/noarch/dagster-webserver-1.5.3-pyhd8ed1ab_1.conda + dagster: ">=1.5.4,<1.5.5.0a0" + dagster-graphql: ">=1.5.4,<1.5.5.0a0" + url: https://conda.anaconda.org/conda-forge/noarch/dagster-webserver-1.5.4-pyhd8ed1ab_1.conda hash: - md5: 821b36bfafdd03da8af532b6a9518fe9 - sha256: e9415290d38ae4ba05c2de3808cb035376e4091b1d49162eae04d64defc6965d + md5: 2f2da26ea9a7ceeca97d8368120794d8 + sha256: 3eac291e2b8e200ecb4cb5bbd541e9c3465c9e61854bc6774c5850f8e9c1758e category: main optional: false - name: geopandas @@ -29714,7 +37254,7 @@ package: category: dev optional: true - name: jupyter_server - version: 2.8.0 + version: 2.9.1 manager: conda platform: win-64 dependencies: @@ -29737,10 +37277,10 @@ package: jupyter_events: ">=0.6.0" anyio: ">=3.1.0" send2trash: ">=1.8.2" - url: https://conda.anaconda.org/conda-forge/noarch/jupyter_server-2.8.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyter_server-2.9.1-pyhd8ed1ab_0.conda hash: - md5: a750b082b9319e96556df4ee6023b068 - sha256: e781e971220fa2d1801446c6d76873c678479b17ef53a9b157dc5f5ee7f6aab5 + md5: 8e0cfa69e5b0062b829a9dbb14645def + sha256: bb9a60ff41085031a28204add4e6120990437cfad341db297519f0a0f0df8e18 category: dev optional: true - name: nbconvert-pandoc @@ -30147,8 +37687,8 @@ package: sphinxcontrib-qthelp: "" python: ">=3.9" jinja2: ">=3.0" - alabaster: ">=0.7,<0.8" packaging: ">=21.0" + alabaster: ">=0.7,<0.8" requests: ">=2.25.0" colorama: ">=0.4.5" pygments: ">=2.14" diff --git a/environments/conda-osx-64.lock b/environments/conda-osx-64.lock deleted file mode 100644 index 81f246ae02..0000000000 --- a/environments/conda-osx-64.lock +++ /dev/null @@ -1,518 +0,0 @@ -# Generated by conda-lock. -# platform: osx-64 -# input_hash: 8aa42773a7607bf040989d5613479361acc24671ae6c8249c38b2d8110f6ea4f -@EXPLICIT -https://conda.anaconda.org/conda-forge/osx-64/aws-c-common-0.9.3-h0dc2134_0.conda#08315e4f10bb6df0b6457dd2c4aefe04 -https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-h0d85af4_4.tar.bz2#37edc4e6304ca87316e160f5ca0bd1b5 -https://conda.anaconda.org/conda-forge/osx-64/c-ares-1.20.1-h10d778d_0.conda#cef472367265d424d83dca1e97f1d8f6 -https://conda.anaconda.org/conda-forge/osx-64/ca-certificates-2023.7.22-h8857fd0_0.conda#bf2c54c18997bf3542af074c10191771 -https://conda.anaconda.org/conda-forge/noarch/font-ttf-dejavu-sans-mono-2.37-hab24e00_0.tar.bz2#0c96522c6bdaed4b1566d11387caaf45 -https://conda.anaconda.org/conda-forge/noarch/font-ttf-inconsolata-3.000-h77eed37_0.tar.bz2#34893075a5c9e55cdafac56607368fc6 -https://conda.anaconda.org/conda-forge/noarch/font-ttf-source-code-pro-2.038-h77eed37_0.tar.bz2#4d59c254e01d9cde7957100457e2d5fb -https://conda.anaconda.org/conda-forge/noarch/font-ttf-ubuntu-0.83-hab24e00_0.tar.bz2#19410c3df09dfb12d1206132a1d357c5 -https://conda.anaconda.org/conda-forge/osx-64/giflib-5.2.1-hb7f2c08_3.conda#aca150b0186836f893ebac79019e5498 -https://conda.anaconda.org/conda-forge/osx-64/icu-73.2-hf5e326d_0.conda#5cc301d759ec03f28328428e28f65591 -https://conda.anaconda.org/conda-forge/osx-64/json-c-0.17-h8e11ae5_0.conda#266d2e4ebbf37091c8322937392bb540 -https://conda.anaconda.org/conda-forge/osx-64/libboost-headers-1.82.0-h694c41f_6.conda#26a7214f82c75126cbd6d6a8e6792b31 -https://conda.anaconda.org/conda-forge/osx-64/libbrotlicommon-1.1.0-h0dc2134_1.conda#9e6c31441c9aa24e41ace40d6151aab6 -https://conda.anaconda.org/conda-forge/osx-64/libcxx-16.0.6-hd57cbcb_0.conda#7d6972792161077908b62971802f289a -https://conda.anaconda.org/conda-forge/osx-64/libdeflate-1.19-ha4e1b8e_0.conda#6a45f543c2beb40023df5ee7e3cedfbd -https://conda.anaconda.org/conda-forge/osx-64/libev-4.33-haf1e3a3_1.tar.bz2#79dc2be110b2a3d1e97ec21f691c50ad -https://conda.anaconda.org/conda-forge/osx-64/libexpat-2.5.0-hf0c8a7f_1.conda#6c81cb022780ee33435cca0127dd43c9 -https://conda.anaconda.org/conda-forge/osx-64/libffi-3.4.2-h0d85af4_5.tar.bz2#ccb34fb14960ad8b125962d3d79b31a9 -https://conda.anaconda.org/conda-forge/osx-64/libiconv-1.17-hac89ed1_0.tar.bz2#691d103d11180486154af49c037b7ed9 -https://conda.anaconda.org/conda-forge/osx-64/libjpeg-turbo-3.0.0-h0dc2134_1.conda#72507f8e3961bc968af17435060b6dd6 -https://conda.anaconda.org/conda-forge/osx-64/libsodium-1.0.18-hbcb3906_1.tar.bz2#24632c09ed931af617fe6d5292919cab -https://conda.anaconda.org/conda-forge/osx-64/libutf8proc-2.8.0-hb7f2c08_0.tar.bz2#db98dc3e58cbc11583180609c429c17d -https://conda.anaconda.org/conda-forge/osx-64/libuv-1.46.0-h0c2f820_0.conda#27664a5d39d9c32ae38880fec2b33b36 -https://conda.anaconda.org/conda-forge/osx-64/libwebp-base-1.3.2-h0dc2134_0.conda#4e7e9d244e87d66c18d36894fd6a8ae5 -https://conda.anaconda.org/conda-forge/osx-64/libzlib-1.2.13-h8a1eda9_5.conda#4a3ad23f6e16f99c04e166767193d700 -https://conda.anaconda.org/conda-forge/osx-64/llvm-openmp-17.0.3-hb6ac08f_0.conda#b70adc70bc7527a207c81c2e6b43532c -https://conda.anaconda.org/conda-forge/osx-64/lzo-2.10-haf1e3a3_1000.tar.bz2#0b6bca372a95d6c602c7a922e928ce79 -https://conda.anaconda.org/conda-forge/osx-64/ncurses-6.4-hf0c8a7f_0.conda#c3dbae2411164d9b02c69090a9a91857 -https://conda.anaconda.org/conda-forge/osx-64/pandoc-2.19.2-h694c41f_2.conda#de3014568ff5004048dd09ba73990430 -https://conda.anaconda.org/conda-forge/noarch/poppler-data-0.4.12-hd8ed1ab_0.conda#d8d7293c5b37f39b2ac32940621c6592 -https://conda.anaconda.org/conda-forge/osx-64/pthread-stubs-0.4-hc929b4f_1001.tar.bz2#addd19059de62181cd11ae8f4ef26084 -https://conda.anaconda.org/conda-forge/osx-64/python_abi-3.11-4_cp311.conda#fef7a52f0eca6bae9e8e2e255bc86394 -https://conda.anaconda.org/conda-forge/osx-64/tzcode-2023c-hb7f2c08_0.conda#a7ba8e96323b9d8ce4f0edc4f4dab27f -https://conda.anaconda.org/conda-forge/noarch/tzdata-2023c-h71feb2d_0.conda#939e3e74d8be4dac89ce83b20de2492a -https://conda.anaconda.org/conda-forge/osx-64/xorg-libxau-1.0.11-h0dc2134_0.conda#9566b4c29274125b0266d0177b5eb97b -https://conda.anaconda.org/conda-forge/osx-64/xorg-libxdmcp-1.1.3-h35c211d_0.tar.bz2#86ac76d6bf1cbb9621943eb3bd9ae36e -https://conda.anaconda.org/conda-forge/osx-64/xz-5.2.6-h775f41a_0.tar.bz2#a72f9d4ea13d55d745ff1ed594747f10 -https://conda.anaconda.org/conda-forge/osx-64/yaml-0.2.5-h0d85af4_2.tar.bz2#d7e08fcf8259d742156188e8762b4d20 -https://conda.anaconda.org/conda-forge/osx-64/aws-c-cal-0.6.2-hfc10710_2.conda#a340450b9351a8979cc1130fece3cc9f -https://conda.anaconda.org/conda-forge/osx-64/aws-c-compression-0.2.17-hd41bdd4_3.conda#8477d925cf7a7972e85139c385ec6f45 -https://conda.anaconda.org/conda-forge/osx-64/aws-c-sdkutils-0.1.12-hd41bdd4_2.conda#ca04a04205202fee021697f614bd59dd -https://conda.anaconda.org/conda-forge/osx-64/aws-checksums-0.1.17-hd41bdd4_2.conda#e4d679bf261bafcf215804bcbcd63e6f -https://conda.anaconda.org/conda-forge/osx-64/expat-2.5.0-hf0c8a7f_1.conda#e12630038077877cbb6c7851e139c17c -https://conda.anaconda.org/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2#f766549260d6815b0c52253f1fb1bb29 -https://conda.anaconda.org/conda-forge/osx-64/geos-3.12.0-he965462_0.conda#264a53af0fb378e81b44e45e5ab5aff1 -https://conda.anaconda.org/conda-forge/osx-64/gettext-0.21.1-h8a4c099_0.tar.bz2#1e3aff29ce703d421c43f371ad676cc5 -https://conda.anaconda.org/conda-forge/osx-64/gflags-2.2.2-hb1e8313_1004.tar.bz2#3f59cc77a929537e42120faf104e0d16 -https://conda.anaconda.org/conda-forge/osx-64/hdf4-4.2.15-h8138101_7.conda#7ce543bf38dbfae0de9af112ee178af2 -https://conda.anaconda.org/conda-forge/osx-64/lerc-4.0.0-hb486fe8_0.tar.bz2#f9d6a4c82889d5ecedec1d90eb673c55 -https://conda.anaconda.org/conda-forge/osx-64/libabseil-20230802.1-cxx17_h048a20a_0.conda#6554f5fb47c025273268bcdb7bf3cd48 -https://conda.anaconda.org/conda-forge/osx-64/libaec-1.1.2-he965462_1.conda#faa179050abc6af1385e0fe9dd074f91 -https://conda.anaconda.org/conda-forge/osx-64/libbrotlidec-1.1.0-h0dc2134_1.conda#9ee0bab91b2ca579e10353738be36063 -https://conda.anaconda.org/conda-forge/osx-64/libbrotlienc-1.1.0-h0dc2134_1.conda#8a421fe09c6187f0eb5e2338a8a8be6d -https://conda.anaconda.org/conda-forge/osx-64/libcrc32c-1.1.2-he49afe7_0.tar.bz2#23d6d5a69918a438355d7cbc4c3d54c9 -https://conda.anaconda.org/conda-forge/osx-64/libedit-3.1.20191231-h0678c8f_2.tar.bz2#6016a8a1d0e63cac3de2c352cd40208b -https://conda.anaconda.org/conda-forge/osx-64/libgfortran5-13.2.0-h2873a65_1.conda#3af564516b5163cd8cc08820413854bc -https://conda.anaconda.org/conda-forge/osx-64/libllvm14-14.0.6-hc8e404f_4.conda#ed06753e2ba7c66ed0ca7f19578fcb68 -https://conda.anaconda.org/conda-forge/osx-64/libpng-1.6.39-ha978bb4_0.conda#35e4928794c5391aec14ffdf1deaaee5 -https://conda.anaconda.org/conda-forge/osx-64/libspatialindex-1.9.3-he49afe7_4.tar.bz2#b1c13764417c32fa87fac733caa82a64 -https://conda.anaconda.org/conda-forge/osx-64/libsqlite-3.43.2-h92b6c6a_0.conda#61b88c5f99f1537ed30b34758bd54d54 -https://conda.anaconda.org/conda-forge/osx-64/libxcb-1.15-hb7f2c08_0.conda#5513f57e0238c87c12dffedbcc9c1a4a -https://conda.anaconda.org/conda-forge/osx-64/libxml2-2.11.5-h3346baf_1.conda#7584dee6af7de378aed0ae49aebedb8a -https://conda.anaconda.org/conda-forge/osx-64/lz4-c-1.9.4-hf0c8a7f_0.conda#aa04f7143228308662696ac24023f991 -https://conda.anaconda.org/conda-forge/osx-64/nspr-4.35-hea0b92c_0.conda#a9e56c98d13d8b7ce72bf4357317c29b -https://conda.anaconda.org/conda-forge/osx-64/openssl-3.1.3-h8a1eda9_0.conda#26f9b58f905547e658e9587f8e8cfe43 -https://conda.anaconda.org/conda-forge/osx-64/pcre2-10.40-h1c4e4bc_0.tar.bz2#e0f80c8f3a0352a54eddfe59cd2b25b1 -https://conda.anaconda.org/conda-forge/osx-64/pixman-0.42.2-he965462_0.conda#e4180dcfd3e3621560fe1ad522997520 -https://conda.anaconda.org/conda-forge/osx-64/re2-2023.03.02-h096449b_0.conda#68580e997396899915eef7771ef3a646 -https://conda.anaconda.org/conda-forge/osx-64/readline-8.2-h9e318b2_1.conda#f17f77f2acf4d344734bda76829ce14e -https://conda.anaconda.org/conda-forge/osx-64/snappy-1.1.10-h225ccf5_0.conda#4320a8781f14cd959689b86e349f3b73 -https://conda.anaconda.org/conda-forge/osx-64/tk-8.6.13-hef22860_0.conda#0c25eedcc888b6d765948ab62a18c03e -https://conda.anaconda.org/conda-forge/osx-64/uriparser-0.9.7-hf0c8a7f_1.conda#998073b0ccb5f99d07d2089cf06363b3 -https://conda.anaconda.org/conda-forge/osx-64/zeromq-4.3.5-h93d8f39_0.conda#4c055e46b394be36681fe476c1e2ee6e -https://conda.anaconda.org/conda-forge/osx-64/zlib-1.2.13-h8a1eda9_5.conda#75a8a98b1c4671c5d2897975731da42d -https://conda.anaconda.org/conda-forge/osx-64/zstd-1.5.5-h829000d_0.conda#80abc41d0c48b82fe0f04e7f42f5cb7e -https://conda.anaconda.org/conda-forge/osx-64/aws-c-io-0.13.33-h2566903_0.conda#eac0da60e8d25a03abfe2ff5cbcbc7e2 -https://conda.anaconda.org/conda-forge/osx-64/blosc-1.21.5-heccf04b_0.conda#3003fa6dd18769db1a616982dcee5b40 -https://conda.anaconda.org/conda-forge/osx-64/brotli-bin-1.1.0-h0dc2134_1.conda#ece565c215adcc47fc1db4e651ee094b -https://conda.anaconda.org/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2#fee5683a3f04bd15cbd8318b096a27ab -https://conda.anaconda.org/conda-forge/osx-64/freetype-2.12.1-h60636b9_2.conda#25152fce119320c980e5470e64834b50 -https://conda.anaconda.org/conda-forge/osx-64/glog-0.6.0-h8ac2a54_0.tar.bz2#69eb97ca709a136c53fdca1f2fd33ddf -https://conda.anaconda.org/conda-forge/osx-64/krb5-1.21.2-hb884880_0.conda#80505a68783f01dc8d7308c075261b2f -https://conda.anaconda.org/conda-forge/osx-64/libarchive-3.7.2-h0b5dc4a_0.conda#0f8458c98eaf403501e7e699d93594e7 -https://conda.anaconda.org/conda-forge/osx-64/libevent-2.1.12-ha90c15b_1.conda#e38e467e577bd193a7d5de7c2c540b04 -https://conda.anaconda.org/conda-forge/osx-64/libgfortran-5.0.0-13_2_0_h97931a8_1.conda#b55fd11ab6318a6e67ac191309701d5a -https://conda.anaconda.org/conda-forge/osx-64/libglib-2.78.0-hc62aa5d_0.conda#2c70095fa74bf95a5fd5c830a1529a8b -https://conda.anaconda.org/conda-forge/osx-64/libkml-1.3.0-hab3ca0e_1018.conda#535b1bb4896b113c14dfa64141370a12 -https://conda.anaconda.org/conda-forge/osx-64/libnghttp2-1.52.0-he2ab024_0.conda#12ac7d100bf260263e30a019517f42a2 -https://conda.anaconda.org/conda-forge/osx-64/libprotobuf-4.23.4-he0c2237_6.conda#4f39025adf42697651c0ce8de94c8181 -https://conda.anaconda.org/conda-forge/osx-64/librttopo-1.1.0-h23f359d_14.conda#4cec4e76f3d1cd6ec739ca40e7e12847 -https://conda.anaconda.org/conda-forge/osx-64/libssh2-1.11.0-hd019ec5_0.conda#ca3a72efba692c59a90d4b9fc0dfe774 -https://conda.anaconda.org/conda-forge/osx-64/libtiff-4.6.0-h684deea_2.conda#2ca10a325063e000ad6d2a5900061e0d -https://conda.anaconda.org/conda-forge/osx-64/libxslt-1.1.37-h20bfa82_1.conda#177817e2ba32a7d5ffdfbcb876fd4f10 -https://conda.anaconda.org/conda-forge/osx-64/libzip-1.10.1-hc158999_3.conda#6112b3173f3aa2f12a8f40d07a77cc35 -https://conda.anaconda.org/conda-forge/osx-64/minizip-4.0.1-h64dbd51_5.conda#25c159adab272f085a4831be989c29d0 -https://conda.anaconda.org/conda-forge/osx-64/nodejs-20.8.1-h9adec40_0.conda#d653802cf7edab59398a6896c62c4b9b -https://conda.anaconda.org/conda-forge/osx-64/nss-3.94-hd6ac835_0.conda#10c69224110baa4d7d4f1bdb03d4f383 -https://conda.anaconda.org/conda-forge/osx-64/python-3.11.6-h30d4d87_0_cpython.conda#4d66c5fc01e9be526afe5d828d4de24d -https://conda.anaconda.org/conda-forge/osx-64/sqlite-3.43.2-h7461747_0.conda#527ebf7d63c8d415d5089eaa5f826e1d -https://conda.anaconda.org/conda-forge/noarch/aiofiles-23.1.0-pyhd8ed1ab_1.conda#4e0624567be59edd7d0fec20db4d7a9c -https://conda.anaconda.org/conda-forge/noarch/alabaster-0.7.13-pyhd8ed1ab_0.conda#06006184e203b61d3525f90de394471e -https://conda.anaconda.org/conda-forge/noarch/anyascii-0.3.2-pyhd8ed1ab_0.conda#70b6fc71d80ea6176f5302ebbeb13d8a -https://conda.anaconda.org/conda-forge/noarch/appdirs-1.4.4-pyh9f0ad1d_0.tar.bz2#5f095bc6454094e96f146491fd03633b -https://conda.anaconda.org/conda-forge/noarch/appnope-0.1.3-pyhd8ed1ab_0.tar.bz2#54ac328d703bff191256ffa1183126d1 -https://conda.anaconda.org/conda-forge/osx-64/astroid-3.0.1-py311h6eed73b_0.conda#39aff7722673b4083e5b0d9aa7e33681 -https://conda.anaconda.org/conda-forge/noarch/attrs-23.1.0-pyh71513ae_1.conda#3edfead7cedd1ab4400a6c588f3e75f8 -https://conda.anaconda.org/conda-forge/osx-64/aws-c-event-stream-0.3.2-he52df9d_2.conda#7e5e5d6ae65128bf82fd23da8e566d3c -https://conda.anaconda.org/conda-forge/osx-64/aws-c-http-0.7.13-hb43ddd7_2.conda#0f5a92ac96cfa0568f20c5cf8e2da3d6 -https://conda.anaconda.org/conda-forge/noarch/backcall-0.2.0-pyh9f0ad1d_0.tar.bz2#6006a6d08a3fa99268a2681c7fb55213 -https://conda.anaconda.org/conda-forge/noarch/backoff-2.2.1-pyhd8ed1ab_0.tar.bz2#4600709bd85664d8606ae0c76642f8db -https://conda.anaconda.org/conda-forge/noarch/backports-1.0-pyhd8ed1ab_3.conda#54ca2e08b3220c148a1d8329c2678e02 -https://conda.anaconda.org/conda-forge/noarch/blinker-1.6.3-pyhd8ed1ab_0.conda#d33cf7357de636cec64320f0c4fb7b6f -https://conda.anaconda.org/conda-forge/osx-64/brotli-1.1.0-h0dc2134_1.conda#9272dd3b19c4e8212f8542cefd5c3d67 -https://conda.anaconda.org/conda-forge/osx-64/brotli-python-1.1.0-py311hdf8f085_1.conda#546fdccabb90492fbaf2da4ffb78f352 -https://conda.anaconda.org/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2#576d629e47797577ab0f1b351297ef4a -https://conda.anaconda.org/conda-forge/noarch/cachetools-5.3.1-pyhd8ed1ab_0.conda#60b5eb16d9a7a5482ba37f67aa49db5b -https://conda.anaconda.org/conda-forge/noarch/cachy-0.3.0-pyhd8ed1ab_1.tar.bz2#5dfee17f24e2dfd18d7392b48c9351e2 -https://conda.anaconda.org/conda-forge/noarch/catalystcoop.dbfread-3.0.0-py_0.tar.bz2#301d8b0d49e76f6bd586d2c96c2e259e -https://conda.anaconda.org/conda-forge/osx-64/cchardet-2.1.7-py311hdf8f085_5.conda#db8be41b81fe09437c5f1bfef4949609 -https://conda.anaconda.org/conda-forge/noarch/certifi-2023.7.22-pyhd8ed1ab_0.conda#7f3dbc9179b4dde7da98dfb151d0ad22 -https://conda.anaconda.org/conda-forge/noarch/cfgv-3.3.1-pyhd8ed1ab_0.tar.bz2#ebb5f5f7dc4f1a3780ef7ea7738db08c -https://conda.anaconda.org/conda-forge/osx-64/chardet-5.2.0-py311h6eed73b_1.conda#dd58f7f16513cea1fea710651e4df728 -https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.3.0-pyhd8ed1ab_0.conda#fef8ef5f0a54546b9efee39468229917 -https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_0.conda#f3ad426304898027fc619827ff428eca -https://conda.anaconda.org/conda-forge/noarch/cloudpickle-3.0.0-pyhd8ed1ab_0.conda#753d29fe41bb881e4b9c004f0abf973f -https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2#3faab06a954c2a04039983f2c4a50d99 -https://conda.anaconda.org/conda-forge/noarch/crashtest-0.4.1-pyhd8ed1ab_0.tar.bz2#709a2295dd907bb34afb57d54320642f -https://conda.anaconda.org/conda-forge/noarch/cycler-0.12.1-pyhd8ed1ab_0.conda#5cd86562580f274031ede6aa6aa24441 -https://conda.anaconda.org/conda-forge/noarch/dagster-pipes-1.5.3-pyhd8ed1ab_1.conda#f1d822044ec73e262eb9de200e8ddc9e -https://conda.anaconda.org/conda-forge/noarch/dataclasses-0.8-pyhc8e2a94_3.tar.bz2#a362b2124b06aad102e2ee4581acee7d -https://conda.anaconda.org/conda-forge/osx-64/debugpy-1.8.0-py311hdf8f085_1.conda#7f20ef8a63be62d1bcdaa8136ec09647 -https://conda.anaconda.org/conda-forge/noarch/decorator-5.1.1-pyhd8ed1ab_0.tar.bz2#43afe5ab04e35e17ba28649471dd7364 -https://conda.anaconda.org/conda-forge/noarch/defusedxml-0.7.1-pyhd8ed1ab_0.tar.bz2#961b3a227b437d82ad7054484cfa71b2 -https://conda.anaconda.org/conda-forge/noarch/distlib-0.3.7-pyhd8ed1ab_0.conda#12d8aae6994f342618443a8f05c652a0 -https://conda.anaconda.org/conda-forge/noarch/docstring_parser-0.15-pyhd8ed1ab_0.conda#031fcb28b8e80c1f7bec22ccdf4904b2 -https://conda.anaconda.org/conda-forge/osx-64/docutils-0.20.1-py311h6eed73b_2.conda#d56b49f1a2c908d05d1ca6b3f85d0fd5 -https://conda.anaconda.org/conda-forge/noarch/entrypoints-0.4-pyhd8ed1ab_0.tar.bz2#3cf04868fee0a029769bd41f4b2fbf2d -https://conda.anaconda.org/conda-forge/noarch/et_xmlfile-1.1.0-pyhd8ed1ab_0.conda#a2f2138597905eaa72e561d8efb42cf3 -https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.1.3-pyhd8ed1ab_0.conda#e6518222753f519e911e83136d2158d9 -https://conda.anaconda.org/conda-forge/noarch/executing-1.2.0-pyhd8ed1ab_0.tar.bz2#4c1bc140e2be5c8ba6e3acab99e25c50 -https://conda.anaconda.org/conda-forge/noarch/filelock-3.12.4-pyhd8ed1ab_0.conda#5173d4b8267a0699a43d73231e0b6596 -https://conda.anaconda.org/conda-forge/osx-64/fontconfig-2.14.2-h5bb23bf_0.conda#86cc5867dfbee4178118392bae4a3c89 -https://conda.anaconda.org/conda-forge/osx-64/freexl-2.0.0-h3ec172f_0.conda#640c34a8084e2a812bcee5b804597fc9 -https://conda.anaconda.org/conda-forge/osx-64/frozenlist-1.4.0-py311h2725bcf_1.conda#43a86b4653a43d76f3d6859a5a077ceb -https://conda.anaconda.org/conda-forge/noarch/fsspec-2023.9.2-pyh1a96a4e_0.conda#9d15cd3a0e944594ab528da37dc72ecc -https://conda.anaconda.org/conda-forge/osx-64/greenlet-3.0.0-py311hd39e593_1.conda#792758ffcff1b6ead3e7aa9ce8c4bbff -https://conda.anaconda.org/conda-forge/noarch/hpack-4.0.0-pyh9f0ad1d_0.tar.bz2#914d6646c4dbb1fd3ff539830a12fd71 -https://conda.anaconda.org/conda-forge/osx-64/httptools-0.6.1-py311he705e18_0.conda#18bfe027e8c0a8a54aeb6794359c977e -https://conda.anaconda.org/conda-forge/noarch/humanfriendly-10.0-pyhd8ed1ab_6.conda#2ed1fe4b9079da97c44cfe9c2e5078fd -https://conda.anaconda.org/conda-forge/noarch/hupper-1.12-pyhd8ed1ab_0.conda#2654ff96e839bc699e5c3780689a596b -https://conda.anaconda.org/conda-forge/noarch/hyperframe-6.0.1-pyhd8ed1ab_0.tar.bz2#9f765cbfab6870c8435b9eefecd7a1f4 -https://conda.anaconda.org/conda-forge/noarch/idna-3.4-pyhd8ed1ab_0.tar.bz2#34272b248891bddccc64479f9a7fffed -https://conda.anaconda.org/conda-forge/noarch/ijson-3.2.3-pyhd8ed1ab_0.conda#6b1e4cb33f797d6487efd3ebad39d103 -https://conda.anaconda.org/conda-forge/noarch/imagesize-1.4.1-pyhd8ed1ab_0.tar.bz2#7de5386c8fea29e76b303f37dde4c352 -https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_0.conda#f800d2da156d08e289b14e87e43c1ae5 -https://conda.anaconda.org/conda-forge/noarch/ipython_genutils-0.2.0-py_1.tar.bz2#5071c982548b3a20caf70462f04f5287 -https://conda.anaconda.org/conda-forge/noarch/itsdangerous-2.1.2-pyhd8ed1ab_0.tar.bz2#3c3de74912f11d2b590184f03c7cd09b -https://conda.anaconda.org/conda-forge/osx-64/jellyfish-1.0.1-py311h299eb51_1.conda#ce10e6fb23ec2fe23918de203236fbf2 -https://conda.anaconda.org/conda-forge/noarch/jmespath-1.0.1-pyhd8ed1ab_0.tar.bz2#2cfa3e1cf3fb51bb9b17acc5b5e9ea11 -https://conda.anaconda.org/conda-forge/noarch/json5-0.9.14-pyhd8ed1ab_0.conda#dac1dabba2b5a9d1aee175c5fcc7b436 -https://conda.anaconda.org/conda-forge/osx-64/jsonpointer-2.4-py311h6eed73b_3.conda#ed1c23d0e55abd27d8b9e31c58105140 -https://conda.anaconda.org/conda-forge/noarch/jupyterlab_widgets-3.0.9-pyhd8ed1ab_0.conda#8370e0a9dc443f9b45a23fd30e7a6b3b -https://conda.anaconda.org/conda-forge/osx-64/kiwisolver-1.4.5-py311h5fe6e05_1.conda#24305b23f7995de72bbd53b7c01242a2 -https://conda.anaconda.org/conda-forge/osx-64/lcms2-2.15-hd6ba6f3_3.conda#8059507d52f477fbd4b81841e085e25b -https://conda.anaconda.org/conda-forge/osx-64/libcurl-8.4.0-h726d00d_0.conda#2c17b4dedf0039736951471f493353bd -https://conda.anaconda.org/conda-forge/osx-64/libgrpc-1.57.0-h7cc5909_2.conda#2e53cf844657446b158ebfe1472a4f6c -https://conda.anaconda.org/conda-forge/osx-64/libopenblas-0.3.24-openmp_h48a4ad5_0.conda#077718837dd06cf0c3089070108869f6 -https://conda.anaconda.org/conda-forge/osx-64/libpq-16.0-h3df487d_1.conda#0516915abcfb1cd86624f1773d12b551 -https://conda.anaconda.org/conda-forge/osx-64/libthrift-0.19.0-h064b379_1.conda#b152655bfad7c2374ff03be0596052b6 -https://conda.anaconda.org/conda-forge/osx-64/llvmlite-0.40.1-py311hcbb5c6d_0.conda#12a2f51581ae85b308b63a0a883ef97b -https://conda.anaconda.org/conda-forge/noarch/locket-1.0.0-pyhd8ed1ab_0.tar.bz2#91e27ef3d05cc772ce627e51cff111c4 -https://conda.anaconda.org/conda-forge/osx-64/lxml-4.9.3-py311h19a211c_1.conda#d3687d6ebe20ef8bf959dba786cdb28e -https://conda.anaconda.org/conda-forge/noarch/marko-1.3.1-pyhd8ed1ab_0.conda#9651c1c1c19dbc072c557e3e2da38329 -https://conda.anaconda.org/conda-forge/osx-64/markupsafe-2.1.3-py311h2725bcf_1.conda#52ee86f482b552e547e2b1d6c01adf55 -https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.0-pyhd8ed1ab_0.tar.bz2#f8dab71fdc13b1bf29a01248b156d268 -https://conda.anaconda.org/conda-forge/noarch/mergedeep-1.3.4-pyhd8ed1ab_0.tar.bz2#1a160a3cab5cb6bd46264b52cd6f69a2 -https://conda.anaconda.org/conda-forge/noarch/mistune-3.0.1-pyhd8ed1ab_0.conda#1dad8397c94e4de97a70de552a7dcf49 -https://conda.anaconda.org/conda-forge/noarch/more-itertools-10.1.0-pyhd8ed1ab_0.conda#8549fafed0351bbfaa1ddaa15fdf9b4e -https://conda.anaconda.org/conda-forge/osx-64/msgpack-python-1.0.6-py311h5fe6e05_0.conda#6824682c6f6e412cf20fe71f14035cb0 -https://conda.anaconda.org/conda-forge/osx-64/multidict-6.0.4-py311h5547dcb_1.conda#cb1b7c247fe38eb522cc6690101702b0 -https://conda.anaconda.org/conda-forge/noarch/munch-4.0.0-pyhd8ed1ab_0.conda#376b32e8f9d3eacbd625f37d39bd507d -https://conda.anaconda.org/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2#2ba8498c1018c1e9c61eb99b973dfe19 -https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda#4eccaeba205f0aed9ac3a9ea58568ca3 -https://conda.anaconda.org/conda-forge/noarch/nest-asyncio-1.5.8-pyhd8ed1ab_0.conda#a4f0e4519bc50eee4f53f689be9607f7 -https://conda.anaconda.org/conda-forge/noarch/networkx-3.1-pyhd8ed1ab_0.conda#254f787d5068bc89f578bf63893ce8b4 -https://conda.anaconda.org/conda-forge/osx-64/nh3-0.2.14-py311h299eb51_1.conda#37047d1fc213d1dc07a2e140fc60e95e -https://conda.anaconda.org/conda-forge/osx-64/openjpeg-2.5.0-ha4da562_3.conda#40a36f8e9a6fdf6a78c6428ee6c44188 -https://conda.anaconda.org/conda-forge/osx-64/orc-1.9.0-ha4ae40d_2.conda#2216e34fd85cb8610ad6638fcfa5e5dd -https://conda.anaconda.org/conda-forge/noarch/packaging-23.2-pyhd8ed1ab_0.conda#79002079284aa895f883c6b7f3f88fd6 -https://conda.anaconda.org/conda-forge/noarch/pandocfilters-1.5.0-pyhd8ed1ab_0.tar.bz2#457c2c8c08e54905d6954e79cb5b5db9 -https://conda.anaconda.org/conda-forge/noarch/parso-0.8.3-pyhd8ed1ab_0.tar.bz2#17a565a0c3899244e938cdf417e7b094 -https://conda.anaconda.org/conda-forge/noarch/pastel-0.2.1-pyhd8ed1ab_0.tar.bz2#a4eea5bff523f26442405bc5d1f52adb -https://conda.anaconda.org/conda-forge/noarch/pathspec-0.11.2-pyhd8ed1ab_0.conda#e41debb259e68490e3ab81e46b639ab6 -https://conda.anaconda.org/conda-forge/noarch/petl-1.7.14-pyhd8ed1ab_0.conda#65813db01f2331768d909c0852ff5d70 -https://conda.anaconda.org/conda-forge/noarch/pickleshare-0.7.5-py_1003.tar.bz2#415f0ebb6198cc2801c73438a9fb5761 -https://conda.anaconda.org/conda-forge/noarch/pkginfo-1.9.6-pyhd8ed1ab_0.conda#be1e9f1c65a1ed0f2ae9352fec99db64 -https://conda.anaconda.org/conda-forge/noarch/pkgutil-resolve-name-1.3.10-pyhd8ed1ab_1.conda#405678b942f2481cecdb3e010f4925d9 -https://conda.anaconda.org/conda-forge/noarch/pluggy-1.3.0-pyhd8ed1ab_0.conda#2390bd10bed1f3fdc7a537fb5a447d8d -https://conda.anaconda.org/conda-forge/noarch/prometheus_client-0.17.1-pyhd8ed1ab_0.conda#02153b6b760bbec00cfe9e4c97993d06 -https://conda.anaconda.org/conda-forge/osx-64/psutil-5.9.5-py311h2725bcf_1.conda#16221cd0488a32152a6b3f1a301ccf19 -https://conda.anaconda.org/conda-forge/noarch/ptyprocess-0.7.0-pyhd3deb0d_0.tar.bz2#359eeb6536da0e687af562ed265ec263 -https://conda.anaconda.org/conda-forge/noarch/pure_eval-0.2.2-pyhd8ed1ab_0.tar.bz2#6784285c7e55cb7212efabc79e4c2883 -https://conda.anaconda.org/conda-forge/noarch/pyasn1-0.5.0-pyhd8ed1ab_0.conda#4b1c0db24e212190be1969b0aa490ad8 -https://conda.anaconda.org/conda-forge/noarch/pycparser-2.21-pyhd8ed1ab_0.tar.bz2#076becd9e05608f8dc72757d5f3a91ff -https://conda.anaconda.org/conda-forge/noarch/pygments-2.16.1-pyhd8ed1ab_0.conda#40e5cb18165466773619e5c963f00a7b -https://conda.anaconda.org/conda-forge/noarch/pyjwt-2.8.0-pyhd8ed1ab_0.conda#912c0194f898fdb783021fd25f913c31 -https://conda.anaconda.org/conda-forge/noarch/pylev-1.4.0-pyhd8ed1ab_0.tar.bz2#edf8651c4379d9d1495ad6229622d150 -https://conda.anaconda.org/conda-forge/noarch/pyparsing-3.1.1-pyhd8ed1ab_0.conda#176f7d56f0cfe9008bdf1bccd7de02fb -https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2#2a7de29fb590ca14b5243c4c812c8025 -https://conda.anaconda.org/conda-forge/noarch/python-dotenv-1.0.0-pyhd8ed1ab_1.conda#111e7f9edd31865e2659fa9aad8ec8fd -https://conda.anaconda.org/conda-forge/noarch/python-fastjsonschema-2.18.1-pyhd8ed1ab_0.conda#305141cff54af2f90e089d868fffce28 -https://conda.anaconda.org/conda-forge/noarch/python-json-logger-2.0.7-pyhd8ed1ab_0.conda#a61bf9ec79426938ff785eb69dbb1960 -https://conda.anaconda.org/conda-forge/noarch/python-multipart-0.0.6-pyhd8ed1ab_0.conda#f4f642eeda814c1b65f46fbdf7e89096 -https://conda.anaconda.org/conda-forge/noarch/python-tzdata-2023.3-pyhd8ed1ab_0.conda#2590495f608a63625e165915fb4e2e34 -https://conda.anaconda.org/conda-forge/noarch/pytz-2023.3.post1-pyhd8ed1ab_0.conda#c93346b446cd08c169d843ae5fc0da97 -https://conda.anaconda.org/conda-forge/noarch/pytzdata-2020.1-pyh9f0ad1d_0.tar.bz2#7dd824593f3a861130ac17c6571546e2 -https://conda.anaconda.org/conda-forge/noarch/pywin32-on-windows-0.1.0-pyh1179c8e_3.tar.bz2#2807a0becd1d986fe1ef9b7f8135f215 -https://conda.anaconda.org/conda-forge/noarch/pyxlsb-1.0.10-pyhd8ed1ab_0.tar.bz2#0c14e44bc93a99cdc11398311c3c0dcf -https://conda.anaconda.org/conda-forge/osx-64/pyyaml-6.0.1-py311h2725bcf_1.conda#9283f991b5e5856a99f8aabba9927df5 -https://conda.anaconda.org/conda-forge/osx-64/pyzmq-25.1.1-py311h5dacc12_1.conda#f7199b493d4a542d7344e1f9eb5bc476 -https://conda.anaconda.org/conda-forge/osx-64/regex-2023.10.3-py311h2725bcf_0.conda#df03957834e3b3a0d7aa8abc3d4268f9 -https://conda.anaconda.org/conda-forge/noarch/rfc3986-2.0.0-pyhd8ed1ab_0.tar.bz2#d337886e38f965bf97aaec382ff6db00 -https://conda.anaconda.org/conda-forge/noarch/rfc3986-validator-0.1.1-pyh9f0ad1d_0.tar.bz2#912a71cc01012ee38e6b90ddd561e36f -https://conda.anaconda.org/conda-forge/osx-64/rpds-py-0.10.6-py311h5e0f0e4_0.conda#12f23532175f05b674c561cadf08c78f -https://conda.anaconda.org/conda-forge/osx-64/rtree-1.1.0-py311hbc1f44b_0.conda#4cf922188989b372f053537cea29a5ec -https://conda.anaconda.org/conda-forge/osx-64/ruamel.yaml.clib-0.2.7-py311h2725bcf_2.conda#cd953388469a8890dda83779d6ef6ffd -https://conda.anaconda.org/conda-forge/osx-64/ruff-0.1.1-py311ha071555_0.conda#030342fbcd98d052376b5f66183ece01 -https://conda.anaconda.org/conda-forge/noarch/setuptools-68.2.2-pyhd8ed1ab_0.conda#fc2166155db840c634a1291a5c35a709 -https://conda.anaconda.org/conda-forge/noarch/shellingham-1.5.3-pyhd8ed1ab_0.conda#83795060a5d8cd12b90a58bd62bc251e -https://conda.anaconda.org/conda-forge/osx-64/simpleeval-0.9.13-py311h2725bcf_1.conda#d809ff8b7d30e34d6ec3b36c3367c604 -https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2#e5f25f8dbc060e9a8d912e432202afc2 -https://conda.anaconda.org/conda-forge/noarch/smmap-5.0.0-pyhd8ed1ab_0.tar.bz2#62f26a3d1387acee31322208f0cfa3e0 -https://conda.anaconda.org/conda-forge/noarch/sniffio-1.3.0-pyhd8ed1ab_0.tar.bz2#dd6cbc539e74cb1f430efbd4575b9303 -https://conda.anaconda.org/conda-forge/noarch/snowballstemmer-2.2.0-pyhd8ed1ab_0.tar.bz2#4d22a9315e78c6827f806065957d566e -https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.5-pyhd8ed1ab_1.conda#3f144b2c34f8cb5a9abd9ed23a39c561 -https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-jsmath-1.0.1-pyhd8ed1ab_0.conda#da1d979339e2714c30a8e806a33ec087 -https://conda.anaconda.org/conda-forge/noarch/stringcase-1.2.0-py_0.tar.bz2#26a9caf3173939377bac7152379daac0 -https://conda.anaconda.org/conda-forge/noarch/tabulate-0.9.0-pyhd8ed1ab_1.tar.bz2#4759805cce2d914c38472f70bf4d8bcb -https://conda.anaconda.org/conda-forge/noarch/text-unidecode-1.3-pyhd8ed1ab_1.conda#ba8aba332d8868897ce44ad74015a7fe -https://conda.anaconda.org/conda-forge/noarch/threadpoolctl-3.2.0-pyha21a80b_0.conda#978d03388b62173b8e6f79162cf52b86 -https://conda.anaconda.org/conda-forge/noarch/toml-0.10.2-pyhd8ed1ab_0.tar.bz2#f832c45a477c78bebd107098db465095 -https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2#5844808ffab9ebdb694585b50ba02a96 -https://conda.anaconda.org/conda-forge/noarch/tomlkit-0.12.1-pyha770c72_0.conda#62f5b331c53d73e2f6c4c130b53518a0 -https://conda.anaconda.org/conda-forge/noarch/toolz-0.12.0-pyhd8ed1ab_0.tar.bz2#92facfec94bc02d6ccf42e7173831a36 -https://conda.anaconda.org/conda-forge/noarch/toposort-1.10-pyhd8ed1ab_0.conda#aeef653e20028f19a3c2cc70e166b509 -https://conda.anaconda.org/conda-forge/osx-64/tornado-6.3.3-py311h2725bcf_1.conda#daf5f053a40c2b0b8f86b605e302b7a4 -https://conda.anaconda.org/conda-forge/noarch/traitlets-5.11.2-pyhd8ed1ab_0.conda#bd3f90f7551e1cffb1f402880eb2cef1 -https://conda.anaconda.org/conda-forge/noarch/types-python-dateutil-2.8.19.14-pyhd8ed1ab_0.conda#4df15c51a543e806d439490b862be1c6 -https://conda.anaconda.org/conda-forge/noarch/types-pyyaml-6.0.12.12-pyhd8ed1ab_0.conda#0cb14c80f66937df894d60626dd1921f -https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.8.0-pyha770c72_0.conda#5b1be40a26d10a06f6d4f1f9e19fa0c7 -https://conda.anaconda.org/conda-forge/noarch/typing_utils-0.1.0-pyhd8ed1ab_0.tar.bz2#eb67e3cace64c66233e2d35949e20f92 -https://conda.anaconda.org/conda-forge/noarch/unicodecsv-0.14.1-py_1.tar.bz2#3b2b0e9d7f73db2b5e45db113badb7f7 -https://conda.anaconda.org/conda-forge/noarch/uri-template-1.3.0-pyhd8ed1ab_0.conda#0944dc65cb4a9b5b68522c3bb585d41c -https://conda.anaconda.org/conda-forge/osx-64/uvloop-0.18.0-py311ha272bfe_0.conda#5e14591ba7cc8b1b234e7a88efa52763 -https://conda.anaconda.org/conda-forge/noarch/validators-0.22.0-pyhd8ed1ab_0.conda#56435633ef70e7b92c54151599cbf757 -https://conda.anaconda.org/conda-forge/noarch/webcolors-1.13-pyhd8ed1ab_0.conda#166212fe82dad8735550030488a01d03 -https://conda.anaconda.org/conda-forge/noarch/webencodings-0.5.1-pyhd8ed1ab_2.conda#daf5160ff9cde3a468556965329085b9 -https://conda.anaconda.org/conda-forge/noarch/websocket-client-1.6.4-pyhd8ed1ab_0.conda#bdb77b28cf16deac0eef431a068320e8 -https://conda.anaconda.org/conda-forge/osx-64/websockets-10.4-py311h5547dcb_1.tar.bz2#aa4ddc6620538e684142d9c1d932fe28 -https://conda.anaconda.org/conda-forge/noarch/wheel-0.41.2-pyhd8ed1ab_0.conda#1ccd092478b3e0ee10d7a891adbf8a4f -https://conda.anaconda.org/conda-forge/noarch/widgetsnbextension-4.0.9-pyhd8ed1ab_0.conda#82617d07b2f5f5a96296d3c19684b37a -https://conda.anaconda.org/conda-forge/noarch/xlrd-2.0.1-pyhd8ed1ab_3.tar.bz2#97dfcd5ff030d829b55f67e82f928093 -https://conda.anaconda.org/conda-forge/noarch/xlsxwriter-3.1.7-pyhd8ed1ab_0.conda#57ed13683ed80362014f6499e27f7b05 -https://conda.anaconda.org/conda-forge/noarch/xyzservices-2023.10.0-pyhd8ed1ab_0.conda#9c6fe7db9c9133ade38b9a5011103243 -https://conda.anaconda.org/conda-forge/noarch/zipp-3.17.0-pyhd8ed1ab_0.conda#2e4d6bc0b14e10f895fc6791a7d9b26a -https://conda.anaconda.org/conda-forge/noarch/aiosignal-1.3.1-pyhd8ed1ab_0.tar.bz2#d1e1eb7e21a9e2c74279d87dafb68156 -https://conda.anaconda.org/conda-forge/noarch/anyio-4.0.0-pyhd8ed1ab_0.conda#3c4e99d3ae4ec033d4dd99fb5220e540 -https://conda.anaconda.org/conda-forge/noarch/asgi-csrf-0.9-pyhd8ed1ab_0.tar.bz2#eae21b40ce9beded0ce0e5c67180b1e7 -https://conda.anaconda.org/conda-forge/noarch/asgiref-3.7.2-pyhd8ed1ab_0.conda#596932155bf88bb6837141550cb721b0 -https://conda.anaconda.org/conda-forge/noarch/asttokens-2.4.0-pyhd8ed1ab_0.conda#056f04e51dd63337e8d7c425c18c86f1 -https://conda.anaconda.org/conda-forge/noarch/async-lru-2.0.4-pyhd8ed1ab_0.conda#3d081de3a6ea9f894bbb585e8e3a4dcb -https://conda.anaconda.org/conda-forge/osx-64/aws-c-auth-0.7.4-hbe6ead2_2.conda#3e0e34204afc1f65834613eec255c486 -https://conda.anaconda.org/conda-forge/osx-64/aws-c-mqtt-0.9.7-h6b10715_0.conda#3ee631e5dbe79d58a5948888dc6051c5 -https://conda.anaconda.org/conda-forge/noarch/babel-2.13.0-pyhd8ed1ab_0.conda#22541af7a9eb59fc6afcadb7ecdf9219 -https://conda.anaconda.org/conda-forge/noarch/backports.functools_lru_cache-1.6.5-pyhd8ed1ab_0.conda#6b1b907661838a75d067a22f87996b2e -https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.12.2-pyha770c72_0.conda#a362ff7d976217f8fa78c0f1c4f59717 -https://conda.anaconda.org/conda-forge/noarch/bleach-6.1.0-pyhd8ed1ab_0.conda#0ed9d7c0e9afa7c025807a9a8136ea3e -https://conda.anaconda.org/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2#9b347a7ec10940d3f7941ff6c460b551 -https://conda.anaconda.org/conda-forge/osx-64/cairo-1.18.0-h99e66fa_0.conda#13f830b1bf46018f7062d1b798d53eca -https://conda.anaconda.org/conda-forge/osx-64/cffi-1.16.0-py311hc0b63fd_0.conda#15d07b82223cac96af629e5e747ba27a -https://conda.anaconda.org/conda-forge/osx-64/cfitsio-4.3.0-h66f91ea_0.conda#f540472ad8a8ea2b39a4c6ca14ebc1b5 -https://conda.anaconda.org/conda-forge/noarch/click-default-group-1.2.4-pyhd8ed1ab_0.conda#7c2b6931f9b3548ed78478332095c3e9 -https://conda.anaconda.org/conda-forge/noarch/click-default-group-wheel-1.2.2-pyhd8ed1ab_0.tar.bz2#2228f2640491b5e9c03b6f6346cba887 -https://conda.anaconda.org/conda-forge/noarch/click-plugins-1.1.1-py_0.tar.bz2#4fd2c6b53934bd7d96d1f3fdaf99b79f -https://conda.anaconda.org/conda-forge/noarch/cligj-0.7.2-pyhd8ed1ab_1.tar.bz2#a29b7c141d6b2de4bb67788a5f107734 -https://conda.anaconda.org/conda-forge/noarch/clikit-0.6.2-pyhd8ed1ab_2.conda#02abb7b66b02e8b9f5a9b05454400087 -https://conda.anaconda.org/conda-forge/noarch/coloredlogs-14.0-pyhd8ed1ab_3.tar.bz2#6b92f390b198cb631c95fd37097098c8 -https://conda.anaconda.org/conda-forge/noarch/comm-0.1.4-pyhd8ed1ab_0.conda#c8eaca39e2b6abae1fc96acc929ae939 -https://conda.anaconda.org/conda-forge/osx-64/coverage-7.3.2-py311h2725bcf_0.conda#0ce651c68a0322a6eacef726025b938a -https://conda.anaconda.org/conda-forge/osx-64/fonttools-4.43.1-py311he705e18_0.conda#08a64b9eafc59720c1732a689e64f59c -https://conda.anaconda.org/conda-forge/noarch/gitdb-4.0.11-pyhd8ed1ab_0.conda#623b19f616f2ca0c261441067e18ae40 -https://conda.anaconda.org/conda-forge/noarch/graphql-core-3.2.3-pyhd8ed1ab_0.tar.bz2#87cafe8c7638a5ac6fd8ec8fb01f1508 -https://conda.anaconda.org/conda-forge/osx-64/grpcio-1.57.0-py311h78ff076_2.conda#354306fe3080a2c662a17ba99b916975 -https://conda.anaconda.org/conda-forge/noarch/h11-0.14.0-pyhd8ed1ab_0.tar.bz2#b21ed0883505ba1910994f1df031a428 -https://conda.anaconda.org/conda-forge/noarch/h2-4.1.0-pyhd8ed1ab_0.tar.bz2#b748fbf7060927a6e82df7cb5ee8f097 -https://conda.anaconda.org/conda-forge/osx-64/hdf5-1.14.2-nompi_hedada53_100.conda#2b1d4f355b60eb10c5cb435b9f0e664f -https://conda.anaconda.org/conda-forge/noarch/html5lib-1.1-pyh9f0ad1d_0.tar.bz2#b2355343d6315c892543200231d7154a -https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-6.8.0-pyha770c72_0.conda#4e9f59a060c3be52bc4ddc46ee9b6946 -https://conda.anaconda.org/conda-forge/noarch/importlib_resources-6.1.0-pyhd8ed1ab_0.conda#48b0d98e0c0ec810d3ccc2a0926c8c0e -https://conda.anaconda.org/conda-forge/noarch/isodate-0.6.1-pyhd8ed1ab_0.tar.bz2#4a62c93c1b5c0b920508ae3fd285eaf5 -https://conda.anaconda.org/conda-forge/noarch/janus-1.0.0-pyhd8ed1ab_0.tar.bz2#304b5bce5a9b3590d825ffd85ac63471 -https://conda.anaconda.org/conda-forge/noarch/jaraco.classes-3.3.0-pyhd8ed1ab_0.conda#e9f79248d30e942f7c358ff21a1790f5 -https://conda.anaconda.org/conda-forge/noarch/jedi-0.19.1-pyhd8ed1ab_0.conda#81a3be0b2023e1ea8555781f0ad904a2 -https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.2-pyhd8ed1ab_1.tar.bz2#c8490ed5c70966d232fdd389d0dbed37 -https://conda.anaconda.org/conda-forge/noarch/joblib-1.3.2-pyhd8ed1ab_0.conda#4da50d410f553db77e62ab62ffaa1abc -https://conda.anaconda.org/conda-forge/noarch/jsonlines-4.0.0-pyhd8ed1ab_0.conda#df32eb56c2a48a5ca9465aef29dd46bc -https://conda.anaconda.org/conda-forge/noarch/jupyterlab_pygments-0.2.2-pyhd8ed1ab_0.tar.bz2#243f63592c8e449f40cd42eb5cf32f40 -https://conda.anaconda.org/conda-forge/noarch/latexcodec-2.0.1-pyh9f0ad1d_0.tar.bz2#8d67904973263afd2985ba56aa2d6bb4 -https://conda.anaconda.org/conda-forge/osx-64/libblas-3.9.0-19_osx64_openblas.conda#e932b99c38915fa2ee252cdff6ea1f01 -https://conda.anaconda.org/conda-forge/osx-64/libgoogle-cloud-2.12.0-hc7e40ee_2.conda#033f2640afa75b1d54f4013d7c028c11 -https://conda.anaconda.org/conda-forge/noarch/linear-tsv-1.1.0-py_1.tar.bz2#16491914064fdfe1b9a8fba94ac90e9a -https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_0.conda#93a8e71256479c62074356ef6ebf501b -https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.1.6-pyhd8ed1ab_0.tar.bz2#b21613793fcc81d944c76c9f2864a7de -https://conda.anaconda.org/conda-forge/noarch/nodeenv-1.8.0-pyhd8ed1ab_0.conda#2a75b296096adabbabadd5e9782e5fcc -https://conda.anaconda.org/conda-forge/osx-64/openpyxl-3.1.2-py311h2725bcf_1.conda#49d96f49b6dc810211844fdb11299714 -https://conda.anaconda.org/conda-forge/noarch/overrides-7.4.0-pyhd8ed1ab_0.conda#4625b7b01d7f4ac9c96300a5515acfaa -https://conda.anaconda.org/conda-forge/noarch/partd-1.4.1-pyhd8ed1ab_0.conda#acf4b7c0bcd5fa3b0e05801c4d2accd6 -https://conda.anaconda.org/conda-forge/noarch/pexpect-4.8.0-pyh1a96a4e_2.tar.bz2#330448ce4403cc74990ac07c555942a1 -https://conda.anaconda.org/conda-forge/osx-64/pillow-10.1.0-py311hea5c87a_0.conda#ffff517d90b21a5d44ef907a5a01f695 -https://conda.anaconda.org/conda-forge/noarch/pint-0.22-pyhd8ed1ab_1.conda#a719c3f3959c529e558e9ed9f98c3f30 -https://conda.anaconda.org/conda-forge/noarch/pip-23.3.1-pyhd8ed1ab_0.conda#2400c0b86889f43aa52067161e1fb108 -https://conda.anaconda.org/conda-forge/osx-64/postgresql-16.0-hc940a54_1.conda#d54fd3d9e90e441cc7b2f098ef002cd5 -https://conda.anaconda.org/conda-forge/osx-64/proj-9.3.0-h23b96cc_2.conda#63e960e8c8020936c0b73f23bfed16dd -https://conda.anaconda.org/conda-forge/osx-64/protobuf-4.23.4-py311h01dfb71_3.conda#9cec37ffba618bdaea5088251a7f5cea -https://conda.anaconda.org/conda-forge/noarch/pyasn1-modules-0.3.0-pyhd8ed1ab_0.conda#26db749166cdca55e5ef1ffdc7767d0e -https://conda.anaconda.org/conda-forge/osx-64/pyobjc-core-10.0-py311hf110eff_0.conda#d26705887703d13c655a6098516e06e2 -https://conda.anaconda.org/conda-forge/noarch/pyproject-api-1.6.1-pyhd8ed1ab_0.conda#1815c7974568079cf384f012de5ea1b7 -https://conda.anaconda.org/conda-forge/noarch/pyproject_hooks-1.0.0-pyhd8ed1ab_0.conda#21de50391d584eb7f4441b9de1ad773f -https://conda.anaconda.org/conda-forge/noarch/pytest-7.4.2-pyhd8ed1ab_0.conda#6dd662ff5ac9a783e5c940ce9f3fe649 -https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.8.2-pyhd8ed1ab_0.tar.bz2#dd999d1cc9f79e67dbb855c8924c7984 -https://conda.anaconda.org/conda-forge/noarch/python-slugify-8.0.1-pyhd8ed1ab_2.conda#519897ff446e0dc056e12402e6785cd5 -https://conda.anaconda.org/conda-forge/noarch/pyu2f-0.1.5-pyhd8ed1ab_0.tar.bz2#caabbeaa83928d0c3e3949261daa18eb -https://conda.anaconda.org/conda-forge/noarch/qtpy-2.4.0-pyhd8ed1ab_0.conda#a4c1fc5f8ef46ec8130defcaa2d322ea -https://conda.anaconda.org/conda-forge/noarch/referencing-0.30.2-pyhd8ed1ab_0.conda#a33161b983172ba6ef69d5fc850650cd -https://conda.anaconda.org/conda-forge/noarch/restructuredtext_lint-1.4.0-pyhd8ed1ab_0.tar.bz2#1f3c21740038aba9c174df58986bdccb -https://conda.anaconda.org/conda-forge/noarch/rfc3339-validator-0.1.4-pyhd8ed1ab_0.tar.bz2#fed45fc5ea0813240707998abe49f520 -https://conda.anaconda.org/conda-forge/noarch/rsa-4.9-pyhd8ed1ab_0.tar.bz2#03bf410858b2cefc267316408a77c436 -https://conda.anaconda.org/conda-forge/osx-64/ruamel.yaml-0.17.39-py311he705e18_0.conda#597356320317d95d4b062eeefb2e31d2 -https://conda.anaconda.org/conda-forge/osx-64/sqlalchemy-1.4.49-py311he705e18_1.conda#04845132cd5d140b638c4927e1895e12 -https://conda.anaconda.org/conda-forge/noarch/terminado-0.17.1-pyhd1c38e8_0.conda#046120b71d8896cb7faef78bfdbfee1e -https://conda.anaconda.org/conda-forge/noarch/tinycss2-1.2.1-pyhd8ed1ab_0.tar.bz2#7234c9eefff659501cd2fe0d2ede4d48 -https://conda.anaconda.org/conda-forge/noarch/tqdm-4.66.1-pyhd8ed1ab_0.conda#03c97908b976498dcae97eb4e4f3149c -https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.8.0-hd8ed1ab_0.conda#384462e63262a527bda564fa2d9126c0 -https://conda.anaconda.org/conda-forge/noarch/universal_pathlib-0.1.4-pyhd8ed1ab_0.conda#08ca974df312b574c4d6511426539a87 -https://conda.anaconda.org/conda-forge/noarch/urllib3-1.26.18-pyhd8ed1ab_0.conda#bf61cfd2a7f212efba378167a07d4a6a -https://conda.anaconda.org/conda-forge/osx-64/watchdog-3.0.0-py311h5ef12f2_1.conda#32c15f3306fd2e9a9c2876f2fc33d5ed -https://conda.anaconda.org/conda-forge/osx-64/xerces-c-3.2.4-h6314983_3.conda#9623310baca5b47637cf46889bd77178 -https://conda.anaconda.org/conda-forge/osx-64/yarl-1.9.2-py311he705e18_1.conda#ac4f2406c36c333c12544f6605563188 -https://conda.anaconda.org/conda-forge/noarch/addfips-0.4.0-pyhd8ed1ab_1.conda#cb434d01bfd3ba57c54a423f3773ffda -https://conda.anaconda.org/conda-forge/noarch/aniso8601-9.0.1-pyhd8ed1ab_0.tar.bz2#36fba1a639f2d24723c5480345b78553 -https://conda.anaconda.org/conda-forge/osx-64/argon2-cffi-bindings-21.2.0-py311h2725bcf_4.conda#e2aba0ad0f533ee73f9d4330d2e32549 -https://conda.anaconda.org/conda-forge/noarch/arrow-1.3.0-pyhd8ed1ab_0.conda#b77d8c2313158e6e461ca0efb1c2c508 -https://conda.anaconda.org/conda-forge/noarch/async-timeout-4.0.3-pyhd8ed1ab_0.conda#3ce482ec3066e6d809dbbb1d1679f215 -https://conda.anaconda.org/conda-forge/osx-64/aws-c-s3-0.3.17-h5800b94_4.conda#9668cfe40bd5abfd39d4c97c25382db8 -https://conda.anaconda.org/conda-forge/noarch/botocore-1.31.68-pyhd8ed1ab_0.conda#0bf56dadacce6f9218d88df71d3e7576 -https://conda.anaconda.org/conda-forge/noarch/branca-0.6.0-pyhd8ed1ab_0.tar.bz2#f4cc65697763ef8c2f7555f1ec355a6b -https://conda.anaconda.org/conda-forge/osx-64/cmarkgfm-0.8.0-py311h2725bcf_3.conda#3a4ef0858a3fae7e61ae9cdf72adefd1 -https://conda.anaconda.org/conda-forge/noarch/croniter-2.0.1-pyhd8ed1ab_0.conda#f67f52c1f555785b86c3bd8e5de4c66f -https://conda.anaconda.org/conda-forge/osx-64/cryptography-41.0.4-py311h892b619_0.conda#2cac7e2bbfea2b26786c147e19a930e3 -https://conda.anaconda.org/conda-forge/noarch/fqdn-1.5.1-pyhd8ed1ab_0.tar.bz2#642d35437078749ef23a5dca2c9bb1f3 -https://conda.anaconda.org/conda-forge/osx-64/geotiff-1.7.1-h889ec99_14.conda#c994aeaa43a92403ecc723dba66b3f1f -https://conda.anaconda.org/conda-forge/noarch/gitpython-3.1.40-pyhd8ed1ab_0.conda#6bf74c3b7c13079a91d4bd3da51cefcf -https://conda.anaconda.org/conda-forge/osx-64/google-crc32c-1.1.2-py311h0b57020_5.conda#bc176084bd6ba0a97bfdead25850957a -https://conda.anaconda.org/conda-forge/noarch/googleapis-common-protos-1.61.0-pyhd8ed1ab_0.conda#f315d7fdc1905dcc2e18a1c7bed22fa9 -https://conda.anaconda.org/conda-forge/noarch/gql-3.4.1-pyhd8ed1ab_0.conda#6ad94588f33ddb97175c7f22feef7d2c -https://conda.anaconda.org/conda-forge/noarch/graphql-relay-3.2.0-pyhd8ed1ab_0.tar.bz2#1b2b83e3528f8fb83007161eff51073d -https://conda.anaconda.org/conda-forge/noarch/grpcio-health-checking-1.57.0-pyhd8ed1ab_0.conda#c22fdc1bd41d6c71e0eb4da829d7b228 -https://conda.anaconda.org/conda-forge/noarch/httpcore-0.18.0-pyhd8ed1ab_0.conda#eb69a63c23bbda9aac55bc0c0c6144f9 -https://conda.anaconda.org/conda-forge/noarch/importlib_metadata-6.8.0-hd8ed1ab_0.conda#b279b07ce18058034e5b3606ba103a8b -https://conda.anaconda.org/conda-forge/noarch/jsonschema-specifications-2023.7.1-pyhd8ed1ab_0.conda#7c27ea1bdbe520bb830dcadd59f55cbf -https://conda.anaconda.org/conda-forge/noarch/jupyter_server_terminals-0.4.4-pyhd8ed1ab_1.conda#7c0965e1d4a0ee1529e8eaa03a78a5b3 -https://conda.anaconda.org/conda-forge/osx-64/kealib-1.5.2-h052fcf7_1.conda#346aec056b5619302c4aa538fbee4bdf -https://conda.anaconda.org/conda-forge/osx-64/libcblas-3.9.0-19_osx64_openblas.conda#40e412c219ad8cf87ba664466071bcf6 -https://conda.anaconda.org/conda-forge/osx-64/liblapack-3.9.0-19_osx64_openblas.conda#2e714df18db99ee6d7b4ac728f53ca62 -https://conda.anaconda.org/conda-forge/osx-64/libnetcdf-4.9.2-nompi_h6a32802_112.conda#413f9a35e9f888163b922ea6cfafb9da -https://conda.anaconda.org/conda-forge/osx-64/libspatialite-5.1.0-h231fb02_0.conda#01e2c119c7b00f2116bc33660107ad37 -https://conda.anaconda.org/conda-forge/noarch/mako-1.2.4-pyhd8ed1ab_0.tar.bz2#0d072f0edc017b6318dbab701e053f94 -https://conda.anaconda.org/conda-forge/noarch/pbr-5.11.1-pyhd8ed1ab_0.conda#5bde4ebca51438054099b9527c904ecb -https://conda.anaconda.org/conda-forge/osx-64/pendulum-2.1.2-py311h2725bcf_6.conda#451e4c395833a2cbdc1e25bfc768798d -https://conda.anaconda.org/conda-forge/noarch/platformdirs-3.11.0-pyhd8ed1ab_0.conda#8f567c0a74aa44cf732f15773b4083b0 -https://conda.anaconda.org/conda-forge/osx-64/poppler-23.10.0-hdd5a5e8_0.conda#3ba0ca934cf0ce30de692abdc7807419 -https://conda.anaconda.org/conda-forge/noarch/pybtex-0.24.0-pyhd8ed1ab_2.tar.bz2#2099b86a7399c44c0c61cdb6de6915ba -https://conda.anaconda.org/conda-forge/osx-64/pydantic-1.10.13-py311he705e18_1.conda#ca0cd7b41964ce9a7b80290ea85e22e9 -https://conda.anaconda.org/conda-forge/osx-64/pyobjc-framework-cocoa-10.0-py311hf110eff_1.conda#8fb67274a648901045368717d6221aed -https://conda.anaconda.org/conda-forge/osx-64/pyproj-3.6.1-py311h7851242_2.conda#52ae2a9b8f7b2bb59774902d1b703e55 -https://conda.anaconda.org/conda-forge/noarch/pytest-console-scripts-1.4.1-pyhd8ed1ab_0.conda#ee8808504c73665bed76e20ede28bd56 -https://conda.anaconda.org/conda-forge/noarch/pytest-cov-4.1.0-pyhd8ed1ab_0.conda#06eb685a3a0b146347a58dda979485da -https://conda.anaconda.org/conda-forge/noarch/pytest-mock-3.11.1-pyhd8ed1ab_0.conda#fcd2531bc3e492657aeb042349aeaf8a -https://conda.anaconda.org/conda-forge/noarch/python-build-1.0.3-pyhd8ed1ab_0.conda#d9ccabf228cb98419ca3d5694b25e1a2 -https://conda.anaconda.org/conda-forge/noarch/requests-2.31.0-pyhd8ed1ab_0.conda#a30144e4156cdbb236f99ebb49828f8b -https://conda.anaconda.org/conda-forge/noarch/rich-13.6.0-pyhd8ed1ab_0.conda#3ca4829f40710f581ca1d76bc907e99f -https://conda.anaconda.org/conda-forge/noarch/stack_data-0.6.2-pyhd8ed1ab_0.conda#e7df0fdd404616638df5ece6e69ba7af -https://conda.anaconda.org/conda-forge/noarch/starlette-0.31.1-pyhd8ed1ab_0.conda#409034f0925a73b5f27ae71849e60034 -https://conda.anaconda.org/conda-forge/osx-64/tiledb-2.16.3-hd3a41d5_3.conda#53c2d2746f21a60d0c498c36fb32ec56 -https://conda.anaconda.org/conda-forge/osx-64/ukkonen-1.0.1-py311h5fe6e05_4.conda#8f750b84128d48dc8376572c5eace61e -https://conda.anaconda.org/conda-forge/osx-64/uvicorn-0.23.2-py311h6eed73b_1.conda#788c73eaddf07e6893ce56455cee9b95 -https://conda.anaconda.org/conda-forge/osx-64/watchfiles-0.20.0-py311h299eb51_2.conda#f9c3352b6007cb4d6db914f9814d0c3b -https://conda.anaconda.org/conda-forge/noarch/wcwidth-0.2.8-pyhd8ed1ab_0.conda#367386d2575a0e62412448eda1012efd -https://conda.anaconda.org/conda-forge/osx-64/aiohttp-3.8.6-py311he705e18_1.conda#5319ce185be1f2c4d1b19b95488c02a8 -https://conda.anaconda.org/conda-forge/noarch/alembic-1.12.0-pyhd8ed1ab_0.conda#ba29026b587195548ef82444518061f7 -https://conda.anaconda.org/conda-forge/noarch/argon2-cffi-23.1.0-pyhd8ed1ab_0.conda#3afef1f55a1366b4d3b6a0d92e2235e4 -https://conda.anaconda.org/conda-forge/osx-64/aws-crt-cpp-0.24.2-hf47b73b_2.conda#faf4466195212ca3bf62f24b88ac1e7e -https://conda.anaconda.org/conda-forge/osx-64/black-23.10.0-py311h6eed73b_0.conda#2ad6090cff442629cfb907f77967e96b -https://conda.anaconda.org/conda-forge/noarch/cachecontrol-0.13.1-pyhd8ed1ab_0.conda#174bd699bb5aa9e2622eb4b288276ff8 -https://conda.anaconda.org/conda-forge/noarch/dask-core-2023.10.0-pyhd8ed1ab_0.conda#6b415b2cd4a106b8eb1632be126ede81 -https://conda.anaconda.org/conda-forge/noarch/dnspython-2.4.2-pyhd8ed1ab_1.conda#b9657eab1e69207feba4f21fa1207b03 -https://conda.anaconda.org/conda-forge/noarch/ensureconda-1.4.3-pyhd8ed1ab_0.tar.bz2#c99ae3abf501990769047b4b40a98f17 -https://conda.anaconda.org/conda-forge/noarch/google-resumable-media-2.6.0-pyhd8ed1ab_0.conda#74fd9d08866e60fc412abc8dd7c5486c -https://conda.anaconda.org/conda-forge/noarch/graphene-3.3-pyhd8ed1ab_0.conda#ed2ae94977dfd96566e6eaf373216728 -https://conda.anaconda.org/conda-forge/noarch/grpcio-status-1.57.0-pyhd8ed1ab_0.conda#288d9a5edd2619ffd7592ef273b663e3 -https://conda.anaconda.org/conda-forge/noarch/httpx-0.25.0-pyhd8ed1ab_0.conda#37c6a92b2493f801068cccdbbcfe4201 -https://conda.anaconda.org/conda-forge/noarch/identify-2.5.30-pyhd8ed1ab_0.conda#b7a2e3bb89bda8c69839485c20aabadf -https://conda.anaconda.org/conda-forge/noarch/isoduration-20.11.0-pyhd8ed1ab_0.tar.bz2#4cb68948e0b8429534380243d063a27a -https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.19.1-pyhd8ed1ab_0.conda#78aff5d2af74e6537c1ca73017f01f4f -https://conda.anaconda.org/conda-forge/osx-64/jupyter_core-5.4.0-py311h6eed73b_0.conda#6adbf7dcbccbb8bb38e8e3797e55c25e -https://conda.anaconda.org/conda-forge/osx-64/keyring-24.2.0-py311h6eed73b_1.conda#dc0383887b837540194b65204521b8b3 -https://conda.anaconda.org/conda-forge/osx-64/libgdal-3.7.2-h926149b_7.conda#c5acda4c49753de0e98d572fc9b111f8 -https://conda.anaconda.org/conda-forge/osx-64/numpy-1.24.4-py311hc44ba51_0.conda#31c12f08652b27a8f9cceb39ea4a1d4e -https://conda.anaconda.org/conda-forge/noarch/oauthlib-3.2.2-pyhd8ed1ab_0.tar.bz2#8f882b197fd9c4941a787926baea4868 -https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.39-pyha770c72_0.conda#a4986c6bb5b0d05a38855b0880a5f425 -https://conda.anaconda.org/conda-forge/osx-64/pybtex-docutils-1.0.3-py311h6eed73b_1.conda#36996441974a061f9e0b600741599585 -https://conda.anaconda.org/conda-forge/noarch/pyopenssl-23.2.0-pyhd8ed1ab_1.conda#34f7d568bf59d18e3fef8c405cbece21 -https://conda.anaconda.org/conda-forge/noarch/readme_renderer-42.0-pyhd8ed1ab_0.conda#fdc16f5dc3a911d8f43f64f814a45961 -https://conda.anaconda.org/conda-forge/noarch/readthedocs-sphinx-ext-2.2.3-pyhd8ed1ab_0.conda#6bc1a00f5502f9ed13526e4c6bea6900 -https://conda.anaconda.org/conda-forge/noarch/requests-toolbelt-0.10.1-pyhd8ed1ab_0.tar.bz2#a4cd20af9711434f89d1ec0d2b3ae6ba -https://conda.anaconda.org/conda-forge/noarch/responses-0.23.1-pyhd8ed1ab_0.conda#bf15c93720dfea117aaea3155cbebce5 -https://conda.anaconda.org/conda-forge/noarch/s3transfer-0.7.0-pyhd8ed1ab_0.conda#5fe335cb1420d13a818fe01310af2b80 -https://conda.anaconda.org/conda-forge/noarch/send2trash-1.8.2-pyhd1c38e8_0.conda#2657c3de5371c571aef6678afb4aaadd -https://conda.anaconda.org/conda-forge/noarch/stevedore-5.1.0-pyhd8ed1ab_0.conda#55864c50fd9354fd19f6a5078a068170 -https://conda.anaconda.org/conda-forge/noarch/typer-0.9.0-pyhd8ed1ab_0.conda#5030a13b2fe5e143d5956d4943d3018f -https://conda.anaconda.org/conda-forge/osx-64/uvicorn-standard-0.23.2-h6eed73b_1.conda#32ebf1ebea1492f61a2a0912351c5671 -https://conda.anaconda.org/conda-forge/noarch/virtualenv-20.24.4-pyhd8ed1ab_0.conda#c3feaf947264a59a125e8c26e98c3c5a -https://conda.anaconda.org/conda-forge/noarch/arelle-release-2.16.1-pyhd8ed1ab_0.conda#8b03e47972a8e0759dce09378c962d3d -https://conda.anaconda.org/conda-forge/osx-64/aws-sdk-cpp-1.11.156-hf61f2bb_4.conda#b2c502e01831e4c570b46d39a95cc110 -https://conda.anaconda.org/conda-forge/noarch/boto3-1.28.68-pyhd8ed1ab_0.conda#4b81c7adfe8551654cf528e3d708b326 -https://conda.anaconda.org/conda-forge/osx-64/bottleneck-1.3.7-py311h4a70a88_1.conda#a51cbb557788277233420f12ced6e461 -https://conda.anaconda.org/conda-forge/noarch/cachecontrol-with-filecache-0.13.1-pyhd8ed1ab_0.conda#8c4781ca0893cff3a64423954ce234a1 -https://conda.anaconda.org/conda-forge/osx-64/contourpy-1.1.1-py311h5fe6e05_1.conda#a8e5f688e3249e1dea90b4dd4eede1a7 -https://conda.anaconda.org/conda-forge/noarch/dagster-1.5.3-pyhd8ed1ab_1.conda#269916d868c11d9790d340a6587708bb -https://conda.anaconda.org/conda-forge/noarch/datasette-0.64.4-pyhd8ed1ab_1.conda#cd1207af03052f6b81906e1a914ad3c5 -https://conda.anaconda.org/conda-forge/noarch/doc8-1.1.1-pyhd8ed1ab_0.conda#5e9e17751f19d03c4034246de428582e -https://conda.anaconda.org/conda-forge/noarch/email-validator-2.0.0.post2-pyhd8ed1ab_0.conda#af9f5d81309e51c05b5964f9573c2cc0 -https://conda.anaconda.org/conda-forge/noarch/folium-0.14.0-pyhd8ed1ab_0.conda#48c8bb19df0d0268f1a9d30ffc56c5b0 -https://conda.anaconda.org/conda-forge/noarch/frictionless-4.40.8-pyh6c4a22f_0.tar.bz2#d2791ef8f6c1252aa8d2e2001a603815 -https://conda.anaconda.org/conda-forge/osx-64/gdal-3.7.2-py311h5646c56_7.conda#51c874f56ec41660d6137f4478f838a9 -https://conda.anaconda.org/conda-forge/noarch/google-auth-2.23.3-pyhca7485f_0.conda#79faaf9cd0e5114c19253552d8d92872 -https://conda.anaconda.org/conda-forge/noarch/gql-with-requests-3.4.1-pyhd8ed1ab_0.conda#1814ff1e969b01d3570027efcf4f163a -https://conda.anaconda.org/conda-forge/osx-64/h3-py-3.7.6-py311hdf8f085_1.conda#491ef24fdb3c14d9c8d22efc62a181fb -https://conda.anaconda.org/conda-forge/noarch/jsonschema-with-format-nongpl-4.19.1-pyhd8ed1ab_0.conda#daca0665e6fe8a376e48b9f0b5865326 -https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.4.0-pyhd8ed1ab_0.conda#554496685357ab0d69676cab8e8fb594 -https://conda.anaconda.org/conda-forge/noarch/nbformat-5.9.2-pyhd8ed1ab_0.conda#61ba076de6530d9301a0053b02f093d2 -https://conda.anaconda.org/conda-forge/osx-64/numba-0.57.1-py311h5a8220d_0.conda#8049bf49848013a9b6565c14e6621798 -https://conda.anaconda.org/conda-forge/osx-64/numexpr-2.8.7-py311h1eadf79_4.conda#1e4eb39eb67cd4786fa381214810a9e1 -https://conda.anaconda.org/conda-forge/osx-64/pandas-2.1.1-py311hab14417_1.conda#01e55e765502b2597eca113ee23711c6 -https://conda.anaconda.org/conda-forge/noarch/pre-commit-3.5.0-pyha770c72_0.conda#964e3d762e427661c59263435a14c492 -https://conda.anaconda.org/conda-forge/noarch/prompt_toolkit-3.0.39-hd8ed1ab_0.conda#4bbbe67d5df19db30f04b8e344dc9976 -https://conda.anaconda.org/conda-forge/noarch/requests-oauthlib-1.3.1-pyhd8ed1ab_0.tar.bz2#61b279f051eef9c89d58f4d813e75e04 -https://conda.anaconda.org/conda-forge/osx-64/scipy-1.11.3-py311h16c3c4d_1.conda#77164acef9bc09545bd3324a8f986be5 -https://conda.anaconda.org/conda-forge/osx-64/shapely-2.0.2-py311h359915d_0.conda#5569c5122a7938835a8a7c498aaded67 -https://conda.anaconda.org/conda-forge/noarch/tox-4.11.3-pyhd8ed1ab_0.conda#9ad1597140aa28f50fee5567775057dc -https://conda.anaconda.org/conda-forge/noarch/twine-4.0.2-pyhd8ed1ab_0.conda#e3a16168d6b9deefb8c1caa7943fb49e -https://conda.anaconda.org/conda-forge/noarch/catalystcoop.ferc_xbrl_extractor-1.1.1-pyhd8ed1ab_0.conda#d40f9751f064b3180e93aadb683bb2b7 -https://conda.anaconda.org/conda-forge/noarch/conda-lock-2.4.0-pyhd8ed1ab_0.conda#edcd5c7565a5cd1c7862a911a899fb20 -https://conda.anaconda.org/conda-forge/noarch/dagster-graphql-1.5.3-pyhd8ed1ab_1.conda#9c67172e4c79a12d965f17d650b5336b -https://conda.anaconda.org/conda-forge/osx-64/fiona-1.9.5-py311hf14a637_0.conda#b0a818c3ad6768567ea7e72ca7a777f7 -https://conda.anaconda.org/conda-forge/noarch/geopandas-base-0.14.0-pyha770c72_1.conda#614a383c5f4350e0606689f54c6497b1 -https://conda.anaconda.org/conda-forge/noarch/google-api-core-2.12.0-pyhd8ed1ab_0.conda#f978eac45a312816fffd61eb65f5ed0e -https://conda.anaconda.org/conda-forge/noarch/google-auth-oauthlib-1.1.0-pyhd8ed1ab_0.conda#ffa1e2fd52bc00ec0fc5680a2f4bd167 -https://conda.anaconda.org/conda-forge/noarch/ipython-8.16.1-pyh31c8845_0.conda#531bac092414642fdead7a511357485a -https://conda.anaconda.org/conda-forge/noarch/jupyter_events-0.8.0-pyhd8ed1ab_0.conda#04272d87d3e06c2e26af5e2d4b0e0ad8 -https://conda.anaconda.org/conda-forge/osx-64/libarrow-13.0.0-h66f826e_7_cpu.conda#41dabcc9331ccb1d0ec6a7c7a926ec2d -https://conda.anaconda.org/conda-forge/osx-64/matplotlib-base-3.8.0-py311hd316c10_2.conda#8ef12dc2e1675f13e0a226bf2a85da50 -https://conda.anaconda.org/conda-forge/noarch/nbclient-0.8.0-pyhd8ed1ab_0.conda#e78da91cf428faaf05701ce8cc8f2f9b -https://conda.anaconda.org/conda-forge/osx-64/scikit-learn-1.3.1-py311h66081b9_1.conda#d4f5fabfaa9b000f30e0de5c5d42b8d6 -https://conda.anaconda.org/conda-forge/noarch/tabulator-1.53.5-pyhd8ed1ab_0.tar.bz2#c967687222ad29a74f68e99698d08d30 -https://conda.anaconda.org/conda-forge/osx-64/timezonefinder-6.2.0-py311h2725bcf_1.conda#4dfcb2033d10db8f2ab219c41673ab98 -https://conda.anaconda.org/conda-forge/noarch/dagster-webserver-1.5.3-pyhd8ed1ab_1.conda#821b36bfafdd03da8af532b6a9518fe9 -https://conda.anaconda.org/conda-forge/noarch/google-cloud-core-2.3.3-pyhd8ed1ab_0.conda#a26b1fa8555cc1d2f0f7ff9985303e66 -https://conda.anaconda.org/conda-forge/noarch/ipdb-0.13.13-pyhd8ed1ab_0.conda#86baea403007ad4898d85c897c80b758 -https://conda.anaconda.org/conda-forge/noarch/ipykernel-6.25.2-pyh1050b4e_0.conda#a643e6f6c33ed821664f2a69f6e4e89f -https://conda.anaconda.org/conda-forge/noarch/ipywidgets-8.1.1-pyhd8ed1ab_0.conda#2605fae5ee27100e5f10037baebf4d41 -https://conda.anaconda.org/conda-forge/noarch/mapclassify-2.6.1-pyhd8ed1ab_0.conda#6aceae1ad4f16cf7b73ee04189947f98 -https://conda.anaconda.org/conda-forge/noarch/nbconvert-core-7.9.2-pyhd8ed1ab_0.conda#01e4314c780ca73759c694ce3ece281f -https://conda.anaconda.org/conda-forge/osx-64/pyarrow-13.0.0-py311h54e7ce8_7_cpu.conda#178b9f7f049a95aa422762a5b08154ff -https://conda.anaconda.org/conda-forge/noarch/recordlinkage-0.16-pyhd8ed1ab_0.conda#948205d11a8b036e065c46462db0632a -https://conda.anaconda.org/conda-forge/noarch/tableschema-1.19.3-pyh9f0ad1d_0.tar.bz2#57f70b39e74b4af667775c0a07f35cc3 -https://conda.anaconda.org/conda-forge/noarch/datapackage-1.15.2-pyh44b312d_0.tar.bz2#3f1a6895ab9c423cf59de7c46e56a824 -https://conda.anaconda.org/conda-forge/noarch/geopandas-0.14.0-pyhd8ed1ab_1.conda#d3617cddba7ea3dd3234d28faa3bc3b4 -https://conda.anaconda.org/conda-forge/noarch/google-cloud-storage-2.12.0-pyhca7485f_0.conda#fea9a0827d3285450ea0c4d4b78b2664 -https://conda.anaconda.org/conda-forge/noarch/jupyter_console-6.6.3-pyhd8ed1ab_0.conda#7cf6f52a66f8e3cd9d8b6c231262dcab -https://conda.anaconda.org/conda-forge/noarch/jupyter_server-2.8.0-pyhd8ed1ab_0.conda#a750b082b9319e96556df4ee6023b068 -https://conda.anaconda.org/conda-forge/noarch/nbconvert-pandoc-7.9.2-pyhd8ed1ab_0.conda#1ad46253f2eb46fb8c9b2c22b7ca012f -https://conda.anaconda.org/conda-forge/noarch/qtconsole-base-5.4.4-pyha770c72_0.conda#08961a76f2a4e2ebdb9b56f451beaa45 -https://conda.anaconda.org/conda-forge/noarch/gcsfs-2023.9.2-pyhd8ed1ab_0.conda#c9deedf93585c3d5ce5525a89bf7287e -https://conda.anaconda.org/conda-forge/noarch/jupyter-lsp-2.2.0-pyhd8ed1ab_0.conda#38589f4104d11f2a59ff01a9f4e3bfb3 -https://conda.anaconda.org/conda-forge/noarch/jupyter-resource-usage-1.0.1-pyhd8ed1ab_0.conda#b079fd1b0ee75199a042537d036b496f -https://conda.anaconda.org/conda-forge/noarch/jupyterlab_server-2.25.0-pyhd8ed1ab_0.conda#a52834fa7e3d12abc5efdf06b2097a05 -https://conda.anaconda.org/conda-forge/noarch/nbconvert-7.9.2-pyhd8ed1ab_0.conda#16ccaddfcfa0a1a606a9ecf6a52d6c11 -https://conda.anaconda.org/conda-forge/noarch/notebook-shim-0.2.3-pyhd8ed1ab_0.conda#67e0fe74c156267d9159e9133df7fd37 -https://conda.anaconda.org/conda-forge/noarch/jupyterlab-4.0.7-pyhd8ed1ab_0.conda#80318d83f33b3bf4e57b8533b7a6691d -https://conda.anaconda.org/conda-forge/noarch/notebook-7.0.6-pyhd8ed1ab_0.conda#d60881c78a54cbf8042ae719f1f77a50 -https://conda.anaconda.org/conda-forge/noarch/jupyter-1.0.0-pyhd8ed1ab_10.conda#056b8cc3d9b03f54fc49e6d70d7dc359 -https://conda.anaconda.org/conda-forge/noarch/sphinx-autoapi-3.0.0-pyhd8ed1ab_0.conda#736b53813c2b9582b1345462d8ca66e7 -https://conda.anaconda.org/conda-forge/noarch/sphinx-basic-ng-1.0.0b2-pyhd8ed1ab_1.conda#a631f5c7b7f5045448f966ad71aa2881 -https://conda.anaconda.org/conda-forge/noarch/furo-2023.9.10-pyhd8ed1ab_0.conda#0dcfacf6d3e49f2957c69c81356cf892 -https://conda.anaconda.org/conda-forge/noarch/sphinx-issues-1.2.0-py_0.tar.bz2#2d5c0dddca9bb724dcf5a3fb295a2266 -https://conda.anaconda.org/conda-forge/noarch/sphinx-reredirects-0.1.2-pyhd8ed1ab_0.conda#30e618adaaf11aa4a98912913c62a12b -https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-applehelp-1.0.7-pyhd8ed1ab_0.conda#aebfabcb60c33a89c1f9290cab49bc93 -https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-bibtex-2.6.1-pyhd8ed1ab_1.conda#109cf3a7c844834267057e80b4f4eae3 -https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-devhelp-1.0.5-pyhd8ed1ab_0.conda#ebf08f5184d8eaa486697bc060031953 -https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-htmlhelp-2.0.4-pyhd8ed1ab_0.conda#a9a89000dfd19656ad004b937eeb6828 -https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-qthelp-1.0.6-pyhd8ed1ab_0.conda#cf5c9649272c677a964a7313279e3a9b -https://conda.anaconda.org/conda-forge/noarch/sphinx-7.2.6-pyhd8ed1ab_0.conda#bbfd1120d1824d2d073bc65935f0e4c0 -https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-serializinghtml-1.1.9-pyhd8ed1ab_0.conda#0612e497d7860728f2cda421ea2aec09 diff --git a/environments/conda-osx-64.lock.yml b/environments/conda-osx-64.lock.yml index d8a4e0b26b..d66b620a9a 100644 --- a/environments/conda-osx-64.lock.yml +++ b/environments/conda-osx-64.lock.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: osx-64 -# input_hash: 8aa42773a7607bf040989d5613479361acc24671ae6c8249c38b2d8110f6ea4f +# input_hash: 9f5d630b29b23ce10e90cefc9bd0027208b275e1454c2857376e9ad24d38f078 channels: - conda-forge @@ -8,7 +8,7 @@ channels: dependencies: - aws-c-common=0.9.3=h0dc2134_0 - bzip2=1.0.8=h0d85af4_4 - - c-ares=1.20.1=h10d778d_0 + - c-ares=1.20.1=h10d778d_1 - ca-certificates=2023.7.22=h8857fd0_0 - font-ttf-dejavu-sans-mono=2.37=hab24e00_0 - font-ttf-inconsolata=3.000=h77eed37_0 @@ -70,7 +70,7 @@ dependencies: - libxml2=2.11.5=h3346baf_1 - lz4-c=1.9.4=hf0c8a7f_0 - nspr=4.35=hea0b92c_0 - - openssl=3.1.3=h8a1eda9_0 + - openssl=3.1.4=hd75f5a5_0 - pcre2=10.40=h1c4e4bc_0 - pixman=0.42.2=he965462_0 - re2=2023.03.02=h096449b_0 @@ -121,20 +121,20 @@ dependencies: - brotli=1.1.0=h0dc2134_1 - brotli-python=1.1.0=py311hdf8f085_1 - cached_property=1.5.2=pyha770c72_1 - - cachetools=5.3.1=pyhd8ed1ab_0 + - cachetools=5.3.2=pyhd8ed1ab_0 - cachy=0.3.0=pyhd8ed1ab_1 - catalystcoop.dbfread=3.0.0=py_0 - cchardet=2.1.7=py311hdf8f085_5 - certifi=2023.7.22=pyhd8ed1ab_0 - cfgv=3.3.1=pyhd8ed1ab_0 - chardet=5.2.0=py311h6eed73b_1 - - charset-normalizer=3.3.0=pyhd8ed1ab_0 + - charset-normalizer=3.3.1=pyhd8ed1ab_0 - click=8.1.7=unix_pyh707e725_0 - cloudpickle=3.0.0=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_0 - crashtest=0.4.1=pyhd8ed1ab_0 - cycler=0.12.1=pyhd8ed1ab_0 - - dagster-pipes=1.5.3=pyhd8ed1ab_1 + - dagster-pipes=1.5.4=pyhd8ed1ab_1 - dataclasses=0.8=pyhc8e2a94_3 - debugpy=1.8.0=py311hdf8f085_1 - decorator=5.1.1=pyhd8ed1ab_0 @@ -151,7 +151,7 @@ dependencies: - freexl=2.0.0=h3ec172f_0 - frozenlist=1.4.0=py311h2725bcf_1 - fsspec=2023.9.2=pyh1a96a4e_0 - - greenlet=3.0.0=py311hd39e593_1 + - greenlet=3.0.1=py311hd39e593_0 - hpack=4.0.0=pyh9f0ad1d_0 - httptools=0.6.1=py311he705e18_0 - humanfriendly=10.0=pyhd8ed1ab_6 @@ -190,7 +190,7 @@ dependencies: - munkres=1.1.4=pyh9f0ad1d_0 - mypy_extensions=1.0.0=pyha770c72_0 - nest-asyncio=1.5.8=pyhd8ed1ab_0 - - networkx=3.1=pyhd8ed1ab_0 + - networkx=3.2=pyhd8ed1ab_1 - nh3=0.2.14=py311h299eb51_1 - openjpeg=2.5.0=ha4da562_3 - orc=1.9.0=ha4ae40d_2 @@ -225,17 +225,17 @@ dependencies: - pywin32-on-windows=0.1.0=pyh1179c8e_3 - pyxlsb=1.0.10=pyhd8ed1ab_0 - pyyaml=6.0.1=py311h2725bcf_1 - - pyzmq=25.1.1=py311h5dacc12_1 + - pyzmq=25.1.1=py311he3804a1_2 - regex=2023.10.3=py311h2725bcf_0 - rfc3986=2.0.0=pyhd8ed1ab_0 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - rpds-py=0.10.6=py311h5e0f0e4_0 - rtree=1.1.0=py311hbc1f44b_0 - ruamel.yaml.clib=0.2.7=py311h2725bcf_2 - - ruff=0.1.1=py311ha071555_0 + - ruff=0.1.2=py311hec6fdf1_0 - setuptools=68.2.2=pyhd8ed1ab_0 - - shellingham=1.5.3=pyhd8ed1ab_0 - - simpleeval=0.9.13=py311h2725bcf_1 + - shellingham=1.5.4=pyhd8ed1ab_0 + - simpleeval=0.9.13=pyhd8ed1ab_1 - six=1.16.0=pyh6c4a22f_0 - smmap=5.0.0=pyhd8ed1ab_0 - sniffio=1.3.0=pyhd8ed1ab_0 @@ -252,14 +252,14 @@ dependencies: - toolz=0.12.0=pyhd8ed1ab_0 - toposort=1.10=pyhd8ed1ab_0 - tornado=6.3.3=py311h2725bcf_1 - - traitlets=5.11.2=pyhd8ed1ab_0 + - traitlets=5.12.0=pyhd8ed1ab_0 - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 - types-pyyaml=6.0.12.12=pyhd8ed1ab_0 - typing_extensions=4.8.0=pyha770c72_0 - typing_utils=0.1.0=pyhd8ed1ab_0 - unicodecsv=0.14.1=py_1 - uri-template=1.3.0=pyhd8ed1ab_0 - - uvloop=0.18.0=py311ha272bfe_0 + - uvloop=0.19.0=py311ha272bfe_0 - validators=0.22.0=pyhd8ed1ab_0 - webcolors=1.13=pyhd8ed1ab_0 - webencodings=0.5.1=pyhd8ed1ab_2 @@ -279,7 +279,7 @@ dependencies: - async-lru=2.0.4=pyhd8ed1ab_0 - aws-c-auth=0.7.4=hbe6ead2_2 - aws-c-mqtt=0.9.7=h6b10715_0 - - babel=2.13.0=pyhd8ed1ab_0 + - babel=2.13.1=pyhd8ed1ab_0 - backports.functools_lru_cache=1.6.5=pyhd8ed1ab_0 - beautifulsoup4=4.12.2=pyha770c72_0 - bleach=6.1.0=pyhd8ed1ab_0 @@ -332,18 +332,17 @@ dependencies: - protobuf=4.23.4=py311h01dfb71_3 - pyasn1-modules=0.3.0=pyhd8ed1ab_0 - pyobjc-core=10.0=py311hf110eff_0 - - pyproject-api=1.6.1=pyhd8ed1ab_0 - pyproject_hooks=1.0.0=pyhd8ed1ab_0 - - pytest=7.4.2=pyhd8ed1ab_0 + - pytest=7.4.3=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - python-slugify=8.0.1=pyhd8ed1ab_2 - pyu2f=0.1.5=pyhd8ed1ab_0 - - qtpy=2.4.0=pyhd8ed1ab_0 + - qtpy=2.4.1=pyhd8ed1ab_0 - referencing=0.30.2=pyhd8ed1ab_0 - restructuredtext_lint=1.4.0=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - rsa=4.9=pyhd8ed1ab_0 - - ruamel.yaml=0.17.39=py311he705e18_0 + - ruamel.yaml=0.18.2=py311he705e18_0 - sqlalchemy=1.4.49=py311he705e18_1 - terminado=0.17.1=pyhd1c38e8_0 - tinycss2=1.2.1=pyhd8ed1ab_0 @@ -360,11 +359,11 @@ dependencies: - arrow=1.3.0=pyhd8ed1ab_0 - async-timeout=4.0.3=pyhd8ed1ab_0 - aws-c-s3=0.3.17=h5800b94_4 - - botocore=1.31.68=pyhd8ed1ab_0 + - botocore=1.31.70=pyhd8ed1ab_0 - branca=0.6.0=pyhd8ed1ab_0 - cmarkgfm=0.8.0=py311h2725bcf_3 - croniter=2.0.1=pyhd8ed1ab_0 - - cryptography=41.0.4=py311h892b619_0 + - cryptography=41.0.5=py311hd51016d_0 - fqdn=1.5.1=pyhd8ed1ab_0 - geotiff=1.7.1=h889ec99_14 - gitpython=3.1.40=pyhd8ed1ab_0 @@ -390,10 +389,10 @@ dependencies: - pybtex=0.24.0=pyhd8ed1ab_2 - pydantic=1.10.13=py311he705e18_1 - pyobjc-framework-cocoa=10.0=py311hf110eff_1 - - pyproj=3.6.1=py311h7851242_2 + - pyproj=3.6.1=py311he36daed_3 - pytest-console-scripts=1.4.1=pyhd8ed1ab_0 - pytest-cov=4.1.0=pyhd8ed1ab_0 - - pytest-mock=3.11.1=pyhd8ed1ab_0 + - pytest-mock=3.12.0=pyhd8ed1ab_0 - python-build=1.0.3=pyhd8ed1ab_0 - requests=2.31.0=pyhd8ed1ab_0 - rich=13.6.0=pyhd8ed1ab_0 @@ -437,17 +436,17 @@ dependencies: - stevedore=5.1.0=pyhd8ed1ab_0 - typer=0.9.0=pyhd8ed1ab_0 - uvicorn-standard=0.23.2=h6eed73b_1 - - virtualenv=20.24.4=pyhd8ed1ab_0 - - arelle-release=2.16.1=pyhd8ed1ab_0 + - virtualenv=20.24.6=pyhd8ed1ab_0 + - arelle-release=2.16.3=pyhd8ed1ab_0 - aws-sdk-cpp=1.11.156=hf61f2bb_4 - - boto3=1.28.68=pyhd8ed1ab_0 + - boto3=1.28.70=pyhd8ed1ab_0 - bottleneck=1.3.7=py311h4a70a88_1 - cachecontrol-with-filecache=0.13.1=pyhd8ed1ab_0 - contourpy=1.1.1=py311h5fe6e05_1 - - dagster=1.5.3=pyhd8ed1ab_1 + - dagster=1.5.4=pyhd8ed1ab_1 - datasette=0.64.4=pyhd8ed1ab_1 - doc8=1.1.1=pyhd8ed1ab_0 - - email-validator=2.0.0.post2=pyhd8ed1ab_0 + - email-validator=2.1.0.post1=pyhd8ed1ab_0 - folium=0.14.0=pyhd8ed1ab_0 - frictionless=4.40.8=pyh6c4a22f_0 - gdal=3.7.2=py311h5646c56_7 @@ -455,7 +454,7 @@ dependencies: - gql-with-requests=3.4.1=pyhd8ed1ab_0 - h3-py=3.7.6=py311hdf8f085_1 - jsonschema-with-format-nongpl=4.19.1=pyhd8ed1ab_0 - - jupyter_client=8.4.0=pyhd8ed1ab_0 + - jupyter_client=8.5.0=pyhd8ed1ab_0 - nbformat=5.9.2=pyhd8ed1ab_0 - numba=0.57.1=py311h5a8220d_0 - numexpr=2.8.7=py311h1eadf79_4 @@ -465,11 +464,10 @@ dependencies: - requests-oauthlib=1.3.1=pyhd8ed1ab_0 - scipy=1.11.3=py311h16c3c4d_1 - shapely=2.0.2=py311h359915d_0 - - tox=4.11.3=pyhd8ed1ab_0 - twine=4.0.2=pyhd8ed1ab_0 - catalystcoop.ferc_xbrl_extractor=1.1.1=pyhd8ed1ab_0 - - conda-lock=2.4.0=pyhd8ed1ab_0 - - dagster-graphql=1.5.3=pyhd8ed1ab_1 + - conda-lock=2.4.1=pyhd8ed1ab_0 + - dagster-graphql=1.5.4=pyhd8ed1ab_1 - fiona=1.9.5=py311hf14a637_0 - geopandas-base=0.14.0=pyha770c72_1 - google-api-core=2.12.0=pyhd8ed1ab_0 @@ -479,13 +477,13 @@ dependencies: - libarrow=13.0.0=h66f826e_7_cpu - matplotlib-base=3.8.0=py311hd316c10_2 - nbclient=0.8.0=pyhd8ed1ab_0 - - scikit-learn=1.3.1=py311h66081b9_1 + - scikit-learn=1.3.2=py311h66081b9_1 - tabulator=1.53.5=pyhd8ed1ab_0 - timezonefinder=6.2.0=py311h2725bcf_1 - - dagster-webserver=1.5.3=pyhd8ed1ab_1 + - dagster-webserver=1.5.4=pyhd8ed1ab_1 - google-cloud-core=2.3.3=pyhd8ed1ab_0 - ipdb=0.13.13=pyhd8ed1ab_0 - - ipykernel=6.25.2=pyh1050b4e_0 + - ipykernel=6.26.0=pyh3cd1d5f_0 - ipywidgets=8.1.1=pyhd8ed1ab_0 - mapclassify=2.6.1=pyhd8ed1ab_0 - nbconvert-core=7.9.2=pyhd8ed1ab_0 @@ -496,7 +494,7 @@ dependencies: - geopandas=0.14.0=pyhd8ed1ab_1 - google-cloud-storage=2.12.0=pyhca7485f_0 - jupyter_console=6.6.3=pyhd8ed1ab_0 - - jupyter_server=2.8.0=pyhd8ed1ab_0 + - jupyter_server=2.9.1=pyhd8ed1ab_0 - nbconvert-pandoc=7.9.2=pyhd8ed1ab_0 - qtconsole-base=5.4.4=pyha770c72_0 - gcsfs=2023.9.2=pyhd8ed1ab_0 diff --git a/environments/conda-osx-arm64.lock b/environments/conda-osx-arm64.lock deleted file mode 100644 index 39f3f49393..0000000000 --- a/environments/conda-osx-arm64.lock +++ /dev/null @@ -1,518 +0,0 @@ -# Generated by conda-lock. -# platform: osx-arm64 -# input_hash: 6cdef4ded203f30eb46bb8f715fb04964ebf1bd0dcdcea768bffc03e3d52cc64 -@EXPLICIT -https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-common-0.9.3-hb547adb_0.conda#aadc66cc167bd7e71c743954dfa8db45 -https://conda.anaconda.org/conda-forge/osx-arm64/bzip2-1.0.8-h3422bc3_4.tar.bz2#fc76ace7b94fb1f694988ab1b14dd248 -https://conda.anaconda.org/conda-forge/osx-arm64/c-ares-1.20.1-h93a5062_0.conda#ff730651c34139afe7d29e3e8b8481e2 -https://conda.anaconda.org/conda-forge/osx-arm64/ca-certificates-2023.7.22-hf0a4a13_0.conda#e1b99ac4dbcee71a71682996f67f7965 -https://conda.anaconda.org/conda-forge/noarch/font-ttf-dejavu-sans-mono-2.37-hab24e00_0.tar.bz2#0c96522c6bdaed4b1566d11387caaf45 -https://conda.anaconda.org/conda-forge/noarch/font-ttf-inconsolata-3.000-h77eed37_0.tar.bz2#34893075a5c9e55cdafac56607368fc6 -https://conda.anaconda.org/conda-forge/noarch/font-ttf-source-code-pro-2.038-h77eed37_0.tar.bz2#4d59c254e01d9cde7957100457e2d5fb -https://conda.anaconda.org/conda-forge/noarch/font-ttf-ubuntu-0.83-hab24e00_0.tar.bz2#19410c3df09dfb12d1206132a1d357c5 -https://conda.anaconda.org/conda-forge/osx-arm64/giflib-5.2.1-h1a8c8d9_3.conda#f39a05d3dbb0e5024b7deabb2c0993f1 -https://conda.anaconda.org/conda-forge/osx-arm64/icu-73.2-hc8870d7_0.conda#8521bd47c0e11c5902535bb1a17c565f -https://conda.anaconda.org/conda-forge/osx-arm64/json-c-0.17-h40ed0f5_0.conda#7de5604deb99090c8e8c4863f60568d1 -https://conda.anaconda.org/conda-forge/osx-arm64/libboost-headers-1.82.0-hce30654_6.conda#ae7c68cf82c23fe6c68f0efa064ef41a -https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlicommon-1.1.0-hb547adb_1.conda#cd68f024df0304be41d29a9088162b02 -https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-16.0.6-h4653b0c_0.conda#9d7d724faf0413bf1dbc5a85935700c8 -https://conda.anaconda.org/conda-forge/osx-arm64/libdeflate-1.19-hb547adb_0.conda#f8c1eb0e99e90b55965c6558578537cc -https://conda.anaconda.org/conda-forge/osx-arm64/libev-4.33-h642e427_1.tar.bz2#566dbf70fe79eacdb3c3d3d195a27f55 -https://conda.anaconda.org/conda-forge/osx-arm64/libexpat-2.5.0-hb7217d7_1.conda#5a097ad3d17e42c148c9566280481317 -https://conda.anaconda.org/conda-forge/osx-arm64/libffi-3.4.2-h3422bc3_5.tar.bz2#086914b672be056eb70fd4285b6783b6 -https://conda.anaconda.org/conda-forge/osx-arm64/libiconv-1.17-he4db4b2_0.tar.bz2#686f9c755574aa221f29fbcf36a67265 -https://conda.anaconda.org/conda-forge/osx-arm64/libjpeg-turbo-3.0.0-hb547adb_1.conda#3ff1e053dc3a2b8e36b9bfa4256a58d1 -https://conda.anaconda.org/conda-forge/osx-arm64/libsodium-1.0.18-h27ca646_1.tar.bz2#90859688dbca4735b74c02af14c4c793 -https://conda.anaconda.org/conda-forge/osx-arm64/libutf8proc-2.8.0-h1a8c8d9_0.tar.bz2#f8c9c41a122ab3abdf8943b13f4957ee -https://conda.anaconda.org/conda-forge/osx-arm64/libuv-1.46.0-hb547adb_0.conda#5f1d535f82e8210ac80d191610b92325 -https://conda.anaconda.org/conda-forge/osx-arm64/libwebp-base-1.3.2-hb547adb_0.conda#85dbc11098cdbe4244cd73f29a3ab795 -https://conda.anaconda.org/conda-forge/osx-arm64/libzlib-1.2.13-h53f4e23_5.conda#1a47f5236db2e06a320ffa0392f81bd8 -https://conda.anaconda.org/conda-forge/osx-arm64/llvm-openmp-17.0.3-hcd81f8e_0.conda#bc4b8795976aae9c1ea5eb4ba26eafd8 -https://conda.anaconda.org/conda-forge/osx-arm64/lzo-2.10-h642e427_1000.tar.bz2#ddab5f96f5573a9bd5e24f9994fd6ec9 -https://conda.anaconda.org/conda-forge/osx-arm64/ncurses-6.4-h7ea286d_0.conda#318337fb9d0c53ba635efb7888242373 -https://conda.anaconda.org/conda-forge/osx-arm64/pandoc-2.19.2-hce30654_2.conda#e79494b8d990189fe4701f498f99cd8b -https://conda.anaconda.org/conda-forge/noarch/poppler-data-0.4.12-hd8ed1ab_0.conda#d8d7293c5b37f39b2ac32940621c6592 -https://conda.anaconda.org/conda-forge/osx-arm64/pthread-stubs-0.4-h27ca646_1001.tar.bz2#d3f26c6494d4105d4ecb85203d687102 -https://conda.anaconda.org/conda-forge/osx-arm64/python_abi-3.11-4_cp311.conda#8d3751bc73d3bbb66f216fa2331d5649 -https://conda.anaconda.org/conda-forge/osx-arm64/tzcode-2023c-h1a8c8d9_0.conda#96779d3be996d78411b083f99a51199c -https://conda.anaconda.org/conda-forge/noarch/tzdata-2023c-h71feb2d_0.conda#939e3e74d8be4dac89ce83b20de2492a -https://conda.anaconda.org/conda-forge/osx-arm64/xorg-libxau-1.0.11-hb547adb_0.conda#ca73dc4f01ea91e44e3ed76602c5ea61 -https://conda.anaconda.org/conda-forge/osx-arm64/xorg-libxdmcp-1.1.3-h27ca646_0.tar.bz2#6738b13f7fadc18725965abdd4129c36 -https://conda.anaconda.org/conda-forge/osx-arm64/xz-5.2.6-h57fd34a_0.tar.bz2#39c6b54e94014701dd157f4f576ed211 -https://conda.anaconda.org/conda-forge/osx-arm64/yaml-0.2.5-h3422bc3_2.tar.bz2#4bb3f014845110883a3c5ee811fd84b4 -https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-cal-0.6.2-h12c43c8_2.conda#423341b3cb1db3a396657724de60f36c -https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-compression-0.2.17-h12c43c8_3.conda#c339bef71fc5d6350770c3248f720218 -https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-sdkutils-0.1.12-h12c43c8_2.conda#59aa1ab1702812aaa2473b758194c929 -https://conda.anaconda.org/conda-forge/osx-arm64/aws-checksums-0.1.17-h12c43c8_2.conda#dbbfcdd6867ab169c8eacd56583d4754 -https://conda.anaconda.org/conda-forge/osx-arm64/expat-2.5.0-hb7217d7_1.conda#624fa0dd6fdeaa650b71a62296fdfedf -https://conda.anaconda.org/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2#f766549260d6815b0c52253f1fb1bb29 -https://conda.anaconda.org/conda-forge/osx-arm64/geos-3.12.0-h13dd4ca_0.conda#18eb5904d2561c782e71bfe05b2ad755 -https://conda.anaconda.org/conda-forge/osx-arm64/gettext-0.21.1-h0186832_0.tar.bz2#63d2ff6fddfa74e5458488fd311bf635 -https://conda.anaconda.org/conda-forge/osx-arm64/gflags-2.2.2-hc88da5d_1004.tar.bz2#aab9ddfad863e9ef81229a1f8852211b -https://conda.anaconda.org/conda-forge/osx-arm64/hdf4-4.2.15-h2ee6834_7.conda#ff5d749fd711dc7759e127db38005924 -https://conda.anaconda.org/conda-forge/osx-arm64/lerc-4.0.0-h9a09cb3_0.tar.bz2#de462d5aacda3b30721b512c5da4e742 -https://conda.anaconda.org/conda-forge/osx-arm64/libabseil-20230802.1-cxx17_h13dd4ca_0.conda#fb6dfadc1898666616dfda242d8aea10 -https://conda.anaconda.org/conda-forge/osx-arm64/libaec-1.1.2-h13dd4ca_1.conda#b7962cdc2cedcc9f8d12928824c11fbd -https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlidec-1.1.0-hb547adb_1.conda#ee1a519335cc10d0ec7e097602058c0a -https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlienc-1.1.0-hb547adb_1.conda#d7e077f326a98b2cc60087eaff7c730b -https://conda.anaconda.org/conda-forge/osx-arm64/libcrc32c-1.1.2-hbdafb3b_0.tar.bz2#32bd82a6a625ea6ce090a81c3d34edeb -https://conda.anaconda.org/conda-forge/osx-arm64/libedit-3.1.20191231-hc8eb9b7_2.tar.bz2#30e4362988a2623e9eb34337b83e01f9 -https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran5-13.2.0-hf226fd6_1.conda#4480d71b98c87faafab132d33e23135e -https://conda.anaconda.org/conda-forge/osx-arm64/libllvm14-14.0.6-hd1a9a77_4.conda#9f3dce5d26ea56a9000cd74c034582bd -https://conda.anaconda.org/conda-forge/osx-arm64/libpng-1.6.39-h76d750c_0.conda#0078e6327c13cfdeae6ff7601e360383 -https://conda.anaconda.org/conda-forge/osx-arm64/libspatialindex-1.9.3-hbdafb3b_4.tar.bz2#311816a2511df4bceeeebe7c06af63e7 -https://conda.anaconda.org/conda-forge/osx-arm64/libsqlite-3.43.2-h091b4b1_0.conda#1d8208ba1b6a8c61431e77dc4e5c8fb9 -https://conda.anaconda.org/conda-forge/osx-arm64/libxcb-1.15-hf346824_0.conda#988d5f86ab60fa6de91b3ee3a88a3af9 -https://conda.anaconda.org/conda-forge/osx-arm64/libxml2-2.11.5-h25269f3_1.conda#627b5d1377536b5b632ba53cd1455555 -https://conda.anaconda.org/conda-forge/osx-arm64/lz4-c-1.9.4-hb7217d7_0.conda#45505bec548634f7d05e02fb25262cb9 -https://conda.anaconda.org/conda-forge/osx-arm64/nspr-4.35-hb7217d7_0.conda#f81b5ec944dbbcff3dd08375eb036efa -https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.1.3-h53f4e23_0.conda#40d01d3f39589f54b618ddd28a5a48cb -https://conda.anaconda.org/conda-forge/osx-arm64/pcre2-10.40-hb34f9b4_0.tar.bz2#721b7288270bafc83586b0f01c2a67f2 -https://conda.anaconda.org/conda-forge/osx-arm64/pixman-0.42.2-h13dd4ca_0.conda#f96347021db6f33ccabe314ddeab62d4 -https://conda.anaconda.org/conda-forge/osx-arm64/re2-2023.03.02-hc5e2d97_0.conda#7a851c0ab05247e3246eca2c3b243b9a -https://conda.anaconda.org/conda-forge/osx-arm64/readline-8.2-h92ec313_1.conda#8cbb776a2f641b943d413b3e19df71f4 -https://conda.anaconda.org/conda-forge/osx-arm64/snappy-1.1.10-h17c5cce_0.conda#ac82a611d1a67a598096ebaa857198e3 -https://conda.anaconda.org/conda-forge/osx-arm64/tk-8.6.13-hb31c410_0.conda#aa913a828b65f30ee3aba9c59bb0b514 -https://conda.anaconda.org/conda-forge/osx-arm64/uriparser-0.9.7-hb7217d7_1.conda#4fe532e3c6b0cfa5365eb01743d32578 -https://conda.anaconda.org/conda-forge/osx-arm64/zeromq-4.3.5-h965bd2d_0.conda#f460bbcb0ec8dc77989288fe8caa0f84 -https://conda.anaconda.org/conda-forge/osx-arm64/zlib-1.2.13-h53f4e23_5.conda#a08383f223b10b71492d27566fafbf6c -https://conda.anaconda.org/conda-forge/osx-arm64/zstd-1.5.5-h4f39d0f_0.conda#5b212cfb7f9d71d603ad891879dc7933 -https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-io-0.13.33-h5bd1e48_0.conda#8cb7e428f5b33f855e77d7d22db837f1 -https://conda.anaconda.org/conda-forge/osx-arm64/blosc-1.21.5-hc338f07_0.conda#93fccb1150aa377576107ecd0ad375b3 -https://conda.anaconda.org/conda-forge/osx-arm64/brotli-bin-1.1.0-hb547adb_1.conda#990d04f8c017b1b77103f9a7730a5f12 -https://conda.anaconda.org/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2#fee5683a3f04bd15cbd8318b096a27ab -https://conda.anaconda.org/conda-forge/osx-arm64/freetype-2.12.1-hadb7bae_2.conda#e6085e516a3e304ce41a8ee08b9b89ad -https://conda.anaconda.org/conda-forge/osx-arm64/glog-0.6.0-h6da1cb0_0.tar.bz2#5a570729c7709399cf8511aeeda6f989 -https://conda.anaconda.org/conda-forge/osx-arm64/krb5-1.21.2-h92f50d5_0.conda#92f1cff174a538e0722bf2efb16fc0b2 -https://conda.anaconda.org/conda-forge/osx-arm64/libarchive-3.7.2-h82b9b87_0.conda#da6ec82a0e07f738afee1c4279778b30 -https://conda.anaconda.org/conda-forge/osx-arm64/libevent-2.1.12-h2757513_1.conda#1a109764bff3bdc7bdd84088347d71dc -https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran-5.0.0-13_2_0_hd922786_1.conda#1ad37a5c60c250bb2b4a9f75563e181c -https://conda.anaconda.org/conda-forge/osx-arm64/libglib-2.78.0-h24e9cb9_0.conda#01c86aa032cbce6aff557de3b9948aa1 -https://conda.anaconda.org/conda-forge/osx-arm64/libkml-1.3.0-h1eb4d9f_1018.conda#f287028317d50fa3edad9c715d22e26b -https://conda.anaconda.org/conda-forge/osx-arm64/libnghttp2-1.52.0-hae82a92_0.conda#1d319e95a0216f801293626a00337712 -https://conda.anaconda.org/conda-forge/osx-arm64/libprotobuf-4.23.4-hf590ac1_6.conda#743cb961d7a0ccd8014ee7b3e4d731db -https://conda.anaconda.org/conda-forge/osx-arm64/librttopo-1.1.0-h667cd51_14.conda#5dfc75562bc705e4a645eb8079139c8c -https://conda.anaconda.org/conda-forge/osx-arm64/libssh2-1.11.0-h7a5bd25_0.conda#029f7dc931a3b626b94823bc77830b01 -https://conda.anaconda.org/conda-forge/osx-arm64/libtiff-4.6.0-ha8a6c65_2.conda#596d6d949bab9a75a492d451f521f457 -https://conda.anaconda.org/conda-forge/osx-arm64/libxslt-1.1.37-h1728932_1.conda#8483366e7b7ed525a5d17ef81c26b1f4 -https://conda.anaconda.org/conda-forge/osx-arm64/libzip-1.10.1-ha0bc3c6_3.conda#e37c0da207079e488709043634d6a711 -https://conda.anaconda.org/conda-forge/osx-arm64/minizip-4.0.1-h5a7aac7_5.conda#a15766024c8dc43f91ed2b0919b4a0f1 -https://conda.anaconda.org/conda-forge/osx-arm64/nodejs-20.8.1-h0950e01_0.conda#1c0712dd46d145e9de1c4b83f4417751 -https://conda.anaconda.org/conda-forge/osx-arm64/nss-3.94-hc6b9969_0.conda#4dec6b96cec24e41059c2e795755760a -https://conda.anaconda.org/conda-forge/osx-arm64/python-3.11.6-h47c9636_0_cpython.conda#2271df1db9534f5cac7c2d0820c3359d -https://conda.anaconda.org/conda-forge/osx-arm64/sqlite-3.43.2-hf2abe2d_0.conda#2ccb1e35034f4795aea2a17ab30c431f -https://conda.anaconda.org/conda-forge/noarch/aiofiles-23.1.0-pyhd8ed1ab_1.conda#4e0624567be59edd7d0fec20db4d7a9c -https://conda.anaconda.org/conda-forge/noarch/alabaster-0.7.13-pyhd8ed1ab_0.conda#06006184e203b61d3525f90de394471e -https://conda.anaconda.org/conda-forge/noarch/anyascii-0.3.2-pyhd8ed1ab_0.conda#70b6fc71d80ea6176f5302ebbeb13d8a -https://conda.anaconda.org/conda-forge/noarch/appdirs-1.4.4-pyh9f0ad1d_0.tar.bz2#5f095bc6454094e96f146491fd03633b -https://conda.anaconda.org/conda-forge/noarch/appnope-0.1.3-pyhd8ed1ab_0.tar.bz2#54ac328d703bff191256ffa1183126d1 -https://conda.anaconda.org/conda-forge/osx-arm64/astroid-3.0.1-py311h267d04e_0.conda#1f1ed24d8d83b882f223403c119a1e44 -https://conda.anaconda.org/conda-forge/noarch/attrs-23.1.0-pyh71513ae_1.conda#3edfead7cedd1ab4400a6c588f3e75f8 -https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-event-stream-0.3.2-h8f67f9a_2.conda#26db8513fb2b75f93a19eceb5098cad0 -https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-http-0.7.13-h7dae168_2.conda#d7b489f64832e3a1df98c2128b218092 -https://conda.anaconda.org/conda-forge/noarch/backcall-0.2.0-pyh9f0ad1d_0.tar.bz2#6006a6d08a3fa99268a2681c7fb55213 -https://conda.anaconda.org/conda-forge/noarch/backoff-2.2.1-pyhd8ed1ab_0.tar.bz2#4600709bd85664d8606ae0c76642f8db -https://conda.anaconda.org/conda-forge/noarch/backports-1.0-pyhd8ed1ab_3.conda#54ca2e08b3220c148a1d8329c2678e02 -https://conda.anaconda.org/conda-forge/noarch/blinker-1.6.3-pyhd8ed1ab_0.conda#d33cf7357de636cec64320f0c4fb7b6f -https://conda.anaconda.org/conda-forge/osx-arm64/brotli-1.1.0-hb547adb_1.conda#a33aa58d448cbc054f887e39dd1dfaea -https://conda.anaconda.org/conda-forge/osx-arm64/brotli-python-1.1.0-py311ha891d26_1.conda#5e802b015e33447d1283d599d21f052b -https://conda.anaconda.org/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2#576d629e47797577ab0f1b351297ef4a -https://conda.anaconda.org/conda-forge/noarch/cachetools-5.3.1-pyhd8ed1ab_0.conda#60b5eb16d9a7a5482ba37f67aa49db5b -https://conda.anaconda.org/conda-forge/noarch/cachy-0.3.0-pyhd8ed1ab_1.tar.bz2#5dfee17f24e2dfd18d7392b48c9351e2 -https://conda.anaconda.org/conda-forge/noarch/catalystcoop.dbfread-3.0.0-py_0.tar.bz2#301d8b0d49e76f6bd586d2c96c2e259e -https://conda.anaconda.org/conda-forge/osx-arm64/cchardet-2.1.7-py311ha891d26_5.conda#a13c24d173619a3d04af20fb9824414c -https://conda.anaconda.org/conda-forge/noarch/certifi-2023.7.22-pyhd8ed1ab_0.conda#7f3dbc9179b4dde7da98dfb151d0ad22 -https://conda.anaconda.org/conda-forge/noarch/cfgv-3.3.1-pyhd8ed1ab_0.tar.bz2#ebb5f5f7dc4f1a3780ef7ea7738db08c -https://conda.anaconda.org/conda-forge/osx-arm64/chardet-5.2.0-py311h267d04e_1.conda#2aa7eb0b906818f900e2075fc244976f -https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.3.0-pyhd8ed1ab_0.conda#fef8ef5f0a54546b9efee39468229917 -https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_0.conda#f3ad426304898027fc619827ff428eca -https://conda.anaconda.org/conda-forge/noarch/cloudpickle-3.0.0-pyhd8ed1ab_0.conda#753d29fe41bb881e4b9c004f0abf973f -https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2#3faab06a954c2a04039983f2c4a50d99 -https://conda.anaconda.org/conda-forge/noarch/crashtest-0.4.1-pyhd8ed1ab_0.tar.bz2#709a2295dd907bb34afb57d54320642f -https://conda.anaconda.org/conda-forge/noarch/cycler-0.12.1-pyhd8ed1ab_0.conda#5cd86562580f274031ede6aa6aa24441 -https://conda.anaconda.org/conda-forge/noarch/dagster-pipes-1.5.3-pyhd8ed1ab_1.conda#f1d822044ec73e262eb9de200e8ddc9e -https://conda.anaconda.org/conda-forge/noarch/dataclasses-0.8-pyhc8e2a94_3.tar.bz2#a362b2124b06aad102e2ee4581acee7d -https://conda.anaconda.org/conda-forge/osx-arm64/debugpy-1.8.0-py311ha891d26_1.conda#575b875f1e7901213e9a0f44db9deccc -https://conda.anaconda.org/conda-forge/noarch/decorator-5.1.1-pyhd8ed1ab_0.tar.bz2#43afe5ab04e35e17ba28649471dd7364 -https://conda.anaconda.org/conda-forge/noarch/defusedxml-0.7.1-pyhd8ed1ab_0.tar.bz2#961b3a227b437d82ad7054484cfa71b2 -https://conda.anaconda.org/conda-forge/noarch/distlib-0.3.7-pyhd8ed1ab_0.conda#12d8aae6994f342618443a8f05c652a0 -https://conda.anaconda.org/conda-forge/noarch/docstring_parser-0.15-pyhd8ed1ab_0.conda#031fcb28b8e80c1f7bec22ccdf4904b2 -https://conda.anaconda.org/conda-forge/osx-arm64/docutils-0.20.1-py311h267d04e_2.conda#e82ee6e9db96d5f7ddf289399744240d -https://conda.anaconda.org/conda-forge/noarch/entrypoints-0.4-pyhd8ed1ab_0.tar.bz2#3cf04868fee0a029769bd41f4b2fbf2d -https://conda.anaconda.org/conda-forge/noarch/et_xmlfile-1.1.0-pyhd8ed1ab_0.conda#a2f2138597905eaa72e561d8efb42cf3 -https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.1.3-pyhd8ed1ab_0.conda#e6518222753f519e911e83136d2158d9 -https://conda.anaconda.org/conda-forge/noarch/executing-1.2.0-pyhd8ed1ab_0.tar.bz2#4c1bc140e2be5c8ba6e3acab99e25c50 -https://conda.anaconda.org/conda-forge/noarch/filelock-3.12.4-pyhd8ed1ab_0.conda#5173d4b8267a0699a43d73231e0b6596 -https://conda.anaconda.org/conda-forge/osx-arm64/fontconfig-2.14.2-h82840c6_0.conda#f77d47ddb6d3cc5b39b9bdf65635afbb -https://conda.anaconda.org/conda-forge/osx-arm64/freexl-2.0.0-hfbad9fb_0.conda#40722e5f48287567cda6fb2ec1f7891b -https://conda.anaconda.org/conda-forge/osx-arm64/frozenlist-1.4.0-py311heffc1b2_1.conda#38016fce1505beb7f18bcb86ee02d276 -https://conda.anaconda.org/conda-forge/noarch/fsspec-2023.9.2-pyh1a96a4e_0.conda#9d15cd3a0e944594ab528da37dc72ecc -https://conda.anaconda.org/conda-forge/osx-arm64/greenlet-3.0.0-py311hbaf5611_1.conda#00941a98060962ad40a3ce2317fb5e62 -https://conda.anaconda.org/conda-forge/noarch/hpack-4.0.0-pyh9f0ad1d_0.tar.bz2#914d6646c4dbb1fd3ff539830a12fd71 -https://conda.anaconda.org/conda-forge/osx-arm64/httptools-0.6.1-py311h05b510d_0.conda#be46012a5eafd7944c8e72dc129464c7 -https://conda.anaconda.org/conda-forge/noarch/humanfriendly-10.0-pyhd8ed1ab_6.conda#2ed1fe4b9079da97c44cfe9c2e5078fd -https://conda.anaconda.org/conda-forge/noarch/hupper-1.12-pyhd8ed1ab_0.conda#2654ff96e839bc699e5c3780689a596b -https://conda.anaconda.org/conda-forge/noarch/hyperframe-6.0.1-pyhd8ed1ab_0.tar.bz2#9f765cbfab6870c8435b9eefecd7a1f4 -https://conda.anaconda.org/conda-forge/noarch/idna-3.4-pyhd8ed1ab_0.tar.bz2#34272b248891bddccc64479f9a7fffed -https://conda.anaconda.org/conda-forge/noarch/ijson-3.2.3-pyhd8ed1ab_0.conda#6b1e4cb33f797d6487efd3ebad39d103 -https://conda.anaconda.org/conda-forge/noarch/imagesize-1.4.1-pyhd8ed1ab_0.tar.bz2#7de5386c8fea29e76b303f37dde4c352 -https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_0.conda#f800d2da156d08e289b14e87e43c1ae5 -https://conda.anaconda.org/conda-forge/noarch/ipython_genutils-0.2.0-py_1.tar.bz2#5071c982548b3a20caf70462f04f5287 -https://conda.anaconda.org/conda-forge/noarch/itsdangerous-2.1.2-pyhd8ed1ab_0.tar.bz2#3c3de74912f11d2b590184f03c7cd09b -https://conda.anaconda.org/conda-forge/osx-arm64/jellyfish-1.0.1-py311h0563b04_1.conda#edfdb1003442aef78df1f53fe2eb2404 -https://conda.anaconda.org/conda-forge/noarch/jmespath-1.0.1-pyhd8ed1ab_0.tar.bz2#2cfa3e1cf3fb51bb9b17acc5b5e9ea11 -https://conda.anaconda.org/conda-forge/noarch/json5-0.9.14-pyhd8ed1ab_0.conda#dac1dabba2b5a9d1aee175c5fcc7b436 -https://conda.anaconda.org/conda-forge/osx-arm64/jsonpointer-2.4-py311h267d04e_3.conda#b6008a5b9180e58a235f5e45432dfe2e -https://conda.anaconda.org/conda-forge/noarch/jupyterlab_widgets-3.0.9-pyhd8ed1ab_0.conda#8370e0a9dc443f9b45a23fd30e7a6b3b -https://conda.anaconda.org/conda-forge/osx-arm64/kiwisolver-1.4.5-py311he4fd1f5_1.conda#4c871d65040b8c7bbb914df7f8f11492 -https://conda.anaconda.org/conda-forge/osx-arm64/lcms2-2.15-hf2736f0_3.conda#bbaac531169fed3e09ae31aff80aa069 -https://conda.anaconda.org/conda-forge/osx-arm64/libcurl-8.4.0-h2d989ff_0.conda#afabb3372209028627ec03e206f4d967 -https://conda.anaconda.org/conda-forge/osx-arm64/libgrpc-1.57.0-hbf2b313_2.conda#3e4d101aa46bdee790e32d0dcc9acf54 -https://conda.anaconda.org/conda-forge/osx-arm64/libopenblas-0.3.24-openmp_hd76b1f2_0.conda#aacb05989f358affe1bafd4ea7294db4 -https://conda.anaconda.org/conda-forge/osx-arm64/libpq-16.0-hcea71ed_1.conda#42d504f6433024058dda89ba0e1bd2f2 -https://conda.anaconda.org/conda-forge/osx-arm64/libthrift-0.19.0-h026a170_1.conda#4b8b21eb00d9019e9fa351141da2a6ac -https://conda.anaconda.org/conda-forge/osx-arm64/llvmlite-0.40.1-py311hea943cd_0.conda#56ba9de55e747dbaa4ab131d431961eb -https://conda.anaconda.org/conda-forge/noarch/locket-1.0.0-pyhd8ed1ab_0.tar.bz2#91e27ef3d05cc772ce627e51cff111c4 -https://conda.anaconda.org/conda-forge/osx-arm64/lxml-4.9.3-py311hbafe683_1.conda#5cfed11a5103844a5654446cf4d3f42a -https://conda.anaconda.org/conda-forge/noarch/marko-1.3.1-pyhd8ed1ab_0.conda#9651c1c1c19dbc072c557e3e2da38329 -https://conda.anaconda.org/conda-forge/osx-arm64/markupsafe-2.1.3-py311heffc1b2_1.conda#5a7b68cb9eea46bea31aaf2d11d0dd2f -https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.0-pyhd8ed1ab_0.tar.bz2#f8dab71fdc13b1bf29a01248b156d268 -https://conda.anaconda.org/conda-forge/noarch/mergedeep-1.3.4-pyhd8ed1ab_0.tar.bz2#1a160a3cab5cb6bd46264b52cd6f69a2 -https://conda.anaconda.org/conda-forge/noarch/mistune-3.0.1-pyhd8ed1ab_0.conda#1dad8397c94e4de97a70de552a7dcf49 -https://conda.anaconda.org/conda-forge/noarch/more-itertools-10.1.0-pyhd8ed1ab_0.conda#8549fafed0351bbfaa1ddaa15fdf9b4e -https://conda.anaconda.org/conda-forge/osx-arm64/msgpack-python-1.0.6-py311he4fd1f5_0.conda#f53f91443f7a3e2f0370fcb1709561ed -https://conda.anaconda.org/conda-forge/osx-arm64/multidict-6.0.4-py311he2be06e_1.conda#8713dd014bb36a581c42dcbe9c4a5216 -https://conda.anaconda.org/conda-forge/noarch/munch-4.0.0-pyhd8ed1ab_0.conda#376b32e8f9d3eacbd625f37d39bd507d -https://conda.anaconda.org/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2#2ba8498c1018c1e9c61eb99b973dfe19 -https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda#4eccaeba205f0aed9ac3a9ea58568ca3 -https://conda.anaconda.org/conda-forge/noarch/nest-asyncio-1.5.8-pyhd8ed1ab_0.conda#a4f0e4519bc50eee4f53f689be9607f7 -https://conda.anaconda.org/conda-forge/noarch/networkx-3.1-pyhd8ed1ab_0.conda#254f787d5068bc89f578bf63893ce8b4 -https://conda.anaconda.org/conda-forge/osx-arm64/nh3-0.2.14-py311h0563b04_1.conda#5a8f322ffa65f7c06fd539f3851b6eba -https://conda.anaconda.org/conda-forge/osx-arm64/openjpeg-2.5.0-h4c1507b_3.conda#4127dd217a010d9c6cbefdaae07d9f19 -https://conda.anaconda.org/conda-forge/osx-arm64/orc-1.9.0-hbfdecac_2.conda#50090e3c6ce0570039cdf97650012307 -https://conda.anaconda.org/conda-forge/noarch/packaging-23.2-pyhd8ed1ab_0.conda#79002079284aa895f883c6b7f3f88fd6 -https://conda.anaconda.org/conda-forge/noarch/pandocfilters-1.5.0-pyhd8ed1ab_0.tar.bz2#457c2c8c08e54905d6954e79cb5b5db9 -https://conda.anaconda.org/conda-forge/noarch/parso-0.8.3-pyhd8ed1ab_0.tar.bz2#17a565a0c3899244e938cdf417e7b094 -https://conda.anaconda.org/conda-forge/noarch/pastel-0.2.1-pyhd8ed1ab_0.tar.bz2#a4eea5bff523f26442405bc5d1f52adb -https://conda.anaconda.org/conda-forge/noarch/pathspec-0.11.2-pyhd8ed1ab_0.conda#e41debb259e68490e3ab81e46b639ab6 -https://conda.anaconda.org/conda-forge/noarch/petl-1.7.14-pyhd8ed1ab_0.conda#65813db01f2331768d909c0852ff5d70 -https://conda.anaconda.org/conda-forge/noarch/pickleshare-0.7.5-py_1003.tar.bz2#415f0ebb6198cc2801c73438a9fb5761 -https://conda.anaconda.org/conda-forge/noarch/pkginfo-1.9.6-pyhd8ed1ab_0.conda#be1e9f1c65a1ed0f2ae9352fec99db64 -https://conda.anaconda.org/conda-forge/noarch/pkgutil-resolve-name-1.3.10-pyhd8ed1ab_1.conda#405678b942f2481cecdb3e010f4925d9 -https://conda.anaconda.org/conda-forge/noarch/pluggy-1.3.0-pyhd8ed1ab_0.conda#2390bd10bed1f3fdc7a537fb5a447d8d -https://conda.anaconda.org/conda-forge/noarch/prometheus_client-0.17.1-pyhd8ed1ab_0.conda#02153b6b760bbec00cfe9e4c97993d06 -https://conda.anaconda.org/conda-forge/osx-arm64/psutil-5.9.5-py311heffc1b2_1.conda#a40123b40642b8b08b3830a3f6bc7fd9 -https://conda.anaconda.org/conda-forge/noarch/ptyprocess-0.7.0-pyhd3deb0d_0.tar.bz2#359eeb6536da0e687af562ed265ec263 -https://conda.anaconda.org/conda-forge/noarch/pure_eval-0.2.2-pyhd8ed1ab_0.tar.bz2#6784285c7e55cb7212efabc79e4c2883 -https://conda.anaconda.org/conda-forge/noarch/pyasn1-0.5.0-pyhd8ed1ab_0.conda#4b1c0db24e212190be1969b0aa490ad8 -https://conda.anaconda.org/conda-forge/noarch/pycparser-2.21-pyhd8ed1ab_0.tar.bz2#076becd9e05608f8dc72757d5f3a91ff -https://conda.anaconda.org/conda-forge/noarch/pygments-2.16.1-pyhd8ed1ab_0.conda#40e5cb18165466773619e5c963f00a7b -https://conda.anaconda.org/conda-forge/noarch/pyjwt-2.8.0-pyhd8ed1ab_0.conda#912c0194f898fdb783021fd25f913c31 -https://conda.anaconda.org/conda-forge/noarch/pylev-1.4.0-pyhd8ed1ab_0.tar.bz2#edf8651c4379d9d1495ad6229622d150 -https://conda.anaconda.org/conda-forge/noarch/pyparsing-3.1.1-pyhd8ed1ab_0.conda#176f7d56f0cfe9008bdf1bccd7de02fb -https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2#2a7de29fb590ca14b5243c4c812c8025 -https://conda.anaconda.org/conda-forge/noarch/python-dotenv-1.0.0-pyhd8ed1ab_1.conda#111e7f9edd31865e2659fa9aad8ec8fd -https://conda.anaconda.org/conda-forge/noarch/python-fastjsonschema-2.18.1-pyhd8ed1ab_0.conda#305141cff54af2f90e089d868fffce28 -https://conda.anaconda.org/conda-forge/noarch/python-json-logger-2.0.7-pyhd8ed1ab_0.conda#a61bf9ec79426938ff785eb69dbb1960 -https://conda.anaconda.org/conda-forge/noarch/python-multipart-0.0.6-pyhd8ed1ab_0.conda#f4f642eeda814c1b65f46fbdf7e89096 -https://conda.anaconda.org/conda-forge/noarch/python-tzdata-2023.3-pyhd8ed1ab_0.conda#2590495f608a63625e165915fb4e2e34 -https://conda.anaconda.org/conda-forge/noarch/pytz-2023.3.post1-pyhd8ed1ab_0.conda#c93346b446cd08c169d843ae5fc0da97 -https://conda.anaconda.org/conda-forge/noarch/pytzdata-2020.1-pyh9f0ad1d_0.tar.bz2#7dd824593f3a861130ac17c6571546e2 -https://conda.anaconda.org/conda-forge/noarch/pywin32-on-windows-0.1.0-pyh1179c8e_3.tar.bz2#2807a0becd1d986fe1ef9b7f8135f215 -https://conda.anaconda.org/conda-forge/noarch/pyxlsb-1.0.10-pyhd8ed1ab_0.tar.bz2#0c14e44bc93a99cdc11398311c3c0dcf -https://conda.anaconda.org/conda-forge/osx-arm64/pyyaml-6.0.1-py311heffc1b2_1.conda#d310bfbb8230b9175c0cbc10189ad804 -https://conda.anaconda.org/conda-forge/osx-arm64/pyzmq-25.1.1-py311hb1af645_1.conda#805fa87be04adc49c3d04cbf266f4552 -https://conda.anaconda.org/conda-forge/osx-arm64/regex-2023.10.3-py311heffc1b2_0.conda#18ea2eabd7cdd354b52f6bd47ff6fbb8 -https://conda.anaconda.org/conda-forge/noarch/rfc3986-2.0.0-pyhd8ed1ab_0.tar.bz2#d337886e38f965bf97aaec382ff6db00 -https://conda.anaconda.org/conda-forge/noarch/rfc3986-validator-0.1.1-pyh9f0ad1d_0.tar.bz2#912a71cc01012ee38e6b90ddd561e36f -https://conda.anaconda.org/conda-forge/osx-arm64/rpds-py-0.10.6-py311h94f323b_0.conda#814b726b8664360bcfeaaeeb2c54f54a -https://conda.anaconda.org/conda-forge/osx-arm64/rtree-1.1.0-py311hd698ff7_0.conda#957242aceae3dcf8049feabf99c18814 -https://conda.anaconda.org/conda-forge/osx-arm64/ruamel.yaml.clib-0.2.7-py311heffc1b2_2.conda#c167b931a12c70f9c1fbf927da7ff0be -https://conda.anaconda.org/conda-forge/osx-arm64/ruff-0.1.1-py311h8c97afb_0.conda#c8c14a5132e90532e2908dac2d138546 -https://conda.anaconda.org/conda-forge/noarch/setuptools-68.2.2-pyhd8ed1ab_0.conda#fc2166155db840c634a1291a5c35a709 -https://conda.anaconda.org/conda-forge/noarch/shellingham-1.5.3-pyhd8ed1ab_0.conda#83795060a5d8cd12b90a58bd62bc251e -https://conda.anaconda.org/conda-forge/osx-arm64/simpleeval-0.9.13-py311heffc1b2_1.conda#e5d9d5e88acf793be6858a38eeec6d77 -https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2#e5f25f8dbc060e9a8d912e432202afc2 -https://conda.anaconda.org/conda-forge/noarch/smmap-5.0.0-pyhd8ed1ab_0.tar.bz2#62f26a3d1387acee31322208f0cfa3e0 -https://conda.anaconda.org/conda-forge/noarch/sniffio-1.3.0-pyhd8ed1ab_0.tar.bz2#dd6cbc539e74cb1f430efbd4575b9303 -https://conda.anaconda.org/conda-forge/noarch/snowballstemmer-2.2.0-pyhd8ed1ab_0.tar.bz2#4d22a9315e78c6827f806065957d566e -https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.5-pyhd8ed1ab_1.conda#3f144b2c34f8cb5a9abd9ed23a39c561 -https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-jsmath-1.0.1-pyhd8ed1ab_0.conda#da1d979339e2714c30a8e806a33ec087 -https://conda.anaconda.org/conda-forge/noarch/stringcase-1.2.0-py_0.tar.bz2#26a9caf3173939377bac7152379daac0 -https://conda.anaconda.org/conda-forge/noarch/tabulate-0.9.0-pyhd8ed1ab_1.tar.bz2#4759805cce2d914c38472f70bf4d8bcb -https://conda.anaconda.org/conda-forge/noarch/text-unidecode-1.3-pyhd8ed1ab_1.conda#ba8aba332d8868897ce44ad74015a7fe -https://conda.anaconda.org/conda-forge/noarch/threadpoolctl-3.2.0-pyha21a80b_0.conda#978d03388b62173b8e6f79162cf52b86 -https://conda.anaconda.org/conda-forge/noarch/toml-0.10.2-pyhd8ed1ab_0.tar.bz2#f832c45a477c78bebd107098db465095 -https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2#5844808ffab9ebdb694585b50ba02a96 -https://conda.anaconda.org/conda-forge/noarch/tomlkit-0.12.1-pyha770c72_0.conda#62f5b331c53d73e2f6c4c130b53518a0 -https://conda.anaconda.org/conda-forge/noarch/toolz-0.12.0-pyhd8ed1ab_0.tar.bz2#92facfec94bc02d6ccf42e7173831a36 -https://conda.anaconda.org/conda-forge/noarch/toposort-1.10-pyhd8ed1ab_0.conda#aeef653e20028f19a3c2cc70e166b509 -https://conda.anaconda.org/conda-forge/osx-arm64/tornado-6.3.3-py311heffc1b2_1.conda#a3a94203d225faec0d6bd000ea30b0a1 -https://conda.anaconda.org/conda-forge/noarch/traitlets-5.11.2-pyhd8ed1ab_0.conda#bd3f90f7551e1cffb1f402880eb2cef1 -https://conda.anaconda.org/conda-forge/noarch/types-python-dateutil-2.8.19.14-pyhd8ed1ab_0.conda#4df15c51a543e806d439490b862be1c6 -https://conda.anaconda.org/conda-forge/noarch/types-pyyaml-6.0.12.12-pyhd8ed1ab_0.conda#0cb14c80f66937df894d60626dd1921f -https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.8.0-pyha770c72_0.conda#5b1be40a26d10a06f6d4f1f9e19fa0c7 -https://conda.anaconda.org/conda-forge/noarch/typing_utils-0.1.0-pyhd8ed1ab_0.tar.bz2#eb67e3cace64c66233e2d35949e20f92 -https://conda.anaconda.org/conda-forge/noarch/unicodecsv-0.14.1-py_1.tar.bz2#3b2b0e9d7f73db2b5e45db113badb7f7 -https://conda.anaconda.org/conda-forge/noarch/uri-template-1.3.0-pyhd8ed1ab_0.conda#0944dc65cb4a9b5b68522c3bb585d41c -https://conda.anaconda.org/conda-forge/osx-arm64/uvloop-0.18.0-py311h05b510d_0.conda#ecd47f4958b5db080dc2124249b9e01a -https://conda.anaconda.org/conda-forge/noarch/validators-0.22.0-pyhd8ed1ab_0.conda#56435633ef70e7b92c54151599cbf757 -https://conda.anaconda.org/conda-forge/noarch/webcolors-1.13-pyhd8ed1ab_0.conda#166212fe82dad8735550030488a01d03 -https://conda.anaconda.org/conda-forge/noarch/webencodings-0.5.1-pyhd8ed1ab_2.conda#daf5160ff9cde3a468556965329085b9 -https://conda.anaconda.org/conda-forge/noarch/websocket-client-1.6.4-pyhd8ed1ab_0.conda#bdb77b28cf16deac0eef431a068320e8 -https://conda.anaconda.org/conda-forge/osx-arm64/websockets-10.4-py311he2be06e_1.tar.bz2#de89829ec8be2723375bfd581237dbef -https://conda.anaconda.org/conda-forge/noarch/wheel-0.41.2-pyhd8ed1ab_0.conda#1ccd092478b3e0ee10d7a891adbf8a4f -https://conda.anaconda.org/conda-forge/noarch/widgetsnbextension-4.0.9-pyhd8ed1ab_0.conda#82617d07b2f5f5a96296d3c19684b37a -https://conda.anaconda.org/conda-forge/noarch/xlrd-2.0.1-pyhd8ed1ab_3.tar.bz2#97dfcd5ff030d829b55f67e82f928093 -https://conda.anaconda.org/conda-forge/noarch/xlsxwriter-3.1.7-pyhd8ed1ab_0.conda#57ed13683ed80362014f6499e27f7b05 -https://conda.anaconda.org/conda-forge/noarch/xyzservices-2023.10.0-pyhd8ed1ab_0.conda#9c6fe7db9c9133ade38b9a5011103243 -https://conda.anaconda.org/conda-forge/noarch/zipp-3.17.0-pyhd8ed1ab_0.conda#2e4d6bc0b14e10f895fc6791a7d9b26a -https://conda.anaconda.org/conda-forge/noarch/aiosignal-1.3.1-pyhd8ed1ab_0.tar.bz2#d1e1eb7e21a9e2c74279d87dafb68156 -https://conda.anaconda.org/conda-forge/noarch/anyio-4.0.0-pyhd8ed1ab_0.conda#3c4e99d3ae4ec033d4dd99fb5220e540 -https://conda.anaconda.org/conda-forge/noarch/asgi-csrf-0.9-pyhd8ed1ab_0.tar.bz2#eae21b40ce9beded0ce0e5c67180b1e7 -https://conda.anaconda.org/conda-forge/noarch/asgiref-3.7.2-pyhd8ed1ab_0.conda#596932155bf88bb6837141550cb721b0 -https://conda.anaconda.org/conda-forge/noarch/asttokens-2.4.0-pyhd8ed1ab_0.conda#056f04e51dd63337e8d7c425c18c86f1 -https://conda.anaconda.org/conda-forge/noarch/async-lru-2.0.4-pyhd8ed1ab_0.conda#3d081de3a6ea9f894bbb585e8e3a4dcb -https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-auth-0.7.4-h3e84773_2.conda#ac029f009a3496b55a15b370b8f56040 -https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-mqtt-0.9.7-h9e52e49_0.conda#914fefb360b0ab9941afc7a073ee5200 -https://conda.anaconda.org/conda-forge/noarch/babel-2.13.0-pyhd8ed1ab_0.conda#22541af7a9eb59fc6afcadb7ecdf9219 -https://conda.anaconda.org/conda-forge/noarch/backports.functools_lru_cache-1.6.5-pyhd8ed1ab_0.conda#6b1b907661838a75d067a22f87996b2e -https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.12.2-pyha770c72_0.conda#a362ff7d976217f8fa78c0f1c4f59717 -https://conda.anaconda.org/conda-forge/noarch/bleach-6.1.0-pyhd8ed1ab_0.conda#0ed9d7c0e9afa7c025807a9a8136ea3e -https://conda.anaconda.org/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2#9b347a7ec10940d3f7941ff6c460b551 -https://conda.anaconda.org/conda-forge/osx-arm64/cairo-1.18.0-hd1e100b_0.conda#3fa6eebabb77f65e82f86b72b95482db -https://conda.anaconda.org/conda-forge/osx-arm64/cffi-1.16.0-py311h4a08483_0.conda#cbdde0484a47b40e6ce2a4e5aaeb48d7 -https://conda.anaconda.org/conda-forge/osx-arm64/cfitsio-4.3.0-hca87796_0.conda#a5a1019a6405052124e97999a5204a74 -https://conda.anaconda.org/conda-forge/noarch/click-default-group-1.2.4-pyhd8ed1ab_0.conda#7c2b6931f9b3548ed78478332095c3e9 -https://conda.anaconda.org/conda-forge/noarch/click-default-group-wheel-1.2.2-pyhd8ed1ab_0.tar.bz2#2228f2640491b5e9c03b6f6346cba887 -https://conda.anaconda.org/conda-forge/noarch/click-plugins-1.1.1-py_0.tar.bz2#4fd2c6b53934bd7d96d1f3fdaf99b79f -https://conda.anaconda.org/conda-forge/noarch/cligj-0.7.2-pyhd8ed1ab_1.tar.bz2#a29b7c141d6b2de4bb67788a5f107734 -https://conda.anaconda.org/conda-forge/noarch/clikit-0.6.2-pyhd8ed1ab_2.conda#02abb7b66b02e8b9f5a9b05454400087 -https://conda.anaconda.org/conda-forge/noarch/coloredlogs-14.0-pyhd8ed1ab_3.tar.bz2#6b92f390b198cb631c95fd37097098c8 -https://conda.anaconda.org/conda-forge/noarch/comm-0.1.4-pyhd8ed1ab_0.conda#c8eaca39e2b6abae1fc96acc929ae939 -https://conda.anaconda.org/conda-forge/osx-arm64/coverage-7.3.2-py311heffc1b2_0.conda#75928ad6625a73ff93f08be98014248c -https://conda.anaconda.org/conda-forge/osx-arm64/fonttools-4.43.1-py311h05b510d_0.conda#b2fa21c160775e62af06d2db79dfc42d -https://conda.anaconda.org/conda-forge/noarch/gitdb-4.0.11-pyhd8ed1ab_0.conda#623b19f616f2ca0c261441067e18ae40 -https://conda.anaconda.org/conda-forge/noarch/graphql-core-3.2.3-pyhd8ed1ab_0.tar.bz2#87cafe8c7638a5ac6fd8ec8fb01f1508 -https://conda.anaconda.org/conda-forge/osx-arm64/grpcio-1.57.0-py311h79dd126_2.conda#e6b7e881291c0592a49585875094feee -https://conda.anaconda.org/conda-forge/noarch/h11-0.14.0-pyhd8ed1ab_0.tar.bz2#b21ed0883505ba1910994f1df031a428 -https://conda.anaconda.org/conda-forge/noarch/h2-4.1.0-pyhd8ed1ab_0.tar.bz2#b748fbf7060927a6e82df7cb5ee8f097 -https://conda.anaconda.org/conda-forge/osx-arm64/hdf5-1.14.2-nompi_h3aba7b3_100.conda#842c5b010b219058098ebfe5aa5891b9 -https://conda.anaconda.org/conda-forge/noarch/html5lib-1.1-pyh9f0ad1d_0.tar.bz2#b2355343d6315c892543200231d7154a -https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-6.8.0-pyha770c72_0.conda#4e9f59a060c3be52bc4ddc46ee9b6946 -https://conda.anaconda.org/conda-forge/noarch/importlib_resources-6.1.0-pyhd8ed1ab_0.conda#48b0d98e0c0ec810d3ccc2a0926c8c0e -https://conda.anaconda.org/conda-forge/noarch/isodate-0.6.1-pyhd8ed1ab_0.tar.bz2#4a62c93c1b5c0b920508ae3fd285eaf5 -https://conda.anaconda.org/conda-forge/noarch/janus-1.0.0-pyhd8ed1ab_0.tar.bz2#304b5bce5a9b3590d825ffd85ac63471 -https://conda.anaconda.org/conda-forge/noarch/jaraco.classes-3.3.0-pyhd8ed1ab_0.conda#e9f79248d30e942f7c358ff21a1790f5 -https://conda.anaconda.org/conda-forge/noarch/jedi-0.19.1-pyhd8ed1ab_0.conda#81a3be0b2023e1ea8555781f0ad904a2 -https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.2-pyhd8ed1ab_1.tar.bz2#c8490ed5c70966d232fdd389d0dbed37 -https://conda.anaconda.org/conda-forge/noarch/joblib-1.3.2-pyhd8ed1ab_0.conda#4da50d410f553db77e62ab62ffaa1abc -https://conda.anaconda.org/conda-forge/noarch/jsonlines-4.0.0-pyhd8ed1ab_0.conda#df32eb56c2a48a5ca9465aef29dd46bc -https://conda.anaconda.org/conda-forge/noarch/jupyterlab_pygments-0.2.2-pyhd8ed1ab_0.tar.bz2#243f63592c8e449f40cd42eb5cf32f40 -https://conda.anaconda.org/conda-forge/noarch/latexcodec-2.0.1-pyh9f0ad1d_0.tar.bz2#8d67904973263afd2985ba56aa2d6bb4 -https://conda.anaconda.org/conda-forge/osx-arm64/libblas-3.9.0-19_osxarm64_openblas.conda#f50b1fd98593278e18319653cff9c475 -https://conda.anaconda.org/conda-forge/osx-arm64/libgoogle-cloud-2.12.0-hde42cda_2.conda#c00f510ad8d6c789df20ec69072c162d -https://conda.anaconda.org/conda-forge/noarch/linear-tsv-1.1.0-py_1.tar.bz2#16491914064fdfe1b9a8fba94ac90e9a -https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_0.conda#93a8e71256479c62074356ef6ebf501b -https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.1.6-pyhd8ed1ab_0.tar.bz2#b21613793fcc81d944c76c9f2864a7de -https://conda.anaconda.org/conda-forge/noarch/nodeenv-1.8.0-pyhd8ed1ab_0.conda#2a75b296096adabbabadd5e9782e5fcc -https://conda.anaconda.org/conda-forge/osx-arm64/openpyxl-3.1.2-py311heffc1b2_0.conda#a08b5961a200bb86aea8625fa2826443 -https://conda.anaconda.org/conda-forge/noarch/overrides-7.4.0-pyhd8ed1ab_0.conda#4625b7b01d7f4ac9c96300a5515acfaa -https://conda.anaconda.org/conda-forge/noarch/partd-1.4.1-pyhd8ed1ab_0.conda#acf4b7c0bcd5fa3b0e05801c4d2accd6 -https://conda.anaconda.org/conda-forge/noarch/pexpect-4.8.0-pyh1a96a4e_2.tar.bz2#330448ce4403cc74990ac07c555942a1 -https://conda.anaconda.org/conda-forge/osx-arm64/pillow-10.1.0-py311hb9c5795_0.conda#90fd1f60da9f3d5eccdece0945043037 -https://conda.anaconda.org/conda-forge/noarch/pint-0.22-pyhd8ed1ab_1.conda#a719c3f3959c529e558e9ed9f98c3f30 -https://conda.anaconda.org/conda-forge/noarch/pip-23.3.1-pyhd8ed1ab_0.conda#2400c0b86889f43aa52067161e1fb108 -https://conda.anaconda.org/conda-forge/osx-arm64/postgresql-16.0-h00cd704_1.conda#b8284b082e2507f1dd0662bc68e00a09 -https://conda.anaconda.org/conda-forge/osx-arm64/proj-9.3.0-h52fb9d0_2.conda#31cbb3c9d6f8611a657e1b1a4cb5c63d -https://conda.anaconda.org/conda-forge/osx-arm64/protobuf-4.23.4-py311h590876e_3.conda#42e0b34109e4d15f4941ef4a0f1f5896 -https://conda.anaconda.org/conda-forge/noarch/pyasn1-modules-0.3.0-pyhd8ed1ab_0.conda#26db749166cdca55e5ef1ffdc7767d0e -https://conda.anaconda.org/conda-forge/osx-arm64/pyobjc-core-10.0-py311hb702dc4_0.conda#5c441ab09e2d9faf6e875ea9c446b445 -https://conda.anaconda.org/conda-forge/noarch/pyproject-api-1.6.1-pyhd8ed1ab_0.conda#1815c7974568079cf384f012de5ea1b7 -https://conda.anaconda.org/conda-forge/noarch/pyproject_hooks-1.0.0-pyhd8ed1ab_0.conda#21de50391d584eb7f4441b9de1ad773f -https://conda.anaconda.org/conda-forge/noarch/pytest-7.4.2-pyhd8ed1ab_0.conda#6dd662ff5ac9a783e5c940ce9f3fe649 -https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.8.2-pyhd8ed1ab_0.tar.bz2#dd999d1cc9f79e67dbb855c8924c7984 -https://conda.anaconda.org/conda-forge/noarch/python-slugify-8.0.1-pyhd8ed1ab_2.conda#519897ff446e0dc056e12402e6785cd5 -https://conda.anaconda.org/conda-forge/noarch/pyu2f-0.1.5-pyhd8ed1ab_0.tar.bz2#caabbeaa83928d0c3e3949261daa18eb -https://conda.anaconda.org/conda-forge/noarch/qtpy-2.4.0-pyhd8ed1ab_0.conda#a4c1fc5f8ef46ec8130defcaa2d322ea -https://conda.anaconda.org/conda-forge/noarch/referencing-0.30.2-pyhd8ed1ab_0.conda#a33161b983172ba6ef69d5fc850650cd -https://conda.anaconda.org/conda-forge/noarch/restructuredtext_lint-1.4.0-pyhd8ed1ab_0.tar.bz2#1f3c21740038aba9c174df58986bdccb -https://conda.anaconda.org/conda-forge/noarch/rfc3339-validator-0.1.4-pyhd8ed1ab_0.tar.bz2#fed45fc5ea0813240707998abe49f520 -https://conda.anaconda.org/conda-forge/noarch/rsa-4.9-pyhd8ed1ab_0.tar.bz2#03bf410858b2cefc267316408a77c436 -https://conda.anaconda.org/conda-forge/osx-arm64/ruamel.yaml-0.17.39-py311h05b510d_0.conda#c45eccc5b446d3ae3fbf676c96f4c0e7 -https://conda.anaconda.org/conda-forge/osx-arm64/sqlalchemy-1.4.49-py311h05b510d_1.conda#1460f703e4ed3a7bda01ef1baee3a2ea -https://conda.anaconda.org/conda-forge/noarch/terminado-0.17.1-pyhd1c38e8_0.conda#046120b71d8896cb7faef78bfdbfee1e -https://conda.anaconda.org/conda-forge/noarch/tinycss2-1.2.1-pyhd8ed1ab_0.tar.bz2#7234c9eefff659501cd2fe0d2ede4d48 -https://conda.anaconda.org/conda-forge/noarch/tqdm-4.66.1-pyhd8ed1ab_0.conda#03c97908b976498dcae97eb4e4f3149c -https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.8.0-hd8ed1ab_0.conda#384462e63262a527bda564fa2d9126c0 -https://conda.anaconda.org/conda-forge/noarch/universal_pathlib-0.1.4-pyhd8ed1ab_0.conda#08ca974df312b574c4d6511426539a87 -https://conda.anaconda.org/conda-forge/noarch/urllib3-1.26.18-pyhd8ed1ab_0.conda#bf61cfd2a7f212efba378167a07d4a6a -https://conda.anaconda.org/conda-forge/osx-arm64/watchdog-3.0.0-py311heffc1b2_1.conda#67202ddda794d7ff7ca6b6e45337073d -https://conda.anaconda.org/conda-forge/osx-arm64/xerces-c-3.2.4-hd886eac_3.conda#916e77cb0be0040410881fba8e28b5bb -https://conda.anaconda.org/conda-forge/osx-arm64/yarl-1.9.2-py311h05b510d_1.conda#ada6c2013b3616c82f8f090871aaecdc -https://conda.anaconda.org/conda-forge/noarch/addfips-0.4.0-pyhd8ed1ab_1.conda#cb434d01bfd3ba57c54a423f3773ffda -https://conda.anaconda.org/conda-forge/noarch/aniso8601-9.0.1-pyhd8ed1ab_0.tar.bz2#36fba1a639f2d24723c5480345b78553 -https://conda.anaconda.org/conda-forge/osx-arm64/argon2-cffi-bindings-21.2.0-py311heffc1b2_4.conda#e9a56c22ca1215ed3a7b6a9e8c4e6f07 -https://conda.anaconda.org/conda-forge/noarch/arrow-1.3.0-pyhd8ed1ab_0.conda#b77d8c2313158e6e461ca0efb1c2c508 -https://conda.anaconda.org/conda-forge/noarch/async-timeout-4.0.3-pyhd8ed1ab_0.conda#3ce482ec3066e6d809dbbb1d1679f215 -https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-s3-0.3.17-h29c26b6_4.conda#4fdb6ae194e22f46af2d216d41706861 -https://conda.anaconda.org/conda-forge/noarch/botocore-1.31.68-pyhd8ed1ab_0.conda#0bf56dadacce6f9218d88df71d3e7576 -https://conda.anaconda.org/conda-forge/noarch/branca-0.6.0-pyhd8ed1ab_0.tar.bz2#f4cc65697763ef8c2f7555f1ec355a6b -https://conda.anaconda.org/conda-forge/osx-arm64/cmarkgfm-0.8.0-py311heffc1b2_3.conda#5cb88950ae060fe9220ed27c2d06987d -https://conda.anaconda.org/conda-forge/noarch/croniter-2.0.1-pyhd8ed1ab_0.conda#f67f52c1f555785b86c3bd8e5de4c66f -https://conda.anaconda.org/conda-forge/osx-arm64/cryptography-41.0.4-py311h5fb2c35_0.conda#76a0ffd24b7bf5a2cf58a35141e0d92d -https://conda.anaconda.org/conda-forge/noarch/fqdn-1.5.1-pyhd8ed1ab_0.tar.bz2#642d35437078749ef23a5dca2c9bb1f3 -https://conda.anaconda.org/conda-forge/osx-arm64/geotiff-1.7.1-h71398c0_14.conda#f2a5ed847c17df7b45467210f5a7c15d -https://conda.anaconda.org/conda-forge/noarch/gitpython-3.1.40-pyhd8ed1ab_0.conda#6bf74c3b7c13079a91d4bd3da51cefcf -https://conda.anaconda.org/conda-forge/osx-arm64/google-crc32c-1.1.2-py311h533d1a3_5.conda#b884d02272be40f69bff016a9214722c -https://conda.anaconda.org/conda-forge/noarch/googleapis-common-protos-1.61.0-pyhd8ed1ab_0.conda#f315d7fdc1905dcc2e18a1c7bed22fa9 -https://conda.anaconda.org/conda-forge/noarch/gql-3.4.1-pyhd8ed1ab_0.conda#6ad94588f33ddb97175c7f22feef7d2c -https://conda.anaconda.org/conda-forge/noarch/graphql-relay-3.2.0-pyhd8ed1ab_0.tar.bz2#1b2b83e3528f8fb83007161eff51073d -https://conda.anaconda.org/conda-forge/noarch/grpcio-health-checking-1.57.0-pyhd8ed1ab_0.conda#c22fdc1bd41d6c71e0eb4da829d7b228 -https://conda.anaconda.org/conda-forge/noarch/httpcore-0.18.0-pyhd8ed1ab_0.conda#eb69a63c23bbda9aac55bc0c0c6144f9 -https://conda.anaconda.org/conda-forge/noarch/importlib_metadata-6.8.0-hd8ed1ab_0.conda#b279b07ce18058034e5b3606ba103a8b -https://conda.anaconda.org/conda-forge/noarch/jsonschema-specifications-2023.7.1-pyhd8ed1ab_0.conda#7c27ea1bdbe520bb830dcadd59f55cbf -https://conda.anaconda.org/conda-forge/noarch/jupyter_server_terminals-0.4.4-pyhd8ed1ab_1.conda#7c0965e1d4a0ee1529e8eaa03a78a5b3 -https://conda.anaconda.org/conda-forge/osx-arm64/kealib-1.5.2-h47b5e36_1.conda#88abe34211296bbc0ba1871fd2b13962 -https://conda.anaconda.org/conda-forge/osx-arm64/libcblas-3.9.0-19_osxarm64_openblas.conda#5460a8d1beffd7f63994d891e6a20da4 -https://conda.anaconda.org/conda-forge/osx-arm64/liblapack-3.9.0-19_osxarm64_openblas.conda#3638eacb084c374f41f9efa40d20a47b -https://conda.anaconda.org/conda-forge/osx-arm64/libnetcdf-4.9.2-nompi_hb2fb864_112.conda#fdd8c3b65f9369c4a5bbf23164ea8e19 -https://conda.anaconda.org/conda-forge/osx-arm64/libspatialite-5.1.0-h32510b6_0.conda#075be471a7d969b14e3e49074974bac8 -https://conda.anaconda.org/conda-forge/noarch/mako-1.2.4-pyhd8ed1ab_0.tar.bz2#0d072f0edc017b6318dbab701e053f94 -https://conda.anaconda.org/conda-forge/noarch/pbr-5.11.1-pyhd8ed1ab_0.conda#5bde4ebca51438054099b9527c904ecb -https://conda.anaconda.org/conda-forge/osx-arm64/pendulum-2.1.2-py311heffc1b2_6.conda#f21ea89567e58aa645e40ded47edbdcb -https://conda.anaconda.org/conda-forge/noarch/platformdirs-3.11.0-pyhd8ed1ab_0.conda#8f567c0a74aa44cf732f15773b4083b0 -https://conda.anaconda.org/conda-forge/osx-arm64/poppler-23.10.0-hcdd998b_0.conda#f09dca383af70b61ff5ead622d2994a1 -https://conda.anaconda.org/conda-forge/noarch/pybtex-0.24.0-pyhd8ed1ab_2.tar.bz2#2099b86a7399c44c0c61cdb6de6915ba -https://conda.anaconda.org/conda-forge/osx-arm64/pydantic-1.10.13-py311h05b510d_1.conda#afdac206ecd2d91cd5478038e4cae4cf -https://conda.anaconda.org/conda-forge/osx-arm64/pyobjc-framework-cocoa-10.0-py311hb702dc4_1.conda#ee9430e4e9b69a6270c966bb7439c9a0 -https://conda.anaconda.org/conda-forge/osx-arm64/pyproj-3.6.1-py311he1f72a7_2.conda#a1ffdd1f98f2a73f91195e1667c35406 -https://conda.anaconda.org/conda-forge/noarch/pytest-console-scripts-1.4.1-pyhd8ed1ab_0.conda#ee8808504c73665bed76e20ede28bd56 -https://conda.anaconda.org/conda-forge/noarch/pytest-cov-4.1.0-pyhd8ed1ab_0.conda#06eb685a3a0b146347a58dda979485da -https://conda.anaconda.org/conda-forge/noarch/pytest-mock-3.11.1-pyhd8ed1ab_0.conda#fcd2531bc3e492657aeb042349aeaf8a -https://conda.anaconda.org/conda-forge/noarch/python-build-1.0.3-pyhd8ed1ab_0.conda#d9ccabf228cb98419ca3d5694b25e1a2 -https://conda.anaconda.org/conda-forge/noarch/requests-2.31.0-pyhd8ed1ab_0.conda#a30144e4156cdbb236f99ebb49828f8b -https://conda.anaconda.org/conda-forge/noarch/rich-13.6.0-pyhd8ed1ab_0.conda#3ca4829f40710f581ca1d76bc907e99f -https://conda.anaconda.org/conda-forge/noarch/stack_data-0.6.2-pyhd8ed1ab_0.conda#e7df0fdd404616638df5ece6e69ba7af -https://conda.anaconda.org/conda-forge/noarch/starlette-0.31.1-pyhd8ed1ab_0.conda#409034f0925a73b5f27ae71849e60034 -https://conda.anaconda.org/conda-forge/osx-arm64/tiledb-2.16.3-he15c4da_3.conda#fcf3711dd1817fd6e8ab59be86aa8dd9 -https://conda.anaconda.org/conda-forge/osx-arm64/ukkonen-1.0.1-py311he4fd1f5_4.conda#5d5ab5c5af32931e03608034f4a5fd75 -https://conda.anaconda.org/conda-forge/osx-arm64/uvicorn-0.23.2-py311h267d04e_1.conda#6ee1a4f7d2c30d68e705e75109edcb7a -https://conda.anaconda.org/conda-forge/osx-arm64/watchfiles-0.20.0-py311h0563b04_2.conda#ea73d4e419ab5459d0a91aff3c481a82 -https://conda.anaconda.org/conda-forge/noarch/wcwidth-0.2.8-pyhd8ed1ab_0.conda#367386d2575a0e62412448eda1012efd -https://conda.anaconda.org/conda-forge/osx-arm64/aiohttp-3.8.6-py311h05b510d_1.conda#c783a2696f1acfb0fcd748aa87118518 -https://conda.anaconda.org/conda-forge/noarch/alembic-1.12.0-pyhd8ed1ab_0.conda#ba29026b587195548ef82444518061f7 -https://conda.anaconda.org/conda-forge/noarch/argon2-cffi-23.1.0-pyhd8ed1ab_0.conda#3afef1f55a1366b4d3b6a0d92e2235e4 -https://conda.anaconda.org/conda-forge/osx-arm64/aws-crt-cpp-0.24.2-hbe5f050_2.conda#dbbdf6073ec3b970a18082427773372e -https://conda.anaconda.org/conda-forge/osx-arm64/black-23.10.0-py311h267d04e_0.conda#440295e8efcbcfe98c8c13eba57c6d26 -https://conda.anaconda.org/conda-forge/noarch/cachecontrol-0.13.1-pyhd8ed1ab_0.conda#174bd699bb5aa9e2622eb4b288276ff8 -https://conda.anaconda.org/conda-forge/noarch/dask-core-2023.10.0-pyhd8ed1ab_0.conda#6b415b2cd4a106b8eb1632be126ede81 -https://conda.anaconda.org/conda-forge/noarch/dnspython-2.4.2-pyhd8ed1ab_1.conda#b9657eab1e69207feba4f21fa1207b03 -https://conda.anaconda.org/conda-forge/noarch/ensureconda-1.4.3-pyhd8ed1ab_0.tar.bz2#c99ae3abf501990769047b4b40a98f17 -https://conda.anaconda.org/conda-forge/noarch/google-resumable-media-2.6.0-pyhd8ed1ab_0.conda#74fd9d08866e60fc412abc8dd7c5486c -https://conda.anaconda.org/conda-forge/noarch/graphene-3.3-pyhd8ed1ab_0.conda#ed2ae94977dfd96566e6eaf373216728 -https://conda.anaconda.org/conda-forge/noarch/grpcio-status-1.57.0-pyhd8ed1ab_0.conda#288d9a5edd2619ffd7592ef273b663e3 -https://conda.anaconda.org/conda-forge/noarch/httpx-0.25.0-pyhd8ed1ab_0.conda#37c6a92b2493f801068cccdbbcfe4201 -https://conda.anaconda.org/conda-forge/noarch/identify-2.5.30-pyhd8ed1ab_0.conda#b7a2e3bb89bda8c69839485c20aabadf -https://conda.anaconda.org/conda-forge/noarch/isoduration-20.11.0-pyhd8ed1ab_0.tar.bz2#4cb68948e0b8429534380243d063a27a -https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.19.1-pyhd8ed1ab_0.conda#78aff5d2af74e6537c1ca73017f01f4f -https://conda.anaconda.org/conda-forge/osx-arm64/jupyter_core-5.4.0-py311h267d04e_0.conda#9467a6c8e51ebf4defe3b513534ac1e9 -https://conda.anaconda.org/conda-forge/osx-arm64/keyring-24.2.0-py311h267d04e_1.conda#cf1ad9e696467ea813f92994a7d1ccd4 -https://conda.anaconda.org/conda-forge/osx-arm64/libgdal-3.7.2-h116f65a_7.conda#e4b4a08e8b23bd9e3d2e0ffb5f8909c8 -https://conda.anaconda.org/conda-forge/osx-arm64/numpy-1.24.4-py311hb8f3215_0.conda#05cc11e785d1ffa95c98b24e5695635e -https://conda.anaconda.org/conda-forge/noarch/oauthlib-3.2.2-pyhd8ed1ab_0.tar.bz2#8f882b197fd9c4941a787926baea4868 -https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.39-pyha770c72_0.conda#a4986c6bb5b0d05a38855b0880a5f425 -https://conda.anaconda.org/conda-forge/osx-arm64/pybtex-docutils-1.0.3-py311h267d04e_1.conda#a5145d3785720aea61185b626b783320 -https://conda.anaconda.org/conda-forge/noarch/pyopenssl-23.2.0-pyhd8ed1ab_1.conda#34f7d568bf59d18e3fef8c405cbece21 -https://conda.anaconda.org/conda-forge/noarch/readme_renderer-42.0-pyhd8ed1ab_0.conda#fdc16f5dc3a911d8f43f64f814a45961 -https://conda.anaconda.org/conda-forge/noarch/readthedocs-sphinx-ext-2.2.3-pyhd8ed1ab_0.conda#6bc1a00f5502f9ed13526e4c6bea6900 -https://conda.anaconda.org/conda-forge/noarch/requests-toolbelt-0.10.1-pyhd8ed1ab_0.tar.bz2#a4cd20af9711434f89d1ec0d2b3ae6ba -https://conda.anaconda.org/conda-forge/noarch/responses-0.23.1-pyhd8ed1ab_0.conda#bf15c93720dfea117aaea3155cbebce5 -https://conda.anaconda.org/conda-forge/noarch/s3transfer-0.7.0-pyhd8ed1ab_0.conda#5fe335cb1420d13a818fe01310af2b80 -https://conda.anaconda.org/conda-forge/noarch/send2trash-1.8.2-pyhd1c38e8_0.conda#2657c3de5371c571aef6678afb4aaadd -https://conda.anaconda.org/conda-forge/noarch/stevedore-5.1.0-pyhd8ed1ab_0.conda#55864c50fd9354fd19f6a5078a068170 -https://conda.anaconda.org/conda-forge/noarch/typer-0.9.0-pyhd8ed1ab_0.conda#5030a13b2fe5e143d5956d4943d3018f -https://conda.anaconda.org/conda-forge/osx-arm64/uvicorn-standard-0.23.2-ha1ab1f8_1.conda#5d6a220f00385484518aede0a7eccd4e -https://conda.anaconda.org/conda-forge/noarch/virtualenv-20.24.4-pyhd8ed1ab_0.conda#c3feaf947264a59a125e8c26e98c3c5a -https://conda.anaconda.org/conda-forge/noarch/arelle-release-2.16.1-pyhd8ed1ab_0.conda#8b03e47972a8e0759dce09378c962d3d -https://conda.anaconda.org/conda-forge/osx-arm64/aws-sdk-cpp-1.11.156-ha282cf0_4.conda#e8879cba95af9f9e0ea1bba0d21d1c81 -https://conda.anaconda.org/conda-forge/noarch/boto3-1.28.68-pyhd8ed1ab_0.conda#4b81c7adfe8551654cf528e3d708b326 -https://conda.anaconda.org/conda-forge/osx-arm64/bottleneck-1.3.7-py311hb49d859_1.conda#aa08818d574106d3926fcffd3f932389 -https://conda.anaconda.org/conda-forge/noarch/cachecontrol-with-filecache-0.13.1-pyhd8ed1ab_0.conda#8c4781ca0893cff3a64423954ce234a1 -https://conda.anaconda.org/conda-forge/osx-arm64/contourpy-1.1.1-py311he4fd1f5_1.conda#14a8e6c8088ec971aa1a35dfd846797b -https://conda.anaconda.org/conda-forge/noarch/dagster-1.5.3-pyhd8ed1ab_1.conda#269916d868c11d9790d340a6587708bb -https://conda.anaconda.org/conda-forge/noarch/datasette-0.64.4-pyhd8ed1ab_1.conda#cd1207af03052f6b81906e1a914ad3c5 -https://conda.anaconda.org/conda-forge/noarch/doc8-1.1.1-pyhd8ed1ab_0.conda#5e9e17751f19d03c4034246de428582e -https://conda.anaconda.org/conda-forge/noarch/email-validator-2.0.0.post2-pyhd8ed1ab_0.conda#af9f5d81309e51c05b5964f9573c2cc0 -https://conda.anaconda.org/conda-forge/noarch/folium-0.14.0-pyhd8ed1ab_0.conda#48c8bb19df0d0268f1a9d30ffc56c5b0 -https://conda.anaconda.org/conda-forge/noarch/frictionless-4.40.8-pyh6c4a22f_0.tar.bz2#d2791ef8f6c1252aa8d2e2001a603815 -https://conda.anaconda.org/conda-forge/osx-arm64/gdal-3.7.2-py311h32a4f3d_7.conda#f920f8e2bb8926cc4f42994db30bdd6b -https://conda.anaconda.org/conda-forge/noarch/google-auth-2.23.3-pyhca7485f_0.conda#79faaf9cd0e5114c19253552d8d92872 -https://conda.anaconda.org/conda-forge/noarch/gql-with-requests-3.4.1-pyhd8ed1ab_0.conda#1814ff1e969b01d3570027efcf4f163a -https://conda.anaconda.org/conda-forge/osx-arm64/h3-py-3.7.6-py311ha891d26_1.conda#07e907cca837e6a36842206cc249d5a2 -https://conda.anaconda.org/conda-forge/noarch/jsonschema-with-format-nongpl-4.19.1-pyhd8ed1ab_0.conda#daca0665e6fe8a376e48b9f0b5865326 -https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.4.0-pyhd8ed1ab_0.conda#554496685357ab0d69676cab8e8fb594 -https://conda.anaconda.org/conda-forge/noarch/nbformat-5.9.2-pyhd8ed1ab_0.conda#61ba076de6530d9301a0053b02f093d2 -https://conda.anaconda.org/conda-forge/osx-arm64/numba-0.57.1-py311hbf3c4e2_0.conda#2bae33ffbec73b0b53f115d3f4e3d411 -https://conda.anaconda.org/conda-forge/osx-arm64/numexpr-2.8.7-py311h6e08293_4.conda#f31ccd21d19edd2e2479c065302b7388 -https://conda.anaconda.org/conda-forge/osx-arm64/pandas-2.1.1-py311h9e438b8_1.conda#35524f54b0a70fcda1f711ca53ba103a -https://conda.anaconda.org/conda-forge/noarch/pre-commit-3.5.0-pyha770c72_0.conda#964e3d762e427661c59263435a14c492 -https://conda.anaconda.org/conda-forge/noarch/prompt_toolkit-3.0.39-hd8ed1ab_0.conda#4bbbe67d5df19db30f04b8e344dc9976 -https://conda.anaconda.org/conda-forge/noarch/requests-oauthlib-1.3.1-pyhd8ed1ab_0.tar.bz2#61b279f051eef9c89d58f4d813e75e04 -https://conda.anaconda.org/conda-forge/osx-arm64/scipy-1.11.3-py311h93d07a4_1.conda#1c687552b288a801a7851166f2494768 -https://conda.anaconda.org/conda-forge/osx-arm64/shapely-2.0.2-py311h4826c84_0.conda#a9de7ff7899a7067646aa7053eb5737c -https://conda.anaconda.org/conda-forge/noarch/tox-4.11.3-pyhd8ed1ab_0.conda#9ad1597140aa28f50fee5567775057dc -https://conda.anaconda.org/conda-forge/noarch/twine-4.0.2-pyhd8ed1ab_0.conda#e3a16168d6b9deefb8c1caa7943fb49e -https://conda.anaconda.org/conda-forge/noarch/catalystcoop.ferc_xbrl_extractor-1.1.1-pyhd8ed1ab_0.conda#d40f9751f064b3180e93aadb683bb2b7 -https://conda.anaconda.org/conda-forge/noarch/conda-lock-2.4.0-pyhd8ed1ab_0.conda#edcd5c7565a5cd1c7862a911a899fb20 -https://conda.anaconda.org/conda-forge/noarch/dagster-graphql-1.5.3-pyhd8ed1ab_1.conda#9c67172e4c79a12d965f17d650b5336b -https://conda.anaconda.org/conda-forge/osx-arm64/fiona-1.9.5-py311h45231e3_0.conda#50d570663d8aca587902d0f3642f17ac -https://conda.anaconda.org/conda-forge/noarch/geopandas-base-0.14.0-pyha770c72_1.conda#614a383c5f4350e0606689f54c6497b1 -https://conda.anaconda.org/conda-forge/noarch/google-api-core-2.12.0-pyhd8ed1ab_0.conda#f978eac45a312816fffd61eb65f5ed0e -https://conda.anaconda.org/conda-forge/noarch/google-auth-oauthlib-1.1.0-pyhd8ed1ab_0.conda#ffa1e2fd52bc00ec0fc5680a2f4bd167 -https://conda.anaconda.org/conda-forge/noarch/ipython-8.16.1-pyh31c8845_0.conda#531bac092414642fdead7a511357485a -https://conda.anaconda.org/conda-forge/noarch/jupyter_events-0.8.0-pyhd8ed1ab_0.conda#04272d87d3e06c2e26af5e2d4b0e0ad8 -https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-13.0.0-hf4fadc0_7_cpu.conda#4159ab8fc4fa8f483f01bd3a75d7bf0f -https://conda.anaconda.org/conda-forge/osx-arm64/matplotlib-base-3.8.0-py311hfdba5f6_2.conda#010a48459722f47f5ef519d10a39df1a -https://conda.anaconda.org/conda-forge/noarch/nbclient-0.8.0-pyhd8ed1ab_0.conda#e78da91cf428faaf05701ce8cc8f2f9b -https://conda.anaconda.org/conda-forge/osx-arm64/scikit-learn-1.3.1-py311ha25ca4d_1.conda#4d60bf52a2cf510bfd2e6799cdfad562 -https://conda.anaconda.org/conda-forge/noarch/tabulator-1.53.5-pyhd8ed1ab_0.tar.bz2#c967687222ad29a74f68e99698d08d30 -https://conda.anaconda.org/conda-forge/noarch/timezonefinder-6.0.2-pyhd8ed1ab_0.tar.bz2#ea1c4c4249e1b86a9105b10be6395bd6 -https://conda.anaconda.org/conda-forge/noarch/dagster-webserver-1.5.3-pyhd8ed1ab_1.conda#821b36bfafdd03da8af532b6a9518fe9 -https://conda.anaconda.org/conda-forge/noarch/google-cloud-core-2.3.3-pyhd8ed1ab_0.conda#a26b1fa8555cc1d2f0f7ff9985303e66 -https://conda.anaconda.org/conda-forge/noarch/ipdb-0.13.13-pyhd8ed1ab_0.conda#86baea403007ad4898d85c897c80b758 -https://conda.anaconda.org/conda-forge/noarch/ipykernel-6.25.2-pyh1050b4e_0.conda#a643e6f6c33ed821664f2a69f6e4e89f -https://conda.anaconda.org/conda-forge/noarch/ipywidgets-8.1.1-pyhd8ed1ab_0.conda#2605fae5ee27100e5f10037baebf4d41 -https://conda.anaconda.org/conda-forge/noarch/mapclassify-2.6.1-pyhd8ed1ab_0.conda#6aceae1ad4f16cf7b73ee04189947f98 -https://conda.anaconda.org/conda-forge/noarch/nbconvert-core-7.9.2-pyhd8ed1ab_0.conda#01e4314c780ca73759c694ce3ece281f -https://conda.anaconda.org/conda-forge/osx-arm64/pyarrow-13.0.0-py311hd7bc329_7_cpu.conda#4dcaa7f7be49ada17a2196e59bbc2de0 -https://conda.anaconda.org/conda-forge/noarch/recordlinkage-0.16-pyhd8ed1ab_0.conda#948205d11a8b036e065c46462db0632a -https://conda.anaconda.org/conda-forge/noarch/tableschema-1.19.3-pyh9f0ad1d_0.tar.bz2#57f70b39e74b4af667775c0a07f35cc3 -https://conda.anaconda.org/conda-forge/noarch/datapackage-1.15.2-pyh44b312d_0.tar.bz2#3f1a6895ab9c423cf59de7c46e56a824 -https://conda.anaconda.org/conda-forge/noarch/geopandas-0.14.0-pyhd8ed1ab_1.conda#d3617cddba7ea3dd3234d28faa3bc3b4 -https://conda.anaconda.org/conda-forge/noarch/google-cloud-storage-2.12.0-pyhca7485f_0.conda#fea9a0827d3285450ea0c4d4b78b2664 -https://conda.anaconda.org/conda-forge/noarch/jupyter_console-6.6.3-pyhd8ed1ab_0.conda#7cf6f52a66f8e3cd9d8b6c231262dcab -https://conda.anaconda.org/conda-forge/noarch/jupyter_server-2.8.0-pyhd8ed1ab_0.conda#a750b082b9319e96556df4ee6023b068 -https://conda.anaconda.org/conda-forge/noarch/nbconvert-pandoc-7.9.2-pyhd8ed1ab_0.conda#1ad46253f2eb46fb8c9b2c22b7ca012f -https://conda.anaconda.org/conda-forge/noarch/qtconsole-base-5.4.4-pyha770c72_0.conda#08961a76f2a4e2ebdb9b56f451beaa45 -https://conda.anaconda.org/conda-forge/noarch/gcsfs-2023.9.2-pyhd8ed1ab_0.conda#c9deedf93585c3d5ce5525a89bf7287e -https://conda.anaconda.org/conda-forge/noarch/jupyter-lsp-2.2.0-pyhd8ed1ab_0.conda#38589f4104d11f2a59ff01a9f4e3bfb3 -https://conda.anaconda.org/conda-forge/noarch/jupyter-resource-usage-1.0.1-pyhd8ed1ab_0.conda#b079fd1b0ee75199a042537d036b496f -https://conda.anaconda.org/conda-forge/noarch/jupyterlab_server-2.25.0-pyhd8ed1ab_0.conda#a52834fa7e3d12abc5efdf06b2097a05 -https://conda.anaconda.org/conda-forge/noarch/nbconvert-7.9.2-pyhd8ed1ab_0.conda#16ccaddfcfa0a1a606a9ecf6a52d6c11 -https://conda.anaconda.org/conda-forge/noarch/notebook-shim-0.2.3-pyhd8ed1ab_0.conda#67e0fe74c156267d9159e9133df7fd37 -https://conda.anaconda.org/conda-forge/noarch/jupyterlab-4.0.7-pyhd8ed1ab_0.conda#80318d83f33b3bf4e57b8533b7a6691d -https://conda.anaconda.org/conda-forge/noarch/notebook-7.0.6-pyhd8ed1ab_0.conda#d60881c78a54cbf8042ae719f1f77a50 -https://conda.anaconda.org/conda-forge/noarch/jupyter-1.0.0-pyhd8ed1ab_10.conda#056b8cc3d9b03f54fc49e6d70d7dc359 -https://conda.anaconda.org/conda-forge/noarch/sphinx-autoapi-3.0.0-pyhd8ed1ab_0.conda#736b53813c2b9582b1345462d8ca66e7 -https://conda.anaconda.org/conda-forge/noarch/sphinx-basic-ng-1.0.0b2-pyhd8ed1ab_1.conda#a631f5c7b7f5045448f966ad71aa2881 -https://conda.anaconda.org/conda-forge/noarch/furo-2023.9.10-pyhd8ed1ab_0.conda#0dcfacf6d3e49f2957c69c81356cf892 -https://conda.anaconda.org/conda-forge/noarch/sphinx-issues-1.2.0-py_0.tar.bz2#2d5c0dddca9bb724dcf5a3fb295a2266 -https://conda.anaconda.org/conda-forge/noarch/sphinx-reredirects-0.1.2-pyhd8ed1ab_0.conda#30e618adaaf11aa4a98912913c62a12b -https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-applehelp-1.0.7-pyhd8ed1ab_0.conda#aebfabcb60c33a89c1f9290cab49bc93 -https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-bibtex-2.6.1-pyhd8ed1ab_1.conda#109cf3a7c844834267057e80b4f4eae3 -https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-devhelp-1.0.5-pyhd8ed1ab_0.conda#ebf08f5184d8eaa486697bc060031953 -https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-htmlhelp-2.0.4-pyhd8ed1ab_0.conda#a9a89000dfd19656ad004b937eeb6828 -https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-qthelp-1.0.6-pyhd8ed1ab_0.conda#cf5c9649272c677a964a7313279e3a9b -https://conda.anaconda.org/conda-forge/noarch/sphinx-7.2.6-pyhd8ed1ab_0.conda#bbfd1120d1824d2d073bc65935f0e4c0 -https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-serializinghtml-1.1.9-pyhd8ed1ab_0.conda#0612e497d7860728f2cda421ea2aec09 diff --git a/environments/conda-osx-arm64.lock.yml b/environments/conda-osx-arm64.lock.yml index 9e3fde3810..83632ad96b 100644 --- a/environments/conda-osx-arm64.lock.yml +++ b/environments/conda-osx-arm64.lock.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: osx-arm64 -# input_hash: 6cdef4ded203f30eb46bb8f715fb04964ebf1bd0dcdcea768bffc03e3d52cc64 +# input_hash: fa47a41573d71b012f3e7c8a64aab6beb2a737e2dd124ce8b6cf070159df2705 channels: - conda-forge @@ -8,7 +8,7 @@ channels: dependencies: - aws-c-common=0.9.3=hb547adb_0 - bzip2=1.0.8=h3422bc3_4 - - c-ares=1.20.1=h93a5062_0 + - c-ares=1.20.1=h93a5062_1 - ca-certificates=2023.7.22=hf0a4a13_0 - font-ttf-dejavu-sans-mono=2.37=hab24e00_0 - font-ttf-inconsolata=3.000=h77eed37_0 @@ -70,7 +70,7 @@ dependencies: - libxml2=2.11.5=h25269f3_1 - lz4-c=1.9.4=hb7217d7_0 - nspr=4.35=hb7217d7_0 - - openssl=3.1.3=h53f4e23_0 + - openssl=3.1.4=h0d3ecfb_0 - pcre2=10.40=hb34f9b4_0 - pixman=0.42.2=h13dd4ca_0 - re2=2023.03.02=hc5e2d97_0 @@ -121,20 +121,20 @@ dependencies: - brotli=1.1.0=hb547adb_1 - brotli-python=1.1.0=py311ha891d26_1 - cached_property=1.5.2=pyha770c72_1 - - cachetools=5.3.1=pyhd8ed1ab_0 + - cachetools=5.3.2=pyhd8ed1ab_0 - cachy=0.3.0=pyhd8ed1ab_1 - catalystcoop.dbfread=3.0.0=py_0 - cchardet=2.1.7=py311ha891d26_5 - certifi=2023.7.22=pyhd8ed1ab_0 - cfgv=3.3.1=pyhd8ed1ab_0 - chardet=5.2.0=py311h267d04e_1 - - charset-normalizer=3.3.0=pyhd8ed1ab_0 + - charset-normalizer=3.3.1=pyhd8ed1ab_0 - click=8.1.7=unix_pyh707e725_0 - cloudpickle=3.0.0=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_0 - crashtest=0.4.1=pyhd8ed1ab_0 - cycler=0.12.1=pyhd8ed1ab_0 - - dagster-pipes=1.5.3=pyhd8ed1ab_1 + - dagster-pipes=1.5.4=pyhd8ed1ab_1 - dataclasses=0.8=pyhc8e2a94_3 - debugpy=1.8.0=py311ha891d26_1 - decorator=5.1.1=pyhd8ed1ab_0 @@ -151,7 +151,7 @@ dependencies: - freexl=2.0.0=hfbad9fb_0 - frozenlist=1.4.0=py311heffc1b2_1 - fsspec=2023.9.2=pyh1a96a4e_0 - - greenlet=3.0.0=py311hbaf5611_1 + - greenlet=3.0.1=py311hbaf5611_0 - hpack=4.0.0=pyh9f0ad1d_0 - httptools=0.6.1=py311h05b510d_0 - humanfriendly=10.0=pyhd8ed1ab_6 @@ -190,7 +190,7 @@ dependencies: - munkres=1.1.4=pyh9f0ad1d_0 - mypy_extensions=1.0.0=pyha770c72_0 - nest-asyncio=1.5.8=pyhd8ed1ab_0 - - networkx=3.1=pyhd8ed1ab_0 + - networkx=3.2=pyhd8ed1ab_1 - nh3=0.2.14=py311h0563b04_1 - openjpeg=2.5.0=h4c1507b_3 - orc=1.9.0=hbfdecac_2 @@ -225,17 +225,17 @@ dependencies: - pywin32-on-windows=0.1.0=pyh1179c8e_3 - pyxlsb=1.0.10=pyhd8ed1ab_0 - pyyaml=6.0.1=py311heffc1b2_1 - - pyzmq=25.1.1=py311hb1af645_1 + - pyzmq=25.1.1=py311he9c0408_2 - regex=2023.10.3=py311heffc1b2_0 - rfc3986=2.0.0=pyhd8ed1ab_0 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - rpds-py=0.10.6=py311h94f323b_0 - rtree=1.1.0=py311hd698ff7_0 - ruamel.yaml.clib=0.2.7=py311heffc1b2_2 - - ruff=0.1.1=py311h8c97afb_0 + - ruff=0.1.2=py311h6fc163c_0 - setuptools=68.2.2=pyhd8ed1ab_0 - - shellingham=1.5.3=pyhd8ed1ab_0 - - simpleeval=0.9.13=py311heffc1b2_1 + - shellingham=1.5.4=pyhd8ed1ab_0 + - simpleeval=0.9.13=pyhd8ed1ab_1 - six=1.16.0=pyh6c4a22f_0 - smmap=5.0.0=pyhd8ed1ab_0 - sniffio=1.3.0=pyhd8ed1ab_0 @@ -252,14 +252,14 @@ dependencies: - toolz=0.12.0=pyhd8ed1ab_0 - toposort=1.10=pyhd8ed1ab_0 - tornado=6.3.3=py311heffc1b2_1 - - traitlets=5.11.2=pyhd8ed1ab_0 + - traitlets=5.12.0=pyhd8ed1ab_0 - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 - types-pyyaml=6.0.12.12=pyhd8ed1ab_0 - typing_extensions=4.8.0=pyha770c72_0 - typing_utils=0.1.0=pyhd8ed1ab_0 - unicodecsv=0.14.1=py_1 - uri-template=1.3.0=pyhd8ed1ab_0 - - uvloop=0.18.0=py311h05b510d_0 + - uvloop=0.19.0=py311h05b510d_0 - validators=0.22.0=pyhd8ed1ab_0 - webcolors=1.13=pyhd8ed1ab_0 - webencodings=0.5.1=pyhd8ed1ab_2 @@ -279,7 +279,7 @@ dependencies: - async-lru=2.0.4=pyhd8ed1ab_0 - aws-c-auth=0.7.4=h3e84773_2 - aws-c-mqtt=0.9.7=h9e52e49_0 - - babel=2.13.0=pyhd8ed1ab_0 + - babel=2.13.1=pyhd8ed1ab_0 - backports.functools_lru_cache=1.6.5=pyhd8ed1ab_0 - beautifulsoup4=4.12.2=pyha770c72_0 - bleach=6.1.0=pyhd8ed1ab_0 @@ -332,18 +332,17 @@ dependencies: - protobuf=4.23.4=py311h590876e_3 - pyasn1-modules=0.3.0=pyhd8ed1ab_0 - pyobjc-core=10.0=py311hb702dc4_0 - - pyproject-api=1.6.1=pyhd8ed1ab_0 - pyproject_hooks=1.0.0=pyhd8ed1ab_0 - - pytest=7.4.2=pyhd8ed1ab_0 + - pytest=7.4.3=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - python-slugify=8.0.1=pyhd8ed1ab_2 - pyu2f=0.1.5=pyhd8ed1ab_0 - - qtpy=2.4.0=pyhd8ed1ab_0 + - qtpy=2.4.1=pyhd8ed1ab_0 - referencing=0.30.2=pyhd8ed1ab_0 - restructuredtext_lint=1.4.0=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - rsa=4.9=pyhd8ed1ab_0 - - ruamel.yaml=0.17.39=py311h05b510d_0 + - ruamel.yaml=0.18.2=py311h05b510d_0 - sqlalchemy=1.4.49=py311h05b510d_1 - terminado=0.17.1=pyhd1c38e8_0 - tinycss2=1.2.1=pyhd8ed1ab_0 @@ -360,11 +359,11 @@ dependencies: - arrow=1.3.0=pyhd8ed1ab_0 - async-timeout=4.0.3=pyhd8ed1ab_0 - aws-c-s3=0.3.17=h29c26b6_4 - - botocore=1.31.68=pyhd8ed1ab_0 + - botocore=1.31.70=pyhd8ed1ab_0 - branca=0.6.0=pyhd8ed1ab_0 - cmarkgfm=0.8.0=py311heffc1b2_3 - croniter=2.0.1=pyhd8ed1ab_0 - - cryptography=41.0.4=py311h5fb2c35_0 + - cryptography=41.0.5=py311h71175c2_0 - fqdn=1.5.1=pyhd8ed1ab_0 - geotiff=1.7.1=h71398c0_14 - gitpython=3.1.40=pyhd8ed1ab_0 @@ -390,10 +389,10 @@ dependencies: - pybtex=0.24.0=pyhd8ed1ab_2 - pydantic=1.10.13=py311h05b510d_1 - pyobjc-framework-cocoa=10.0=py311hb702dc4_1 - - pyproj=3.6.1=py311he1f72a7_2 + - pyproj=3.6.1=py311h20a9b75_3 - pytest-console-scripts=1.4.1=pyhd8ed1ab_0 - pytest-cov=4.1.0=pyhd8ed1ab_0 - - pytest-mock=3.11.1=pyhd8ed1ab_0 + - pytest-mock=3.12.0=pyhd8ed1ab_0 - python-build=1.0.3=pyhd8ed1ab_0 - requests=2.31.0=pyhd8ed1ab_0 - rich=13.6.0=pyhd8ed1ab_0 @@ -437,17 +436,17 @@ dependencies: - stevedore=5.1.0=pyhd8ed1ab_0 - typer=0.9.0=pyhd8ed1ab_0 - uvicorn-standard=0.23.2=ha1ab1f8_1 - - virtualenv=20.24.4=pyhd8ed1ab_0 - - arelle-release=2.16.1=pyhd8ed1ab_0 + - virtualenv=20.24.6=pyhd8ed1ab_0 + - arelle-release=2.16.3=pyhd8ed1ab_0 - aws-sdk-cpp=1.11.156=ha282cf0_4 - - boto3=1.28.68=pyhd8ed1ab_0 + - boto3=1.28.70=pyhd8ed1ab_0 - bottleneck=1.3.7=py311hb49d859_1 - cachecontrol-with-filecache=0.13.1=pyhd8ed1ab_0 - contourpy=1.1.1=py311he4fd1f5_1 - - dagster=1.5.3=pyhd8ed1ab_1 + - dagster=1.5.4=pyhd8ed1ab_1 - datasette=0.64.4=pyhd8ed1ab_1 - doc8=1.1.1=pyhd8ed1ab_0 - - email-validator=2.0.0.post2=pyhd8ed1ab_0 + - email-validator=2.1.0.post1=pyhd8ed1ab_0 - folium=0.14.0=pyhd8ed1ab_0 - frictionless=4.40.8=pyh6c4a22f_0 - gdal=3.7.2=py311h32a4f3d_7 @@ -455,7 +454,7 @@ dependencies: - gql-with-requests=3.4.1=pyhd8ed1ab_0 - h3-py=3.7.6=py311ha891d26_1 - jsonschema-with-format-nongpl=4.19.1=pyhd8ed1ab_0 - - jupyter_client=8.4.0=pyhd8ed1ab_0 + - jupyter_client=8.5.0=pyhd8ed1ab_0 - nbformat=5.9.2=pyhd8ed1ab_0 - numba=0.57.1=py311hbf3c4e2_0 - numexpr=2.8.7=py311h6e08293_4 @@ -465,11 +464,10 @@ dependencies: - requests-oauthlib=1.3.1=pyhd8ed1ab_0 - scipy=1.11.3=py311h93d07a4_1 - shapely=2.0.2=py311h4826c84_0 - - tox=4.11.3=pyhd8ed1ab_0 - twine=4.0.2=pyhd8ed1ab_0 - catalystcoop.ferc_xbrl_extractor=1.1.1=pyhd8ed1ab_0 - - conda-lock=2.4.0=pyhd8ed1ab_0 - - dagster-graphql=1.5.3=pyhd8ed1ab_1 + - conda-lock=2.4.1=pyhd8ed1ab_0 + - dagster-graphql=1.5.4=pyhd8ed1ab_1 - fiona=1.9.5=py311h45231e3_0 - geopandas-base=0.14.0=pyha770c72_1 - google-api-core=2.12.0=pyhd8ed1ab_0 @@ -479,13 +477,13 @@ dependencies: - libarrow=13.0.0=hf4fadc0_7_cpu - matplotlib-base=3.8.0=py311hfdba5f6_2 - nbclient=0.8.0=pyhd8ed1ab_0 - - scikit-learn=1.3.1=py311ha25ca4d_1 + - scikit-learn=1.3.2=py311ha25ca4d_1 - tabulator=1.53.5=pyhd8ed1ab_0 - timezonefinder=6.0.2=pyhd8ed1ab_0 - - dagster-webserver=1.5.3=pyhd8ed1ab_1 + - dagster-webserver=1.5.4=pyhd8ed1ab_1 - google-cloud-core=2.3.3=pyhd8ed1ab_0 - ipdb=0.13.13=pyhd8ed1ab_0 - - ipykernel=6.25.2=pyh1050b4e_0 + - ipykernel=6.26.0=pyh3cd1d5f_0 - ipywidgets=8.1.1=pyhd8ed1ab_0 - mapclassify=2.6.1=pyhd8ed1ab_0 - nbconvert-core=7.9.2=pyhd8ed1ab_0 @@ -496,7 +494,7 @@ dependencies: - geopandas=0.14.0=pyhd8ed1ab_1 - google-cloud-storage=2.12.0=pyhca7485f_0 - jupyter_console=6.6.3=pyhd8ed1ab_0 - - jupyter_server=2.8.0=pyhd8ed1ab_0 + - jupyter_server=2.9.1=pyhd8ed1ab_0 - nbconvert-pandoc=7.9.2=pyhd8ed1ab_0 - qtconsole-base=5.4.4=pyha770c72_0 - gcsfs=2023.9.2=pyhd8ed1ab_0 diff --git a/environments/conda-win-64.lock b/environments/conda-win-64.lock deleted file mode 100644 index 7051ee975c..0000000000 --- a/environments/conda-win-64.lock +++ /dev/null @@ -1,514 +0,0 @@ -# Generated by conda-lock. -# platform: win-64 -# input_hash: b88fac7d018b2ad0c30bd9b3df8c0861aa204c5633d40ec0a71d1fbff60e0086 -@EXPLICIT -https://conda.anaconda.org/conda-forge/win-64/ca-certificates-2023.7.22-h56e8100_0.conda#b1c2327b36f1a25d96f2039b0d3e3739 -https://conda.anaconda.org/conda-forge/noarch/font-ttf-dejavu-sans-mono-2.37-hab24e00_0.tar.bz2#0c96522c6bdaed4b1566d11387caaf45 -https://conda.anaconda.org/conda-forge/noarch/font-ttf-inconsolata-3.000-h77eed37_0.tar.bz2#34893075a5c9e55cdafac56607368fc6 -https://conda.anaconda.org/conda-forge/noarch/font-ttf-source-code-pro-2.038-h77eed37_0.tar.bz2#4d59c254e01d9cde7957100457e2d5fb -https://conda.anaconda.org/conda-forge/noarch/font-ttf-ubuntu-0.83-hab24e00_0.tar.bz2#19410c3df09dfb12d1206132a1d357c5 -https://conda.anaconda.org/conda-forge/win-64/libboost-headers-1.82.0-h57928b3_6.conda#7feb05147c063f56714526c5833e10b7 -https://conda.anaconda.org/conda-forge/win-64/libexpat-2.5.0-h63175ca_1.conda#636cc3cbbd2e28bcfd2f73b2044aac2c -https://conda.anaconda.org/conda-forge/noarch/llvm-meta-5.0.0-0.tar.bz2#213b5b5ad34008147a824460e50a691c -https://conda.anaconda.org/conda-forge/win-64/msys2-conda-epoch-20160418-1.tar.bz2#b0309b72560df66f71a9d5e34a5efdfa -https://conda.anaconda.org/conda-forge/win-64/nodejs-20.8.1-h57928b3_0.conda#1f243e2387f95ce1078614f2426b5780 -https://conda.anaconda.org/conda-forge/noarch/nomkl-1.0-h5ca1d4c_0.tar.bz2#9a66894dfd07c4510beb6b3f9672ccc0 -https://conda.anaconda.org/conda-forge/win-64/pandoc-2.19.2-h57928b3_2.conda#c188f67e94153ddc7e4e10ae127cbb1a -https://conda.anaconda.org/conda-forge/noarch/poppler-data-0.4.12-hd8ed1ab_0.conda#d8d7293c5b37f39b2ac32940621c6592 -https://conda.anaconda.org/conda-forge/win-64/python_abi-3.11-4_cp311.conda#70513332c71b56eace4ee6441e66c012 -https://conda.anaconda.org/conda-forge/noarch/tzdata-2023c-h71feb2d_0.conda#939e3e74d8be4dac89ce83b20de2492a -https://conda.anaconda.org/conda-forge/win-64/ucrt-10.0.22621.0-h57928b3_0.tar.bz2#72608f6cd3e5898229c3ea16deb1ac43 -https://conda.anaconda.org/conda-forge/win-64/winpty-0.4.3-4.tar.bz2#1cee351bf20b830d991dbe0bc8cd7dfe -https://conda.anaconda.org/conda-forge/win-64/expat-2.5.0-h63175ca_1.conda#87c77fe1b445aedb5c6d207dd236fa3e -https://conda.anaconda.org/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2#f766549260d6815b0c52253f1fb1bb29 -https://conda.anaconda.org/conda-forge/win-64/m2w64-gmp-6.1.0-2.tar.bz2#53a1c73e1e3d185516d7e3af177596d9 -https://conda.anaconda.org/conda-forge/win-64/m2w64-libwinpthread-git-5.0.0.4634.697f757-2.tar.bz2#774130a326dee16f1ceb05cc687ee4f0 -https://conda.anaconda.org/conda-forge/win-64/vc14_runtime-14.36.32532-hdcecf7f_17.conda#d0de20f2f3fc806a81b44fcdd941aaf7 -https://conda.anaconda.org/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2#fee5683a3f04bd15cbd8318b096a27ab -https://conda.anaconda.org/conda-forge/win-64/m2w64-gcc-libs-core-5.3.0-7.tar.bz2#4289d80fb4d272f1f3b56cfe87ac90bd -https://conda.anaconda.org/conda-forge/win-64/vc-14.3-h64f974e_17.conda#67ff6791f235bb606659bf2a5c169191 -https://conda.anaconda.org/conda-forge/win-64/vs2015_runtime-14.36.32532-h05e6639_17.conda#4618046c39f7c81861e53ded842e738a -https://conda.anaconda.org/conda-forge/win-64/aws-c-common-0.9.3-hcfcfb64_0.conda#ef7faef92f32551745303430e45d61d8 -https://conda.anaconda.org/conda-forge/win-64/bzip2-1.0.8-h8ffe710_4.tar.bz2#7c03c66026944073040cb19a4f3ec3c9 -https://conda.anaconda.org/conda-forge/win-64/c-ares-1.20.1-hcfcfb64_0.conda#4044c96668b5ca9068cc61673bc05a13 -https://conda.anaconda.org/conda-forge/win-64/geos-3.12.0-h1537add_0.conda#78119c25e59de33135b673375c6fa126 -https://conda.anaconda.org/conda-forge/win-64/icu-73.2-h63175ca_0.conda#0f47d9e3192d9e09ae300da0d28e0f56 -https://conda.anaconda.org/conda-forge/win-64/lerc-4.0.0-h63175ca_0.tar.bz2#1900cb3cab5055833cfddb0ba233b074 -https://conda.anaconda.org/conda-forge/win-64/libabseil-20230802.1-cxx17_h63175ca_0.conda#02674c18394394ee4f76cdbd1012f526 -https://conda.anaconda.org/conda-forge/win-64/libaec-1.1.2-h63175ca_1.conda#0b252d2bf460364bccb1523bcdbe4af6 -https://conda.anaconda.org/conda-forge/win-64/libbrotlicommon-1.1.0-hcfcfb64_1.conda#f77f319fb82980166569e1280d5b2864 -https://conda.anaconda.org/conda-forge/win-64/libcrc32c-1.1.2-h0e60522_0.tar.bz2#cd4cc2d0c610c8cb5419ccc979f2d6ce -https://conda.anaconda.org/conda-forge/win-64/libdeflate-1.19-hcfcfb64_0.conda#002b1b723b44dbd286b9e3708762433c -https://conda.anaconda.org/conda-forge/win-64/libffi-3.4.2-h8ffe710_5.tar.bz2#2c96d1b6915b408893f9472569dee135 -https://conda.anaconda.org/conda-forge/win-64/libiconv-1.17-h8ffe710_0.tar.bz2#050119977a86e4856f0416e2edcf81bb -https://conda.anaconda.org/conda-forge/win-64/libjpeg-turbo-3.0.0-hcfcfb64_1.conda#3f1b948619c45b1ca714d60c7389092c -https://conda.anaconda.org/conda-forge/win-64/libsodium-1.0.18-h8d14728_1.tar.bz2#5c1fb45b5e2912c19098750ae8a32604 -https://conda.anaconda.org/conda-forge/win-64/libspatialindex-1.9.3-h39d44d4_4.tar.bz2#51c172496e828258d04eba9971f2af1a -https://conda.anaconda.org/conda-forge/win-64/libsqlite-3.43.2-hcfcfb64_0.conda#a4a81906f6ce911113f672973777f305 -https://conda.anaconda.org/conda-forge/win-64/libutf8proc-2.8.0-h82a8f57_0.tar.bz2#076894846fe9f068f91c57d158c90cba -https://conda.anaconda.org/conda-forge/win-64/libwebp-base-1.3.2-hcfcfb64_0.conda#dcde8820959e64378d4e06147ffecfdd -https://conda.anaconda.org/conda-forge/win-64/libzlib-1.2.13-hcfcfb64_5.conda#5fdb9c6a113b6b6cb5e517fd972d5f41 -https://conda.anaconda.org/conda-forge/win-64/lz4-c-1.9.4-hcfcfb64_0.conda#e34720eb20a33fc3bfb8451dd837ab7a -https://conda.anaconda.org/conda-forge/win-64/lzo-2.10-he774522_1000.tar.bz2#d5cf4b7eaa52316f135eed9e8548ad57 -https://conda.anaconda.org/conda-forge/win-64/m2w64-gcc-libgfortran-5.3.0-6.tar.bz2#066552ac6b907ec6d72c0ddab29050dc -https://conda.anaconda.org/conda-forge/win-64/openmp-5.0.0-vc14_1.tar.bz2#8284c925330fa53668ade00db3c9e787 -https://conda.anaconda.org/conda-forge/win-64/openssl-3.1.3-hcfcfb64_0.conda#16b2c80ad196f18acd31b588ef28cb9a -https://conda.anaconda.org/conda-forge/win-64/pixman-0.42.2-h63175ca_0.conda#fb6fe034c742dc8562d3197c2d91423d -https://conda.anaconda.org/conda-forge/win-64/re2-2023.03.02-hd4eee63_0.conda#a59c371d7364446cf1d0b8299e05c1ea -https://conda.anaconda.org/conda-forge/win-64/snappy-1.1.10-hfb803bf_0.conda#cff1df79c9cff719460eb2dd172568de -https://conda.anaconda.org/conda-forge/win-64/tk-8.6.13-hcfcfb64_0.conda#74405f2ccbb40af409fee1a71ce70dc6 -https://conda.anaconda.org/conda-forge/win-64/uriparser-0.9.7-h1537add_1.conda#5f3b2772564e761bc2287b89b9e6b14b -https://conda.anaconda.org/conda-forge/win-64/xerces-c-3.2.4-h63175ca_3.conda#28c6b90f40c9c37d3334ba8225143690 -https://conda.anaconda.org/conda-forge/win-64/xz-5.2.6-h8d14728_0.tar.bz2#515d77642eaa3639413c6b1bc3f94219 -https://conda.anaconda.org/conda-forge/win-64/yaml-0.2.5-h8ffe710_2.tar.bz2#adbfb9f45d1004a26763652246a33764 -https://conda.anaconda.org/conda-forge/win-64/aws-c-cal-0.6.2-hd5965a7_2.conda#cbfd6b62693f67233f205e72e505109a -https://conda.anaconda.org/conda-forge/win-64/aws-c-compression-0.2.17-hd5965a7_3.conda#b0e3df9a002b961bf5fa2400235a8f74 -https://conda.anaconda.org/conda-forge/win-64/aws-c-sdkutils-0.1.12-hd5965a7_2.conda#5ac1b07dec55938a5f410e04aba2e27a -https://conda.anaconda.org/conda-forge/win-64/aws-checksums-0.1.17-hd5965a7_2.conda#750eaf78f1354c70743cb15c1e2ad4ac -https://conda.anaconda.org/conda-forge/win-64/gettext-0.21.1-h5728263_0.tar.bz2#299d4fd6798a45337042ff5a48219e5f -https://conda.anaconda.org/conda-forge/win-64/hdf4-4.2.15-h5557f11_7.conda#84344a916a73727c1326841007b52ca8 -https://conda.anaconda.org/conda-forge/win-64/krb5-1.21.2-heb0366b_0.conda#6e8b0f22b4eef3b3cb3849bb4c3d47f9 -https://conda.anaconda.org/conda-forge/win-64/libbrotlidec-1.1.0-hcfcfb64_1.conda#19ce3e1dacc7912b3d6ff40690ba9ae0 -https://conda.anaconda.org/conda-forge/win-64/libbrotlienc-1.1.0-hcfcfb64_1.conda#71e890a0b361fd58743a13f77e1506b7 -https://conda.anaconda.org/conda-forge/win-64/libevent-2.1.12-h3671451_1.conda#25efbd786caceef438be46da78a7b5ef -https://conda.anaconda.org/conda-forge/win-64/libflang-5.0.0-h6538335_20180525.tar.bz2#9f473a344e18668e99a93f7e21a54b69 -https://conda.anaconda.org/conda-forge/win-64/libkml-1.3.0-haf3e7a6_1018.conda#950e8765b20b79ecbd296543f848b4ec -https://conda.anaconda.org/conda-forge/win-64/libpng-1.6.39-h19919ed_0.conda#ab6febdb2dbd9c00803609079db4de71 -https://conda.anaconda.org/conda-forge/win-64/libprotobuf-4.23.4-hb8276f3_6.conda#1b9498bb8e615cfc5cb443f216b6ec1c -https://conda.anaconda.org/conda-forge/win-64/librttopo-1.1.0-h92c5fdb_14.conda#9d3f0c286ea2df09b2c0aefbd63769c0 -https://conda.anaconda.org/conda-forge/win-64/libssh2-1.11.0-h7dfc565_0.conda#dc262d03aae04fe26825062879141a41 -https://conda.anaconda.org/conda-forge/win-64/libxml2-2.11.5-hc3477c8_1.conda#27974f880a010b1441093d9f737a949f -https://conda.anaconda.org/conda-forge/win-64/libzip-1.10.1-h1d365fa_3.conda#5c629cd12d89e2856c17b1dc5fcf44a4 -https://conda.anaconda.org/conda-forge/win-64/m2w64-gcc-libs-5.3.0-7.tar.bz2#fe759119b8b3bfa720b8762c6fdc35de -https://conda.anaconda.org/conda-forge/win-64/pcre2-10.40-h17e33f8_0.tar.bz2#2519de0d9620dc2bc7e19caf6867136d -https://conda.anaconda.org/conda-forge/win-64/python-3.11.6-h2628c8c_0_cpython.conda#80b761856b20383615a3fe8b1b13eef8 -https://conda.anaconda.org/conda-forge/win-64/sqlite-3.43.2-hcfcfb64_0.conda#49cf1a42e5cba0d9a5ce5dcec46f49ed -https://conda.anaconda.org/conda-forge/win-64/zeromq-4.3.4-h0e60522_1.tar.bz2#e1aff0583dda5fb917eb3d2c1025aa80 -https://conda.anaconda.org/conda-forge/win-64/zlib-1.2.13-hcfcfb64_5.conda#a318e8622e11663f645cc7fa3260f462 -https://conda.anaconda.org/conda-forge/win-64/zstd-1.5.5-h12be248_0.conda#792bb5da68bf0a6cac6a6072ecb8dbeb -https://conda.anaconda.org/conda-forge/noarch/aiofiles-23.1.0-pyhd8ed1ab_1.conda#4e0624567be59edd7d0fec20db4d7a9c -https://conda.anaconda.org/conda-forge/noarch/alabaster-0.7.13-pyhd8ed1ab_0.conda#06006184e203b61d3525f90de394471e -https://conda.anaconda.org/conda-forge/noarch/anyascii-0.3.2-pyhd8ed1ab_0.conda#70b6fc71d80ea6176f5302ebbeb13d8a -https://conda.anaconda.org/conda-forge/noarch/appdirs-1.4.4-pyh9f0ad1d_0.tar.bz2#5f095bc6454094e96f146491fd03633b -https://conda.anaconda.org/conda-forge/win-64/astroid-3.0.1-py311h1ea47a8_0.conda#80ac6dc68a5ff571bfa9190ed7ac84fe -https://conda.anaconda.org/conda-forge/noarch/attrs-23.1.0-pyh71513ae_1.conda#3edfead7cedd1ab4400a6c588f3e75f8 -https://conda.anaconda.org/conda-forge/win-64/aws-c-io-0.13.33-ha16e049_0.conda#5f4981006f0e0b8d833b7f26d18420ac -https://conda.anaconda.org/conda-forge/noarch/backcall-0.2.0-pyh9f0ad1d_0.tar.bz2#6006a6d08a3fa99268a2681c7fb55213 -https://conda.anaconda.org/conda-forge/noarch/backoff-2.2.1-pyhd8ed1ab_0.tar.bz2#4600709bd85664d8606ae0c76642f8db -https://conda.anaconda.org/conda-forge/noarch/backports-1.0-pyhd8ed1ab_3.conda#54ca2e08b3220c148a1d8329c2678e02 -https://conda.anaconda.org/conda-forge/noarch/blinker-1.6.3-pyhd8ed1ab_0.conda#d33cf7357de636cec64320f0c4fb7b6f -https://conda.anaconda.org/conda-forge/win-64/blosc-1.21.5-hdccc3a2_0.conda#77a5cea2ce92907b7d1e7954457a526a -https://conda.anaconda.org/conda-forge/win-64/brotli-bin-1.1.0-hcfcfb64_1.conda#0105229d7c5fabaa840043a86c10ec64 -https://conda.anaconda.org/conda-forge/win-64/brotli-python-1.1.0-py311h12c1d0e_1.conda#42fbf4e947c17ea605e6a4d7f526669a -https://conda.anaconda.org/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2#576d629e47797577ab0f1b351297ef4a -https://conda.anaconda.org/conda-forge/noarch/cachetools-5.3.1-pyhd8ed1ab_0.conda#60b5eb16d9a7a5482ba37f67aa49db5b -https://conda.anaconda.org/conda-forge/noarch/cachy-0.3.0-pyhd8ed1ab_1.tar.bz2#5dfee17f24e2dfd18d7392b48c9351e2 -https://conda.anaconda.org/conda-forge/noarch/catalystcoop.dbfread-3.0.0-py_0.tar.bz2#301d8b0d49e76f6bd586d2c96c2e259e -https://conda.anaconda.org/conda-forge/win-64/cchardet-2.1.7-py311h12c1d0e_5.conda#a0d256b878adf80eacc4b729f3a061a8 -https://conda.anaconda.org/conda-forge/noarch/certifi-2023.7.22-pyhd8ed1ab_0.conda#7f3dbc9179b4dde7da98dfb151d0ad22 -https://conda.anaconda.org/conda-forge/noarch/cfgv-3.3.1-pyhd8ed1ab_0.tar.bz2#ebb5f5f7dc4f1a3780ef7ea7738db08c -https://conda.anaconda.org/conda-forge/win-64/chardet-5.2.0-py311h1ea47a8_1.conda#5c7813415d332343dfe550685954d1b5 -https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.3.0-pyhd8ed1ab_0.conda#fef8ef5f0a54546b9efee39468229917 -https://conda.anaconda.org/conda-forge/noarch/cloudpickle-3.0.0-pyhd8ed1ab_0.conda#753d29fe41bb881e4b9c004f0abf973f -https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2#3faab06a954c2a04039983f2c4a50d99 -https://conda.anaconda.org/conda-forge/noarch/crashtest-0.4.1-pyhd8ed1ab_0.tar.bz2#709a2295dd907bb34afb57d54320642f -https://conda.anaconda.org/conda-forge/noarch/cycler-0.12.1-pyhd8ed1ab_0.conda#5cd86562580f274031ede6aa6aa24441 -https://conda.anaconda.org/conda-forge/noarch/dagster-pipes-1.5.3-pyhd8ed1ab_1.conda#f1d822044ec73e262eb9de200e8ddc9e -https://conda.anaconda.org/conda-forge/noarch/dataclasses-0.8-pyhc8e2a94_3.tar.bz2#a362b2124b06aad102e2ee4581acee7d -https://conda.anaconda.org/conda-forge/win-64/debugpy-1.8.0-py311h12c1d0e_1.conda#8f521f35a7544cbf058b24e11561d53a -https://conda.anaconda.org/conda-forge/noarch/decorator-5.1.1-pyhd8ed1ab_0.tar.bz2#43afe5ab04e35e17ba28649471dd7364 -https://conda.anaconda.org/conda-forge/noarch/defusedxml-0.7.1-pyhd8ed1ab_0.tar.bz2#961b3a227b437d82ad7054484cfa71b2 -https://conda.anaconda.org/conda-forge/noarch/distlib-0.3.7-pyhd8ed1ab_0.conda#12d8aae6994f342618443a8f05c652a0 -https://conda.anaconda.org/conda-forge/noarch/docstring_parser-0.15-pyhd8ed1ab_0.conda#031fcb28b8e80c1f7bec22ccdf4904b2 -https://conda.anaconda.org/conda-forge/win-64/docutils-0.20.1-py311h1ea47a8_2.conda#6b90695c3fc8616b09e3fabc77f816df -https://conda.anaconda.org/conda-forge/noarch/entrypoints-0.4-pyhd8ed1ab_0.tar.bz2#3cf04868fee0a029769bd41f4b2fbf2d -https://conda.anaconda.org/conda-forge/noarch/et_xmlfile-1.1.0-pyhd8ed1ab_0.conda#a2f2138597905eaa72e561d8efb42cf3 -https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.1.3-pyhd8ed1ab_0.conda#e6518222753f519e911e83136d2158d9 -https://conda.anaconda.org/conda-forge/noarch/executing-1.2.0-pyhd8ed1ab_0.tar.bz2#4c1bc140e2be5c8ba6e3acab99e25c50 -https://conda.anaconda.org/conda-forge/noarch/filelock-3.12.4-pyhd8ed1ab_0.conda#5173d4b8267a0699a43d73231e0b6596 -https://conda.anaconda.org/conda-forge/win-64/freetype-2.12.1-hdaf720e_2.conda#3761b23693f768dc75a8fd0a73ca053f -https://conda.anaconda.org/conda-forge/win-64/frozenlist-1.4.0-py311ha68e1ae_1.conda#72528760330d728a6cde3a1bbe95a92f -https://conda.anaconda.org/conda-forge/noarch/fsspec-2023.9.2-pyh1a96a4e_0.conda#9d15cd3a0e944594ab528da37dc72ecc -https://conda.anaconda.org/conda-forge/win-64/greenlet-3.0.0-py311h12c1d0e_1.conda#11e26000bb4515cb9be1e750a296c17d -https://conda.anaconda.org/conda-forge/noarch/hpack-4.0.0-pyh9f0ad1d_0.tar.bz2#914d6646c4dbb1fd3ff539830a12fd71 -https://conda.anaconda.org/conda-forge/win-64/httptools-0.6.1-py311ha68e1ae_0.conda#694cb7ff09418a63a65d45f912679c7f -https://conda.anaconda.org/conda-forge/noarch/hupper-1.12-pyhd8ed1ab_0.conda#2654ff96e839bc699e5c3780689a596b -https://conda.anaconda.org/conda-forge/noarch/hyperframe-6.0.1-pyhd8ed1ab_0.tar.bz2#9f765cbfab6870c8435b9eefecd7a1f4 -https://conda.anaconda.org/conda-forge/noarch/idna-3.4-pyhd8ed1ab_0.tar.bz2#34272b248891bddccc64479f9a7fffed -https://conda.anaconda.org/conda-forge/noarch/ijson-3.2.3-pyhd8ed1ab_0.conda#6b1e4cb33f797d6487efd3ebad39d103 -https://conda.anaconda.org/conda-forge/noarch/imagesize-1.4.1-pyhd8ed1ab_0.tar.bz2#7de5386c8fea29e76b303f37dde4c352 -https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_0.conda#f800d2da156d08e289b14e87e43c1ae5 -https://conda.anaconda.org/conda-forge/noarch/ipython_genutils-0.2.0-py_1.tar.bz2#5071c982548b3a20caf70462f04f5287 -https://conda.anaconda.org/conda-forge/noarch/itsdangerous-2.1.2-pyhd8ed1ab_0.tar.bz2#3c3de74912f11d2b590184f03c7cd09b -https://conda.anaconda.org/conda-forge/win-64/jellyfish-1.0.1-py311hc37eb10_1.conda#083bfbc2c878ffdf2997e7d0eb29b01c -https://conda.anaconda.org/conda-forge/noarch/jmespath-1.0.1-pyhd8ed1ab_0.tar.bz2#2cfa3e1cf3fb51bb9b17acc5b5e9ea11 -https://conda.anaconda.org/conda-forge/noarch/json5-0.9.14-pyhd8ed1ab_0.conda#dac1dabba2b5a9d1aee175c5fcc7b436 -https://conda.anaconda.org/conda-forge/win-64/jsonpointer-2.4-py311h1ea47a8_3.conda#db8fc59f9215e668e602f769d0bf67bb -https://conda.anaconda.org/conda-forge/noarch/jupyterlab_widgets-3.0.9-pyhd8ed1ab_0.conda#8370e0a9dc443f9b45a23fd30e7a6b3b -https://conda.anaconda.org/conda-forge/win-64/kiwisolver-1.4.5-py311h005e61a_1.conda#de0b3f37405f8386ac8be18fdc06ff92 -https://conda.anaconda.org/conda-forge/win-64/libarchive-3.7.2-h6f8411a_0.conda#ef46bb4b1613b308b957a25407ff6f5b -https://conda.anaconda.org/conda-forge/win-64/libcurl-8.4.0-hd5e4a3a_0.conda#13e4e3824a0212103330f57058601c21 -https://conda.anaconda.org/conda-forge/win-64/libglib-2.78.0-he8f3873_0.conda#25f5b3502a82ac425c72c3bc0efbecb5 -https://conda.anaconda.org/conda-forge/win-64/libgrpc-1.57.0-h550f6bd_2.conda#29e4345d5b0e4d7aec1589805f9d1364 -https://conda.anaconda.org/conda-forge/win-64/libopenblas-0.3.24-pthreads_hc140b1d_0.conda#04c0edb6850b8fcde1cc298ad52c2bdf -https://conda.anaconda.org/conda-forge/win-64/libpq-16.0-h43585b0_1.conda#c1d1c81e2dbcd0763b80e11ad18020bf -https://conda.anaconda.org/conda-forge/win-64/libthrift-0.19.0-ha2b3283_1.conda#d3432b9d4950e91d2fdf3bed91248ee0 -https://conda.anaconda.org/conda-forge/win-64/libtiff-4.6.0-h6e2ebb7_2.conda#08d653b74ee2dec0131ad4259ffbb126 -https://conda.anaconda.org/conda-forge/win-64/libxslt-1.1.37-h6070c61_1.conda#b9ed82b82e2f292f75f1af56f35f8c9f -https://conda.anaconda.org/conda-forge/win-64/llvmlite-0.40.1-py311h5bc0dda_0.conda#25e387bf9dfc0cddec8a410a1721e6f1 -https://conda.anaconda.org/conda-forge/noarch/locket-1.0.0-pyhd8ed1ab_0.tar.bz2#91e27ef3d05cc772ce627e51cff111c4 -https://conda.anaconda.org/conda-forge/noarch/marko-1.3.1-pyhd8ed1ab_0.conda#9651c1c1c19dbc072c557e3e2da38329 -https://conda.anaconda.org/conda-forge/win-64/markupsafe-2.1.3-py311ha68e1ae_1.conda#bc93b9d445824cfce3933b5dcc1087b4 -https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.0-pyhd8ed1ab_0.tar.bz2#f8dab71fdc13b1bf29a01248b156d268 -https://conda.anaconda.org/conda-forge/noarch/mergedeep-1.3.4-pyhd8ed1ab_0.tar.bz2#1a160a3cab5cb6bd46264b52cd6f69a2 -https://conda.anaconda.org/conda-forge/win-64/minizip-4.0.1-h5bed578_5.conda#c11d91a8ab4f51c4f7d8d89321de4921 -https://conda.anaconda.org/conda-forge/noarch/mistune-3.0.1-pyhd8ed1ab_0.conda#1dad8397c94e4de97a70de552a7dcf49 -https://conda.anaconda.org/conda-forge/noarch/more-itertools-10.1.0-pyhd8ed1ab_0.conda#8549fafed0351bbfaa1ddaa15fdf9b4e -https://conda.anaconda.org/conda-forge/win-64/msgpack-python-1.0.6-py311h005e61a_0.conda#14b3e6fdf79754dcba265a034cd97f26 -https://conda.anaconda.org/conda-forge/win-64/multidict-6.0.4-py311ha68e1ae_1.conda#fff5ab4494a6df3b67f8e554f6403689 -https://conda.anaconda.org/conda-forge/noarch/munch-4.0.0-pyhd8ed1ab_0.conda#376b32e8f9d3eacbd625f37d39bd507d -https://conda.anaconda.org/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2#2ba8498c1018c1e9c61eb99b973dfe19 -https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda#4eccaeba205f0aed9ac3a9ea58568ca3 -https://conda.anaconda.org/conda-forge/noarch/nest-asyncio-1.5.8-pyhd8ed1ab_0.conda#a4f0e4519bc50eee4f53f689be9607f7 -https://conda.anaconda.org/conda-forge/noarch/networkx-3.1-pyhd8ed1ab_0.conda#254f787d5068bc89f578bf63893ce8b4 -https://conda.anaconda.org/conda-forge/win-64/nh3-0.2.14-py311h633b200_1.conda#b06c8f68899f0971c10c0b641d7c017e -https://conda.anaconda.org/conda-forge/win-64/orc-1.9.0-h8dbeef6_2.conda#1a77b6711c85b6d04eac70c028cc905a -https://conda.anaconda.org/conda-forge/noarch/packaging-23.2-pyhd8ed1ab_0.conda#79002079284aa895f883c6b7f3f88fd6 -https://conda.anaconda.org/conda-forge/noarch/pandocfilters-1.5.0-pyhd8ed1ab_0.tar.bz2#457c2c8c08e54905d6954e79cb5b5db9 -https://conda.anaconda.org/conda-forge/noarch/parso-0.8.3-pyhd8ed1ab_0.tar.bz2#17a565a0c3899244e938cdf417e7b094 -https://conda.anaconda.org/conda-forge/noarch/pastel-0.2.1-pyhd8ed1ab_0.tar.bz2#a4eea5bff523f26442405bc5d1f52adb -https://conda.anaconda.org/conda-forge/noarch/pathspec-0.11.2-pyhd8ed1ab_0.conda#e41debb259e68490e3ab81e46b639ab6 -https://conda.anaconda.org/conda-forge/noarch/petl-1.7.14-pyhd8ed1ab_0.conda#65813db01f2331768d909c0852ff5d70 -https://conda.anaconda.org/conda-forge/noarch/pickleshare-0.7.5-py_1003.tar.bz2#415f0ebb6198cc2801c73438a9fb5761 -https://conda.anaconda.org/conda-forge/noarch/pkginfo-1.9.6-pyhd8ed1ab_0.conda#be1e9f1c65a1ed0f2ae9352fec99db64 -https://conda.anaconda.org/conda-forge/noarch/pkgutil-resolve-name-1.3.10-pyhd8ed1ab_1.conda#405678b942f2481cecdb3e010f4925d9 -https://conda.anaconda.org/conda-forge/noarch/pluggy-1.3.0-pyhd8ed1ab_0.conda#2390bd10bed1f3fdc7a537fb5a447d8d -https://conda.anaconda.org/conda-forge/noarch/prometheus_client-0.17.1-pyhd8ed1ab_0.conda#02153b6b760bbec00cfe9e4c97993d06 -https://conda.anaconda.org/conda-forge/win-64/psutil-5.9.5-py311ha68e1ae_1.conda#f64b2d9577e753fea9662dae11339ac2 -https://conda.anaconda.org/conda-forge/win-64/pthread-stubs-0.4-hcd874cb_1001.tar.bz2#a1f820480193ea83582b13249a7e7bd9 -https://conda.anaconda.org/conda-forge/noarch/pure_eval-0.2.2-pyhd8ed1ab_0.tar.bz2#6784285c7e55cb7212efabc79e4c2883 -https://conda.anaconda.org/conda-forge/noarch/pyasn1-0.5.0-pyhd8ed1ab_0.conda#4b1c0db24e212190be1969b0aa490ad8 -https://conda.anaconda.org/conda-forge/noarch/pycparser-2.21-pyhd8ed1ab_0.tar.bz2#076becd9e05608f8dc72757d5f3a91ff -https://conda.anaconda.org/conda-forge/noarch/pygments-2.16.1-pyhd8ed1ab_0.conda#40e5cb18165466773619e5c963f00a7b -https://conda.anaconda.org/conda-forge/noarch/pyjwt-2.8.0-pyhd8ed1ab_0.conda#912c0194f898fdb783021fd25f913c31 -https://conda.anaconda.org/conda-forge/noarch/pylev-1.4.0-pyhd8ed1ab_0.tar.bz2#edf8651c4379d9d1495ad6229622d150 -https://conda.anaconda.org/conda-forge/noarch/pyparsing-3.1.1-pyhd8ed1ab_0.conda#176f7d56f0cfe9008bdf1bccd7de02fb -https://conda.anaconda.org/conda-forge/win-64/pyreadline3-3.4.1-py311h1ea47a8_3.conda#e86fc6f567494744bf987c6fcd7478d3 -https://conda.anaconda.org/conda-forge/noarch/python-dotenv-1.0.0-pyhd8ed1ab_1.conda#111e7f9edd31865e2659fa9aad8ec8fd -https://conda.anaconda.org/conda-forge/noarch/python-fastjsonschema-2.18.1-pyhd8ed1ab_0.conda#305141cff54af2f90e089d868fffce28 -https://conda.anaconda.org/conda-forge/noarch/python-json-logger-2.0.7-pyhd8ed1ab_0.conda#a61bf9ec79426938ff785eb69dbb1960 -https://conda.anaconda.org/conda-forge/noarch/python-multipart-0.0.6-pyhd8ed1ab_0.conda#f4f642eeda814c1b65f46fbdf7e89096 -https://conda.anaconda.org/conda-forge/noarch/python-tzdata-2023.3-pyhd8ed1ab_0.conda#2590495f608a63625e165915fb4e2e34 -https://conda.anaconda.org/conda-forge/noarch/pytz-2023.3.post1-pyhd8ed1ab_0.conda#c93346b446cd08c169d843ae5fc0da97 -https://conda.anaconda.org/conda-forge/noarch/pytzdata-2020.1-pyh9f0ad1d_0.tar.bz2#7dd824593f3a861130ac17c6571546e2 -https://conda.anaconda.org/conda-forge/win-64/pywin32-306-py311h12c1d0e_2.conda#25df0fc55722ea1a94494f41302e2d1c -https://conda.anaconda.org/conda-forge/win-64/pywin32-ctypes-0.2.2-py311h1ea47a8_1.conda#e1270294a55b716f9b76900340e8fc82 -https://conda.anaconda.org/conda-forge/win-64/pywinpty-2.0.12-py311h12c1d0e_0.conda#6561b01d9a25270af769d3defd007cc5 -https://conda.anaconda.org/conda-forge/noarch/pyxlsb-1.0.10-pyhd8ed1ab_0.tar.bz2#0c14e44bc93a99cdc11398311c3c0dcf -https://conda.anaconda.org/conda-forge/win-64/pyyaml-6.0.1-py311ha68e1ae_1.conda#2b4128962cd665153e946f2a88667a3b -https://conda.anaconda.org/conda-forge/win-64/pyzmq-25.1.1-py311h7b3f143_1.conda#e3d0dd062963011239017d79be3ecdaa -https://conda.anaconda.org/conda-forge/win-64/regex-2023.10.3-py311ha68e1ae_0.conda#f19f7827b140e42ec68a08321ad00755 -https://conda.anaconda.org/conda-forge/noarch/rfc3986-2.0.0-pyhd8ed1ab_0.tar.bz2#d337886e38f965bf97aaec382ff6db00 -https://conda.anaconda.org/conda-forge/noarch/rfc3986-validator-0.1.1-pyh9f0ad1d_0.tar.bz2#912a71cc01012ee38e6b90ddd561e36f -https://conda.anaconda.org/conda-forge/win-64/rpds-py-0.10.6-py311hc37eb10_0.conda#e6db816fc060ebef3ffc142bbeb90405 -https://conda.anaconda.org/conda-forge/win-64/rtree-1.1.0-py311hcacb13a_0.conda#d02d32b82431af0097bb0bce78720ad8 -https://conda.anaconda.org/conda-forge/win-64/ruamel.yaml.clib-0.2.7-py311ha68e1ae_2.conda#a19abbda796a7003308e1cba9b0c9905 -https://conda.anaconda.org/conda-forge/win-64/ruff-0.1.1-py311hc14472d_0.conda#070be80ee7e211f5cc98ca011defdc89 -https://conda.anaconda.org/conda-forge/noarch/setuptools-68.2.2-pyhd8ed1ab_0.conda#fc2166155db840c634a1291a5c35a709 -https://conda.anaconda.org/conda-forge/noarch/shellingham-1.5.3-pyhd8ed1ab_0.conda#83795060a5d8cd12b90a58bd62bc251e -https://conda.anaconda.org/conda-forge/win-64/simpleeval-0.9.13-py311ha68e1ae_1.conda#68baa9db80958d05d9ed91aa4ef11cbf -https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2#e5f25f8dbc060e9a8d912e432202afc2 -https://conda.anaconda.org/conda-forge/noarch/smmap-5.0.0-pyhd8ed1ab_0.tar.bz2#62f26a3d1387acee31322208f0cfa3e0 -https://conda.anaconda.org/conda-forge/noarch/sniffio-1.3.0-pyhd8ed1ab_0.tar.bz2#dd6cbc539e74cb1f430efbd4575b9303 -https://conda.anaconda.org/conda-forge/noarch/snowballstemmer-2.2.0-pyhd8ed1ab_0.tar.bz2#4d22a9315e78c6827f806065957d566e -https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.5-pyhd8ed1ab_1.conda#3f144b2c34f8cb5a9abd9ed23a39c561 -https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-jsmath-1.0.1-pyhd8ed1ab_0.conda#da1d979339e2714c30a8e806a33ec087 -https://conda.anaconda.org/conda-forge/noarch/stringcase-1.2.0-py_0.tar.bz2#26a9caf3173939377bac7152379daac0 -https://conda.anaconda.org/conda-forge/noarch/tabulate-0.9.0-pyhd8ed1ab_1.tar.bz2#4759805cce2d914c38472f70bf4d8bcb -https://conda.anaconda.org/conda-forge/noarch/text-unidecode-1.3-pyhd8ed1ab_1.conda#ba8aba332d8868897ce44ad74015a7fe -https://conda.anaconda.org/conda-forge/noarch/threadpoolctl-3.2.0-pyha21a80b_0.conda#978d03388b62173b8e6f79162cf52b86 -https://conda.anaconda.org/conda-forge/noarch/toml-0.10.2-pyhd8ed1ab_0.tar.bz2#f832c45a477c78bebd107098db465095 -https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2#5844808ffab9ebdb694585b50ba02a96 -https://conda.anaconda.org/conda-forge/noarch/tomlkit-0.12.1-pyha770c72_0.conda#62f5b331c53d73e2f6c4c130b53518a0 -https://conda.anaconda.org/conda-forge/noarch/toolz-0.12.0-pyhd8ed1ab_0.tar.bz2#92facfec94bc02d6ccf42e7173831a36 -https://conda.anaconda.org/conda-forge/noarch/toposort-1.10-pyhd8ed1ab_0.conda#aeef653e20028f19a3c2cc70e166b509 -https://conda.anaconda.org/conda-forge/win-64/tornado-6.3.3-py311ha68e1ae_1.conda#ec581b55f82fd6a4a96770c74d48e456 -https://conda.anaconda.org/conda-forge/noarch/traitlets-5.11.2-pyhd8ed1ab_0.conda#bd3f90f7551e1cffb1f402880eb2cef1 -https://conda.anaconda.org/conda-forge/noarch/types-python-dateutil-2.8.19.14-pyhd8ed1ab_0.conda#4df15c51a543e806d439490b862be1c6 -https://conda.anaconda.org/conda-forge/noarch/types-pyyaml-6.0.12.12-pyhd8ed1ab_0.conda#0cb14c80f66937df894d60626dd1921f -https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.8.0-pyha770c72_0.conda#5b1be40a26d10a06f6d4f1f9e19fa0c7 -https://conda.anaconda.org/conda-forge/noarch/typing_utils-0.1.0-pyhd8ed1ab_0.tar.bz2#eb67e3cace64c66233e2d35949e20f92 -https://conda.anaconda.org/conda-forge/noarch/unicodecsv-0.14.1-py_1.tar.bz2#3b2b0e9d7f73db2b5e45db113badb7f7 -https://conda.anaconda.org/conda-forge/noarch/uri-template-1.3.0-pyhd8ed1ab_0.conda#0944dc65cb4a9b5b68522c3bb585d41c -https://conda.anaconda.org/conda-forge/noarch/validators-0.22.0-pyhd8ed1ab_0.conda#56435633ef70e7b92c54151599cbf757 -https://conda.anaconda.org/conda-forge/noarch/webcolors-1.13-pyhd8ed1ab_0.conda#166212fe82dad8735550030488a01d03 -https://conda.anaconda.org/conda-forge/noarch/webencodings-0.5.1-pyhd8ed1ab_2.conda#daf5160ff9cde3a468556965329085b9 -https://conda.anaconda.org/conda-forge/noarch/websocket-client-1.6.4-pyhd8ed1ab_0.conda#bdb77b28cf16deac0eef431a068320e8 -https://conda.anaconda.org/conda-forge/win-64/websockets-10.4-py311ha68e1ae_1.tar.bz2#8c0833ab9e8fd2002542c964ecd0d4e3 -https://conda.anaconda.org/conda-forge/noarch/wheel-0.41.2-pyhd8ed1ab_0.conda#1ccd092478b3e0ee10d7a891adbf8a4f -https://conda.anaconda.org/conda-forge/noarch/widgetsnbextension-4.0.9-pyhd8ed1ab_0.conda#82617d07b2f5f5a96296d3c19684b37a -https://conda.anaconda.org/conda-forge/noarch/win_inet_pton-1.1.0-pyhd8ed1ab_6.tar.bz2#30878ecc4bd36e8deeea1e3c151b2e0b -https://conda.anaconda.org/conda-forge/noarch/xlrd-2.0.1-pyhd8ed1ab_3.tar.bz2#97dfcd5ff030d829b55f67e82f928093 -https://conda.anaconda.org/conda-forge/noarch/xlsxwriter-3.1.7-pyhd8ed1ab_0.conda#57ed13683ed80362014f6499e27f7b05 -https://conda.anaconda.org/conda-forge/win-64/xorg-libxau-1.0.11-hcd874cb_0.conda#c46ba8712093cb0114404ae8a7582e1a -https://conda.anaconda.org/conda-forge/win-64/xorg-libxdmcp-1.1.3-hcd874cb_0.tar.bz2#46878ebb6b9cbd8afcf8088d7ef00ece -https://conda.anaconda.org/conda-forge/noarch/xyzservices-2023.10.0-pyhd8ed1ab_0.conda#9c6fe7db9c9133ade38b9a5011103243 -https://conda.anaconda.org/conda-forge/noarch/zipp-3.17.0-pyhd8ed1ab_0.conda#2e4d6bc0b14e10f895fc6791a7d9b26a -https://conda.anaconda.org/conda-forge/noarch/aiosignal-1.3.1-pyhd8ed1ab_0.tar.bz2#d1e1eb7e21a9e2c74279d87dafb68156 -https://conda.anaconda.org/conda-forge/noarch/anyio-4.0.0-pyhd8ed1ab_0.conda#3c4e99d3ae4ec033d4dd99fb5220e540 -https://conda.anaconda.org/conda-forge/noarch/asgi-csrf-0.9-pyhd8ed1ab_0.tar.bz2#eae21b40ce9beded0ce0e5c67180b1e7 -https://conda.anaconda.org/conda-forge/noarch/asgiref-3.7.2-pyhd8ed1ab_0.conda#596932155bf88bb6837141550cb721b0 -https://conda.anaconda.org/conda-forge/noarch/asttokens-2.4.0-pyhd8ed1ab_0.conda#056f04e51dd63337e8d7c425c18c86f1 -https://conda.anaconda.org/conda-forge/noarch/async-lru-2.0.4-pyhd8ed1ab_0.conda#3d081de3a6ea9f894bbb585e8e3a4dcb -https://conda.anaconda.org/conda-forge/win-64/aws-c-event-stream-0.3.2-hef061cf_2.conda#90effb2946b896335fd6b4489dea5d91 -https://conda.anaconda.org/conda-forge/win-64/aws-c-http-0.7.13-h064cb6d_2.conda#87e86cc6b9a09708ad605eca305b6a41 -https://conda.anaconda.org/conda-forge/noarch/babel-2.13.0-pyhd8ed1ab_0.conda#22541af7a9eb59fc6afcadb7ecdf9219 -https://conda.anaconda.org/conda-forge/noarch/backports.functools_lru_cache-1.6.5-pyhd8ed1ab_0.conda#6b1b907661838a75d067a22f87996b2e -https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.12.2-pyha770c72_0.conda#a362ff7d976217f8fa78c0f1c4f59717 -https://conda.anaconda.org/conda-forge/noarch/bleach-6.1.0-pyhd8ed1ab_0.conda#0ed9d7c0e9afa7c025807a9a8136ea3e -https://conda.anaconda.org/conda-forge/win-64/brotli-1.1.0-hcfcfb64_1.conda#f47f6db2528e38321fb00ae31674c133 -https://conda.anaconda.org/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2#9b347a7ec10940d3f7941ff6c460b551 -https://conda.anaconda.org/conda-forge/win-64/cffi-1.16.0-py311ha68e1ae_0.conda#d109d6e767c4890ea32880b8bfa4a3b6 -https://conda.anaconda.org/conda-forge/win-64/cfitsio-4.3.0-h9b0cee5_0.conda#a04c557207fa9fc6f663ae1e4768d321 -https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-win_pyh7428d3b_0.conda#3549ecbceb6cd77b91a105511b7d0786 -https://conda.anaconda.org/conda-forge/noarch/clikit-0.6.2-pyhd8ed1ab_2.conda#02abb7b66b02e8b9f5a9b05454400087 -https://conda.anaconda.org/conda-forge/noarch/comm-0.1.4-pyhd8ed1ab_0.conda#c8eaca39e2b6abae1fc96acc929ae939 -https://conda.anaconda.org/conda-forge/win-64/coverage-7.3.2-py311ha68e1ae_0.conda#6d0d75c92bdf393a2dd818b7fe6615a0 -https://conda.anaconda.org/conda-forge/win-64/fontconfig-2.14.2-hbde0cde_0.conda#08767992f1a4f1336a257af1241034bd -https://conda.anaconda.org/conda-forge/win-64/freexl-2.0.0-h8276f4a_0.conda#8e02e06229c677cbc9f5dc69ba49052c -https://conda.anaconda.org/conda-forge/noarch/gitdb-4.0.11-pyhd8ed1ab_0.conda#623b19f616f2ca0c261441067e18ae40 -https://conda.anaconda.org/conda-forge/noarch/graphql-core-3.2.3-pyhd8ed1ab_0.tar.bz2#87cafe8c7638a5ac6fd8ec8fb01f1508 -https://conda.anaconda.org/conda-forge/win-64/grpcio-1.57.0-py311h5bc0dda_2.conda#2bdacbb0a74d2694452b7473c2ad7f2c -https://conda.anaconda.org/conda-forge/noarch/h11-0.14.0-pyhd8ed1ab_0.tar.bz2#b21ed0883505ba1910994f1df031a428 -https://conda.anaconda.org/conda-forge/noarch/h2-4.1.0-pyhd8ed1ab_0.tar.bz2#b748fbf7060927a6e82df7cb5ee8f097 -https://conda.anaconda.org/conda-forge/win-64/hdf5-1.14.2-nompi_h73e8ff5_100.conda#7fc095c23e4519a8df15c09f3671d09a -https://conda.anaconda.org/conda-forge/noarch/html5lib-1.1-pyh9f0ad1d_0.tar.bz2#b2355343d6315c892543200231d7154a -https://conda.anaconda.org/conda-forge/win-64/humanfriendly-10.0-py311h1ea47a8_5.conda#95fa4dc3a35dbf6afd66e0718a8f793d -https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-6.8.0-pyha770c72_0.conda#4e9f59a060c3be52bc4ddc46ee9b6946 -https://conda.anaconda.org/conda-forge/noarch/importlib_resources-6.1.0-pyhd8ed1ab_0.conda#48b0d98e0c0ec810d3ccc2a0926c8c0e -https://conda.anaconda.org/conda-forge/noarch/isodate-0.6.1-pyhd8ed1ab_0.tar.bz2#4a62c93c1b5c0b920508ae3fd285eaf5 -https://conda.anaconda.org/conda-forge/noarch/janus-1.0.0-pyhd8ed1ab_0.tar.bz2#304b5bce5a9b3590d825ffd85ac63471 -https://conda.anaconda.org/conda-forge/noarch/jaraco.classes-3.3.0-pyhd8ed1ab_0.conda#e9f79248d30e942f7c358ff21a1790f5 -https://conda.anaconda.org/conda-forge/noarch/jedi-0.19.1-pyhd8ed1ab_0.conda#81a3be0b2023e1ea8555781f0ad904a2 -https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.2-pyhd8ed1ab_1.tar.bz2#c8490ed5c70966d232fdd389d0dbed37 -https://conda.anaconda.org/conda-forge/noarch/joblib-1.3.2-pyhd8ed1ab_0.conda#4da50d410f553db77e62ab62ffaa1abc -https://conda.anaconda.org/conda-forge/noarch/jsonlines-4.0.0-pyhd8ed1ab_0.conda#df32eb56c2a48a5ca9465aef29dd46bc -https://conda.anaconda.org/conda-forge/noarch/jupyterlab_pygments-0.2.2-pyhd8ed1ab_0.tar.bz2#243f63592c8e449f40cd42eb5cf32f40 -https://conda.anaconda.org/conda-forge/noarch/latexcodec-2.0.1-pyh9f0ad1d_0.tar.bz2#8d67904973263afd2985ba56aa2d6bb4 -https://conda.anaconda.org/conda-forge/win-64/lcms2-2.15-h67d730c_3.conda#f92e86636451e3f6cea03e395346fa90 -https://conda.anaconda.org/conda-forge/win-64/libblas-3.9.0-19_win64_openblas.conda#81181412aebe539308e8e17fdf308893 -https://conda.anaconda.org/conda-forge/win-64/libgoogle-cloud-2.12.0-h0a0a397_2.conda#7118be3d559211085bf62e0f08070e5b -https://conda.anaconda.org/conda-forge/win-64/libxcb-1.15-hcd874cb_0.conda#090d91b69396f14afef450c285f9758c -https://conda.anaconda.org/conda-forge/noarch/linear-tsv-1.1.0-py_1.tar.bz2#16491914064fdfe1b9a8fba94ac90e9a -https://conda.anaconda.org/conda-forge/win-64/lxml-4.9.3-py311h750ae06_1.conda#8b59b875b8660ffda9fb11651dc2b72d -https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_0.conda#93a8e71256479c62074356ef6ebf501b -https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.1.6-pyhd8ed1ab_0.tar.bz2#b21613793fcc81d944c76c9f2864a7de -https://conda.anaconda.org/conda-forge/noarch/nodeenv-1.8.0-pyhd8ed1ab_0.conda#2a75b296096adabbabadd5e9782e5fcc -https://conda.anaconda.org/conda-forge/win-64/openjpeg-2.5.0-h3d672ee_3.conda#45a9628a04efb6fc326fff0a8f47b799 -https://conda.anaconda.org/conda-forge/win-64/openpyxl-3.1.2-py311ha68e1ae_1.conda#a7dc958cb40e9301dfbb0ced0ebaf5ba -https://conda.anaconda.org/conda-forge/noarch/overrides-7.4.0-pyhd8ed1ab_0.conda#4625b7b01d7f4ac9c96300a5515acfaa -https://conda.anaconda.org/conda-forge/noarch/partd-1.4.1-pyhd8ed1ab_0.conda#acf4b7c0bcd5fa3b0e05801c4d2accd6 -https://conda.anaconda.org/conda-forge/noarch/pint-0.22-pyhd8ed1ab_1.conda#a719c3f3959c529e558e9ed9f98c3f30 -https://conda.anaconda.org/conda-forge/noarch/pip-23.3.1-pyhd8ed1ab_0.conda#2400c0b86889f43aa52067161e1fb108 -https://conda.anaconda.org/conda-forge/win-64/postgresql-16.0-hc80876b_1.conda#20a04feca16bfe981eccbfd25e38826b -https://conda.anaconda.org/conda-forge/win-64/proj-9.3.0-he13c7e8_2.conda#4e6d2a06874a1a6cd66e842d29bcd373 -https://conda.anaconda.org/conda-forge/win-64/protobuf-4.23.4-py311h72e314b_3.conda#df90aa07b66526a496ed8fbdfce09973 -https://conda.anaconda.org/conda-forge/noarch/pyasn1-modules-0.3.0-pyhd8ed1ab_0.conda#26db749166cdca55e5ef1ffdc7767d0e -https://conda.anaconda.org/conda-forge/noarch/pyproject-api-1.6.1-pyhd8ed1ab_0.conda#1815c7974568079cf384f012de5ea1b7 -https://conda.anaconda.org/conda-forge/noarch/pyproject_hooks-1.0.0-pyhd8ed1ab_0.conda#21de50391d584eb7f4441b9de1ad773f -https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyh0701188_6.tar.bz2#56cd9fe388baac0e90c7149cfac95b60 -https://conda.anaconda.org/conda-forge/noarch/pytest-7.4.2-pyhd8ed1ab_0.conda#6dd662ff5ac9a783e5c940ce9f3fe649 -https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.8.2-pyhd8ed1ab_0.tar.bz2#dd999d1cc9f79e67dbb855c8924c7984 -https://conda.anaconda.org/conda-forge/noarch/python-slugify-8.0.1-pyhd8ed1ab_2.conda#519897ff446e0dc056e12402e6785cd5 -https://conda.anaconda.org/conda-forge/noarch/pyu2f-0.1.5-pyhd8ed1ab_0.tar.bz2#caabbeaa83928d0c3e3949261daa18eb -https://conda.anaconda.org/conda-forge/noarch/pywin32-on-windows-0.1.0-pyh07e9846_2.tar.bz2#91733394059b880d9cc0d010c20abda0 -https://conda.anaconda.org/conda-forge/noarch/qtpy-2.4.0-pyhd8ed1ab_0.conda#a4c1fc5f8ef46ec8130defcaa2d322ea -https://conda.anaconda.org/conda-forge/noarch/referencing-0.30.2-pyhd8ed1ab_0.conda#a33161b983172ba6ef69d5fc850650cd -https://conda.anaconda.org/conda-forge/noarch/restructuredtext_lint-1.4.0-pyhd8ed1ab_0.tar.bz2#1f3c21740038aba9c174df58986bdccb -https://conda.anaconda.org/conda-forge/noarch/rfc3339-validator-0.1.4-pyhd8ed1ab_0.tar.bz2#fed45fc5ea0813240707998abe49f520 -https://conda.anaconda.org/conda-forge/noarch/rsa-4.9-pyhd8ed1ab_0.tar.bz2#03bf410858b2cefc267316408a77c436 -https://conda.anaconda.org/conda-forge/win-64/ruamel.yaml-0.17.39-py311ha68e1ae_0.conda#27c24841506e5ebb0c8fdb2b55f7b48c -https://conda.anaconda.org/conda-forge/noarch/send2trash-1.8.2-pyh08f2357_0.conda#c00d32dfa733d381b6a1908d0d67e0d7 -https://conda.anaconda.org/conda-forge/win-64/sqlalchemy-1.4.49-py311ha68e1ae_1.conda#b917e59c011d2d74ce82954f0536264e -https://conda.anaconda.org/conda-forge/noarch/terminado-0.17.0-pyh08f2357_0.tar.bz2#0152a609d5748ed9887d195b1e61a6c9 -https://conda.anaconda.org/conda-forge/noarch/tinycss2-1.2.1-pyhd8ed1ab_0.tar.bz2#7234c9eefff659501cd2fe0d2ede4d48 -https://conda.anaconda.org/conda-forge/noarch/tqdm-4.66.1-pyhd8ed1ab_0.conda#03c97908b976498dcae97eb4e4f3149c -https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.8.0-hd8ed1ab_0.conda#384462e63262a527bda564fa2d9126c0 -https://conda.anaconda.org/conda-forge/noarch/universal_pathlib-0.1.4-pyhd8ed1ab_0.conda#08ca974df312b574c4d6511426539a87 -https://conda.anaconda.org/conda-forge/win-64/watchdog-3.0.0-py311h1ea47a8_1.conda#dc9bf2e5cbb5288f126606e67b2b410a -https://conda.anaconda.org/conda-forge/win-64/yarl-1.9.2-py311ha68e1ae_1.conda#22c407c8d69c703bafef58fea04170a8 -https://conda.anaconda.org/conda-forge/noarch/addfips-0.4.0-pyhd8ed1ab_1.conda#cb434d01bfd3ba57c54a423f3773ffda -https://conda.anaconda.org/conda-forge/noarch/aniso8601-9.0.1-pyhd8ed1ab_0.tar.bz2#36fba1a639f2d24723c5480345b78553 -https://conda.anaconda.org/conda-forge/win-64/argon2-cffi-bindings-21.2.0-py311ha68e1ae_4.conda#e95c947541bf1cb821ea4a6bf7d5794c -https://conda.anaconda.org/conda-forge/noarch/arrow-1.3.0-pyhd8ed1ab_0.conda#b77d8c2313158e6e461ca0efb1c2c508 -https://conda.anaconda.org/conda-forge/noarch/async-timeout-4.0.3-pyhd8ed1ab_0.conda#3ce482ec3066e6d809dbbb1d1679f215 -https://conda.anaconda.org/conda-forge/win-64/aws-c-auth-0.7.4-hd571b1d_2.conda#dc358a3b620cf8e2040b52cbbf8ce128 -https://conda.anaconda.org/conda-forge/win-64/aws-c-mqtt-0.9.7-h37bb463_0.conda#b246cbafd99c20f851ee897349e239ee -https://conda.anaconda.org/conda-forge/noarch/branca-0.6.0-pyhd8ed1ab_0.tar.bz2#f4cc65697763ef8c2f7555f1ec355a6b -https://conda.anaconda.org/conda-forge/win-64/cairo-1.18.0-h1fef639_0.conda#b3fe2c6381ec74afe8128e16a11eee02 -https://conda.anaconda.org/conda-forge/noarch/click-default-group-1.2.4-pyhd8ed1ab_0.conda#7c2b6931f9b3548ed78478332095c3e9 -https://conda.anaconda.org/conda-forge/noarch/click-default-group-wheel-1.2.2-pyhd8ed1ab_0.tar.bz2#2228f2640491b5e9c03b6f6346cba887 -https://conda.anaconda.org/conda-forge/noarch/click-plugins-1.1.1-py_0.tar.bz2#4fd2c6b53934bd7d96d1f3fdaf99b79f -https://conda.anaconda.org/conda-forge/noarch/cligj-0.7.2-pyhd8ed1ab_1.tar.bz2#a29b7c141d6b2de4bb67788a5f107734 -https://conda.anaconda.org/conda-forge/win-64/cmarkgfm-0.8.0-py311ha68e1ae_3.conda#489e7c645da48b8c19f8232d70b45ec8 -https://conda.anaconda.org/conda-forge/noarch/coloredlogs-14.0-pyhd8ed1ab_3.tar.bz2#6b92f390b198cb631c95fd37097098c8 -https://conda.anaconda.org/conda-forge/noarch/croniter-2.0.1-pyhd8ed1ab_0.conda#f67f52c1f555785b86c3bd8e5de4c66f -https://conda.anaconda.org/conda-forge/win-64/cryptography-41.0.4-py311h28e9c30_0.conda#dce7f7b41c39193776231fc94db82b70 -https://conda.anaconda.org/conda-forge/win-64/fonttools-4.43.1-py311ha68e1ae_0.conda#64bb0eec43927cff8b5973ca4d81a1cc -https://conda.anaconda.org/conda-forge/noarch/fqdn-1.5.1-pyhd8ed1ab_0.tar.bz2#642d35437078749ef23a5dca2c9bb1f3 -https://conda.anaconda.org/conda-forge/win-64/geotiff-1.7.1-hcf4a93f_14.conda#ba4fadef391cfecb95ad9dc8617fe481 -https://conda.anaconda.org/conda-forge/noarch/gitpython-3.1.40-pyhd8ed1ab_0.conda#6bf74c3b7c13079a91d4bd3da51cefcf -https://conda.anaconda.org/conda-forge/win-64/google-crc32c-1.1.2-py311h48d9ab2_5.conda#30cd5bb2779032bce0bfc5d7909dbe36 -https://conda.anaconda.org/conda-forge/noarch/googleapis-common-protos-1.61.0-pyhd8ed1ab_0.conda#f315d7fdc1905dcc2e18a1c7bed22fa9 -https://conda.anaconda.org/conda-forge/noarch/gql-3.4.1-pyhd8ed1ab_0.conda#6ad94588f33ddb97175c7f22feef7d2c -https://conda.anaconda.org/conda-forge/noarch/graphql-relay-3.2.0-pyhd8ed1ab_0.tar.bz2#1b2b83e3528f8fb83007161eff51073d -https://conda.anaconda.org/conda-forge/noarch/grpcio-health-checking-1.57.0-pyhd8ed1ab_0.conda#c22fdc1bd41d6c71e0eb4da829d7b228 -https://conda.anaconda.org/conda-forge/noarch/httpcore-0.18.0-pyhd8ed1ab_0.conda#eb69a63c23bbda9aac55bc0c0c6144f9 -https://conda.anaconda.org/conda-forge/noarch/importlib_metadata-6.8.0-hd8ed1ab_0.conda#b279b07ce18058034e5b3606ba103a8b -https://conda.anaconda.org/conda-forge/noarch/jsonschema-specifications-2023.7.1-pyhd8ed1ab_0.conda#7c27ea1bdbe520bb830dcadd59f55cbf -https://conda.anaconda.org/conda-forge/noarch/jupyter_server_terminals-0.4.4-pyhd8ed1ab_1.conda#7c0965e1d4a0ee1529e8eaa03a78a5b3 -https://conda.anaconda.org/conda-forge/win-64/kealib-1.5.2-ha10e780_1.conda#b6e313824859a2408b77a0a3811a6311 -https://conda.anaconda.org/conda-forge/win-64/libcblas-3.9.0-19_win64_openblas.conda#93eaf217537f1f888ba3a4ca32bdb9c6 -https://conda.anaconda.org/conda-forge/win-64/liblapack-3.9.0-19_win64_openblas.conda#22bc513a008652a69dc30140f0beb27c -https://conda.anaconda.org/conda-forge/win-64/libnetcdf-4.9.2-nompi_h8284064_112.conda#d13288269ee4de9079261a31028f9954 -https://conda.anaconda.org/conda-forge/win-64/libspatialite-5.1.0-hbf340bc_0.conda#639d349f4837fba210a0796f76612b22 -https://conda.anaconda.org/conda-forge/noarch/mako-1.2.4-pyhd8ed1ab_0.tar.bz2#0d072f0edc017b6318dbab701e053f94 -https://conda.anaconda.org/conda-forge/noarch/pbr-5.11.1-pyhd8ed1ab_0.conda#5bde4ebca51438054099b9527c904ecb -https://conda.anaconda.org/conda-forge/win-64/pendulum-2.1.2-py311ha68e1ae_6.conda#ee60f68ee770644e21080d134d2327c1 -https://conda.anaconda.org/conda-forge/win-64/pillow-10.1.0-py311h4dd8a23_0.conda#c03c410ca23313c36381a128737ac25f -https://conda.anaconda.org/conda-forge/noarch/platformdirs-3.11.0-pyhd8ed1ab_0.conda#8f567c0a74aa44cf732f15773b4083b0 -https://conda.anaconda.org/conda-forge/noarch/pybtex-0.24.0-pyhd8ed1ab_2.tar.bz2#2099b86a7399c44c0c61cdb6de6915ba -https://conda.anaconda.org/conda-forge/win-64/pydantic-1.10.13-py311ha68e1ae_1.conda#4e47f37c85e6ff663dfc33940ead082f -https://conda.anaconda.org/conda-forge/win-64/pyproj-3.6.1-py311h517f58c_2.conda#6b149ee1b6d9577b9fc59a61176e78c4 -https://conda.anaconda.org/conda-forge/noarch/pytest-console-scripts-1.4.1-pyhd8ed1ab_0.conda#ee8808504c73665bed76e20ede28bd56 -https://conda.anaconda.org/conda-forge/noarch/pytest-cov-4.1.0-pyhd8ed1ab_0.conda#06eb685a3a0b146347a58dda979485da -https://conda.anaconda.org/conda-forge/noarch/pytest-mock-3.11.1-pyhd8ed1ab_0.conda#fcd2531bc3e492657aeb042349aeaf8a -https://conda.anaconda.org/conda-forge/noarch/python-build-1.0.3-pyhd8ed1ab_0.conda#d9ccabf228cb98419ca3d5694b25e1a2 -https://conda.anaconda.org/conda-forge/noarch/rich-13.6.0-pyhd8ed1ab_0.conda#3ca4829f40710f581ca1d76bc907e99f -https://conda.anaconda.org/conda-forge/noarch/stack_data-0.6.2-pyhd8ed1ab_0.conda#e7df0fdd404616638df5ece6e69ba7af -https://conda.anaconda.org/conda-forge/noarch/starlette-0.31.1-pyhd8ed1ab_0.conda#409034f0925a73b5f27ae71849e60034 -https://conda.anaconda.org/conda-forge/win-64/tiledb-2.16.3-hbf04793_3.conda#3afaf8882d4568eb9c91870102af1b37 -https://conda.anaconda.org/conda-forge/win-64/ukkonen-1.0.1-py311h005e61a_4.conda#d9988836cc20c90e05901ab05962f496 -https://conda.anaconda.org/conda-forge/noarch/urllib3-1.26.18-pyhd8ed1ab_0.conda#bf61cfd2a7f212efba378167a07d4a6a -https://conda.anaconda.org/conda-forge/win-64/uvicorn-0.23.2-py311h1ea47a8_1.conda#f063f3e5b4d6a4e882025004cac5594e -https://conda.anaconda.org/conda-forge/win-64/watchfiles-0.20.0-py311hc37eb10_2.conda#8b8e07ef1676aa02c803961fbe544ec9 -https://conda.anaconda.org/conda-forge/noarch/wcwidth-0.2.8-pyhd8ed1ab_0.conda#367386d2575a0e62412448eda1012efd -https://conda.anaconda.org/conda-forge/win-64/aiohttp-3.8.6-py311ha68e1ae_1.conda#a8bda5b5cee97b4308f140153201a5be -https://conda.anaconda.org/conda-forge/noarch/alembic-1.12.0-pyhd8ed1ab_0.conda#ba29026b587195548ef82444518061f7 -https://conda.anaconda.org/conda-forge/noarch/argon2-cffi-23.1.0-pyhd8ed1ab_0.conda#3afef1f55a1366b4d3b6a0d92e2235e4 -https://conda.anaconda.org/conda-forge/win-64/aws-c-s3-0.3.17-h263813f_4.conda#ccb51f2b0a3d38b127880fd044c86c59 -https://conda.anaconda.org/conda-forge/win-64/black-23.10.0-py311h1ea47a8_0.conda#074c6e734f76d312489369d52b534a24 -https://conda.anaconda.org/conda-forge/noarch/botocore-1.31.68-pyhd8ed1ab_0.conda#0bf56dadacce6f9218d88df71d3e7576 -https://conda.anaconda.org/conda-forge/noarch/dask-core-2023.10.0-pyhd8ed1ab_0.conda#6b415b2cd4a106b8eb1632be126ede81 -https://conda.anaconda.org/conda-forge/noarch/dnspython-2.4.2-pyhd8ed1ab_1.conda#b9657eab1e69207feba4f21fa1207b03 -https://conda.anaconda.org/conda-forge/noarch/google-resumable-media-2.6.0-pyhd8ed1ab_0.conda#74fd9d08866e60fc412abc8dd7c5486c -https://conda.anaconda.org/conda-forge/noarch/graphene-3.3-pyhd8ed1ab_0.conda#ed2ae94977dfd96566e6eaf373216728 -https://conda.anaconda.org/conda-forge/noarch/grpcio-status-1.57.0-pyhd8ed1ab_0.conda#288d9a5edd2619ffd7592ef273b663e3 -https://conda.anaconda.org/conda-forge/noarch/httpx-0.25.0-pyhd8ed1ab_0.conda#37c6a92b2493f801068cccdbbcfe4201 -https://conda.anaconda.org/conda-forge/noarch/identify-2.5.30-pyhd8ed1ab_0.conda#b7a2e3bb89bda8c69839485c20aabadf -https://conda.anaconda.org/conda-forge/noarch/isoduration-20.11.0-pyhd8ed1ab_0.tar.bz2#4cb68948e0b8429534380243d063a27a -https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.19.1-pyhd8ed1ab_0.conda#78aff5d2af74e6537c1ca73017f01f4f -https://conda.anaconda.org/conda-forge/win-64/jupyter_core-5.4.0-py311h1ea47a8_0.conda#f8dfdabf1155bc32418a9d131ab9256c -https://conda.anaconda.org/conda-forge/win-64/keyring-24.2.0-py311h1ea47a8_1.conda#d48701e08cf146d16560cbcf52e27d4d -https://conda.anaconda.org/conda-forge/win-64/numpy-1.24.4-py311h0b4df5a_0.conda#aa4b66d83f3c8768805d365a610828bf -https://conda.anaconda.org/conda-forge/noarch/oauthlib-3.2.2-pyhd8ed1ab_0.tar.bz2#8f882b197fd9c4941a787926baea4868 -https://conda.anaconda.org/conda-forge/win-64/poppler-23.10.0-hc2f3c52_0.conda#3164446cb6dd3fa81b09307cde29778b -https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.39-pyha770c72_0.conda#a4986c6bb5b0d05a38855b0880a5f425 -https://conda.anaconda.org/conda-forge/win-64/pybtex-docutils-1.0.3-py311h1ea47a8_1.conda#3383f40e35e6273793da438aa6426dad -https://conda.anaconda.org/conda-forge/noarch/pyopenssl-23.2.0-pyhd8ed1ab_1.conda#34f7d568bf59d18e3fef8c405cbece21 -https://conda.anaconda.org/conda-forge/noarch/readme_renderer-42.0-pyhd8ed1ab_0.conda#fdc16f5dc3a911d8f43f64f814a45961 -https://conda.anaconda.org/conda-forge/noarch/requests-2.31.0-pyhd8ed1ab_0.conda#a30144e4156cdbb236f99ebb49828f8b -https://conda.anaconda.org/conda-forge/noarch/stevedore-5.1.0-pyhd8ed1ab_0.conda#55864c50fd9354fd19f6a5078a068170 -https://conda.anaconda.org/conda-forge/noarch/typer-0.9.0-pyhd8ed1ab_0.conda#5030a13b2fe5e143d5956d4943d3018f -https://conda.anaconda.org/conda-forge/win-64/uvicorn-standard-0.23.2-h1ea47a8_1.conda#57bd180f629ceb65953cbfb1d3e837b0 -https://conda.anaconda.org/conda-forge/noarch/virtualenv-20.24.4-pyhd8ed1ab_0.conda#c3feaf947264a59a125e8c26e98c3c5a -https://conda.anaconda.org/conda-forge/noarch/arelle-release-2.16.1-pyhd8ed1ab_0.conda#8b03e47972a8e0759dce09378c962d3d -https://conda.anaconda.org/conda-forge/win-64/aws-crt-cpp-0.24.2-h84553ab_2.conda#46a2f92305c2e25dc0de738063c771df -https://conda.anaconda.org/conda-forge/win-64/bottleneck-1.3.7-py311h59ca53f_1.conda#6458e99be91d0d38469de5e31b1e4f72 -https://conda.anaconda.org/conda-forge/noarch/cachecontrol-0.13.1-pyhd8ed1ab_0.conda#174bd699bb5aa9e2622eb4b288276ff8 -https://conda.anaconda.org/conda-forge/win-64/contourpy-1.1.1-py311h005e61a_1.conda#12947dd3b9884bf165cb53cf93c69799 -https://conda.anaconda.org/conda-forge/noarch/dagster-1.5.3-pyhd8ed1ab_1.conda#269916d868c11d9790d340a6587708bb -https://conda.anaconda.org/conda-forge/noarch/datasette-0.64.4-pyhd8ed1ab_1.conda#cd1207af03052f6b81906e1a914ad3c5 -https://conda.anaconda.org/conda-forge/noarch/doc8-1.1.1-pyhd8ed1ab_0.conda#5e9e17751f19d03c4034246de428582e -https://conda.anaconda.org/conda-forge/noarch/email-validator-2.0.0.post2-pyhd8ed1ab_0.conda#af9f5d81309e51c05b5964f9573c2cc0 -https://conda.anaconda.org/conda-forge/noarch/ensureconda-1.4.3-pyhd8ed1ab_0.tar.bz2#c99ae3abf501990769047b4b40a98f17 -https://conda.anaconda.org/conda-forge/noarch/folium-0.14.0-pyhd8ed1ab_0.conda#48c8bb19df0d0268f1a9d30ffc56c5b0 -https://conda.anaconda.org/conda-forge/noarch/frictionless-4.40.8-pyh6c4a22f_0.tar.bz2#d2791ef8f6c1252aa8d2e2001a603815 -https://conda.anaconda.org/conda-forge/noarch/google-auth-2.23.3-pyhca7485f_0.conda#79faaf9cd0e5114c19253552d8d92872 -https://conda.anaconda.org/conda-forge/win-64/h3-py-3.7.6-py311h12c1d0e_1.conda#676cca90c6a6a536adfb807ade91d81d -https://conda.anaconda.org/conda-forge/noarch/jsonschema-with-format-nongpl-4.19.1-pyhd8ed1ab_0.conda#daca0665e6fe8a376e48b9f0b5865326 -https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.4.0-pyhd8ed1ab_0.conda#554496685357ab0d69676cab8e8fb594 -https://conda.anaconda.org/conda-forge/win-64/libgdal-3.7.2-h3217549_7.conda#dff76d7dd6e917d7909e73f806a8cf91 -https://conda.anaconda.org/conda-forge/noarch/nbformat-5.9.2-pyhd8ed1ab_0.conda#61ba076de6530d9301a0053b02f093d2 -https://conda.anaconda.org/conda-forge/win-64/numba-0.57.1-py311h2c0921f_0.conda#bf39791c3b123a7d0410a350c308d4e3 -https://conda.anaconda.org/conda-forge/win-64/numexpr-2.8.7-py311h0aebda5_104.conda#4031a6a48e58045f6e5a1e9b105a2c70 -https://conda.anaconda.org/conda-forge/win-64/pandas-2.1.1-py311hf63dbb6_1.conda#47f0674bbd53399ae4f9c4f0e35faa01 -https://conda.anaconda.org/conda-forge/noarch/pre-commit-3.5.0-pyha770c72_0.conda#964e3d762e427661c59263435a14c492 -https://conda.anaconda.org/conda-forge/noarch/prompt_toolkit-3.0.39-hd8ed1ab_0.conda#4bbbe67d5df19db30f04b8e344dc9976 -https://conda.anaconda.org/conda-forge/noarch/readthedocs-sphinx-ext-2.2.3-pyhd8ed1ab_0.conda#6bc1a00f5502f9ed13526e4c6bea6900 -https://conda.anaconda.org/conda-forge/noarch/requests-oauthlib-1.3.1-pyhd8ed1ab_0.tar.bz2#61b279f051eef9c89d58f4d813e75e04 -https://conda.anaconda.org/conda-forge/noarch/requests-toolbelt-0.10.1-pyhd8ed1ab_0.tar.bz2#a4cd20af9711434f89d1ec0d2b3ae6ba -https://conda.anaconda.org/conda-forge/noarch/responses-0.23.1-pyhd8ed1ab_0.conda#bf15c93720dfea117aaea3155cbebce5 -https://conda.anaconda.org/conda-forge/noarch/s3transfer-0.7.0-pyhd8ed1ab_0.conda#5fe335cb1420d13a818fe01310af2b80 -https://conda.anaconda.org/conda-forge/win-64/scipy-1.11.3-py311h0b4df5a_1.conda#67910f5db4ee7b8bbf39250c167d3a34 -https://conda.anaconda.org/conda-forge/win-64/shapely-2.0.2-py311h72efec2_0.conda#617eaf53ee620cdb0f3b5928c054e6af -https://conda.anaconda.org/conda-forge/noarch/tox-4.11.3-pyhd8ed1ab_0.conda#9ad1597140aa28f50fee5567775057dc -https://conda.anaconda.org/conda-forge/win-64/aws-sdk-cpp-1.11.156-h660de7d_4.conda#410e2dda384dbafbddfe54684823f44d -https://conda.anaconda.org/conda-forge/noarch/boto3-1.28.68-pyhd8ed1ab_0.conda#4b81c7adfe8551654cf528e3d708b326 -https://conda.anaconda.org/conda-forge/noarch/cachecontrol-with-filecache-0.13.1-pyhd8ed1ab_0.conda#8c4781ca0893cff3a64423954ce234a1 -https://conda.anaconda.org/conda-forge/noarch/catalystcoop.ferc_xbrl_extractor-1.1.1-pyhd8ed1ab_0.conda#d40f9751f064b3180e93aadb683bb2b7 -https://conda.anaconda.org/conda-forge/win-64/gdal-3.7.2-py311h9601e46_7.conda#8c31f70cd237803999dfcd12bc0ea388 -https://conda.anaconda.org/conda-forge/noarch/geopandas-base-0.14.0-pyha770c72_1.conda#614a383c5f4350e0606689f54c6497b1 -https://conda.anaconda.org/conda-forge/noarch/google-api-core-2.12.0-pyhd8ed1ab_0.conda#f978eac45a312816fffd61eb65f5ed0e -https://conda.anaconda.org/conda-forge/noarch/google-auth-oauthlib-1.1.0-pyhd8ed1ab_0.conda#ffa1e2fd52bc00ec0fc5680a2f4bd167 -https://conda.anaconda.org/conda-forge/noarch/gql-with-requests-3.4.1-pyhd8ed1ab_0.conda#1814ff1e969b01d3570027efcf4f163a -https://conda.anaconda.org/conda-forge/noarch/ipython-8.16.1-pyh5737063_0.conda#1f0a208b45d0bf8d1cf09d2f2b549ab5 -https://conda.anaconda.org/conda-forge/noarch/jupyter_events-0.8.0-pyhd8ed1ab_0.conda#04272d87d3e06c2e26af5e2d4b0e0ad8 -https://conda.anaconda.org/conda-forge/win-64/matplotlib-base-3.8.0-py311h6e989c2_2.conda#323c7ace8922d5568307c4cefc3c3a51 -https://conda.anaconda.org/conda-forge/noarch/nbclient-0.8.0-pyhd8ed1ab_0.conda#e78da91cf428faaf05701ce8cc8f2f9b -https://conda.anaconda.org/conda-forge/win-64/scikit-learn-1.3.1-py311h142b183_1.conda#3d404996b0f7e1117a980e7f0a22acdf -https://conda.anaconda.org/conda-forge/win-64/timezonefinder-6.2.0-py311ha68e1ae_1.conda#822969ec0707deda3135fb9e0db4767b -https://conda.anaconda.org/conda-forge/noarch/twine-4.0.2-pyhd8ed1ab_0.conda#e3a16168d6b9deefb8c1caa7943fb49e -https://conda.anaconda.org/conda-forge/noarch/conda-lock-2.4.0-pyhd8ed1ab_0.conda#edcd5c7565a5cd1c7862a911a899fb20 -https://conda.anaconda.org/conda-forge/noarch/dagster-graphql-1.5.3-pyhd8ed1ab_1.conda#9c67172e4c79a12d965f17d650b5336b -https://conda.anaconda.org/conda-forge/win-64/fiona-1.9.5-py311h4e4dc46_0.conda#aaed872a9994c6c92cc9c5ffacbf6dc0 -https://conda.anaconda.org/conda-forge/noarch/google-cloud-core-2.3.3-pyhd8ed1ab_0.conda#a26b1fa8555cc1d2f0f7ff9985303e66 -https://conda.anaconda.org/conda-forge/noarch/ipdb-0.13.13-pyhd8ed1ab_0.conda#86baea403007ad4898d85c897c80b758 -https://conda.anaconda.org/conda-forge/noarch/ipykernel-6.25.2-pyh60829e3_0.conda#387f16a39a2e57bff9de9bc0216baa09 -https://conda.anaconda.org/conda-forge/noarch/ipywidgets-8.1.1-pyhd8ed1ab_0.conda#2605fae5ee27100e5f10037baebf4d41 -https://conda.anaconda.org/conda-forge/win-64/libarrow-13.0.0-hf069bef_7_cpu.conda#c72a8472e655138afaaea6b7d4a51fe5 -https://conda.anaconda.org/conda-forge/noarch/mapclassify-2.6.1-pyhd8ed1ab_0.conda#6aceae1ad4f16cf7b73ee04189947f98 -https://conda.anaconda.org/conda-forge/noarch/nbconvert-core-7.9.2-pyhd8ed1ab_0.conda#01e4314c780ca73759c694ce3ece281f -https://conda.anaconda.org/conda-forge/noarch/recordlinkage-0.16-pyhd8ed1ab_0.conda#948205d11a8b036e065c46462db0632a -https://conda.anaconda.org/conda-forge/noarch/tabulator-1.53.5-pyhd8ed1ab_0.tar.bz2#c967687222ad29a74f68e99698d08d30 -https://conda.anaconda.org/conda-forge/noarch/dagster-webserver-1.5.3-pyhd8ed1ab_1.conda#821b36bfafdd03da8af532b6a9518fe9 -https://conda.anaconda.org/conda-forge/noarch/geopandas-0.14.0-pyhd8ed1ab_1.conda#d3617cddba7ea3dd3234d28faa3bc3b4 -https://conda.anaconda.org/conda-forge/noarch/google-cloud-storage-2.12.0-pyhca7485f_0.conda#fea9a0827d3285450ea0c4d4b78b2664 -https://conda.anaconda.org/conda-forge/noarch/jupyter_console-6.6.3-pyhd8ed1ab_0.conda#7cf6f52a66f8e3cd9d8b6c231262dcab -https://conda.anaconda.org/conda-forge/noarch/jupyter_server-2.8.0-pyhd8ed1ab_0.conda#a750b082b9319e96556df4ee6023b068 -https://conda.anaconda.org/conda-forge/noarch/nbconvert-pandoc-7.9.2-pyhd8ed1ab_0.conda#1ad46253f2eb46fb8c9b2c22b7ca012f -https://conda.anaconda.org/conda-forge/win-64/pyarrow-13.0.0-py311h6a6099b_7_cpu.conda#6a7087cbc7dcd97629d04b8e26f42a02 -https://conda.anaconda.org/conda-forge/noarch/qtconsole-base-5.4.4-pyha770c72_0.conda#08961a76f2a4e2ebdb9b56f451beaa45 -https://conda.anaconda.org/conda-forge/noarch/tableschema-1.19.3-pyh9f0ad1d_0.tar.bz2#57f70b39e74b4af667775c0a07f35cc3 -https://conda.anaconda.org/conda-forge/noarch/datapackage-1.15.2-pyh44b312d_0.tar.bz2#3f1a6895ab9c423cf59de7c46e56a824 -https://conda.anaconda.org/conda-forge/noarch/gcsfs-2023.9.2-pyhd8ed1ab_0.conda#c9deedf93585c3d5ce5525a89bf7287e -https://conda.anaconda.org/conda-forge/noarch/jupyter-lsp-2.2.0-pyhd8ed1ab_0.conda#38589f4104d11f2a59ff01a9f4e3bfb3 -https://conda.anaconda.org/conda-forge/noarch/jupyter-resource-usage-1.0.1-pyhd8ed1ab_0.conda#b079fd1b0ee75199a042537d036b496f -https://conda.anaconda.org/conda-forge/noarch/jupyterlab_server-2.25.0-pyhd8ed1ab_0.conda#a52834fa7e3d12abc5efdf06b2097a05 -https://conda.anaconda.org/conda-forge/noarch/nbconvert-7.9.2-pyhd8ed1ab_0.conda#16ccaddfcfa0a1a606a9ecf6a52d6c11 -https://conda.anaconda.org/conda-forge/noarch/notebook-shim-0.2.3-pyhd8ed1ab_0.conda#67e0fe74c156267d9159e9133df7fd37 -https://conda.anaconda.org/conda-forge/noarch/jupyterlab-4.0.7-pyhd8ed1ab_0.conda#80318d83f33b3bf4e57b8533b7a6691d -https://conda.anaconda.org/conda-forge/noarch/notebook-7.0.6-pyhd8ed1ab_0.conda#d60881c78a54cbf8042ae719f1f77a50 -https://conda.anaconda.org/conda-forge/noarch/jupyter-1.0.0-pyhd8ed1ab_10.conda#056b8cc3d9b03f54fc49e6d70d7dc359 -https://conda.anaconda.org/conda-forge/noarch/sphinx-autoapi-3.0.0-pyhd8ed1ab_0.conda#736b53813c2b9582b1345462d8ca66e7 -https://conda.anaconda.org/conda-forge/noarch/sphinx-basic-ng-1.0.0b2-pyhd8ed1ab_1.conda#a631f5c7b7f5045448f966ad71aa2881 -https://conda.anaconda.org/conda-forge/noarch/furo-2023.9.10-pyhd8ed1ab_0.conda#0dcfacf6d3e49f2957c69c81356cf892 -https://conda.anaconda.org/conda-forge/noarch/sphinx-issues-1.2.0-py_0.tar.bz2#2d5c0dddca9bb724dcf5a3fb295a2266 -https://conda.anaconda.org/conda-forge/noarch/sphinx-reredirects-0.1.2-pyhd8ed1ab_0.conda#30e618adaaf11aa4a98912913c62a12b -https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-applehelp-1.0.7-pyhd8ed1ab_0.conda#aebfabcb60c33a89c1f9290cab49bc93 -https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-bibtex-2.6.1-pyhd8ed1ab_1.conda#109cf3a7c844834267057e80b4f4eae3 -https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-devhelp-1.0.5-pyhd8ed1ab_0.conda#ebf08f5184d8eaa486697bc060031953 -https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-htmlhelp-2.0.4-pyhd8ed1ab_0.conda#a9a89000dfd19656ad004b937eeb6828 -https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-qthelp-1.0.6-pyhd8ed1ab_0.conda#cf5c9649272c677a964a7313279e3a9b -https://conda.anaconda.org/conda-forge/noarch/sphinx-7.2.6-pyhd8ed1ab_0.conda#bbfd1120d1824d2d073bc65935f0e4c0 -https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-serializinghtml-1.1.9-pyhd8ed1ab_0.conda#0612e497d7860728f2cda421ea2aec09 diff --git a/environments/conda-win-64.lock.yml b/environments/conda-win-64.lock.yml index d49b2daacc..78ab51d00e 100644 --- a/environments/conda-win-64.lock.yml +++ b/environments/conda-win-64.lock.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: win-64 -# input_hash: b88fac7d018b2ad0c30bd9b3df8c0861aa204c5633d40ec0a71d1fbff60e0086 +# input_hash: 5342803a78bc96b9effde36098e7abbaae7dbed8a84c02e4a68e8154592dba13 channels: - conda-forge @@ -34,7 +34,7 @@ dependencies: - vs2015_runtime=14.36.32532=h05e6639_17 - aws-c-common=0.9.3=hcfcfb64_0 - bzip2=1.0.8=h8ffe710_4 - - c-ares=1.20.1=hcfcfb64_0 + - c-ares=1.20.1=hcfcfb64_1 - geos=3.12.0=h1537add_0 - icu=73.2=h63175ca_0 - lerc=4.0.0=h63175ca_0 @@ -56,7 +56,7 @@ dependencies: - lzo=2.10=he774522_1000 - m2w64-gcc-libgfortran=5.3.0=6 - openmp=5.0.0=vc14_1 - - openssl=3.1.3=hcfcfb64_0 + - openssl=3.1.4=hcfcfb64_0 - pixman=0.42.2=h63175ca_0 - re2=2023.03.02=hd4eee63_0 - snappy=1.1.10=hfb803bf_0 @@ -87,7 +87,7 @@ dependencies: - pcre2=10.40=h17e33f8_0 - python=3.11.6=h2628c8c_0_cpython - sqlite=3.43.2=hcfcfb64_0 - - zeromq=4.3.4=h0e60522_1 + - zeromq=4.3.5=h63175ca_0 - zlib=1.2.13=hcfcfb64_5 - zstd=1.5.5=h12be248_0 - aiofiles=23.1.0=pyhd8ed1ab_1 @@ -105,19 +105,19 @@ dependencies: - brotli-bin=1.1.0=hcfcfb64_1 - brotli-python=1.1.0=py311h12c1d0e_1 - cached_property=1.5.2=pyha770c72_1 - - cachetools=5.3.1=pyhd8ed1ab_0 + - cachetools=5.3.2=pyhd8ed1ab_0 - cachy=0.3.0=pyhd8ed1ab_1 - catalystcoop.dbfread=3.0.0=py_0 - cchardet=2.1.7=py311h12c1d0e_5 - certifi=2023.7.22=pyhd8ed1ab_0 - cfgv=3.3.1=pyhd8ed1ab_0 - chardet=5.2.0=py311h1ea47a8_1 - - charset-normalizer=3.3.0=pyhd8ed1ab_0 + - charset-normalizer=3.3.1=pyhd8ed1ab_0 - cloudpickle=3.0.0=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_0 - crashtest=0.4.1=pyhd8ed1ab_0 - cycler=0.12.1=pyhd8ed1ab_0 - - dagster-pipes=1.5.3=pyhd8ed1ab_1 + - dagster-pipes=1.5.4=pyhd8ed1ab_1 - dataclasses=0.8=pyhc8e2a94_3 - debugpy=1.8.0=py311h12c1d0e_1 - decorator=5.1.1=pyhd8ed1ab_0 @@ -133,7 +133,7 @@ dependencies: - freetype=2.12.1=hdaf720e_2 - frozenlist=1.4.0=py311ha68e1ae_1 - fsspec=2023.9.2=pyh1a96a4e_0 - - greenlet=3.0.0=py311h12c1d0e_1 + - greenlet=3.0.1=py311h12c1d0e_0 - hpack=4.0.0=pyh9f0ad1d_0 - httptools=0.6.1=py311ha68e1ae_0 - hupper=1.12=pyhd8ed1ab_0 @@ -174,7 +174,7 @@ dependencies: - munkres=1.1.4=pyh9f0ad1d_0 - mypy_extensions=1.0.0=pyha770c72_0 - nest-asyncio=1.5.8=pyhd8ed1ab_0 - - networkx=3.1=pyhd8ed1ab_0 + - networkx=3.2=pyhd8ed1ab_1 - nh3=0.2.14=py311h633b200_1 - orc=1.9.0=h8dbeef6_2 - packaging=23.2=pyhd8ed1ab_0 @@ -210,17 +210,17 @@ dependencies: - pywinpty=2.0.12=py311h12c1d0e_0 - pyxlsb=1.0.10=pyhd8ed1ab_0 - pyyaml=6.0.1=py311ha68e1ae_1 - - pyzmq=25.1.1=py311h7b3f143_1 + - pyzmq=25.1.1=py311h9250fbb_2 - regex=2023.10.3=py311ha68e1ae_0 - rfc3986=2.0.0=pyhd8ed1ab_0 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - rpds-py=0.10.6=py311hc37eb10_0 - rtree=1.1.0=py311hcacb13a_0 - ruamel.yaml.clib=0.2.7=py311ha68e1ae_2 - - ruff=0.1.1=py311hc14472d_0 + - ruff=0.1.2=py311hc14472d_0 - setuptools=68.2.2=pyhd8ed1ab_0 - - shellingham=1.5.3=pyhd8ed1ab_0 - - simpleeval=0.9.13=py311ha68e1ae_1 + - shellingham=1.5.4=pyhd8ed1ab_0 + - simpleeval=0.9.13=pyhd8ed1ab_1 - six=1.16.0=pyh6c4a22f_0 - smmap=5.0.0=pyhd8ed1ab_0 - sniffio=1.3.0=pyhd8ed1ab_0 @@ -237,7 +237,7 @@ dependencies: - toolz=0.12.0=pyhd8ed1ab_0 - toposort=1.10=pyhd8ed1ab_0 - tornado=6.3.3=py311ha68e1ae_1 - - traitlets=5.11.2=pyhd8ed1ab_0 + - traitlets=5.12.0=pyhd8ed1ab_0 - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 - types-pyyaml=6.0.12.12=pyhd8ed1ab_0 - typing_extensions=4.8.0=pyha770c72_0 @@ -266,7 +266,7 @@ dependencies: - async-lru=2.0.4=pyhd8ed1ab_0 - aws-c-event-stream=0.3.2=hef061cf_2 - aws-c-http=0.7.13=h064cb6d_2 - - babel=2.13.0=pyhd8ed1ab_0 + - babel=2.13.1=pyhd8ed1ab_0 - backports.functools_lru_cache=1.6.5=pyhd8ed1ab_0 - beautifulsoup4=4.12.2=pyha770c72_0 - bleach=6.1.0=pyhd8ed1ab_0 @@ -318,20 +318,19 @@ dependencies: - proj=9.3.0=he13c7e8_2 - protobuf=4.23.4=py311h72e314b_3 - pyasn1-modules=0.3.0=pyhd8ed1ab_0 - - pyproject-api=1.6.1=pyhd8ed1ab_0 - pyproject_hooks=1.0.0=pyhd8ed1ab_0 - pysocks=1.7.1=pyh0701188_6 - - pytest=7.4.2=pyhd8ed1ab_0 + - pytest=7.4.3=pyhd8ed1ab_0 - python-dateutil=2.8.2=pyhd8ed1ab_0 - python-slugify=8.0.1=pyhd8ed1ab_2 - pyu2f=0.1.5=pyhd8ed1ab_0 - pywin32-on-windows=0.1.0=pyh07e9846_2 - - qtpy=2.4.0=pyhd8ed1ab_0 + - qtpy=2.4.1=pyhd8ed1ab_0 - referencing=0.30.2=pyhd8ed1ab_0 - restructuredtext_lint=1.4.0=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - rsa=4.9=pyhd8ed1ab_0 - - ruamel.yaml=0.17.39=py311ha68e1ae_0 + - ruamel.yaml=0.18.2=py311ha68e1ae_0 - send2trash=1.8.2=pyh08f2357_0 - sqlalchemy=1.4.49=py311ha68e1ae_1 - terminado=0.17.0=pyh08f2357_0 @@ -357,7 +356,7 @@ dependencies: - cmarkgfm=0.8.0=py311ha68e1ae_3 - coloredlogs=14.0=pyhd8ed1ab_3 - croniter=2.0.1=pyhd8ed1ab_0 - - cryptography=41.0.4=py311h28e9c30_0 + - cryptography=41.0.5=py311h28e9c30_0 - fonttools=4.43.1=py311ha68e1ae_0 - fqdn=1.5.1=pyhd8ed1ab_0 - geotiff=1.7.1=hcf4a93f_14 @@ -383,10 +382,10 @@ dependencies: - platformdirs=3.11.0=pyhd8ed1ab_0 - pybtex=0.24.0=pyhd8ed1ab_2 - pydantic=1.10.13=py311ha68e1ae_1 - - pyproj=3.6.1=py311h517f58c_2 + - pyproj=3.6.1=py311h517f58c_3 - pytest-console-scripts=1.4.1=pyhd8ed1ab_0 - pytest-cov=4.1.0=pyhd8ed1ab_0 - - pytest-mock=3.11.1=pyhd8ed1ab_0 + - pytest-mock=3.12.0=pyhd8ed1ab_0 - python-build=1.0.3=pyhd8ed1ab_0 - rich=13.6.0=pyhd8ed1ab_0 - stack_data=0.6.2=pyhd8ed1ab_0 @@ -402,7 +401,7 @@ dependencies: - argon2-cffi=23.1.0=pyhd8ed1ab_0 - aws-c-s3=0.3.17=h263813f_4 - black=23.10.0=py311h1ea47a8_0 - - botocore=1.31.68=pyhd8ed1ab_0 + - botocore=1.31.70=pyhd8ed1ab_0 - dask-core=2023.10.0=pyhd8ed1ab_0 - dnspython=2.4.2=pyhd8ed1ab_1 - google-resumable-media=2.6.0=pyhd8ed1ab_0 @@ -425,23 +424,23 @@ dependencies: - stevedore=5.1.0=pyhd8ed1ab_0 - typer=0.9.0=pyhd8ed1ab_0 - uvicorn-standard=0.23.2=h1ea47a8_1 - - virtualenv=20.24.4=pyhd8ed1ab_0 - - arelle-release=2.16.1=pyhd8ed1ab_0 + - virtualenv=20.24.6=pyhd8ed1ab_0 + - arelle-release=2.16.3=pyhd8ed1ab_0 - aws-crt-cpp=0.24.2=h84553ab_2 - bottleneck=1.3.7=py311h59ca53f_1 - cachecontrol=0.13.1=pyhd8ed1ab_0 - contourpy=1.1.1=py311h005e61a_1 - - dagster=1.5.3=pyhd8ed1ab_1 + - dagster=1.5.4=pyhd8ed1ab_1 - datasette=0.64.4=pyhd8ed1ab_1 - doc8=1.1.1=pyhd8ed1ab_0 - - email-validator=2.0.0.post2=pyhd8ed1ab_0 + - email-validator=2.1.0.post1=pyhd8ed1ab_0 - ensureconda=1.4.3=pyhd8ed1ab_0 - folium=0.14.0=pyhd8ed1ab_0 - frictionless=4.40.8=pyh6c4a22f_0 - google-auth=2.23.3=pyhca7485f_0 - h3-py=3.7.6=py311h12c1d0e_1 - jsonschema-with-format-nongpl=4.19.1=pyhd8ed1ab_0 - - jupyter_client=8.4.0=pyhd8ed1ab_0 + - jupyter_client=8.5.0=pyhd8ed1ab_0 - libgdal=3.7.2=h3217549_7 - nbformat=5.9.2=pyhd8ed1ab_0 - numba=0.57.1=py311h2c0921f_0 @@ -456,9 +455,8 @@ dependencies: - s3transfer=0.7.0=pyhd8ed1ab_0 - scipy=1.11.3=py311h0b4df5a_1 - shapely=2.0.2=py311h72efec2_0 - - tox=4.11.3=pyhd8ed1ab_0 - aws-sdk-cpp=1.11.156=h660de7d_4 - - boto3=1.28.68=pyhd8ed1ab_0 + - boto3=1.28.70=pyhd8ed1ab_0 - cachecontrol-with-filecache=0.13.1=pyhd8ed1ab_0 - catalystcoop.ferc_xbrl_extractor=1.1.1=pyhd8ed1ab_0 - gdal=3.7.2=py311h9601e46_7 @@ -470,26 +468,26 @@ dependencies: - jupyter_events=0.8.0=pyhd8ed1ab_0 - matplotlib-base=3.8.0=py311h6e989c2_2 - nbclient=0.8.0=pyhd8ed1ab_0 - - scikit-learn=1.3.1=py311h142b183_1 + - scikit-learn=1.3.2=py311h142b183_1 - timezonefinder=6.2.0=py311ha68e1ae_1 - twine=4.0.2=pyhd8ed1ab_0 - - conda-lock=2.4.0=pyhd8ed1ab_0 - - dagster-graphql=1.5.3=pyhd8ed1ab_1 + - conda-lock=2.4.1=pyhd8ed1ab_0 + - dagster-graphql=1.5.4=pyhd8ed1ab_1 - fiona=1.9.5=py311h4e4dc46_0 - google-cloud-core=2.3.3=pyhd8ed1ab_0 - ipdb=0.13.13=pyhd8ed1ab_0 - - ipykernel=6.25.2=pyh60829e3_0 + - ipykernel=6.26.0=pyha63f2e9_0 - ipywidgets=8.1.1=pyhd8ed1ab_0 - libarrow=13.0.0=hf069bef_7_cpu - mapclassify=2.6.1=pyhd8ed1ab_0 - nbconvert-core=7.9.2=pyhd8ed1ab_0 - recordlinkage=0.16=pyhd8ed1ab_0 - tabulator=1.53.5=pyhd8ed1ab_0 - - dagster-webserver=1.5.3=pyhd8ed1ab_1 + - dagster-webserver=1.5.4=pyhd8ed1ab_1 - geopandas=0.14.0=pyhd8ed1ab_1 - google-cloud-storage=2.12.0=pyhca7485f_0 - jupyter_console=6.6.3=pyhd8ed1ab_0 - - jupyter_server=2.8.0=pyhd8ed1ab_0 + - jupyter_server=2.9.1=pyhd8ed1ab_0 - nbconvert-pandoc=7.9.2=pyhd8ed1ab_0 - pyarrow=13.0.0=py311h6a6099b_7_cpu - qtconsole-base=5.4.4=pyha770c72_0 diff --git a/pyproject.toml b/pyproject.toml index f2277f60cc..8c5a873d2a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -21,7 +21,7 @@ dependencies = [ "dagster-webserver>=1.5,<1.6", "dagster>=1.5,<1.6", "dask>=2023,<2023.10.1", - "datapackage>=1.11,<1.16", # Transition datastore to use frictionless. + "datapackage>=1.15,<1.16", # Transition datastore to use frictionless. "email-validator>=1.0.3", # pydantic[email] "fsspec>=2023,<2023.10.1", "gcsfs>=2023,<2023.9.3", @@ -32,12 +32,12 @@ dependencies = [ "hypothesis>=6.87,<7.0", "jinja2>=3,<3.2", "matplotlib>=3.6.1,<3.9", - "networkx>=3,<3.3", - "numba>=0.55.2", # pandas[performance] + "networkx>=3.2,<3.3", + "numba>=0.57", # pandas[performance] "numexpr>=2.8.0", # pandas[performance] "numpy>=1.24,<2.0a0", "openpyxl>=3.0.10", # pandas[excel] - "pandas>=2,<2.2", + "pandas>=2.1,<2.2", "pandera>=0.17,<1.0", "pyarrow>=13,<14", # pandas[parquet] "pydantic>=1.10,<2", @@ -45,13 +45,13 @@ dependencies = [ "pyxlsb>=1.0.9", # pandas[excel] "pyyaml>=6,<6.1", "recordlinkage", - "scikit-learn>=1,<1.4", - "scipy>=1.6,<1.12", + "scikit-learn>=1.3,<1.4", + "scipy>=1.11,<1.12", "Shapely>=2,<3", "sqlalchemy>=1.4,<2", "timezonefinder>=6,<6.3", "xlrd>=2.0.1", # pandas[excel] - "xlsxwriter>=3.0.3,<3.2", # pandas[excel] + "xlsxwriter>=3.1,<3.2", # pandas[excel] ] classifiers = [ "Development Status :: 3 - Alpha", @@ -128,7 +128,6 @@ dev = [ "lxml>=4.6,<4.10", "nbconvert>=7,<8", "ruff>=0.1,<0.2", - "tox>=4.4,<4.12", "twine>=4,<4.1", ] docs = [ @@ -154,7 +153,6 @@ test = [ "pytest>=7,<7.5", "responses>=0.14,<0.24", "ruff>=0.1,<0.2", - "tox>=4.4,<4.12", ] datasette = ["datasette>=0.60,<0.65"] diff --git a/tox.ini b/tox.ini deleted file mode 100644 index 242c8fb4a8..0000000000 --- a/tox.ini +++ /dev/null @@ -1,250 +0,0 @@ -[tox] -envlist = ci - -[testenv] -allowlist_externals = - bash - coverage - sphinx-build - twine -# shared directory for re-used packages -envdir = {toxinidir}/.env_tox -passenv = - CI - CLOUDSDK_* - CONDA_PREFIX - DAGSTER_HOME - GITHUB_* - GOOGLE_* - GCLOUD_* - GCP_* - HOME - PUDL_INPUT - PUDL_OUTPUT - SQLALCHEMY_WARN_20 -covargs = --cov={envsitepackagesdir}/pudl --cov-report=xml -covreport = coverage report --sort=cover - -########################################################################### -# Code and Documentation Linters -########################################################################### -[testenv:ruff] -description = Run the ruff linter on the entire PUDL codebase -skip_install = false -extras = - test -commands = - ruff check ./ - -[testenv:pre_commit] -description = Run git pre-commit hooks not covered by the other linters. -skip_install = false -extras = - test -commands = - pre-commit run --all-files --show-diff-on-failure check-merge-conflict - pre-commit run --all-files --show-diff-on-failure check-yaml - pre-commit run --all-files --show-diff-on-failure check-case-conflict - pre-commit run --all-files --show-diff-on-failure debug-statements - pre-commit run --all-files --show-diff-on-failure name-tests-test - -[testenv:linters] -description = Run the pre-commit and ruff linters -skip_install = false -extras = - {[testenv:pre_commit]extras} - {[testenv:ruff]extras} -commands = - {[testenv:pre_commit]commands} - {[testenv:ruff]commands} - -########################################################################### -# Lint and Build the Docs -########################################################################### -[testenv:doc8] -description = Check the documentation input files for syntactical correctness. -skip_install = false -extras = - docs -commands = - doc8 docs/ README.rst - -[testenv:docs] -description = Build the PUDL HTML docs from scratch using Sphinx. -skip_install = false -extras = - test - {[testenv:doc8]extras} -commands = - coverage erase - bash -c 'rm -rf docs/_build' - {[testenv:doc8]commands} - bash -c 'coverage run --source={envsitepackagesdir}/pudl -- $(which sphinx-build) -W -b html docs docs/_build/html' - coverage xml - - -########################################################################### -# Test the code and validate data -########################################################################### -[testenv:unit] -description = Run all the software unit tests. -extras = - test -commands = - pytest {tty:--color=yes} {posargs} {[testenv]covargs} \ - --doctest-modules {envsitepackagesdir}/pudl \ - test/unit - -[testenv:integration] -description = Run all software integration tests and process a full year of data. -extras = - test - datasette -commands = - pytest {tty:--color=yes} {posargs} {[testenv]covargs} test/integration - -[testenv:minmax_rows] -description = Check that all outputs have the expected number of rows. -skip_install = false -recreate = true -extras = - test -commands = - pytest {tty:--color=yes} --live-dbs \ - test/validate/epacamd_eia_test.py::test_minmax_rows \ - test/validate/ferc1_test.py::test_minmax_rows \ - test/validate/eia_test.py::test_minmax_rows \ - test/validate/mcoe_test.py::test_minmax_rows_mcoe - -[testenv:validate] -description = Run all data validation tests. This requires a complete PUDL DB. -skip_install = false -recreate = true -extras = - test -commands = - pytest {tty:--color=yes} --live-dbs test/validate - -[testenv:jupyter] -description = Ensure that designated Jupyter notebooks can be executed. -skip_install = false -recreate = true -extras = - test -commands = - pytest {tty:--color=yes} --live-dbs test/integration/jupyter_notebooks_test.py - -[testenv:ci] -description = Run all continuous integration (CI) checks & generate test coverage. -skip_install = false -recreate = true -extras = - {[testenv:docs]extras} - {[testenv:integration]extras} - {[testenv:linters]extras} -commands = - coverage erase - {[testenv:linters]commands} - {[testenv:docs]commands} - {[testenv:unit]commands} - {[testenv:integration]commands} - {[testenv]covreport} - -[testenv:full_integration] -description = Run ETL and integration tests for all years and data sources. -skip_install = false -extras = - {[testenv:integration]extras} -commands = - pytest {tty:--color=yes} {posargs} {[testenv]covargs} \ - --etl-settings src/pudl/package_data/settings/etl_full.yml \ - test/integration - -[testenv:full] -description = Run all CI checks, but for all years of data. -skip_install = false -recreate = true -extras = - {[testenv:docs]extras} - {[testenv:integration]extras} - {[testenv:linters]extras} -commands = - coverage erase - {[testenv:linters]commands} - {[testenv:docs]commands} - {[testenv:unit]commands} - {[testenv:full_integration]commands} - {[testenv]covreport} - -[testenv:nuke] -description = Nuke & recreate SQLite & Parquet outputs, then run all tests and data validations against the new outputs. -skip_install = false -recreate = true -extras = - {[testenv:docs]extras} - {[testenv:integration]extras} - {[testenv:linters]extras} -commands = - coverage erase - {[testenv:linters]commands} - {[testenv:docs]commands} - {[testenv:unit]commands} - {[testenv:integration]commands} - bash -c 'rm -f tox-nuke.log' - bash -c 'coverage run --append src/pudl/convert/ferc_to_sqlite.py --logfile tox-nuke.log --clobber src/pudl/package_data/settings/etl_full.yml' - bash -c 'coverage run --append src/pudl/cli/etl.py --logfile tox-nuke.log --clobber src/pudl/package_data/settings/etl_full.yml' - pytest {tty:--color=yes} --live-dbs {posargs} {[testenv]covargs} \ - --etl-settings src/pudl/package_data/settings/etl_full.yml \ - test/integration - {[testenv:validate]commands} - {[testenv]covreport} - -########################################################################### -# Generate and save the unmapped IDs -########################################################################### -[testenv:get_unmapped_ids] -description = Make the raw FERC1 DB and generate a PUDL database with only EIA in order to generate any unmapped IDs. -skip_install = false -extras = - {[testenv:integration]extras} -commands = - pytest {tty:--color=yes} {posargs} \ - --save-unmapped-ids \ - --ignore-foreign-key-constraints \ - --etl-settings src/pudl/package_data/settings/etl_full.yml \ - test/integration/glue_test.py - -########################################################################### -# Software Package Build & Release -########################################################################### -[testenv:build] -description = Prepare Python source and binary packages for release. -basepython = python3 -skip_install = false -extras = - dev -commands = - bash -c 'rm -rf build/* dist/* src/catalystcoop.pudl.egg-info' - python -m build - -[testenv:testrelease] -description = Do a dry run of Python package release using the PyPI test server. -basepython = python3 -skip_install = false -extras = - dev -commands = - {[testenv:build]commands} - twine check dist/* - twine upload --verbose --repository testpypi --skip-existing dist/* - -[testenv:release] -description = Release the PUDL package to the production PyPI server. -basepython = python3 -skip_install = true -extras = - dev -commands = - {[testenv:build]commands} - twine check dist/* - twine upload --verbose --skip-existing dist/*