sl-shared-assets 1.0.0rc20__tar.gz → 1.0.0rc21__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of sl-shared-assets might be problematic. Click here for more details.

Files changed (58) hide show
  1. {sl_shared_assets-1.0.0rc20 → sl_shared_assets-1.0.0rc21}/PKG-INFO +21 -4
  2. {sl_shared_assets-1.0.0rc20 → sl_shared_assets-1.0.0rc21}/README.md +13 -0
  3. {sl_shared_assets-1.0.0rc20 → sl_shared_assets-1.0.0rc21}/docs/source/api.rst +24 -15
  4. {sl_shared_assets-1.0.0rc20 → sl_shared_assets-1.0.0rc21}/docs/source/conf.py +4 -4
  5. {sl_shared_assets-1.0.0rc20 → sl_shared_assets-1.0.0rc21}/docs/source/welcome.rst +2 -2
  6. {sl_shared_assets-1.0.0rc20 → sl_shared_assets-1.0.0rc21}/envs/slsa_dev_lin.yml +106 -42
  7. {sl_shared_assets-1.0.0rc20 → sl_shared_assets-1.0.0rc21}/envs/slsa_dev_lin_spec.txt +364 -0
  8. {sl_shared_assets-1.0.0rc20 → sl_shared_assets-1.0.0rc21}/pyproject.toml +16 -7
  9. {sl_shared_assets-1.0.0rc20 → sl_shared_assets-1.0.0rc21}/src/sl_shared_assets/__init__.py +27 -27
  10. {sl_shared_assets-1.0.0rc20 → sl_shared_assets-1.0.0rc21}/src/sl_shared_assets/__init__.pyi +24 -22
  11. sl_shared_assets-1.0.0rc21/src/sl_shared_assets/cli.py +337 -0
  12. sl_shared_assets-1.0.0rc21/src/sl_shared_assets/cli.pyi +87 -0
  13. {sl_shared_assets-1.0.0rc20 → sl_shared_assets-1.0.0rc21}/src/sl_shared_assets/data_classes/__init__.py +23 -20
  14. {sl_shared_assets-1.0.0rc20 → sl_shared_assets-1.0.0rc21}/src/sl_shared_assets/data_classes/__init__.pyi +18 -18
  15. sl_shared_assets-1.0.0rc21/src/sl_shared_assets/data_classes/configuration_data.py +445 -0
  16. sl_shared_assets-1.0.0rc21/src/sl_shared_assets/data_classes/configuration_data.pyi +194 -0
  17. {sl_shared_assets-1.0.0rc20 → sl_shared_assets-1.0.0rc21}/src/sl_shared_assets/data_classes/runtime_data.py +49 -43
  18. {sl_shared_assets-1.0.0rc20 → sl_shared_assets-1.0.0rc21}/src/sl_shared_assets/data_classes/runtime_data.pyi +37 -40
  19. sl_shared_assets-1.0.0rc21/src/sl_shared_assets/data_classes/session_data.py +601 -0
  20. sl_shared_assets-1.0.0rc21/src/sl_shared_assets/data_classes/session_data.pyi +249 -0
  21. {sl_shared_assets-1.0.0rc20 → sl_shared_assets-1.0.0rc21}/src/sl_shared_assets/data_classes/surgery_data.py +3 -3
  22. {sl_shared_assets-1.0.0rc20 → sl_shared_assets-1.0.0rc21}/src/sl_shared_assets/data_classes/surgery_data.pyi +2 -2
  23. {sl_shared_assets-1.0.0rc20 → sl_shared_assets-1.0.0rc21}/src/sl_shared_assets/tools/__init__.py +8 -1
  24. sl_shared_assets-1.0.0rc21/src/sl_shared_assets/tools/__init__.pyi +15 -0
  25. {sl_shared_assets-1.0.0rc20 → sl_shared_assets-1.0.0rc21}/src/sl_shared_assets/tools/ascension_tools.py +27 -26
  26. {sl_shared_assets-1.0.0rc20 → sl_shared_assets-1.0.0rc21}/src/sl_shared_assets/tools/ascension_tools.pyi +5 -5
  27. {sl_shared_assets-1.0.0rc20 → sl_shared_assets-1.0.0rc21}/src/sl_shared_assets/tools/packaging_tools.py +14 -1
  28. {sl_shared_assets-1.0.0rc20 → sl_shared_assets-1.0.0rc21}/src/sl_shared_assets/tools/packaging_tools.pyi +4 -0
  29. sl_shared_assets-1.0.0rc21/src/sl_shared_assets/tools/project_management_tools.py +164 -0
  30. sl_shared_assets-1.0.0rc21/src/sl_shared_assets/tools/project_management_tools.pyi +48 -0
  31. sl_shared_assets-1.0.0rc20/src/sl_shared_assets/cli.py +0 -111
  32. sl_shared_assets-1.0.0rc20/src/sl_shared_assets/cli.pyi +0 -28
  33. sl_shared_assets-1.0.0rc20/src/sl_shared_assets/data_classes/configuration_data.py +0 -64
  34. sl_shared_assets-1.0.0rc20/src/sl_shared_assets/data_classes/configuration_data.pyi +0 -37
  35. sl_shared_assets-1.0.0rc20/src/sl_shared_assets/data_classes/session_data.py +0 -1347
  36. sl_shared_assets-1.0.0rc20/src/sl_shared_assets/data_classes/session_data.pyi +0 -544
  37. sl_shared_assets-1.0.0rc20/src/sl_shared_assets/suite2p/__init__.py +0 -8
  38. sl_shared_assets-1.0.0rc20/src/sl_shared_assets/suite2p/__init__.pyi +0 -4
  39. sl_shared_assets-1.0.0rc20/src/sl_shared_assets/suite2p/multi_day.py +0 -224
  40. sl_shared_assets-1.0.0rc20/src/sl_shared_assets/suite2p/multi_day.pyi +0 -104
  41. sl_shared_assets-1.0.0rc20/src/sl_shared_assets/suite2p/single_day.py +0 -564
  42. sl_shared_assets-1.0.0rc20/src/sl_shared_assets/suite2p/single_day.pyi +0 -220
  43. sl_shared_assets-1.0.0rc20/src/sl_shared_assets/tools/__init__.pyi +0 -5
  44. {sl_shared_assets-1.0.0rc20 → sl_shared_assets-1.0.0rc21}/.gitignore +0 -0
  45. {sl_shared_assets-1.0.0rc20 → sl_shared_assets-1.0.0rc21}/LICENSE +0 -0
  46. {sl_shared_assets-1.0.0rc20 → sl_shared_assets-1.0.0rc21}/docs/Makefile +0 -0
  47. {sl_shared_assets-1.0.0rc20 → sl_shared_assets-1.0.0rc21}/docs/make.bat +0 -0
  48. {sl_shared_assets-1.0.0rc20 → sl_shared_assets-1.0.0rc21}/docs/source/index.rst +0 -0
  49. {sl_shared_assets-1.0.0rc20 → sl_shared_assets-1.0.0rc21}/src/sl_shared_assets/py.typed +0 -0
  50. {sl_shared_assets-1.0.0rc20 → sl_shared_assets-1.0.0rc21}/src/sl_shared_assets/server/__init__.py +0 -0
  51. {sl_shared_assets-1.0.0rc20 → sl_shared_assets-1.0.0rc21}/src/sl_shared_assets/server/__init__.pyi +0 -0
  52. {sl_shared_assets-1.0.0rc20 → sl_shared_assets-1.0.0rc21}/src/sl_shared_assets/server/job.py +0 -0
  53. {sl_shared_assets-1.0.0rc20 → sl_shared_assets-1.0.0rc21}/src/sl_shared_assets/server/job.pyi +0 -0
  54. {sl_shared_assets-1.0.0rc20 → sl_shared_assets-1.0.0rc21}/src/sl_shared_assets/server/server.py +0 -0
  55. {sl_shared_assets-1.0.0rc20 → sl_shared_assets-1.0.0rc21}/src/sl_shared_assets/server/server.pyi +0 -0
  56. {sl_shared_assets-1.0.0rc20 → sl_shared_assets-1.0.0rc21}/src/sl_shared_assets/tools/transfer_tools.py +0 -0
  57. {sl_shared_assets-1.0.0rc20 → sl_shared_assets-1.0.0rc21}/src/sl_shared_assets/tools/transfer_tools.pyi +0 -0
  58. {sl_shared_assets-1.0.0rc20 → sl_shared_assets-1.0.0rc21}/tox.ini +0 -0
@@ -1,10 +1,10 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: sl-shared-assets
3
- Version: 1.0.0rc20
3
+ Version: 1.0.0rc21
4
4
  Summary: Stores assets shared between multiple Sun (NeuroAI) lab data pipelines.
5
5
  Project-URL: Homepage, https://github.com/Sun-Lab-NBB/sl-shared-assets
6
6
  Project-URL: Documentation, https://sl-shared-assets-api-docs.netlify.app/
7
- Author: Ivan Kondratyev, Kushaan Gupta, Yuantao Deng
7
+ Author: Ivan Kondratyev, Kushaan Gupta, Yuantao Deng, Natalie Yeung
8
8
  Maintainer-email: Ivan Kondratyev <ik278@cornell.edu>
9
9
  License: GNU GENERAL PUBLIC LICENSE
10
10
  Version 3, 29 June 2007
@@ -695,8 +695,10 @@ Requires-Dist: ataraxis-base-utilities<4,>=3
695
695
  Requires-Dist: ataraxis-data-structures<4,>=3.1.1
696
696
  Requires-Dist: ataraxis-time<4,>=3
697
697
  Requires-Dist: click<9,>=8
698
- Requires-Dist: dacite<2,>=1
698
+ Requires-Dist: natsort<9,>=8
699
699
  Requires-Dist: paramiko<4,>=3.5.1
700
+ Requires-Dist: polars<2,>=1
701
+ Requires-Dist: pyarrow<21,>=20
700
702
  Requires-Dist: simple-slurm<1,>=0
701
703
  Requires-Dist: tqdm<5,>=4
702
704
  Requires-Dist: xxhash<4,>=3
@@ -717,8 +719,10 @@ Requires-Dist: types-tqdm<5,>=4; extra == 'conda'
717
719
  Provides-Extra: condarun
718
720
  Requires-Dist: appdirs<2,>=1; extra == 'condarun'
719
721
  Requires-Dist: click<9,>=8; extra == 'condarun'
720
- Requires-Dist: dacite<2,>=1; extra == 'condarun'
722
+ Requires-Dist: natsort<9,>=8; extra == 'condarun'
721
723
  Requires-Dist: paramiko<4,>=3.5.1; extra == 'condarun'
724
+ Requires-Dist: polars<2,>=1; extra == 'condarun'
725
+ Requires-Dist: pyarrow<21,>=20; extra == 'condarun'
722
726
  Requires-Dist: tqdm<5,>=4; extra == 'condarun'
723
727
  Provides-Extra: dev
724
728
  Requires-Dist: ataraxis-automation<5,>=4; extra == 'dev'
@@ -781,6 +785,7 @@ acquisition and processing and provides the API for accessing the lab’s main c
781
785
 
782
786
  - [Dependencies](#dependencies)
783
787
  - [Installation](#installation)
788
+ - [Usage](#usage)
784
789
  - [API Documentation](#api-documentation)
785
790
  - [Versioning](#versioning)
786
791
  - [Authors](#authors)
@@ -811,11 +816,22 @@ Use the following command to install the library using pip: ```pip install sl-sh
811
816
 
812
817
  ---
813
818
 
819
+ ## Usage
820
+
821
+ All library components are intended to be used via other Sun lab libraries. Developers should study the API and CLI
822
+ documentation below to learn how to use library components in other Sun lab libraries.
823
+
824
+ ---
825
+
814
826
  ## API Documentation
815
827
 
816
828
  See the [API documentation](https://sl-shared-assets-api-docs.netlify.app/) for the
817
829
  detailed description of the methods and classes exposed by components of this library.
818
830
 
831
+ **Note!** The API documentation includes important information about Command-Line-Interfaces (CLIs) exposed by this
832
+ library as part of installation into a Python environment. All users are highly encouraged to study the CLI
833
+ documentation to learn how to use library components via the terminal.
834
+
819
835
  ___
820
836
 
821
837
  ## Versioning
@@ -830,6 +846,7 @@ We use [semantic versioning](https://semver.org/) for this project. For the vers
830
846
  - Ivan Kondratyev ([Inkaros](https://github.com/Inkaros))
831
847
  - Kushaan Gupta ([kushaangupta](https://github.com/kushaangupta))
832
848
  - Yuantao Deng ([YuantaoDeng](https://github.com/YuantaoDeng))
849
+ - Natalie Yeung
833
850
 
834
851
  ___
835
852
 
@@ -30,6 +30,7 @@ acquisition and processing and provides the API for accessing the lab’s main c
30
30
 
31
31
  - [Dependencies](#dependencies)
32
32
  - [Installation](#installation)
33
+ - [Usage](#usage)
33
34
  - [API Documentation](#api-documentation)
34
35
  - [Versioning](#versioning)
35
36
  - [Authors](#authors)
@@ -60,11 +61,22 @@ Use the following command to install the library using pip: ```pip install sl-sh
60
61
 
61
62
  ---
62
63
 
64
+ ## Usage
65
+
66
+ All library components are intended to be used via other Sun lab libraries. Developers should study the API and CLI
67
+ documentation below to learn how to use library components in other Sun lab libraries.
68
+
69
+ ---
70
+
63
71
  ## API Documentation
64
72
 
65
73
  See the [API documentation](https://sl-shared-assets-api-docs.netlify.app/) for the
66
74
  detailed description of the methods and classes exposed by components of this library.
67
75
 
76
+ **Note!** The API documentation includes important information about Command-Line-Interfaces (CLIs) exposed by this
77
+ library as part of installation into a Python environment. All users are highly encouraged to study the CLI
78
+ documentation to learn how to use library components via the terminal.
79
+
68
80
  ___
69
81
 
70
82
  ## Versioning
@@ -79,6 +91,7 @@ We use [semantic versioning](https://semver.org/) for this project. For the vers
79
91
  - Ivan Kondratyev ([Inkaros](https://github.com/Inkaros))
80
92
  - Kushaan Gupta ([kushaangupta](https://github.com/kushaangupta))
81
93
  - Yuantao Deng ([YuantaoDeng](https://github.com/YuantaoDeng))
94
+ - Natalie Yeung
82
95
 
83
96
  ___
84
97
 
@@ -9,16 +9,32 @@ Command Line Interfaces
9
9
  :undoc-members:
10
10
  :show-inheritance:
11
11
 
12
- .. click:: sl_shared_assets.cli:replace_local_root_directory
13
- :prog: sl-replace-root
12
+ .. click:: sl_shared_assets.cli:verify_session_integrity
13
+ :prog: sl-verify-session
14
+ :nested: full
15
+
16
+ .. click:: sl_shared_assets.cli:generate_project_manifest_file
17
+ :prog: sl-project-manifest
18
+ :nested: full
19
+
20
+ .. click:: sl_shared_assets.cli:generate_system_configuration_file
21
+ :prog: sl-create-system-config
14
22
  :nested: full
15
23
 
16
24
  .. click:: sl_shared_assets.cli:generate_server_credentials_file
17
- :prog: sl-generate-credentials
25
+ :prog: sl-create-server-credentials
26
+ :nested: full
27
+
28
+ .. click:: sl_shared_assets.cli:generate_project_configuration_file
29
+ :prog: sl-create-project
30
+ :nested: full
31
+
32
+ .. click:: sl_shared_assets.cli:generate_experiment_configuration_file
33
+ :prog: sl-create-experiment
18
34
  :nested: full
19
35
 
20
36
  .. click:: sl_shared_assets.cli:ascend_tyche_directory
21
- :prog: sl-ascend
37
+ :prog: sl-ascend-tyche
22
38
  :nested: full
23
39
 
24
40
  Tools
@@ -28,22 +44,15 @@ Tools
28
44
  :undoc-members:
29
45
  :show-inheritance:
30
46
 
31
- Suite2P Configuration
32
- =====================
33
- .. automodule:: sl_shared_assets.suite2p
34
- :members:
35
- :undoc-members:
36
- :show-inheritance:
37
-
38
- General Data and Configuration Classes
39
- ======================================
47
+ Data and Configuration Classes
48
+ ==============================
40
49
  .. automodule:: sl_shared_assets.data_classes
41
50
  :members:
42
51
  :undoc-members:
43
52
  :show-inheritance:
44
53
 
45
- Compute Server Tools
46
- ====================
54
+ Server
55
+ ======
47
56
  .. automodule:: sl_shared_assets.server
48
57
  :members:
49
58
  :undoc-members:
@@ -4,8 +4,8 @@ import importlib_metadata
4
4
  # -- Project information -----------------------------------------------------
5
5
  project = 'sl-shared-assets'
6
6
  # noinspection PyShadowingBuiltins
7
- copyright = '2025, Ivan Kondratyev & Sun Lab'
8
- authors = ['Ivan Kondratyev (Inkaros)', 'Kushaan Gupta', 'Yuantao Deng']
7
+ copyright = '2025, Sun (NeuroAI) lab'
8
+ authors = ['Ivan Kondratyev (Inkaros)', 'Kushaan Gupta', 'Yuantao Deng', 'Natalie Yeung']
9
9
  # Extracts the project version from the .toml file.
10
10
  release = importlib_metadata.version("sl-shared-assets")
11
11
 
@@ -26,8 +26,8 @@ exclude_patterns = []
26
26
  napoleon_google_docstring = True
27
27
  napoleon_numpy_docstring = False
28
28
  napoleon_include_init_with_doc = False
29
- napoleon_include_private_with_doc = True
30
- napoleon_include_special_with_doc = True
29
+ napoleon_include_private_with_doc = False
30
+ napoleon_include_special_with_doc = False
31
31
  napoleon_use_admonition_for_examples = False
32
32
  napoleon_use_admonition_for_notes = False
33
33
  napoleon_use_admonition_for_references = False
@@ -4,8 +4,8 @@ Welcome to sl-shared-assets API documentation page
4
4
  sl-shared-assets is a Python library that stores assets shared between multiple Sun (NeuroAI) lab data pipelines.
5
5
 
6
6
  This library is developed in the `Sun lab <https://neuroai.github.io/sunlab/>`_ at Cornell University. The main purpose
7
- of this library is to provide the tools used by multiple other data acquisition nd processing libraries in the lab
8
- to configure their runtime and store experiment data.
7
+ of this library is to provide the tools used by multiple other data acquisition and processing libraries in the lab to
8
+ avoid circular or hierarchical cross-dependencies.
9
9
 
10
10
  This website only contains the API documentation for the classes and methods offered by this library. See the project
11
11
  GitHub repository for installation instructions and library usage examples:
@@ -7,41 +7,62 @@ dependencies:
7
7
  - _python_abi3_support=1.0=hd8ed1ab_2
8
8
  - alabaster=1.0.0=pyhd8ed1ab_1
9
9
  - appdirs=1.4.4=pyhd8ed1ab_1
10
+ - aws-c-auth=0.9.0=h59ae206_7
11
+ - aws-c-cal=0.9.0=h5e3027f_1
12
+ - aws-c-common=0.12.3=hb9d3cd8_0
13
+ - aws-c-compression=0.3.1=hafb2847_5
14
+ - aws-c-event-stream=0.5.4=h2dcaabb_9
15
+ - aws-c-http=0.10.1=hb50fa74_1
16
+ - aws-c-io=0.19.0=h7962f60_2
17
+ - aws-c-mqtt=0.13.0=h35de22e_3
18
+ - aws-c-s3=0.7.17=h50d7d24_2
19
+ - aws-c-sdkutils=0.2.3=hafb2847_5
20
+ - aws-checksums=0.2.7=hafb2847_1
21
+ - aws-crt-cpp=0.32.5=h2811929_3
22
+ - aws-sdk-cpp=1.11.510=hffe9a0f_8
23
+ - azure-core-cpp=1.14.0=h5cfcd09_0
24
+ - azure-identity-cpp=1.10.0=h113e628_0
25
+ - azure-storage-blobs-cpp=12.13.0=h3cf044e_1
26
+ - azure-storage-common-cpp=12.8.0=h736e048_1
27
+ - azure-storage-files-datalake-cpp=12.12.0=ha633028_1
10
28
  - babel=2.17.0=pyhd8ed1ab_0
11
29
  - backports=1.0=pyhd8ed1ab_5
12
30
  - backports.tarfile=1.2.0=pyhd8ed1ab_1
13
31
  - bcrypt=4.3.0=py313h920b4c0_0
14
- - beautifulsoup4=4.13.3=pyha770c72_0
32
+ - beautifulsoup4=4.13.4=pyha770c72_0
15
33
  - brotli-python=1.1.0=py313h46c70d0_2
16
34
  - bzip2=1.0.8=h4bc722e_7
17
- - ca-certificates=2025.1.31=hbcca054_0
35
+ - c-ares=1.34.5=hb9d3cd8_0
36
+ - ca-certificates=2025.4.26=hbd8a1cb_0
18
37
  - cachetools=5.5.2=pyhd8ed1ab_0
19
- - certifi=2025.1.31=pyhd8ed1ab_0
38
+ - certifi=2025.4.26=pyhd8ed1ab_0
20
39
  - cffi=1.17.1=py313hfab6e84_0
21
40
  - chardet=5.2.0=pyhd8ed1ab_3
22
- - charset-normalizer=3.4.1=pyhd8ed1ab_0
23
- - click=8.1.8=pyh707e725_0
41
+ - charset-normalizer=3.4.2=pyhd8ed1ab_0
42
+ - click=8.2.1=pyh707e725_0
24
43
  - cmarkgfm=2024.11.20=py313h536fd9c_0
25
44
  - colorama=0.4.6=pyhd8ed1ab_1
26
45
  - conda-souschef=2.2.3=pyhd8ed1ab_0
27
46
  - cpython=3.13.3=py313hd8ed1ab_101
28
- - cryptography=44.0.2=py313h6556f6e_0
29
- - dbus=1.13.6=h5008d03_3
47
+ - cryptography=45.0.2=py313h6556f6e_0
48
+ - dbus=1.16.2=h3c4dab8_0
30
49
  - distlib=0.3.9=pyhd8ed1ab_1
31
50
  - docutils=0.21.2=pyhd8ed1ab_1
32
51
  - editables=0.5=pyhd8ed1ab_1
33
- - expat=2.7.0=h5888daf_0
34
52
  - filelock=3.18.0=pyhd8ed1ab_0
53
+ - gflags=2.2.2=h5888daf_1005
54
+ - glog=0.7.1=hbabe93e_0
35
55
  - grayskull=2.9.1=pyhd8ed1ab_0
36
56
  - h2=4.2.0=pyhd8ed1ab_0
37
57
  - hatchling=1.27.0=pypyhd8ed1ab_0
38
58
  - hpack=4.1.0=pyhd8ed1ab_0
39
59
  - hyperframe=6.1.0=pyhd8ed1ab_0
60
+ - icu=75.1=he02047a_0
40
61
  - id=1.5.0=pyh29332c3_0
41
62
  - idna=3.10=pyhd8ed1ab_1
42
63
  - imagesize=1.4.1=pyhd8ed1ab_0
43
- - importlib-metadata=8.6.1=pyha770c72_0
44
- - importlib_metadata=8.6.1=hd8ed1ab_0
64
+ - importlib-metadata=8.7.0=pyhe01879c_0
65
+ - importlib_metadata=8.7.0=he374078_0
45
66
  - importlib_resources=6.5.2=pyhd8ed1ab_0
46
67
  - jaraco.classes=3.4.0=pyhd8ed1ab_2
47
68
  - jaraco.context=6.0.1=pyhd8ed1ab_0
@@ -49,58 +70,95 @@ dependencies:
49
70
  - jeepney=0.9.0=pyhd8ed1ab_0
50
71
  - jinja2=3.1.6=pyhd8ed1ab_0
51
72
  - keyring=25.6.0=pyha804496_0
73
+ - keyutils=1.6.1=h166bdaf_0
74
+ - krb5=1.21.3=h659f571_0
52
75
  - ld_impl_linux-64=2.43=h712a8e2_4
76
+ - libabseil=20250127.1=cxx17_hbbce691_0
77
+ - libarrow=20.0.0=hebdba27_3_cpu
78
+ - libarrow-acero=20.0.0=hcb10f89_3_cpu
79
+ - libarrow-dataset=20.0.0=hcb10f89_3_cpu
80
+ - libarrow-substrait=20.0.0=h1bed206_3_cpu
53
81
  - libblas=3.9.0=31_h59b9bed_openblas
82
+ - libbrotlicommon=1.1.0=hb9d3cd8_2
83
+ - libbrotlidec=1.1.0=hb9d3cd8_2
84
+ - libbrotlienc=1.1.0=hb9d3cd8_2
54
85
  - libcblas=3.9.0=31_he106b2a_openblas
86
+ - libcrc32c=1.1.2=h9c3ff4c_0
87
+ - libcurl=8.13.0=h332b0f4_0
88
+ - libedit=3.1.20250104=pl5321h7949ede_0
89
+ - libev=4.33=hd590300_2
90
+ - libevent=2.1.12=hf998b51_1
55
91
  - libexpat=2.7.0=h5888daf_0
56
92
  - libffi=3.4.6=h2dba641_1
57
- - libgcc=14.2.0=h767d61c_2
58
- - libgcc-ng=14.2.0=h69a702a_2
59
- - libgfortran=14.2.0=h69a702a_2
60
- - libgfortran5=14.2.0=hf1ad2bd_2
61
- - libglib=2.84.1=h2ff4ddf_0
62
- - libgomp=14.2.0=h767d61c_2
93
+ - libgcc=15.1.0=h767d61c_2
94
+ - libgcc-ng=15.1.0=h69a702a_2
95
+ - libgfortran=15.1.0=h69a702a_2
96
+ - libgfortran5=15.1.0=hcea5267_2
97
+ - libglib=2.84.2=h3618099_0
98
+ - libgomp=15.1.0=h767d61c_2
99
+ - libgoogle-cloud=2.36.0=hc4361e1_1
100
+ - libgoogle-cloud-storage=2.36.0=h0121fbd_1
101
+ - libgrpc=1.71.0=h8e591d7_1
63
102
  - libiconv=1.18=h4ce23a2_1
64
103
  - liblapack=3.9.0=31_h7ac8fdf_openblas
65
- - liblzma=5.8.1=hb9d3cd8_0
104
+ - liblzma=5.8.1=hb9d3cd8_1
66
105
  - libmpdec=4.0.0=h4bc722e_0
106
+ - libnghttp2=1.64.0=h161d5f1_0
67
107
  - libopenblas=0.3.29=pthreads_h94d23a6_0
108
+ - libopentelemetry-cpp=1.20.0=hd1b1c89_0
109
+ - libopentelemetry-cpp-headers=1.20.0=ha770c72_0
110
+ - libparquet=20.0.0=h081d1f1_3_cpu
111
+ - libprotobuf=5.29.3=h501fc15_1
112
+ - libre2-11=2024.07.02=hba17884_3
68
113
  - libsodium=1.0.20=h4ab18f5_0
69
- - libsqlite=3.49.1=hee588c1_2
70
- - libstdcxx=14.2.0=h8f9b012_2
114
+ - libsqlite=3.49.2=hee588c1_0
115
+ - libssh2=1.11.1=hcf80075_0
116
+ - libstdcxx=15.1.0=h8f9b012_2
117
+ - libstdcxx-ng=15.1.0=h4852527_2
118
+ - libthrift=0.21.0=h0e7cc3e_0
119
+ - libutf8proc=2.10.0=h4c51ac1_0
71
120
  - libuuid=2.38.1=h0b41bf4_0
121
+ - libxml2=2.13.8=h4bc477f_0
72
122
  - libzlib=1.3.1=hb9d3cd8_2
123
+ - lz4-c=1.10.0=h5888daf_1
73
124
  - markdown-it-py=3.0.0=pyhd8ed1ab_1
74
125
  - markupsafe=3.0.2=py313h8060acc_1
75
126
  - mdurl=0.1.2=pyhd8ed1ab_1
76
- - more-itertools=10.6.0=pyhd8ed1ab_0
127
+ - more-itertools=10.7.0=pyhd8ed1ab_0
77
128
  - mypy=1.15.0=py313h536fd9c_0
78
- - mypy_extensions=1.0.0=pyha770c72_1
129
+ - mypy_extensions=1.1.0=pyha770c72_0
130
+ - natsort=8.4.0=pyh29332c3_1
79
131
  - ncurses=6.5=h2d0b736_3
80
132
  - nh3=0.2.21=py39h77e2912_1
81
- - numpy=2.2.4=py313h17eae1a_0
82
- - openssl=3.5.0=h7b32b05_0
83
- - packaging=24.2=pyhd8ed1ab_2
133
+ - nlohmann_json=3.12.0=h3f2d84a_0
134
+ - numpy=2.2.6=py313h17eae1a_0
135
+ - openssl=3.5.0=h7b32b05_1
136
+ - orc=2.1.2=h17f744e_0
137
+ - packaging=25.0=pyh29332c3_1
84
138
  - paramiko=3.5.1=pyhd8ed1ab_0
85
139
  - pathspec=0.12.1=pyhd8ed1ab_1
86
- - pcre2=10.44=hba22ea6_2
87
- - pip=25.0.1=pyh145f28c_0
140
+ - pcre2=10.45=hc749103_0
141
+ - pip=25.1.1=pyh145f28c_0
88
142
  - pkginfo=1.12.1.2=pyhd8ed1ab_0
89
- - platformdirs=4.3.7=pyh29332c3_0
90
- - pluggy=1.5.0=pyhd8ed1ab_1
143
+ - platformdirs=4.3.8=pyhe01879c_0
144
+ - pluggy=1.6.0=pyhd8ed1ab_0
145
+ - polars-default=1.30.0=py39hfac2b71_0
91
146
  - progressbar2=4.5.0=pyhd8ed1ab_1
147
+ - prometheus-cpp=1.3.0=ha5d0236_0
92
148
  - psutil=7.0.0=py313h536fd9c_0
149
+ - pyarrow-core=20.0.0=py313he5f92c8_0_cpu
93
150
  - pycparser=2.22=pyh29332c3_1
94
151
  - pygments=2.19.1=pyhd8ed1ab_0
95
152
  - pynacl=1.5.0=py313h536fd9c_4
96
- - pyproject-api=1.9.0=pyh29332c3_0
153
+ - pyproject-api=1.9.1=pyhe01879c_0
97
154
  - pysocks=1.7.1=pyha55dd90_7
98
155
  - python=3.13.3=hf636f53_101_cp313
99
156
  - python-gil=3.13.3=h4df99d1_101
100
157
  - python-utils=3.9.1=pyhff2d567_1
101
- - python_abi=3.13=6_cp313
158
+ - python_abi=3.13=7_cp313
102
159
  - pytz=2025.2=pyhd8ed1ab_0
103
160
  - rapidfuzz=3.13.0=py313h46c70d0_0
161
+ - re2=2024.07.02=h9925aae_3
104
162
  - readline=8.2=h8c095d6_2
105
163
  - readme_renderer=44.0=pyhd8ed1ab_1
106
164
  - requests=2.32.3=pyhd8ed1ab_1
@@ -111,14 +169,16 @@ dependencies:
111
169
  - ruamel.yaml=0.18.10=py313h536fd9c_0
112
170
  - ruamel.yaml.clib=0.2.8=py313h536fd9c_1
113
171
  - ruamel.yaml.jinja2=0.2.7=pyhd8ed1ab_1
114
- - ruff=0.11.5=py313h22842b3_0
172
+ - ruff=0.11.10=py313h67f39b2_1
173
+ - s2n=1.5.18=h763c568_1
115
174
  - secretstorage=3.3.3=py313h78bf25f_3
116
- - setuptools=78.1.0=pyhff2d567_0
175
+ - setuptools=80.8.0=pyhff2d567_0
117
176
  - six=1.17.0=pyhd8ed1ab_0
118
- - snowballstemmer=2.2.0=pyhd8ed1ab_0
119
- - soupsieve=2.5=pyhd8ed1ab_1
177
+ - snappy=1.2.1=h8bd8927_1
178
+ - snowballstemmer=3.0.1=pyhd8ed1ab_0
179
+ - soupsieve=2.7=pyhd8ed1ab_0
120
180
  - sphinx=8.2.3=pyhd8ed1ab_0
121
- - sphinx-autodoc-typehints=3.1.0=pyhd8ed1ab_0
181
+ - sphinx-autodoc-typehints=3.2.0=pyhd8ed1ab_0
122
182
  - sphinx-click=6.0.0=pyhd8ed1ab_1
123
183
  - sphinx-rtd-theme=3.0.1=hd8ed1ab_0
124
184
  - sphinx_rtd_theme=3.0.1=pyha770c72_0
@@ -133,21 +193,23 @@ dependencies:
133
193
  - tk=8.6.13=noxft_h4845f30_101
134
194
  - tomli=2.2.1=pyhd8ed1ab_1
135
195
  - tomli-w=1.2.0=pyhd8ed1ab_0
136
- - tox=4.25.0=pyh29332c3_1
196
+ - tox=4.26.0=pyhe01879c_0
137
197
  - tqdm=4.67.1=pyhd8ed1ab_1
138
- - trove-classifiers=2025.4.11.15=pyhd8ed1ab_0
198
+ - trove-classifiers=2025.5.9.12=pyhd8ed1ab_0
139
199
  - twine=6.1.0=pyh29332c3_0
140
200
  - types-appdirs=1.4.3.5=pyhd8ed1ab_1
141
- - types-paramiko=3.5.0.20240928=pyhd8ed1ab_1
142
- - types-requests=2.32.0.20250306=pyhd8ed1ab_0
143
- - types-tqdm=4.67.0.20250319=pyhd8ed1ab_0
201
+ - types-paramiko=3.5.0.20250516=pyhd8ed1ab_0
202
+ - types-requests=2.32.0.20250515=pyhd8ed1ab_0
203
+ - types-tqdm=4.67.0.20250516=pyhd8ed1ab_0
144
204
  - typing-extensions=4.13.2=h0e9735f_0
145
205
  - typing_extensions=4.13.2=pyh29332c3_0
146
206
  - tzdata=2025b=h78e105d_0
147
207
  - urllib3=2.4.0=pyhd8ed1ab_0
148
- - virtualenv=20.30.0=pyhd8ed1ab_0
208
+ - virtualenv=20.31.2=pyhd8ed1ab_0
149
209
  - zipp=3.21.0=pyhd8ed1ab_1
150
- - zstandard=0.23.0=py313h536fd9c_1
210
+ - zlib=1.3.1=hb9d3cd8_2
211
+ - zstandard=0.23.0=py313h536fd9c_2
212
+ - zstd=1.5.7=hb8e6e7a_2
151
213
  - pip:
152
214
  - ataraxis-automation==4.0.1
153
215
  - ataraxis-base-utilities==3.0.1
@@ -156,6 +218,8 @@ dependencies:
156
218
  - build==1.2.2.post1
157
219
  - dacite==1.9.2
158
220
  - loguru==0.7.3
221
+ - polars==1.29.0
222
+ - pyarrow==20.0.0
159
223
  - pyproject-hooks==1.2.0
160
224
  - pyyaml==6.0.2
161
225
  - simple-slurm==0.3.5