Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions mkdocs/docs/SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
- Releases
- [Verify a release](verify-release.md)
- [How to release](how-to-release.md)
- [Nightly Build](nightly-build.md)
- [Release Notes](https://github.com/apache/iceberg-python/releases)
Comment thread
kevinjqliu marked this conversation as resolved.
Outdated
- [Code Reference](reference/)

Expand Down
28 changes: 28 additions & 0 deletions mkdocs/docs/nightly-build.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<!--
- Licensed to the Apache Software Foundation (ASF) under one
- or more contributor license agreements. See the NOTICE file
- distributed with this work for additional information
- regarding copyright ownership. The ASF licenses this file
- to you under the Apache License, Version 2.0 (the
- "License"); you may not use this file except in compliance
- with the License. You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing,
- software distributed under the License is distributed on an
- "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- KIND, either express or implied. See the License for the
- specific language governing permissions and limitations
- under the License.
-->

# Nightly Build

A nightly build of PyIceberg is available on testpypi, [https://test.pypi.org/project/pyiceberg/](https://test.pypi.org/project/pyiceberg/).
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should we add a line to make it explicit that it is only for testing purposes, see release-policy. I would also include a warning that it hasn't been validated, so there is also a risk of using this (both legal issues with licenses, and potential bugs).


To install the nightly build,

```shell
pip install -i https://test.pypi.org/simple/ --pre pyiceberg
```