Each Apache PyIceberg release is validated by the community by holding a vote. A community release manager will prepare a release candidate and call a vote on the Iceberg dev list. To validate the release candidate, community members will test it out in their downstream projects and environments.
In addition to testing in downstream projects, community members also check the release’s signatures, checksums, and license documentation.
Release announcements include links to the following:
After downloading the source tarball, signature, checksum, and KEYS file, here are instructions on how to verify signatures, checksums, and documentation.
First, import the keys.
curl https://dist.apache.org/repos/dist/dev/iceberg/KEYS -o KEYS gpg --import KEYS
Next, verify the .asc
file.
gpg --verify pyiceberg-0.2.0rc0-py3-none-any.whl.asc pyiceberg-0.2.0rc0-py3-none-any.whl
shasum -a 512 pyiceberg-0.2.0rc0.tar.gz
tar xzf pyiceberg-0.2.0rc0.tar.gztar cd pyiceberg-0.2.0
Run RAT checks to validate license header:
./dev/check-license
This section explains how to run the tests of the source distribution.
!!! note “Clean environment” To make sure that your environment is fresh is to run the tests in a new Docker container: docker run -t -i -v $(pwd):/pyiceberg/ python:3.9 bash
. And change directory: cd /pyiceberg/
.
First step is to install the package:
make install
And then run the tests:
make test
To run the full integration tests:
make test-s3
This will include a Minio S3 container being spun up.
Votes are cast by replying to the release candidate announcement email on the dev mailing list with either +1
, 0
, or -1
.
[ ] +1 Release this as Apache Iceberg 1.1.0 [ ] +0 [ ] -1 Do not release this because…
In addition to your vote, it’s customary to specify if your vote is binding or non-binding. Only members of the Project Management Committee have formally binding votes. If you’re unsure, you can specify that your vote is non-binding. To read more about voting in the Apache framework, checkout the Voting information page on the Apache foundation’s website.