Skip to content

Commit

Permalink
Merge pull request #4533 from voxel51/chore/db-ubuntu-24.04
Browse files Browse the repository at this point in the history
Add Ubuntu 24.04 `fiftyone-db` support
  • Loading branch information
benjaminpkane authored Jul 1, 2024
2 parents c1132ec + 03518bc commit 142ecea
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/build-db.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,10 @@ jobs:
python -Im build --sdist
- name: Upload
uses: actions/upload-artifact@v3
if: ${{ matrix.platform == 'sdist' }}
with:
name: dist-${{ matrix.platform }}
path: package/db/dist/*
path: package/db/dist/*.tar.gz
- name: Upload wheel
if: ${{ matrix.platform != 'sdist' }}
uses: actions/upload-artifact@v3
Expand Down
6 changes: 5 additions & 1 deletion package/db/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,10 @@
"aarch64": "https://fastdl.mongodb.org/linux/mongodb-linux-aarch64-ubuntu2204-7.0.4.tgz",
"x86_64": "https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-ubuntu2204-7.0.4.tgz",
},
"24": {
"aarch64": "https://fastdl.mongodb.org/linux/mongodb-linux-aarch64-ubuntu2204-7.0.4.tgz",
"x86_64": "https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-ubuntu2204-7.0.4.tgz",
},
},
}

Expand Down Expand Up @@ -139,7 +143,7 @@ def _get_download():
MONGODB_BINARIES = ["mongod"]


VERSION = "1.1.3"
VERSION = "1.1.4"


def get_version():
Expand Down

0 comments on commit 142ecea

Please sign in to comment.