lamindb_setup 0.77.1__tar.gz → 0.77.3__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.
Files changed (97) hide show
  1. {lamindb_setup-0.77.1 → lamindb_setup-0.77.3}/.github/workflows/build.yml +13 -9
  2. {lamindb_setup-0.77.1 → lamindb_setup-0.77.3}/.github/workflows/doc-changes.yml +23 -23
  3. {lamindb_setup-0.77.1 → lamindb_setup-0.77.3}/.gitignore +111 -111
  4. {lamindb_setup-0.77.1 → lamindb_setup-0.77.3}/.pre-commit-config.yaml +46 -46
  5. {lamindb_setup-0.77.1 → lamindb_setup-0.77.3}/PKG-INFO +1 -1
  6. {lamindb_setup-0.77.1 → lamindb_setup-0.77.3}/README.md +6 -6
  7. {lamindb_setup-0.77.1 → lamindb_setup-0.77.3}/docs/changelog.md +654 -654
  8. {lamindb_setup-0.77.1 → lamindb_setup-0.77.3}/docs/hub-cloud/01-init-local-instance.ipynb +117 -117
  9. {lamindb_setup-0.77.1 → lamindb_setup-0.77.3}/docs/hub-cloud/02-connect-local-instance.ipynb +179 -179
  10. {lamindb_setup-0.77.1 → lamindb_setup-0.77.3}/docs/hub-cloud/03-add-managed-storage.ipynb +452 -452
  11. {lamindb_setup-0.77.1 → lamindb_setup-0.77.3}/docs/hub-cloud/07-keep-artifacts-local.ipynb +220 -220
  12. {lamindb_setup-0.77.1 → lamindb_setup-0.77.3}/docs/hub-cloud/08-test-multi-session.ipynb +159 -159
  13. {lamindb_setup-0.77.1 → lamindb_setup-0.77.3}/docs/hub-cloud/test_notebooks.py +8 -8
  14. {lamindb_setup-0.77.1 → lamindb_setup-0.77.3}/docs/hub-prod/test-cache-management.ipynb +305 -305
  15. {lamindb_setup-0.77.1 → lamindb_setup-0.77.3}/docs/hub-prod/test-cloud-sync.ipynb +611 -536
  16. {lamindb_setup-0.77.1 → lamindb_setup-0.77.3}/docs/hub-prod/test-connect-anonymously.ipynb +87 -87
  17. {lamindb_setup-0.77.1 → lamindb_setup-0.77.3}/docs/hub-prod/test-empty-init.ipynb +129 -129
  18. {lamindb_setup-0.77.1 → lamindb_setup-0.77.3}/docs/hub-prod/test-import-schema.ipynb +133 -133
  19. {lamindb_setup-0.77.1 → lamindb_setup-0.77.3}/docs/hub-prod/test-init-load-local-anonymously.ipynb +140 -140
  20. {lamindb_setup-0.77.1 → lamindb_setup-0.77.3}/docs/hub-prod/test-insufficient-user-info.ipynb +202 -202
  21. {lamindb_setup-0.77.1 → lamindb_setup-0.77.3}/docs/hub-prod/test-invalid-schema.ipynb +52 -52
  22. {lamindb_setup-0.77.1 → lamindb_setup-0.77.3}/docs/hub-prod/test-sqlite-lock.ipynb +280 -280
  23. {lamindb_setup-0.77.1 → lamindb_setup-0.77.3}/docs/hub-prod/test_notebooks2.py +8 -8
  24. {lamindb_setup-0.77.1 → lamindb_setup-0.77.3}/docs/index.md +12 -12
  25. {lamindb_setup-0.77.1 → lamindb_setup-0.77.3}/docs/notebooks.md +25 -25
  26. {lamindb_setup-0.77.1 → lamindb_setup-0.77.3}/lamindb_setup/__init__.py +1 -1
  27. {lamindb_setup-0.77.1 → lamindb_setup-0.77.3}/lamindb_setup/_cache.py +34 -34
  28. {lamindb_setup-0.77.1 → lamindb_setup-0.77.3}/lamindb_setup/_check.py +7 -7
  29. {lamindb_setup-0.77.1 → lamindb_setup-0.77.3}/lamindb_setup/_check_setup.py +79 -79
  30. {lamindb_setup-0.77.1 → lamindb_setup-0.77.3}/lamindb_setup/_close.py +35 -35
  31. {lamindb_setup-0.77.1 → lamindb_setup-0.77.3}/lamindb_setup/_connect_instance.py +444 -440
  32. {lamindb_setup-0.77.1 → lamindb_setup-0.77.3}/lamindb_setup/_delete.py +139 -137
  33. {lamindb_setup-0.77.1 → lamindb_setup-0.77.3}/lamindb_setup/_django.py +41 -41
  34. {lamindb_setup-0.77.1 → lamindb_setup-0.77.3}/lamindb_setup/_entry_points.py +22 -22
  35. {lamindb_setup-0.77.1 → lamindb_setup-0.77.3}/lamindb_setup/_exportdb.py +68 -68
  36. {lamindb_setup-0.77.1 → lamindb_setup-0.77.3}/lamindb_setup/_importdb.py +50 -50
  37. {lamindb_setup-0.77.1 → lamindb_setup-0.77.3}/lamindb_setup/_init_instance.py +374 -374
  38. {lamindb_setup-0.77.1 → lamindb_setup-0.77.3}/lamindb_setup/_migrate.py +239 -239
  39. {lamindb_setup-0.77.1 → lamindb_setup-0.77.3}/lamindb_setup/_register_instance.py +36 -36
  40. {lamindb_setup-0.77.1 → lamindb_setup-0.77.3}/lamindb_setup/_schema.py +27 -27
  41. {lamindb_setup-0.77.1 → lamindb_setup-0.77.3}/lamindb_setup/_schema_metadata.py +411 -411
  42. {lamindb_setup-0.77.1 → lamindb_setup-0.77.3}/lamindb_setup/_set_managed_storage.py +55 -55
  43. {lamindb_setup-0.77.1 → lamindb_setup-0.77.3}/lamindb_setup/_setup_user.py +137 -134
  44. {lamindb_setup-0.77.1 → lamindb_setup-0.77.3}/lamindb_setup/_silence_loggers.py +44 -44
  45. {lamindb_setup-0.77.1 → lamindb_setup-0.77.3}/lamindb_setup/core/__init__.py +21 -21
  46. {lamindb_setup-0.77.1 → lamindb_setup-0.77.3}/lamindb_setup/core/_aws_credentials.py +151 -151
  47. {lamindb_setup-0.77.1 → lamindb_setup-0.77.3}/lamindb_setup/core/_aws_storage.py +48 -48
  48. {lamindb_setup-0.77.1 → lamindb_setup-0.77.3}/lamindb_setup/core/_deprecated.py +55 -55
  49. {lamindb_setup-0.77.1 → lamindb_setup-0.77.3}/lamindb_setup/core/_docs.py +14 -14
  50. {lamindb_setup-0.77.1 → lamindb_setup-0.77.3}/lamindb_setup/core/_hub_client.py +1 -1
  51. {lamindb_setup-0.77.1 → lamindb_setup-0.77.3}/lamindb_setup/core/_hub_core.py +590 -524
  52. {lamindb_setup-0.77.1 → lamindb_setup-0.77.3}/lamindb_setup/core/_hub_crud.py +211 -211
  53. {lamindb_setup-0.77.1 → lamindb_setup-0.77.3}/lamindb_setup/core/_hub_utils.py +109 -109
  54. {lamindb_setup-0.77.1 → lamindb_setup-0.77.3}/lamindb_setup/core/_private_django_api.py +88 -88
  55. {lamindb_setup-0.77.1 → lamindb_setup-0.77.3}/lamindb_setup/core/_settings.py +138 -138
  56. {lamindb_setup-0.77.1 → lamindb_setup-0.77.3}/lamindb_setup/core/_settings_instance.py +467 -461
  57. {lamindb_setup-0.77.1 → lamindb_setup-0.77.3}/lamindb_setup/core/_settings_load.py +105 -105
  58. {lamindb_setup-0.77.1 → lamindb_setup-0.77.3}/lamindb_setup/core/_settings_save.py +81 -81
  59. {lamindb_setup-0.77.1 → lamindb_setup-0.77.3}/lamindb_setup/core/_settings_storage.py +405 -393
  60. {lamindb_setup-0.77.1 → lamindb_setup-0.77.3}/lamindb_setup/core/_settings_store.py +75 -73
  61. {lamindb_setup-0.77.1 → lamindb_setup-0.77.3}/lamindb_setup/core/_settings_user.py +53 -53
  62. {lamindb_setup-0.77.1 → lamindb_setup-0.77.3}/lamindb_setup/core/_setup_bionty_sources.py +101 -101
  63. {lamindb_setup-0.77.1 → lamindb_setup-0.77.3}/lamindb_setup/core/cloud_sqlite_locker.py +232 -232
  64. {lamindb_setup-0.77.1 → lamindb_setup-0.77.3}/lamindb_setup/core/django.py +114 -113
  65. {lamindb_setup-0.77.1 → lamindb_setup-0.77.3}/lamindb_setup/core/exceptions.py +12 -12
  66. {lamindb_setup-0.77.1 → lamindb_setup-0.77.3}/lamindb_setup/core/hashing.py +114 -114
  67. {lamindb_setup-0.77.1 → lamindb_setup-0.77.3}/lamindb_setup/core/types.py +19 -19
  68. {lamindb_setup-0.77.1 → lamindb_setup-0.77.3}/lamindb_setup/core/upath.py +779 -779
  69. {lamindb_setup-0.77.1 → lamindb_setup-0.77.3}/noxfile.py +110 -110
  70. {lamindb_setup-0.77.1 → lamindb_setup-0.77.3}/pyproject.toml +147 -147
  71. {lamindb_setup-0.77.1 → lamindb_setup-0.77.3}/tests/hub-cloud/scripts/script-to-fail-managed-storage.py +26 -26
  72. {lamindb_setup-0.77.1 → lamindb_setup-0.77.3}/tests/hub-cloud/test_connect_instance.py +140 -140
  73. {lamindb_setup-0.77.1 → lamindb_setup-0.77.3}/tests/hub-cloud/test_delete_instance.py +10 -10
  74. {lamindb_setup-0.77.1 → lamindb_setup-0.77.3}/tests/hub-cloud/test_fail_managed_storage.py +12 -12
  75. {lamindb_setup-0.77.1 → lamindb_setup-0.77.3}/tests/hub-cloud/test_init_instance.py +185 -185
  76. {lamindb_setup-0.77.1 → lamindb_setup-0.77.3}/tests/hub-cloud/test_login.py +82 -67
  77. {lamindb_setup-0.77.1 → lamindb_setup-0.77.3}/tests/hub-cloud/test_migrate.py +22 -22
  78. {lamindb_setup-0.77.1 → lamindb_setup-0.77.3}/tests/hub-cloud/test_set_storage.py +15 -15
  79. {lamindb_setup-0.77.1 → lamindb_setup-0.77.3}/tests/hub-local/conftest.py +31 -31
  80. {lamindb_setup-0.77.1 → lamindb_setup-0.77.3}/tests/hub-local/test_all.py +380 -335
  81. {lamindb_setup-0.77.1 → lamindb_setup-0.77.3}/tests/hub-local/test_update_schema_in_hub.py +2 -2
  82. {lamindb_setup-0.77.1 → lamindb_setup-0.77.3}/tests/hub-prod/test_django.py +9 -9
  83. {lamindb_setup-0.77.1 → lamindb_setup-0.77.3}/tests/hub-prod/test_global_settings.py +55 -55
  84. {lamindb_setup-0.77.1 → lamindb_setup-0.77.3}/tests/hub-prod/test_switch_and_fallback_env.py +50 -50
  85. {lamindb_setup-0.77.1 → lamindb_setup-0.77.3}/tests/hub-prod/test_upath.py +44 -44
  86. {lamindb_setup-0.77.1 → lamindb_setup-0.77.3}/tests/storage/test_entry_point.py +76 -76
  87. {lamindb_setup-0.77.1 → lamindb_setup-0.77.3}/tests/storage/test_hashing.py +54 -54
  88. {lamindb_setup-0.77.1 → lamindb_setup-0.77.3}/tests/storage/test_storage_access.py +50 -50
  89. {lamindb_setup-0.77.1 → lamindb_setup-0.77.3}/tests/storage/test_storage_basis.py +26 -26
  90. {lamindb_setup-0.77.1 → lamindb_setup-0.77.3}/tests/storage/test_storage_stats.py +46 -46
  91. {lamindb_setup-0.77.1 → lamindb_setup-0.77.3}/tests/storage/test_to_url.py +31 -31
  92. {lamindb_setup-0.77.1 → lamindb_setup-0.77.3}/LICENSE +0 -0
  93. {lamindb_setup-0.77.1 → lamindb_setup-0.77.3}/docs/hub-cloud/04-test-bionty.ipynb +0 -0
  94. {lamindb_setup-0.77.1 → lamindb_setup-0.77.3}/docs/hub-cloud/05-init-hosted-instance.ipynb +0 -0
  95. {lamindb_setup-0.77.1 → lamindb_setup-0.77.3}/docs/hub-cloud/06-connect-hosted-instance.ipynb +0 -0
  96. {lamindb_setup-0.77.1 → lamindb_setup-0.77.3}/docs/reference.md +0 -0
  97. {lamindb_setup-0.77.1 → lamindb_setup-0.77.3}/tests/hub-prod/conftest.py +0 -0
@@ -12,7 +12,7 @@ jobs:
12
12
  # tests only on production hub
13
13
  hub-prod:
14
14
  runs-on: ubuntu-latest
15
- timeout-minutes: 6
15
+ timeout-minutes: 7
16
16
  steps:
17
17
  - uses: actions/checkout@v3
18
18
  - uses: actions/setup-python@v4
@@ -27,10 +27,11 @@ jobs:
27
27
  - run: pip install "laminci@git+https://x-access-token:${{ secrets.LAMIN_BUILD_DOCS }}@github.com/laminlabs/laminci"
28
28
  - run: nox -s "install(group='hub-prod')"
29
29
  - run: nox -s "build(lamin_env='prod', group='hub-prod')"
30
- - uses: actions/upload-artifact@v2
30
+ - uses: actions/upload-artifact@v4
31
31
  with:
32
32
  name: coverage--hub-prod
33
33
  path: .coverage
34
+ include-hidden-files: true
34
35
 
35
36
  # tests both on production and staging hub
36
37
  hub-cloud:
@@ -83,16 +84,17 @@ jobs:
83
84
  # - uses: "google-github-actions/setup-gcloud@v0"
84
85
  - run: nox -s "install(group='hub-cloud')"
85
86
  - run: nox -s "build(lamin_env='${{ matrix.lamin_env }}', group='hub-cloud')"
86
- - uses: actions/upload-artifact@v2
87
+ - uses: actions/upload-artifact@v4
87
88
  if: ${{ matrix.lamin_env == 'prod' }}
88
89
  with:
89
90
  name: coverage--hub-cloud
90
91
  path: .coverage
92
+ include-hidden-files: true
91
93
 
92
94
  # test user access to storage
93
95
  storage:
94
96
  runs-on: ubuntu-latest
95
- timeout-minutes: 6
97
+ timeout-minutes: 7
96
98
  steps:
97
99
  - uses: actions/checkout@v4
98
100
  - uses: actions/setup-python@v4
@@ -108,15 +110,16 @@ jobs:
108
110
  TEST_INSTANCE_PRIVATE_POSTGRES: ${{ secrets.TEST_INSTANCE_PRIVATE_POSTGRES }}
109
111
  TMP_AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
110
112
  TMP_AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
111
- - uses: actions/upload-artifact@v2
113
+ - uses: actions/upload-artifact@v4
112
114
  with:
113
115
  name: coverage--storage
114
116
  path: .coverage
117
+ include-hidden-files: true
115
118
 
116
119
  # test low-level hub functionality
117
120
  hub-local:
118
121
  runs-on: ubuntu-latest
119
- timeout-minutes: 6
122
+ timeout-minutes: 7
120
123
  steps:
121
124
  - uses: aws-actions/configure-aws-credentials@v4
122
125
  with:
@@ -152,10 +155,11 @@ jobs:
152
155
  - run: nox -s hub_local
153
156
  env:
154
157
  LAMIN_ENV: "local"
155
- - uses: actions/upload-artifact@v2
158
+ - uses: actions/upload-artifact@v4
156
159
  with:
157
160
  name: coverage--hub-local
158
161
  path: .coverage
162
+ include-hidden-files: true
159
163
 
160
164
  coverage:
161
165
  needs: [hub-prod, hub-cloud, storage, hub-local]
@@ -169,7 +173,7 @@ jobs:
169
173
  - run: |
170
174
  pip install coverage[toml]
171
175
  pip install --no-deps .
172
- - uses: actions/download-artifact@v2
176
+ - uses: actions/download-artifact@v4
173
177
  - name: run coverage
174
178
  run: |
175
179
  coverage combine coverage--*/.coverage*
@@ -206,7 +210,7 @@ jobs:
206
210
  cache-dependency-path: ".github/workflows/build.yml"
207
211
  - run: pip install "laminci@git+https://x-access-token:${{ secrets.LAMIN_BUILD_DOCS }}@github.com/laminlabs/laminci"
208
212
  - run: nox -s "install(group='docs')"
209
- - uses: actions/download-artifact@v2
213
+ - uses: actions/download-artifact@v4
210
214
  - run: nox -s docs
211
215
  - uses: nwtgck/actions-netlify@v1.2
212
216
  with:
@@ -1,23 +1,23 @@
1
- name: doc-changes
2
-
3
- on:
4
- pull_request_target:
5
- branches:
6
- - main
7
- types:
8
- - closed
9
-
10
- jobs:
11
- latest-changes:
12
- runs-on: ubuntu-latest
13
- steps:
14
- - uses: actions/checkout@v4
15
- - uses: actions/setup-python@v5
16
- with:
17
- python-version: "3.11"
18
- - run: pip install "laminci[doc-changes]@git+https://x-access-token:${{ secrets.LAMIN_BUILD_DOCS }}@github.com/laminlabs/laminci"
19
- - run: laminci doc-changes
20
- env:
21
- repo_token: ${{ secrets.GITHUB_TOKEN }}
22
- docs_token: ${{ secrets.LAMIN_BUILD_DOCS }}
23
- changelog_file: lamin-docs/docs/changelog/soon/lamindb.md
1
+ name: doc-changes
2
+
3
+ on:
4
+ pull_request_target:
5
+ branches:
6
+ - main
7
+ types:
8
+ - closed
9
+
10
+ jobs:
11
+ latest-changes:
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - uses: actions/checkout@v4
15
+ - uses: actions/setup-python@v5
16
+ with:
17
+ python-version: "3.11"
18
+ - run: pip install "laminci[doc-changes]@git+https://x-access-token:${{ secrets.LAMIN_BUILD_DOCS }}@github.com/laminlabs/laminci"
19
+ - run: laminci doc-changes
20
+ env:
21
+ repo_token: ${{ secrets.GITHUB_TOKEN }}
22
+ docs_token: ${{ secrets.LAMIN_BUILD_DOCS }}
23
+ changelog_file: lamin-docs/docs/changelog/soon/lamindb.md
@@ -1,111 +1,111 @@
1
- # macOS
2
- .DS_Store
3
- .AppleDouble
4
- .LSOverride
5
- anon_key
6
- supabase/
7
- # Byte-compiled / optimized / DLL files
8
- __pycache__/
9
- *.py[cod]
10
- *$py.class
11
- laminhub-rest/
12
-
13
- # C extensions
14
- *.so
15
-
16
- # Distribution / packaging
17
- .Python
18
- env/
19
- build/
20
- develop-eggs/
21
- dist/
22
- downloads/
23
- eggs/
24
- .eggs/
25
- lib/
26
- lib64/
27
- parts/
28
- sdist/
29
- var/
30
- wheels/
31
- *.egg-info/
32
- .installed.cfg
33
- *.egg
34
-
35
- # PyInstaller
36
- # Usually these files are written by a python script from a template
37
- # before PyInstaller builds the exe, so as to inject date/other infos into it.
38
- *.manifest
39
- *.spec
40
-
41
- # Installer logs
42
- pip-log.txt
43
- pip-delete-this-directory.txt
44
-
45
- # Unit test / coverage reports
46
- htmlcov/
47
- .tox/
48
- .coverage
49
- .coverage.*
50
- .cache
51
- nosetests.xml
52
- coverage.xml
53
- *.cover
54
- .hypothesis/
55
- .pytest_cache/
56
-
57
- # Translations
58
- *.mo
59
- *.pot
60
-
61
- # Django stuff:
62
- *.log
63
- local_settings.py
64
-
65
- # Flask stuff:
66
- instance/
67
- .webassets-cache
68
-
69
- # Scrapy stuff:
70
- .scrapy
71
-
72
- # Sphinx documentation
73
- docs/_build/
74
-
75
- # PyBuilder
76
- target/
77
-
78
- # Jupyter Notebook
79
- .ipynb_checkpoints
80
-
81
- # pyenv
82
- .python-version
83
-
84
- # celery beat schedule file
85
- celerybeat-schedule
86
-
87
- # SageMath parsed files
88
- *.sage.py
89
-
90
- # dotenv
91
- .env
92
-
93
- # virtualenv
94
- .venv
95
- venv/
96
- ENV/
97
-
98
- # mypy
99
- .mypy_cache/
100
-
101
- # IDE settings
102
- .vscode/
103
- .idea/
104
-
105
- # Lamin
106
- _build
107
- lamin_sphinx
108
- docs/conf.py
109
- _docs_tmp*
110
- *.lndb
111
- _is_initialized
1
+ # macOS
2
+ .DS_Store
3
+ .AppleDouble
4
+ .LSOverride
5
+ anon_key
6
+ supabase/
7
+ # Byte-compiled / optimized / DLL files
8
+ __pycache__/
9
+ *.py[cod]
10
+ *$py.class
11
+ laminhub-rest/
12
+
13
+ # C extensions
14
+ *.so
15
+
16
+ # Distribution / packaging
17
+ .Python
18
+ env/
19
+ build/
20
+ develop-eggs/
21
+ dist/
22
+ downloads/
23
+ eggs/
24
+ .eggs/
25
+ lib/
26
+ lib64/
27
+ parts/
28
+ sdist/
29
+ var/
30
+ wheels/
31
+ *.egg-info/
32
+ .installed.cfg
33
+ *.egg
34
+
35
+ # PyInstaller
36
+ # Usually these files are written by a python script from a template
37
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
38
+ *.manifest
39
+ *.spec
40
+
41
+ # Installer logs
42
+ pip-log.txt
43
+ pip-delete-this-directory.txt
44
+
45
+ # Unit test / coverage reports
46
+ htmlcov/
47
+ .tox/
48
+ .coverage
49
+ .coverage.*
50
+ .cache
51
+ nosetests.xml
52
+ coverage.xml
53
+ *.cover
54
+ .hypothesis/
55
+ .pytest_cache/
56
+
57
+ # Translations
58
+ *.mo
59
+ *.pot
60
+
61
+ # Django stuff:
62
+ *.log
63
+ local_settings.py
64
+
65
+ # Flask stuff:
66
+ instance/
67
+ .webassets-cache
68
+
69
+ # Scrapy stuff:
70
+ .scrapy
71
+
72
+ # Sphinx documentation
73
+ docs/_build/
74
+
75
+ # PyBuilder
76
+ target/
77
+
78
+ # Jupyter Notebook
79
+ .ipynb_checkpoints
80
+
81
+ # pyenv
82
+ .python-version
83
+
84
+ # celery beat schedule file
85
+ celerybeat-schedule
86
+
87
+ # SageMath parsed files
88
+ *.sage.py
89
+
90
+ # dotenv
91
+ .env
92
+
93
+ # virtualenv
94
+ .venv
95
+ venv/
96
+ ENV/
97
+
98
+ # mypy
99
+ .mypy_cache/
100
+
101
+ # IDE settings
102
+ .vscode/
103
+ .idea/
104
+
105
+ # Lamin
106
+ _build
107
+ lamin_sphinx
108
+ docs/conf.py
109
+ _docs_tmp*
110
+ *.lndb
111
+ _is_initialized
@@ -1,46 +1,46 @@
1
- repos:
2
- - repo: https://github.com/pre-commit/mirrors-prettier
3
- rev: v4.0.0-alpha.4
4
- hooks:
5
- - id: prettier
6
- exclude: |
7
- (?x)(
8
- docs/changelog.md
9
- )
10
- - repo: https://github.com/kynan/nbstripout
11
- rev: 0.6.1
12
- hooks:
13
- - id: nbstripout
14
- exclude: |
15
- (?x)(
16
- docs/examples/|
17
- docs/notes/
18
- )
19
- - repo: https://github.com/astral-sh/ruff-pre-commit
20
- rev: v0.5.5
21
- hooks:
22
- - id: ruff
23
- args: [--fix, --exit-non-zero-on-fix, --unsafe-fixes]
24
- - id: ruff-format
25
- - repo: https://github.com/pre-commit/pre-commit-hooks
26
- rev: v4.5.0
27
- hooks:
28
- - id: detect-private-key
29
- - id: check-ast
30
- - id: end-of-file-fixer
31
- exclude: |
32
- (?x)(
33
- .github/workflows/latest-changes.jinja2
34
- )
35
- - id: mixed-line-ending
36
- args: [--fix=lf]
37
- - id: trailing-whitespace
38
- - id: check-case-conflict
39
- - repo: https://github.com/pre-commit/mirrors-mypy
40
- rev: v1.7.1
41
- hooks:
42
- - id: mypy
43
- exclude: |
44
- (?x)(
45
- tests/hub-local/conftest.py
46
- )
1
+ repos:
2
+ - repo: https://github.com/pre-commit/mirrors-prettier
3
+ rev: v4.0.0-alpha.4
4
+ hooks:
5
+ - id: prettier
6
+ exclude: |
7
+ (?x)(
8
+ docs/changelog.md
9
+ )
10
+ - repo: https://github.com/kynan/nbstripout
11
+ rev: 0.6.1
12
+ hooks:
13
+ - id: nbstripout
14
+ exclude: |
15
+ (?x)(
16
+ docs/examples/|
17
+ docs/notes/
18
+ )
19
+ - repo: https://github.com/astral-sh/ruff-pre-commit
20
+ rev: v0.5.5
21
+ hooks:
22
+ - id: ruff
23
+ args: [--fix, --exit-non-zero-on-fix, --unsafe-fixes]
24
+ - id: ruff-format
25
+ - repo: https://github.com/pre-commit/pre-commit-hooks
26
+ rev: v4.5.0
27
+ hooks:
28
+ - id: detect-private-key
29
+ - id: check-ast
30
+ - id: end-of-file-fixer
31
+ exclude: |
32
+ (?x)(
33
+ .github/workflows/latest-changes.jinja2
34
+ )
35
+ - id: mixed-line-ending
36
+ args: [--fix=lf]
37
+ - id: trailing-whitespace
38
+ - id: check-case-conflict
39
+ - repo: https://github.com/pre-commit/mirrors-mypy
40
+ rev: v1.7.1
41
+ hooks:
42
+ - id: mypy
43
+ exclude: |
44
+ (?x)(
45
+ tests/hub-local/conftest.py
46
+ )
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: lamindb_setup
3
- Version: 0.77.1
3
+ Version: 0.77.3
4
4
  Summary: Setup & configure LaminDB.
5
5
  Author-email: Lamin Labs <open-source@lamin.ai>
6
6
  Description-Content-Type: text/markdown
@@ -1,6 +1,6 @@
1
- [![codecov](https://codecov.io/gh/laminlabs/lamindb-setup/branch/main/graph/badge.svg)](https://codecov.io/gh/laminlabs/lamindb-setup)
2
-
3
- # lamindb-setup: Setup LaminDB
4
-
5
- - User [docs](https://lamin.ai/docs)
6
- - Developer [docs](https://lamindb-setup-htry.netlify.app/)
1
+ [![codecov](https://codecov.io/gh/laminlabs/lamindb-setup/branch/main/graph/badge.svg)](https://codecov.io/gh/laminlabs/lamindb-setup)
2
+
3
+ # lamindb-setup: Setup LaminDB
4
+
5
+ - User [docs](https://lamin.ai/docs)
6
+ - Developer [docs](https://lamindb-setup-htry.netlify.app/)