From 79fa56c99551378b533f67de5cde0cf6ce9f4b97 Mon Sep 17 00:00:00 2001 From: Maxim Morozov Date: Wed, 12 Nov 2025 12:50:28 +0000 Subject: [PATCH] Prep for Mac release --- .github/workflows/publish.yml | 5 -- CONTRIBUTORS.txt | 24 --------- README.md | 4 +- .../notebooks/ArcticDB_demo_snapshots.ipynb | 54 ------------------- 4 files changed, 2 insertions(+), 85 deletions(-) delete mode 100755 CONTRIBUTORS.txt diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index aa16ce61383..a144df2df9a 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -84,11 +84,6 @@ jobs: run-id: ${{ env.RUN_ID }} github-token: ${{github.token}} - - name: Skip uploading macos wheels for now - run: | - rm *macos*.whl - continue-on-error: true - - name: Upload to Pypi run: | ls diff --git a/CONTRIBUTORS.txt b/CONTRIBUTORS.txt deleted file mode 100755 index d4149046b1b..00000000000 --- a/CONTRIBUTORS.txt +++ /dev/null @@ -1,24 +0,0 @@ -Code authors (alphabetical order): - -Gem Dot Artigas -Qi Chen -Rafael Cunha De Almeida -William Dealtry -Aurelien Gonnay -Matthew Hertz -Shashank Khare -Tim Mace -Phoebus Mak -Alla Maher -Alex Seaton -Pat Verma -Alex Owens - -With thanks to: - -James Blackburn -Gordon Coughlan -Gary Collier -Abhi Thakur -Lucy Clark -Syra Sanghera diff --git a/README.md b/README.md index 1d92ba68134..40590102276 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ ArcticDB is designed from the outset to be resilient; there is no single point o | --------------------- | - | - | | Linux (Intel/AMD) | ✔️ | ✔️ | | Windows (Intel/AMD) | ✔️ | ➖ | -| MacOS | Beta | Beta️ | +| MacOS | ✔️ | ✔️ | For conda-forge see the [release-info](https://github.com/conda-forge/arcticdb-feedstock/?tab=readme-ov-file#current-release-info). @@ -59,7 +59,7 @@ For conda-forge see the [release-info](https://github.com/conda-forge/arcticdb-f | --------------------- | - | - | - | | S3 | ✔️ | ✔️ | ✔️ | | LMDB | ✔️ | ✔️ | ✔️ | -| Azure Blob Storage | ✔️ | ✔️ | ➖ | +| Azure Blob Storage | ✔️ | ✔️ | ✔️ | We have tested against the following S3 backends: - AWS S3 diff --git a/docs/mkdocs/docs/notebooks/ArcticDB_demo_snapshots.ipynb b/docs/mkdocs/docs/notebooks/ArcticDB_demo_snapshots.ipynb index 44ed8fcd8fc..3738a0d20b6 100644 --- a/docs/mkdocs/docs/notebooks/ArcticDB_demo_snapshots.ipynb +++ b/docs/mkdocs/docs/notebooks/ArcticDB_demo_snapshots.ipynb @@ -390,60 +390,6 @@ "print(vit.data)" ] }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### Although it works, we advise not to read snapshot versions directly using the version number\n", - "These versions only exist because they are in a snapshot, so it is much more obvious to code to access them via the snapshot.\n", - "\n", - "Accessing snapshot protected versions via the version number leads to code that will fail (if the snapshot is deleted) in a way that is difficult to understand." - ] - }, - { - "cell_type": "code", - "execution_count": 18, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "VersionedItem(symbol='sym_0', library='demo', data=, version=1, metadata=None, host='LMDB(path=/users/isys/nclarke/jupyter/arctic/demos/arcticdb_snapshot_demo)')\n", - " col\n", - "0 10\n" - ] - } - ], - "source": [ - "vit = lib.read(\"sym_0\", as_of=1)\n", - "print(vit)\n", - "print(vit.data)" - ] - }, - { - "cell_type": "code", - "execution_count": 19, - "metadata": {}, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "ERROR:root:Version not found\n" - ] - } - ], - "source": [ - "# version 0 was not in the snapshot, so it has been removed\n", - "try:\n", - " vit = lib.read(\"sym_0\", as_of=0)\n", - " print(vit)\n", - " print(vit.data)\n", - "except adb.exceptions.NoSuchVersionException:\n", - " logging.error(\"Version not found\")\n" - ] - }, { "cell_type": "markdown", "metadata": {},