forked from ML4GW/deepcleanv2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdc-demo.conda-lock.yml
2688 lines (2688 loc) · 78.1 KB
/
dc-demo.conda-lock.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# This lock file was generated by conda-lock (https://github.com/conda/conda-lock). DO NOT EDIT!
#
# A "lock file" contains a concrete list of package versions (with checksums) to be installed. Unlike
# e.g. `conda env create`, the resulting environment will not change as new package versions become
# available, unless you explicitly update the lock file.
#
# Install this environment as "YOURENV" with:
# conda-lock install -n YOURENV --file dc-demo.conda-lock.yml
# To update a single package to the latest version compatible with the version constraints in the source:
# conda-lock lock --lockfile dc-demo.conda-lock.yml --update PACKAGE
# To re-solve the entire environment, e.g. after changing a version constraint in the source file:
# conda-lock -f dc-demo.yaml --lockfile dc-demo.conda-lock.yml
version: 1
metadata:
content_hash:
linux-64: 8006fab41ea28c1b48f4eaba32ad9bd821cb3f85c6f84de2c6d1998235d2d818
channels:
- url: conda-forge
used_env_vars: []
platforms:
- linux-64
sources:
- dc-demo.yaml
package:
- name: _libgcc_mutex
version: '0.1'
manager: conda
platform: linux-64
dependencies: {}
url: https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2
hash:
md5: d7c89558ba9fa0495403155b64376d81
sha256: fe51de6107f9edc7aa4f786a70f4a883943bc9d39b3bb7307c04c41410990726
category: main
optional: false
- name: _openmp_mutex
version: '4.5'
manager: conda
platform: linux-64
dependencies:
_libgcc_mutex: '0.1'
libgomp: '>=7.5.0'
url: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2
hash:
md5: 73aaf86a425cc6e73fcf236a5a46396d
sha256: fbe2c5e56a653bebb982eda4876a9178aedfc2b545f25d0ce9c4c0b508253d22
category: main
optional: false
- name: annotated-types
version: 0.6.0
manager: conda
platform: linux-64
dependencies:
python: '>=3.7'
typing-extensions: '>=4.0.0'
url: https://conda.anaconda.org/conda-forge/noarch/annotated-types-0.6.0-pyhd8ed1ab_0.conda
hash:
md5: 997c29372bdbe2afee073dff71f35923
sha256: 3a2c98154d95cfd54daba6b7d507d31f5ba07ac2ad955c44eb041b66563193cd
category: main
optional: false
- name: anyio
version: 4.2.0
manager: conda
platform: linux-64
dependencies:
exceptiongroup: '>=1.0.2'
idna: '>=2.8'
python: '>=3.8'
sniffio: '>=1.1'
typing_extensions: '>=4.1'
url: https://conda.anaconda.org/conda-forge/noarch/anyio-4.2.0-pyhd8ed1ab_0.conda
hash:
md5: 81ce9f3d9697b534d95118bb86c8a07e
sha256: 68458e31bdf3334f0e85f08767718ca9bc35bc2a79a6c503942ac99da98e510a
category: main
optional: false
- name: appdirs
version: 1.4.4
manager: conda
platform: linux-64
dependencies:
python: ''
url: https://conda.anaconda.org/conda-forge/noarch/appdirs-1.4.4-pyh9f0ad1d_0.tar.bz2
hash:
md5: 5f095bc6454094e96f146491fd03633b
sha256: ae9fb8f68281f84482f2c234379aa12405a9e365151d43af20b3ae1f17312111
category: main
optional: false
- name: argon2-cffi
version: 23.1.0
manager: conda
platform: linux-64
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
category: main
optional: false
- name: argon2-cffi-bindings
version: 21.2.0
manager: conda
platform: linux-64
dependencies:
cffi: '>=1.0.1'
libgcc-ng: '>=12'
python: '>=3.9,<3.10.0a0'
python_abi: 3.9.*
url: https://conda.anaconda.org/conda-forge/linux-64/argon2-cffi-bindings-21.2.0-py39hd1e30aa_4.conda
hash:
md5: 6a04738e75f877b68552fc19cb045233
sha256: 63c6f462a18e655e6c5fe4e433ac94100bca1a076e5bb5382c2479ac7a42fd54
category: main
optional: false
- name: arrow
version: 1.3.0
manager: conda
platform: linux-64
dependencies:
python: '>=3.8'
python-dateutil: '>=2.7.0'
types-python-dateutil: '>=2.8.10'
url: https://conda.anaconda.org/conda-forge/noarch/arrow-1.3.0-pyhd8ed1ab_0.conda
hash:
md5: b77d8c2313158e6e461ca0efb1c2c508
sha256: ff49825c7f9e29e09afa6284300810e7a8640d621740efb47c4541f4dc4969db
category: main
optional: false
- name: asttokens
version: 2.4.1
manager: conda
platform: linux-64
dependencies:
python: '>=3.5'
six: '>=1.12.0'
url: https://conda.anaconda.org/conda-forge/noarch/asttokens-2.4.1-pyhd8ed1ab_0.conda
hash:
md5: 5f25798dcefd8252ce5f9dc494d5f571
sha256: 708168f026df19a0344983754d27d1f7b28bb21afc7b97a82f02c4798a3d2111
category: main
optional: false
- name: async-lru
version: 2.0.4
manager: conda
platform: linux-64
dependencies:
python: '>=3.8'
typing_extensions: '>=4.0.0'
url: https://conda.anaconda.org/conda-forge/noarch/async-lru-2.0.4-pyhd8ed1ab_0.conda
hash:
md5: 3d081de3a6ea9f894bbb585e8e3a4dcb
sha256: 7ed83731979fe5b046c157730e50af0e24454468bbba1ed8fc1a3107db5d7518
category: main
optional: false
- name: attrs
version: 23.2.0
manager: conda
platform: linux-64
dependencies:
python: '>=3.7'
url: https://conda.anaconda.org/conda-forge/noarch/attrs-23.2.0-pyh71513ae_0.conda
hash:
md5: 5e4c0743c70186509d1412e03c2d8dfa
sha256: 77c7d03bdb243a048fff398cedc74327b7dc79169ebe3b4c8448b0331ea55fea
category: main
optional: false
- name: babel
version: 2.14.0
manager: conda
platform: linux-64
dependencies:
python: '>=3.7'
pytz: ''
setuptools: ''
url: https://conda.anaconda.org/conda-forge/noarch/babel-2.14.0-pyhd8ed1ab_0.conda
hash:
md5: 9669586875baeced8fc30c0826c3270e
sha256: 8584e3da58e92b72641c89ff9b98c51f0d5dbe76e527867804cbdf03ac91d8e6
category: main
optional: false
- name: beautifulsoup4
version: 4.12.3
manager: conda
platform: linux-64
dependencies:
python: '>=3.6'
soupsieve: '>=1.2'
url: https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.12.3-pyha770c72_0.conda
hash:
md5: 332493000404d8411859539a5a630865
sha256: 7b05b2d0669029326c623b9df7a29fa49d1982a9e7e31b2fea34b4c9a4a72317
category: main
optional: false
- name: bleach
version: 6.1.0
manager: conda
platform: linux-64
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
category: main
optional: false
- name: brotli-python
version: 1.1.0
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
libstdcxx-ng: '>=12'
python: '>=3.9,<3.10.0a0'
python_abi: 3.9.*
url: https://conda.anaconda.org/conda-forge/linux-64/brotli-python-1.1.0-py39h3d6467e_1.conda
hash:
md5: c48418c8b35f1d59ae9ae1174812b40a
sha256: e22afb19527a93da24c1108c3e91532811f9c3df64a9473989faf332c98af082
category: main
optional: false
- name: bzip2
version: 1.0.8
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-hd590300_5.conda
hash:
md5: 69b8b6202a07720f448be700e300ccf4
sha256: 242c0c324507ee172c0e0dd2045814e746bb303d1eb78870d182ceb0abc726a8
category: main
optional: false
- name: ca-certificates
version: 2023.11.17
manager: conda
platform: linux-64
dependencies: {}
url: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2023.11.17-hbcca054_0.conda
hash:
md5: 01ffc8d36f9eba0ce0b3c1955fa780ee
sha256: fb4b9f4b7d885002db0b93e22f44b5b03791ef3d4efdc9d0662185a0faafd6b6
category: main
optional: false
- name: cachecontrol
version: 0.13.1
manager: conda
platform: linux-64
dependencies:
msgpack-python: '>=0.5.2'
python: '>=3.7'
requests: '>=2.16.0'
url: https://conda.anaconda.org/conda-forge/noarch/cachecontrol-0.13.1-pyhd8ed1ab_0.conda
hash:
md5: 174bd699bb5aa9e2622eb4b288276ff8
sha256: aae7ab3a54989f9bf9273e4a17c911ba339a8b9354250bc11fb8eff2e3f4be60
category: main
optional: false
- name: cachecontrol-with-filecache
version: 0.13.1
manager: conda
platform: linux-64
dependencies:
cachecontrol: 0.13.1
filelock: '>=3.8.0'
python: '>=3.7'
url: https://conda.anaconda.org/conda-forge/noarch/cachecontrol-with-filecache-0.13.1-pyhd8ed1ab_0.conda
hash:
md5: 8c4781ca0893cff3a64423954ce234a1
sha256: 7fd3cd4a667da284ae3aad9b8cb4d592099bc02ed6566cbae00bd8c0b0604e85
category: main
optional: false
- name: cached-property
version: 1.5.2
manager: conda
platform: linux-64
dependencies:
cached_property: '>=1.5.2,<1.5.3.0a0'
url: https://conda.anaconda.org/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2
hash:
md5: 9b347a7ec10940d3f7941ff6c460b551
sha256: 561e6660f26c35d137ee150187d89767c988413c978e1b712d53f27ddf70ea17
category: main
optional: false
- name: cached_property
version: 1.5.2
manager: conda
platform: linux-64
dependencies:
python: '>=3.6'
url: https://conda.anaconda.org/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2
hash:
md5: 576d629e47797577ab0f1b351297ef4a
sha256: 6dbf7a5070cc43d90a1e4c2ec0c541c69d8e30a0e25f50ce9f6e4a432e42c5d7
category: main
optional: false
- name: cachy
version: 0.3.0
manager: conda
platform: linux-64
dependencies:
python: '>=3.6'
url: https://conda.anaconda.org/conda-forge/noarch/cachy-0.3.0-pyhd8ed1ab_1.tar.bz2
hash:
md5: 5dfee17f24e2dfd18d7392b48c9351e2
sha256: 9b193a4e483c4d0004bc5b88fac7a02516b6311137ab61b8db85aa9741422e35
category: main
optional: false
- name: certifi
version: 2023.11.17
manager: conda
platform: linux-64
dependencies:
python: '>=3.7'
url: https://conda.anaconda.org/conda-forge/noarch/certifi-2023.11.17-pyhd8ed1ab_0.conda
hash:
md5: 2011bcf45376341dd1d690263fdbc789
sha256: afa22b77128a812cb57bc707c297d926561bd225a3d9dd74205d87a3b2d14a96
category: main
optional: false
- name: cffi
version: 1.16.0
manager: conda
platform: linux-64
dependencies:
libffi: '>=3.4,<4.0a0'
libgcc-ng: '>=12'
pycparser: ''
python: '>=3.9,<3.10.0a0'
python_abi: 3.9.*
url: https://conda.anaconda.org/conda-forge/linux-64/cffi-1.16.0-py39h7a31438_0.conda
hash:
md5: ac992767d7f8ed2cb27e71e78f0fb2d7
sha256: 1536a2ca65caaf568bbdfe75aff8e12cb0e0507587b25af3b532a8bd22cb3ddb
category: main
optional: false
- name: charset-normalizer
version: 3.3.2
manager: conda
platform: linux-64
dependencies:
python: '>=3.7'
url: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.3.2-pyhd8ed1ab_0.conda
hash:
md5: 7f4a9e3fcff3f6356ae99244a014da6a
sha256: 20cae47d31fdd58d99c4d2e65fbdcefa0b0de0c84e455ba9d6356a4bdbc4b5b9
category: main
optional: false
- name: click
version: 8.1.7
manager: conda
platform: linux-64
dependencies:
__unix: ''
python: '>=3.8'
url: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_0.conda
hash:
md5: f3ad426304898027fc619827ff428eca
sha256: f0016cbab6ac4138a429e28dbcb904a90305b34b3fe41a9b89d697c90401caec
category: main
optional: false
- name: click-default-group
version: 1.2.4
manager: conda
platform: linux-64
dependencies:
click: ''
python: '>=2.7'
url: https://conda.anaconda.org/conda-forge/noarch/click-default-group-1.2.4-pyhd8ed1ab_0.conda
hash:
md5: 7c2b6931f9b3548ed78478332095c3e9
sha256: b36e35d735ddd29d7c592eb3de4b3979e13a9f76f1b4bc939f2cb4402758d6d0
category: main
optional: false
- name: clikit
version: 0.6.2
manager: conda
platform: linux-64
dependencies:
pastel: '>=0.2.0,<0.3.0'
pylev: '>=1.3,<2.0'
python: '>=3.7'
url: https://conda.anaconda.org/conda-forge/noarch/clikit-0.6.2-pyhd8ed1ab_2.conda
hash:
md5: 02abb7b66b02e8b9f5a9b05454400087
sha256: 2d582bc15d9116ec5467b565fb87d9034c8b56f60943e8eb69407f55f1ab5a78
category: main
optional: false
- name: comm
version: 0.2.1
manager: conda
platform: linux-64
dependencies:
python: '>=3.6'
traitlets: '>=5.3'
url: https://conda.anaconda.org/conda-forge/noarch/comm-0.2.1-pyhd8ed1ab_0.conda
hash:
md5: f4385072f4909bc974f6675a36e76796
sha256: bd90a200e6f7092a89f02c4800729a4a6d2b2de49d70a9706aeb083a635308c1
category: main
optional: false
- name: conda-lock
version: 2.5.2
manager: conda
platform: linux-64
dependencies:
cachecontrol-with-filecache: '>=0.12.9'
cachy: '>=0.3.0'
click: '>=8.0'
click-default-group: ''
clikit: '>=0.6.2'
crashtest: '>=0.3.0'
ensureconda: '>=1.3'
gitpython: '>=3.1.30'
html5lib: '>=1.0'
jinja2: ''
keyring: '>=21.2.0'
packaging: '>=20.4'
pkginfo: '>=1.4'
pydantic: '>=1.10'
python: '>=3.8'
pyyaml: '>=5.1'
requests: '>=2.18'
ruamel.yaml: ''
tomli: ''
tomlkit: '>=0.7.0'
toolz: '>=0.12.0,<1.0.0'
typing_extensions: ''
urllib3: '>=1.26.5,<2.0'
virtualenv: '>=20.0.26'
url: https://conda.anaconda.org/conda-forge/noarch/conda-lock-2.5.2-pyhd8ed1ab_0.conda
hash:
md5: d6baaae288878d5199f3cd4587d4fe6d
sha256: 11d6d64d13918e8fb14c7fcbe79da7d8f18951a16e5c0a9bc9dcf7b4cb60b6ac
category: main
optional: false
- name: crashtest
version: 0.4.1
manager: conda
platform: linux-64
dependencies:
python: '>=3.6,<4.0'
url: https://conda.anaconda.org/conda-forge/noarch/crashtest-0.4.1-pyhd8ed1ab_0.tar.bz2
hash:
md5: 709a2295dd907bb34afb57d54320642f
sha256: 2f05954a3faf0700c14c1deddc085385160ee32abe111699c78d9cb277e915cc
category: main
optional: false
- name: cryptography
version: 41.0.7
manager: conda
platform: linux-64
dependencies:
cffi: '>=1.12'
libgcc-ng: '>=12'
openssl: '>=3.1.4,<4.0a0'
python: '>=3.9,<3.10.0a0'
python_abi: 3.9.*
url: https://conda.anaconda.org/conda-forge/linux-64/cryptography-41.0.7-py39he6105cc_1.conda
hash:
md5: c2503c6b2505714dd30d50717efe1826
sha256: 704b189699c8eae0dff8b3d0886fb3ef5316b221676ee5d79d44575073bc9296
category: main
optional: false
- name: dbus
version: 1.13.6
manager: conda
platform: linux-64
dependencies:
expat: '>=2.4.2,<3.0a0'
libgcc-ng: '>=9.4.0'
libglib: '>=2.70.2,<3.0a0'
url: https://conda.anaconda.org/conda-forge/linux-64/dbus-1.13.6-h5008d03_3.tar.bz2
hash:
md5: ecfff944ba3960ecb334b9a2663d708d
sha256: 8f5f995699a2d9dbdd62c61385bfeeb57c82a681a7c8c5313c395aa0ccab68a5
category: main
optional: false
- name: debugpy
version: 1.8.0
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
libstdcxx-ng: '>=12'
python: '>=3.9,<3.10.0a0'
python_abi: 3.9.*
url: https://conda.anaconda.org/conda-forge/linux-64/debugpy-1.8.0-py39h3d6467e_1.conda
hash:
md5: 31e04f8c5eebb5306793482b5e0f8a78
sha256: 804a293cdea90c8e95eb03ce2dfef14b0118c65fae9aff4326d8ce5e9a09bd7d
category: main
optional: false
- name: decorator
version: 5.1.1
manager: conda
platform: linux-64
dependencies:
python: '>=3.5'
url: https://conda.anaconda.org/conda-forge/noarch/decorator-5.1.1-pyhd8ed1ab_0.tar.bz2
hash:
md5: 43afe5ab04e35e17ba28649471dd7364
sha256: 328a6a379f9bdfd0230e51de291ce858e6479411ea4b0545fb377c71662ef3e2
category: main
optional: false
- name: defusedxml
version: 0.7.1
manager: conda
platform: linux-64
dependencies:
python: '>=3.6'
url: https://conda.anaconda.org/conda-forge/noarch/defusedxml-0.7.1-pyhd8ed1ab_0.tar.bz2
hash:
md5: 961b3a227b437d82ad7054484cfa71b2
sha256: 9717a059677553562a8f38ff07f3b9f61727bd614f505658b0a5ecbcf8df89be
category: main
optional: false
- name: distlib
version: 0.3.8
manager: conda
platform: linux-64
dependencies:
python: 2.7|>=3.6
url: https://conda.anaconda.org/conda-forge/noarch/distlib-0.3.8-pyhd8ed1ab_0.conda
hash:
md5: db16c66b759a64dc5183d69cc3745a52
sha256: 3ff11acdd5cc2f80227682966916e878e45ced94f59c402efb94911a5774e84e
category: main
optional: false
- name: docutils
version: 0.20.1
manager: conda
platform: linux-64
dependencies:
python: '>=3.9,<3.10.0a0'
python_abi: 3.9.*
url: https://conda.anaconda.org/conda-forge/linux-64/docutils-0.20.1-py39hf3d152e_3.conda
hash:
md5: 09a48956e1c155907fd0d626f3e80f2e
sha256: fe2b7316146a73a33fd16c637e6e82c2638e91d1b8c95560b9c477a6f3082b6d
category: main
optional: false
- name: ensureconda
version: 1.4.3
manager: conda
platform: linux-64
dependencies:
appdirs: ''
click: '>=5.1'
filelock: ''
python: '>=3.7'
requests: '>=2'
url: https://conda.anaconda.org/conda-forge/noarch/ensureconda-1.4.3-pyhd8ed1ab_0.tar.bz2
hash:
md5: c99ae3abf501990769047b4b40a98f17
sha256: b71784b6c24d2320b2f796d074e75e7dd1be7b7fc0f719c5cf3a582270b368d6
category: main
optional: false
- name: entrypoints
version: '0.4'
manager: conda
platform: linux-64
dependencies:
python: '>=3.6'
url: https://conda.anaconda.org/conda-forge/noarch/entrypoints-0.4-pyhd8ed1ab_0.tar.bz2
hash:
md5: 3cf04868fee0a029769bd41f4b2fbf2d
sha256: 2ec4a0900a4a9f42615fc04d0fb3286b796abe56590e8e042f6ec25e102dd5af
category: main
optional: false
- name: exceptiongroup
version: 1.2.0
manager: conda
platform: linux-64
dependencies:
python: '>=3.7'
url: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.2.0-pyhd8ed1ab_2.conda
hash:
md5: 8d652ea2ee8eaee02ed8dc820bc794aa
sha256: a6ae416383bda0e3ed14eaa187c653e22bec94ff2aa3b56970cdf0032761e80d
category: main
optional: false
- name: executing
version: 2.0.1
manager: conda
platform: linux-64
dependencies:
python: '>=2.7'
url: https://conda.anaconda.org/conda-forge/noarch/executing-2.0.1-pyhd8ed1ab_0.conda
hash:
md5: e16be50e378d8a4533b989035b196ab8
sha256: c738804ab1e6376f8ea63372229a04c8d658dc90fd5a218c6273a2eaf02f4057
category: main
optional: false
- name: expat
version: 2.5.0
manager: conda
platform: linux-64
dependencies:
libexpat: 2.5.0
libgcc-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/expat-2.5.0-hcb278e6_1.conda
hash:
md5: 8b9b5aca60558d02ddaa09d599e55920
sha256: 36dfeb4375059b3bba75ce9b38c29c69fd257342a79e6cf20e9f25c1523f785f
category: main
optional: false
- name: filelock
version: 3.13.1
manager: conda
platform: linux-64
dependencies:
python: '>=3.7'
url: https://conda.anaconda.org/conda-forge/noarch/filelock-3.13.1-pyhd8ed1ab_0.conda
hash:
md5: 0c1729b74a8152fde6a38ba0a2ab9f45
sha256: 4d742d91412d1f163e5399d2b50c5d479694ebcd309127abb549ca3977f89d2b
category: main
optional: false
- name: fqdn
version: 1.5.1
manager: conda
platform: linux-64
dependencies:
cached-property: '>=1.3.0'
python: '>=2.7,<4'
url: https://conda.anaconda.org/conda-forge/noarch/fqdn-1.5.1-pyhd8ed1ab_0.tar.bz2
hash:
md5: 642d35437078749ef23a5dca2c9bb1f3
sha256: 6cfd1f9bcd2358a69fb571f4b3af049b630d52647d906822dbedac03e84e4f63
category: main
optional: false
- name: gettext
version: 0.21.1
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/gettext-0.21.1-h27087fc_0.tar.bz2
hash:
md5: 14947d8770185e5153fdd04d4673ed37
sha256: 4fcfedc44e4c9a053f0416f9fc6ab6ed50644fca3a761126dbd00d09db1f546a
category: main
optional: false
- name: gitdb
version: 4.0.11
manager: conda
platform: linux-64
dependencies:
python: '>=3.7'
smmap: '>=3.0.1,<6'
url: https://conda.anaconda.org/conda-forge/noarch/gitdb-4.0.11-pyhd8ed1ab_0.conda
hash:
md5: 623b19f616f2ca0c261441067e18ae40
sha256: 52ab2798be31b8f509eeec458712f447ced4f96ecb672c6c9a42778f47e07b1b
category: main
optional: false
- name: gitpython
version: 3.1.41
manager: conda
platform: linux-64
dependencies:
gitdb: '>=4.0.1,<5'
python: '>=3.7'
typing_extensions: '>=3.7.4.3'
url: https://conda.anaconda.org/conda-forge/noarch/gitpython-3.1.41-pyhd8ed1ab_0.conda
hash:
md5: 84874a90c312088f7b5e63402fc44a58
sha256: cf3c45156feec1fe8adfd3552ed70f4218e9771643cca8dd2673bca9dea04c9c
category: main
optional: false
- name: gmp
version: 6.3.0
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
libstdcxx-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/gmp-6.3.0-h59595ed_0.conda
hash:
md5: 0e33ef437202db431aa5a928248cf2e8
sha256: 2a50495b6bbbacb03107ea0b752d8358d4a40b572d124a8cade068c147f344f5
category: main
optional: false
- name: html5lib
version: '1.1'
manager: conda
platform: linux-64
dependencies:
python: ''
six: '>=1.9'
webencodings: ''
url: https://conda.anaconda.org/conda-forge/noarch/html5lib-1.1-pyh9f0ad1d_0.tar.bz2
hash:
md5: b2355343d6315c892543200231d7154a
sha256: 9ad06446fe9847e86cb20d220bf11614afcd2cbe9f58096f08d5d4018877bee4
category: main
optional: false
- name: idna
version: '3.6'
manager: conda
platform: linux-64
dependencies:
python: '>=3.6'
url: https://conda.anaconda.org/conda-forge/noarch/idna-3.6-pyhd8ed1ab_0.conda
hash:
md5: 1a76f09108576397c41c0b0c5bd84134
sha256: 6ee4c986d69ce61e60a20b2459b6f2027baeba153f0a64995fd3cb47c2cc7e07
category: main
optional: false
- name: importlib-metadata
version: 7.0.1
manager: conda
platform: linux-64
dependencies:
python: '>=3.8'
zipp: '>=0.5'
url: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-7.0.1-pyha770c72_0.conda
hash:
md5: 746623a787e06191d80a2133e5daff17
sha256: e72d05f171f4567004c9360a838e9d5df21e23dcfeb945066b53a6e5f754b861
category: main
optional: false
- name: importlib_metadata
version: 7.0.1
manager: conda
platform: linux-64
dependencies:
importlib-metadata: '>=7.0.1,<7.0.2.0a0'
url: https://conda.anaconda.org/conda-forge/noarch/importlib_metadata-7.0.1-hd8ed1ab_0.conda
hash:
md5: 4a2f43a20fa404b998859c6a470ba316
sha256: bc362df1d4f5a04c38dff29cd9c2d0ac584f9c4b45d3e4683ee090944a38fba4
category: main
optional: false
- name: importlib_resources
version: 6.1.1
manager: conda
platform: linux-64
dependencies:
python: '>=3.8'
zipp: '>=3.1.0'
url: https://conda.anaconda.org/conda-forge/noarch/importlib_resources-6.1.1-pyhd8ed1ab_0.conda
hash:
md5: 3d5fa25cf42f3f32a12b2d874ace8574
sha256: e584f9ae08fb2d242af0ce7e19e3cd2f85f362d8523119e08f99edb962db99ed
category: main
optional: false
- name: ipykernel
version: 6.29.0
manager: conda
platform: linux-64
dependencies:
__linux: ''
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: '>=24'
tornado: '>=6.1'
traitlets: '>=5.4.0'
url: https://conda.anaconda.org/conda-forge/noarch/ipykernel-6.29.0-pyhd33586a_0.conda
hash:
md5: 10915bfa94b94f4ad0f347efd124a339
sha256: fa82aa089d474d11e63deb4b433acb9618294fe6b3b08123d7a269f72c0cc8ca
category: main
optional: false
- name: ipython
version: 8.18.1
manager: conda
platform: linux-64
dependencies:
__unix: ''
decorator: ''
exceptiongroup: ''
jedi: '>=0.16'
matplotlib-inline: ''
pexpect: '>4.3'
pickleshare: ''
prompt-toolkit: '>=3.0.41,<3.1.0'
pygments: '>=2.4.0'
python: '>=3.9'
stack_data: ''
traitlets: '>=5'
typing_extensions: ''
url: https://conda.anaconda.org/conda-forge/noarch/ipython-8.18.1-pyh707e725_3.conda
hash:
md5: 15c6f45a45f7ac27f6d60b0b084f6761
sha256: d98d615ac8ad71de698afbc50e8269570d4b89706821c4ff3058a4ceec69bd9b
category: main
optional: false
- name: ipywidgets
version: 8.1.1
manager: conda
platform: linux-64
dependencies:
comm: '>=0.1.3'
ipython: '>=6.1.0'
jupyterlab_widgets: '>=3.0.9,<3.1.0'
python: '>=3.7'
traitlets: '>=4.3.1'
widgetsnbextension: '>=4.0.9,<4.1.0'
url: https://conda.anaconda.org/conda-forge/noarch/ipywidgets-8.1.1-pyhd8ed1ab_0.conda
hash:
md5: 2605fae5ee27100e5f10037baebf4d41
sha256: 8136defec115396ba992273a77f814d74eeafd9cc099f5430d109c60785a7f02
category: main
optional: false
- name: isoduration
version: 20.11.0
manager: conda
platform: linux-64
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
category: main
optional: false
- name: jaraco.classes
version: 3.3.0
manager: conda
platform: linux-64
dependencies:
more-itertools: ''
python: '>=3.7'
url: https://conda.anaconda.org/conda-forge/noarch/jaraco.classes-3.3.0-pyhd8ed1ab_0.conda
hash:
md5: e9f79248d30e942f7c358ff21a1790f5
sha256: 14f5240c3834e1b784dd41a5a14392d9150dff62a74ae851f73e65d2e2bbd891
category: main
optional: false
- name: jedi
version: 0.19.1
manager: conda
platform: linux-64
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
category: main
optional: false
- name: jeepney
version: 0.8.0
manager: conda
platform: linux-64
dependencies:
python: '>=3.7'
url: https://conda.anaconda.org/conda-forge/noarch/jeepney-0.8.0-pyhd8ed1ab_0.tar.bz2
hash:
md5: 9800ad1699b42612478755a2d26c722d
sha256: 16639759b811866d63315fe1391f6fb45f5478b823972f4d3d9f0392b7dd80b8
category: main
optional: false
- name: jinja2
version: 3.1.3
manager: conda
platform: linux-64
dependencies:
markupsafe: '>=2.0'
python: '>=3.7'
url: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.3-pyhd8ed1ab_0.conda
hash:
md5: e7d8df6509ba635247ff9aea31134262
sha256: fd517b7dd3a61eca34f8a6f9f92f306397149cae1204fce72ac3d227107dafdc
category: main
optional: false
- name: json5
version: 0.9.14
manager: conda
platform: linux-64
dependencies:
python: '>=3.7,<4.0'
url: https://conda.anaconda.org/conda-forge/noarch/json5-0.9.14-pyhd8ed1ab_0.conda
hash:
md5: dac1dabba2b5a9d1aee175c5fcc7b436
sha256: 41514104208c092959bef0713cbd795e72c535f2f939b7903d8c97809f2adaa7
category: main
optional: false
- name: jsonpointer
version: '2.4'
manager: conda
platform: linux-64
dependencies:
python: '>=3.9,<3.10.0a0'
python_abi: 3.9.*
url: https://conda.anaconda.org/conda-forge/linux-64/jsonpointer-2.4-py39hf3d152e_3.conda
hash:
md5: 23255e64bc45e9bc0b7d87c108357ce6
sha256: cd6f07324a83678072675e8c0720558c807682466181f33eb4d2de03aa8bff49
category: main
optional: false
- name: jsonschema
version: 4.21.1
manager: conda
platform: linux-64
dependencies:
attrs: '>=22.2.0'
importlib_resources: '>=1.4.0'
jsonschema-specifications: '>=2023.03.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.21.1-pyhd8ed1ab_0.conda
hash:
md5: 8a3a3d01629da20befa340919e3dd2c4
sha256: c5c1b4e08e91fdd697289015be1a176409b4e63942899a43b276f1f250be8129
category: main
optional: false
- name: jsonschema-specifications
version: 2023.12.1
manager: conda
platform: linux-64
dependencies:
importlib_resources: '>=1.4.0'
python: '>=3.8'
referencing: '>=0.31.0'
url: https://conda.anaconda.org/conda-forge/noarch/jsonschema-specifications-2023.12.1-pyhd8ed1ab_0.conda
hash:
md5: a0e4efb5f35786a05af4809a2fb1f855
sha256: a9630556ddc3121c0be32f4cbf792dd9102bd380d5cd81d57759d172cf0c2da2
category: main
optional: false
- name: jsonschema-with-format-nongpl
version: 4.21.1
manager: conda
platform: linux-64
dependencies:
fqdn: ''
idna: ''
isoduration: ''
jsonpointer: '>1.13'
jsonschema: '>=4.21.1,<4.21.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.21.1-pyhd8ed1ab_0.conda
hash:
md5: 26bce4b5405738c09304d4f4796b2c2a
sha256: 6e458c325c097956ac4605ef386f0d67bad5223041cedd66819892988b72f83a
category: main
optional: false
- name: jupyter
version: 1.0.0
manager: conda
platform: linux-64
dependencies:
ipykernel: ''
ipywidgets: ''
jupyter_console: ''
nbconvert: ''
notebook: ''
python: '>=3.6'
qtconsole-base: ''
url: https://conda.anaconda.org/conda-forge/noarch/jupyter-1.0.0-pyhd8ed1ab_10.conda
hash:
md5: 056b8cc3d9b03f54fc49e6d70d7dc359
sha256: 308b521b149e7a1739f717538b929bc2d87b9001b94f13ee8baa939632a86150
category: main
optional: false
- name: jupyter-lsp
version: 2.2.2
manager: conda
platform: linux-64
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.2-pyhd8ed1ab_0.conda
hash:
md5: ed56b103cac2db68f22909e9f5cca6b6
sha256: d8ab253be3df67be1b31fe040a8386e071ff065ef4442b94a722a45fa3562fbe
category: main
optional: false
- name: jupyter_client
version: 8.6.0
manager: conda
platform: linux-64
dependencies: