Skip to content

Commit df225d3

Browse files
authored
Version bump 0.7.0rc2->0.7.0 (#510)
* Version bump 0.7.0rc2->0.7.0 Preparing diskannpy for 0.7.0 release (filter support, static memory indices only) * Update pyproject.toml the GPG key from (presumably) 2019 is no longer valid * Update pyproject.toml * Update python-release.yml By default, GITHUB_TOKEN no longer has write permissions - you have to explicitly ask for it in the specific job that needs it. We use write permissions to update the Github release action that updates the published build artifacts with the results of the release flow.
1 parent 13df0cf commit df225d3

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.github/workflows/python-release.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ jobs:
1212
name: DiskANN Build Documentation
1313
uses: ./.github/workflows/build-python-pdoc.yml
1414
release:
15+
permissions:
16+
contents: write
1517
runs-on: ubuntu-latest
1618
needs: python-release-wheels
1719
steps:

pyproject.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ build-backend = "setuptools.build_meta"
1111

1212
[project]
1313
name = "diskannpy"
14-
version = "0.7.0rc2"
14+
version = "0.7.0"
1515

1616
description = "DiskANN Python extension module"
1717
readme = "python/README.md"
@@ -48,9 +48,10 @@ test-command = "python -m unittest discover {project}/python/tests"
4848
[tool.cibuildwheel.linux]
4949
before-build = [
5050
"dnf makecache --refresh",
51+
"dnf upgrade -y almalinux-release",
5152
"dnf install -y epel-release",
5253
"dnf config-manager -y --add-repo https://yum.repos.intel.com/mkl/setup/intel-mkl.repo",
53-
"rpm --import https://yum.repos.intel.com/intel-gpg-keys/GPG-PUB-KEY-INTEL-SW-PRODUCTS-2019.PUB",
54+
"rpm --import https://yum.repos.intel.com/intel-gpg-keys/GPG-PUB-KEY-INTEL-SW-PRODUCTS.PUB",
5455
"dnf makecache --refresh -y",
5556
"dnf install -y wget make cmake gcc-c++ libaio-devel gperftools-libs libunwind-devel clang-tools-extra boost-devel boost-program-options intel-mkl-2020.4-912"
5657
]

0 commit comments

Comments
 (0)