Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update poetry test of oldest supported python version to 3.8 #7691

Merged
merged 1 commit into from
Aug 1, 2023

Commits on Aug 1, 2023

  1. Update poetry test of oldest supported python version to 3.8

    This test ensures that the installed version of `poetry` works as
    expected with the oldest version of python currently supported by
    Dependabot. It (hopefully) prevents us from installing newer poetry
    versions that don't have support for older python versions.
    
    In just a couple of weeks we will be deprecating Python 3.6/3.7... So
    3.8 will become the oldest version of Python supported by Dependabot.
    
    So update the test accordingly.
    
    To update I ran the following commands:
    ```shell
    bin/docker-dev-shell python
    pyenv install 3.8.17  # matches the version available to be installed from the `python/Dockerfile`
    PYENV_VERSION=3.8.17 pyenv exec pip install --upgrade pip
    PYENV_VERSION=3.8.17 pyenv exec pip install poetry
    PYENV_VERSION=3.8.17 pyenv exec poetry lock --no-update
    ```
    jeffwidman committed Aug 1, 2023
    Configuration menu
    Copy the full SHA
    4691a6b View commit details
    Browse the repository at this point in the history