vost 0.62.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.
- vost-0.62.0/.github/workflows/publish.yml +17 -0
- vost-0.62.0/.gitignore +7 -0
- vost-0.62.0/.readthedocs.yaml +12 -0
- vost-0.62.0/CHANGELOG.md +1025 -0
- vost-0.62.0/LICENSE +191 -0
- vost-0.62.0/Makefile +18 -0
- vost-0.62.0/PKG-INFO +488 -0
- vost-0.62.0/README.md +454 -0
- vost-0.62.0/docs/api.md +256 -0
- vost-0.62.0/docs/cli.md +803 -0
- vost-0.62.0/docs/drop-compat-layer.md +295 -0
- vost-0.62.0/docs/index.md +32 -0
- vost-0.62.0/docs/paths.md +566 -0
- vost-0.62.0/docs/sqlite-backend-migration.md +187 -0
- vost-0.62.0/docs/testing.md +132 -0
- vost-0.62.0/interop/fixtures.json +69 -0
- vost-0.62.0/interop/py_read_test.py +198 -0
- vost-0.62.0/interop/py_write.py +65 -0
- vost-0.62.0/interop/run.sh +63 -0
- vost-0.62.0/interop/ts_read.test.ts +258 -0
- vost-0.62.0/interop/ts_write.ts +94 -0
- vost-0.62.0/mkdocs.yml +42 -0
- vost-0.62.0/pyproject.toml +58 -0
- vost-0.62.0/requirements-docs.txt +2 -0
- vost-0.62.0/rs/.gitignore +1 -0
- vost-0.62.0/rs/Cargo.lock +2153 -0
- vost-0.62.0/rs/Cargo.toml +33 -0
- vost-0.62.0/rs/LICENSE +191 -0
- vost-0.62.0/rs/README.md +27 -0
- vost-0.62.0/rs/examples/rs_read.rs +383 -0
- vost-0.62.0/rs/examples/rs_write.rs +126 -0
- vost-0.62.0/rs/src/batch.rs +144 -0
- vost-0.62.0/rs/src/copy.rs +648 -0
- vost-0.62.0/rs/src/error.rs +121 -0
- vost-0.62.0/rs/src/fileobj.rs +172 -0
- vost-0.62.0/rs/src/fs.rs +1995 -0
- vost-0.62.0/rs/src/glob.rs +75 -0
- vost-0.62.0/rs/src/lib.rs +59 -0
- vost-0.62.0/rs/src/lock.rs +32 -0
- vost-0.62.0/rs/src/mirror.rs +31 -0
- vost-0.62.0/rs/src/notes.rs +603 -0
- vost-0.62.0/rs/src/paths.rs +191 -0
- vost-0.62.0/rs/src/refdict.rs +376 -0
- vost-0.62.0/rs/src/reflog.rs +100 -0
- vost-0.62.0/rs/src/store.rs +202 -0
- vost-0.62.0/rs/src/tree.rs +450 -0
- vost-0.62.0/rs/src/types.rs +478 -0
- vost-0.62.0/rs/tests/common/mod.rs +25 -0
- vost-0.62.0/rs/tests/integration.rs +229 -0
- vost-0.62.0/rs/tests/test_apply.rs +546 -0
- vost-0.62.0/rs/tests/test_batch.rs +557 -0
- vost-0.62.0/rs/tests/test_copy.rs +1015 -0
- vost-0.62.0/rs/tests/test_copy_from_ref.rs +660 -0
- vost-0.62.0/rs/tests/test_fileobj.rs +123 -0
- vost-0.62.0/rs/tests/test_fs_read.rs +494 -0
- vost-0.62.0/rs/tests/test_fs_write.rs +834 -0
- vost-0.62.0/rs/tests/test_glob.rs +315 -0
- vost-0.62.0/rs/tests/test_history.rs +1124 -0
- vost-0.62.0/rs/tests/test_move.rs +356 -0
- vost-0.62.0/rs/tests/test_notes.rs +754 -0
- vost-0.62.0/rs/tests/test_stat.rs +310 -0
- vost-0.62.0/rs/tests/test_store.rs +656 -0
- vost-0.62.0/rs/tests/test_types.rs +256 -0
- vost-0.62.0/scripts/test-parity.sh +100 -0
- vost-0.62.0/src/vost/__init__.py +20 -0
- vost-0.62.0/src/vost/_exclude.py +121 -0
- vost-0.62.0/src/vost/_fileobj.py +111 -0
- vost-0.62.0/src/vost/_fuse.py +202 -0
- vost-0.62.0/src/vost/_glob.py +16 -0
- vost-0.62.0/src/vost/_lock.py +76 -0
- vost-0.62.0/src/vost/_objsize.py +107 -0
- vost-0.62.0/src/vost/batch.py +197 -0
- vost-0.62.0/src/vost/cli/__init__.py +6 -0
- vost-0.62.0/src/vost/cli/_archive.py +382 -0
- vost-0.62.0/src/vost/cli/_basic.py +1059 -0
- vost-0.62.0/src/vost/cli/_cp.py +522 -0
- vost-0.62.0/src/vost/cli/_helpers.py +611 -0
- vost-0.62.0/src/vost/cli/_mirror.py +98 -0
- vost-0.62.0/src/vost/cli/_mount.py +79 -0
- vost-0.62.0/src/vost/cli/_notes.py +133 -0
- vost-0.62.0/src/vost/cli/_refs.py +235 -0
- vost-0.62.0/src/vost/cli/_serve.py +75 -0
- vost-0.62.0/src/vost/cli/_sync.py +318 -0
- vost-0.62.0/src/vost/cli/_watch.py +80 -0
- vost-0.62.0/src/vost/cli/_web.py +414 -0
- vost-0.62.0/src/vost/copy/__init__.py +56 -0
- vost-0.62.0/src/vost/copy/_io.py +187 -0
- vost-0.62.0/src/vost/copy/_ops.py +1079 -0
- vost-0.62.0/src/vost/copy/_resolve.py +469 -0
- vost-0.62.0/src/vost/copy/_types.py +207 -0
- vost-0.62.0/src/vost/exceptions.py +9 -0
- vost-0.62.0/src/vost/fs.py +1471 -0
- vost-0.62.0/src/vost/mirror.py +303 -0
- vost-0.62.0/src/vost/notes.py +451 -0
- vost-0.62.0/src/vost/py.typed +0 -0
- vost-0.62.0/src/vost/repo.py +598 -0
- vost-0.62.0/src/vost/tree.py +353 -0
- vost-0.62.0/tests/__init__.py +0 -0
- vost-0.62.0/tests/conftest.py +100 -0
- vost-0.62.0/tests/test_apply.py +306 -0
- vost-0.62.0/tests/test_auto_create.py +295 -0
- vost-0.62.0/tests/test_backup_restore.py +277 -0
- vost-0.62.0/tests/test_batch.py +266 -0
- vost-0.62.0/tests/test_cli.py +1014 -0
- vost-0.62.0/tests/test_cli_archive.py +996 -0
- vost-0.62.0/tests/test_cli_cp.py +1231 -0
- vost-0.62.0/tests/test_cli_ls.py +365 -0
- vost-0.62.0/tests/test_cli_refs.py +631 -0
- vost-0.62.0/tests/test_cli_web.py +827 -0
- vost-0.62.0/tests/test_cmp_cli.py +231 -0
- vost-0.62.0/tests/test_copy.py +1504 -0
- vost-0.62.0/tests/test_copy_from_ref.py +389 -0
- vost-0.62.0/tests/test_exclude.py +258 -0
- vost-0.62.0/tests/test_fileobj.py +107 -0
- vost-0.62.0/tests/test_fs_read.py +304 -0
- vost-0.62.0/tests/test_fs_write.py +710 -0
- vost-0.62.0/tests/test_fuse.py +318 -0
- vost-0.62.0/tests/test_glob.py +229 -0
- vost-0.62.0/tests/test_head.py +171 -0
- vost-0.62.0/tests/test_history.py +206 -0
- vost-0.62.0/tests/test_integration.py +36 -0
- vost-0.62.0/tests/test_message.py +95 -0
- vost-0.62.0/tests/test_move.py +120 -0
- vost-0.62.0/tests/test_notes.py +485 -0
- vost-0.62.0/tests/test_objsize.py +117 -0
- vost-0.62.0/tests/test_ref_path.py +834 -0
- vost-0.62.0/tests/test_repo.py +300 -0
- vost-0.62.0/tests/test_serve.py +154 -0
- vost-0.62.0/tests/test_stat.py +290 -0
- vost-0.62.0/tests/test_sync.py +1490 -0
- vost-0.62.0/tests/test_sync_api.py +169 -0
- vost-0.62.0/tests/test_tree.py +191 -0
- vost-0.62.0/tests/test_watch.py +215 -0
- vost-0.62.0/ts/.gitignore +2 -0
- vost-0.62.0/ts/README.md +24 -0
- vost-0.62.0/ts/deno.json +9 -0
- vost-0.62.0/ts/deno.lock +953 -0
- vost-0.62.0/ts/package-lock.json +2347 -0
- vost-0.62.0/ts/package.json +58 -0
- vost-0.62.0/ts/src/batch.ts +191 -0
- vost-0.62.0/ts/src/copy.ts +1387 -0
- vost-0.62.0/ts/src/fileobj.ts +135 -0
- vost-0.62.0/ts/src/fs.ts +1575 -0
- vost-0.62.0/ts/src/gitstore.ts +162 -0
- vost-0.62.0/ts/src/glob.ts +65 -0
- vost-0.62.0/ts/src/index.ts +86 -0
- vost-0.62.0/ts/src/lock.ts +81 -0
- vost-0.62.0/ts/src/mirror.ts +216 -0
- vost-0.62.0/ts/src/notes.ts +571 -0
- vost-0.62.0/ts/src/paths.ts +42 -0
- vost-0.62.0/ts/src/refdict.ts +291 -0
- vost-0.62.0/ts/src/reflog.ts +93 -0
- vost-0.62.0/ts/src/tree.ts +373 -0
- vost-0.62.0/ts/src/types.ts +516 -0
- vost-0.62.0/ts/tests/apply.test.ts +229 -0
- vost-0.62.0/ts/tests/batch.test.ts +231 -0
- vost-0.62.0/ts/tests/copy-from-ref.test.ts +412 -0
- vost-0.62.0/ts/tests/copy.test.ts +794 -0
- vost-0.62.0/ts/tests/deno_compat_test.ts +589 -0
- vost-0.62.0/ts/tests/fileobj.test.ts +117 -0
- vost-0.62.0/ts/tests/fs-read.test.ts +355 -0
- vost-0.62.0/ts/tests/fs-write.test.ts +527 -0
- vost-0.62.0/ts/tests/glob.test.ts +214 -0
- vost-0.62.0/ts/tests/head.test.ts +44 -0
- vost-0.62.0/ts/tests/helpers.ts +64 -0
- vost-0.62.0/ts/tests/history.test.ts +148 -0
- vost-0.62.0/ts/tests/integration.test.ts +19 -0
- vost-0.62.0/ts/tests/message.test.ts +132 -0
- vost-0.62.0/ts/tests/move.test.ts +161 -0
- vost-0.62.0/ts/tests/notes.test.ts +543 -0
- vost-0.62.0/ts/tests/repo.test.ts +301 -0
- vost-0.62.0/ts/tests/stat.test.ts +253 -0
- vost-0.62.0/ts/tests/sync-api.test.ts +32 -0
- vost-0.62.0/ts/tests/sync.test.ts +1253 -0
- vost-0.62.0/ts/tests/tree.test.ts +230 -0
- vost-0.62.0/ts/tests/typecheck.test.ts +21 -0
- vost-0.62.0/ts/tests/validation.test.ts +69 -0
- vost-0.62.0/ts/tsconfig.json +18 -0
- vost-0.62.0/ts/vitest.config.ts +9 -0
- vost-0.62.0/uv.lock +371 -0
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
name: Publish to PyPI
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
tags:
|
|
6
|
+
- "v*"
|
|
7
|
+
|
|
8
|
+
jobs:
|
|
9
|
+
publish:
|
|
10
|
+
runs-on: ubuntu-latest
|
|
11
|
+
permissions:
|
|
12
|
+
id-token: write
|
|
13
|
+
steps:
|
|
14
|
+
- uses: actions/checkout@v4
|
|
15
|
+
- uses: astral-sh/setup-uv@v5
|
|
16
|
+
- run: uv build
|
|
17
|
+
- uses: pypa/gh-action-pypi-publish@release/v1
|
vost-0.62.0/.gitignore
ADDED