This is an automated email from the ASF dual-hosted git repository. jmalkin pushed a commit to branch unpin_python_version in repository https://gitbox.apache.org/repos/asf/datasketches-python.git
commit bde2e4cb0e87648406f4294be019452da32aedac Author: Jon Malkin <[email protected]> AuthorDate: Tue Sep 12 10:35:05 2023 -0700 Update ci.yml Add comment to explain why/when we might need to temporarily pin a specific python version, but comment it out. Ideally we'd have a CI build against all actively support versions but that will require more ongoing maintenance. --- .github/workflows/ci.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ee691cd..fd9a4c2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -38,8 +38,11 @@ jobs: uses: actions/checkout@v3 - name: Set up Python 3.x uses: actions/setup-python@v4 - with: - python-version: '3.8' # 3.x grabs latest minor version of python3, but 3.9 not fully supported yet + # 3.x uses the latest minor version of python3. This may break briefly when there is a new version + # but dependent libraries (e.g. numpy) have not yet released a compatible update. + # May need to enable version pinning temporarily at times. + #with: + # python-version: '3.8' - name: Install Python dependencies run: python -m pip install --upgrade pip setuptools wheel tox - name: Build and run Python tests --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
