lamindb_setup 0.70.0__tar.gz → 0.71.0__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 (95) hide show
  1. {lamindb_setup-0.70.0 → lamindb_setup-0.71.0}/.github/workflows/build.yml +26 -26
  2. {lamindb_setup-0.70.0 → lamindb_setup-0.71.0}/.pre-commit-config.yaml +24 -44
  3. {lamindb_setup-0.70.0 → lamindb_setup-0.71.0}/PKG-INFO +6 -4
  4. {lamindb_setup-0.70.0 → lamindb_setup-0.71.0}/docs/changelog.md +10 -0
  5. {lamindb_setup-0.70.0 → lamindb_setup-0.71.0}/docs/hub-cloud/01-init-local-instance.ipynb +1 -1
  6. {lamindb_setup-0.70.0 → lamindb_setup-0.71.0}/docs/hub-cloud/02-connect-local-instance.ipynb +1 -1
  7. lamindb_setup-0.71.0/docs/hub-cloud/03-add-managed-storage.ipynb +408 -0
  8. {lamindb_setup-0.70.0 → lamindb_setup-0.71.0}/docs/hub-cloud/05-init-hosted-instance.ipynb +3 -3
  9. lamindb_setup-0.71.0/docs/hub-cloud/07-keep-artifacts-local.ipynb +216 -0
  10. {lamindb_setup-0.70.0 → lamindb_setup-0.71.0}/docs/hub-cloud/test_notebooks.py +1 -0
  11. {lamindb_setup-0.70.0 → lamindb_setup-0.71.0}/docs/hub-prod/test-empty-init.ipynb +1 -1
  12. {lamindb_setup-0.70.0 → lamindb_setup-0.71.0}/docs/hub-prod/test-sqlite-lock.ipynb +1 -1
  13. {lamindb_setup-0.70.0 → lamindb_setup-0.71.0}/docs/hub-prod/test_notebooks2.py +1 -0
  14. {lamindb_setup-0.70.0 → lamindb_setup-0.71.0}/docs/notebooks.md +1 -1
  15. {lamindb_setup-0.70.0 → lamindb_setup-0.71.0}/lamindb_setup/__init__.py +15 -15
  16. lamindb_setup-0.71.0/lamindb_setup/_add_remote_storage.py +39 -0
  17. {lamindb_setup-0.70.0 → lamindb_setup-0.71.0}/lamindb_setup/_cache.py +4 -1
  18. {lamindb_setup-0.70.0 → lamindb_setup-0.71.0}/lamindb_setup/_check.py +3 -0
  19. {lamindb_setup-0.70.0 → lamindb_setup-0.71.0}/lamindb_setup/_check_setup.py +13 -7
  20. {lamindb_setup-0.70.0 → lamindb_setup-0.71.0}/lamindb_setup/_close.py +2 -0
  21. {lamindb_setup-0.70.0 → lamindb_setup-0.71.0}/lamindb_setup/_connect_instance.py +33 -26
  22. {lamindb_setup-0.70.0 → lamindb_setup-0.71.0}/lamindb_setup/_delete.py +52 -19
  23. {lamindb_setup-0.70.0 → lamindb_setup-0.71.0}/lamindb_setup/_django.py +4 -1
  24. {lamindb_setup-0.70.0 → lamindb_setup-0.71.0}/lamindb_setup/_exportdb.py +4 -2
  25. {lamindb_setup-0.70.0 → lamindb_setup-0.71.0}/lamindb_setup/_importdb.py +5 -1
  26. {lamindb_setup-0.70.0 → lamindb_setup-0.71.0}/lamindb_setup/_init_instance.py +57 -45
  27. {lamindb_setup-0.70.0 → lamindb_setup-0.71.0}/lamindb_setup/_migrate.py +16 -13
  28. {lamindb_setup-0.70.0 → lamindb_setup-0.71.0}/lamindb_setup/_register_instance.py +10 -3
  29. {lamindb_setup-0.70.0 → lamindb_setup-0.71.0}/lamindb_setup/_schema.py +6 -3
  30. {lamindb_setup-0.70.0 → lamindb_setup-0.71.0}/lamindb_setup/_setup_user.py +7 -7
  31. {lamindb_setup-0.70.0 → lamindb_setup-0.71.0}/lamindb_setup/_silence_loggers.py +4 -2
  32. {lamindb_setup-0.70.0 → lamindb_setup-0.71.0}/lamindb_setup/core/__init__.py +4 -3
  33. {lamindb_setup-0.70.0 → lamindb_setup-0.71.0}/lamindb_setup/core/_aws_storage.py +3 -0
  34. {lamindb_setup-0.70.0 → lamindb_setup-0.71.0}/lamindb_setup/core/_deprecated.py +2 -7
  35. {lamindb_setup-0.70.0 → lamindb_setup-0.71.0}/lamindb_setup/core/_docs.py +2 -0
  36. {lamindb_setup-0.70.0 → lamindb_setup-0.71.0}/lamindb_setup/core/_hub_client.py +12 -10
  37. {lamindb_setup-0.70.0 → lamindb_setup-0.71.0}/lamindb_setup/core/_hub_core.py +198 -88
  38. {lamindb_setup-0.70.0 → lamindb_setup-0.71.0}/lamindb_setup/core/_hub_crud.py +15 -11
  39. {lamindb_setup-0.70.0 → lamindb_setup-0.71.0}/lamindb_setup/core/_hub_utils.py +11 -8
  40. {lamindb_setup-0.70.0 → lamindb_setup-0.71.0}/lamindb_setup/core/_settings.py +23 -26
  41. {lamindb_setup-0.70.0 → lamindb_setup-0.71.0}/lamindb_setup/core/_settings_instance.py +149 -81
  42. {lamindb_setup-0.70.0 → lamindb_setup-0.71.0}/lamindb_setup/core/_settings_load.py +12 -7
  43. {lamindb_setup-0.70.0 → lamindb_setup-0.71.0}/lamindb_setup/core/_settings_save.py +11 -8
  44. {lamindb_setup-0.70.0 → lamindb_setup-0.71.0}/lamindb_setup/core/_settings_storage.py +83 -42
  45. {lamindb_setup-0.70.0 → lamindb_setup-0.71.0}/lamindb_setup/core/_settings_store.py +3 -2
  46. {lamindb_setup-0.70.0 → lamindb_setup-0.71.0}/lamindb_setup/core/_settings_user.py +10 -6
  47. {lamindb_setup-0.70.0 → lamindb_setup-0.71.0}/lamindb_setup/core/_setup_bionty_sources.py +9 -2
  48. {lamindb_setup-0.70.0 → lamindb_setup-0.71.0}/lamindb_setup/core/cloud_sqlite_locker.py +13 -10
  49. {lamindb_setup-0.70.0 → lamindb_setup-0.71.0}/lamindb_setup/core/django.py +3 -1
  50. {lamindb_setup-0.70.0 → lamindb_setup-0.71.0}/lamindb_setup/core/exceptions.py +4 -2
  51. {lamindb_setup-0.70.0 → lamindb_setup-0.71.0}/lamindb_setup/core/hashing.py +15 -5
  52. {lamindb_setup-0.70.0 → lamindb_setup-0.71.0}/lamindb_setup/core/types.py +5 -2
  53. {lamindb_setup-0.70.0 → lamindb_setup-0.71.0}/lamindb_setup/core/upath.py +181 -87
  54. lamindb_setup-0.71.0/noxfile.py +106 -0
  55. lamindb_setup-0.71.0/pyproject.toml +145 -0
  56. {lamindb_setup-0.70.0 → lamindb_setup-0.71.0}/tests/hub-cloud/test_connect_instance.py +11 -9
  57. {lamindb_setup-0.70.0 → lamindb_setup-0.71.0}/tests/hub-cloud/test_delete_instance.py +2 -1
  58. {lamindb_setup-0.70.0 → lamindb_setup-0.71.0}/tests/hub-cloud/test_init_instance.py +7 -28
  59. {lamindb_setup-0.70.0 → lamindb_setup-0.71.0}/tests/hub-cloud/test_login.py +2 -0
  60. {lamindb_setup-0.70.0 → lamindb_setup-0.71.0}/tests/hub-cloud/test_migrate.py +2 -1
  61. {lamindb_setup-0.70.0 → lamindb_setup-0.71.0}/tests/hub-cloud/test_set_storage.py +4 -2
  62. {lamindb_setup-0.70.0 → lamindb_setup-0.71.0}/tests/hub-local/conftest.py +2 -2
  63. {lamindb_setup-0.70.0 → lamindb_setup-0.71.0}/tests/hub-local/test_all.py +21 -19
  64. {lamindb_setup-0.70.0 → lamindb_setup-0.71.0}/tests/hub-prod/conftest.py +9 -2
  65. {lamindb_setup-0.70.0 → lamindb_setup-0.71.0}/tests/hub-prod/test_auto_connect.py +2 -0
  66. {lamindb_setup-0.70.0 → lamindb_setup-0.71.0}/tests/hub-prod/test_django.py +2 -1
  67. {lamindb_setup-0.70.0 → lamindb_setup-0.71.0}/tests/hub-prod/test_switch_and_fallback_env.py +4 -1
  68. lamindb_setup-0.71.0/tests/hub-prod/test_upath.py +39 -0
  69. {lamindb_setup-0.70.0 → lamindb_setup-0.71.0}/tests/storage/test_hashing.py +16 -2
  70. {lamindb_setup-0.70.0 → lamindb_setup-0.71.0}/tests/storage/test_storage_access.py +5 -2
  71. {lamindb_setup-0.70.0 → lamindb_setup-0.71.0}/tests/storage/test_storage_basis.py +4 -1
  72. {lamindb_setup-0.70.0 → lamindb_setup-0.71.0}/tests/storage/test_storage_stats.py +3 -1
  73. lamindb_setup-0.71.0/tests/storage/test_to_url.py +31 -0
  74. lamindb_setup-0.70.0/docs/hub-cloud/03-set-storage.ipynb +0 -280
  75. lamindb_setup-0.70.0/docs/hub-cloud/07-connect-hybrid-instance.ipynb +0 -86
  76. lamindb_setup-0.70.0/lamindb_setup/_add_remote_storage.py +0 -50
  77. lamindb_setup-0.70.0/noxfile.py +0 -119
  78. lamindb_setup-0.70.0/pyproject.toml +0 -50
  79. lamindb_setup-0.70.0/tests/hub-prod/test_upath.py +0 -18
  80. {lamindb_setup-0.70.0 → lamindb_setup-0.71.0}/.github/workflows/latest-changes.jinja2 +0 -0
  81. {lamindb_setup-0.70.0 → lamindb_setup-0.71.0}/.github/workflows/latest-changes.yml +0 -0
  82. {lamindb_setup-0.70.0 → lamindb_setup-0.71.0}/.gitignore +0 -0
  83. {lamindb_setup-0.70.0 → lamindb_setup-0.71.0}/LICENSE +0 -0
  84. {lamindb_setup-0.70.0 → lamindb_setup-0.71.0}/README.md +0 -0
  85. {lamindb_setup-0.70.0 → lamindb_setup-0.71.0}/docs/hub-cloud/04-test-bionty.ipynb +0 -0
  86. {lamindb_setup-0.70.0 → lamindb_setup-0.71.0}/docs/hub-cloud/06-connect-hosted-instance.ipynb +0 -0
  87. {lamindb_setup-0.70.0 → lamindb_setup-0.71.0}/docs/hub-cloud/test-multi-session.ipynb +0 -0
  88. {lamindb_setup-0.70.0 → lamindb_setup-0.71.0}/docs/hub-prod/test-cache-management.ipynb +0 -0
  89. {lamindb_setup-0.70.0 → lamindb_setup-0.71.0}/docs/hub-prod/test-cloud-sync.ipynb +0 -0
  90. {lamindb_setup-0.70.0 → lamindb_setup-0.71.0}/docs/hub-prod/test-connect-anonymously.ipynb +0 -0
  91. {lamindb_setup-0.70.0 → lamindb_setup-0.71.0}/docs/hub-prod/test-import-schema.ipynb +0 -0
  92. {lamindb_setup-0.70.0 → lamindb_setup-0.71.0}/docs/hub-prod/test-insufficient-user-info.ipynb +0 -0
  93. {lamindb_setup-0.70.0 → lamindb_setup-0.71.0}/docs/hub-prod/test-invalid-schema.ipynb +0 -0
  94. {lamindb_setup-0.70.0 → lamindb_setup-0.71.0}/docs/index.md +0 -0
  95. {lamindb_setup-0.70.0 → lamindb_setup-0.71.0}/docs/reference.md +0 -0
@@ -16,16 +16,15 @@ jobs:
16
16
  - uses: actions/checkout@v3
17
17
  - uses: actions/setup-python@v4
18
18
  with:
19
- python-version: '3.10'
20
- cache: 'pip'
21
- cache-dependency-path: '.github/workflows/build.yml'
19
+ python-version: "3.9" # consciously run one job on Python 3.9
20
+ cache: "pip"
21
+ cache-dependency-path: ".github/workflows/build.yml"
22
22
  - uses: aws-actions/configure-aws-credentials@v2
23
23
  with:
24
24
  aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
25
25
  aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
26
26
  aws-region: eu-central-1
27
27
  - run: pip install -U laminci
28
- - run: nox -s lint
29
28
  - run: nox -s "install(group='hub-prod')"
30
29
  - run: nox -s "build(lamin_env='prod', group='hub-prod')"
31
30
  - uses: actions/upload-artifact@v2
@@ -40,8 +39,8 @@ jobs:
40
39
  fail-fast: false
41
40
  matrix:
42
41
  lamin_env:
43
- - 'staging'
44
- - 'prod'
42
+ - "staging"
43
+ - "prod"
45
44
  timeout-minutes: 15
46
45
  steps:
47
46
  - uses: aws-actions/configure-aws-credentials@v2
@@ -52,9 +51,9 @@ jobs:
52
51
  - uses: actions/checkout@v4
53
52
  - uses: actions/setup-python@v4
54
53
  with:
55
- python-version: '3.10'
56
- cache: 'pip'
57
- cache-dependency-path: '.github/workflows/build.yml'
54
+ python-version: "3.11" # consciously run one job on Python 3.11
55
+ cache: "pip"
56
+ cache-dependency-path: ".github/workflows/build.yml"
58
57
  - name: checkout laminhub
59
58
  uses: actions/checkout@v4
60
59
  with:
@@ -96,11 +95,12 @@ jobs:
96
95
  - uses: actions/checkout@v4
97
96
  - uses: actions/setup-python@v4
98
97
  with:
99
- python-version: '3.10'
100
- cache: 'pip'
101
- cache-dependency-path: '.github/workflows/build.yml'
98
+ python-version: "3.10" # consciously run one job on Python 3.10
99
+ cache: "pip"
100
+ cache-dependency-path: ".github/workflows/build.yml"
102
101
  - run: pip install -U laminci
103
102
  - run: nox -s "install(group='storage')"
103
+ - run: nox -s lint
104
104
  - run: nox -s storage
105
105
  env:
106
106
  TEST_INSTANCE_PRIVATE_POSTGRES: ${{ secrets.TEST_INSTANCE_PRIVATE_POSTGRES }}
@@ -137,9 +137,9 @@ jobs:
137
137
  working-directory: laminhub/rest-hub/supabase
138
138
  - uses: actions/setup-python@v4
139
139
  with:
140
- python-version: '3.10'
141
- cache: 'pip'
142
- cache-dependency-path: '.github/workflows/build.yml'
140
+ python-version: "3.11" # consciously run one job on Python 3.11
141
+ cache: "pip"
142
+ cache-dependency-path: ".github/workflows/build.yml"
143
143
  - run: pip install -U laminci
144
144
  - run: nox -s "install(group='hub-local')"
145
145
  - id: cache-supabase
@@ -150,7 +150,7 @@ jobs:
150
150
  - uses: supabase/setup-cli@v1
151
151
  - run: nox -s hub_local
152
152
  env:
153
- LAMIN_ENV: 'local'
153
+ LAMIN_ENV: "local"
154
154
  - uses: actions/upload-artifact@v2
155
155
  with:
156
156
  name: coverage--hub-local
@@ -163,9 +163,9 @@ jobs:
163
163
  - uses: actions/checkout@v4
164
164
  - uses: actions/setup-python@v4
165
165
  with:
166
- python-version: '3.10'
167
- cache: 'pip'
168
- cache-dependency-path: '.github/workflows/build.yml'
166
+ python-version: "3.10"
167
+ cache: "pip"
168
+ cache-dependency-path: ".github/workflows/build.yml"
169
169
  - run: |
170
170
  pip install coverage[toml]
171
171
  pip install --no-deps .
@@ -201,16 +201,16 @@ jobs:
201
201
  ref: main
202
202
  - uses: actions/setup-python@v4
203
203
  with:
204
- python-version: '3.10'
205
- cache: 'pip'
206
- cache-dependency-path: '.github/workflows/build.yml'
204
+ python-version: "3.10"
205
+ cache: "pip"
206
+ cache-dependency-path: ".github/workflows/build.yml"
207
207
  - run: pip install -U laminci
208
- - run: nox -s "install(group='storage')"
208
+ - run: nox -s "install(group='docs')"
209
209
  - uses: actions/download-artifact@v2
210
210
  - run: nox -s docs
211
211
  - uses: nwtgck/actions-netlify@v1.2
212
212
  with:
213
- publish-dir: '_build/html'
213
+ publish-dir: "_build/html"
214
214
  production-deploy: ${{ github.event_name == 'push' }}
215
215
  github-token: ${{ secrets.GITHUB_TOKEN }}
216
216
  enable-commit-comment: false
@@ -230,7 +230,7 @@ jobs:
230
230
  env:
231
231
  SLACK_BOT_TOKEN: ${{ secrets.SLACK_GITHUB_ACTION }}
232
232
  with:
233
- channel: web-hub-tests
233
+ channel_id: C05S2C02JHM
234
234
  status: SUCCESS
235
235
  color: good
236
236
  - uses: voxmedia/github-action-slack-notify-build@v1
@@ -238,6 +238,6 @@ jobs:
238
238
  env:
239
239
  SLACK_BOT_TOKEN: ${{ secrets.SLACK_GITHUB_ACTION }}
240
240
  with:
241
- channel: web-hub-tests
241
+ channel_id: C05S2C02JHM
242
242
  status: FAILURE
243
243
  color: danger
@@ -1,63 +1,43 @@
1
1
  repos:
2
- - repo: https://github.com/pre-commit/pre-commit-hooks
3
- rev: v3.2.0
4
- hooks:
5
- - id: trailing-whitespace
6
- - id: end-of-file-fixer
7
- exclude: |
8
- (?x)(
9
- .github/workflows/latest-changes.jinja2
10
- )
11
- - id: check-yaml
12
- - id: check-added-large-files
13
- - repo: https://github.com/psf/black
14
- rev: 22.6.0
15
- hooks:
16
- - id: black-jupyter
17
- exclude: |
18
- (?x)(
19
- _check_instance_setup.py
20
- )
21
- - repo: https://github.com/pycqa/flake8
22
- rev: 4.0.1
23
- hooks:
24
- - id: flake8
25
- additional_dependencies:
26
- - flake8-black==0.3.3
27
- - flake8-typing-imports==1.10.0
28
- language_version: python3
29
- args:
30
- - --max-line-length=88
31
- - --ignore=E203,W503,BLK100,TYP001
32
- exclude: |
33
- (?x)(
34
- __init__.py
35
- )
36
2
  - repo: https://github.com/pre-commit/mirrors-prettier
37
- rev: v2.6.2
3
+ rev: v4.0.0-alpha.4
38
4
  hooks:
39
5
  - id: prettier
40
6
  exclude: |
41
7
  (?x)(
42
- .github/workflows/build.yml
8
+ docs/changelog.md
43
9
  )
44
10
  - repo: https://github.com/kynan/nbstripout
45
- rev: 0.3.9
11
+ rev: 0.6.1
46
12
  hooks:
47
13
  - id: nbstripout
48
14
  exclude: |
49
15
  (?x)(
50
16
  docs/examples/|
51
- docs/notes/|
52
- tests
17
+ docs/notes/
53
18
  )
54
- - repo: https://github.com/Lucas-C/pre-commit-hooks
55
- rev: v1.1.9
19
+ - repo: https://github.com/astral-sh/ruff-pre-commit
20
+ rev: v0.1.7
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
56
27
  hooks:
57
- - id: forbid-crlf
58
- - id: remove-crlf
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
59
39
  - repo: https://github.com/pre-commit/mirrors-mypy
60
- rev: v0.940
40
+ rev: v1.7.1
61
41
  hooks:
62
42
  - id: mypy
63
43
  exclude: |
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: lamindb_setup
3
- Version: 0.70.0
3
+ Version: 0.71.0
4
4
  Summary: Setup & configure LaminDB.
5
5
  Author-email: Lamin Labs <laminlabs@gmail.com>
6
6
  Description-Content-Type: text/markdown
@@ -14,7 +14,9 @@ Requires-Dist: requests
14
14
  Requires-Dist: universal_pathlib==0.1.4
15
15
  Requires-Dist: botocore<2.0.0
16
16
  Requires-Dist: supabase==2.2.1
17
- Requires-Dist: s3fs ; extra == "aws"
17
+ Requires-Dist: urllib3<2 ; extra == "aws"
18
+ Requires-Dist: aiobotocore[boto3]>=2.5.4,<3.0.0 ; extra == "aws"
19
+ Requires-Dist: s3fs>=2023.12.2,<=2024.3.1 ; extra == "aws"
18
20
  Requires-Dist: pyjwt<3.0.0 ; extra == "dev"
19
21
  Requires-Dist: psycopg2-binary ; extra == "dev"
20
22
  Requires-Dist: python-dotenv ; extra == "dev"
@@ -25,12 +27,12 @@ Requires-Dist: pytest-xdist ; extra == "dev"
25
27
  Requires-Dist: nbproject-test>=0.4.3 ; extra == "dev"
26
28
  Requires-Dist: pandas ; extra == "dev"
27
29
  Requires-Dist: django-schema-graph ; extra == "erdiagram"
28
- Requires-Dist: faker ; extra == "hub"
30
+ Requires-Dist: gcsfs>=2023.12.2,<=2024.3.1 ; extra == "gcp"
29
31
  Project-URL: Home, https://github.com/laminlabs/lamindb-setup
30
32
  Provides-Extra: aws
31
33
  Provides-Extra: dev
32
34
  Provides-Extra: erdiagram
33
- Provides-Extra: hub
35
+ Provides-Extra: gcp
34
36
 
35
37
  [![codecov](https://codecov.io/gh/laminlabs/lamindb-setup/branch/main/graph/badge.svg)](https://codecov.io/gh/laminlabs/lamindb-setup)
36
38
 
@@ -3,6 +3,16 @@
3
3
  <!-- prettier-ignore -->
4
4
  Name | PR | Developer | Date | Version
5
5
  --- | --- | --- | --- | ---
6
+ 🐛 Fix delete function | [741](https://github.com/laminlabs/lamindb-setup/pull/741) | [falexwolf](https://github.com/falexwolf) | 2024-04-30 | 0.71.0
7
+ ✨ Manage multiple storage locations with integrity | [738](https://github.com/laminlabs/lamindb-setup/pull/738) | [falexwolf](https://github.com/falexwolf) | 2024-04-30 |
8
+ ✨ Proper progress bars for upload and download | [739](https://github.com/laminlabs/lamindb-setup/pull/739) | [Koncopd](https://github.com/Koncopd) | 2024-04-28 |
9
+ ♻️ Truncate fsspec deps | [740](https://github.com/laminlabs/lamindb-setup/pull/740) | [Koncopd](https://github.com/Koncopd) | 2024-04-28 |
10
+ ♻️ Refactor storage management | [734](https://github.com/laminlabs/lamindb-setup/pull/734) | [falexwolf](https://github.com/falexwolf) | 2024-04-27 |
11
+ ⬆️ Upper and lower bounds for fsspec | [736](https://github.com/laminlabs/lamindb-setup/pull/736) | [Koncopd](https://github.com/Koncopd) | 2024-04-27 |
12
+ ♻️ Capitalize HOSTED | [733](https://github.com/laminlabs/lamindb-setup/pull/733) | [falexwolf](https://github.com/falexwolf) | 2024-04-26 |
13
+ ♻️ Refactor noxfile and manage `aws` extra here instead of in lamindb | [732](https://github.com/laminlabs/lamindb-setup/pull/732) | [falexwolf](https://github.com/falexwolf) | 2024-04-25 |
14
+ 🏷️ Add 3.10 types & ruff | [731](https://github.com/laminlabs/lamindb-setup/pull/731) | [falexwolf](https://github.com/falexwolf) | 2024-04-25 |
15
+ ♻️ Backward compat for older botocore | [730](https://github.com/laminlabs/lamindb-setup/pull/730) | [falexwolf](https://github.com/falexwolf) | 2024-04-25 |
6
16
  ✨ Introduce `local_storage` mode for cloud instances | [728](https://github.com/laminlabs/lamindb-setup/pull/728) | [falexwolf](https://github.com/falexwolf) | 2024-04-23 | 0.70.0
7
17
  🚚 Make `.uuid` attributes private | [727](https://github.com/laminlabs/lamindb-setup/pull/727) | [falexwolf](https://github.com/falexwolf) | 2024-04-23 |
8
18
  🚚 Rename `is_cloud` to `type_is_cloud` | [726](https://github.com/laminlabs/lamindb-setup/pull/726) | [falexwolf](https://github.com/falexwolf) | 2024-04-23 |
@@ -58,7 +58,7 @@
58
58
  "assert ln_setup.settings.storage.id is not None\n",
59
59
  "assert (\n",
60
60
  " ln_setup.settings.instance.db\n",
61
- " == f\"sqlite:///{Path('./mydata').resolve().as_posix()}/{ln_setup.settings.instance.id.hex}.lndb\"\n",
61
+ " == f\"sqlite:///{Path('./mydata').resolve().as_posix()}/{ln_setup.settings.instance._id.hex}.lndb\"\n",
62
62
  ")"
63
63
  ]
64
64
  },
@@ -100,7 +100,7 @@
100
100
  ")\n",
101
101
  "assert (\n",
102
102
  " ln_setup.settings.instance.db\n",
103
- " == f\"sqlite:///{Path('./mydata_new_loc').resolve().as_posix()}/{ln_setup.settings.instance.id.hex}.lndb\"\n",
103
+ " == f\"sqlite:///{Path('./mydata_new_loc').resolve().as_posix()}/{ln_setup.settings.instance._id.hex}.lndb\"\n",
104
104
  ")"
105
105
  ]
106
106
  },