diff --git a/build/create_binaries/Manifest.toml b/build/create_binaries/Manifest.toml index 730c727bb..737ac860a 100644 --- a/build/create_binaries/Manifest.toml +++ b/build/create_binaries/Manifest.toml @@ -2,7 +2,7 @@ julia_version = "1.9.3" manifest_format = "2.0" -project_hash = "d99377ff8fe51b02cfd3a3aaf109a7ed1b45b3d2" +project_hash = "71b2262fd2a2bd6f9c0ade48d4062e051c3f39eb" [[deps.ArgTools]] uuid = "0dad84c5-d112-42e6-8d28-ef12dabb789f" @@ -113,9 +113,9 @@ version = "1.2.0" [[deps.PackageCompiler]] deps = ["Artifacts", "Glob", "LazyArtifacts", "Libdl", "Pkg", "Printf", "RelocatableFolders", "TOML", "UUIDs"] -git-tree-sha1 = "2838fa7697780395ef328861b7716925ac7dd48a" +git-tree-sha1 = "d24f0920777c64c0265e9725eb4a3ec450bc36dd" uuid = "9b87118b-4619-50d2-8e1e-99f35a4d4d9d" -version = "2.1.11" +version = "2.1.10" [[deps.Parsers]] deps = ["Dates", "PrecompileTools", "UUIDs"] @@ -191,10 +191,8 @@ uuid = "a4e569a6-e804-4fa4-b0f3-eef7a1d5b13e" version = "1.10.0" [[deps.TimeZones]] -deps = ["Artifacts", "Dates", "Downloads", "InlineStrings", "Mocking", "Printf", "Scratch", "TZJData", "Unicode", "p7zip_jll"] -git-tree-sha1 = "6f2a9362603a79a916c54a10fc7c9a4ff2ca0848" -repo-rev = "cldr" -repo-url = "https://github.com/visr/TimeZones.jl" +deps = ["Artifacts", "Dates", "Downloads", "InlineStrings", "LazyArtifacts", "Mocking", "Printf", "Scratch", "TZJData", "Unicode", "p7zip_jll"] +git-tree-sha1 = "89e64d61ef3cd9e80f7fc12b7d13db2d75a23c03" uuid = "f269a46b-ccf7-5d73-abea-4c690281aa53" version = "1.13.0" diff --git a/build/create_binaries/Project.toml b/build/create_binaries/Project.toml index c3500a282..275616313 100644 --- a/build/create_binaries/Project.toml +++ b/build/create_binaries/Project.toml @@ -7,5 +7,5 @@ TimeZones = "f269a46b-ccf7-5d73-abea-4c690281aa53" [compat] PackageCompiler = "2" -TimeZones = "1.13" +TimeZones = "=1.13.0" julia = "1.9" diff --git a/build/create_binaries/create_app.jl b/build/create_binaries/create_app.jl index 1e8f57450..72e6a7262 100644 --- a/build/create_binaries/create_app.jl +++ b/build/create_binaries/create_app.jl @@ -2,6 +2,8 @@ using PackageCompiler using TOML using LibGit2 +include("strip_cldr.jl") + # change directory to this script's location cd(@__DIR__) diff --git a/build/create_binaries/create_lib.jl b/build/create_binaries/create_lib.jl index 54d05794e..0b8364099 100644 --- a/build/create_binaries/create_lib.jl +++ b/build/create_binaries/create_lib.jl @@ -2,6 +2,8 @@ using PackageCompiler using TOML using LibGit2 +include("strip_cldr.jl") + cd(@__DIR__) project_dir = "../libribasim" diff --git a/build/create_binaries/strip_cldr.jl b/build/create_binaries/strip_cldr.jl new file mode 100644 index 000000000..fbded628c --- /dev/null +++ b/build/create_binaries/strip_cldr.jl @@ -0,0 +1,24 @@ +# The cldr artifact has such long paths that it errors on Windows unless long paths are enabled. +# Also the artifact has many files and is over 300 MB, while we only need a single small file. +# This modifies the artifact to remove everything except the file we need. +# Since the artifact is only used on Windows, only strip do it there. +# This needs exactly TimeZones 1.13.0, which is fixed in the Project.toml. +# https://github.com/JuliaTime/TimeZones.jl/issues/373 + +using Artifacts + +if Sys.iswindows() + # Get the artifact directory and the file path we need to keep + hash = Base.SHA1("40b35727ea0aff9a9f28b7454004b68849caf67b") + @assert artifact_exists(hash) + artifact_dir = artifact_path(hash) + keep_file = + normpath(artifact_dir, "cldr-release-43-1/common/supplemental/windowsZones.xml") + @assert isfile(keep_file) + + # Read the file into memory, empty the artifact dir, and write the file back + keep_file_content = read(keep_file) + rm(artifact_dir; recursive = true) + mkpath(dirname(keep_file)) + write(keep_file, keep_file_content) +end diff --git a/build/libribasim/Manifest.toml b/build/libribasim/Manifest.toml index 95db712d6..5db3c6ffd 100644 --- a/build/libribasim/Manifest.toml +++ b/build/libribasim/Manifest.toml @@ -979,7 +979,7 @@ uuid = "ae029012-a4dd-5104-9daa-d747884805df" version = "1.3.0" [[deps.Ribasim]] -deps = ["Arrow", "BasicModelInterface", "CodecLz4", "CodecZstd", "ComponentArrays", "Configurations", "DBInterface", "DataInterpolations", "DataStructures", "Dates", "Dictionaries", "DiffEqCallbacks", "FiniteDiff", "ForwardDiff", "Graphs", "HiGHS", "IterTools", "JuMP", "Legolas", "Logging", "LoggingExtras", "OrdinaryDiffEq", "PreallocationTools", "SQLite", "SciMLBase", "SparseArrays", "StructArrays", "Tables", "TerminalLoggers", "TimeZones", "TimerOutputs", "TranscodingStreams"] +deps = ["Arrow", "BasicModelInterface", "CodecLz4", "CodecZstd", "ComponentArrays", "Configurations", "DBInterface", "DataInterpolations", "DataStructures", "Dates", "Dictionaries", "DiffEqCallbacks", "FiniteDiff", "ForwardDiff", "Graphs", "HiGHS", "IterTools", "JuMP", "Legolas", "Logging", "LoggingExtras", "OrdinaryDiffEq", "PreallocationTools", "SQLite", "SciMLBase", "SparseArrays", "StructArrays", "Tables", "TerminalLoggers", "TimerOutputs", "TranscodingStreams"] path = "../../core" uuid = "aac5e3d9-0b8f-4d4f-8241-b1a7a9632635" version = "0.3.0" diff --git a/build/ribasim_cli/Manifest.toml b/build/ribasim_cli/Manifest.toml index 873b83b61..5885340d8 100644 --- a/build/ribasim_cli/Manifest.toml +++ b/build/ribasim_cli/Manifest.toml @@ -979,7 +979,7 @@ uuid = "ae029012-a4dd-5104-9daa-d747884805df" version = "1.3.0" [[deps.Ribasim]] -deps = ["Arrow", "BasicModelInterface", "CodecLz4", "CodecZstd", "ComponentArrays", "Configurations", "DBInterface", "DataInterpolations", "DataStructures", "Dates", "Dictionaries", "DiffEqCallbacks", "FiniteDiff", "ForwardDiff", "Graphs", "HiGHS", "IterTools", "JuMP", "Legolas", "Logging", "LoggingExtras", "OrdinaryDiffEq", "PreallocationTools", "SQLite", "SciMLBase", "SparseArrays", "StructArrays", "Tables", "TerminalLoggers", "TimeZones", "TimerOutputs", "TranscodingStreams"] +deps = ["Arrow", "BasicModelInterface", "CodecLz4", "CodecZstd", "ComponentArrays", "Configurations", "DBInterface", "DataInterpolations", "DataStructures", "Dates", "Dictionaries", "DiffEqCallbacks", "FiniteDiff", "ForwardDiff", "Graphs", "HiGHS", "IterTools", "JuMP", "Legolas", "Logging", "LoggingExtras", "OrdinaryDiffEq", "PreallocationTools", "SQLite", "SciMLBase", "SparseArrays", "StructArrays", "Tables", "TerminalLoggers", "TimerOutputs", "TranscodingStreams"] path = "../../core" uuid = "aac5e3d9-0b8f-4d4f-8241-b1a7a9632635" version = "0.3.0" diff --git a/core/Manifest.toml b/core/Manifest.toml index d0cb421e9..e717d68b9 100644 --- a/core/Manifest.toml +++ b/core/Manifest.toml @@ -2,7 +2,7 @@ julia_version = "1.9.3" manifest_format = "2.0" -project_hash = "734d92f362e5faf41ff9058fcbfa26406306498c" +project_hash = "c63b237aec6a6bf6314284b2b07a94b93a9f0a36" [[deps.ADTypes]] git-tree-sha1 = "5d2e21d7b0d8c22f67483ef95ebdc39c0e6b6003" @@ -1257,10 +1257,8 @@ uuid = "8290d209-cae3-49c0-8002-c8c24d57dab5" version = "0.5.2" [[deps.TimeZones]] -deps = ["Artifacts", "Dates", "Downloads", "InlineStrings", "Mocking", "Printf", "Scratch", "TZJData", "Unicode", "p7zip_jll"] -git-tree-sha1 = "6f2a9362603a79a916c54a10fc7c9a4ff2ca0848" -repo-rev = "cldr" -repo-url = "https://github.com/visr/TimeZones.jl" +deps = ["Artifacts", "Dates", "Downloads", "InlineStrings", "LazyArtifacts", "Mocking", "Printf", "Scratch", "TZJData", "Unicode", "p7zip_jll"] +git-tree-sha1 = "89e64d61ef3cd9e80f7fc12b7d13db2d75a23c03" uuid = "f269a46b-ccf7-5d73-abea-4c690281aa53" version = "1.13.0" weakdeps = ["RecipesBase"] diff --git a/core/Project.toml b/core/Project.toml index 532bd21a1..62c01fb3b 100644 --- a/core/Project.toml +++ b/core/Project.toml @@ -65,7 +65,7 @@ SciMLBase = "1.60, 2" StructArrays = "0.6.13" Tables = "1" TerminalLoggers = "0.1.7" -TimeZones = "1.13" +TimeZones = "=1.13.0" TimerOutputs = "0.5" TranscodingStreams = "0.9, 0.10" julia = "1.9" diff --git a/core/src/create.jl b/core/src/create.jl index 24f0127df..b9258a026 100644 --- a/core/src/create.jl +++ b/core/src/create.jl @@ -154,7 +154,7 @@ function parse_static_and_time( ) if !is_valid errors = true - @error "A $parameter_name time series for $nodetype node $(repr(node_name)) (#$node_id) has repeated times, this can not be interpolated." + @error "A $parameter_name time series for $nodetype node $(repr(node_name)) #$node_id has repeated times, this can not be interpolated." end else # Activity of transient nodes is assumed to be true @@ -168,7 +168,7 @@ function parse_static_and_time( getfield(out, parameter_name)[node_idx] = val end else - @error "$nodetype node $(repr(node_name)) (#$node_id) data not in any table." + @error "$nodetype node $(repr(node_name)) #$node_id data not in any table." errors = true end end @@ -359,11 +359,11 @@ function TabulatedRatingCurve(db::DB, config::Config)::TabulatedRatingCurve push!(interpolations, interpolation) push!(active, true) else - @error "TabulatedRatingCurve node $(repr(node_name)) (#$node_id) data not in any table." + @error "TabulatedRatingCurve node $(repr(node_name)) #$node_id data not in any table." errors = true end if !is_valid - @error "A Q(h) relationship for TabulatedRatingCurve $(repr(node_name)) (#$node_id) from the $source table has repeated levels, this can not be interpolated." + @error "A Q(h) relationship for TabulatedRatingCurve $(repr(node_name)) #$node_id from the $source table has repeated levels, this can not be interpolated." errors = true end end diff --git a/core/test/validation.jl b/core/test/validation.jl index 06ee51832..00eb31a7e 100644 --- a/core/test/validation.jl +++ b/core/test/validation.jl @@ -43,10 +43,10 @@ end @test length(logger.logs) == 2 @test logger.logs[1].level == Error @test logger.logs[1].message == - "A Q(h) relationship for TabulatedRatingCurve \"\" (#1) from the static table has repeated levels, this can not be interpolated." + "A Q(h) relationship for TabulatedRatingCurve \"\" #1 from the static table has repeated levels, this can not be interpolated." @test logger.logs[2].level == Error @test logger.logs[2].message == - "A Q(h) relationship for TabulatedRatingCurve \"\" (#2) from the time table has repeated levels, this can not be interpolated." + "A Q(h) relationship for TabulatedRatingCurve \"\" #2 from the time table has repeated levels, this can not be interpolated." end @testset "Neighbor count validation" begin diff --git a/environment.yml b/environment.yml deleted file mode 100644 index d6283cc17..000000000 --- a/environment.yml +++ /dev/null @@ -1,34 +0,0 @@ -name: ribasim - -channels: - - conda-forge - -dependencies: - - black - - black-jupyter - - build - - datamodel-code-generator - - geopandas - - jupyterlab - - matplotlib - - mypy - - pandas!=2.1.0 - - pandas-stubs - - pandera - - pip - - pip: - - quartodoc - - pre-commit - - pyarrow - - pydantic=1 - - pyogrio - - pytest - - pytest-cov - - python>=3.9 - - ruff - - shapely>=2.0 - - tomli - - tomli-w - - twine - - xarray - - xmipy diff --git a/pixi.lock b/pixi.lock index ac6e0808d..25319a584 100644 --- a/pixi.lock +++ b/pixi.lock @@ -2,6 +2,7 @@ metadata: content_hash: linux-64: e90c2ee71ad70fc0a1c8302029533a7d1498f2bffcd0eaa8d2934700e775dc1d osx-64: e90c2ee71ad70fc0a1c8302029533a7d1498f2bffcd0eaa8d2934700e775dc1d + osx-arm64: e90c2ee71ad70fc0a1c8302029533a7d1498f2bffcd0eaa8d2934700e775dc1d win-64: e90c2ee71ad70fc0a1c8302029533a7d1498f2bffcd0eaa8d2934700e775dc1d channels: - url: https://conda.anaconda.org/conda-forge/ @@ -9,6 +10,7 @@ metadata: platforms: - linux-64 - osx-64 + - osx-arm64 - win-64 sources: [] time_metadata: null @@ -129,6 +131,32 @@ package: noarch: python size: 98958 timestamp: 1693488730301 +- name: anyio + version: 4.0.0 + manager: conda + platform: osx-arm64 + dependencies: + exceptiongroup: '*' + idna: '>=2.8' + python: '>=3.8' + sniffio: '>=1.1' + url: https://conda.anaconda.org/conda-forge/noarch/anyio-4.0.0-pyhd8ed1ab_0.conda + hash: + md5: 3c4e99d3ae4ec033d4dd99fb5220e540 + sha256: 64125775b2e724db5c72e431dd180495d5d509d0a2d1228a122e6af9f1b60e33 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + constrains: + - trio >=0.22 + license: MIT + license_family: MIT + noarch: python + size: 98958 + timestamp: 1693488730301 - name: anyio version: 4.0.0 manager: conda @@ -176,6 +204,27 @@ package: noarch: python size: 8095 timestamp: 1649077760928 +- name: appnope + version: 0.1.3 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=2.7' + url: https://conda.anaconda.org/conda-forge/noarch/appnope-0.1.3-pyhd8ed1ab_0.tar.bz2 + hash: + md5: 54ac328d703bff191256ffa1183126d1 + sha256: b209a68ac55eb9ecad7042f0d4eedef5da924699f6cdf54ac1826869cfdae742 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: BSD-2-Clause + license_family: BSD + noarch: python + size: 8095 + timestamp: 1649077760928 - name: argcomplete version: 3.1.2 manager: conda @@ -218,6 +267,27 @@ package: noarch: python size: 39476 timestamp: 1694937085441 +- name: argcomplete + version: 3.1.2 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.8' + url: https://conda.anaconda.org/conda-forge/noarch/argcomplete-3.1.2-pyhd8ed1ab_0.conda + hash: + md5: 05718204d3570baccbda39c830bbe4d9 + sha256: fc193581a3084f0e732145a99d488838ab394d8d97bd200bcdf9e4be00e0d07d + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: Apache-2.0 + license_family: Apache + noarch: python + size: 39476 + timestamp: 1694937085441 - name: argcomplete version: 3.1.2 manager: conda @@ -289,6 +359,31 @@ package: noarch: python size: 18602 timestamp: 1692818472638 +- name: argon2-cffi + version: 23.1.0 + manager: conda + platform: osx-arm64 + dependencies: + argon2-cffi-bindings: '*' + python: '>=3.7' + typing-extensions: '*' + url: https://conda.anaconda.org/conda-forge/noarch/argon2-cffi-23.1.0-pyhd8ed1ab_0.conda + hash: + md5: 3afef1f55a1366b4d3b6a0d92e2235e4 + sha256: 130766446f5507bd44df957b6b5c898a8bd98f024bb426ed6cb9ff1ad67fc677 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + constrains: + - argon2_cffi ==999 + license: MIT + license_family: MIT + noarch: python + size: 18602 + timestamp: 1692818472638 - name: argon2-cffi version: 23.1.0 manager: conda @@ -359,6 +454,28 @@ package: license_family: MIT size: 32542 timestamp: 1695386887016 +- name: argon2-cffi-bindings + version: 21.2.0 + manager: conda + platform: osx-arm64 + dependencies: + cffi: '>=1.0.1' + python: '>=3.11,<3.12.0a0 *_cpython' + python_abi: 3.11.* *_cp311 + url: https://conda.anaconda.org/conda-forge/osx-arm64/argon2-cffi-bindings-21.2.0-py311heffc1b2_4.conda + hash: + md5: e9a56c22ca1215ed3a7b6a9e8c4e6f07 + sha256: b9ab23e4f0d615432949d4b93723bd04b3c4aef725aa03b1e993903265c1b975 + optional: false + category: main + build: py311heffc1b2_4 + arch: aarch64 + subdir: osx-arm64 + build_number: 4 + license: MIT + license_family: MIT + size: 34126 + timestamp: 1695386994453 - name: argon2-cffi-bindings version: 21.2.0 manager: conda @@ -430,6 +547,29 @@ package: noarch: python size: 100096 timestamp: 1696129131844 +- name: arrow + version: 1.3.0 + manager: conda + platform: osx-arm64 + 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 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: Apache-2.0 + license_family: Apache + noarch: python + size: 100096 + timestamp: 1696129131844 - name: arrow version: 1.3.0 manager: conda @@ -497,6 +637,28 @@ package: noarch: python size: 28819 timestamp: 1694046538391 +- name: asttokens + version: 2.4.0 + manager: conda + platform: osx-arm64 + 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 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: Apache-2.0 + license_family: Apache + noarch: python + size: 28819 + timestamp: 1694046538391 - name: asttokens version: 2.4.0 manager: conda @@ -563,6 +725,28 @@ package: noarch: python size: 15342 timestamp: 1690563152778 +- name: async-lru + version: 2.0.4 + manager: conda + platform: osx-arm64 + 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 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 15342 + timestamp: 1690563152778 - name: async-lru version: 2.0.4 manager: conda @@ -647,6 +831,27 @@ package: noarch: python size: 55022 timestamp: 1683424195402 +- name: attrs + version: 23.1.0 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.7' + url: https://conda.anaconda.org/conda-forge/noarch/attrs-23.1.0-pyh71513ae_1.conda + hash: + md5: 3edfead7cedd1ab4400a6c588f3e75f8 + sha256: 063639cd568f5c7a557b0fb1cc27f098598c0d8ff869088bfeb82934674f8821 + optional: false + category: main + build: pyh71513ae_1 + arch: aarch64 + subdir: osx-arm64 + build_number: 1 + license: MIT + license_family: MIT + noarch: python + size: 55022 + timestamp: 1683424195402 - name: attrs version: 23.1.0 manager: conda @@ -717,6 +922,30 @@ package: license_family: Apache size: 89433 timestamp: 1697864437505 +- name: aws-c-auth + version: 0.7.4 + manager: conda + platform: osx-arm64 + dependencies: + aws-c-cal: '>=0.6.7,<0.6.8.0a0' + aws-c-common: '>=0.9.4,<0.9.5.0a0' + aws-c-http: '>=0.7.13,<0.7.14.0a0' + aws-c-io: '>=0.13.35,<0.13.36.0a0' + aws-c-sdkutils: '>=0.1.12,<0.1.13.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-auth-0.7.4-he6edc6d_6.conda + hash: + md5: 123f2ef2df240a9a8ce38ddb83d7d092 + sha256: 395ba033d95acbd915d115c7e34b4647a57d07ad3be23807fe96d13b269f78e8 + optional: false + category: main + build: he6edc6d_6 + arch: aarch64 + subdir: osx-arm64 + build_number: 6 + license: Apache-2.0 + license_family: Apache + size: 87659 + timestamp: 1697864471749 - name: aws-c-auth version: 0.7.4 manager: conda @@ -786,6 +1015,26 @@ package: license_family: Apache size: 45255 timestamp: 1697673379792 +- name: aws-c-cal + version: 0.6.7 + manager: conda + platform: osx-arm64 + dependencies: + aws-c-common: '>=0.9.4,<0.9.5.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-cal-0.6.7-ha251d5a_0.conda + hash: + md5: dc40c2139c44dc8078f7dd256f03ca9d + sha256: bcba576928617754f4625fdb9e3cc4dc05debc2845506f669c942aa182494ed7 + optional: false + category: main + build: ha251d5a_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: Apache-2.0 + license_family: Apache + size: 39014 + timestamp: 1697673430797 - name: aws-c-cal version: 0.6.7 manager: conda @@ -848,6 +1097,25 @@ package: license_family: Apache size: 204597 timestamp: 1697224614121 +- name: aws-c-common + version: 0.9.4 + manager: conda + platform: osx-arm64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-common-0.9.4-h93a5062_0.conda + hash: + md5: bace1115ad120bb9878ed244b7789a38 + sha256: 297f0f7c873a50ed054b0a9969d7313ab6ab04d80bbb97f010188977f6e8ea00 + optional: false + category: main + build: h93a5062_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: Apache-2.0 + license_family: Apache + size: 199718 + timestamp: 1697224690584 - name: aws-c-common version: 0.9.4 manager: conda @@ -911,6 +1179,26 @@ package: license_family: Apache size: 18008 timestamp: 1697276334093 +- name: aws-c-compression + version: 0.2.17 + manager: conda + platform: osx-arm64 + dependencies: + aws-c-common: '>=0.9.4,<0.9.5.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-compression-0.2.17-ha251d5a_4.conda + hash: + md5: e64060c7ba7008a36c39f95e94934824 + sha256: a995826c8074250bcbc59e4640670a66d9c0d071ea7f75ac71d2e6359fb3cf12 + optional: false + category: main + build: ha251d5a_4 + arch: aarch64 + subdir: osx-arm64 + build_number: 4 + license: Apache-2.0 + license_family: Apache + size: 18265 + timestamp: 1697276370819 - name: aws-c-compression version: 0.2.17 manager: conda @@ -982,6 +1270,30 @@ package: license_family: Apache size: 47235 timestamp: 1697310241752 +- name: aws-c-event-stream + version: 0.3.2 + manager: conda + platform: osx-arm64 + dependencies: + __osx: '>=10.9' + aws-c-common: '>=0.9.4,<0.9.5.0a0' + aws-c-io: '>=0.13.35,<0.13.36.0a0' + aws-checksums: '>=0.1.17,<0.1.18.0a0' + libcxx: '>=16.0.6' + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-event-stream-0.3.2-hd73d0d5_4.conda + hash: + md5: d393bbd203ecc8489d04a86ffcdb1f4a + sha256: 9e95a08a335eca1acd1f43e5ff1f4f425d85420d90f6b6343752b56b7396b4fc + optional: false + category: main + build: hd73d0d5_4 + arch: aarch64 + subdir: osx-arm64 + build_number: 4 + license: Apache-2.0 + license_family: Apache + size: 47016 + timestamp: 1697310283218 - name: aws-c-event-stream version: 0.3.2 manager: conda @@ -1054,6 +1366,29 @@ package: license_family: Apache size: 162506 timestamp: 1697851135094 +- name: aws-c-http + version: 0.7.13 + manager: conda + platform: osx-arm64 + dependencies: + aws-c-cal: '>=0.6.7,<0.6.8.0a0' + aws-c-common: '>=0.9.4,<0.9.5.0a0' + aws-c-compression: '>=0.2.17,<0.2.18.0a0' + aws-c-io: '>=0.13.35,<0.13.36.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-http-0.7.13-hb3e5a72_7.conda + hash: + md5: 6343f20b5246351926e1f304084f663c + sha256: 939c1c1898d228fdc7bb532cbd09517eea71c8672ce22609cb1ade9d02ce06f5 + optional: false + category: main + build: hb3e5a72_7 + arch: aarch64 + subdir: osx-arm64 + build_number: 7 + license: Apache-2.0 + license_family: Apache + size: 150599 + timestamp: 1697851203675 - name: aws-c-http version: 0.7.13 manager: conda @@ -1127,26 +1462,47 @@ package: - name: aws-c-io version: 0.13.35 manager: conda - platform: win-64 + platform: osx-arm64 dependencies: aws-c-cal: '>=0.6.7,<0.6.8.0a0' aws-c-common: '>=0.9.4,<0.9.5.0a0' - ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/aws-c-io-0.13.35-h8233182_4.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-io-0.13.35-h0f79f92_4.conda hash: - md5: 5317706b4f9075e4c1fdf8b72d09f266 - sha256: 7c7c1cd69cc49b9109a6e37c13b248f04705594071d2b9c6f51ab6103401ed66 + md5: e5dd577f857c83f99975db7368c071a7 + sha256: 90083860c4e0f2e2d78f80b196f40b2e5d1e8340588d46e6936f21fb9a7408c2 optional: false category: main - build: h8233182_4 - arch: x86_64 - subdir: win-64 + build: h0f79f92_4 + arch: aarch64 + subdir: osx-arm64 build_number: 4 license: Apache-2.0 license_family: Apache - size: 158859 + size: 136780 + timestamp: 1697832935753 +- name: aws-c-io + version: 0.13.35 + manager: conda + platform: win-64 + dependencies: + aws-c-cal: '>=0.6.7,<0.6.8.0a0' + aws-c-common: '>=0.9.4,<0.9.5.0a0' + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vc14_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/aws-c-io-0.13.35-h8233182_4.conda + hash: + md5: 5317706b4f9075e4c1fdf8b72d09f266 + sha256: 7c7c1cd69cc49b9109a6e37c13b248f04705594071d2b9c6f51ab6103401ed66 + optional: false + category: main + build: h8233182_4 + arch: x86_64 + subdir: win-64 + build_number: 4 + license: Apache-2.0 + license_family: Apache + size: 158859 timestamp: 1697833111049 - name: aws-c-mqtt version: 0.9.8 @@ -1193,6 +1549,28 @@ package: license_family: Apache size: 138163 timestamp: 1697770881386 +- name: aws-c-mqtt + version: 0.9.8 + manager: conda + platform: osx-arm64 + dependencies: + aws-c-common: '>=0.9.4,<0.9.5.0a0' + aws-c-http: '>=0.7.13,<0.7.14.0a0' + aws-c-io: '>=0.13.35,<0.13.36.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-mqtt-0.9.8-he2964ae_0.conda + hash: + md5: 59cad22bf55d94f54ed11a23d6f40a82 + sha256: de85e5d0d100fc4319ccaf4540fec3f379899ced2334db47c306c1f8cd192671 + optional: false + category: main + build: he2964ae_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: Apache-2.0 + license_family: Apache + size: 117558 + timestamp: 1697770422982 - name: aws-c-mqtt version: 0.9.8 manager: conda @@ -1270,6 +1648,31 @@ package: license_family: Apache size: 74542 timestamp: 1697879356725 +- name: aws-c-s3 + version: 0.3.19 + manager: conda + platform: osx-arm64 + dependencies: + aws-c-auth: '>=0.7.4,<0.7.5.0a0' + aws-c-cal: '>=0.6.7,<0.6.8.0a0' + aws-c-common: '>=0.9.4,<0.9.5.0a0' + aws-c-http: '>=0.7.13,<0.7.14.0a0' + aws-c-io: '>=0.13.35,<0.13.36.0a0' + aws-checksums: '>=0.1.17,<0.1.18.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-s3-0.3.19-hfc5e08c_1.conda + hash: + md5: 12f96940488ba32dbaa6a487407799ac + sha256: 203da3509dcf6e6eec633dd7da228a30a750983f2da041417d2e521634a1791f + optional: false + category: main + build: hfc5e08c_1 + arch: aarch64 + subdir: osx-arm64 + build_number: 1 + license: Apache-2.0 + license_family: Apache + size: 74107 + timestamp: 1697879437426 - name: aws-c-s3 version: 0.3.19 manager: conda @@ -1339,6 +1742,26 @@ package: license_family: Apache size: 47361 timestamp: 1697283408993 +- name: aws-c-sdkutils + version: 0.1.12 + manager: conda + platform: osx-arm64 + dependencies: + aws-c-common: '>=0.9.4,<0.9.5.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-sdkutils-0.1.12-ha251d5a_3.conda + hash: + md5: ddc2ae02cdaa70989069c74995506520 + sha256: fa4e165c179093b761e0e4a946a214b65735ffec0ddc992ef3ba98559affb9da + optional: false + category: main + build: ha251d5a_3 + arch: aarch64 + subdir: osx-arm64 + build_number: 3 + license: Apache-2.0 + license_family: Apache + size: 47056 + timestamp: 1697283486854 - name: aws-c-sdkutils version: 0.1.12 manager: conda @@ -1403,6 +1826,26 @@ package: license_family: Apache size: 48720 timestamp: 1697283251979 +- name: aws-checksums + version: 0.1.17 + manager: conda + platform: osx-arm64 + dependencies: + aws-c-common: '>=0.9.4,<0.9.5.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-checksums-0.1.17-ha251d5a_3.conda + hash: + md5: b1082e09e43f954ea65e947a6b5029af + sha256: 82534e9aa17aae584f4e3d1865f6d975c02bba98da326d309bcc309496448713 + optional: false + category: main + build: ha251d5a_3 + arch: aarch64 + subdir: osx-arm64 + build_number: 3 + license: Apache-2.0 + license_family: Apache + size: 49005 + timestamp: 1697283369764 - name: aws-checksums version: 0.1.17 manager: conda @@ -1484,6 +1927,34 @@ package: license_family: Apache size: 275488 timestamp: 1697892182805 +- name: aws-crt-cpp + version: 0.24.3 + manager: conda + platform: osx-arm64 + dependencies: + aws-c-auth: '>=0.7.4,<0.7.5.0a0' + aws-c-cal: '>=0.6.7,<0.6.8.0a0' + aws-c-common: '>=0.9.4,<0.9.5.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.35,<0.13.36.0a0' + aws-c-mqtt: '>=0.9.8,<0.9.9.0a0' + aws-c-s3: '>=0.3.19,<0.3.20.0a0' + aws-c-sdkutils: '>=0.1.12,<0.1.13.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-crt-cpp-0.24.3-h79a3bcf_7.conda + hash: + md5: 988c3d0b11027419cefa18fe3acecdbe + sha256: 4a8e2253da764623253b4bd023e67e0b3ef966ebf8ab9a85714cb6c017c9eb3c + optional: false + category: main + build: h79a3bcf_7 + arch: aarch64 + subdir: osx-arm64 + build_number: 7 + license: Apache-2.0 + license_family: Apache + size: 213725 + timestamp: 1697892181414 - name: aws-crt-cpp version: 0.24.3 manager: conda @@ -1569,6 +2040,32 @@ package: license_family: Apache size: 3164113 timestamp: 1697865530607 +- name: aws-sdk-cpp + version: 1.11.182 + manager: conda + platform: osx-arm64 + dependencies: + aws-c-common: '>=0.9.4,<0.9.5.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.3,<0.24.4.0a0' + libcurl: '>=8.4.0,<9.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + openssl: '>=3.1.3,<4.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-sdk-cpp-1.11.182-h25e7660_1.conda + hash: + md5: d42fea6e28aca49c8ee49d982e730649 + sha256: 638c58158b507e5eaa33739156a79db218aed262d5d2133d8a66584efc646178 + optional: false + category: main + build: h25e7660_1 + arch: aarch64 + subdir: osx-arm64 + build_number: 1 + license: Apache-2.0 + license_family: Apache + size: 3183344 + timestamp: 1697865606196 - name: aws-sdk-cpp version: 1.11.182 manager: conda @@ -1615,6 +2112,7 @@ package: subdir: linux-64 build_number: 0 license: BSD-3-Clause + license_family: BSD noarch: python size: 6948100 timestamp: 1698174685067 @@ -1637,6 +2135,30 @@ package: subdir: osx-64 build_number: 0 license: BSD-3-Clause + license_family: BSD + noarch: python + size: 6948100 + timestamp: 1698174685067 +- name: babel + version: 2.13.1 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.7' + pytz: '*' + setuptools: '*' + url: https://conda.anaconda.org/conda-forge/noarch/babel-2.13.1-pyhd8ed1ab_0.conda + hash: + md5: 3ccff479c246692468f604df9c85ef26 + sha256: 1f955c700db16f65b16c9e9c1613436480d5497970b8030b7a9ebe1620cc2147 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD noarch: python size: 6948100 timestamp: 1698174685067 @@ -1659,6 +2181,7 @@ package: subdir: win-64 build_number: 0 license: BSD-3-Clause + license_family: BSD noarch: python size: 6948100 timestamp: 1698174685067 @@ -1704,6 +2227,27 @@ package: noarch: python size: 13705 timestamp: 1592338491389 +- name: backcall + version: 0.2.0 + manager: conda + platform: osx-arm64 + dependencies: + python: '*' + url: https://conda.anaconda.org/conda-forge/noarch/backcall-0.2.0-pyh9f0ad1d_0.tar.bz2 + hash: + md5: 6006a6d08a3fa99268a2681c7fb55213 + sha256: ee62d6434090c1327a48551734e06bd10e65a64ef7f3b6e68719500dab0e42b9 + optional: false + category: main + build: pyh9f0ad1d_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 13705 + timestamp: 1592338491389 - name: backcall version: 0.2.0 manager: conda @@ -1767,6 +2311,27 @@ package: noarch: python size: 5950 timestamp: 1669158729416 +- name: backports + version: '1.0' + manager: conda + platform: osx-arm64 + dependencies: + python: '>=2.7' + url: https://conda.anaconda.org/conda-forge/noarch/backports-1.0-pyhd8ed1ab_3.conda + hash: + md5: 54ca2e08b3220c148a1d8329c2678e02 + sha256: 711602276ae39276cb0faaca6fd0ac851fff0ca17151917569174841ef830bbd + optional: false + category: main + build: pyhd8ed1ab_3 + arch: aarch64 + subdir: osx-arm64 + build_number: 3 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 5950 + timestamp: 1669158729416 - name: backports version: '1.0' manager: conda @@ -1834,6 +2399,29 @@ package: noarch: python size: 11519 timestamp: 1687772319931 +- name: backports.functools_lru_cache + version: 1.6.5 + manager: conda + platform: osx-arm64 + dependencies: + backports: '*' + python: '>=3.6' + setuptools: '*' + url: https://conda.anaconda.org/conda-forge/noarch/backports.functools_lru_cache-1.6.5-pyhd8ed1ab_0.conda + hash: + md5: 6b1b907661838a75d067a22f87996b2e + sha256: 7027bb689dd4ca4a08e3b25805de9d04239be6b31125993558f21f102a9d2700 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 11519 + timestamp: 1687772319931 - name: backports.functools_lru_cache version: 1.6.5 manager: conda @@ -1901,6 +2489,28 @@ package: noarch: python size: 115011 timestamp: 1680888259061 +- name: beautifulsoup4 + version: 4.12.2 + manager: conda + platform: osx-arm64 + 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 + optional: false + category: main + build: pyha770c72_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 115011 + timestamp: 1680888259061 - name: beautifulsoup4 version: 4.12.2 manager: conda @@ -1975,6 +2585,32 @@ package: license_family: MIT size: 359620 timestamp: 1697651859145 +- name: black + version: 23.10.0 + manager: conda + platform: osx-arm64 + dependencies: + click: '>=8.0.0' + mypy_extensions: '>=0.4.3' + packaging: '>=22.0' + pathspec: '>=0.9' + platformdirs: '>=2' + python: '>=3.11,<3.12.0a0 *_cpython' + python_abi: 3.11.* *_cp311 + url: https://conda.anaconda.org/conda-forge/osx-arm64/black-23.10.0-py311h267d04e_0.conda + hash: + md5: 440295e8efcbcfe98c8c13eba57c6d26 + sha256: 7e5602bda14e0dc4de4d5ba184f065e81b80fc2cecf602e1d1c2fca270f62deb + optional: false + category: main + build: py311h267d04e_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: MIT + license_family: MIT + size: 360031 + timestamp: 1697651800632 - name: black version: 23.10.0 manager: conda @@ -2051,6 +2687,31 @@ package: noarch: python size: 131220 timestamp: 1696630354218 +- name: bleach + version: 6.1.0 + manager: conda + platform: osx-arm64 + dependencies: + packaging: '*' + python: '>=3.6' + setuptools: '*' + six: '>=1.9.0' + webencodings: '*' + url: https://conda.anaconda.org/conda-forge/noarch/bleach-6.1.0-pyhd8ed1ab_0.conda + hash: + md5: 0ed9d7c0e9afa7c025807a9a8136ea3e + sha256: 845e77ef495376c5c3c328ccfd746ca0ef1978150cae8eae61a300fe7755fb08 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: Apache-2.0 + license_family: Apache + noarch: python + size: 131220 + timestamp: 1696630354218 - name: bleach version: 6.1.0 manager: conda @@ -2128,23 +2789,47 @@ package: - name: blosc version: 1.21.5 manager: conda - platform: win-64 + platform: osx-arm64 dependencies: + libcxx: '>=15.0.7' libzlib: '>=1.2.13,<1.3.0a0' lz4-c: '>=1.9.3,<1.10.0a0' snappy: '>=1.1.10,<2.0a0' - ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' zstd: '>=1.5.5,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/win-64/blosc-1.21.5-hdccc3a2_0.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/blosc-1.21.5-hc338f07_0.conda hash: - md5: 77a5cea2ce92907b7d1e7954457a526a - sha256: 73cee35e5366ce998ef36ccccb4c11ef9ead297886cc08269379f91539131288 + md5: 93fccb1150aa377576107ecd0ad375b3 + sha256: 81f206dd843fe0da894d0480ea9d689fe948fa4b3cad060f97b016af4ac7b3a1 optional: false category: main - build: hdccc3a2_0 - arch: x86_64 + build: hc338f07_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + size: 33450 + timestamp: 1693657320331 +- name: blosc + version: 1.21.5 + manager: conda + platform: win-64 + dependencies: + libzlib: '>=1.2.13,<1.3.0a0' + lz4-c: '>=1.9.3,<1.10.0a0' + snappy: '>=1.1.10,<2.0a0' + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vc14_runtime: '>=14.29.30139' + zstd: '>=1.5.5,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/win-64/blosc-1.21.5-hdccc3a2_0.conda + hash: + md5: 77a5cea2ce92907b7d1e7954457a526a + sha256: 73cee35e5366ce998ef36ccccb4c11ef9ead297886cc08269379f91539131288 + optional: false + category: main + build: hdccc3a2_0 + arch: x86_64 subdir: win-64 build_number: 0 license: BSD-3-Clause @@ -2152,7 +2837,7 @@ package: size: 50069 timestamp: 1693657396550 - name: bmipy - version: '2.0' + version: 2.0.1 manager: conda platform: linux-64 dependencies: @@ -2161,24 +2846,23 @@ package: jinja2: '*' numpy: '*' python: '>=3' - six: '*' - url: https://conda.anaconda.org/conda-forge/noarch/bmipy-2.0-py_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/bmipy-2.0.1-pyhd8ed1ab_0.conda hash: - md5: 09c29e1098ac9d79df603f3de51aa8ae - sha256: f8bb604a5892ba2c2446558f7ec8c7546fc614c82658cba3390ace663701e0be + md5: 686cb5c54d3a3a028f4bce356b3e0030 + sha256: 2eaaa2a70871f608d074f445596bfc7cc7ecf36d9354c5e607b517d1408d16bd optional: false category: main - build: py_0 + build: pyhd8ed1ab_0 arch: x86_64 subdir: linux-64 build_number: 0 license: MIT license_family: MIT noarch: python - size: 11078 - timestamp: 1576274472294 + size: 14075 + timestamp: 1698243713437 - name: bmipy - version: '2.0' + version: 2.0.1 manager: conda platform: osx-64 dependencies: @@ -2187,24 +2871,48 @@ package: jinja2: '*' numpy: '*' python: '>=3' - six: '*' - url: https://conda.anaconda.org/conda-forge/noarch/bmipy-2.0-py_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/bmipy-2.0.1-pyhd8ed1ab_0.conda hash: - md5: 09c29e1098ac9d79df603f3de51aa8ae - sha256: f8bb604a5892ba2c2446558f7ec8c7546fc614c82658cba3390ace663701e0be + md5: 686cb5c54d3a3a028f4bce356b3e0030 + sha256: 2eaaa2a70871f608d074f445596bfc7cc7ecf36d9354c5e607b517d1408d16bd optional: false category: main - build: py_0 + build: pyhd8ed1ab_0 arch: x86_64 subdir: osx-64 build_number: 0 license: MIT license_family: MIT noarch: python - size: 11078 - timestamp: 1576274472294 + size: 14075 + timestamp: 1698243713437 +- name: bmipy + version: 2.0.1 + manager: conda + platform: osx-arm64 + dependencies: + black: '*' + click: '*' + jinja2: '*' + numpy: '*' + python: '>=3' + url: https://conda.anaconda.org/conda-forge/noarch/bmipy-2.0.1-pyhd8ed1ab_0.conda + hash: + md5: 686cb5c54d3a3a028f4bce356b3e0030 + sha256: 2eaaa2a70871f608d074f445596bfc7cc7ecf36d9354c5e607b517d1408d16bd + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 14075 + timestamp: 1698243713437 - name: bmipy - version: '2.0' + version: 2.0.1 manager: conda platform: win-64 dependencies: @@ -2213,22 +2921,21 @@ package: jinja2: '*' numpy: '*' python: '>=3' - six: '*' - url: https://conda.anaconda.org/conda-forge/noarch/bmipy-2.0-py_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/bmipy-2.0.1-pyhd8ed1ab_0.conda hash: - md5: 09c29e1098ac9d79df603f3de51aa8ae - sha256: f8bb604a5892ba2c2446558f7ec8c7546fc614c82658cba3390ace663701e0be + md5: 686cb5c54d3a3a028f4bce356b3e0030 + sha256: 2eaaa2a70871f608d074f445596bfc7cc7ecf36d9354c5e607b517d1408d16bd optional: false category: main - build: py_0 + build: pyhd8ed1ab_0 arch: x86_64 subdir: win-64 build_number: 0 license: MIT license_family: MIT noarch: python - size: 11078 - timestamp: 1576274472294 + size: 14075 + timestamp: 1698243713437 - name: branca version: 0.6.0 manager: conda @@ -2275,6 +2982,29 @@ package: noarch: python size: 27849 timestamp: 1667848843468 +- name: branca + version: 0.6.0 + manager: conda + platform: osx-arm64 + dependencies: + jinja2: '*' + python: '>=3.7' + setuptools: '*' + url: https://conda.anaconda.org/conda-forge/noarch/branca-0.6.0-pyhd8ed1ab_0.tar.bz2 + hash: + md5: f4cc65697763ef8c2f7555f1ec355a6b + sha256: 46175d4dd94e458b2c5303a4cd816db6c45ff302b1b1852c1fd37411ce171f05 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 27849 + timestamp: 1667848843468 - name: branca version: 0.6.0 manager: conda @@ -2343,6 +3073,28 @@ package: license_family: MIT size: 19530 timestamp: 1695990310168 +- name: brotli + version: 1.1.0 + manager: conda + platform: osx-arm64 + dependencies: + brotli-bin: ==1.1.0 hb547adb_1 + libbrotlidec: ==1.1.0 hb547adb_1 + libbrotlienc: ==1.1.0 hb547adb_1 + url: https://conda.anaconda.org/conda-forge/osx-arm64/brotli-1.1.0-hb547adb_1.conda + hash: + md5: a33aa58d448cbc054f887e39dd1dfaea + sha256: 62d1587deab752fcee07adc371eb20fcadc09f72c0c85399c22b637ca858020f + optional: false + category: main + build: hb547adb_1 + arch: aarch64 + subdir: osx-arm64 + build_number: 1 + license: MIT + license_family: MIT + size: 19506 + timestamp: 1695990588610 - name: brotli version: 1.1.0 manager: conda @@ -2411,6 +3163,27 @@ package: license_family: MIT size: 16660 timestamp: 1695990286737 +- name: brotli-bin + version: 1.1.0 + manager: conda + platform: osx-arm64 + dependencies: + libbrotlidec: ==1.1.0 hb547adb_1 + libbrotlienc: ==1.1.0 hb547adb_1 + url: https://conda.anaconda.org/conda-forge/osx-arm64/brotli-bin-1.1.0-hb547adb_1.conda + hash: + md5: 990d04f8c017b1b77103f9a7730a5f12 + sha256: 8fbfc2834606292016f2faffac67deea4c5cdbc21a61169f0b355e1600105a24 + optional: false + category: main + build: hb547adb_1 + arch: aarch64 + subdir: osx-arm64 + build_number: 1 + license: MIT + license_family: MIT + size: 17001 + timestamp: 1695990551239 - name: brotli-bin version: 1.1.0 manager: conda @@ -2484,6 +3257,30 @@ package: license_family: MIT size: 366864 timestamp: 1695990449997 +- name: brotli-python + version: 1.1.0 + manager: conda + platform: osx-arm64 + dependencies: + libcxx: '>=15.0.7' + python: '>=3.11,<3.12.0a0 *_cpython' + python_abi: 3.11.* *_cp311 + url: https://conda.anaconda.org/conda-forge/osx-arm64/brotli-python-1.1.0-py311ha891d26_1.conda + hash: + md5: 5e802b015e33447d1283d599d21f052b + sha256: 2d78c79ccf2c17236c52ef217a4c34b762eb7908a6903d94439f787aac1c8f4b + optional: false + category: main + build: py311ha891d26_1 + arch: aarch64 + subdir: osx-arm64 + build_number: 1 + constrains: + - libbrotlicommon 1.1.0 hb547adb_1 + license: MIT + license_family: MIT + size: 343332 + timestamp: 1695991223439 - name: brotli-python version: 1.1.0 manager: conda @@ -2560,6 +3357,31 @@ package: noarch: python size: 17759 timestamp: 1631843776429 +- name: build + version: 0.7.0 + manager: conda + platform: osx-arm64 + dependencies: + importlib-metadata: '*' + packaging: '*' + pep517: '>=0.9.1' + python: '>=3.6' + tomli: '*' + url: https://conda.anaconda.org/conda-forge/noarch/build-0.7.0-pyhd8ed1ab_0.tar.bz2 + hash: + md5: add7f31586d03678695b32b78a1337a1 + sha256: 44e2d3270209d1f10b8adec2a159699ed66914e851ec34775902e856ea04afeb + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 17759 + timestamp: 1631843776429 - name: build version: 0.7.0 manager: conda @@ -2624,6 +3446,25 @@ package: license_family: BSD size: 158829 timestamp: 1618862580095 +- name: bzip2 + version: 1.0.8 + manager: conda + platform: osx-arm64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-arm64/bzip2-1.0.8-h3422bc3_4.tar.bz2 + hash: + md5: fc76ace7b94fb1f694988ab1b14dd248 + sha256: a3efbd06ad1432edb0163c48225421f34c2660f5cc002283a8d27e791320b549 + optional: false + category: main + build: h3422bc3_4 + arch: aarch64 + subdir: osx-arm64 + build_number: 4 + license: bzip2-1.0.6 + license_family: BSD + size: 151850 + timestamp: 1618862645215 - name: bzip2 version: 1.0.8 manager: conda @@ -2684,6 +3525,25 @@ package: license_family: MIT size: 103592 timestamp: 1697955959402 +- name: c-ares + version: 1.20.1 + manager: conda + platform: osx-arm64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-arm64/c-ares-1.20.1-h93a5062_1.conda + hash: + md5: 2bb255dbcb73d1986e03cc5a7767c0bf + sha256: 9f588eb920a793c6501120ed198d34afba763b2b2c0ae6de518c3735aea21d5e + optional: false + category: main + build: h93a5062_1 + arch: aarch64 + subdir: osx-arm64 + build_number: 1 + license: MIT + license_family: MIT + size: 101995 + timestamp: 1697955983023 - name: c-ares version: 1.20.1 manager: conda @@ -2742,6 +3602,24 @@ package: license: ISC size: 149911 timestamp: 1690026363769 +- name: ca-certificates + version: 2023.7.22 + manager: conda + platform: osx-arm64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-arm64/ca-certificates-2023.7.22-hf0a4a13_0.conda + hash: + md5: e1b99ac4dbcee71a71682996f67f7965 + sha256: b220c001b0c1448a47cc49b42a622e06a540ec60b3f7a1e057fca1f37ce515e4 + optional: false + category: main + build: hf0a4a13_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: ISC + size: 149918 + timestamp: 1690026385821 - name: ca-certificates version: 2023.7.22 manager: conda @@ -2802,6 +3680,27 @@ package: noarch: python size: 4134 timestamp: 1615209571450 +- name: cached-property + version: 1.5.2 + manager: conda + platform: osx-arm64 + 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 + optional: false + category: main + build: hd8ed1ab_1 + arch: aarch64 + subdir: osx-arm64 + build_number: 1 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 4134 + timestamp: 1615209571450 - name: cached-property version: 1.5.2 manager: conda @@ -2865,6 +3764,27 @@ package: noarch: python size: 11065 timestamp: 1615209567874 +- name: cached_property + version: 1.5.2 + manager: conda + platform: osx-arm64 + 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 + optional: false + category: main + build: pyha770c72_1 + arch: aarch64 + subdir: osx-arm64 + build_number: 1 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 11065 + timestamp: 1615209567874 - name: cached_property version: 1.5.2 manager: conda @@ -2950,6 +3870,35 @@ package: license: LGPL-2.1-only or MPL-1.1 size: 885311 timestamp: 1697028802967 +- name: cairo + version: 1.18.0 + manager: conda + platform: osx-arm64 + dependencies: + __osx: '>=10.9' + fontconfig: '>=2.14.2,<3.0a0' + fonts-conda-ecosystem: '*' + freetype: '>=2.12.1,<3.0a0' + icu: '>=73.2,<74.0a0' + libcxx: '>=16.0.6' + libglib: '>=2.78.0,<3.0a0' + libpng: '>=1.6.39,<1.7.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + pixman: '>=0.42.2,<1.0a0' + zlib: '*' + url: https://conda.anaconda.org/conda-forge/osx-arm64/cairo-1.18.0-hd1e100b_0.conda + hash: + md5: 3fa6eebabb77f65e82f86b72b95482db + sha256: 599f8820553b3a3405706d9cad390ac199e24515a0a82c87153c9b5b5fdba3b8 + optional: false + category: main + build: hd1e100b_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: LGPL-2.1-only or MPL-1.1 + size: 897919 + timestamp: 1697028755150 - name: cairo version: 1.18.0 manager: conda @@ -3020,6 +3969,26 @@ package: noarch: python size: 153791 timestamp: 1690024617757 +- name: certifi + version: 2023.7.22 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.7' + url: https://conda.anaconda.org/conda-forge/noarch/certifi-2023.7.22-pyhd8ed1ab_0.conda + hash: + md5: 7f3dbc9179b4dde7da98dfb151d0ad22 + sha256: db66e31866ff4250c190788769e3a8a1709237c3e9c38d7143aae95ab75fcb31 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: ISC + noarch: python + size: 153791 + timestamp: 1690024617757 - name: certifi version: 2023.7.22 manager: conda @@ -3087,6 +4056,29 @@ package: license_family: MIT size: 289932 timestamp: 1696002096156 +- name: cffi + version: 1.16.0 + manager: conda + platform: osx-arm64 + dependencies: + libffi: '>=3.4,<4.0a0' + pycparser: '*' + python: '>=3.11,<3.12.0a0 *_cpython' + python_abi: 3.11.* *_cp311 + url: https://conda.anaconda.org/conda-forge/osx-arm64/cffi-1.16.0-py311h4a08483_0.conda + hash: + md5: cbdde0484a47b40e6ce2a4e5aaeb48d7 + sha256: 9430416328fe2a28e206e703de771817064c8613a79a6a21fe7107f6a783104c + optional: false + category: main + build: py311h4a08483_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: MIT + license_family: MIT + size: 292511 + timestamp: 1696002194472 - name: cffi version: 1.16.0 manager: conda @@ -3157,7 +4149,7 @@ package: - name: cfgv version: 3.3.1 manager: conda - platform: win-64 + platform: osx-arm64 dependencies: python: '>=3.6.1' url: https://conda.anaconda.org/conda-forge/noarch/cfgv-3.3.1-pyhd8ed1ab_0.tar.bz2 @@ -3167,24 +4159,45 @@ package: optional: false category: main build: pyhd8ed1ab_0 - arch: x86_64 - subdir: win-64 + arch: aarch64 + subdir: osx-arm64 build_number: 0 license: MIT license_family: MIT noarch: python size: 10788 timestamp: 1629909423398 -- name: cfitsio - version: 4.3.0 +- name: cfgv + version: 3.3.1 manager: conda - platform: linux-64 + platform: win-64 dependencies: - bzip2: '>=1.0.8,<2.0a0' - libcurl: '>=8.2.0,<9.0a0' - libgcc-ng: '>=12' - libgfortran-ng: '*' - libgfortran5: '>=12.3.0' + 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 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 10788 + timestamp: 1629909423398 +- name: cfitsio + version: 4.3.0 + manager: conda + platform: linux-64 + 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-64/cfitsio-4.3.0-hbdc6101_0.conda hash: @@ -3222,6 +4235,29 @@ package: license: LicenseRef-fitsio size: 843556 timestamp: 1690378027019 +- name: cfitsio + version: 4.3.0 + manager: conda + platform: osx-arm64 + dependencies: + bzip2: '>=1.0.8,<2.0a0' + libcurl: '>=8.2.0,<9.0a0' + libgfortran: 5.* + libgfortran5: '>=12.3.0' + libzlib: '>=1.2.13,<1.3.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/cfitsio-4.3.0-hca87796_0.conda + hash: + md5: a5a1019a6405052124e97999a5204a74 + sha256: 5d03f8d484d29f8d3bdd64afe22ed29d75c639834b40382f8a520f96a7af27c4 + optional: false + category: main + build: hca87796_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: LicenseRef-fitsio + size: 786305 + timestamp: 1690378144618 - name: cfitsio version: 4.3.0 manager: conda @@ -3287,6 +4323,27 @@ package: license_family: GPL size: 267330 timestamp: 1695468986364 +- name: chardet + version: 5.2.0 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.11,<3.12.0a0 *_cpython' + python_abi: 3.11.* *_cp311 + url: https://conda.anaconda.org/conda-forge/osx-arm64/chardet-5.2.0-py311h267d04e_1.conda + hash: + md5: 2aa7eb0b906818f900e2075fc244976f + sha256: 69541a0c834baa0b404cb55f8389bb53f8e9d6962055d68285635d6fbc04334c + optional: false + category: main + build: py311h267d04e_1 + arch: aarch64 + subdir: osx-arm64 + build_number: 1 + license: LGPL-2.1-only + license_family: GPL + size: 269754 + timestamp: 1695469210623 - name: chardet version: 5.2.0 manager: conda @@ -3350,6 +4407,27 @@ package: noarch: python size: 46522 timestamp: 1698005510857 +- name: charset-normalizer + 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.1-pyhd8ed1ab_0.conda + hash: + md5: 985378f74689fccce52f158027bd9acd + sha256: a31739c49c4b1c8e0cbdec965ba152683d36ce6e23bdaefcfee99937524dabd1 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 46522 + timestamp: 1698005510857 - name: charset-normalizer version: 3.3.1 manager: conda @@ -3415,6 +4493,28 @@ package: noarch: python size: 84437 timestamp: 1692311973840 +- name: click + version: 8.1.7 + manager: conda + platform: osx-arm64 + 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 + optional: false + category: main + build: unix_pyh707e725_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 84437 + timestamp: 1692311973840 - name: click version: 8.1.7 manager: conda @@ -3482,6 +4582,28 @@ package: noarch: python size: 8992 timestamp: 1554588104889 +- name: click-plugins + version: 1.1.1 + manager: conda + platform: osx-arm64 + dependencies: + click: '>=3.0' + python: '*' + url: https://conda.anaconda.org/conda-forge/noarch/click-plugins-1.1.1-py_0.tar.bz2 + hash: + md5: 4fd2c6b53934bd7d96d1f3fdaf99b79f + sha256: ddef6e559dde6673ee504b0e29dd814d36e22b6b9b1f519fa856ee268905bf92 + optional: false + category: main + build: py_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 8992 + timestamp: 1554588104889 - name: click-plugins version: 1.1.1 manager: conda @@ -3548,6 +4670,28 @@ package: noarch: python size: 10255 timestamp: 1633637895378 +- name: cligj + version: 0.7.2 + manager: conda + platform: osx-arm64 + dependencies: + click: '>=4.0' + python: <4.0 + url: https://conda.anaconda.org/conda-forge/noarch/cligj-0.7.2-pyhd8ed1ab_1.tar.bz2 + hash: + md5: a29b7c141d6b2de4bb67788a5f107734 + sha256: 97bd58f0cfcff56a0bcda101e26f7d936625599325beba3e3a1fa512dd7fc174 + optional: false + category: main + build: pyhd8ed1ab_1 + arch: aarch64 + subdir: osx-arm64 + build_number: 1 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 10255 + timestamp: 1633637895378 - name: cligj version: 0.7.2 manager: conda @@ -3615,6 +4759,28 @@ package: license_family: MIT size: 113116 timestamp: 1695670250339 +- name: cmarkgfm + version: 0.8.0 + manager: conda + platform: osx-arm64 + dependencies: + cffi: '>=1.0.0' + python: '>=3.11,<3.12.0a0 *_cpython' + python_abi: 3.11.* *_cp311 + url: https://conda.anaconda.org/conda-forge/osx-arm64/cmarkgfm-0.8.0-py311heffc1b2_3.conda + hash: + md5: 5cb88950ae060fe9220ed27c2d06987d + sha256: d27c4d0cf73cd86551a403fa8363f61bdd270418a348aebbd51f5ca26be0661e + optional: false + category: main + build: py311heffc1b2_3 + arch: aarch64 + subdir: osx-arm64 + build_number: 3 + license: MIT + license_family: MIT + size: 114180 + timestamp: 1695670152127 - name: cmarkgfm version: 0.8.0 manager: conda @@ -3682,6 +4848,27 @@ package: noarch: python size: 25170 timestamp: 1666700778190 +- name: colorama + version: 0.4.6 + manager: conda + platform: osx-arm64 + 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 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 25170 + timestamp: 1666700778190 - name: colorama version: 0.4.6 manager: conda @@ -3747,6 +4934,28 @@ package: noarch: python size: 11682 timestamp: 1691045097208 +- name: comm + version: 0.1.4 + manager: conda + platform: osx-arm64 + 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 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 11682 + timestamp: 1691045097208 - name: comm version: 0.1.4 manager: conda @@ -3816,6 +5025,29 @@ package: license_family: BSD size: 229250 timestamp: 1695554561690 +- name: contourpy + version: 1.1.1 + manager: conda + platform: osx-arm64 + dependencies: + libcxx: '>=15.0.7' + numpy: '>=1.16' + python: '>=3.11,<3.12.0a0 *_cpython' + python_abi: 3.11.* *_cp311 + url: https://conda.anaconda.org/conda-forge/osx-arm64/contourpy-1.1.1-py311he4fd1f5_1.conda + hash: + md5: 14a8e6c8088ec971aa1a35dfd846797b + sha256: 6fa58b8451707ec4261fdec6c48d4e65addbd168f3c5073c8bdd757db1e2005c + optional: false + category: main + build: py311he4fd1f5_1 + arch: aarch64 + subdir: osx-arm64 + build_number: 1 + license: BSD-3-Clause + license_family: BSD + size: 228551 + timestamp: 1695554685850 - name: contourpy version: 1.1.1 manager: conda @@ -3886,6 +5118,28 @@ package: license_family: APACHE size: 352862 timestamp: 1696282084699 +- name: coverage + version: 7.3.2 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.11,<3.12.0a0 *_cpython' + python_abi: 3.11.* *_cp311 + tomli: '*' + url: https://conda.anaconda.org/conda-forge/osx-arm64/coverage-7.3.2-py311heffc1b2_0.conda + hash: + md5: 75928ad6625a73ff93f08be98014248c + sha256: 88d116c4c51a106c43937b950d3fd14007800fb7b3945573a5a117533c450e6b + optional: false + category: main + build: py311heffc1b2_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: Apache-2.0 + license_family: APACHE + size: 353390 + timestamp: 1696282185517 - name: coverage version: 7.3.2 manager: conda @@ -3977,6 +5231,27 @@ package: noarch: python size: 13458 timestamp: 1696677888423 +- name: cycler + version: 0.12.1 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.8' + url: https://conda.anaconda.org/conda-forge/noarch/cycler-0.12.1-pyhd8ed1ab_0.conda + hash: + md5: 5cd86562580f274031ede6aa6aa24441 + sha256: f221233f21b1d06971792d491445fd548224641af9443739b4b7b6d5d72954a8 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 13458 + timestamp: 1696677888423 - name: cycler version: 0.12.1 manager: conda @@ -4121,6 +5396,39 @@ package: noarch: python size: 67904 timestamp: 1697485593422 +- name: datamodel-code-generator + version: 0.22.1 + manager: conda + platform: osx-arm64 + dependencies: + argcomplete: '>=1.10,<4.0' + black: '>=19.10b0' + genson: '>=1.2.1,<2.0' + inflect: '>=4.1.0,<6.0' + isort: '>=4.3.21,<6.0' + jinja2: '>=2.10.1,<4.0' + openapi-spec-validator: '>=0.2.8,<=0.5.7' + packaging: '*' + prance: '>=0.18.2' + pydantic: '>=1.5.1,<3.0' + pysnooper: '>=0.4.1,<2.0.0' + python: '>=3.7,<4.0' + toml: '>=0.10.0,<1.0.0' + url: https://conda.anaconda.org/conda-forge/noarch/datamodel-code-generator-0.22.1-pyhd8ed1ab_0.conda + hash: + md5: 58029bb03a820191f17d4c0cc19c9918 + sha256: a304bc4fde87e42691371023e1b92c9677aa401294028de67ebc45eb917dc71c + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 67904 + timestamp: 1697485593422 - name: datamodel-code-generator version: 0.22.1 manager: conda @@ -4224,16 +5532,38 @@ package: - name: debugpy version: 1.8.0 manager: conda - platform: win-64 + platform: osx-arm64 dependencies: - python: '>=3.11,<3.12.0a0' + libcxx: '>=15.0.7' + python: '>=3.11,<3.12.0a0 *_cpython' python_abi: 3.11.* *_cp311 - ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/debugpy-1.8.0-py311h12c1d0e_1.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/debugpy-1.8.0-py311ha891d26_1.conda hash: - md5: 8f521f35a7544cbf058b24e11561d53a + md5: 575b875f1e7901213e9a0f44db9deccc + sha256: a7c3b4abf2d3d5256be7e891e76c86dd52e3893e9495d468e3c95e82932b9d7b + optional: false + category: main + build: py311ha891d26_1 + arch: aarch64 + subdir: osx-arm64 + build_number: 1 + license: MIT + license_family: MIT + size: 2957693 + timestamp: 1695534717336 +- name: debugpy + version: 1.8.0 + manager: conda + platform: win-64 + dependencies: + python: '>=3.11,<3.12.0a0' + python_abi: 3.11.* *_cp311 + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vc14_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/debugpy-1.8.0-py311h12c1d0e_1.conda + hash: + md5: 8f521f35a7544cbf058b24e11561d53a sha256: df14ab3bfa7864fedda2d45b16057792ad29dd607f0ff9a86b3e9cfbd0c41332 optional: false category: main @@ -4287,6 +5617,27 @@ package: noarch: python size: 12072 timestamp: 1641555714315 +- name: decorator + version: 5.1.1 + manager: conda + platform: osx-arm64 + 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 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: BSD-2-Clause + license_family: BSD + noarch: python + size: 12072 + timestamp: 1641555714315 - name: decorator version: 5.1.1 manager: conda @@ -4350,6 +5701,27 @@ package: noarch: python size: 24062 timestamp: 1615232388757 +- name: defusedxml + version: 0.7.1 + manager: conda + platform: osx-arm64 + 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 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: PSF-2.0 + license_family: PSF + noarch: python + size: 24062 + timestamp: 1615232388757 - name: defusedxml version: 0.7.1 manager: conda @@ -4535,6 +5907,27 @@ package: noarch: python size: 273692 timestamp: 1689598624555 +- name: distlib + version: 0.3.7 + manager: conda + platform: osx-arm64 + 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 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: Apache-2.0 + license_family: APACHE + noarch: python + size: 273692 + timestamp: 1689598624555 - name: distlib version: 0.3.7 manager: conda @@ -4596,6 +5989,26 @@ package: license: LicenseRef-Public-Domain-Dedictation AND BSD-3-Clause AND BSD-2-Clause AND LicenseRef-PSF-2.1.1 size: 921558 timestamp: 1695300850498 +- name: docutils + version: 0.20.1 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.11,<3.12.0a0 *_cpython' + python_abi: 3.11.* *_cp311 + url: https://conda.anaconda.org/conda-forge/osx-arm64/docutils-0.20.1-py311h267d04e_2.conda + hash: + md5: e82ee6e9db96d5f7ddf289399744240d + sha256: 3bc810b946ef8f87681ea4bee2610e8c418f9f61772f5d1ff3ffa803ae7cfbb6 + optional: false + category: main + build: py311h267d04e_2 + arch: aarch64 + subdir: osx-arm64 + build_number: 2 + license: LicenseRef-Public-Domain-Dedictation AND BSD-3-Clause AND BSD-2-Clause AND LicenseRef-PSF-2.1.1 + size: 921098 + timestamp: 1695300974246 - name: docutils version: 0.20.1 manager: conda @@ -4658,6 +6071,27 @@ package: noarch: python size: 9199 timestamp: 1643888357950 +- name: entrypoints + version: '0.4' + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.6' + url: https://conda.anaconda.org/conda-forge/noarch/entrypoints-0.4-pyhd8ed1ab_0.tar.bz2 + hash: + md5: 3cf04868fee0a029769bd41f4b2fbf2d + sha256: 2ec4a0900a4a9f42615fc04d0fb3286b796abe56590e8e042f6ec25e102dd5af + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 9199 + timestamp: 1643888357950 - name: entrypoints version: '0.4' manager: conda @@ -4780,6 +6214,27 @@ package: noarch: python size: 19262 timestamp: 1692026296517 +- name: exceptiongroup + version: 1.1.3 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.7' + url: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.1.3-pyhd8ed1ab_0.conda + hash: + md5: e6518222753f519e911e83136d2158d9 + sha256: c28f715e049fe0f09785660bcbffa175ffb438720e5bc5a60d56d4b08364b315 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 19262 + timestamp: 1692026296517 - name: exceptiongroup version: 1.1.3 manager: conda @@ -4843,6 +6298,27 @@ package: noarch: python size: 36534 timestamp: 1688933537234 +- name: execnet + version: 2.0.2 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.7' + url: https://conda.anaconda.org/conda-forge/noarch/execnet-2.0.2-pyhd8ed1ab_0.conda + hash: + md5: 67de0d8241e1060a479e3c37793e26f9 + sha256: 88ea68a360198af39368beecf057af6b31f0ae38071b2bdb2aa961b6ae5427c0 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 36534 + timestamp: 1688933537234 - name: execnet version: 2.0.2 manager: conda @@ -4906,6 +6382,27 @@ package: noarch: python size: 25013 timestamp: 1667317463548 +- name: executing + version: 1.2.0 + manager: conda + platform: osx-arm64 + 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 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 25013 + timestamp: 1667317463548 - name: executing version: 1.2.0 manager: conda @@ -4968,6 +6465,26 @@ package: license_family: MIT size: 120323 timestamp: 1680191057827 +- name: expat + version: 2.5.0 + manager: conda + platform: osx-arm64 + dependencies: + libexpat: ==2.5.0 hb7217d7_1 + url: https://conda.anaconda.org/conda-forge/osx-arm64/expat-2.5.0-hb7217d7_1.conda + hash: + md5: 624fa0dd6fdeaa650b71a62296fdfedf + sha256: 9f06afbe4604decf6a2e8e7e87f5ca218a3e9049d57d5b3fcd538ca6240d21a0 + optional: false + category: main + build: hb7217d7_1 + arch: aarch64 + subdir: osx-arm64 + build_number: 1 + license: MIT + license_family: MIT + size: 117851 + timestamp: 1680190940654 - name: expat version: 2.5.0 manager: conda @@ -5028,6 +6545,26 @@ package: noarch: python size: 15153 timestamp: 1694629394497 +- name: filelock + version: 3.12.4 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.7' + url: https://conda.anaconda.org/conda-forge/noarch/filelock-3.12.4-pyhd8ed1ab_0.conda + hash: + md5: 5173d4b8267a0699a43d73231e0b6596 + sha256: 7463c64364c14b34a7a69a7550a880ccd1ec6d3014001e55913e6e4e8b0c7395 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: Unlicense + noarch: python + size: 15153 + timestamp: 1694629394497 - name: filelock version: 3.12.4 manager: conda @@ -5118,6 +6655,41 @@ package: license_family: BSD size: 871895 timestamp: 1697078935194 +- name: fiona + version: 1.9.5 + manager: conda + platform: osx-arm64 + dependencies: + __osx: '>=10.9' + attrs: '>=17' + click: '>=4.0' + click-plugins: '>=1.0' + cligj: '>=0.5' + gdal: '*' + importlib-metadata: '*' + libcxx: '>=16.0.6' + libgdal: '>=3.7.2,<3.8.0a0' + munch: '*' + numpy: '>=1.23.5,<2.0a0' + python: '>=3.11,<3.12.0a0 *_cpython' + python_abi: 3.11.* *_cp311 + setuptools: '*' + shapely: '*' + six: '>=1.7' + url: https://conda.anaconda.org/conda-forge/osx-arm64/fiona-1.9.5-py311h45231e3_0.conda + hash: + md5: 50d570663d8aca587902d0f3642f17ac + sha256: 008993778253638c048f61ed90fded9f3090dd2fbeb5b9c48f5a6a8ac382e4cf + optional: false + category: main + build: py311h45231e3_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + size: 873617 + timestamp: 1697078901418 - name: fiona version: 1.9.5 manager: conda @@ -5204,6 +6776,31 @@ package: noarch: python size: 72892 timestamp: 1670956406559 +- name: folium + version: 0.14.0 + manager: conda + platform: osx-arm64 + dependencies: + branca: '>=0.6.0' + jinja2: '>=2.9' + numpy: '*' + python: '>=3.6' + requests: '*' + url: https://conda.anaconda.org/conda-forge/noarch/folium-0.14.0-pyhd8ed1ab_0.conda + hash: + md5: 48c8bb19df0d0268f1a9d30ffc56c5b0 + sha256: 60c51dacc4edb33ba02a7224ddec9d938200f89588eb34b0ccdffc96155795fe + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 72892 + timestamp: 1670956406559 - name: folium version: 0.14.0 manager: conda @@ -5269,6 +6866,26 @@ package: noarch: generic size: 397370 timestamp: 1566932522327 +- name: font-ttf-dejavu-sans-mono + version: '2.37' + manager: conda + platform: osx-arm64 + 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 + optional: false + category: main + build: hab24e00_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: generic + size: 397370 + timestamp: 1566932522327 - name: font-ttf-dejavu-sans-mono version: '2.37' manager: conda @@ -5332,7 +6949,7 @@ package: - name: font-ttf-inconsolata version: '3.000' manager: conda - platform: win-64 + platform: osx-arm64 dependencies: {} url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-inconsolata-3.000-h77eed37_0.tar.bz2 hash: @@ -5341,20 +6958,40 @@ package: optional: false category: main build: h77eed37_0 - arch: x86_64 - subdir: win-64 + arch: aarch64 + subdir: osx-arm64 build_number: 0 license: OFL-1.1 license_family: Other noarch: generic size: 96530 timestamp: 1620479909603 -- name: font-ttf-source-code-pro - version: '2.038' +- name: font-ttf-inconsolata + version: '3.000' manager: conda - platform: linux-64 + platform: win-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-source-code-pro-2.038-h77eed37_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-inconsolata-3.000-h77eed37_0.tar.bz2 + hash: + md5: 34893075a5c9e55cdafac56607368fc6 + sha256: c52a29fdac682c20d252facc50f01e7c2e7ceac52aa9817aaf0bb83f7559ec5c + optional: false + category: main + build: h77eed37_0 + arch: x86_64 + subdir: win-64 + build_number: 0 + license: OFL-1.1 + license_family: Other + noarch: generic + size: 96530 + timestamp: 1620479909603 +- name: font-ttf-source-code-pro + version: '2.038' + manager: conda + platform: linux-64 + 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 @@ -5389,6 +7026,26 @@ package: noarch: generic size: 700814 timestamp: 1620479612257 +- name: font-ttf-source-code-pro + version: '2.038' + manager: conda + platform: osx-arm64 + 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 + optional: false + category: main + build: h77eed37_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: OFL-1.1 + license_family: Other + noarch: generic + size: 700814 + timestamp: 1620479612257 - name: font-ttf-source-code-pro version: '2.038' manager: conda @@ -5449,6 +7106,26 @@ package: noarch: generic size: 1961279 timestamp: 1566932680646 +- name: font-ttf-ubuntu + version: '0.83' + manager: conda + platform: osx-arm64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-ubuntu-0.83-hab24e00_0.tar.bz2 + hash: + md5: 19410c3df09dfb12d1206132a1d357c5 + sha256: 470d5db54102bd51dbb0c5990324a2f4a0bc976faa493b22193338adb9882e2e + optional: false + category: main + build: hab24e00_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: Ubuntu Font Licence Version 1.0 + license_family: Other + noarch: generic + size: 1961279 + timestamp: 1566932680646 - name: font-ttf-ubuntu version: '0.83' manager: conda @@ -5515,6 +7192,28 @@ package: license_family: MIT size: 237068 timestamp: 1674829100063 +- name: fontconfig + version: 2.14.2 + manager: conda + platform: osx-arm64 + dependencies: + expat: '>=2.5.0,<3.0a0' + freetype: '>=2.12.1,<3.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/fontconfig-2.14.2-h82840c6_0.conda + hash: + md5: f77d47ddb6d3cc5b39b9bdf65635afbb + sha256: 7094917fc6758186e17c61d8ee8fd2bbbe9f303b4addac61d918fa415c497e2b + optional: false + category: main + build: h82840c6_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: MIT + license_family: MIT + size: 237668 + timestamp: 1674829263740 - name: fontconfig version: 2.14.2 manager: conda @@ -5583,6 +7282,27 @@ package: noarch: generic size: 3667 timestamp: 1566974674465 +- name: fonts-conda-ecosystem + version: '1' + manager: conda + platform: osx-arm64 + dependencies: + fonts-conda-forge: '*' + url: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2 + hash: + md5: fee5683a3f04bd15cbd8318b096a27ab + sha256: a997f2f1921bb9c9d76e6fa2f6b408b7fa549edd349a77639c9fe7a23ea93e61 + optional: false + category: main + build: '0' + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: generic + size: 3667 + timestamp: 1566974674465 - name: fonts-conda-ecosystem version: '1' manager: conda @@ -5652,6 +7372,30 @@ package: noarch: generic size: 4102 timestamp: 1566932280397 +- name: fonts-conda-forge + version: '1' + manager: conda + platform: osx-arm64 + dependencies: + font-ttf-dejavu-sans-mono: '*' + font-ttf-inconsolata: '*' + font-ttf-source-code-pro: '*' + font-ttf-ubuntu: '*' + url: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2 + hash: + md5: f766549260d6815b0c52253f1fb1bb29 + sha256: 53f23a3319466053818540bcdf2091f253cbdbab1e0e9ae7b9e509dcaa2a5e38 + optional: false + category: main + build: '0' + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: generic + size: 4102 + timestamp: 1566932280397 - name: fonts-conda-forge version: '1' manager: conda @@ -5723,6 +7467,29 @@ package: license_family: MIT size: 2647724 timestamp: 1696601655817 +- name: fonttools + version: 4.43.1 + manager: conda + platform: osx-arm64 + dependencies: + brotli: '*' + munkres: '*' + python: '>=3.11,<3.12.0a0 *_cpython' + python_abi: 3.11.* *_cp311 + url: https://conda.anaconda.org/conda-forge/osx-arm64/fonttools-4.43.1-py311h05b510d_0.conda + hash: + md5: b2fa21c160775e62af06d2db79dfc42d + sha256: 0c30de5f545b2b5a38d5239260d796d457bae77bb114c07ed2154a764d76e0c2 + optional: false + category: main + build: py311h05b510d_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: MIT + license_family: MIT + size: 2682609 + timestamp: 1696601722810 - name: fonttools version: 4.43.1 manager: conda @@ -5793,6 +7560,28 @@ package: noarch: python size: 14395 timestamp: 1638810388635 +- name: fqdn + version: 1.5.1 + manager: conda + platform: osx-arm64 + 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 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: MPL-2.0 + license_family: MOZILLA + noarch: python + size: 14395 + timestamp: 1638810388635 - name: fqdn version: 1.5.1 manager: conda @@ -5856,6 +7645,26 @@ package: license: GPL-2.0-only OR FTL size: 599300 timestamp: 1694616137838 +- name: freetype + version: 2.12.1 + manager: conda + platform: osx-arm64 + dependencies: + libpng: '>=1.6.39,<1.7.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/freetype-2.12.1-hadb7bae_2.conda + hash: + md5: e6085e516a3e304ce41a8ee08b9b89ad + sha256: 791673127e037a2dc0eebe122dc4f904cb3f6e635bb888f42cbe1a76b48748d9 + optional: false + category: main + build: hadb7bae_2 + arch: aarch64 + subdir: osx-arm64 + build_number: 2 + license: GPL-2.0-only OR FTL + size: 596430 + timestamp: 1694616332835 - name: freetype version: 2.12.1 manager: conda @@ -5924,6 +7733,28 @@ package: license_family: MOZILLA size: 54007 timestamp: 1694952882265 +- name: freexl + version: 2.0.0 + manager: conda + platform: osx-arm64 + dependencies: + libexpat: '>=2.5.0,<3.0a0' + libiconv: '>=1.17,<2.0a0' + minizip: '>=4.0.1,<5.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/freexl-2.0.0-hfbad9fb_0.conda + hash: + md5: 40722e5f48287567cda6fb2ec1f7891b + sha256: 9cb4957d1431bc57bc95b1e99a50669d91ac3441226a78f69fa030d52f2bda77 + optional: false + category: main + build: hfbad9fb_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: MPL-1.1 + license_family: MOZILLA + size: 55132 + timestamp: 1694952828719 - name: freexl version: 2.0.0 manager: conda @@ -6005,6 +7836,34 @@ package: license_family: MIT size: 1631080 timestamp: 1697155411905 +- name: gdal + version: 3.7.2 + manager: conda + platform: osx-arm64 + dependencies: + __osx: '>=10.9' + hdf5: '>=1.14.2,<1.14.3.0a0' + libcxx: '>=16.0.6' + libgdal: ==3.7.2 h116f65a_7 + 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 *_cpython' + python_abi: 3.11.* *_cp311 + url: https://conda.anaconda.org/conda-forge/osx-arm64/gdal-3.7.2-py311h32a4f3d_7.conda + hash: + md5: f920f8e2bb8926cc4f42994db30bdd6b + sha256: 9785fea3ac4b59fe135b8f430ee7325f6254ad62083f802322f321635f31b43f + optional: false + category: main + build: py311h32a4f3d_7 + arch: aarch64 + subdir: osx-arm64 + build_number: 7 + license: MIT + license_family: MIT + size: 1619231 + timestamp: 1697156334389 - name: gdal version: 3.7.2 manager: conda @@ -6076,6 +7935,27 @@ package: noarch: python size: 20414 timestamp: 1601490140447 +- name: genson + version: 1.2.2 + manager: conda + platform: osx-arm64 + dependencies: + python: '*' + url: https://conda.anaconda.org/conda-forge/noarch/genson-1.2.2-pyh9f0ad1d_0.tar.bz2 + hash: + md5: b81e260d49a36f570e4b251b614dcdde + sha256: 9539754b644f051ed779c943f0faa667e7a8a52993f94c8f228d0507f3607998 + optional: false + category: main + build: pyh9f0ad1d_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 20414 + timestamp: 1601490140447 - name: genson version: 1.2.2 manager: conda @@ -6153,6 +8033,34 @@ package: noarch: python size: 7566 timestamp: 1697032162340 +- name: geopandas + version: 0.14.0 + manager: conda + platform: osx-arm64 + dependencies: + fiona: '>=1.8.21' + folium: '*' + geopandas-base: ==0.14.0 pyha770c72_1 + mapclassify: '>=2.4.0' + matplotlib-base: '*' + python: '>=3.9' + rtree: '*' + xyzservices: '*' + url: https://conda.anaconda.org/conda-forge/noarch/geopandas-0.14.0-pyhd8ed1ab_1.conda + hash: + md5: d3617cddba7ea3dd3234d28faa3bc3b4 + sha256: 2acdc39438b7152da0a08b3daad9b5b066d7b6005beb4cb176c0ef654ef79668 + optional: false + category: main + build: pyhd8ed1ab_1 + arch: aarch64 + subdir: osx-arm64 + build_number: 1 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 7566 + timestamp: 1697032162340 - name: geopandas version: 0.14.0 manager: conda @@ -6231,6 +8139,31 @@ package: noarch: python size: 1017514 timestamp: 1697032153699 +- name: geopandas-base + version: 0.14.0 + manager: conda + platform: osx-arm64 + dependencies: + packaging: '*' + pandas: '>=1.4.0' + pyproj: '>=3.3.0' + python: '>=3.9' + shapely: '>=1.8.0' + url: https://conda.anaconda.org/conda-forge/noarch/geopandas-base-0.14.0-pyha770c72_1.conda + hash: + md5: 614a383c5f4350e0606689f54c6497b1 + sha256: 97fe438e399d9106998e38fc700fdd6f90f15ea92d1e20cf0a01e74436aa24ba + optional: false + category: main + build: pyha770c72_1 + arch: aarch64 + subdir: osx-arm64 + build_number: 1 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 1017514 + timestamp: 1697032153699 - name: geopandas-base version: 0.14.0 manager: conda @@ -6295,6 +8228,25 @@ package: license: LGPL-2.1-only size: 1484046 timestamp: 1687940076636 +- name: geos + version: 3.12.0 + manager: conda + platform: osx-arm64 + dependencies: + libcxx: '>=15.0.7' + url: https://conda.anaconda.org/conda-forge/osx-arm64/geos-3.12.0-h13dd4ca_0.conda + hash: + md5: 18eb5904d2561c782e71bfe05b2ad755 + sha256: 8c21acd399d7509f6a7c7b65d5415e9500333a043f44dee063942d724adffc4a + optional: false + category: main + build: h13dd4ca_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: LGPL-2.1-only + size: 1441490 + timestamp: 1687940009438 - name: geos version: 3.12.0 manager: conda @@ -6370,7 +8322,32 @@ package: - name: geotiff version: 1.7.1 manager: conda - platform: win-64 + platform: osx-arm64 + dependencies: + libcxx: '>=15.0.7' + libjpeg-turbo: '>=3.0.0,<4.0a0' + 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/osx-arm64/geotiff-1.7.1-h71398c0_14.conda + hash: + md5: f2a5ed847c17df7b45467210f5a7c15d + sha256: 0af388cc45d1813c57ba5f30032b22a8fdf9bc2762bacf4101168009d51d24ce + optional: false + category: main + build: h71398c0_14 + arch: aarch64 + subdir: osx-arm64 + build_number: 14 + license: MIT + license_family: MIT + size: 118458 + timestamp: 1695943465844 +- name: geotiff + version: 1.7.1 + manager: conda + platform: win-64 dependencies: libjpeg-turbo: '>=3.0.0,<4.0a0' libtiff: '>=4.6.0,<4.7.0a0' @@ -6432,6 +8409,25 @@ package: license: LGPL-2.1-or-later AND GPL-3.0-or-later size: 4153781 timestamp: 1665674106245 +- name: gettext + version: 0.21.1 + manager: conda + platform: osx-arm64 + dependencies: + libiconv: '>=1.17,<2.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/gettext-0.21.1-h0186832_0.tar.bz2 + hash: + md5: 63d2ff6fddfa74e5458488fd311bf635 + sha256: 093b2f96dc4b48e4952ab8946facec98b34b708a056251fc19c23c3aad30039e + optional: false + category: main + build: h0186832_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: LGPL-2.1-or-later AND GPL-3.0-or-later + size: 4021036 + timestamp: 1665674192347 - name: gettext version: 0.21.1 manager: conda @@ -6492,6 +8488,26 @@ package: license_family: BSD size: 94612 timestamp: 1599590973213 +- name: gflags + version: 2.2.2 + manager: conda + platform: osx-arm64 + dependencies: + libcxx: '>=11.0.0.rc1' + url: https://conda.anaconda.org/conda-forge/osx-arm64/gflags-2.2.2-hc88da5d_1004.tar.bz2 + hash: + md5: aab9ddfad863e9ef81229a1f8852211b + sha256: 25d4a20af2e5ace95fdec88970f6d190e77e20074d2f6d3cef766198b76a4289 + optional: false + category: main + build: hc88da5d_1004 + arch: aarch64 + subdir: osx-arm64 + build_number: 1004 + license: BSD-3-Clause + license_family: BSD + size: 86690 + timestamp: 1599590990520 - name: giflib version: 5.2.1 manager: conda @@ -6531,6 +8547,25 @@ package: license_family: MIT size: 76514 timestamp: 1678717973971 +- name: giflib + version: 5.2.1 + manager: conda + platform: osx-arm64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-arm64/giflib-5.2.1-h1a8c8d9_3.conda + hash: + md5: f39a05d3dbb0e5024b7deabb2c0993f1 + sha256: dbf1e431d3e5e03f8eeb77ec08a4c5d6d5d9af84dbef13d4365e397dd389beb8 + optional: false + category: main + build: h1a8c8d9_3 + arch: aarch64 + subdir: osx-arm64 + build_number: 3 + license: MIT + license_family: MIT + size: 71963 + timestamp: 1678718059849 - name: glib version: 2.78.0 manager: conda @@ -6670,6 +8705,27 @@ package: license_family: BSD size: 100624 timestamp: 1649143914155 +- name: glog + version: 0.6.0 + manager: conda + platform: osx-arm64 + dependencies: + gflags: '>=2.2.2,<2.3.0a0' + libcxx: '>=12.0.1' + url: https://conda.anaconda.org/conda-forge/osx-arm64/glog-0.6.0-h6da1cb0_0.tar.bz2 + hash: + md5: 5a570729c7709399cf8511aeeda6f989 + sha256: 4d772c42477f64be708594ac45870feba3e838977871118eb25e00deb0e9a73c + optional: false + category: main + build: h6da1cb0_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + size: 97658 + timestamp: 1649144191039 - name: graphite2 version: 1.3.13 manager: conda @@ -6878,6 +8934,28 @@ package: license_family: BSD size: 724103 timestamp: 1695661907511 +- name: hdf4 + version: 4.2.15 + manager: conda + platform: osx-arm64 + dependencies: + libcxx: '>=15.0.7' + libjpeg-turbo: '>=3.0.0,<4.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/hdf4-4.2.15-h2ee6834_7.conda + hash: + md5: ff5d749fd711dc7759e127db38005924 + sha256: c3b01e3c3fe4ca1c4d28c287eaa5168a4f2fd3ffd76690082ac919244c22fa90 + optional: false + category: main + build: h2ee6834_7 + arch: aarch64 + subdir: osx-arm64 + build_number: 7 + license: BSD-3-Clause + license_family: BSD + size: 762257 + timestamp: 1695661864625 - name: hdf4 version: 4.2.15 manager: conda @@ -6955,6 +9033,32 @@ package: license_family: BSD size: 3564108 timestamp: 1692563939275 +- name: hdf5 + version: 1.14.2 + manager: conda + platform: osx-arm64 + dependencies: + libaec: '>=1.0.6,<2.0a0' + libcurl: '>=8.2.1,<9.0a0' + libcxx: '>=15.0.7' + libgfortran: 5.* + libgfortran5: '>=12.3.0' + libzlib: '>=1.2.13,<1.3.0a0' + openssl: '>=3.1.2,<4.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/hdf5-1.14.2-nompi_h3aba7b3_100.conda + hash: + md5: 842c5b010b219058098ebfe5aa5891b9 + sha256: 2749910e21a7d1f88a81dc4709fc3565a4a3954eadb4409e7a5be1fc13a5b7ca + optional: false + category: main + build: nompi_h3aba7b3_100 + arch: aarch64 + subdir: osx-arm64 + build_number: 100 + license: LicenseRef-HDF5 + license_family: BSD + size: 3408759 + timestamp: 1692562818610 - name: hdf5 version: 1.14.2 manager: conda @@ -7021,6 +9125,25 @@ package: license_family: MIT size: 11787527 timestamp: 1692901622519 +- name: icu + version: '73.2' + manager: conda + platform: osx-arm64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-arm64/icu-73.2-hc8870d7_0.conda + hash: + md5: 8521bd47c0e11c5902535bb1a17c565f + sha256: ff9cd0c6cd1349954c801fb443c94192b637e1b414514539f3c49c56a39f51b1 + optional: false + category: main + build: hc8870d7_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: MIT + license_family: MIT + size: 11997841 + timestamp: 1692902104771 - name: icu version: '73.2' manager: conda @@ -7087,6 +9210,28 @@ package: noarch: python size: 78089 timestamp: 1696170905976 +- name: identify + version: 2.5.30 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.6' + ukkonen: '*' + url: https://conda.anaconda.org/conda-forge/noarch/identify-2.5.30-pyhd8ed1ab_0.conda + hash: + md5: b7a2e3bb89bda8c69839485c20aabadf + sha256: dc9901654af0556209bb5b4194ef2deb643bc641ac859a31f13c41b945b60150 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 78089 + timestamp: 1696170905976 - name: identify version: 2.5.30 manager: conda @@ -7151,6 +9296,27 @@ package: noarch: python size: 56742 timestamp: 1663625484114 +- name: idna + version: '3.4' + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.6' + url: https://conda.anaconda.org/conda-forge/noarch/idna-3.4-pyhd8ed1ab_0.tar.bz2 + hash: + md5: 34272b248891bddccc64479f9a7fffed + sha256: 9887c35c374ec1847f167292d3fde023cb4c994a4ceeec283072b95440131f09 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 56742 + timestamp: 1663625484114 - name: idna version: '3.4' manager: conda @@ -7216,6 +9382,28 @@ package: noarch: python size: 25910 timestamp: 1688754651944 +- name: importlib-metadata + version: 6.8.0 + manager: conda + platform: osx-arm64 + 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 + optional: false + category: main + build: pyha770c72_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: Apache-2.0 + license_family: APACHE + noarch: python + size: 25910 + timestamp: 1688754651944 - name: importlib-metadata version: 6.8.0 manager: conda @@ -7280,6 +9468,27 @@ package: noarch: generic size: 9428 timestamp: 1688754660209 +- name: importlib_metadata + version: 6.8.0 + manager: conda + platform: osx-arm64 + 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 + optional: false + category: main + build: hd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: Apache-2.0 + license_family: APACHE + noarch: generic + size: 9428 + timestamp: 1688754660209 - name: importlib_metadata version: 6.8.0 manager: conda @@ -7349,6 +9558,30 @@ package: noarch: python size: 30024 timestamp: 1695414932459 +- name: importlib_resources + version: 6.1.0 + manager: conda + platform: osx-arm64 + 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 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + constrains: + - importlib-resources >=6.1.0,<6.1.1.0a0 + license: Apache-2.0 + license_family: APACHE + noarch: python + size: 30024 + timestamp: 1695414932459 - name: importlib_resources version: 6.1.0 manager: conda @@ -7417,6 +9650,28 @@ package: noarch: python size: 36112 timestamp: 1657910314055 +- name: inflect + version: 5.6.2 + manager: conda + platform: osx-arm64 + dependencies: + importlib-metadata: '*' + python: '>=3' + url: https://conda.anaconda.org/conda-forge/noarch/inflect-5.6.2-pyhd8ed1ab_0.tar.bz2 + hash: + md5: 7e5f7c7da6604706a97fcfa5407382a1 + sha256: 215102137164d174956307d1100d530ac41a2496d32debd073597724a4bc1ad0 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 36112 + timestamp: 1657910314055 - name: inflect version: 5.6.2 manager: conda @@ -7481,6 +9736,27 @@ package: noarch: python size: 11101 timestamp: 1673103208955 +- name: iniconfig + version: 2.0.0 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.7' + url: https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_0.conda + hash: + md5: f800d2da156d08e289b14e87e43c1ae5 + sha256: 38740c939b668b36a50ef455b077e8015b8c9cf89860d421b3fff86048f49666 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 11101 + timestamp: 1673103208955 - name: iniconfig version: 2.0.0 manager: conda @@ -7522,7 +9798,7 @@ package: size: 2520627 timestamp: 1695994411378 - name: ipykernel - version: 6.25.2 + version: 6.26.0 manager: conda platform: linux-64 dependencies: @@ -7540,23 +9816,23 @@ 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 optional: false category: main - build: pyh2140261_0 + build: pyhf8b6a83_0 arch: x86_64 subdir: linux-64 build_number: 0 license: BSD-3-Clause license_family: BSD noarch: python - size: 113964 - timestamp: 1693880440518 + size: 116210 + timestamp: 1698244196564 - name: ipykernel - version: 6.25.2 + version: 6.26.0 manager: conda platform: osx-64 dependencies: @@ -7575,23 +9851,58 @@ package: pyzmq: '>=20' tornado: '>=6.1' 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 optional: false category: main - build: pyh1050b4e_0 + build: pyh3cd1d5f_0 arch: x86_64 subdir: osx-64 build_number: 0 license: BSD-3-Clause license_family: BSD noarch: python - size: 115240 - timestamp: 1693880672936 + size: 116536 + timestamp: 1698244546989 +- name: ipykernel + version: 6.26.0 + manager: conda + platform: osx-arm64 + dependencies: + __osx: '*' + appnope: '*' + comm: '>=0.1.1' + debugpy: '>=1.6.5' + ipython: '>=7.23.1' + jupyter_client: '>=6.1.12' + jupyter_core: '>=4.12,!=5.0.*' + matplotlib-inline: '>=0.1' + nest-asyncio: '*' + packaging: '*' + psutil: '*' + python: '>=3.8' + pyzmq: '>=20' + tornado: '>=6.1' + traitlets: '>=5.4.0' + url: https://conda.anaconda.org/conda-forge/noarch/ipykernel-6.26.0-pyh3cd1d5f_0.conda + hash: + md5: 3c6e2148d30e6a762d8327a433ebfb5a + sha256: be9927d47fe23cc4d2a09d252e37e1e56ffb137767d2c0577ed882ead16f75fa + optional: false + category: main + build: pyh3cd1d5f_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 116536 + timestamp: 1698244546989 - name: ipykernel - version: 6.25.2 + version: 6.26.0 manager: conda platform: win-64 dependencies: @@ -7609,21 +9920,21 @@ package: pyzmq: '>=20' tornado: '>=6.1' 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 optional: false category: main - build: pyh60829e3_0 + build: pyha63f2e9_0 arch: x86_64 subdir: win-64 build_number: 0 license: BSD-3-Clause license_family: BSD noarch: python - size: 115123 - timestamp: 1693880680681 + size: 116868 + timestamp: 1698244441309 - name: ipython version: 8.16.1 manager: conda @@ -7696,7 +10007,42 @@ package: - name: ipython version: 8.16.1 manager: conda - platform: win-64 + platform: osx-arm64 + dependencies: + __osx: '*' + appnope: '*' + backcall: '*' + decorator: '*' + exceptiongroup: '*' + jedi: '>=0.16' + matplotlib-inline: '*' + pexpect: '>4.3' + pickleshare: '*' + prompt_toolkit: '>=3.0.30,<3.1.0,!=3.0.37' + pygments: '>=2.4.0' + python: '>=3.9' + stack_data: '*' + traitlets: '>=5' + typing_extensions: '*' + url: https://conda.anaconda.org/conda-forge/noarch/ipython-8.16.1-pyh31c8845_0.conda + hash: + md5: 531bac092414642fdead7a511357485a + sha256: 77cfbc15ee2ad8976009a6880bb1f7c716db44e23594fba7c9c382135e02eb03 + optional: false + category: main + build: pyh31c8845_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 593043 + timestamp: 1696264534473 +- name: ipython + version: 8.16.1 + manager: conda + platform: win-64 dependencies: __win: '*' backcall: '*' @@ -7771,6 +10117,28 @@ package: noarch: python size: 17189 timestamp: 1638811664194 +- name: isoduration + version: 20.11.0 + manager: conda + platform: osx-arm64 + dependencies: + arrow: '>=0.15.0' + python: '>=3.7' + url: https://conda.anaconda.org/conda-forge/noarch/isoduration-20.11.0-pyhd8ed1ab_0.tar.bz2 + hash: + md5: 4cb68948e0b8429534380243d063a27a + sha256: 7bb5c4d994361022f47a807b5e7d101b3dce16f7dd8a0af6ffad9f479d346493 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 17189 + timestamp: 1638811664194 - name: isoduration version: 20.11.0 manager: conda @@ -7837,6 +10205,28 @@ package: noarch: python size: 73326 timestamp: 1675033987894 +- name: isort + version: 5.12.0 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.8,<4.0' + setuptools: '*' + url: https://conda.anaconda.org/conda-forge/noarch/isort-5.12.0-pyhd8ed1ab_1.conda + hash: + md5: 07ed3421bad60867234c7a9282ea39d4 + sha256: d34a62e33ac7acc8fd3167ceb0e2aee4e7974b94de263f52d752716429d95bcb + optional: false + category: main + build: pyhd8ed1ab_1 + arch: aarch64 + subdir: osx-arm64 + build_number: 1 + license: MIT + license_family: MIT + noarch: python + size: 73326 + timestamp: 1675033987894 - name: isort version: 5.12.0 manager: conda @@ -7903,6 +10293,28 @@ package: noarch: python size: 11288 timestamp: 1689112573324 +- name: jaraco.classes + version: 3.3.0 + manager: conda + platform: osx-arm64 + 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 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 11288 + timestamp: 1689112573324 - name: jaraco.classes version: 3.3.0 manager: conda @@ -7969,6 +10381,28 @@ package: noarch: python size: 841312 timestamp: 1696326218364 +- name: jedi + version: 0.19.1 + manager: conda + platform: osx-arm64 + dependencies: + parso: '>=0.8.3,<0.9.0' + python: '>=3.6' + url: https://conda.anaconda.org/conda-forge/noarch/jedi-0.19.1-pyhd8ed1ab_0.conda + hash: + md5: 81a3be0b2023e1ea8555781f0ad904a2 + sha256: 362f0936ef37dfd1eaa860190e42a6ebf8faa094eaa3be6aa4d9ace95f40047a + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 841312 + timestamp: 1696326218364 - name: jedi version: 0.19.1 manager: conda @@ -8056,6 +10490,28 @@ package: noarch: python size: 101443 timestamp: 1654302514195 +- name: jinja2 + version: 3.1.2 + manager: conda + platform: osx-arm64 + dependencies: + markupsafe: '>=2.0' + python: '>=3.7' + url: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.2-pyhd8ed1ab_1.tar.bz2 + hash: + md5: c8490ed5c70966d232fdd389d0dbed37 + sha256: b045faba7130ab263db6a8fdc96b1a3de5fcf85c4a607c5f11a49e76851500b5 + optional: false + category: main + build: pyhd8ed1ab_1 + arch: aarch64 + subdir: osx-arm64 + build_number: 1 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 101443 + timestamp: 1654302514195 - name: jinja2 version: 3.1.2 manager: conda @@ -8122,6 +10578,28 @@ package: noarch: python size: 221200 timestamp: 1691577306309 +- name: joblib + version: 1.3.2 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.7' + setuptools: '*' + url: https://conda.anaconda.org/conda-forge/noarch/joblib-1.3.2-pyhd8ed1ab_0.conda + hash: + md5: 4da50d410f553db77e62ab62ffaa1abc + sha256: 31e05d47970d956206188480b038829d24ac11fe8216409d8584d93d40233878 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 221200 + timestamp: 1691577306309 - name: joblib version: 1.3.2 manager: conda @@ -8183,6 +10661,25 @@ package: license_family: MIT size: 71671 timestamp: 1691934144512 +- name: json-c + version: '0.17' + manager: conda + platform: osx-arm64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-arm64/json-c-0.17-h40ed0f5_0.conda + hash: + md5: 7de5604deb99090c8e8c4863f60568d1 + sha256: d47138a2829ce47d2e9ec1dbe108d1a6fe58c5d8724ea904985a420ad760f93f + optional: false + category: main + build: h40ed0f5_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: MIT + license_family: MIT + size: 76941 + timestamp: 1691934174484 - name: json5 version: 0.9.14 manager: conda @@ -8225,6 +10722,27 @@ package: noarch: python size: 25003 timestamp: 1688248468479 +- name: json5 + version: 0.9.14 + manager: conda + platform: osx-arm64 + 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 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: Apache-2.0 + license_family: APACHE + noarch: python + size: 25003 + timestamp: 1688248468479 - name: json5 version: 0.9.14 manager: conda @@ -8288,6 +10806,27 @@ package: license_family: BSD size: 18557 timestamp: 1695397765266 +- name: jsonpointer + version: '2.4' + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.11,<3.12.0a0 *_cpython' + python_abi: 3.11.* *_cp311 + url: https://conda.anaconda.org/conda-forge/osx-arm64/jsonpointer-2.4-py311h267d04e_3.conda + hash: + md5: b6008a5b9180e58a235f5e45432dfe2e + sha256: 807d6c44f3e34139bfd25db4409381a6ce37fad2902c58f10fa7e1c30a64333d + optional: false + category: main + build: py311h267d04e_3 + arch: aarch64 + subdir: osx-arm64 + build_number: 3 + license: BSD-3-Clause + license_family: BSD + size: 18841 + timestamp: 1695397944650 - name: jsonpointer version: '2.4' manager: conda @@ -8363,6 +10902,33 @@ package: noarch: python size: 71078 timestamp: 1695229168542 +- name: jsonschema + version: 4.19.1 + manager: conda + platform: osx-arm64 + dependencies: + attrs: '>=22.2.0' + importlib_resources: '>=1.4.0' + jsonschema-specifications: '>=2023.3.6' + pkgutil-resolve-name: '>=1.3.10' + python: '>=3.8' + 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 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 71078 + timestamp: 1695229168542 - name: jsonschema version: 4.19.1 manager: conda @@ -8436,6 +11002,29 @@ package: noarch: python size: 15296 timestamp: 1689701341221 +- name: jsonschema-specifications + version: 2023.7.1 + manager: conda + platform: osx-arm64 + dependencies: + importlib_resources: '>=1.4.0' + python: '>=3.8' + 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 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 15296 + timestamp: 1689701341221 - name: jsonschema-specifications version: 2023.7.1 manager: conda @@ -8519,6 +11108,36 @@ package: noarch: python size: 7367 timestamp: 1695229193334 +- name: jsonschema-with-format-nongpl + version: 4.19.1 + manager: conda + platform: osx-arm64 + dependencies: + fqdn: '*' + idna: '*' + isoduration: '*' + jsonpointer: '>1.13' + jsonschema: '>=4.19.1,<4.19.2.0a0' + python: '*' + rfc3339-validator: '*' + rfc3986-validator: '>0.1.0' + uri-template: '*' + webcolors: '>=1.11' + url: https://conda.anaconda.org/conda-forge/noarch/jsonschema-with-format-nongpl-4.19.1-pyhd8ed1ab_0.conda + hash: + md5: daca0665e6fe8a376e48b9f0b5865326 + sha256: af65a8783a89c03ac8437a1d95ee5ac2e50e92d3af231cec515292fe296aff8e + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 7367 + timestamp: 1695229193334 - name: jsonschema-with-format-nongpl version: 4.19.1 manager: conda @@ -8595,6 +11214,29 @@ package: noarch: python size: 52525 timestamp: 1685453825227 +- name: jupyter-lsp + version: 2.2.0 + manager: conda + platform: osx-arm64 + dependencies: + importlib-metadata: '>=4.8.3' + jupyter_server: '>=1.1.2' + python: '>=3.8' + url: https://conda.anaconda.org/conda-forge/noarch/jupyter-lsp-2.2.0-pyhd8ed1ab_0.conda + hash: + md5: 38589f4104d11f2a59ff01a9f4e3bfb3 + sha256: 16fc7b40024adece716ba7227e5c123a2deccc13f946a10d9a3270493908d11c + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 52525 + timestamp: 1685453825227 - name: jupyter-lsp version: 2.2.0 manager: conda @@ -8619,7 +11261,7 @@ package: size: 52525 timestamp: 1685453825227 - name: jupyter_client - version: 8.4.0 + version: 8.5.0 manager: conda platform: linux-64 dependencies: @@ -8630,10 +11272,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 optional: false category: main build: pyhd8ed1ab_0 @@ -8643,10 +11285,10 @@ package: license: BSD-3-Clause license_family: BSD noarch: python - size: 104815 - timestamp: 1697036956422 + size: 105606 + timestamp: 1698232162661 - name: jupyter_client - version: 8.4.0 + version: 8.5.0 manager: conda platform: osx-64 dependencies: @@ -8657,10 +11299,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 optional: false category: main build: pyhd8ed1ab_0 @@ -8670,10 +11312,37 @@ package: license: BSD-3-Clause license_family: BSD noarch: python - size: 104815 - timestamp: 1697036956422 + size: 105606 + timestamp: 1698232162661 - name: jupyter_client - version: 8.4.0 + version: 8.5.0 + manager: conda + platform: osx-arm64 + dependencies: + importlib_metadata: '>=4.8.3' + jupyter_core: '>=4.12,!=5.0.*' + python: '>=3.8' + python-dateutil: '>=2.8.2' + pyzmq: '>=23.0' + tornado: '>=6.2' + traitlets: '>=5.3' + url: https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.5.0-pyhd8ed1ab_0.conda + hash: + md5: 77e442cb7c382d01c916f91a8652811a + sha256: e4478e137e0975ce94ef4ee6e4a6736afaf4a00e99bc8007a275bcb39fe728d9 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 105606 + timestamp: 1698232162661 +- name: jupyter_client + version: 8.5.0 manager: conda platform: win-64 dependencies: @@ -8684,10 +11353,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 optional: false category: main build: pyhd8ed1ab_0 @@ -8697,8 +11366,8 @@ package: license: BSD-3-Clause license_family: BSD noarch: python - size: 104815 - timestamp: 1697036956422 + size: 105606 + timestamp: 1698232162661 - name: jupyter_core version: 5.4.0 manager: conda @@ -8745,6 +11414,29 @@ package: license_family: BSD size: 94493 timestamp: 1696972640490 +- name: jupyter_core + version: 5.4.0 + manager: conda + platform: osx-arm64 + dependencies: + platformdirs: '>=2.5' + python: '>=3.11,<3.12.0a0 *_cpython' + python_abi: 3.11.* *_cp311 + traitlets: '>=5.3' + url: https://conda.anaconda.org/conda-forge/osx-arm64/jupyter_core-5.4.0-py311h267d04e_0.conda + hash: + md5: 9467a6c8e51ebf4defe3b513534ac1e9 + sha256: e22bb5c58bac1bd357da0fe1331bb3d9e0fd271d85095c3fd9db34a413fe5b3b + optional: false + category: main + build: py311h267d04e_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + size: 94815 + timestamp: 1696972745070 - name: jupyter_core version: 5.4.0 manager: conda @@ -8825,6 +11517,34 @@ package: noarch: python size: 21359 timestamp: 1697461797603 +- name: jupyter_events + version: 0.8.0 + manager: conda + platform: osx-arm64 + dependencies: + jsonschema-with-format-nongpl: '>=4.18.0' + python: '>=3.8' + python-json-logger: '>=2.0.4' + pyyaml: '>=5.3' + referencing: '*' + rfc3339-validator: '*' + rfc3986-validator: '>=0.1.1' + traitlets: '>=5.3' + url: https://conda.anaconda.org/conda-forge/noarch/jupyter_events-0.8.0-pyhd8ed1ab_0.conda + hash: + md5: 04272d87d3e06c2e26af5e2d4b0e0ad8 + sha256: 44742f7b6453774fbbdf7cec20282f88c7362707990790116fec23270b81b447 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 21359 + timestamp: 1697461797603 - name: jupyter_events version: 0.8.0 manager: conda @@ -8854,7 +11574,7 @@ package: size: 21359 timestamp: 1697461797603 - name: jupyter_server - version: 2.8.0 + version: 2.9.1 manager: conda platform: linux-64 dependencies: @@ -8877,10 +11597,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 optional: false category: main build: pyhd8ed1ab_0 @@ -8890,10 +11610,10 @@ package: license: BSD-3-Clause license_family: BSD noarch: python - size: 316651 - timestamp: 1697462359157 + size: 317157 + timestamp: 1698244231289 - name: jupyter_server - version: 2.8.0 + version: 2.9.1 manager: conda platform: osx-64 dependencies: @@ -8916,10 +11636,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 optional: false category: main build: pyhd8ed1ab_0 @@ -8929,10 +11649,49 @@ package: license: BSD-3-Clause license_family: BSD noarch: python - size: 316651 - timestamp: 1697462359157 + size: 317157 + timestamp: 1698244231289 +- name: jupyter_server + version: 2.9.1 + manager: conda + platform: osx-arm64 + dependencies: + anyio: '>=3.1.0' + argon2-cffi: '*' + jinja2: '*' + jupyter_client: '>=7.4.4' + jupyter_core: '>=4.12,!=5.0.*' + jupyter_events: '>=0.6.0' + jupyter_server_terminals: '*' + nbconvert-core: '>=6.4.4' + nbformat: '>=5.3.0' + overrides: '*' + packaging: '*' + prometheus_client: '*' + python: '>=3.8' + pyzmq: '>=24' + send2trash: '>=1.8.2' + terminado: '>=0.8.3' + tornado: '>=6.2.0' + traitlets: '>=5.6.0' + websocket-client: '*' + url: https://conda.anaconda.org/conda-forge/noarch/jupyter_server-2.9.1-pyhd8ed1ab_0.conda + hash: + md5: 8e0cfa69e5b0062b829a9dbb14645def + sha256: bb9a60ff41085031a28204add4e6120990437cfad341db297519f0a0f0df8e18 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 317157 + timestamp: 1698244231289 - name: jupyter_server - version: 2.8.0 + version: 2.9.1 manager: conda platform: win-64 dependencies: @@ -8955,10 +11714,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 optional: false category: main build: pyhd8ed1ab_0 @@ -8968,8 +11727,8 @@ package: license: BSD-3-Clause license_family: BSD noarch: python - size: 316651 - timestamp: 1697462359157 + size: 317157 + timestamp: 1698244231289 - name: jupyter_server_terminals version: 0.4.4 manager: conda @@ -9014,6 +11773,28 @@ package: noarch: python size: 18974 timestamp: 1673491600853 +- name: jupyter_server_terminals + version: 0.4.4 + manager: conda + platform: osx-arm64 + 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 + optional: false + category: main + build: pyhd8ed1ab_1 + arch: aarch64 + subdir: osx-arm64 + build_number: 1 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 18974 + timestamp: 1673491600853 - name: jupyter_server_terminals version: 0.4.4 manager: conda @@ -9106,6 +11887,41 @@ package: noarch: python size: 6142657 timestamp: 1697059891776 +- name: jupyterlab + version: 4.0.7 + manager: conda + platform: osx-arm64 + 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 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 6142657 + timestamp: 1697059891776 - name: jupyterlab version: 4.0.7 manager: conda @@ -9185,6 +12001,28 @@ package: noarch: python size: 17410 timestamp: 1649936689608 +- name: jupyterlab_pygments + version: 0.2.2 + manager: conda + platform: osx-arm64 + dependencies: + pygments: '>=2.4.1,<3' + python: '>=3.7' + url: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_pygments-0.2.2-pyhd8ed1ab_0.tar.bz2 + hash: + md5: 243f63592c8e449f40cd42eb5cf32f40 + sha256: 08453e09d5a6bbaeeca839553a5dfd7a377a97550efab96019c334a8042f54f5 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 17410 + timestamp: 1649936689608 - name: jupyterlab_pygments version: 0.2.2 manager: conda @@ -9269,6 +12107,37 @@ package: noarch: python size: 48289 timestamp: 1694532412609 +- name: jupyterlab_server + version: 2.25.0 + manager: conda + platform: osx-arm64 + 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 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + constrains: + - openapi-core >=0.18.0,<0.19.0 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 48289 + timestamp: 1694532412609 - name: jupyterlab_server version: 2.25.0 manager: conda @@ -9343,6 +12212,27 @@ package: license_family: MIT size: 150105 timestamp: 1696011567365 +- name: kealib + version: 1.5.2 + manager: conda + platform: osx-arm64 + dependencies: + hdf5: '>=1.14.2,<1.14.3.0a0' + libcxx: '>=15.0.7' + url: https://conda.anaconda.org/conda-forge/osx-arm64/kealib-1.5.2-h47b5e36_1.conda + hash: + md5: 88abe34211296bbc0ba1871fd2b13962 + sha256: 93e9b03cd9035766c43e5f7f851fc07a4f68b79fd48c1306280f17093a8ae746 + optional: false + category: main + build: h47b5e36_1 + arch: aarch64 + subdir: osx-arm64 + build_number: 1 + license: MIT + license_family: MIT + size: 142226 + timestamp: 1696011534810 - name: kealib version: 1.5.2 manager: conda @@ -9414,6 +12304,29 @@ package: license_family: MIT size: 78006 timestamp: 1696001763015 +- name: keyring + version: 24.2.0 + manager: conda + platform: osx-arm64 + dependencies: + importlib_metadata: '>=4.11.4' + jaraco.classes: '*' + python: '>=3.11,<3.12.0a0 *_cpython' + python_abi: 3.11.* *_cp311 + url: https://conda.anaconda.org/conda-forge/osx-arm64/keyring-24.2.0-py311h267d04e_1.conda + hash: + md5: cf1ad9e696467ea813f92994a7d1ccd4 + sha256: a5b5a9a00d041f72fe52d51b39c640ecad831eda6b1f876909f9b3d3cebcd229 + optional: false + category: main + build: py311h267d04e_1 + arch: aarch64 + subdir: osx-arm64 + build_number: 1 + license: MIT + license_family: MIT + size: 78562 + timestamp: 1696001946737 - name: keyring version: 24.2.0 manager: conda @@ -9502,6 +12415,28 @@ package: license_family: BSD size: 60694 timestamp: 1695380246398 +- name: kiwisolver + version: 1.4.5 + manager: conda + platform: osx-arm64 + dependencies: + libcxx: '>=15.0.7' + python: '>=3.11,<3.12.0a0 *_cpython' + python_abi: 3.11.* *_cp311 + url: https://conda.anaconda.org/conda-forge/osx-arm64/kiwisolver-1.4.5-py311he4fd1f5_1.conda + hash: + md5: 4c871d65040b8c7bbb914df7f8f11492 + sha256: 907af50734789d47b3e8b2148dde763699dc746c64e5849baf6bd720c8cd0235 + optional: false + category: main + build: py311he4fd1f5_1 + arch: aarch64 + subdir: osx-arm64 + build_number: 1 + license: BSD-3-Clause + license_family: BSD + size: 61946 + timestamp: 1695380538042 - name: kiwisolver version: 1.4.5 manager: conda @@ -9572,6 +12507,28 @@ package: license_family: MIT size: 1183568 timestamp: 1692098004387 +- name: krb5 + version: 1.21.2 + manager: conda + platform: osx-arm64 + dependencies: + libcxx: '>=15.0.7' + libedit: '>=3.1.20191231,<4.0a0' + openssl: '>=3.1.2,<4.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/krb5-1.21.2-h92f50d5_0.conda + hash: + md5: 92f1cff174a538e0722bf2efb16fc0b2 + sha256: 70bdb9b4589ec7c7d440e485ae22b5a352335ffeb91a771d4c162996c3070875 + optional: false + category: main + build: h92f50d5_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: MIT + license_family: MIT + size: 1195575 + timestamp: 1692098070699 - name: krb5 version: 1.21.2 manager: conda @@ -9658,6 +12615,27 @@ package: license_family: MIT size: 224895 timestamp: 1695969874291 +- name: lcms2 + version: '2.15' + manager: conda + platform: osx-arm64 + dependencies: + libjpeg-turbo: '>=3.0.0,<4.0a0' + libtiff: '>=4.6.0,<4.7.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/lcms2-2.15-hf2736f0_3.conda + hash: + md5: bbaac531169fed3e09ae31aff80aa069 + sha256: 3d07ba04602617c3084b302c8a6fa30b2e4b20511180f45992b289c312298018 + optional: false + category: main + build: hf2736f0_3 + arch: aarch64 + subdir: osx-arm64 + build_number: 3 + license: MIT + license_family: MIT + size: 215466 + timestamp: 1695969888308 - name: lcms2 version: '2.15' manager: conda @@ -9744,6 +12722,26 @@ package: license_family: Apache size: 290319 timestamp: 1657977526749 +- name: lerc + version: 4.0.0 + manager: conda + platform: osx-arm64 + dependencies: + libcxx: '>=13.0.1' + url: https://conda.anaconda.org/conda-forge/osx-arm64/lerc-4.0.0-h9a09cb3_0.tar.bz2 + hash: + md5: de462d5aacda3b30721b512c5da4e742 + sha256: 6f068bb53dfb6147d3147d981bb851bb5477e769407ad4e6a68edf482fdcb958 + optional: false + category: main + build: h9a09cb3_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: Apache-2.0 + license_family: Apache + size: 215721 + timestamp: 1657977558796 - name: lerc version: 4.0.0 manager: conda @@ -9813,6 +12811,29 @@ package: license_family: Apache size: 1148356 timestamp: 1695064289396 +- name: libabseil + version: '20230802.1' + manager: conda + platform: osx-arm64 + dependencies: + libcxx: '>=15.0.7' + url: https://conda.anaconda.org/conda-forge/osx-arm64/libabseil-20230802.1-cxx17_h13dd4ca_0.conda + hash: + md5: fb6dfadc1898666616dfda242d8aea10 + sha256: 459a58f36607246b4483d7a370c2d9a03e7f824e79da2c6e3e9d62abf80393e7 + optional: false + category: main + build: cxx17_h13dd4ca_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + constrains: + - libabseil-static =20230802.1=cxx17* + - abseil-cpp =20230802.1 + license: Apache-2.0 + license_family: Apache + size: 1173407 + timestamp: 1695064439482 - name: libabseil version: '20230802.1' manager: conda @@ -9879,6 +12900,26 @@ package: license_family: BSD size: 29027 timestamp: 1696474151758 +- name: libaec + version: 1.1.2 + manager: conda + platform: osx-arm64 + dependencies: + libcxx: '>=15.0.7' + url: https://conda.anaconda.org/conda-forge/osx-arm64/libaec-1.1.2-h13dd4ca_1.conda + hash: + md5: b7962cdc2cedcc9f8d12928824c11fbd + sha256: c9d6f01d511bd3686ce590addf829f34031b95e3feb34418496cbb45924c5d17 + optional: false + category: main + build: h13dd4ca_1 + arch: aarch64 + subdir: osx-arm64 + build_number: 1 + license: BSD-2-Clause + license_family: BSD + size: 29002 + timestamp: 1696474168895 - name: libaec version: 1.1.2 manager: conda @@ -9957,6 +12998,34 @@ package: license_family: BSD size: 752960 timestamp: 1694542990941 +- name: libarchive + version: 3.7.2 + manager: conda + platform: osx-arm64 + dependencies: + bzip2: '>=1.0.8,<2.0a0' + libiconv: '>=1.17,<2.0a0' + 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/osx-arm64/libarchive-3.7.2-h82b9b87_0.conda + hash: + md5: da6ec82a0e07f738afee1c4279778b30 + sha256: d8f2a19466f11ca9d6e1bf6a82cf84a5eb60dcf55d93fa2fbf47a503b953e348 + optional: false + category: main + build: h82b9b87_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: BSD-2-Clause + license_family: BSD + size: 826900 + timestamp: 1694543052074 - name: libarchive version: 3.7.2 manager: conda @@ -10004,41 +13073,84 @@ package: libgrpc: '>=1.58.1,<1.59.0a0' libprotobuf: '>=4.24.3,<4.24.4.0a0' libre2-11: '>=2023.6.2,<2024.0a0' - libstdcxx-ng: '>=12' + 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.4,<4.0a0' + orc: '>=1.9.0,<1.9.1.0a0' + re2: '*' + 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-64/libarrow-13.0.0-he1fec18_12_cpu.conda + hash: + md5: e2f78863b3f82fd18eae16bffc044c42 + sha256: afc26c293a7b3e1272ad27b69ddf27f797cf07ad8b689fb3e32da08bc3ca3d5b + optional: false + category: main + build: he1fec18_12_cpu + arch: x86_64 + subdir: linux-64 + build_number: 12 + constrains: + - arrow-cpp =13.0.0 + - apache-arrow-proc =*=cpu + - parquet-cpp <0.0a0 + license: Apache-2.0 + size: 27853395 + timestamp: 1698282966780 +- name: libarrow + version: 13.0.0 + manager: conda + platform: osx-64 + dependencies: + __osx: '>=10.9' + aws-crt-cpp: '>=0.24.3,<0.24.4.0a0' + aws-sdk-cpp: '>=1.11.182,<1.11.183.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' + libcxx: '>=15.0.7' + libgoogle-cloud: '>=2.12.0,<2.13.0a0' + libgrpc: '>=1.58.1,<1.59.0a0' + libprotobuf: '>=4.24.3,<4.24.4.0a0' + libre2-11: '>=2023.6.2,<2024.0a0' 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' + openssl: '>=3.1.4,<4.0a0' orc: '>=1.9.0,<1.9.1.0a0' re2: '*' 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-64/libarrow-13.0.0-he1fec18_11_cpu.conda + url: https://conda.anaconda.org/conda-forge/osx-64/libarrow-13.0.0-h23351de_12_cpu.conda hash: - md5: 4bbdac31e0b1fb5299beb9b92f7abccd - sha256: be48b1afb701be7b86a9a3a71205c3c049926f66fb1ada123ca60c168a46cb83 + md5: ad0706d2835ac6ecfa083925c00e715c + sha256: 335c67845df9ebe82f37b774a4808cde20d6e5de8212323e872c760a7294d0ce optional: false category: main - build: he1fec18_11_cpu + build: h23351de_12_cpu arch: x86_64 - subdir: linux-64 - build_number: 11 + subdir: osx-64 + build_number: 12 constrains: - - arrow-cpp =13.0.0 - apache-arrow-proc =*=cpu + - arrow-cpp =13.0.0 - parquet-cpp <0.0a0 license: Apache-2.0 - license_family: APACHE - size: 27888647 - timestamp: 1697718524772 + size: 19996039 + timestamp: 1698283393388 - name: libarrow version: 13.0.0 manager: conda - platform: osx-64 + platform: osx-arm64 dependencies: - __osx: '>=10.13' + __osx: '>=10.9' aws-crt-cpp: '>=0.24.3,<0.24.4.0a0' aws-sdk-cpp: '>=1.11.182,<1.11.183.0a0' bzip2: '>=1.0.8,<2.0a0' @@ -10046,6 +13158,7 @@ package: libabseil: '>=20230802.1,<20230803.0a0' libbrotlidec: '>=1.1.0,<1.2.0a0' libbrotlienc: '>=1.1.0,<1.2.0a0' + libcxx: '>=15.0.7' libgoogle-cloud: '>=2.12.0,<2.13.0a0' libgrpc: '>=1.58.1,<1.59.0a0' libprotobuf: '>=4.24.3,<4.24.4.0a0' @@ -10054,29 +13167,28 @@ package: 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' + openssl: '>=3.1.4,<4.0a0' orc: '>=1.9.0,<1.9.1.0a0' re2: '*' snappy: '>=1.1.10,<2.0a0' zstd: '>=1.5.5,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libarrow-13.0.0-h23351de_11_cpu.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-13.0.0-h4164969_12_cpu.conda hash: - md5: cd33a9fab1847a2a17f2c6aff3b16372 - sha256: 799b43d6d439feb3727acd85b20e954a90f341bdcebc1e08df73cae5311d92e6 + md5: 6fad77be1636ab816f954ba08a5fa6b0 + sha256: cfdc38c456881fb54bd9db5176fa9e81163935f97f3c73e52739edbf444da1f1 optional: false category: main - build: h23351de_11_cpu - arch: x86_64 - subdir: osx-64 - build_number: 11 + build: h4164969_12_cpu + arch: aarch64 + subdir: osx-arm64 + build_number: 12 constrains: - - apache-arrow-proc =*=cpu - parquet-cpp <0.0a0 - arrow-cpp =13.0.0 + - apache-arrow-proc =*=cpu license: Apache-2.0 - license_family: APACHE - size: 20020976 - timestamp: 1697719862876 + size: 17940403 + timestamp: 1698284422603 - name: libarrow version: 13.0.0 manager: conda @@ -10098,7 +13210,7 @@ package: 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' + openssl: '>=3.1.4,<4.0a0' orc: '>=1.9.0,<1.9.1.0a0' re2: '*' snappy: '>=1.1.10,<2.0a0' @@ -10106,24 +13218,23 @@ package: vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' zstd: '>=1.5.5,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/win-64/libarrow-13.0.0-hdbedc8d_11_cpu.conda + url: https://conda.anaconda.org/conda-forge/win-64/libarrow-13.0.0-hdbedc8d_12_cpu.conda hash: - md5: cf40a53c652ec4ace61e8764fd61e1d4 - sha256: 6e07bcd119a52ee6ff796279c696a3d1bba8c25223e668c89c1a6a0fa5c27b5b + md5: fcd5ee12212c49b24ee6e8ad216fbf0b + sha256: f56bd17b25329ad079dae6f259b979db247fd4efc1d8610cbba26b44eb13a54f optional: false category: main - build: hdbedc8d_11_cpu + build: hdbedc8d_12_cpu arch: x86_64 subdir: win-64 - build_number: 11 + build_number: 12 constrains: - - arrow-cpp =13.0.0 - - apache-arrow-proc =*=cpu - parquet-cpp <0.0a0 + - apache-arrow-proc =*=cpu + - arrow-cpp =13.0.0 license: Apache-2.0 - license_family: APACHE - size: 16611160 - timestamp: 1697719752130 + size: 16606570 + timestamp: 1698283501981 - name: libblas version: 3.9.0 manager: conda @@ -10174,6 +13285,31 @@ package: license_family: BSD size: 14812 timestamp: 1697484725085 +- name: libblas + version: 3.9.0 + manager: conda + platform: osx-arm64 + dependencies: + libopenblas: '>=0.3.24,<1.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/libblas-3.9.0-19_osxarm64_openblas.conda + hash: + md5: f50b1fd98593278e18319653cff9c475 + sha256: 51e78e3c9fa57f3fec12936b760928715ba0ab5253d02815202f9ec4c2c9255d + optional: false + category: main + build: 19_osxarm64_openblas + arch: aarch64 + subdir: osx-arm64 + build_number: 19 + constrains: + - libcblas 3.9.0 19_osxarm64_openblas + - liblapack 3.9.0 19_osxarm64_openblas + - blas * openblas + - liblapacke 3.9.0 19_osxarm64_openblas + license: BSD-3-Clause + license_family: BSD + size: 14817 + timestamp: 1697484577887 - name: libblas version: 3.9.0 manager: conda @@ -10239,6 +13375,26 @@ package: license: BSL-1.0 size: 13795494 timestamp: 1696732955800 +- name: libboost-headers + version: 1.82.0 + manager: conda + platform: osx-arm64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-arm64/libboost-headers-1.82.0-hce30654_6.conda + hash: + md5: ae7c68cf82c23fe6c68f0efa064ef41a + sha256: 19cc7fff73fda78f142a875f06f2467fcbfc5c8c3e0db92b212e425de309a27d + optional: false + category: main + build: hce30654_6 + arch: aarch64 + subdir: osx-arm64 + build_number: 6 + constrains: + - boost-cpp =1.82.0 + license: BSL-1.0 + size: 13795546 + timestamp: 1696733002284 - name: libboost-headers version: 1.82.0 manager: conda @@ -10298,6 +13454,25 @@ package: license_family: MIT size: 67476 timestamp: 1695990207321 +- name: libbrotlicommon + version: 1.1.0 + manager: conda + platform: osx-arm64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlicommon-1.1.0-hb547adb_1.conda + hash: + md5: cd68f024df0304be41d29a9088162b02 + sha256: 556f0fddf4bd4d35febab404d98cb6862ce3b7ca843e393da0451bfc4654cf07 + optional: false + category: main + build: hb547adb_1 + arch: aarch64 + subdir: osx-arm64 + build_number: 1 + license: MIT + license_family: MIT + size: 68579 + timestamp: 1695990426128 - name: libbrotlicommon version: 1.1.0 manager: conda @@ -10361,6 +13536,26 @@ package: license_family: MIT size: 30327 timestamp: 1695990232422 +- name: libbrotlidec + version: 1.1.0 + manager: conda + platform: osx-arm64 + dependencies: + libbrotlicommon: ==1.1.0 hb547adb_1 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlidec-1.1.0-hb547adb_1.conda + hash: + md5: ee1a519335cc10d0ec7e097602058c0a + sha256: c1c85937828ad3bc434ac60b7bcbde376f4d2ea4ee42d15d369bf2a591775b4a + optional: false + category: main + build: hb547adb_1 + arch: aarch64 + subdir: osx-arm64 + build_number: 1 + license: MIT + license_family: MIT + size: 28928 + timestamp: 1695990463780 - name: libbrotlidec version: 1.1.0 manager: conda @@ -10425,6 +13620,26 @@ package: license_family: MIT size: 299092 timestamp: 1695990259225 +- name: libbrotlienc + version: 1.1.0 + manager: conda + platform: osx-arm64 + dependencies: + libbrotlicommon: ==1.1.0 hb547adb_1 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlienc-1.1.0-hb547adb_1.conda + hash: + md5: d7e077f326a98b2cc60087eaff7c730b + sha256: 690dfc98e891ee1871c54166d30f6e22edfc2d7d6b29e7988dde5f1ce271c81a + optional: false + category: main + build: hb547adb_1 + arch: aarch64 + subdir: osx-arm64 + build_number: 1 + license: MIT + license_family: MIT + size: 280943 + timestamp: 1695990509392 - name: libbrotlienc version: 1.1.0 manager: conda @@ -10517,6 +13732,30 @@ package: license_family: BSD size: 14717 timestamp: 1697484740520 +- name: libcblas + version: 3.9.0 + manager: conda + platform: osx-arm64 + dependencies: + libblas: ==3.9.0 19_osxarm64_openblas + url: https://conda.anaconda.org/conda-forge/osx-arm64/libcblas-3.9.0-19_osxarm64_openblas.conda + hash: + md5: 5460a8d1beffd7f63994d891e6a20da4 + sha256: 19b1c5e3ddd383ec14540336f4704938218d3c1db4707ae10d5357afb22cccc1 + optional: false + category: main + build: 19_osxarm64_openblas + arch: aarch64 + subdir: osx-arm64 + build_number: 19 + constrains: + - liblapack 3.9.0 19_osxarm64_openblas + - blas * openblas + - liblapacke 3.9.0 19_osxarm64_openblas + license: BSD-3-Clause + license_family: BSD + size: 14738 + timestamp: 1697484590682 - name: libcblas version: 3.9.0 manager: conda @@ -10676,6 +13915,26 @@ package: license_family: BSD size: 20128 timestamp: 1633683906221 +- name: libcrc32c + version: 1.1.2 + manager: conda + platform: osx-arm64 + dependencies: + libcxx: '>=11.1.0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/libcrc32c-1.1.2-hbdafb3b_0.tar.bz2 + hash: + md5: 32bd82a6a625ea6ce090a81c3d34edeb + sha256: 58477b67cc719060b5b069ba57161e20ba69b8695d154a719cb4b60caf577929 + optional: false + category: main + build: hbdafb3b_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + size: 18765 + timestamp: 1633683992603 - name: libcrc32c version: 1.1.2 manager: conda @@ -10771,6 +14030,31 @@ package: license_family: MIT size: 366039 timestamp: 1697009485409 +- name: libcurl + version: 8.4.0 + manager: conda + platform: osx-arm64 + dependencies: + krb5: '>=1.21.2,<1.22.0a0' + 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/osx-arm64/libcurl-8.4.0-h2d989ff_0.conda + hash: + md5: afabb3372209028627ec03e206f4d967 + sha256: 5ca24ab030b1c56ce07921bf901ea99076e8b7e45586b4a04e5187cc67c87273 + optional: false + category: main + build: h2d989ff_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: curl + license_family: MIT + size: 348974 + timestamp: 1697009607821 - name: libcurl version: 8.4.0 manager: conda @@ -10815,6 +14099,25 @@ package: license_family: Apache size: 1142172 timestamp: 1686896907750 +- name: libcxx + version: 16.0.6 + manager: conda + platform: osx-arm64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-16.0.6-h4653b0c_0.conda + hash: + md5: 9d7d724faf0413bf1dbc5a85935700c8 + sha256: 11d3fb51c14832d9e4f6d84080a375dec21ea8a3a381a1910e67ff9cedc20355 + optional: false + category: main + build: h4653b0c_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 1160232 + timestamp: 1686896993785 - name: libdeflate version: '1.19' manager: conda @@ -10854,6 +14157,25 @@ package: license_family: MIT size: 68962 timestamp: 1694922440450 +- name: libdeflate + version: '1.19' + manager: conda + platform: osx-arm64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-arm64/libdeflate-1.19-hb547adb_0.conda + hash: + md5: f8c1eb0e99e90b55965c6558578537cc + sha256: 6a3d188a6ae845a742dc85c5fb3f7eb1e252726cd74f0b8a7fa25ec09db6b87a + optional: false + category: main + build: hb547adb_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: MIT + license_family: MIT + size: 52841 + timestamp: 1694924330786 - name: libdeflate version: '1.19' manager: conda @@ -10917,6 +14239,26 @@ package: license_family: BSD size: 105382 timestamp: 1597616576726 +- name: libedit + version: 3.1.20191231 + manager: conda + platform: osx-arm64 + dependencies: + ncurses: '>=6.2,<7.0.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/libedit-3.1.20191231-hc8eb9b7_2.tar.bz2 + hash: + md5: 30e4362988a2623e9eb34337b83e01f9 + sha256: 3912636197933ecfe4692634119e8644904b41a58f30cad9d1fc02f6ba4d9fca + optional: false + category: main + build: hc8eb9b7_2 + arch: aarch64 + subdir: osx-arm64 + build_number: 2 + license: BSD-2-Clause + license_family: BSD + size: 96607 + timestamp: 1597616630749 - name: libev version: '4.33' manager: conda @@ -10956,6 +14298,25 @@ package: license_family: BSD size: 101424 timestamp: 1598868359024 +- name: libev + version: '4.33' + manager: conda + platform: osx-arm64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-arm64/libev-4.33-h642e427_1.tar.bz2 + hash: + md5: 566dbf70fe79eacdb3c3d3d195a27f55 + sha256: eb7325eb2e6bd4c291cb9682781b35b8c0f68cb72651c35a5b9dd22707ebd25c + optional: false + category: main + build: h642e427_1 + arch: aarch64 + subdir: osx-arm64 + build_number: 1 + license: BSD-2-Clause + license_family: BSD + size: 100668 + timestamp: 1598868103393 - name: libevent version: 2.1.12 manager: conda @@ -10997,6 +14358,26 @@ package: license_family: BSD size: 372661 timestamp: 1685726378869 +- name: libevent + version: 2.1.12 + manager: conda + platform: osx-arm64 + dependencies: + openssl: '>=3.1.1,<4.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/libevent-2.1.12-h2757513_1.conda + hash: + md5: 1a109764bff3bdc7bdd84088347d71dc + sha256: 8c136d7586259bb5c0d2b913aaadc5b9737787ae4f40e3ad1beaf96c80b919b7 + optional: false + category: main + build: h2757513_1 + arch: aarch64 + subdir: osx-arm64 + build_number: 1 + license: BSD-3-Clause + license_family: BSD + size: 368167 + timestamp: 1685726248899 - name: libevent version: 2.1.12 manager: conda @@ -11063,6 +14444,27 @@ package: license_family: MIT size: 69602 timestamp: 1680191040160 +- name: libexpat + version: 2.5.0 + manager: conda + platform: osx-arm64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-arm64/libexpat-2.5.0-hb7217d7_1.conda + hash: + md5: 5a097ad3d17e42c148c9566280481317 + sha256: 7d143a9c991579ad4207f84c632650a571c66329090daa32b3c87cf7311c3381 + optional: false + category: main + build: hb7217d7_1 + arch: aarch64 + subdir: osx-arm64 + build_number: 1 + constrains: + - expat 2.5.0.* + license: MIT + license_family: MIT + size: 63442 + timestamp: 1680190916539 - name: libexpat version: 2.5.0 manager: conda @@ -11123,6 +14525,25 @@ package: license_family: MIT size: 51348 timestamp: 1636488394370 +- name: libffi + version: 3.4.2 + manager: conda + platform: osx-arm64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-arm64/libffi-3.4.2-h3422bc3_5.tar.bz2 + hash: + md5: 086914b672be056eb70fd4285b6783b6 + sha256: 41b3d13efb775e340e4dba549ab5c029611ea6918703096b2eaa9c015c0750ca + optional: false + category: main + build: h3422bc3_5 + arch: aarch64 + subdir: osx-arm64 + build_number: 5 + license: MIT + license_family: MIT + size: 39020 + timestamp: 1636488587153 - name: libffi version: 3.4.2 manager: conda @@ -11241,9 +14662,68 @@ package: libpq: '>=16.0,<17.0a0' libspatialite: '>=5.1.0,<5.2.0a0' libsqlite: '>=3.43.2,<4.0a0' - libstdcxx-ng: '>=12' + 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-64/libgdal-3.7.2-h6f3d308_7.conda + hash: + md5: f9555eada0412c9f3dd4b34f5afecf5b + sha256: 2ff0ef5b41053982e3fa8dce2bdb408afa370588abb793deac32543af3de611b + optional: false + category: main + build: h6f3d308_7 + arch: x86_64 + subdir: linux-64 + build_number: 7 + license: MIT + license_family: MIT + size: 10617370 + timestamp: 1697153726786 +- name: libgdal + version: 3.7.2 + manager: conda + platform: osx-64 + dependencies: + __osx: '>=10.9' + 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' + libcxx: '>=16.0.6' + libdeflate: '>=1.19,<1.20.0a0' + libexpat: '>=2.5.0,<3.0a0' + 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' 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' @@ -11258,24 +14738,24 @@ package: 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-64/libgdal-3.7.2-h6f3d308_7.conda + url: https://conda.anaconda.org/conda-forge/osx-64/libgdal-3.7.2-h926149b_7.conda hash: - md5: f9555eada0412c9f3dd4b34f5afecf5b - sha256: 2ff0ef5b41053982e3fa8dce2bdb408afa370588abb793deac32543af3de611b + md5: c5acda4c49753de0e98d572fc9b111f8 + sha256: 45eeefed61afa0aa6aaa68f5ab5de65a93b136bbf85a27aaad884214f69d739e optional: false category: main - build: h6f3d308_7 + build: h926149b_7 arch: x86_64 - subdir: linux-64 + subdir: osx-64 build_number: 7 license: MIT license_family: MIT - size: 10617370 - timestamp: 1697153726786 + size: 8960440 + timestamp: 1697155015226 - name: libgdal version: 3.7.2 manager: conda - platform: osx-64 + platform: osx-arm64 dependencies: __osx: '>=10.9' blosc: '>=1.21.5,<2.0a0' @@ -11317,20 +14797,20 @@ package: 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/osx-64/libgdal-3.7.2-h926149b_7.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/libgdal-3.7.2-h116f65a_7.conda hash: - md5: c5acda4c49753de0e98d572fc9b111f8 - sha256: 45eeefed61afa0aa6aaa68f5ab5de65a93b136bbf85a27aaad884214f69d739e + md5: e4b4a08e8b23bd9e3d2e0ffb5f8909c8 + sha256: b8a13edcbd239a96a26df15eccf10accdb2eae12bafd6229347b158af38f0c96 optional: false category: main - build: h926149b_7 - arch: x86_64 - subdir: osx-64 + build: h116f65a_7 + arch: aarch64 + subdir: osx-arm64 build_number: 7 license: MIT license_family: MIT - size: 8960440 - timestamp: 1697155015226 + size: 8151044 + timestamp: 1697154946913 - name: libgdal version: 3.7.2 manager: conda @@ -11409,6 +14889,26 @@ package: license_family: GPL size: 109855 timestamp: 1694165674845 +- name: libgfortran + version: 5.0.0 + manager: conda + platform: osx-arm64 + dependencies: + libgfortran5: ==13.2.0 hf226fd6_1 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran-5.0.0-13_2_0_hd922786_1.conda + hash: + md5: 1ad37a5c60c250bb2b4a9f75563e181c + sha256: bc8750e7893e693fa380bf2f342d4a5ce44995467cbdf72e56a00e5106b4892d + optional: false + category: main + build: 13_2_0_hd922786_1 + arch: aarch64 + subdir: osx-arm64 + build_number: 1 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 110095 + timestamp: 1694172198016 - name: libgfortran-ng version: 13.2.0 manager: conda @@ -11473,6 +14973,28 @@ package: license_family: GPL size: 1571764 timestamp: 1694165583047 +- name: libgfortran5 + version: 13.2.0 + manager: conda + platform: osx-arm64 + dependencies: + llvm-openmp: '>=8.0.0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran5-13.2.0-hf226fd6_1.conda + hash: + md5: 4480d71b98c87faafab132d33e23135e + sha256: cb9cb11e49a6a8466ea7556a723080d3aeefd556df9b444b941afc5b54368b22 + optional: false + category: main + build: hf226fd6_1 + arch: aarch64 + subdir: osx-arm64 + build_number: 1 + constrains: + - libgfortran 5.0.0 13_2_0_*_1 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 995733 + timestamp: 1694172076009 - name: libglib version: 2.78.0 manager: conda @@ -11526,6 +15048,32 @@ package: license: LGPL-2.1-or-later size: 2482876 timestamp: 1694381399072 +- name: libglib + version: 2.78.0 + manager: conda + platform: osx-arm64 + dependencies: + gettext: '>=0.21.1,<1.0a0' + libcxx: '>=15.0.7' + libffi: '>=3.4,<4.0a0' + libiconv: '>=1.17,<2.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + pcre2: '>=10.40,<10.41.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/libglib-2.78.0-h24e9cb9_0.conda + hash: + md5: 01c86aa032cbce6aff557de3b9948aa1 + sha256: bc2fb2e307889294c15fe4f1f61c2c92832c371781654c17c5483c9e8de14d2e + optional: false + category: main + build: h24e9cb9_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + constrains: + - glib 2.78.0 *_0 + license: LGPL-2.1-or-later + size: 2550196 + timestamp: 1694381376914 - name: libglib version: 2.78.0 manager: conda @@ -11632,6 +15180,35 @@ package: license_family: Apache size: 30907199 timestamp: 1696838955088 +- name: libgoogle-cloud + version: 2.12.0 + manager: conda + platform: osx-arm64 + dependencies: + __osx: '>=10.9' + libabseil: '>=20230802.1,<20230803.0a0' + libcrc32c: '>=1.1.2,<1.2.0a0' + libcurl: '>=8.3.0,<9.0a0' + libcxx: '>=16.0.6' + libgrpc: '>=1.58.1,<1.59.0a0' + libprotobuf: '>=4.24.3,<4.24.4.0a0' + openssl: '>=3.1.3,<4.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/libgoogle-cloud-2.12.0-h5a37b55_3.conda + hash: + md5: be90da76f8805ce8a138ac47b49fa4ce + sha256: 27e08d97642e5127eb774ff9d67efa995791d09674d5c6cdde158dfa321a0dc8 + optional: false + category: main + build: h5a37b55_3 + arch: aarch64 + subdir: osx-arm64 + build_number: 3 + constrains: + - google-cloud-cpp 2.12.0 *_3 + license: Apache-2.0 + license_family: Apache + size: 31408040 + timestamp: 1696838972502 - name: libgoogle-cloud version: 2.12.0 manager: conda @@ -11744,6 +15321,36 @@ package: license_family: APACHE size: 3979655 timestamp: 1697174609305 +- name: libgrpc + version: 1.58.1 + manager: conda + platform: osx-arm64 + dependencies: + __osx: '>=10.9' + c-ares: '>=1.20.1,<2.0a0' + libabseil: '>=20230802.1,<20230803.0a0' + libcxx: '>=16.0.6' + libprotobuf: '>=4.24.3,<4.24.4.0a0' + libre2-11: '>=2023.6.2,<2024.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + openssl: '>=3.1.3,<4.0a0' + re2: '*' + url: https://conda.anaconda.org/conda-forge/osx-arm64/libgrpc-1.58.1-h19be7b0_2.conda + hash: + md5: e95ae7accb4809d41906365fe97d8aa8 + sha256: 3ee03d7a6725e043c904d6e8a94eef5bb9e28b685c3f37d13f00a7ca51273d15 + optional: false + category: main + build: h19be7b0_2 + arch: aarch64 + subdir: osx-arm64 + build_number: 2 + constrains: + - grpc-cpp =1.58.1 + license: Apache-2.0 + license_family: APACHE + size: 4729822 + timestamp: 1697174687252 - name: libgrpc version: 1.58.1 manager: conda @@ -11836,6 +15443,24 @@ package: license: GPL and LGPL size: 1378276 timestamp: 1652702364402 +- name: libiconv + version: '1.17' + manager: conda + platform: osx-arm64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-arm64/libiconv-1.17-he4db4b2_0.tar.bz2 + hash: + md5: 686f9c755574aa221f29fbcf36a67265 + sha256: 2eb33065783b802f71d52bef6f15ce0fafea0adc8506f10ebd0d490244087bec + optional: false + category: main + build: he4db4b2_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: GPL and LGPL + size: 1407036 + timestamp: 1652700956112 - name: libiconv version: '1.17' manager: conda @@ -11897,6 +15522,26 @@ package: license: IJG AND BSD-3-Clause AND Zlib size: 579748 timestamp: 1694475265912 +- name: libjpeg-turbo + version: 3.0.0 + manager: conda + platform: osx-arm64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-arm64/libjpeg-turbo-3.0.0-hb547adb_1.conda + hash: + md5: 3ff1e053dc3a2b8e36b9bfa4256a58d1 + sha256: a42054eaa38e84fc1e5ab443facac4bbc9d1b6b6f23f54b7bf4f1eb687e1d993 + optional: false + category: main + build: hb547adb_1 + arch: aarch64 + subdir: osx-arm64 + build_number: 1 + constrains: + - jpeg <0.0.0a + license: IJG AND BSD-3-Clause AND Zlib + size: 547541 + timestamp: 1694475104253 - name: libjpeg-turbo version: 3.0.0 manager: conda @@ -11969,6 +15614,30 @@ package: license_family: BSD size: 398649 timestamp: 1696452291278 +- name: libkml + version: 1.3.0 + manager: conda + platform: osx-arm64 + dependencies: + libboost-headers: '*' + libcxx: '>=15.0.7' + libexpat: '>=2.5.0,<3.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + uriparser: '>=0.9.7,<1.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/libkml-1.3.0-h1eb4d9f_1018.conda + hash: + md5: f287028317d50fa3edad9c715d22e26b + sha256: ba3833cd0c517bb7a00b235b85a35bc58096e981ef3ac392c0916d83a1abc00a + optional: false + category: main + build: h1eb4d9f_1018 + arch: aarch64 + subdir: osx-arm64 + build_number: 1018 + license: BSD-3-Clause + license_family: BSD + size: 421133 + timestamp: 1696451613703 - name: libkml version: 1.3.0 manager: conda @@ -12043,6 +15712,30 @@ package: license_family: BSD size: 14724 timestamp: 1697484756327 +- name: liblapack + version: 3.9.0 + manager: conda + platform: osx-arm64 + dependencies: + libblas: ==3.9.0 19_osxarm64_openblas + url: https://conda.anaconda.org/conda-forge/osx-arm64/liblapack-3.9.0-19_osxarm64_openblas.conda + hash: + md5: 3638eacb084c374f41f9efa40d20a47b + sha256: f19cff537403c9feed98c7e18259022102b087f2b72a757e8a417476b9cf30c1 + optional: false + category: main + build: 19_osxarm64_openblas + arch: aarch64 + subdir: osx-arm64 + build_number: 19 + constrains: + - libcblas 3.9.0 19_osxarm64_openblas + - blas * openblas + - liblapacke 3.9.0 19_osxarm64_openblas + license: BSD-3-Clause + license_family: BSD + size: 14721 + timestamp: 1697484603691 - name: liblapack version: 3.9.0 manager: conda @@ -12156,6 +15849,38 @@ package: license_family: MIT size: 737489 timestamp: 1693582116713 +- name: libnetcdf + version: 4.9.2 + manager: conda + platform: osx-arm64 + 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' + libcxx: '>=15.0.7' + 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/osx-arm64/libnetcdf-4.9.2-nompi_hb2fb864_112.conda + hash: + md5: fdd8c3b65f9369c4a5bbf23164ea8e19 + sha256: fef33b99225691fce165cd1aadb85c823e2a3a9e5d67c3069f1d6b9ebbf53fdf + optional: false + category: main + build: nompi_hb2fb864_112 + arch: aarch64 + subdir: osx-arm64 + build_number: 112 + license: MIT + license_family: MIT + size: 706702 + timestamp: 1693582109664 - name: libnetcdf version: 4.9.2 manager: conda @@ -12238,6 +15963,30 @@ package: license_family: MIT size: 613074 timestamp: 1677678399575 +- name: libnghttp2 + version: 1.52.0 + manager: conda + platform: osx-arm64 + dependencies: + c-ares: '>=1.18.1,<2.0a0' + libcxx: '>=14.0.6' + libev: '>=4.33,<4.34.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + openssl: '>=3.0.8,<4.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/libnghttp2-1.52.0-hae82a92_0.conda + hash: + md5: 1d319e95a0216f801293626a00337712 + sha256: 1a3944d6295dcbecdf6489ce8a05fe416ad401727c901ec390e9200a351bdb10 + optional: false + category: main + build: hae82a92_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: MIT + license_family: MIT + size: 564295 + timestamp: 1677678452375 - name: libnsl version: 2.0.1 manager: conda @@ -12366,6 +16115,30 @@ package: license_family: BSD size: 6157393 timestamp: 1693785988209 +- name: libopenblas + version: 0.3.24 + manager: conda + platform: osx-arm64 + dependencies: + libgfortran: 5.* + libgfortran5: '>=12.3.0' + llvm-openmp: '>=15.0.7' + url: https://conda.anaconda.org/conda-forge/osx-arm64/libopenblas-0.3.24-openmp_hd76b1f2_0.conda + hash: + md5: aacb05989f358affe1bafd4ea7294db4 + sha256: 21edfdf620ac5c93571aab452199b6b4622c445441dad88ab4d2eb326a7b91b3 + optional: false + category: main + build: openmp_hd76b1f2_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + constrains: + - openblas >=0.3.24,<0.3.25.0a0 + license: BSD-3-Clause + license_family: BSD + size: 2849225 + timestamp: 1693784744674 - name: libopus version: 1.3.1 manager: conda @@ -12425,6 +16198,25 @@ package: license: zlib-acknowledgement size: 271689 timestamp: 1669075890643 +- name: libpng + version: 1.6.39 + manager: conda + platform: osx-arm64 + dependencies: + libzlib: '>=1.2.13,<1.3.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/libpng-1.6.39-h76d750c_0.conda + hash: + md5: 0078e6327c13cfdeae6ff7601e360383 + sha256: 21ab8409a8e66f9408b96428c0a36a9768faee9fe623c56614576f9e12962981 + optional: false + category: main + build: h76d750c_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: zlib-acknowledgement + size: 259412 + timestamp: 1669075883972 - name: libpng version: 1.6.39 manager: conda @@ -12490,6 +16282,27 @@ package: license: PostgreSQL size: 2362584 timestamp: 1696004192526 +- name: libpq + version: '16.0' + manager: conda + platform: osx-arm64 + dependencies: + krb5: '>=1.21.2,<1.22.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + openssl: '>=3.1.3,<4.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/libpq-16.0-hcea71ed_1.conda + hash: + md5: 42d504f6433024058dda89ba0e1bd2f2 + sha256: 5119880e145efca6768a79649c8ed64bfdbe2f862e05c2759240f297bf300117 + optional: false + category: main + build: hcea71ed_1 + arch: aarch64 + subdir: osx-arm64 + build_number: 1 + license: PostgreSQL + size: 2461648 + timestamp: 1696004342637 - name: libpq version: '16.0' manager: conda @@ -12560,6 +16373,28 @@ package: license_family: BSD size: 2157294 timestamp: 1697158160443 +- name: libprotobuf + version: 4.24.3 + manager: conda + platform: osx-arm64 + dependencies: + libabseil: '>=20230802.1,<20230803.0a0' + libcxx: '>=15.0.7' + libzlib: '>=1.2.13,<1.3.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/libprotobuf-4.24.3-hf590ac1_1.conda + hash: + md5: e014b86bbcf828432fda839a4e714dc8 + sha256: d901263a547d38c65e54ff8fc53a08909ccd4b01aefa26acb68c51f7458ee54b + optional: false + category: main + build: hf590ac1_1 + arch: aarch64 + subdir: osx-arm64 + build_number: 1 + license: BSD-3-Clause + license_family: BSD + size: 2167180 + timestamp: 1697157552725 - name: libprotobuf version: 4.24.3 manager: conda @@ -12632,6 +16467,30 @@ package: license_family: BSD size: 182813 timestamp: 1697065869791 +- name: libre2-11 + version: 2023.06.02 + manager: conda + platform: osx-arm64 + dependencies: + __osx: '>=10.9' + libabseil: '>=20230802.1,<20230803.0a0' + libcxx: '>=16.0.6' + url: https://conda.anaconda.org/conda-forge/osx-arm64/libre2-11-2023.06.02-h1753957_0.conda + hash: + md5: 3b8652db4bf4e27fa1446526f7a78498 + sha256: 8bafee8f8ef27f4cb0afffe5404dd1abfc5fd6eac1ee9b4847a756d440bd7aa7 + optional: false + category: main + build: h1753957_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + constrains: + - re2 2023.06.02.* + license: BSD-3-Clause + license_family: BSD + size: 169587 + timestamp: 1697065827986 - name: libre2-11 version: 2023.06.02 manager: conda @@ -12700,6 +16559,27 @@ package: license_family: GPL size: 214159 timestamp: 1687974265453 +- name: librttopo + version: 1.1.0 + manager: conda + platform: osx-arm64 + dependencies: + geos: '>=3.12.0,<3.12.1.0a0' + libcxx: '>=15.0.7' + url: https://conda.anaconda.org/conda-forge/osx-arm64/librttopo-1.1.0-h667cd51_14.conda + hash: + md5: 5dfc75562bc705e4a645eb8079139c8c + sha256: 5ed612f91b1e0bfa41dca9f6bdd9edd28039b6880c3d1b9dc40aa748b6d1d7c7 + optional: false + category: main + build: h667cd51_14 + arch: aarch64 + subdir: osx-arm64 + build_number: 14 + license: GPL-2.0-or-later + license_family: GPL + size: 203261 + timestamp: 1687974499690 - name: librttopo version: 1.1.0 manager: conda @@ -12787,6 +16667,24 @@ package: license: ISC size: 528765 timestamp: 1605135849110 +- name: libsodium + version: 1.0.18 + manager: conda + platform: osx-arm64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-arm64/libsodium-1.0.18-h27ca646_1.tar.bz2 + hash: + md5: 90859688dbca4735b74c02af14c4c793 + sha256: 1d95fe5e5e6a0700669aab454b2a32f97289c9ed8d1f7667c2ba98327a6f05bc + optional: false + category: main + build: h27ca646_1 + arch: aarch64 + subdir: osx-arm64 + build_number: 1 + license: ISC + size: 324912 + timestamp: 1605135878892 - name: libsodium version: 1.0.18 manager: conda @@ -12848,6 +16746,26 @@ package: license_family: MIT size: 410011 timestamp: 1626973076121 +- name: libspatialindex + version: 1.9.3 + manager: conda + platform: osx-arm64 + dependencies: + libcxx: '>=11.1.0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/libspatialindex-1.9.3-hbdafb3b_4.tar.bz2 + hash: + md5: 311816a2511df4bceeeebe7c06af63e7 + sha256: a1af21a778e7a04fd866ccd617a4503ebe8abeb4e5fe718cd219be4d6e70e778 + optional: false + category: main + build: hbdafb3b_4 + arch: aarch64 + subdir: osx-arm64 + build_number: 4 + license: MIT + license_family: MIT + size: 384667 + timestamp: 1626973089078 - name: libspatialindex version: 1.9.3 manager: conda @@ -12929,6 +16847,36 @@ package: license_family: MOZILLA size: 3146968 timestamp: 1694987054620 +- name: libspatialite + version: 5.1.0 + manager: conda + platform: osx-arm64 + dependencies: + freexl: '>=2.0.0,<3.0a0' + geos: '>=3.12.0,<3.12.1.0a0' + libcxx: '>=15.0.7' + libiconv: '>=1.17,<2.0a0' + librttopo: '>=1.1.0,<1.2.0a0' + libsqlite: '>=3.43.0,<4.0a0' + 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/osx-arm64/libspatialite-5.1.0-h32510b6_0.conda + hash: + md5: 075be471a7d969b14e3e49074974bac8 + sha256: bb84ffd0ea6e2859127e737c444898c7133c3df7c7fe41e2abda5b3cef36be60 + optional: false + category: main + build: h32510b6_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: MPL-1.1 + license_family: MOZILLA + size: 3202104 + timestamp: 1694989568399 - name: libspatialite version: 5.1.0 manager: conda @@ -12999,6 +16947,25 @@ package: license: Unlicense size: 885196 timestamp: 1696959083399 +- name: libsqlite + version: 3.43.2 + manager: conda + platform: osx-arm64 + dependencies: + libzlib: '>=1.2.13,<1.3.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/libsqlite-3.43.2-h091b4b1_0.conda + hash: + md5: 1d8208ba1b6a8c61431e77dc4e5c8fb9 + sha256: 93bec176e05c15a126c1c1c50b3aaef224829b81062bfd48716c5affde950a3f + optional: false + category: main + build: h091b4b1_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: Unlicense + size: 809129 + timestamp: 1696959090990 - name: libsqlite version: 3.43.2 manager: conda @@ -13063,6 +17030,27 @@ package: license_family: BSD size: 259556 timestamp: 1685837820566 +- name: libssh2 + version: 1.11.0 + manager: conda + platform: osx-arm64 + dependencies: + libzlib: '>=1.2.13,<1.3.0a0' + openssl: '>=3.1.1,<4.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/libssh2-1.11.0-h7a5bd25_0.conda + hash: + md5: 029f7dc931a3b626b94823bc77830b01 + sha256: bb57d0c53289721fff1eeb3103a1c6a988178e88d8a8f4345b0b91a35f0e0015 + optional: false + category: main + build: h7a5bd25_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + size: 255610 + timestamp: 1685837894256 - name: libssh2 version: 1.11.0 manager: conda @@ -13178,6 +17166,29 @@ package: license_family: APACHE size: 325415 timestamp: 1695958330036 +- name: libthrift + version: 0.19.0 + manager: conda + platform: osx-arm64 + dependencies: + libcxx: '>=15.0.7' + libevent: '>=2.1.12,<2.1.13.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + openssl: '>=3.1.3,<4.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/libthrift-0.19.0-h026a170_1.conda + hash: + md5: 4b8b21eb00d9019e9fa351141da2a6ac + sha256: b2c1b30d36f0412c0c0313db76a0236d736f3a9b887b8ed16182f531e4b7cb80 + optional: false + category: main + build: h026a170_1 + arch: aarch64 + subdir: osx-arm64 + build_number: 1 + license: Apache-2.0 + license_family: APACHE + size: 331154 + timestamp: 1695958512679 - name: libthrift version: 0.19.0 manager: conda @@ -13256,6 +17267,32 @@ package: license: HPND size: 266501 timestamp: 1695661828714 +- name: libtiff + version: 4.6.0 + manager: conda + platform: osx-arm64 + dependencies: + lerc: '>=4.0.0,<5.0a0' + libcxx: '>=15.0.7' + libdeflate: '>=1.19,<1.20.0a0' + libjpeg-turbo: '>=3.0.0,<4.0a0' + 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/osx-arm64/libtiff-4.6.0-ha8a6c65_2.conda + hash: + md5: 596d6d949bab9a75a492d451f521f457 + sha256: b18ef36eb90f190db22c56ae5a080bccc16669c8f5b795a6211d7b0c00c18ff7 + optional: false + category: main + build: ha8a6c65_2 + arch: aarch64 + subdir: osx-arm64 + build_number: 2 + license: HPND + size: 246265 + timestamp: 1695661829324 - name: libtiff version: 4.6.0 manager: conda @@ -13322,6 +17359,25 @@ package: license_family: MIT size: 98942 timestamp: 1667316472080 +- name: libutf8proc + version: 2.8.0 + manager: conda + platform: osx-arm64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-arm64/libutf8proc-2.8.0-h1a8c8d9_0.tar.bz2 + hash: + md5: f8c9c41a122ab3abdf8943b13f4957ee + sha256: a3faddac08efd930fa3a1cc254b5053b4ed9428c49a888d437bf084d403c931a + optional: false + category: main + build: h1a8c8d9_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: MIT + license_family: MIT + size: 103492 + timestamp: 1667316405233 - name: libutf8proc version: 2.8.0 manager: conda @@ -13451,6 +17507,27 @@ package: license_family: BSD size: 346599 timestamp: 1694709233836 +- name: libwebp-base + version: 1.3.2 + manager: conda + platform: osx-arm64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-arm64/libwebp-base-1.3.2-hb547adb_0.conda + hash: + md5: 85dbc11098cdbe4244cd73f29a3ab795 + sha256: a159b848193043fb58465ae6a449361615dadcf27babfe0b18db2bd3eb59e958 + optional: false + category: main + build: hb547adb_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + constrains: + - libwebp 1.3.2 + license: BSD-3-Clause + license_family: BSD + size: 273844 + timestamp: 1694709510635 - name: libwebp-base version: 1.3.2 manager: conda @@ -13520,6 +17597,28 @@ package: license_family: MIT size: 313793 timestamp: 1682083036825 +- name: libxcb + version: '1.15' + manager: conda + platform: osx-arm64 + dependencies: + pthread-stubs: '*' + xorg-libxau: '*' + xorg-libxdmcp: '*' + url: https://conda.anaconda.org/conda-forge/osx-arm64/libxcb-1.15-hf346824_0.conda + hash: + md5: 988d5f86ab60fa6de91b3ee3a88a3af9 + sha256: 6eaa87760ff3e91bb5524189700139db46f8946ff6331f4e571e4a9356edbb0d + optional: false + category: main + build: hf346824_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: MIT + license_family: MIT + size: 334770 + timestamp: 1682082734262 - name: libxcb version: '1.15' manager: conda @@ -13616,6 +17715,29 @@ package: license_family: MIT size: 623399 timestamp: 1692960844532 +- name: libxml2 + version: 2.11.5 + manager: conda + platform: osx-arm64 + dependencies: + icu: '>=73.2,<74.0a0' + 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/osx-arm64/libxml2-2.11.5-h25269f3_1.conda + hash: + md5: 627b5d1377536b5b632ba53cd1455555 + sha256: 8291549b87aca48e9cd4aec124af01b5037acd16f8ad14083d7af23c8bb6bebe + optional: false + category: main + build: h25269f3_1 + arch: aarch64 + subdir: osx-arm64 + build_number: 1 + license: MIT + license_family: MIT + size: 614831 + timestamp: 1692960705224 - name: libxml2 version: 2.11.5 manager: conda @@ -13685,6 +17807,28 @@ package: license_family: BSD size: 127599 timestamp: 1694416738467 +- name: libzip + version: 1.10.1 + manager: conda + platform: osx-arm64 + dependencies: + bzip2: '>=1.0.8,<2.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + openssl: '>=3.1.2,<4.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/libzip-1.10.1-ha0bc3c6_3.conda + hash: + md5: e37c0da207079e488709043634d6a711 + sha256: fb42f34c2275523a06bc8464454fa57f2417203524cabb7aacca4e5de6cfeb69 + optional: false + category: main + build: ha0bc3c6_3 + arch: aarch64 + subdir: osx-arm64 + build_number: 3 + license: BSD-3-Clause + license_family: BSD + size: 128244 + timestamp: 1694416824668 - name: libzip version: 1.10.1 manager: conda @@ -13753,6 +17897,27 @@ package: license_family: Other size: 59404 timestamp: 1686575566695 +- name: libzlib + version: 1.2.13 + manager: conda + platform: osx-arm64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-arm64/libzlib-1.2.13-h53f4e23_5.conda + hash: + md5: 1a47f5236db2e06a320ffa0392f81bd8 + sha256: ab1c8aefa2d54322a63aaeeefe9cf877411851738616c4068e0dccc66b9c758a + optional: false + category: main + build: h53f4e23_5 + arch: aarch64 + subdir: osx-arm64 + build_number: 5 + constrains: + - zlib 1.2.13 *_5 + license: Zlib + license_family: Other + size: 48102 + timestamp: 1686575426584 - name: libzlib version: 1.2.13 manager: conda @@ -13798,6 +17963,27 @@ package: license_family: APACHE size: 299798 timestamp: 1697651995182 +- name: llvm-openmp + version: 17.0.3 + manager: conda + platform: osx-arm64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-openmp-17.0.3-hcd81f8e_0.conda + hash: + md5: bc4b8795976aae9c1ea5eb4ba26eafd8 + sha256: e744ecb793c1e991e93855b6e6b26c43b2b6fef2ecc340f9f54f7a650ed5e41a + optional: false + category: main + build: hcd81f8e_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + constrains: + - openmp 17.0.3|17.0.3.* + license: Apache-2.0 WITH LLVM-exception + license_family: APACHE + size: 274678 + timestamp: 1697652011036 - name: lz4-c version: 1.9.4 manager: conda @@ -13839,6 +18025,26 @@ package: license_family: BSD size: 156415 timestamp: 1674727335352 +- name: lz4-c + version: 1.9.4 + manager: conda + platform: osx-arm64 + dependencies: + libcxx: '>=14.0.6' + url: https://conda.anaconda.org/conda-forge/osx-arm64/lz4-c-1.9.4-hb7217d7_0.conda + hash: + md5: 45505bec548634f7d05e02fb25262cb9 + sha256: fc343b8c82efe40819b986e29ba748366514e5ab94a1e1138df195af5f45fa24 + optional: false + category: main + build: hb7217d7_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: BSD-2-Clause + license_family: BSD + size: 141188 + timestamp: 1674727268278 - name: lz4-c version: 1.9.4 manager: conda @@ -13900,6 +18106,25 @@ package: license_family: GPL2 size: 194278 timestamp: 1597682686489 +- name: lzo + version: '2.10' + manager: conda + platform: osx-arm64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-arm64/lzo-2.10-h642e427_1000.tar.bz2 + hash: + md5: ddab5f96f5573a9bd5e24f9994fd6ec9 + sha256: ae029e5c16893071d29a11ddbfdbdb01b2ebf10d1785f54370934439d8b71817 + optional: false + category: main + build: h642e427_1000 + arch: aarch64 + subdir: osx-arm64 + build_number: 1000 + license: GPL v2+ + license_family: GPL2 + size: 157236 + timestamp: 1597683217947 - name: lzo version: '2.10' manager: conda @@ -14075,6 +18300,32 @@ package: noarch: python size: 38684 timestamp: 1696563711967 +- name: mapclassify + version: 2.6.1 + manager: conda + platform: osx-arm64 + dependencies: + networkx: '>=2.7' + numpy: '>=1.23' + pandas: '>=1.4,!=1.5.0' + python: '>=3.9' + scikit-learn: '>=1.0' + scipy: '>=1.8' + url: https://conda.anaconda.org/conda-forge/noarch/mapclassify-2.6.1-pyhd8ed1ab_0.conda + hash: + md5: 6aceae1ad4f16cf7b73ee04189947f98 + sha256: 204ab8b242229d422b33cfec07ea61cefa8bd22375a16658afbabaafce031d64 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 38684 + timestamp: 1696563711967 - name: mapclassify version: 2.6.1 manager: conda @@ -14104,7 +18355,29 @@ package: - name: markdown-it-py version: 3.0.0 manager: conda - platform: linux-64 + platform: linux-64 + dependencies: + mdurl: '>=0.1,<1' + python: '>=3.8' + url: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_0.conda + hash: + md5: 93a8e71256479c62074356ef6ebf501b + sha256: c041b0eaf7a6af3344d5dd452815cdc148d6284fec25a4fa3f4263b3a021e962 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: linux-64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 64356 + timestamp: 1686175179621 +- name: markdown-it-py + version: 3.0.0 + manager: conda + platform: osx-64 dependencies: mdurl: '>=0.1,<1' python: '>=3.8' @@ -14116,7 +18389,7 @@ package: category: main build: pyhd8ed1ab_0 arch: x86_64 - subdir: linux-64 + subdir: osx-64 build_number: 0 license: MIT license_family: MIT @@ -14126,7 +18399,7 @@ package: - name: markdown-it-py version: 3.0.0 manager: conda - platform: osx-64 + platform: osx-arm64 dependencies: mdurl: '>=0.1,<1' python: '>=3.8' @@ -14137,8 +18410,8 @@ package: optional: false category: main build: pyhd8ed1ab_0 - arch: x86_64 - subdir: osx-64 + arch: aarch64 + subdir: osx-arm64 build_number: 0 license: MIT license_family: MIT @@ -14214,6 +18487,29 @@ package: license_family: BSD size: 25917 timestamp: 1695367980802 +- name: markupsafe + version: 2.1.3 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.11,<3.12.0a0 *_cpython' + python_abi: 3.11.* *_cp311 + url: https://conda.anaconda.org/conda-forge/osx-arm64/markupsafe-2.1.3-py311heffc1b2_1.conda + hash: + md5: 5a7b68cb9eea46bea31aaf2d11d0dd2f + sha256: 307c1e3b2e4a2a992a6c94975910adff88cc523e2c9a41e81b2d506d8c9e7359 + optional: false + category: main + build: py311heffc1b2_1 + arch: aarch64 + subdir: osx-arm64 + build_number: 1 + constrains: + - jinja2 >=3.0.0 + license: BSD-3-Clause + license_family: BSD + size: 26764 + timestamp: 1695368008221 - name: markupsafe version: 2.1.3 manager: conda @@ -14287,6 +18583,29 @@ package: license_family: PSF size: 8558 timestamp: 1697011780294 +- name: matplotlib + version: 3.8.0 + manager: conda + platform: osx-arm64 + dependencies: + matplotlib-base: '>=3.8.0,<3.8.1.0a0' + python: '>=3.11,<3.12.0a0' + python_abi: 3.11.* *_cp311 + tornado: '>=5' + url: https://conda.anaconda.org/conda-forge/osx-arm64/matplotlib-3.8.0-py311ha1ab1f8_2.conda + hash: + md5: fe850cd129d4b4939d084988fbd5a5bd + sha256: 2b63fd8796583e656a9a206cfc1a1b729790c7f8629c893f01c0bec724c452e8 + optional: false + category: main + build: py311ha1ab1f8_2 + arch: aarch64 + subdir: osx-arm64 + build_number: 2 + license: PSF-2.0 + license_family: PSF + size: 8623 + timestamp: 1697011826402 - name: matplotlib version: 3.8.0 manager: conda @@ -14380,6 +18699,40 @@ package: license_family: PSF size: 7907317 timestamp: 1697011745872 +- name: matplotlib-base + version: 3.8.0 + manager: conda + platform: osx-arm64 + dependencies: + __osx: '>=10.9' + certifi: '>=2020.6.20' + contourpy: '>=1.0.1' + cycler: '>=0.10' + fonttools: '>=4.22.0' + freetype: '>=2.12.1,<3.0a0' + kiwisolver: '>=1.0.1' + libcxx: '>=16.0.6' + numpy: '>=1.23.5,<2.0a0' + packaging: '>=20.0' + pillow: '>=6.2.0' + pyparsing: '>=2.3.1' + python: '>=3.11,<3.12.0a0 *_cpython' + python-dateutil: '>=2.7' + python_abi: 3.11.* *_cp311 + url: https://conda.anaconda.org/conda-forge/osx-arm64/matplotlib-base-3.8.0-py311hfdba5f6_2.conda + hash: + md5: 010a48459722f47f5ef519d10a39df1a + sha256: 980cd92bb47473295e05c3937ea6e8dd0b4d5f59c29b7c3634d18c9a1e09046e + optional: false + category: main + build: py311hfdba5f6_2 + arch: aarch64 + subdir: osx-arm64 + build_number: 2 + license: PSF-2.0 + license_family: PSF + size: 7958545 + timestamp: 1697011779342 - name: matplotlib-base version: 3.8.0 manager: conda @@ -14459,6 +18812,28 @@ package: noarch: python size: 12273 timestamp: 1660814913405 +- name: matplotlib-inline + version: 0.1.6 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.6' + traitlets: '*' + url: https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.1.6-pyhd8ed1ab_0.tar.bz2 + hash: + md5: b21613793fcc81d944c76c9f2864a7de + sha256: aa091b88aec55bfa2d9207028d8cdc689b9efb090ae27b99557e93c675be2f3c + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 12273 + timestamp: 1660814913405 - name: matplotlib-inline version: 0.1.6 manager: conda @@ -14523,6 +18898,27 @@ package: noarch: python size: 13707 timestamp: 1639515992326 +- name: mdurl + version: 0.1.0 + manager: conda + platform: osx-arm64 + 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 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 13707 + timestamp: 1639515992326 - name: mdurl version: 0.1.0 manager: conda @@ -14597,6 +18993,32 @@ package: license_family: Other size: 78658 timestamp: 1696415606315 +- name: minizip + version: 4.0.1 + manager: conda + platform: osx-arm64 + dependencies: + bzip2: '>=1.0.8,<2.0a0' + libcxx: '>=15.0.7' + libiconv: '>=1.17,<2.0a0' + 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/osx-arm64/minizip-4.0.1-h5a7aac7_5.conda + hash: + md5: a15766024c8dc43f91ed2b0919b4a0f1 + sha256: 8ff230ecdc930d1aff9406016012a380dcb87194bae18e85f16109f7a63bab67 + optional: false + category: main + build: h5a7aac7_5 + arch: aarch64 + subdir: osx-arm64 + build_number: 5 + license: Zlib + license_family: Other + size: 82147 + timestamp: 1696415595727 - name: minizip version: 4.0.1 manager: conda @@ -14665,6 +19087,27 @@ package: noarch: python size: 66169 timestamp: 1692116828443 +- name: mistune + version: 3.0.1 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.7' + url: https://conda.anaconda.org/conda-forge/noarch/mistune-3.0.1-pyhd8ed1ab_0.conda + hash: + md5: 1dad8397c94e4de97a70de552a7dcf49 + sha256: 0b4558d3afb64e23b66f5279b704de76ebeb6b4eebbf913d65fbd4ba7d9acc2f + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 66169 + timestamp: 1692116828443 - name: mistune version: 3.0.1 manager: conda @@ -14749,6 +19192,27 @@ package: noarch: python size: 53654 timestamp: 1691087125209 +- name: more-itertools + version: 10.1.0 + manager: conda + platform: osx-arm64 + 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 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 53654 + timestamp: 1691087125209 - name: more-itertools version: 10.1.0 manager: conda @@ -14850,6 +19314,27 @@ package: noarch: python size: 14782 timestamp: 1677278842704 +- name: multimethod + version: 1.9.1 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.6' + url: https://conda.anaconda.org/conda-forge/noarch/multimethod-1.9.1-pyhd8ed1ab_0.conda + hash: + md5: 48223af3f697ccd9b114adb6a66e0f11 + sha256: 7fcfda7b4a1d74205fcfdefd93804226a6eaffc74a319414c7d8d88f9249db3b + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: Apache-2.0 + license_family: APACHE + noarch: python + size: 14782 + timestamp: 1677278842704 - name: multimethod version: 1.9.1 manager: conda @@ -14913,6 +19398,27 @@ package: noarch: python size: 15466 timestamp: 1688318483241 +- name: munch + version: 4.0.0 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.8' + url: https://conda.anaconda.org/conda-forge/noarch/munch-4.0.0-pyhd8ed1ab_0.conda + hash: + md5: 376b32e8f9d3eacbd625f37d39bd507d + sha256: 093020ae2deb6c468120111a54909e1c576d70dfea6bc0eec5093e36d2fb8ff8 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 15466 + timestamp: 1688318483241 - name: munch version: 4.0.0 manager: conda @@ -14976,6 +19482,27 @@ package: noarch: python size: 12452 timestamp: 1600387789153 +- name: munkres + version: 1.1.4 + manager: conda + platform: osx-arm64 + dependencies: + python: '*' + url: https://conda.anaconda.org/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2 + hash: + md5: 2ba8498c1018c1e9c61eb99b973dfe19 + sha256: f86fb22b58e93d04b6f25e0d811b56797689d598788b59dcb47f59045b568306 + optional: false + category: main + build: pyh9f0ad1d_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: Apache-2.0 + license_family: Apache + noarch: python + size: 12452 + timestamp: 1600387789153 - name: munkres version: 1.1.4 manager: conda @@ -15046,6 +19573,30 @@ package: license_family: MIT size: 11620522 timestamp: 1697636285286 +- name: mypy + version: 1.6.1 + manager: conda + platform: osx-arm64 + dependencies: + mypy_extensions: '>=1.0.0' + psutil: '>=4.0' + python: '>=3.11,<3.12.0a0 *_cpython' + python_abi: 3.11.* *_cp311 + typing_extensions: '>=4.1.0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/mypy-1.6.1-py311h05b510d_0.conda + hash: + md5: 3fe52bcd6e4b64239f2b8b8fdff66107 + sha256: fc0a32dd0128225d19caf5a3e705d7a71c7b753a7e75b8044ec52d084b4d808f + optional: false + category: main + build: py311h05b510d_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: MIT + license_family: MIT + size: 9410384 + timestamp: 1697636483558 - name: mypy version: 1.6.1 manager: conda @@ -15115,6 +19666,27 @@ package: noarch: python size: 10492 timestamp: 1675543414256 +- name: mypy_extensions + version: 1.0.0 + manager: conda + platform: osx-arm64 + 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 + optional: false + category: main + build: pyha770c72_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 10492 + timestamp: 1675543414256 - name: mypy_extensions version: 1.0.0 manager: conda @@ -15182,7 +19754,32 @@ package: - name: nbclient version: 0.8.0 manager: conda - platform: linux-64 + platform: linux-64 + dependencies: + jupyter_client: '>=6.1.12' + jupyter_core: '>=4.12,!=5.0.*' + nbformat: '>=5.1' + python: '>=3.8' + traitlets: '>=5.4' + url: https://conda.anaconda.org/conda-forge/noarch/nbclient-0.8.0-pyhd8ed1ab_0.conda + hash: + md5: e78da91cf428faaf05701ce8cc8f2f9b + sha256: 4ebd237cdf4bfa5226f92d2ae78fab8dba27696909391884dc6594ca6f9df5ff + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: linux-64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 64852 + timestamp: 1684791049212 +- name: nbclient + version: 0.8.0 + manager: conda + platform: osx-64 dependencies: jupyter_client: '>=6.1.12' jupyter_core: '>=4.12,!=5.0.*' @@ -15197,7 +19794,7 @@ package: category: main build: pyhd8ed1ab_0 arch: x86_64 - subdir: linux-64 + subdir: osx-64 build_number: 0 license: BSD-3-Clause license_family: BSD @@ -15207,7 +19804,7 @@ package: - name: nbclient version: 0.8.0 manager: conda - platform: osx-64 + platform: osx-arm64 dependencies: jupyter_client: '>=6.1.12' jupyter_core: '>=4.12,!=5.0.*' @@ -15221,8 +19818,8 @@ package: optional: false category: main build: pyhd8ed1ab_0 - arch: x86_64 - subdir: osx-64 + arch: aarch64 + subdir: osx-arm64 build_number: 0 license: BSD-3-Clause license_family: BSD @@ -15334,6 +19931,46 @@ package: noarch: python size: 187699 timestamp: 1696472907887 +- name: nbconvert-core + version: 7.9.2 + manager: conda + platform: osx-arm64 + dependencies: + beautifulsoup4: '*' + bleach: '*' + defusedxml: '*' + entrypoints: '>=0.2.2' + jinja2: '>=3.0' + jupyter_core: '>=4.7' + jupyterlab_pygments: '*' + markupsafe: '>=2.0' + mistune: '>=2.0.3,<4' + nbclient: '>=0.5.0' + nbformat: '>=5.1' + packaging: '*' + pandocfilters: '>=1.4.1' + pygments: '>=2.4.1' + python: '>=3.8' + tinycss2: '*' + traitlets: '>=5.0' + url: https://conda.anaconda.org/conda-forge/noarch/nbconvert-core-7.9.2-pyhd8ed1ab_0.conda + hash: + md5: 01e4314c780ca73759c694ce3ece281f + sha256: 2c85cf290cffb72b1fe7d24c22ad6bf89873bf0f562c9c51907dfb6c00f2d4dd + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + constrains: + - nbconvert =7.9.2=*_0 + - pandoc >=2.14.2,<4.0.0 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 187699 + timestamp: 1696472907887 - name: nbconvert-core version: 7.9.2 manager: conda @@ -15424,6 +20061,31 @@ package: noarch: python size: 100446 timestamp: 1690815009867 +- name: nbformat + version: 5.9.2 + manager: conda + platform: osx-arm64 + dependencies: + jsonschema: '>=2.6' + jupyter_core: '*' + python: '>=3.8' + python-fastjsonschema: '*' + traitlets: '>=5.1' + url: https://conda.anaconda.org/conda-forge/noarch/nbformat-5.9.2-pyhd8ed1ab_0.conda + hash: + md5: 61ba076de6530d9301a0053b02f093d2 + sha256: fc82c5a9116820757b03ffb836b36f0f50e4cd390018024dbadb0ee0217f6992 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 100446 + timestamp: 1690815009867 - name: nbformat version: 5.9.2 manager: conda @@ -15486,6 +20148,24 @@ package: license: X11 AND BSD-3-Clause size: 828118 timestamp: 1686077056765 +- name: ncurses + version: '6.4' + manager: conda + platform: osx-arm64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-arm64/ncurses-6.4-h7ea286d_0.conda + hash: + md5: 318337fb9d0c53ba635efb7888242373 + sha256: 017e230a1f912e15005d4c4f3d387119190b53240f9ae0ba8a319dd958901780 + optional: false + category: main + build: h7ea286d_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: X11 AND BSD-3-Clause + size: 799196 + timestamp: 1686077139703 - name: nest-asyncio version: 1.5.8 manager: conda @@ -15528,6 +20208,27 @@ package: noarch: python size: 11630 timestamp: 1697083896431 +- name: nest-asyncio + version: 1.5.8 + manager: conda + platform: osx-arm64 + 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 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: BSD-2-Clause + license_family: BSD + noarch: python + size: 11630 + timestamp: 1697083896431 - name: nest-asyncio version: 1.5.8 manager: conda @@ -15601,6 +20302,32 @@ package: noarch: python size: 1148186 timestamp: 1697702163636 +- name: networkx + version: '3.2' + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.9' + url: https://conda.anaconda.org/conda-forge/noarch/networkx-3.2-pyhd8ed1ab_1.conda + hash: + md5: 522039fb968d6d0a10e872e6f3856f53 + sha256: 857dc30c287f90da1dd1c0a781a5305abb92db900fd5675c8bdd16ae339abb45 + optional: false + category: main + build: pyhd8ed1ab_1 + arch: aarch64 + subdir: osx-arm64 + build_number: 1 + constrains: + - matplotlib >=3.5 + - numpy >=1.22 + - pandas >=1.4 + - scipy >=1.9,!=1.11.0,!=1.11.1 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 1148186 + timestamp: 1697702163636 - name: networkx version: '3.2' manager: conda @@ -15670,6 +20397,27 @@ package: license_family: MIT size: 548514 timestamp: 1695423816927 +- name: nh3 + version: 0.2.14 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.11,<3.12.0a0 *_cpython' + python_abi: 3.11.* *_cp311 + url: https://conda.anaconda.org/conda-forge/osx-arm64/nh3-0.2.14-py311h0563b04_1.conda + hash: + md5: 5a8f322ffa65f7c06fd539f3851b6eba + sha256: 59c3cd5df65671a5ffc586a4cb89f4d1a343dcb0289437403203327947348794 + optional: false + category: main + build: py311h0563b04_1 + arch: aarch64 + subdir: osx-arm64 + build_number: 1 + license: MIT + license_family: MIT + size: 609961 + timestamp: 1695423915817 - name: nh3 version: 0.2.14 manager: conda @@ -15735,6 +20483,28 @@ package: noarch: python size: 34358 timestamp: 1683893151613 +- name: nodeenv + version: 1.8.0 + manager: conda + platform: osx-arm64 + dependencies: + python: ==2.7|>=3.7 + setuptools: '*' + url: https://conda.anaconda.org/conda-forge/noarch/nodeenv-1.8.0-pyhd8ed1ab_0.conda + hash: + md5: 2a75b296096adabbabadd5e9782e5fcc + sha256: 1320306234552717149f36f825ddc7e27ea295f24829e9db4cc6ceaff0b032bd + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 34358 + timestamp: 1683893151613 - name: nodeenv version: 1.8.0 manager: conda @@ -15801,6 +20571,28 @@ package: noarch: python size: 16783 timestamp: 1682360712235 +- name: notebook-shim + version: 0.2.3 + manager: conda + platform: osx-arm64 + 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 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 16783 + timestamp: 1682360712235 - name: notebook-shim version: 0.2.3 manager: conda @@ -15864,6 +20656,26 @@ package: license_family: MOZILLA size: 230071 timestamp: 1669785313586 +- name: nspr + version: '4.35' + manager: conda + platform: osx-arm64 + dependencies: + libcxx: '>=14.0.6' + url: https://conda.anaconda.org/conda-forge/osx-arm64/nspr-4.35-hb7217d7_0.conda + hash: + md5: f81b5ec944dbbcff3dd08375eb036efa + sha256: 35959d36ea9e8a2c422db9f113ee0ac91a9b0c19c51b05f75d0793c3827cfa3a + optional: false + category: main + build: hb7217d7_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: MPL-2.0 + license_family: MOZILLA + size: 220745 + timestamp: 1669785182058 - name: nss version: '3.94' manager: conda @@ -15912,6 +20724,29 @@ package: license_family: MOZILLA size: 1895925 timestamp: 1696290343167 +- name: nss + version: '3.94' + manager: conda + platform: osx-arm64 + dependencies: + libcxx: '>=15.0.7' + libsqlite: '>=3.43.0,<4.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + nspr: '>=4.35,<5.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/nss-3.94-hc6b9969_0.conda + hash: + md5: 4dec6b96cec24e41059c2e795755760a + sha256: 662782a095cc191c073db8e44e14bf8877252d98b1f9b69275d79c47af185bb5 + optional: false + category: main + build: hc6b9969_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: MPL-2.0 + license_family: MOZILLA + size: 1860089 + timestamp: 1696290169758 - name: numpy version: 1.26.0 manager: conda @@ -15967,6 +20802,33 @@ package: license_family: BSD size: 7616817 timestamp: 1694920728660 +- name: numpy + version: 1.26.0 + manager: conda + platform: osx-arm64 + dependencies: + libblas: '>=3.9.0,<4.0a0' + libcblas: '>=3.9.0,<4.0a0' + libcxx: '>=15.0.7' + liblapack: '>=3.9.0,<4.0a0' + python: '>=3.11,<3.12.0a0 *_cpython' + python_abi: 3.11.* *_cp311 + url: https://conda.anaconda.org/conda-forge/osx-arm64/numpy-1.26.0-py311hb8f3215_0.conda + hash: + md5: 97f8632bf2ad5c179ff68fc90c71c2ae + sha256: fca5ee1363f22a160c97e92d6400d4636f4b05987b08085e4f79fb6efb75fd0a + optional: false + category: main + build: py311hb8f3215_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + constrains: + - numpy-base <0a0 + license: BSD-3-Clause + license_family: BSD + size: 6780798 + timestamp: 1694920700859 - name: numpy version: 1.26.0 manager: conda @@ -16040,6 +20902,28 @@ package: noarch: python size: 11191 timestamp: 1643466937157 +- name: openapi-schema-validator + version: 0.2.3 + manager: conda + platform: osx-arm64 + dependencies: + jsonschema: '>=3.0.0,<5.0.0' + python: '>=3.7' + url: https://conda.anaconda.org/conda-forge/noarch/openapi-schema-validator-0.2.3-pyhd8ed1ab_0.tar.bz2 + hash: + md5: 277aff70bb1def188c9c016ba4564e23 + sha256: 0c2f971f86211f2b6db431de9d8ab4c9e38eed5422bd06f93cd8be3cbb882a2c + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 11191 + timestamp: 1643466937157 - name: openapi-schema-validator version: 0.2.3 manager: conda @@ -16080,7 +20964,32 @@ package: category: main build: pyhd8ed1ab_1 arch: x86_64 - subdir: linux-64 + subdir: linux-64 + build_number: 1 + license: Apache-2.0 + license_family: APACHE + noarch: python + size: 29115 + timestamp: 1656021470538 +- name: openapi-spec-validator + version: 0.4.0 + manager: conda + platform: osx-64 + dependencies: + jsonschema: '>=3.2.0,<5.0.0' + openapi-schema-validator: '>=0.2.0,<0.3.0' + python: '>=3.7' + pyyaml: '>=5.1' + setuptools: '*' + url: https://conda.anaconda.org/conda-forge/noarch/openapi-spec-validator-0.4.0-pyhd8ed1ab_1.tar.bz2 + hash: + md5: 5ff3ff67d18fd4938c4ae38c3baf21bb + sha256: 11f24d36001aaba0a7197ff7b9a07ab943d05f969b13e5a9c4ffec13eca19cd0 + optional: false + category: main + build: pyhd8ed1ab_1 + arch: x86_64 + subdir: osx-64 build_number: 1 license: Apache-2.0 license_family: APACHE @@ -16090,7 +20999,7 @@ package: - name: openapi-spec-validator version: 0.4.0 manager: conda - platform: osx-64 + platform: osx-arm64 dependencies: jsonschema: '>=3.2.0,<5.0.0' openapi-schema-validator: '>=0.2.0,<0.3.0' @@ -16104,8 +21013,8 @@ package: optional: false category: main build: pyhd8ed1ab_1 - arch: x86_64 - subdir: osx-64 + arch: aarch64 + subdir: osx-arm64 build_number: 1 license: Apache-2.0 license_family: APACHE @@ -16184,6 +21093,29 @@ package: license_family: BSD size: 335643 timestamp: 1694708811338 +- name: openjpeg + version: 2.5.0 + manager: conda + platform: osx-arm64 + dependencies: + libcxx: '>=15.0.7' + libpng: '>=1.6.39,<1.7.0a0' + libtiff: '>=4.6.0,<4.7.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/openjpeg-2.5.0-h4c1507b_3.conda + hash: + md5: 4127dd217a010d9c6cbefdaae07d9f19 + sha256: a6998c0da4643a84dc7c0b3a9e5137db258619ea922317bb7d9ae64f54b4a9ed + optional: false + category: main + build: h4c1507b_3 + arch: aarch64 + subdir: osx-arm64 + build_number: 3 + license: BSD-2-Clause + license_family: BSD + size: 323335 + timestamp: 1694708748389 - name: openjpeg version: 2.5.0 manager: conda @@ -16254,6 +21186,28 @@ package: license_family: Apache size: 2320542 timestamp: 1698165459976 +- name: openssl + version: 3.1.4 + manager: conda + platform: osx-arm64 + dependencies: + ca-certificates: '*' + url: https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.1.4-h0d3ecfb_0.conda + hash: + md5: 5a89552fececf4cd99628318ccbb67a3 + sha256: 3c715b1d4940c7ad6065935db18924b85a54048dde066f963cfc250340639457 + optional: false + category: main + build: h0d3ecfb_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + constrains: + - pyopenssl >=22.1 + license: Apache-2.0 + license_family: Apache + size: 2147225 + timestamp: 1698164947105 - name: openssl version: 3.1.4 manager: conda @@ -16331,6 +21285,32 @@ package: license_family: Apache size: 423379 timestamp: 1696768921701 +- name: orc + version: 1.9.0 + manager: conda + platform: osx-arm64 + dependencies: + __osx: '>=10.9' + libcxx: '>=16.0.6' + libprotobuf: '>=4.24.3,<4.24.4.0a0' + 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/osx-arm64/orc-1.9.0-hcd02cb2_3.conda + hash: + md5: f641dc4341fc504ef31923bf5ded9782 + sha256: 745ae7b01053f2602e136d30e303ab3946f2706b502cff795b5cc18e7d17ae2f + optional: false + category: main + build: hcd02cb2_3 + arch: aarch64 + subdir: osx-arm64 + build_number: 3 + license: Apache-2.0 + license_family: Apache + size: 405788 + timestamp: 1696768918785 - name: orc version: 1.9.0 manager: conda @@ -16402,6 +21382,28 @@ package: noarch: python size: 29976 timestamp: 1691338962381 +- name: overrides + version: 7.4.0 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.6' + typing_utils: '*' + url: https://conda.anaconda.org/conda-forge/noarch/overrides-7.4.0-pyhd8ed1ab_0.conda + hash: + md5: 4625b7b01d7f4ac9c96300a5515acfaa + sha256: 29db8c3b521d261bf71897ba3cfbebc81cd61e581b30fcb984b5a713f02fe1ff + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: Apache-2.0 + license_family: APACHE + noarch: python + size: 29976 + timestamp: 1691338962381 - name: overrides version: 7.4.0 manager: conda @@ -16466,6 +21468,27 @@ package: noarch: python size: 49452 timestamp: 1696202521121 +- name: packaging + version: '23.2' + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.7' + url: https://conda.anaconda.org/conda-forge/noarch/packaging-23.2-pyhd8ed1ab_0.conda + hash: + md5: 79002079284aa895f883c6b7f3f88fd6 + sha256: 69b3ace6cca2dab9047b2c24926077d81d236bef45329d264b394001e3c3e52f + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: Apache-2.0 + license_family: APACHE + noarch: python + size: 49452 + timestamp: 1696202521121 - name: packaging version: '23.2' manager: conda @@ -16540,6 +21563,32 @@ package: license_family: BSD size: 14138161 timestamp: 1688741719427 +- name: pandas + version: 2.0.3 + manager: conda + platform: osx-arm64 + dependencies: + libcxx: '>=15.0.7' + numpy: '>=1.23.5,<2.0a0' + python: '>=3.11,<3.12.0a0 *_cpython' + python-dateutil: '>=2.8.1' + python-tzdata: '>=2022a' + python_abi: 3.11.* *_cp311 + pytz: '>=2020.1' + url: https://conda.anaconda.org/conda-forge/osx-arm64/pandas-2.0.3-py311h9e438b8_1.conda + hash: + md5: ab533a7ad28d13c14b1d8b136d280906 + sha256: 94106f0f473eaa87d687602d632cbb4e998d79e17d211008432cb19dd2505d1b + optional: false + category: main + build: py311h9e438b8_1 + arch: aarch64 + subdir: osx-arm64 + build_number: 1 + license: BSD-3-Clause + license_family: BSD + size: 14160285 + timestamp: 1688741726812 - name: pandas version: 2.0.3 manager: conda @@ -16587,6 +21636,7 @@ package: subdir: linux-64 build_number: 1 license: BSD-3-Clause + license_family: BSD noarch: python size: 96339 timestamp: 1698184293396 @@ -16609,6 +21659,30 @@ package: subdir: osx-64 build_number: 1 license: BSD-3-Clause + license_family: BSD + noarch: python + size: 96339 + timestamp: 1698184293396 +- name: pandas-stubs + version: 2.1.1.230928 + manager: conda + platform: osx-arm64 + dependencies: + numpy: '>=1.26.0' + python: '>=3.9' + types-pytz: '>=2022.1.1' + url: https://conda.anaconda.org/conda-forge/noarch/pandas-stubs-2.1.1.230928-pyhd8ed1ab_1.conda + hash: + md5: 375b8ba549e72a70333b94c4dbba2d86 + sha256: eea3b2ceff7417c1a8114a4eaeed7bdb6642a09a32774394cc34bd1aa655399f + optional: false + category: main + build: pyhd8ed1ab_1 + arch: aarch64 + subdir: osx-arm64 + build_number: 1 + license: BSD-3-Clause + license_family: BSD noarch: python size: 96339 timestamp: 1698184293396 @@ -16631,6 +21705,7 @@ package: subdir: win-64 build_number: 1 license: BSD-3-Clause + license_family: BSD noarch: python size: 96339 timestamp: 1698184293396 @@ -16676,6 +21751,27 @@ package: noarch: python size: 6947 timestamp: 1695918106343 +- name: pandera + version: 0.17.1 + manager: conda + platform: osx-arm64 + dependencies: + pandera-base: '>=0.17.1,<0.17.2.0a0' + url: https://conda.anaconda.org/conda-forge/noarch/pandera-0.17.1-hd8ed1ab_1.conda + hash: + md5: fccf7b6a41d32e4326732fe4563b4f0a + sha256: 6f0a134bc48187ef5665eb577903fe58d45c32f8ace83aa55f9820535ff39ad9 + optional: false + category: main + build: hd8ed1ab_1 + arch: aarch64 + subdir: osx-arm64 + build_number: 1 + license: MIT + license_family: MIT + noarch: python + size: 6947 + timestamp: 1695918106343 - name: pandera version: 0.17.1 manager: conda @@ -16755,6 +21851,35 @@ package: noarch: python size: 124010 timestamp: 1695918097464 +- name: pandera-base + version: 0.17.1 + manager: conda + platform: osx-arm64 + dependencies: + multimethod: '*' + numpy: '>=1.19.0' + packaging: '>=20.0' + pandas: '>=1.2.0' + pydantic: '*' + python: '>=3.8' + typeguard: '>=3.0.2' + typing_inspect: '>=0.6.0' + wrapt: '*' + url: https://conda.anaconda.org/conda-forge/noarch/pandera-base-0.17.1-pyhd8ed1ab_1.conda + hash: + md5: c67a6ccc6020d6f28f53f25167845aa4 + sha256: 5210f5912fba2a70d1bce3a31c3dd7786cd598cc3017f34e8f2f95d3ef784f75 + optional: false + category: main + build: pyhd8ed1ab_1 + arch: aarch64 + subdir: osx-arm64 + build_number: 1 + license: MIT + license_family: MIT + noarch: python + size: 124010 + timestamp: 1695918097464 - name: pandera-base version: 0.17.1 manager: conda @@ -16885,6 +22010,27 @@ package: noarch: python size: 11627 timestamp: 1631603397334 +- name: pandocfilters + version: 1.5.0 + manager: conda + platform: osx-arm64 + 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 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 11627 + timestamp: 1631603397334 - name: pandocfilters version: 1.5.0 manager: conda @@ -16948,6 +22094,27 @@ package: noarch: python size: 71048 timestamp: 1638335054552 +- name: parso + version: 0.8.3 + manager: conda + platform: osx-arm64 + 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 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 71048 + timestamp: 1638335054552 - name: parso version: 0.8.3 manager: conda @@ -17011,6 +22178,27 @@ package: noarch: python size: 38649 timestamp: 1690598108100 +- name: pathspec + version: 0.11.2 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.7' + url: https://conda.anaconda.org/conda-forge/noarch/pathspec-0.11.2-pyhd8ed1ab_0.conda + hash: + md5: e41debb259e68490e3ab81e46b639ab6 + sha256: 7bcfa6d86359d45572ba9ccaeaedc04b0452e2654fe44b6fe378d0d37b8745e1 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: MPL-2.0 + license_family: MOZILLA + noarch: python + size: 38649 + timestamp: 1690598108100 - name: pathspec version: 0.11.2 manager: conda @@ -17075,6 +22263,27 @@ package: license_family: BSD size: 2552113 timestamp: 1665563254214 +- name: pcre2 + version: '10.40' + manager: conda + platform: osx-arm64 + dependencies: + bzip2: '>=1.0.8,<2.0a0' + libzlib: '>=1.2.12,<1.3.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/pcre2-10.40-hb34f9b4_0.tar.bz2 + hash: + md5: 721b7288270bafc83586b0f01c2a67f2 + sha256: 93503b5e05470ccc87f696c0fdf0d47938e0305b5047eacb85c15d78dcf641fe + optional: false + category: main + build: hb34f9b4_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + size: 1161688 + timestamp: 1665563317371 - name: pcre2 version: '10.40' manager: conda @@ -17102,7 +22311,29 @@ package: - name: pep517 version: 0.13.0 manager: conda - platform: linux-64 + platform: linux-64 + dependencies: + python: '>=3.8' + tomli: '*' + url: https://conda.anaconda.org/conda-forge/noarch/pep517-0.13.0-pyhd8ed1ab_0.tar.bz2 + hash: + md5: d94aa03d99d8adc9898f783eba0d84d2 + sha256: 6a6f2fa6bc9106b2edcccc142242dc3ab1f2f77a6debbd5b480f08482f052636 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: linux-64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 19044 + timestamp: 1667916747996 +- name: pep517 + version: 0.13.0 + manager: conda + platform: osx-64 dependencies: python: '>=3.8' tomli: '*' @@ -17114,7 +22345,7 @@ package: category: main build: pyhd8ed1ab_0 arch: x86_64 - subdir: linux-64 + subdir: osx-64 build_number: 0 license: MIT license_family: MIT @@ -17124,7 +22355,7 @@ package: - name: pep517 version: 0.13.0 manager: conda - platform: osx-64 + platform: osx-arm64 dependencies: python: '>=3.8' tomli: '*' @@ -17135,8 +22366,8 @@ package: optional: false category: main build: pyhd8ed1ab_0 - arch: x86_64 - subdir: osx-64 + arch: aarch64 + subdir: osx-arm64 build_number: 0 license: MIT license_family: MIT @@ -17207,6 +22438,27 @@ package: noarch: python size: 48780 timestamp: 1667297617062 +- name: pexpect + version: 4.8.0 + manager: conda + platform: osx-arm64 + dependencies: + ptyprocess: '>=0.5' + python: '*' + url: https://conda.anaconda.org/conda-forge/noarch/pexpect-4.8.0-pyh1a96a4e_2.tar.bz2 + hash: + md5: 330448ce4403cc74990ac07c555942a1 + sha256: 07706c0417ead94f359ca7278f65452d3c396448777aba1da6a11fc351bdca9a + optional: false + category: main + build: pyh1a96a4e_2 + arch: aarch64 + subdir: osx-arm64 + build_number: 2 + license: ISC + noarch: python + size: 48780 + timestamp: 1667297617062 - name: pickleshare version: 0.7.5 manager: conda @@ -17249,6 +22501,27 @@ package: noarch: python size: 9332 timestamp: 1602536313357 +- name: pickleshare + version: 0.7.5 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3' + url: https://conda.anaconda.org/conda-forge/noarch/pickleshare-0.7.5-py_1003.tar.bz2 + hash: + md5: 415f0ebb6198cc2801c73438a9fb5761 + sha256: a1ed1a094dd0d1b94a09ed85c283a0eb28943f2e6f22161fb45e128d35229738 + optional: false + category: main + build: py_1003 + arch: aarch64 + subdir: osx-arm64 + build_number: 1003 + license: MIT + license_family: MIT + noarch: python + size: 9332 + timestamp: 1602536313357 - name: pickleshare version: 0.7.5 manager: conda @@ -17329,6 +22602,35 @@ package: license: HPND size: 46474850 timestamp: 1697423945362 +- name: pillow + version: 10.1.0 + manager: conda + platform: osx-arm64 + dependencies: + freetype: '>=2.12.1,<3.0a0' + lcms2: '>=2.15,<3.0a0' + 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 *_cpython' + python_abi: 3.11.* *_cp311 + tk: '>=8.6.13,<8.7.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/pillow-10.1.0-py311hb9c5795_0.conda + hash: + md5: 90fd1f60da9f3d5eccdece0945043037 + sha256: 9699ba6886e94e32eb949009195ed78c2c949f74450235af491cd4cbe390d7b4 + optional: false + category: main + build: py311hb9c5795_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: HPND + size: 45850858 + timestamp: 1697424033737 - name: pillow version: 10.1.0 manager: conda @@ -17407,6 +22709,29 @@ package: noarch: python size: 1398838 timestamp: 1697896918388 +- name: pip + version: 23.3.1 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.7' + setuptools: '*' + wheel: '*' + url: https://conda.anaconda.org/conda-forge/noarch/pip-23.3.1-pyhd8ed1ab_0.conda + hash: + md5: 2400c0b86889f43aa52067161e1fb108 + sha256: 435829a03e1c6009f013f29bb83de8b876c388820bf8cf69a7baeec25f6a3563 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 1398838 + timestamp: 1697896918388 - name: pip version: 23.3.1 manager: conda @@ -17471,6 +22796,26 @@ package: license_family: MIT size: 336190 timestamp: 1695736270076 +- name: pixman + version: 0.42.2 + manager: conda + platform: osx-arm64 + dependencies: + libcxx: '>=15.0.7' + url: https://conda.anaconda.org/conda-forge/osx-arm64/pixman-0.42.2-h13dd4ca_0.conda + hash: + md5: f96347021db6f33ccabe314ddeab62d4 + sha256: 90e60dc5604e356d47ef97b23b13759ef3d8b70fa2c637f4809d29851435d7d7 + optional: false + category: main + build: h13dd4ca_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: MIT + license_family: MIT + size: 213843 + timestamp: 1695736518800 - name: pixman version: 0.42.2 manager: conda @@ -17535,6 +22880,27 @@ package: noarch: python size: 27646 timestamp: 1673281872032 +- name: pkginfo + version: 1.9.6 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.6' + url: https://conda.anaconda.org/conda-forge/noarch/pkginfo-1.9.6-pyhd8ed1ab_0.conda + hash: + md5: be1e9f1c65a1ed0f2ae9352fec99db64 + sha256: 7ea5a5af62a15376d9f4f9f3c134874d0b0710f39be719e849b7fa9ca8870502 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 27646 + timestamp: 1673281872032 - name: pkginfo version: 1.9.6 manager: conda @@ -17596,6 +22962,26 @@ package: noarch: python size: 10778 timestamp: 1694617398467 +- name: pkgutil-resolve-name + version: 1.3.10 + manager: conda + platform: osx-arm64 + 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 + optional: false + category: main + build: pyhd8ed1ab_1 + arch: aarch64 + subdir: osx-arm64 + build_number: 1 + license: MIT AND PSF-2.0 + noarch: python + size: 10778 + timestamp: 1694617398467 - name: pkgutil-resolve-name version: 1.3.10 manager: conda @@ -17660,6 +23046,28 @@ package: noarch: python size: 19985 timestamp: 1696272419779 +- name: platformdirs + version: 3.11.0 + manager: conda + platform: osx-arm64 + 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 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 19985 + timestamp: 1696272419779 - name: platformdirs version: 3.11.0 manager: conda @@ -17724,6 +23132,27 @@ package: noarch: python size: 22548 timestamp: 1693086745921 +- name: pluggy + version: 1.3.0 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.8' + url: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.3.0-pyhd8ed1ab_0.conda + hash: + md5: 2390bd10bed1f3fdc7a537fb5a447d8d + sha256: 7bf2ad9d747e71f1e93d0863c2c8061dd0f2fe1e582f28d292abfb40264a2eb5 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 22548 + timestamp: 1693086745921 - name: pluggy version: 1.3.0 manager: conda @@ -17862,6 +23291,44 @@ package: license_family: GPL size: 1555342 timestamp: 1697136671452 +- name: poppler + version: 23.10.0 + manager: conda + platform: osx-arm64 + dependencies: + __osx: '>=10.9' + cairo: '>=1.18.0,<2.0a0' + fontconfig: '>=2.14.2,<3.0a0' + fonts-conda-ecosystem: '*' + freetype: '>=2.12.1,<3.0a0' + gettext: '>=0.21.1,<1.0a0' + lcms2: '>=2.15,<3.0a0' + libcurl: '>=8.4.0,<9.0a0' + libcxx: '>=16.0.6' + 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' + 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/osx-arm64/poppler-23.10.0-hcdd998b_0.conda + hash: + md5: f09dca383af70b61ff5ead622d2994a1 + sha256: 53ffe710fc3c2e6af9c7b42f093b39b2626a6029bc7373509a7e054031b6cf95 + optional: false + category: main + build: hcdd998b_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: GPL-2.0-only + license_family: GPL + size: 1472369 + timestamp: 1697137362003 - name: poppler version: 23.10.0 manager: conda @@ -17936,6 +23403,26 @@ package: noarch: generic size: 2348171 timestamp: 1675353652214 +- name: poppler-data + version: 0.4.12 + manager: conda + platform: osx-arm64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/noarch/poppler-data-0.4.12-hd8ed1ab_0.conda + hash: + md5: d8d7293c5b37f39b2ac32940621c6592 + sha256: 2f227e17b3c0346112815faa605502b66c1c4511a856127f2899abf15a98a2cf + optional: false + category: main + build: hd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: BSD-3-Clause AND (GPL-2.0-only OR GPL-3.0-only) + license_family: OTHER + noarch: generic + size: 2348171 + timestamp: 1675353652214 - name: poppler-data version: 0.4.12 manager: conda @@ -18009,6 +23496,32 @@ package: build_number: 1 size: 4596428 timestamp: 1696004277646 +- name: postgresql + version: '16.0' + manager: conda + platform: osx-arm64 + dependencies: + krb5: '>=1.21.2,<1.22.0a0' + libpq: ==16.0 hcea71ed_1 + 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/osx-arm64/postgresql-16.0-h00cd704_1.conda + hash: + md5: b8284b082e2507f1dd0662bc68e00a09 + sha256: 4d4436e7ed031e865f6d8a58c298f71898432dd9daed96d0cab555ef30a1a838 + optional: false + category: main + build: h00cd704_1 + arch: aarch64 + subdir: osx-arm64 + build_number: 1 + size: 4557905 + timestamp: 1696004421616 - name: postgresql version: '16.0' manager: conda @@ -18065,7 +23578,34 @@ package: - name: prance version: 23.6.21.0 manager: conda - platform: osx-64 + platform: osx-64 + dependencies: + chardet: '>=3.0' + packaging: '>=21.3' + python: '>=3.6' + requests: '>=2.25' + ruamel.yaml: '>=0.17.10' + semver: '>=2.13,<3.dev0' + six: '>=1.15,<2.dev0' + url: https://conda.anaconda.org/conda-forge/noarch/prance-23.6.21.0-pyhd8ed1ab_0.conda + hash: + md5: d69564a1138b5e0c649a1ea6c80c12bb + sha256: 7d20bd250207b904b99694302cb4e51b26f75c9cef7838bc91fc2f9ee3cbda52 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: osx-64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 34706 + timestamp: 1687715290169 +- name: prance + version: 23.6.21.0 + manager: conda + platform: osx-arm64 dependencies: chardet: '>=3.0' packaging: '>=21.3' @@ -18081,8 +23621,8 @@ package: optional: false category: main build: pyhd8ed1ab_0 - arch: x86_64 - subdir: osx-64 + arch: aarch64 + subdir: osx-arm64 build_number: 0 license: MIT license_family: MIT @@ -18168,6 +23708,32 @@ package: noarch: python size: 179349 timestamp: 1697222328615 +- name: pre-commit + version: 3.5.0 + manager: conda + platform: osx-arm64 + dependencies: + cfgv: '>=2.0.0' + identify: '>=1.0.0' + nodeenv: '>=0.11.1' + python: '>=3.8' + pyyaml: '>=5.1' + 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 + optional: false + category: main + build: pyha770c72_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 179349 + timestamp: 1697222328615 - name: pre-commit version: 3.5.0 manager: conda @@ -18246,6 +23812,31 @@ package: license_family: MIT size: 2732625 timestamp: 1697809094266 +- name: proj + version: 9.3.0 + manager: conda + platform: osx-arm64 + dependencies: + libcurl: '>=8.4.0,<9.0a0' + libsqlite: '>=3.43.2,<4.0a0' + libtiff: '>=4.6.0,<4.7.0a0' + sqlite: '*' + url: https://conda.anaconda.org/conda-forge/osx-arm64/proj-9.3.0-h52fb9d0_2.conda + hash: + md5: 31cbb3c9d6f8611a657e1b1a4cb5c63d + sha256: 6a76ab5ac69b1379d874a5b1405c15f13cc9fb3622a4a8837519c3328286e781 + optional: false + category: main + build: h52fb9d0_2 + arch: aarch64 + subdir: osx-arm64 + build_number: 2 + constrains: + - proj4 ==999999999999 + license: MIT + license_family: MIT + size: 2599795 + timestamp: 1697808957598 - name: proj version: 9.3.0 manager: conda @@ -18316,6 +23907,27 @@ package: noarch: python size: 53376 timestamp: 1689032576798 +- name: prometheus_client + version: 0.17.1 + manager: conda + platform: osx-arm64 + 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 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: Apache-2.0 + license_family: Apache + noarch: python + size: 53376 + timestamp: 1689032576798 - name: prometheus_client version: 0.17.1 manager: conda @@ -18385,6 +23997,30 @@ package: noarch: python size: 269068 timestamp: 1688566090973 +- name: prompt-toolkit + version: 3.0.39 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.7' + wcwidth: '*' + url: https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.39-pyha770c72_0.conda + hash: + md5: a4986c6bb5b0d05a38855b0880a5f425 + sha256: 10e7fdc75d4b85633be6b12a70b857053987127a808caa0f88b2cba4b3ce6359 + optional: false + category: main + build: pyha770c72_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + constrains: + - prompt_toolkit 3.0.39 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 269068 + timestamp: 1688566090973 - name: prompt-toolkit version: 3.0.39 manager: conda @@ -18451,6 +24087,27 @@ package: noarch: generic size: 6731 timestamp: 1688566099039 +- name: prompt_toolkit + version: 3.0.39 + manager: conda + platform: osx-arm64 + 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 + optional: false + category: main + build: hd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: generic + size: 6731 + timestamp: 1688566099039 - name: prompt_toolkit version: 3.0.39 manager: conda @@ -18515,6 +24172,27 @@ package: license_family: BSD size: 506611 timestamp: 1695367402674 +- name: psutil + version: 5.9.5 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.11,<3.12.0a0 *_cpython' + python_abi: 3.11.* *_cp311 + url: https://conda.anaconda.org/conda-forge/osx-arm64/psutil-5.9.5-py311heffc1b2_1.conda + hash: + md5: a40123b40642b8b08b3830a3f6bc7fd9 + sha256: a12a525d3bcaed04e0885b2bd00f4f626c80c19d7c0ae8bb7cf7121aefb39e52 + optional: false + category: main + build: py311heffc1b2_1 + arch: aarch64 + subdir: osx-arm64 + build_number: 1 + license: BSD-3-Clause + license_family: BSD + size: 506971 + timestamp: 1695367619126 - name: psutil version: 5.9.5 manager: conda @@ -18578,6 +24256,25 @@ package: license_family: MIT size: 5653 timestamp: 1606147699844 +- name: pthread-stubs + version: '0.4' + manager: conda + platform: osx-arm64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-arm64/pthread-stubs-0.4-h27ca646_1001.tar.bz2 + hash: + md5: d3f26c6494d4105d4ecb85203d687102 + sha256: 9da9e6f5d51dff6ad2e4ee0874791437ba952e0a6249942273f0fedfd07ea826 + optional: false + category: main + build: h27ca646_1001 + arch: aarch64 + subdir: osx-arm64 + build_number: 1001 + license: MIT + license_family: MIT + size: 5696 + timestamp: 1606147608402 - name: pthread-stubs version: '0.4' manager: conda @@ -18657,6 +24354,26 @@ package: noarch: python size: 16546 timestamp: 1609419417991 +- name: ptyprocess + version: 0.7.0 + manager: conda + platform: osx-arm64 + dependencies: + python: '*' + url: https://conda.anaconda.org/conda-forge/noarch/ptyprocess-0.7.0-pyhd3deb0d_0.tar.bz2 + hash: + md5: 359eeb6536da0e687af562ed265ec263 + sha256: fb31e006a25eb2e18f3440eb8d17be44c8ccfae559499199f73584566d0a444a + optional: false + category: main + build: pyhd3deb0d_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: ISC + noarch: python + size: 16546 + timestamp: 1609419417991 - name: pulseaudio-client version: '16.1' manager: conda @@ -18725,6 +24442,27 @@ package: noarch: python size: 14551 timestamp: 1642876055775 +- name: pure_eval + version: 0.2.2 + manager: conda + platform: osx-arm64 + 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 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 14551 + timestamp: 1642876055775 - name: pure_eval version: 0.2.2 manager: conda @@ -18751,81 +24489,106 @@ package: manager: conda platform: linux-64 dependencies: - libarrow: ==13.0.0 he1fec18_11_cpu + libarrow: ==13.0.0 he1fec18_12_cpu libgcc-ng: '>=12' libstdcxx-ng: '>=12' numpy: '>=1.23.5,<2.0a0' python: '>=3.11,<3.12.0a0' python_abi: 3.11.* *_cp311 - url: https://conda.anaconda.org/conda-forge/linux-64/pyarrow-13.0.0-py311h39c9aba_11_cpu.conda + url: https://conda.anaconda.org/conda-forge/linux-64/pyarrow-13.0.0-py311h39c9aba_12_cpu.conda hash: - md5: 1d1fcce6ad64a319f6c8ad217313f52d - sha256: e44f7926ff40c69aaa46f987bc5a2b9d3db66dcb306808d65abb8d88225072ce + md5: 225d800c443d226c86b96bd3bf30eb21 + sha256: f9cd6475141bcff3b922d22833fc416d7975f42881e354c69a8e64a726312b4e optional: false category: main - build: py311h39c9aba_11_cpu + build: py311h39c9aba_12_cpu arch: x86_64 subdir: linux-64 - build_number: 11 + build_number: 12 constrains: - apache-arrow-proc =*=cpu license: Apache-2.0 - license_family: APACHE - size: 4091340 - timestamp: 1697719266919 + size: 4048227 + timestamp: 1698284557876 - name: pyarrow version: 13.0.0 manager: conda platform: osx-64 dependencies: - libarrow: ==13.0.0 h23351de_11_cpu + __osx: '>=10.9' + libarrow: ==13.0.0 h23351de_12_cpu + libcxx: '>=15.0.7' numpy: '>=1.23.5,<2.0a0' python: '>=3.11,<3.12.0a0' python_abi: 3.11.* *_cp311 - url: https://conda.anaconda.org/conda-forge/osx-64/pyarrow-13.0.0-py311h54e7ce8_11_cpu.conda + url: https://conda.anaconda.org/conda-forge/osx-64/pyarrow-13.0.0-py311h98a0319_12_cpu.conda hash: - md5: bc1d81fb3a15985a7f78e4d63055f35a - sha256: 1b8528b556824388895044bc26557419e8b73d0bd79dba0fdbae5cb7ce74ed36 + md5: da841b8841eb4b1e336b977702877e3a + sha256: e410f22fab23980b4aa2858beb6c579f95b27754942d5ae825c92bbc2978ee67 optional: false category: main - build: py311h54e7ce8_11_cpu + build: py311h98a0319_12_cpu arch: x86_64 subdir: osx-64 - build_number: 11 + build_number: 12 constrains: - apache-arrow-proc =*=cpu license: Apache-2.0 - license_family: APACHE - size: 3669807 - timestamp: 1697721955380 + size: 3676963 + timestamp: 1698285520544 +- name: pyarrow + version: 13.0.0 + manager: conda + platform: osx-arm64 + dependencies: + __osx: '>=10.9' + libarrow: ==13.0.0 h4164969_12_cpu + libcxx: '>=15.0.7' + numpy: '>=1.23.5,<2.0a0' + python: '>=3.11,<3.12.0a0 *_cpython' + python_abi: 3.11.* *_cp311 + url: https://conda.anaconda.org/conda-forge/osx-arm64/pyarrow-13.0.0-py311h637fcfe_12_cpu.conda + hash: + md5: 92e94d4a197cb0353c7f7206fd6ffa2f + sha256: 5dd1d2289198528209411aa9552ea7a10e56302b8bcd35b08fea0f4eaed7ecf8 + optional: false + category: main + build: py311h637fcfe_12_cpu + arch: aarch64 + subdir: osx-arm64 + build_number: 12 + constrains: + - apache-arrow-proc =*=cpu + license: Apache-2.0 + size: 3699785 + timestamp: 1698285470620 - name: pyarrow version: 13.0.0 manager: conda platform: win-64 dependencies: - libarrow: ==13.0.0 hdbedc8d_11_cpu + libarrow: ==13.0.0 hdbedc8d_12_cpu numpy: '>=1.23.5,<2.0a0' python: '>=3.11,<3.12.0a0' python_abi: 3.11.* *_cp311 ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/pyarrow-13.0.0-py311h6a6099b_11_cpu.conda + url: https://conda.anaconda.org/conda-forge/win-64/pyarrow-13.0.0-py311h6a6099b_12_cpu.conda hash: - md5: b0509dd39f6fdefa0ba4e02b9b62d06a - sha256: f96be59545f14d93880d4ee50c48eb0d9fb22e04c83f932826011859c19d6482 + md5: 64f61efecaa949477448795b3525d0a2 + sha256: 61ed52d809623f015dfa8c6eaef1b8b69cf84c5f28c8a69c83b069cf02fc6e4c optional: false category: main - build: py311h6a6099b_11_cpu + build: py311h6a6099b_12_cpu arch: x86_64 subdir: win-64 - build_number: 11 + build_number: 12 constrains: - apache-arrow-proc =*=cpu license: Apache-2.0 - license_family: APACHE - size: 3044559 - timestamp: 1697721230570 + size: 3049550 + timestamp: 1698286144628 - name: pycparser version: '2.21' manager: conda @@ -18868,6 +24631,27 @@ package: noarch: python size: 102747 timestamp: 1636257201998 +- name: pycparser + version: '2.21' + manager: conda + platform: osx-arm64 + 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 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 102747 + timestamp: 1636257201998 - name: pycparser version: '2.21' manager: conda @@ -18934,6 +24718,28 @@ package: license_family: MIT size: 1979116 timestamp: 1697791676167 +- name: pydantic + version: 1.10.13 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.11,<3.12.0a0 *_cpython' + python_abi: 3.11.* *_cp311 + typing-extensions: '>=4.2.0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/pydantic-1.10.13-py311h05b510d_1.conda + hash: + md5: afdac206ecd2d91cd5478038e4cae4cf + sha256: eb7af4932468d40ef44fc595ff09f0ad5287a3ab2098b152b4b7fb1bd76782e5 + optional: false + category: main + build: py311h05b510d_1 + arch: aarch64 + subdir: osx-arm64 + build_number: 1 + license: MIT + license_family: MIT + size: 1928533 + timestamp: 1697791764717 - name: pydantic version: 1.10.13 manager: conda @@ -19001,6 +24807,27 @@ package: noarch: python size: 853439 timestamp: 1691408777841 +- name: pygments + version: 2.16.1 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.7' + url: https://conda.anaconda.org/conda-forge/noarch/pygments-2.16.1-pyhd8ed1ab_0.conda + hash: + md5: 40e5cb18165466773619e5c963f00a7b + sha256: 3f0f0fadc6084960ec8cc00a32a03529c562ffea3b527eb73b1653183daad389 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: BSD-2-Clause + license_family: BSD + noarch: python + size: 853439 + timestamp: 1691408777841 - name: pygments version: 2.16.1 manager: conda @@ -19045,29 +24872,75 @@ package: license_family: MIT size: 465753 timestamp: 1695560684232 +- name: pyobjc-core + version: '10.0' + manager: conda + platform: osx-arm64 + dependencies: + libffi: '>=3.4,<4.0a0' + python: '>=3.11,<3.12.0a0 *_cpython' + python_abi: 3.11.* *_cp311 + setuptools: '*' + url: https://conda.anaconda.org/conda-forge/osx-arm64/pyobjc-core-10.0-py311hb702dc4_0.conda + hash: + md5: 5c441ab09e2d9faf6e875ea9c446b445 + sha256: d3bb68f8da77bffad5fa690d2cc1aeb0be0608ed0b6e08a96d8fc3613f2e7135 + optional: false + category: main + build: py311hb702dc4_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: MIT + license_family: MIT + size: 473740 + timestamp: 1695560759149 +- name: pyobjc-framework-cocoa + version: '10.0' + manager: conda + platform: osx-64 + dependencies: + libffi: '>=3.4,<4.0a0' + pyobjc-core: 10.0.* + python: '>=3.11,<3.12.0a0' + python_abi: 3.11.* *_cp311 + url: https://conda.anaconda.org/conda-forge/osx-64/pyobjc-framework-cocoa-10.0-py311hf110eff_1.conda + hash: + md5: 8fb67274a648901045368717d6221aed + sha256: 54530c1b3bfc361e027adbd8f9d9a23e7c102c7f58c04a169da1457f82975724 + optional: false + category: main + build: py311hf110eff_1 + arch: x86_64 + subdir: osx-64 + build_number: 1 + license: MIT + license_family: MIT + size: 369966 + timestamp: 1695716863742 - name: pyobjc-framework-cocoa version: '10.0' manager: conda - platform: osx-64 + platform: osx-arm64 dependencies: libffi: '>=3.4,<4.0a0' pyobjc-core: 10.0.* - python: '>=3.11,<3.12.0a0' + python: '>=3.11,<3.12.0a0 *_cpython' python_abi: 3.11.* *_cp311 - url: https://conda.anaconda.org/conda-forge/osx-64/pyobjc-framework-cocoa-10.0-py311hf110eff_1.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/pyobjc-framework-cocoa-10.0-py311hb702dc4_1.conda hash: - md5: 8fb67274a648901045368717d6221aed - sha256: 54530c1b3bfc361e027adbd8f9d9a23e7c102c7f58c04a169da1457f82975724 + md5: ee9430e4e9b69a6270c966bb7439c9a0 + sha256: 31a7542b8ced5cb3bc236be0b5777dab4bc0e57fbfc5423e9d0ae09ce8eae16c optional: false category: main - build: py311hf110eff_1 - arch: x86_64 - subdir: osx-64 + build: py311hb702dc4_1 + arch: aarch64 + subdir: osx-arm64 build_number: 1 license: MIT license_family: MIT - size: 369966 - timestamp: 1695716863742 + size: 374853 + timestamp: 1695717128436 - name: pyogrio version: 0.6.0 manager: conda @@ -19120,6 +24993,32 @@ package: license_family: MIT size: 561646 timestamp: 1697021269040 +- name: pyogrio + version: 0.6.0 + manager: conda + platform: osx-arm64 + dependencies: + __osx: '>=10.9' + gdal: '*' + libcxx: '>=16.0.6' + libgdal: '>=3.7.2,<3.8.0a0' + numpy: '>=1.23.5,<2.0a0' + python: '>=3.11,<3.12.0a0 *_cpython' + python_abi: 3.11.* *_cp311 + url: https://conda.anaconda.org/conda-forge/osx-arm64/pyogrio-0.6.0-py311h45231e3_2.conda + hash: + md5: dbf5b5af3d20ff59878626c72b089ebb + sha256: b49746075e378b3ecdf1b91c1e7299779df0ab0f9d19b86b5b446153c54d4607 + optional: false + category: main + build: py311h45231e3_2 + arch: aarch64 + subdir: osx-arm64 + build_number: 2 + license: MIT + license_family: MIT + size: 559601 + timestamp: 1697021399422 - name: pyogrio version: 0.6.0 manager: conda @@ -19189,6 +25088,27 @@ package: noarch: python size: 89521 timestamp: 1690737983548 +- name: pyparsing + version: 3.1.1 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.6' + url: https://conda.anaconda.org/conda-forge/noarch/pyparsing-3.1.1-pyhd8ed1ab_0.conda + hash: + md5: 176f7d56f0cfe9008bdf1bccd7de02fb + sha256: 4a1332d634b6c2501a973655d68f08c9c42c0bd509c349239127b10572b8354b + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 89521 + timestamp: 1690737983548 - name: pyparsing version: 3.1.1 manager: conda @@ -19257,6 +25177,29 @@ package: license_family: MIT size: 487572 timestamp: 1698058570203 +- name: pyproj + version: 3.6.1 + manager: conda + platform: osx-arm64 + dependencies: + certifi: '*' + proj: '>=9.3.0,<9.3.1.0a0' + python: '>=3.11,<3.12.0a0 *_cpython' + python_abi: 3.11.* *_cp311 + url: https://conda.anaconda.org/conda-forge/osx-arm64/pyproj-3.6.1-py311h20a9b75_3.conda + hash: + md5: 8814c7718c4e16d26d937d401a349999 + sha256: c23285357c7de29f4f49e28df14cbf15c9df1de9254409ee9784bac1233dfb44 + optional: false + category: main + build: py311h20a9b75_3 + arch: aarch64 + subdir: osx-arm64 + build_number: 3 + license: MIT + license_family: MIT + size: 493676 + timestamp: 1698058549372 - name: pyproj version: 3.6.1 manager: conda @@ -19431,6 +25374,27 @@ package: noarch: python size: 19622 timestamp: 1690469519470 +- name: pysnooper + version: 1.2.0 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=2.7' + url: https://conda.anaconda.org/conda-forge/noarch/pysnooper-1.2.0-pyhd8ed1ab_0.conda + hash: + md5: e8323f3ea29910f7086914e27223867f + sha256: fdf89aa9a631870c2565af9eafd09f2a6c539cf31e4cb596651c2b9c16f3d546 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 19622 + timestamp: 1690469519470 - name: pysnooper version: 1.2.0 manager: conda @@ -19496,6 +25460,28 @@ package: noarch: python size: 18981 timestamp: 1661604969727 +- name: pysocks + version: 1.7.1 + manager: conda + platform: osx-arm64 + 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 + optional: false + category: main + build: pyha2e5f31_6 + arch: aarch64 + subdir: osx-arm64 + build_number: 6 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 18981 + timestamp: 1661604969727 - name: pysocks version: 1.7.1 manager: conda @@ -19520,7 +25506,7 @@ package: size: 19348 timestamp: 1661605138291 - name: pytest - version: 7.4.2 + version: 7.4.3 manager: conda platform: linux-64 dependencies: @@ -19531,10 +25517,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 optional: false category: main build: pyhd8ed1ab_0 @@ -19546,10 +25532,10 @@ package: license: MIT license_family: MIT noarch: python - size: 244691 - timestamp: 1694128618921 + size: 244758 + timestamp: 1698233883003 - name: pytest - version: 7.4.2 + version: 7.4.3 manager: conda platform: osx-64 dependencies: @@ -19560,10 +25546,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 optional: false category: main build: pyhd8ed1ab_0 @@ -19575,10 +25561,39 @@ package: license: MIT license_family: MIT noarch: python - size: 244691 - timestamp: 1694128618921 + size: 244758 + timestamp: 1698233883003 - name: pytest - version: 7.4.2 + version: 7.4.3 + manager: conda + platform: osx-arm64 + dependencies: + colorama: '*' + exceptiongroup: '>=1.0.0rc8' + iniconfig: '*' + packaging: '*' + pluggy: '>=0.12,<2.0' + python: '>=3.7' + tomli: '>=1.0.0' + url: https://conda.anaconda.org/conda-forge/noarch/pytest-7.4.3-pyhd8ed1ab_0.conda + hash: + md5: 5bdca0aca30b0ee62bb84854e027eae0 + sha256: 14e948e620ec87d9e62a8d9c21d40084b4805a939cfee322be7d457379dc96a0 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + constrains: + - pytest-faulthandler >=2 + license: MIT + license_family: MIT + noarch: python + size: 244758 + timestamp: 1698233883003 +- name: pytest + version: 7.4.3 manager: conda platform: win-64 dependencies: @@ -19589,10 +25604,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 optional: false category: main build: pyhd8ed1ab_0 @@ -19604,8 +25619,8 @@ package: license: MIT license_family: MIT noarch: python - size: 244691 - timestamp: 1694128618921 + size: 244758 + timestamp: 1698233883003 - name: pytest-cov version: 4.1.0 manager: conda @@ -19654,6 +25669,30 @@ package: noarch: python size: 25436 timestamp: 1684965001294 +- name: pytest-cov + version: 4.1.0 + manager: conda + platform: osx-arm64 + dependencies: + coverage: '>=5.2.1' + pytest: '>=4.6' + python: '>=3.7' + toml: '*' + url: https://conda.anaconda.org/conda-forge/noarch/pytest-cov-4.1.0-pyhd8ed1ab_0.conda + hash: + md5: 06eb685a3a0b146347a58dda979485da + sha256: f07d3b44cabbed7843de654c4a6990a08475ce3b708bb735c7da9842614586f2 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 25436 + timestamp: 1684965001294 - name: pytest-cov version: 4.1.0 manager: conda @@ -19728,6 +25767,31 @@ package: noarch: python size: 36169 timestamp: 1684499962909 +- name: pytest-xdist + version: 3.3.1 + manager: conda + platform: osx-arm64 + dependencies: + execnet: '>=1.1' + pytest: '>=6.2.0' + python: '>=3.7' + url: https://conda.anaconda.org/conda-forge/noarch/pytest-xdist-3.3.1-pyhd8ed1ab_0.conda + hash: + md5: 816073bb54ef59f33f0f26c14f88311b + sha256: 5df2d0f1e42041476cbdf12b808890d668e7f0272b51f0f3fa7aab84732150b6 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + constrains: + - psutil >=3.0 + license: MIT + license_family: MIT + noarch: python + size: 36169 + timestamp: 1684499962909 - name: pytest-xdist version: 3.3.1 manager: conda @@ -19819,6 +25883,37 @@ package: license: Python-2.0 size: 15393521 timestamp: 1696330855485 +- name: python + version: 3.11.6 + manager: conda + platform: osx-arm64 + dependencies: + bzip2: '>=1.0.8,<2.0a0' + libexpat: '>=2.5.0,<3.0a0' + libffi: '>=3.4,<4.0a0' + libsqlite: '>=3.43.0,<4.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' + url: https://conda.anaconda.org/conda-forge/osx-arm64/python-3.11.6-h47c9636_0_cpython.conda + hash: + md5: 2271df1db9534f5cac7c2d0820c3359d + sha256: 77054fa9a8fc30f71a18f599ee2897905a3c515202b614fa0f793add7a04a155 + optional: false + category: main + build: h47c9636_0_cpython + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + constrains: + - python_abi 3.11.* *_cp311 + license: Python-2.0 + size: 14626958 + timestamp: 1696329727433 - name: python version: 3.11.6 manager: conda @@ -19895,6 +25990,28 @@ package: noarch: python size: 245987 timestamp: 1626286448716 +- name: python-dateutil + version: 2.8.2 + manager: conda + platform: osx-arm64 + 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 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: Apache-2.0 + license_family: APACHE + noarch: python + size: 245987 + timestamp: 1626286448716 - name: python-dateutil version: 2.8.2 manager: conda @@ -19959,6 +26076,27 @@ package: noarch: python size: 226030 timestamp: 1696171963080 +- name: python-fastjsonschema + version: 2.18.1 + manager: conda + platform: osx-arm64 + 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 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 226030 + timestamp: 1696171963080 - name: python-fastjsonschema version: 2.18.1 manager: conda @@ -20022,6 +26160,27 @@ package: noarch: python size: 13383 timestamp: 1677079727691 +- name: python-json-logger + version: 2.0.7 + manager: conda + platform: osx-arm64 + 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 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: BSD-2-Clause + license_family: BSD + noarch: python + size: 13383 + timestamp: 1677079727691 - name: python-json-logger version: 2.0.7 manager: conda @@ -20038,15 +26197,36 @@ package: arch: x86_64 subdir: win-64 build_number: 0 - license: BSD-2-Clause - license_family: BSD + license: BSD-2-Clause + license_family: BSD + noarch: python + size: 13383 + timestamp: 1677079727691 +- name: python-tzdata + version: '2023.3' + manager: conda + platform: linux-64 + dependencies: + python: '>=3.6' + url: https://conda.anaconda.org/conda-forge/noarch/python-tzdata-2023.3-pyhd8ed1ab_0.conda + hash: + md5: 2590495f608a63625e165915fb4e2e34 + sha256: 0108888507014fb24573c31e4deceb61c99e63d37776dddcadd7c89b2ecae0b6 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: linux-64 + build_number: 0 + license: Apache-2.0 + license_family: APACHE noarch: python - size: 13383 - timestamp: 1677079727691 + size: 143131 + timestamp: 1680081272948 - name: python-tzdata version: '2023.3' manager: conda - platform: linux-64 + platform: osx-64 dependencies: python: '>=3.6' url: https://conda.anaconda.org/conda-forge/noarch/python-tzdata-2023.3-pyhd8ed1ab_0.conda @@ -20057,7 +26237,7 @@ package: category: main build: pyhd8ed1ab_0 arch: x86_64 - subdir: linux-64 + subdir: osx-64 build_number: 0 license: Apache-2.0 license_family: APACHE @@ -20067,7 +26247,7 @@ package: - name: python-tzdata version: '2023.3' manager: conda - platform: osx-64 + platform: osx-arm64 dependencies: python: '>=3.6' url: https://conda.anaconda.org/conda-forge/noarch/python-tzdata-2023.3-pyhd8ed1ab_0.conda @@ -20077,8 +26257,8 @@ package: optional: false category: main build: pyhd8ed1ab_0 - arch: x86_64 - subdir: osx-64 + arch: aarch64 + subdir: osx-arm64 build_number: 0 license: Apache-2.0 license_family: APACHE @@ -20148,6 +26328,27 @@ package: license_family: BSD size: 6478 timestamp: 1695147518012 +- name: python_abi + version: '3.11' + manager: conda + platform: osx-arm64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-arm64/python_abi-3.11-4_cp311.conda + hash: + md5: 8d3751bc73d3bbb66f216fa2331d5649 + sha256: 4837089c477b9b84fa38a17f453e6634e68237267211b27a8a2f5ccd847f4e55 + optional: false + category: main + build: 4_cp311 + arch: aarch64 + subdir: osx-arm64 + build_number: 4 + constrains: + - python 3.11.* *_cpython + license: BSD-3-Clause + license_family: BSD + size: 6492 + timestamp: 1695147509940 - name: python_abi version: '3.11' manager: conda @@ -20211,6 +26412,27 @@ package: noarch: python size: 187454 timestamp: 1693930444432 +- name: pytz + version: 2023.3.post1 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.6' + url: https://conda.anaconda.org/conda-forge/noarch/pytz-2023.3.post1-pyhd8ed1ab_0.conda + hash: + md5: c93346b446cd08c169d843ae5fc0da97 + sha256: 6b680e63d69aaf087cd43ca765a23838723ef59b0a328799e6363eb13f52c49e + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 187454 + timestamp: 1693930444432 - name: pytz version: 2023.3.post1 manager: conda @@ -20347,6 +26569,28 @@ package: license_family: MIT size: 188606 timestamp: 1695373840022 +- name: pyyaml + version: 6.0.1 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.11,<3.12.0a0 *_cpython' + python_abi: 3.11.* *_cp311 + yaml: '>=0.2.5,<0.3.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/pyyaml-6.0.1-py311heffc1b2_1.conda + hash: + md5: d310bfbb8230b9175c0cbc10189ad804 + sha256: b155f5c27f0e2951256774628c4b91fdeee3267018eef29897a74e3d1316c8b0 + optional: false + category: main + build: py311heffc1b2_1 + arch: aarch64 + subdir: osx-arm64 + build_number: 1 + license: MIT + license_family: MIT + size: 187795 + timestamp: 1695373829282 - name: pyyaml version: 6.0.1 manager: conda @@ -20418,6 +26662,28 @@ package: license: BSD-3-Clause AND LGPL-3.0-or-later size: 498175 timestamp: 1698062892008 +- name: pyzmq + version: 25.1.1 + manager: conda + platform: osx-arm64 + dependencies: + libsodium: '>=1.0.18,<1.0.19.0a0' + python: '>=3.11,<3.12.0a0 *_cpython' + python_abi: 3.11.* *_cp311 + 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: 51b7458a36011c4982261478fcc62026 + sha256: 03b78fe912c02547b284bc3404194bb4c1d9a2680e4b46f45c131a0d13d10b48 + optional: false + category: main + build: py311he9c0408_2 + arch: aarch64 + subdir: osx-arm64 + build_number: 2 + license: BSD-3-Clause AND LGPL-3.0-or-later + size: 507069 + timestamp: 1698062904960 - name: pyzmq version: 25.1.1 manager: conda @@ -20678,6 +26944,26 @@ package: license_family: BSD size: 27005 timestamp: 1697065900029 +- name: re2 + version: 2023.06.02 + manager: conda + platform: osx-arm64 + dependencies: + libre2-11: ==2023.6.2 h1753957_0 + url: https://conda.anaconda.org/conda-forge/osx-arm64/re2-2023.06.02-h6135d0a_0.conda + hash: + md5: 8f23674174b155300696a2be8b5c1407 + sha256: 963847258a82d9647311c5eb8829a49ac2161df12a304d5d6e61f788f0563442 + optional: false + category: main + build: h6135d0a_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + size: 27073 + timestamp: 1697065856329 - name: re2 version: 2023.06.02 manager: conda @@ -20739,6 +27025,26 @@ package: license_family: GPL size: 255870 timestamp: 1679532707590 +- name: readline + version: '8.2' + manager: conda + platform: osx-arm64 + dependencies: + ncurses: '>=6.3,<7.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/readline-8.2-h92ec313_1.conda + hash: + md5: 8cbb776a2f641b943d413b3e19df71f4 + sha256: a1dfa679ac3f6007362386576a704ad2d0d7a02e98f5d0b115f207a2da63e884 + optional: false + category: main + build: h92ec313_1 + arch: aarch64 + subdir: osx-arm64 + build_number: 1 + license: GPL-3.0-only + license_family: GPL + size: 250351 + timestamp: 1679532511311 - name: readme_renderer version: '42.0' manager: conda @@ -20789,6 +27095,31 @@ package: noarch: python size: 17373 timestamp: 1694242843889 +- name: readme_renderer + version: '42.0' + manager: conda + platform: osx-arm64 + dependencies: + cmarkgfm: '>=0.8.0' + docutils: '>=0.13.1' + nh3: '>=0.2.14' + pygments: '>=2.5.1' + python: '>=3.8' + url: https://conda.anaconda.org/conda-forge/noarch/readme_renderer-42.0-pyhd8ed1ab_0.conda + hash: + md5: fdc16f5dc3a911d8f43f64f814a45961 + sha256: 61e03765ebdb168fc8747e8183db4067b55888c89d59e0f4f53b5b4046846cda + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: Apache-2.0 + license_family: APACHE + noarch: python + size: 17373 + timestamp: 1694242843889 - name: readme_renderer version: '42.0' manager: conda @@ -20860,6 +27191,29 @@ package: noarch: python size: 38061 timestamp: 1691337409918 +- name: referencing + version: 0.30.2 + manager: conda + platform: osx-arm64 + dependencies: + attrs: '>=22.2.0' + python: '>=3.8' + 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 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 38061 + timestamp: 1691337409918 - name: referencing version: 0.30.2 manager: conda @@ -20937,6 +27291,33 @@ package: noarch: python size: 56690 timestamp: 1684774408600 +- name: requests + version: 2.31.0 + manager: conda + platform: osx-arm64 + dependencies: + certifi: '>=2017.4.17' + charset-normalizer: '>=2,<4' + idna: '>=2.5,<4' + python: '>=3.7' + 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 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + constrains: + - chardet >=3.0.2,<6 + license: Apache-2.0 + license_family: APACHE + noarch: python + size: 56690 + timestamp: 1684774408600 - name: requests version: 2.31.0 manager: conda @@ -21008,6 +27389,28 @@ package: noarch: python size: 43939 timestamp: 1682953467574 +- name: requests-toolbelt + version: 1.0.0 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.6' + requests: '>=2.0.1,<3.0.0' + url: https://conda.anaconda.org/conda-forge/noarch/requests-toolbelt-1.0.0-pyhd8ed1ab_0.conda + hash: + md5: 99c98318c8646b08cc764f90ce98906e + sha256: 20eaefc5dba74ff6c31e537533dde59b5b20f69e74df49dff19d43be59785fa3 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: Apache-2.0 + license_family: APACHE + noarch: python + size: 43939 + timestamp: 1682953467574 - name: requests-toolbelt version: 1.0.0 manager: conda @@ -21074,6 +27477,28 @@ package: noarch: python size: 8064 timestamp: 1638811838081 +- name: rfc3339-validator + version: 0.1.4 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.5' + six: '*' + url: https://conda.anaconda.org/conda-forge/noarch/rfc3339-validator-0.1.4-pyhd8ed1ab_0.tar.bz2 + hash: + md5: fed45fc5ea0813240707998abe49f520 + sha256: 7c7052b51de0b5c558f890bb11f8b5edbb9934a653d76be086b1182b9f54185d + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 8064 + timestamp: 1638811838081 - name: rfc3339-validator version: 0.1.4 manager: conda @@ -21138,6 +27563,27 @@ package: noarch: python size: 34075 timestamp: 1641825125307 +- name: rfc3986 + version: 2.0.0 + manager: conda + platform: osx-arm64 + 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 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: Apache-2.0 + license_family: APACHE + noarch: python + size: 34075 + timestamp: 1641825125307 - name: rfc3986 version: 2.0.0 manager: conda @@ -21201,6 +27647,27 @@ package: noarch: python size: 7818 timestamp: 1598024297745 +- name: rfc3986-validator + version: 0.1.1 + manager: conda + platform: osx-arm64 + dependencies: + python: '*' + url: https://conda.anaconda.org/conda-forge/noarch/rfc3986-validator-0.1.1-pyh9f0ad1d_0.tar.bz2 + hash: + md5: 912a71cc01012ee38e6b90ddd561e36f + sha256: 2a5b495a1de0f60f24d8a74578ebc23b24aa53279b1ad583755f223097c41c37 + optional: false + category: main + build: pyh9f0ad1d_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 7818 + timestamp: 1598024297745 - name: rfc3986-validator version: 0.1.1 manager: conda @@ -21220,12 +27687,36 @@ package: license: MIT license_family: MIT noarch: python - size: 7818 - timestamp: 1598024297745 + size: 7818 + timestamp: 1598024297745 +- name: rich + version: 13.6.0 + manager: conda + platform: linux-64 + dependencies: + markdown-it-py: '>=2.2.0' + pygments: '>=2.13.0,<3.0.0' + python: '>=3.7.0' + typing_extensions: '>=4.0.0,<5.0.0' + url: https://conda.anaconda.org/conda-forge/noarch/rich-13.6.0-pyhd8ed1ab_0.conda + hash: + md5: 3ca4829f40710f581ca1d76bc907e99f + sha256: a2f8838a75ab8c2c1da0a813c7569d4f6efba0d2b5dc3a7659e2cb6d96bd8e19 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: linux-64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 183200 + timestamp: 1696096819794 - name: rich version: 13.6.0 manager: conda - platform: linux-64 + platform: osx-64 dependencies: markdown-it-py: '>=2.2.0' pygments: '>=2.13.0,<3.0.0' @@ -21239,7 +27730,7 @@ package: category: main build: pyhd8ed1ab_0 arch: x86_64 - subdir: linux-64 + subdir: osx-64 build_number: 0 license: MIT license_family: MIT @@ -21249,7 +27740,7 @@ package: - name: rich version: 13.6.0 manager: conda - platform: osx-64 + platform: osx-arm64 dependencies: markdown-it-py: '>=2.2.0' pygments: '>=2.13.0,<3.0.0' @@ -21262,8 +27753,8 @@ package: optional: false category: main build: pyhd8ed1ab_0 - arch: x86_64 - subdir: osx-64 + arch: aarch64 + subdir: osx-arm64 build_number: 0 license: MIT license_family: MIT @@ -21337,6 +27828,27 @@ package: license_family: MIT size: 289556 timestamp: 1697072573863 +- name: rpds-py + version: 0.10.6 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.11,<3.12.0a0 *_cpython' + python_abi: 3.11.* *_cp311 + url: https://conda.anaconda.org/conda-forge/osx-arm64/rpds-py-0.10.6-py311h94f323b_0.conda + hash: + md5: 814b726b8664360bcfeaaeeb2c54f54a + sha256: a55963933ee3a9949987f43ec09f71560649c531c22702bd9f9ef09e081d6658 + optional: false + category: main + build: py311h94f323b_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: MIT + license_family: MIT + size: 289070 + timestamp: 1697072780815 - name: rpds-py version: 0.10.6 manager: conda @@ -21405,6 +27917,28 @@ package: license_family: MIT size: 62672 timestamp: 1697503665618 +- name: rtree + version: 1.1.0 + manager: conda + platform: osx-arm64 + dependencies: + libspatialindex: '>=1.9.3,<1.9.4.0a0' + python: '>=3.11,<3.12.0a0 *_cpython' + python_abi: 3.11.* *_cp311 + url: https://conda.anaconda.org/conda-forge/osx-arm64/rtree-1.1.0-py311hd698ff7_0.conda + hash: + md5: 957242aceae3dcf8049feabf99c18814 + sha256: 3bfa6f07272e4a1311433097e3e2c071926f476b9c8bd38e9520053479fe3b14 + optional: false + category: main + build: py311hd698ff7_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: MIT + license_family: MIT + size: 63362 + timestamp: 1697503597550 - name: rtree version: 1.1.0 manager: conda @@ -21448,6 +27982,7 @@ package: subdir: linux-64 build_number: 0 license: MIT + license_family: MIT size: 275621 timestamp: 1698184646223 - name: ruamel.yaml @@ -21470,8 +28005,32 @@ package: subdir: osx-64 build_number: 0 license: MIT + license_family: MIT size: 275549 timestamp: 1698184893688 +- name: ruamel.yaml + version: 0.18.2 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.11,<3.12.0a0 *_cpython' + python_abi: 3.11.* *_cp311 + ruamel.yaml.clib: '>=0.1.2' + setuptools: '*' + url: https://conda.anaconda.org/conda-forge/osx-arm64/ruamel.yaml-0.18.2-py311h05b510d_0.conda + hash: + md5: edc947ab24f5d309eb02da22ea00aa0c + sha256: 0bcd847b1adcb5adaf1b685f44166a80d0e26a39f27652796ddbb955001e4bc1 + optional: false + category: main + build: py311h05b510d_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: MIT + license_family: MIT + size: 276854 + timestamp: 1698184911162 - name: ruamel.yaml version: 0.18.2 manager: conda @@ -21495,6 +28054,7 @@ package: subdir: win-64 build_number: 0 license: MIT + license_family: MIT size: 275908 timestamp: 1698184912996 - name: ruamel.yaml.clib @@ -21540,6 +28100,27 @@ package: license_family: MIT size: 117447 timestamp: 1695997294294 +- name: ruamel.yaml.clib + version: 0.2.7 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.11,<3.12.0a0 *_cpython' + python_abi: 3.11.* *_cp311 + url: https://conda.anaconda.org/conda-forge/osx-arm64/ruamel.yaml.clib-0.2.7-py311heffc1b2_2.conda + hash: + md5: c167b931a12c70f9c1fbf927da7ff0be + sha256: 0c2d1a27afa009d3630b5944ac5fd10df95b92ab5c91c7390ddfc93ee5488349 + optional: false + category: main + build: py311heffc1b2_2 + arch: aarch64 + subdir: osx-arm64 + build_number: 2 + license: MIT + license_family: MIT + size: 113666 + timestamp: 1695997356455 - name: ruamel.yaml.clib version: 0.2.7 manager: conda @@ -21610,6 +28191,29 @@ package: license_family: MIT size: 4544170 timestamp: 1698171913911 +- name: ruff + version: 0.1.2 + manager: conda + platform: osx-arm64 + dependencies: + __osx: '>=10.9' + libcxx: '>=16.0.6' + python: '>=3.11,<3.12.0a0 *_cpython' + python_abi: 3.11.* *_cp311 + url: https://conda.anaconda.org/conda-forge/osx-arm64/ruff-0.1.2-py311h6fc163c_0.conda + hash: + md5: 4eae3a2a9b8ae663b4c0c599221d088d + sha256: 4eaab7aaa52989e02e5ed672c16a0da3237e3c24a412f25246ef66e08d7abbf9 + optional: false + category: main + build: py311h6fc163c_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: MIT + license_family: MIT + size: 4310473 + timestamp: 1698171765257 - name: ruff version: 0.1.2 manager: conda @@ -21669,19 +28273,20 @@ package: python_abi: 3.11.* *_cp311 scipy: '*' threadpoolctl: '>=2.0.0' - url: https://conda.anaconda.org/conda-forge/linux-64/scikit-learn-1.3.2-py311hc009520_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/scikit-learn-1.3.2-py311hc009520_1.conda hash: - md5: 183990a458e0dd06424052c264c5a89a - sha256: 99a99952fde4394573d166c52f8736a8b2464f553d9f3753d936f6a106204dfa + md5: 6b92d3d0680eae9d1d9860a721f7fb51 + sha256: 638253cba17e44081674b2dd7bee2025c202e91b653182da511ca57de942689d optional: false category: main - build: py311hc009520_0 + build: py311hc009520_1 arch: x86_64 subdir: linux-64 - build_number: 0 + build_number: 1 license: BSD-3-Clause - size: 9792896 - timestamp: 1698166071955 + license_family: BSD + size: 9575097 + timestamp: 1698225284583 - name: scikit-learn version: 1.3.2 manager: conda @@ -21696,19 +28301,48 @@ package: python_abi: 3.11.* *_cp311 scipy: '*' threadpoolctl: '>=2.0.0' - url: https://conda.anaconda.org/conda-forge/osx-64/scikit-learn-1.3.2-py311h66081b9_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/scikit-learn-1.3.2-py311h66081b9_1.conda hash: - md5: ed8fe0e7e6377fbe2ac142e8615eaf53 - sha256: 2708ec5d974b9e0bde2fb6cc730b6829b40a41989df4058b06f2bc723a1e70b2 + md5: a7053f3e86b6b9139593a027c54e3097 + sha256: 0b4aee092d4689d07aa95ed1d1071eeb74a5e011d34bc9ebd9b27e9b2166db7e optional: false category: main - build: py311h66081b9_0 + build: py311h66081b9_1 arch: x86_64 subdir: osx-64 - build_number: 0 + build_number: 1 + license: BSD-3-Clause + license_family: BSD + size: 8805008 + timestamp: 1698226061893 +- name: scikit-learn + version: 1.3.2 + manager: conda + platform: osx-arm64 + dependencies: + __osx: '>=10.9' + joblib: '>=1.1.1' + libcxx: '>=16.0.6' + llvm-openmp: '>=16.0.6' + numpy: '>=1.23.5,<2.0a0' + python: '>=3.11,<3.12.0a0 *_cpython' + python_abi: 3.11.* *_cp311 + scipy: '*' + threadpoolctl: '>=2.0.0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/scikit-learn-1.3.2-py311ha25ca4d_1.conda + hash: + md5: dea73952c589de24ec577c41fac181c5 + sha256: 589bca23648b8969b16a36f87d7114a12fbe88d665cde32427c7126e5b34e63c + optional: false + category: main + build: py311ha25ca4d_1 + arch: aarch64 + subdir: osx-arm64 + build_number: 1 license: BSD-3-Clause - size: 8990643 - timestamp: 1698166394072 + license_family: BSD + size: 8840075 + timestamp: 1698225663288 - name: scikit-learn version: 1.3.2 manager: conda @@ -21723,19 +28357,20 @@ 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.2-py311h142b183_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/scikit-learn-1.3.2-py311h142b183_1.conda hash: - md5: a0c0d58288855e72b864f12555b62533 - sha256: 7c3afb51394044d145c2a0d2393ba1a522afd2a026d9292741104cea7aa4eb95 + md5: a24599e0d80cf658b7d942c82907caef + sha256: 55893f59edf4bc55c6911b82207dc3d0052e28ebbef94ed0643f887a2c231fd7 optional: false category: main - build: py311h142b183_0 + build: py311h142b183_1 arch: x86_64 subdir: win-64 - build_number: 0 + build_number: 1 license: BSD-3-Clause - size: 8447908 - timestamp: 1698166912772 + license_family: BSD + size: 8328461 + timestamp: 1698225997015 - name: scipy version: 1.11.3 manager: conda @@ -21793,6 +28428,34 @@ package: license_family: BSD size: 16243071 timestamp: 1696469112175 +- name: scipy + version: 1.11.3 + manager: conda + platform: osx-arm64 + dependencies: + libblas: '>=3.9.0,<4.0a0' + libcblas: '>=3.9.0,<4.0a0' + libcxx: '>=15.0.7' + libgfortran: 5.* + libgfortran5: '>=13.2.0' + liblapack: '>=3.9.0,<4.0a0' + numpy: '>=1.23.5,<2.0a0' + python: '>=3.11,<3.12.0a0 *_cpython' + python_abi: 3.11.* *_cp311 + url: https://conda.anaconda.org/conda-forge/osx-arm64/scipy-1.11.3-py311h93d07a4_1.conda + hash: + md5: 1c687552b288a801a7851166f2494768 + sha256: 6347f47c02eef02afe1e5534c88269f73b2da28cdff8c826b210e529b8bd1f07 + optional: false + category: main + build: py311h93d07a4_1 + arch: aarch64 + subdir: osx-arm64 + build_number: 1 + license: BSD-3-Clause + license_family: BSD + size: 15110473 + timestamp: 1696469388055 - name: scipy version: 1.11.3 manager: conda @@ -21887,6 +28550,27 @@ package: noarch: python size: 15712 timestamp: 1603697876069 +- name: semver + version: 2.13.0 + manager: conda + platform: osx-arm64 + dependencies: + python: '*' + url: https://conda.anaconda.org/conda-forge/noarch/semver-2.13.0-pyh9f0ad1d_0.tar.bz2 + hash: + md5: 2cab9f3a9683cb40a2176ccaf76e66c6 + sha256: 673ef5ef04cef60c3584b1d9b81024646b9d9a4c50749356c7ba5cede755e61d + optional: false + category: main + build: pyh9f0ad1d_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 15712 + timestamp: 1603697876069 - name: semver version: 2.13.0 manager: conda @@ -21953,6 +28637,29 @@ package: noarch: python size: 23021 timestamp: 1682601619389 +- name: send2trash + version: 1.8.2 + manager: conda + platform: osx-arm64 + dependencies: + __osx: '*' + pyobjc-framework-cocoa: '*' + python: '>=3.6' + url: https://conda.anaconda.org/conda-forge/noarch/send2trash-1.8.2-pyhd1c38e8_0.conda + hash: + md5: 2657c3de5371c571aef6678afb4aaadd + sha256: dca4022bae47618ed738ab7d45ead5202d174b741cfb98e4484acdc6e76da32a + optional: false + category: main + build: pyhd1c38e8_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 23021 + timestamp: 1682601619389 - name: send2trash version: 1.8.2 manager: conda @@ -22018,6 +28725,27 @@ package: noarch: python size: 464399 timestamp: 1694548452441 +- name: setuptools + version: 68.2.2 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.7' + url: https://conda.anaconda.org/conda-forge/noarch/setuptools-68.2.2-pyhd8ed1ab_0.conda + hash: + md5: fc2166155db840c634a1291a5c35a709 + sha256: 851901b1f8f2049edb36a675f0c3f9a98e1495ef4eb214761b048c6f696a06f7 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 464399 + timestamp: 1694548452441 - name: setuptools version: 68.2.2 manager: conda @@ -22086,6 +28814,29 @@ package: license_family: BSD size: 543102 timestamp: 1697191795638 +- name: shapely + version: 2.0.2 + manager: conda + platform: osx-arm64 + dependencies: + geos: '>=3.12.0,<3.12.1.0a0' + numpy: '>=1.23.5,<2.0a0' + python: '>=3.11,<3.12.0a0 *_cpython' + python_abi: 3.11.* *_cp311 + url: https://conda.anaconda.org/conda-forge/osx-arm64/shapely-2.0.2-py311h4826c84_0.conda + hash: + md5: a9de7ff7899a7067646aa7053eb5737c + sha256: 3d08d9553565704fef53d0c9cb901bb2f40337f0a590b3ea714d363a34ee2250 + optional: false + category: main + build: py311h4826c84_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + size: 541397 + timestamp: 1697191908684 - name: shapely version: 2.0.2 manager: conda @@ -22207,6 +28958,27 @@ package: noarch: python size: 14259 timestamp: 1620240338595 +- name: six + version: 1.16.0 + manager: conda + platform: osx-arm64 + dependencies: + python: '*' + url: https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2 + hash: + md5: e5f25f8dbc060e9a8d912e432202afc2 + sha256: a85c38227b446f42c5b90d9b642f2c0567880c15d72492d8da074a59c8f91dd6 + optional: false + category: main + build: pyh6c4a22f_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 14259 + timestamp: 1620240338595 - name: six version: 1.16.0 manager: conda @@ -22269,6 +29041,26 @@ package: license_family: BSD size: 34657 timestamp: 1678534768395 +- name: snappy + version: 1.1.10 + manager: conda + platform: osx-arm64 + dependencies: + libcxx: '>=14.0.6' + url: https://conda.anaconda.org/conda-forge/osx-arm64/snappy-1.1.10-h17c5cce_0.conda + hash: + md5: ac82a611d1a67a598096ebaa857198e3 + sha256: dfae03cd2339587871e53b42833657faa4c9e42e3e2c56ee9e32bc60797c7f62 + optional: false + category: main + build: h17c5cce_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + size: 33879 + timestamp: 1678534968831 - name: snappy version: 1.1.10 manager: conda @@ -22333,6 +29125,27 @@ package: noarch: python size: 14358 timestamp: 1662051357638 +- name: sniffio + version: 1.3.0 + manager: conda + platform: osx-arm64 + 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 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: Apache-2.0 + license_family: Apache + noarch: python + size: 14358 + timestamp: 1662051357638 - name: sniffio version: 1.3.0 manager: conda @@ -22368,7 +29181,28 @@ package: category: main build: pyhd8ed1ab_1 arch: x86_64 - subdir: linux-64 + subdir: linux-64 + build_number: 1 + license: MIT + license_family: MIT + noarch: python + size: 36754 + timestamp: 1693929424267 +- name: soupsieve + version: '2.5' + manager: conda + platform: osx-64 + dependencies: + python: '>=3.8' + url: https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.5-pyhd8ed1ab_1.conda + hash: + md5: 3f144b2c34f8cb5a9abd9ed23a39c561 + sha256: 54ae221033db8fbcd4998ccb07f3c3828b4d77e73b0c72b18c1d6a507059059c + optional: false + category: main + build: pyhd8ed1ab_1 + arch: x86_64 + subdir: osx-64 build_number: 1 license: MIT license_family: MIT @@ -22378,7 +29212,7 @@ package: - name: soupsieve version: '2.5' manager: conda - platform: osx-64 + platform: osx-arm64 dependencies: python: '>=3.8' url: https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.5-pyhd8ed1ab_1.conda @@ -22388,8 +29222,8 @@ package: optional: false category: main build: pyhd8ed1ab_1 - arch: x86_64 - subdir: osx-64 + arch: aarch64 + subdir: osx-arm64 build_number: 1 license: MIT license_family: MIT @@ -22462,6 +29296,28 @@ package: license: Unlicense size: 882915 timestamp: 1696959107914 +- name: sqlite + version: 3.43.2 + manager: conda + platform: osx-arm64 + dependencies: + libsqlite: ==3.43.2 h091b4b1_0 + libzlib: '>=1.2.13,<1.3.0a0' + ncurses: '>=6.4,<7.0a0' + readline: '>=8.2,<9.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/sqlite-3.43.2-hf2abe2d_0.conda + hash: + md5: 2ccb1e35034f4795aea2a17ab30c431f + sha256: da132eb7ab2de1b2d55faf3d4614aee1486252d0e8e8c5b1d3e02d13759658ac + optional: false + category: main + build: hf2abe2d_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: Unlicense + size: 796118 + timestamp: 1696959118753 - name: sqlite version: 3.43.2 manager: conda @@ -22532,6 +29388,30 @@ package: noarch: python size: 26205 timestamp: 1669632203115 +- name: stack_data + version: 0.6.2 + manager: conda + platform: osx-arm64 + 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 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 26205 + timestamp: 1669632203115 - name: stack_data version: 0.6.2 manager: conda @@ -22627,6 +29507,30 @@ package: noarch: python size: 20347 timestamp: 1670254383751 +- name: terminado + version: 0.17.1 + manager: conda + platform: osx-arm64 + dependencies: + __osx: '*' + ptyprocess: '*' + python: '>=3.7' + tornado: '>=6.1.0' + url: https://conda.anaconda.org/conda-forge/noarch/terminado-0.17.1-pyhd1c38e8_0.conda + hash: + md5: 046120b71d8896cb7faef78bfdbfee1e + sha256: a2f8382ab390c74af592cc3566dc22e2ed81e5ac69c5b6417d1b7c22e63927bc + optional: false + category: main + build: pyhd1c38e8_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: BSD-2-Clause + license_family: BSD + noarch: python + size: 20347 + timestamp: 1670254383751 - name: terminado version: 0.17.0 manager: conda @@ -22693,6 +29597,27 @@ package: noarch: python size: 20981 timestamp: 1689261378222 +- name: threadpoolctl + version: 3.2.0 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.8' + url: https://conda.anaconda.org/conda-forge/noarch/threadpoolctl-3.2.0-pyha21a80b_0.conda + hash: + md5: 978d03388b62173b8e6f79162cf52b86 + sha256: 15e2f916fbfe3cc480160aa99eb6ba3edc183fceb234f10151d63870fdc4eccd + optional: false + category: main + build: pyha21a80b_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 20981 + timestamp: 1689261378222 - name: threadpoolctl version: 3.2.0 manager: conda @@ -22772,6 +29697,34 @@ package: license_family: MIT size: 5380880 timestamp: 1694523293860 +- name: tiledb + version: 2.16.3 + manager: conda + platform: osx-arm64 + dependencies: + bzip2: '>=1.0.8,<2.0a0' + libabseil: '>=20230802.0,<20230803.0a0' + libcxx: '>=15.0.7' + libgoogle-cloud: '>=2.12.0,<2.13.0a0' + 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/osx-arm64/tiledb-2.16.3-he15c4da_3.conda + hash: + md5: fcf3711dd1817fd6e8ab59be86aa8dd9 + sha256: c2576bf0344b441f4c7d9212cfa68fe64de88dc9da735cb541c7faa0595d260f + optional: false + category: main + build: he15c4da_3 + arch: aarch64 + subdir: osx-arm64 + build_number: 3 + license: MIT + license_family: MIT + size: 4911600 + timestamp: 1694523575326 - name: tiledb version: 2.16.3 manager: conda @@ -22848,6 +29801,28 @@ package: noarch: python size: 23235 timestamp: 1666100385187 +- name: tinycss2 + version: 1.2.1 + manager: conda + platform: osx-arm64 + 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 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 23235 + timestamp: 1666100385187 - name: tinycss2 version: 1.2.1 manager: conda @@ -22911,6 +29886,26 @@ package: license_family: BSD size: 3273909 timestamp: 1695506576288 +- name: tk + version: 8.6.13 + manager: conda + platform: osx-arm64 + dependencies: + libzlib: '>=1.2.13,<1.3.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/tk-8.6.13-hb31c410_0.conda + hash: + md5: aa913a828b65f30ee3aba9c59bb0b514 + sha256: 6df6ff49dba487eb891ddc0099642a36af2fe3929ed8023f76b745f0485c54a6 + optional: false + category: main + build: hb31c410_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: TCL + license_family: BSD + size: 3223549 + timestamp: 1695506653047 - name: tk version: 8.6.13 manager: conda @@ -22975,6 +29970,27 @@ package: noarch: python size: 18433 timestamp: 1604308660817 +- name: toml + version: 0.10.2 + manager: conda + platform: osx-arm64 + 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 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 18433 + timestamp: 1604308660817 - name: toml version: 0.10.2 manager: conda @@ -23038,6 +30054,27 @@ package: noarch: python size: 15940 timestamp: 1644342331069 +- name: tomli + version: 2.0.1 + manager: conda + platform: osx-arm64 + 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 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 15940 + timestamp: 1644342331069 - name: tomli version: 2.0.1 manager: conda @@ -23101,6 +30138,27 @@ package: noarch: python size: 10052 timestamp: 1638551820635 +- name: tomli-w + version: 1.0.0 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.7' + url: https://conda.anaconda.org/conda-forge/noarch/tomli-w-1.0.0-pyhd8ed1ab_0.tar.bz2 + hash: + md5: 73506d1ab4202481841c68c169b7ef6c + sha256: efb5f78a224c4bb14aab04690c9912256ea12c3a8b8413e60167573ce1282b02 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 10052 + timestamp: 1638551820635 - name: tomli-w version: 1.0.0 manager: conda @@ -23165,6 +30223,27 @@ package: license_family: Apache size: 843855 timestamp: 1695373925218 +- name: tornado + version: 6.3.3 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.11,<3.12.0a0 *_cpython' + python_abi: 3.11.* *_cp311 + url: https://conda.anaconda.org/conda-forge/osx-arm64/tornado-6.3.3-py311heffc1b2_1.conda + hash: + md5: a3a94203d225faec0d6bd000ea30b0a1 + sha256: 65e96fcaa2fad8013fdfd1c7cbdc4684b253541c10091fa7acd55b4a3daa87e6 + optional: false + category: main + build: py311heffc1b2_1 + arch: aarch64 + subdir: osx-arm64 + build_number: 1 + license: Apache-2.0 + license_family: Apache + size: 843751 + timestamp: 1695373818353 - name: tornado version: 6.3.3 manager: conda @@ -23190,15 +30269,15 @@ package: size: 845683 timestamp: 1695374005077 - 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 optional: false category: main build: pyhd8ed1ab_0 @@ -23208,18 +30287,18 @@ package: license: BSD-3-Clause license_family: BSD noarch: python - size: 108843 - timestamp: 1696377842098 + size: 108826 + timestamp: 1698232210168 - 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 optional: false category: main build: pyhd8ed1ab_0 @@ -23229,18 +30308,39 @@ package: license: BSD-3-Clause license_family: BSD noarch: python - size: 108843 - timestamp: 1696377842098 + size: 108826 + timestamp: 1698232210168 +- name: traitlets + version: 5.12.0 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.8' + url: https://conda.anaconda.org/conda-forge/noarch/traitlets-5.12.0-pyhd8ed1ab_0.conda + hash: + md5: 3ecde21191a20e0e4ab5a4d69aaaa22c + sha256: cd0709a388063aa4024fa9c721b91cac982983435ab12bf564871c27ef983e13 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 108826 + timestamp: 1698232210168 - 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 optional: false category: main build: pyhd8ed1ab_0 @@ -23250,8 +30350,8 @@ package: license: BSD-3-Clause license_family: BSD noarch: python - size: 108843 - timestamp: 1696377842098 + size: 108826 + timestamp: 1698232210168 - name: twine version: 4.0.2 manager: conda @@ -23312,6 +30412,36 @@ package: noarch: python size: 30903 timestamp: 1669898686321 +- name: twine + version: 4.0.2 + manager: conda + platform: osx-arm64 + dependencies: + importlib_metadata: '>=3.6' + keyring: '>=15.1' + pkginfo: '>=1.8.1' + python: '>=3.7' + readme_renderer: '>=35.0' + requests: '>=2.20' + requests-toolbelt: '>=0.8.0,!=0.9.0' + rfc3986: '>=1.4.0' + rich: '>=12.0.0' + urllib3: '>=1.26.0' + url: https://conda.anaconda.org/conda-forge/noarch/twine-4.0.2-pyhd8ed1ab_0.conda + hash: + md5: e3a16168d6b9deefb8c1caa7943fb49e + sha256: 3e0c4f23d6a7d71783095b715f56c9f5f26feefaa9f30e27793dd12dc28e76c9 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: Apache-2.0 + license_family: Apache + noarch: python + size: 30903 + timestamp: 1669898686321 - name: twine version: 4.0.2 manager: conda @@ -23392,6 +30522,31 @@ package: noarch: python size: 33753 timestamp: 1698176750792 +- name: typeguard + version: 4.1.5 + manager: conda + platform: osx-arm64 + dependencies: + importlib_metadata: '>=3.6' + python: '>=3.8' + typing_extensions: '>=4.7.0' + url: https://conda.anaconda.org/conda-forge/noarch/typeguard-4.1.5-pyhd8ed1ab_1.conda + hash: + md5: 59d22e0ca481b057b94d54fc9ebacb13 + sha256: df63f90625d2eaefcb6990437b941c1c90ec3c224bc65a2becac928542d0aa5f + optional: false + category: main + build: pyhd8ed1ab_1 + arch: aarch64 + subdir: osx-arm64 + build_number: 1 + constrains: + - pytest >=7 + license: MIT + license_family: MIT + noarch: python + size: 33753 + timestamp: 1698176750792 - name: typeguard version: 4.1.5 manager: conda @@ -23457,6 +30612,26 @@ package: noarch: python size: 21474 timestamp: 1689883066161 +- name: types-python-dateutil + version: 2.8.19.14 + manager: conda + platform: osx-arm64 + 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 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: Apache-2.0 AND MIT + noarch: python + size: 21474 + timestamp: 1689883066161 - name: types-python-dateutil version: 2.8.19.14 manager: conda @@ -23517,6 +30692,26 @@ package: noarch: python size: 18580 timestamp: 1695236716910 +- name: types-pytz + version: 2023.3.1.1 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.6' + url: https://conda.anaconda.org/conda-forge/noarch/types-pytz-2023.3.1.1-pyhd8ed1ab_0.conda + hash: + md5: 13ce724cb44f7bc0ca0971d76e333c30 + sha256: c1c54f4b2b5b39c420b3a47dd6196355147c798c0a4a2bdaaba80435e9591fb3 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: Apache-2.0 AND MIT + noarch: python + size: 18580 + timestamp: 1695236716910 - name: types-pytz version: 2023.3.1.1 manager: conda @@ -23579,6 +30774,27 @@ package: noarch: python size: 10104 timestamp: 1695040958008 +- name: typing-extensions + version: 4.8.0 + manager: conda + platform: osx-arm64 + dependencies: + typing_extensions: ==4.8.0 pyha770c72_0 + url: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.8.0-hd8ed1ab_0.conda + hash: + md5: 384462e63262a527bda564fa2d9126c0 + sha256: d6e1dddd0c372218ef15912383d351ac8c73465cbf16238017f0269813cafe2d + optional: false + category: main + build: hd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: PSF-2.0 + license_family: PSF + noarch: python + size: 10104 + timestamp: 1695040958008 - name: typing-extensions version: 4.8.0 manager: conda @@ -23642,6 +30858,27 @@ package: noarch: python size: 35108 timestamp: 1695040948828 +- name: typing_extensions + version: 4.8.0 + manager: conda + platform: osx-arm64 + 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 + optional: false + category: main + build: pyha770c72_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: PSF-2.0 + license_family: PSF + noarch: python + size: 35108 + timestamp: 1695040948828 - name: typing_extensions version: 4.8.0 manager: conda @@ -23709,6 +30946,29 @@ package: noarch: python size: 14906 timestamp: 1685820229594 +- name: typing_inspect + version: 0.9.0 + manager: conda + platform: osx-arm64 + dependencies: + mypy_extensions: '>=0.3.0' + python: '>=3.5' + typing_extensions: '>=3.7.4' + url: https://conda.anaconda.org/conda-forge/noarch/typing_inspect-0.9.0-pyhd8ed1ab_0.conda + hash: + md5: 9e924b76b91908a17e28a19a0ab88687 + sha256: 16e0b825c138e14ebc84623248d91d93a8cff29bb93595cc4aa46ca32f24f1de + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 14906 + timestamp: 1685820229594 - name: typing_inspect version: 0.9.0 manager: conda @@ -23774,6 +31034,27 @@ package: noarch: python size: 13829 timestamp: 1622899345711 +- name: typing_utils + version: 0.1.0 + manager: conda + platform: osx-arm64 + 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 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: Apache-2.0 + license_family: APACHE + noarch: python + size: 13829 + timestamp: 1622899345711 - name: typing_utils version: 0.1.0 manager: conda @@ -23835,6 +31116,25 @@ package: license_family: BSD size: 62711 timestamp: 1680049599804 +- name: tzcode + version: 2023c + manager: conda + platform: osx-arm64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-arm64/tzcode-2023c-h1a8c8d9_0.conda + hash: + md5: 96779d3be996d78411b083f99a51199c + sha256: 0a60ff53272547a0f80862f0a1969a5d1cec16bd2e9098ed5b07d317682a4361 + optional: false + category: main + build: h1a8c8d9_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + size: 63064 + timestamp: 1680049656503 - name: tzdata version: 2023c manager: conda @@ -23873,6 +31173,25 @@ package: noarch: generic size: 117580 timestamp: 1680041306008 +- name: tzdata + version: 2023c + manager: conda + platform: osx-arm64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/noarch/tzdata-2023c-h71feb2d_0.conda + hash: + md5: 939e3e74d8be4dac89ce83b20de2492a + sha256: 0449138224adfa125b220154408419ec37c06b0b49f63c5954724325903ecf55 + optional: false + category: main + build: h71feb2d_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: LicenseRef-Public-Domain + noarch: generic + size: 117580 + timestamp: 1680041306008 - name: tzdata version: 2023c manager: conda @@ -23985,6 +31304,29 @@ package: license_family: MIT size: 13193 timestamp: 1695549883822 +- name: ukkonen + version: 1.0.1 + manager: conda + platform: osx-arm64 + dependencies: + cffi: '*' + libcxx: '>=15.0.7' + python: '>=3.11,<3.12.0a0 *_cpython' + python_abi: 3.11.* *_cp311 + url: https://conda.anaconda.org/conda-forge/osx-arm64/ukkonen-1.0.1-py311he4fd1f5_4.conda + hash: + md5: 5d5ab5c5af32931e03608034f4a5fd75 + sha256: 384fc81a34e248019d43a115386f77859ab63e0e6f12dade486d76359703743f + optional: false + category: main + build: py311he4fd1f5_4 + arch: aarch64 + subdir: osx-arm64 + build_number: 4 + license: MIT + license_family: MIT + size: 13958 + timestamp: 1695549884615 - name: ukkonen version: 1.0.1 manager: conda @@ -24052,6 +31394,27 @@ package: noarch: python size: 23999 timestamp: 1688655976471 +- name: uri-template + version: 1.3.0 + manager: conda + platform: osx-arm64 + 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 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 23999 + timestamp: 1688655976471 - name: uri-template version: 1.3.0 manager: conda @@ -24114,6 +31477,26 @@ package: license_family: BSD size: 41455 timestamp: 1677713114668 +- name: uriparser + version: 0.9.7 + manager: conda + platform: osx-arm64 + dependencies: + libcxx: '>=14.0.6' + url: https://conda.anaconda.org/conda-forge/osx-arm64/uriparser-0.9.7-hb7217d7_1.conda + hash: + md5: 4fe532e3c6b0cfa5365eb01743d32578 + sha256: bedd03f3bb30b73ae7b0dc9626f1371a8568ce6d41303df3e8299688428dfa94 + optional: false + category: main + build: hb7217d7_1 + arch: aarch64 + subdir: osx-arm64 + build_number: 1 + license: BSD-3-Clause + license_family: BSD + size: 39597 + timestamp: 1677713148574 - name: uriparser version: 0.9.7 manager: conda @@ -24182,6 +31565,29 @@ package: noarch: python size: 98507 timestamp: 1697720586316 +- name: urllib3 + version: 2.0.7 + manager: conda + platform: osx-arm64 + dependencies: + brotli-python: '>=1.0.9' + pysocks: '>=1.5.6,<2.0,!=1.5.7' + python: '>=3.7' + url: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.0.7-pyhd8ed1ab_0.conda + hash: + md5: 270e71c14d37074b1d066ee21cf0c4a6 + sha256: 9fe14735dde74278c6f1710cbe883d5710fc98501a96031dec6849a8d8a1bb11 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 98507 + timestamp: 1697720586316 - name: urllib3 version: 2.0.7 manager: conda @@ -24297,6 +31703,30 @@ package: noarch: python size: 3067859 timestamp: 1698092779433 +- name: virtualenv + version: 20.24.6 + manager: conda + platform: osx-arm64 + dependencies: + distlib: <1,>=0.3.7 + filelock: <4,>=3.12.2 + platformdirs: <4,>=3.9.1 + python: '>=3.8' + url: https://conda.anaconda.org/conda-forge/noarch/virtualenv-20.24.6-pyhd8ed1ab_0.conda + hash: + md5: fb1fc875719e217ed799a7aae11d3be4 + sha256: 09492f89a22dc17d9b32f2a791deee93d06e99fb312c3d47430fe35343b7fbde + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 3067859 + timestamp: 1698092779433 - name: virtualenv version: 20.24.6 manager: conda @@ -24385,6 +31815,28 @@ package: noarch: python size: 30291 timestamp: 1696255331126 +- name: wcwidth + version: 0.2.8 + manager: conda + platform: osx-arm64 + 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 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 30291 + timestamp: 1696255331126 - name: wcwidth version: 0.2.8 manager: conda @@ -24410,7 +31862,28 @@ package: - name: webcolors version: '1.13' manager: conda - platform: linux-64 + platform: linux-64 + dependencies: + python: '>=3.5' + url: https://conda.anaconda.org/conda-forge/noarch/webcolors-1.13-pyhd8ed1ab_0.conda + hash: + md5: 166212fe82dad8735550030488a01d03 + sha256: 6e097d5fe92849ad3af2c2a313771ad2fbf1cadd4dc4afd552303b2bf3f85211 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: x86_64 + subdir: linux-64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 18186 + timestamp: 1679900907305 +- name: webcolors + version: '1.13' + manager: conda + platform: osx-64 dependencies: python: '>=3.5' url: https://conda.anaconda.org/conda-forge/noarch/webcolors-1.13-pyhd8ed1ab_0.conda @@ -24421,7 +31894,7 @@ package: category: main build: pyhd8ed1ab_0 arch: x86_64 - subdir: linux-64 + subdir: osx-64 build_number: 0 license: BSD-3-Clause license_family: BSD @@ -24431,7 +31904,7 @@ package: - name: webcolors version: '1.13' manager: conda - platform: osx-64 + platform: osx-arm64 dependencies: python: '>=3.5' url: https://conda.anaconda.org/conda-forge/noarch/webcolors-1.13-pyhd8ed1ab_0.conda @@ -24441,8 +31914,8 @@ package: optional: false category: main build: pyhd8ed1ab_0 - arch: x86_64 - subdir: osx-64 + arch: aarch64 + subdir: osx-arm64 build_number: 0 license: BSD-3-Clause license_family: BSD @@ -24512,6 +31985,27 @@ package: noarch: python size: 15600 timestamp: 1694681458271 +- name: webencodings + version: 0.5.1 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=2.6' + url: https://conda.anaconda.org/conda-forge/noarch/webencodings-0.5.1-pyhd8ed1ab_2.conda + hash: + md5: daf5160ff9cde3a468556965329085b9 + sha256: 2adf9bd5482802837bc8814cbe28d7b2a4cbd2e2c52e381329eaa283b3ed1944 + optional: false + category: main + build: pyhd8ed1ab_2 + arch: aarch64 + subdir: osx-arm64 + build_number: 2 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 15600 + timestamp: 1694681458271 - name: webencodings version: 0.5.1 manager: conda @@ -24575,6 +32069,27 @@ package: noarch: python size: 45866 timestamp: 1696770282111 +- name: websocket-client + version: 1.6.4 + manager: conda + platform: osx-arm64 + 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 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: Apache-2.0 + license_family: APACHE + noarch: python + size: 45866 + timestamp: 1696770282111 - name: websocket-client version: 1.6.4 manager: conda @@ -24638,6 +32153,27 @@ package: noarch: python size: 57488 timestamp: 1692700760369 +- name: wheel + version: 0.41.2 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.7' + url: https://conda.anaconda.org/conda-forge/noarch/wheel-0.41.2-pyhd8ed1ab_0.conda + hash: + md5: 1ccd092478b3e0ee10d7a891adbf8a4f + sha256: 21bcec5373b04d739ab65252b5532b04a08d229865ebb24b5b94902d6d0a77b0 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 57488 + timestamp: 1692700760369 - name: wheel version: 0.41.2 manager: conda @@ -24741,6 +32277,27 @@ package: license_family: BSD size: 57829 timestamp: 1695409499212 +- name: wrapt + version: 1.15.0 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.11,<3.12.0a0 *_cpython' + python_abi: 3.11.* *_cp311 + url: https://conda.anaconda.org/conda-forge/osx-arm64/wrapt-1.15.0-py311heffc1b2_1.conda + hash: + md5: 09bc1388451898374380306f55893ac4 + sha256: 30b9cbb62b87133c69f2d35d1ab493f8628ecc1abc3b397f700585c8f4b18012 + optional: false + category: main + build: py311heffc1b2_1 + arch: aarch64 + subdir: osx-arm64 + build_number: 1 + license: BSD-2-Clause + license_family: BSD + size: 60917 + timestamp: 1695409487632 - name: wrapt version: 1.15.0 manager: conda @@ -24855,6 +32412,51 @@ package: noarch: python size: 711330 timestamp: 1697764509357 +- name: xarray + version: 2023.10.1 + manager: conda + platform: osx-arm64 + dependencies: + numpy: '>=1.22' + packaging: '>=21.3' + pandas: '>=1.4' + python: '>=3.9' + url: https://conda.anaconda.org/conda-forge/noarch/xarray-2023.10.1-pyhd8ed1ab_0.conda + hash: + md5: 9b20e5d68eea6878a0a6fc57a3043889 + sha256: 6062114745e9c01813506527d7e48c75dbe5eb6017e4c60ce8c98ef9fd757db2 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + constrains: + - seaborn >=0.11 + - netcdf4 >=1.6.0 + - iris >=3.2 + - zarr >=2.12 + - pint >=0.19 + - h5py >=3.6 + - hdf5 >=1.12 + - cftime >=1.6 + - sparse >=0.13 + - cartopy >=0.20 + - dask-core >=2022.7 + - nc-time-axis >=1.4 + - scipy >=1.8 + - distributed >=2022.7 + - bottleneck >=1.3 + - matplotlib-base >=3.5 + - toolz >=0.12 + - h5netcdf >=1.0 + - flox >=0.5 + - numba >=0.55 + license: Apache-2.0 + license_family: APACHE + noarch: python + size: 711330 + timestamp: 1697764509357 - name: xarray version: 2023.10.1 manager: conda @@ -25052,6 +32654,28 @@ package: license_family: Apache size: 1353734 timestamp: 1692976676234 +- name: xerces-c + version: 3.2.4 + manager: conda + platform: osx-arm64 + dependencies: + icu: '>=73.2,<74.0a0' + libcurl: '>=8.2.1,<9.0a0' + libcxx: '>=15.0.7' + url: https://conda.anaconda.org/conda-forge/osx-arm64/xerces-c-3.2.4-hd886eac_3.conda + hash: + md5: 916e77cb0be0040410881fba8e28b5bb + sha256: 5ecc3322ddcad0a002a44bd4dddfe898b9e02951c629f6962c23b3bcf6014c9f + optional: false + category: main + build: hd886eac_3 + arch: aarch64 + subdir: osx-arm64 + build_number: 3 + license: Apache-2.0 + license_family: Apache + size: 1332769 + timestamp: 1692976472328 - name: xerces-c version: 3.2.4 manager: conda @@ -25139,6 +32763,28 @@ package: noarch: python size: 18460 timestamp: 1681486998644 +- name: xmipy + version: 1.3.1 + manager: conda + platform: osx-arm64 + dependencies: + bmipy: '*' + numpy: '*' + python: '>=3.8' + url: https://conda.anaconda.org/conda-forge/noarch/xmipy-1.3.1-pyhd8ed1ab_0.conda + hash: + md5: a3c8465bfc71004064a30c0238a74ea3 + sha256: d702574ef63e5e44085c390b46090380097b3d63bbcbfe8d9e85f1828663d04c + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: CC0-1.0 + noarch: python + size: 18460 + timestamp: 1681486998644 - name: xmipy version: 1.3.1 manager: conda @@ -25286,6 +32932,25 @@ package: license_family: MIT size: 13071 timestamp: 1684638167647 +- name: xorg-libxau + version: 1.0.11 + manager: conda + platform: osx-arm64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-arm64/xorg-libxau-1.0.11-hb547adb_0.conda + hash: + md5: ca73dc4f01ea91e44e3ed76602c5ea61 + sha256: 02c313a1cada46912e5b9bdb355cfb4534bfe22143b4ea4ecc419690e793023b + optional: false + category: main + build: hb547adb_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: MIT + license_family: MIT + size: 13667 + timestamp: 1684638272445 - name: xorg-libxau version: 1.0.11 manager: conda @@ -25346,6 +33011,25 @@ package: license_family: MIT size: 17225 timestamp: 1610071995461 +- name: xorg-libxdmcp + version: 1.1.3 + manager: conda + platform: osx-arm64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-arm64/xorg-libxdmcp-1.1.3-h27ca646_0.tar.bz2 + hash: + md5: 6738b13f7fadc18725965abdd4129c36 + sha256: d9a2fb4762779994718832f05a7d62ab2dcf6103a312235267628b5187ce88f7 + optional: false + category: main + build: h27ca646_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: MIT + license_family: MIT + size: 18164 + timestamp: 1610071737668 - name: xorg-libxdmcp version: 1.1.3 manager: conda @@ -25532,6 +33216,27 @@ package: noarch: python size: 36406 timestamp: 1696506575491 +- name: xyzservices + version: 2023.10.0 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.8' + url: https://conda.anaconda.org/conda-forge/noarch/xyzservices-2023.10.0-pyhd8ed1ab_0.conda + hash: + md5: 9c6fe7db9c9133ade38b9a5011103243 + sha256: 21662312078b887bcc5818695e871d81ad87b60eec73f9f8fa35c8f5d4252608 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + noarch: python + size: 36406 + timestamp: 1696506575491 - name: xyzservices version: 2023.10.0 manager: conda @@ -25590,6 +33295,24 @@ package: license: LGPL-2.1 and GPL-2.0 size: 238119 timestamp: 1660346964847 +- name: xz + version: 5.2.6 + manager: conda + platform: osx-arm64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-arm64/xz-5.2.6-h57fd34a_0.tar.bz2 + hash: + md5: 39c6b54e94014701dd157f4f576ed211 + sha256: 59d78af0c3e071021cfe82dc40134c19dab8cdf804324b62940f5c8cd71803ec + optional: false + category: main + build: h57fd34a_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: LGPL-2.1 and GPL-2.0 + size: 235693 + timestamp: 1660346961024 - name: xz version: 5.2.6 manager: conda @@ -25649,6 +33372,25 @@ package: license_family: MIT size: 84237 timestamp: 1641347062780 +- name: yaml + version: 0.2.5 + manager: conda + platform: osx-arm64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-arm64/yaml-0.2.5-h3422bc3_2.tar.bz2 + hash: + md5: 4bb3f014845110883a3c5ee811fd84b4 + sha256: 93181a04ba8cfecfdfb162fc958436d868cc37db504c58078eab4c1a3e57fbb7 + optional: false + category: main + build: h3422bc3_2 + arch: aarch64 + subdir: osx-arm64 + build_number: 2 + license: MIT + license_family: MIT + size: 88016 + timestamp: 1641347076660 - name: yaml version: 0.2.5 manager: conda @@ -25714,6 +33456,28 @@ package: license_family: MOZILLA size: 294253 timestamp: 1697057208271 +- name: zeromq + version: 4.3.5 + manager: conda + platform: osx-arm64 + dependencies: + __osx: '>=10.9' + libcxx: '>=16.0.6' + libsodium: '>=1.0.18,<1.0.19.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/zeromq-4.3.5-h965bd2d_0.conda + hash: + md5: f460bbcb0ec8dc77989288fe8caa0f84 + sha256: 06abddc92d0bf83cd9faf25f26c98d7c2cc681cb50504011580b0584cf3cb1c5 + optional: false + category: main + build: h965bd2d_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: MPL-2.0 + license_family: MOZILLA + size: 287460 + timestamp: 1697056868401 - name: zeromq version: 4.3.5 manager: conda @@ -25779,6 +33543,27 @@ package: noarch: python size: 18954 timestamp: 1695255262261 +- name: zipp + version: 3.17.0 + manager: conda + platform: osx-arm64 + dependencies: + python: '>=3.8' + url: https://conda.anaconda.org/conda-forge/noarch/zipp-3.17.0-pyhd8ed1ab_0.conda + hash: + md5: 2e4d6bc0b14e10f895fc6791a7d9b26a + sha256: bced1423fdbf77bca0a735187d05d9b9812d2163f60ab426fc10f11f92ecbe26 + optional: false + category: main + build: pyhd8ed1ab_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: MIT + license_family: MIT + noarch: python + size: 18954 + timestamp: 1695255262261 - name: zipp version: 3.17.0 manager: conda @@ -25841,6 +33626,26 @@ package: license_family: Other size: 90764 timestamp: 1686575574678 +- name: zlib + version: 1.2.13 + manager: conda + platform: osx-arm64 + dependencies: + libzlib: ==1.2.13 h53f4e23_5 + url: https://conda.anaconda.org/conda-forge/osx-arm64/zlib-1.2.13-h53f4e23_5.conda + hash: + md5: a08383f223b10b71492d27566fafbf6c + sha256: de0ee1e24aa6867058d3b852a15c8d7f49f262f5828772700c647186d4a96bbe + optional: false + category: main + build: h53f4e23_5 + arch: aarch64 + subdir: osx-arm64 + build_number: 5 + license: Zlib + license_family: Other + size: 79577 + timestamp: 1686575471024 - name: zlib version: 1.2.13 manager: conda @@ -25906,6 +33711,26 @@ package: license_family: BSD size: 499383 timestamp: 1693151312586 +- name: zstd + version: 1.5.5 + manager: conda + platform: osx-arm64 + dependencies: + libzlib: '>=1.2.13,<1.3.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/zstd-1.5.5-h4f39d0f_0.conda + hash: + md5: 5b212cfb7f9d71d603ad891879dc7933 + sha256: 7e1fe6057628bbb56849a6741455bbb88705bae6d6646257e57904ac5ee5a481 + optional: false + category: main + build: h4f39d0f_0 + arch: aarch64 + subdir: osx-arm64 + build_number: 0 + license: BSD-3-Clause + license_family: BSD + size: 400508 + timestamp: 1693151393180 - name: zstd version: 1.5.5 manager: conda diff --git a/pixi.toml b/pixi.toml index bfe14b5d7..2dd01eac2 100644 --- a/pixi.toml +++ b/pixi.toml @@ -4,7 +4,7 @@ version = "0.2.0" description = "Water resources modeling" authors = ["Deltares and contributors "] channels = ["conda-forge"] -platforms = ["win-64", "linux-64", "osx-64"] +platforms = ["win-64", "linux-64", "osx-arm64", "osx-64"] readme = "README.md" license = "MIT" license-file = "LICENSE" @@ -97,7 +97,6 @@ pytest = "*" pytest-cov = "*" pytest-xdist = "*" python = ">=3.9" -quarto = "*" ruff = "*" shapely = ">=2.0" tomli = "*" @@ -105,3 +104,13 @@ tomli-w = "*" twine = "*" xarray = "*" xmipy = "*" +typing-extensions = ">=4.6" + +[target.win-64.dependencies] +quarto = "*" + +[target.linux-64.dependencies] +quarto = "*" + +[target.osx-64.dependencies] +quarto = "*" diff --git a/python/ribasim/ribasim/utils.py b/python/ribasim/ribasim/utils.py index 259bfab87..6a3db761e 100644 --- a/python/ribasim/ribasim/utils.py +++ b/python/ribasim/ribasim/utils.py @@ -1,5 +1,3 @@ -import random -import string from typing import Any, Sequence, Tuple import numpy as np @@ -78,8 +76,3 @@ def connectivity_from_geometry( from_id = node_index[edge_node_id[:, 0]].to_numpy() to_id = node_index[edge_node_id[:, 1]].to_numpy() return from_id, to_id - - -def random_string(length=3): - letters = string.ascii_lowercase - return "".join(random.choice(letters) for i in range(length)) diff --git a/python/ribasim_testmodels/ribasim_testmodels/basic.py b/python/ribasim_testmodels/ribasim_testmodels/basic.py index 710f4bf5b..708a26dd1 100644 --- a/python/ribasim_testmodels/ribasim_testmodels/basic.py +++ b/python/ribasim_testmodels/ribasim_testmodels/basic.py @@ -159,10 +159,7 @@ def basic_model() -> ribasim.Model: # Make sure the feature id starts at 1: explicitly give an index. node = ribasim.Node( static=gpd.GeoDataFrame( - data={ - "type": node_type, - "name": [ribasim.utils.random_string() for _ in range(len(node_id))], - }, + data={"type": node_type}, index=pd.Index(node_id, name="fid"), geometry=node_xy, crs="EPSG:28992", @@ -180,7 +177,6 @@ def basic_model() -> ribasim.Model: edge = ribasim.Edge( static=gpd.GeoDataFrame( data={ - "name": [ribasim.utils.random_string() for _ in range(len(from_id))], "from_node_id": from_id, "to_node_id": to_id, "edge_type": len(from_id) * ["flow"], diff --git a/python/ribasim_testmodels/ribasim_testmodels/dutch_waterways.py b/python/ribasim_testmodels/ribasim_testmodels/dutch_waterways.py index a39b76b7b..dc7cfffb3 100644 --- a/python/ribasim_testmodels/ribasim_testmodels/dutch_waterways.py +++ b/python/ribasim_testmodels/ribasim_testmodels/dutch_waterways.py @@ -233,12 +233,35 @@ def dutch_waterways_model(): ] ) + node_name = [ + "", # 1: LevelBoundary + "IJsselkop", # 2: Basin + "", # 3: LinearResistance + "", # 4: LinearResistance + "IJssel Westervoort", # 5: Basin + "Nederrijn Arnhem", # 6: Basin + "", # 7: LevelBoundary + "Driel open", # 8: TabulatedRatingCurve + "Driel gecontroleerd", # 9: Pump + "", # 10: Basin + "", # 11: LinearResistance + "", # 12: Basin + "Amerongen open", # 13: TabulatedRatingCurve + "Amerongen gecontroleerd", # 14: Pump + "", # 15: Basin + "Kruising ARK", # 16: LevelBoundary + "Controller Driel", # 17: DiscreteControl + "", # 18: LinearResistance + "", # 19: LinearResistance + "Controller Amerongen", # 20: PidControl + ] + node_xy = gpd.points_from_xy(x=xy[:, 0], y=405 - xy[:, 1]) # Make sure the feature id starts at 1: explicitly give an index. node = ribasim.Node( static=gpd.GeoDataFrame( - data={"type": node_type}, + data={"type": node_type, "name": node_name}, index=pd.Index(node_id, name="fid"), geometry=node_xy, crs="EPSG:28992", @@ -261,6 +284,33 @@ def dutch_waterways_model(): from_id = np.concatenate([from_id_flow, from_id_control]) to_id = np.concatenate([to_id_flow, to_id_control]) + edge_name = [ + # flow + "Pannerdensch Kanaal", # 1 -> 2 + "Start IJssel", # 2 -> 3 + "", # 3 -> 5 + "Start Nederrijn", # 2 -> 4 + "", # 4 -> 6 + "", # 6 -> 9 + "", # 9 -> 10 + "", # 10 -> 11 + "", # 11 -> 12 + "", # 12 -> 14 + "", # 14 -> 15 + "", # 6 -> 8 + "", # 8 -> 10 + "", # 12 -> 13 + "", # 13 -> 15 + "", # 5 -> 18 + "", # 18 -> 7 + "", # 15 -> 19 + "", # 19 -> 16 + # control + "", # 20 -> 14 + "", # 17 -> 8 + "", # 17 -> 9 + ] + lines = ribasim.utils.geometry_from_connectivity(node, from_id, to_id) edge = ribasim.Edge( static=gpd.GeoDataFrame( @@ -269,6 +319,7 @@ def dutch_waterways_model(): "to_node_id": to_id, "edge_type": len(from_id_flow) * ["flow"] + len(from_id_control) * ["control"], + "name": edge_name, }, geometry=lines, crs="EPSG:28992", diff --git a/qgis/core/nodes.py b/qgis/core/nodes.py index 93f82a0a9..7812bd095 100644 --- a/qgis/core/nodes.py +++ b/qgis/core/nodes.py @@ -210,7 +210,7 @@ def renderer(self) -> QgsCategorizedSymbolRenderer: @property def labels(self) -> Any: pal_layer = QgsPalLayerSettings() - pal_layer.fieldName = """concat("name", ' (#', "fid", ')')""" + pal_layer.fieldName = """concat("name", ' #', "fid")""" pal_layer.isExpression = True pal_layer.enabled = True pal_layer.dist = 2.0 @@ -290,9 +290,11 @@ def renderer(self) -> QgsCategorizedSymbolRenderer: @property def labels(self) -> Any: pal_layer = QgsPalLayerSettings() - pal_layer.fieldName = "name" + pal_layer.fieldName = """concat("name", ' #', "fid")""" + pal_layer.isExpression = True pal_layer.enabled = True pal_layer.placement = Qgis.LabelPlacement.Line + pal_layer.dist = 1.0 labels = QgsVectorLayerSimpleLabeling(pal_layer) return labels