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

[ci] [python-package] Add CI job testing compatibility with oldest possible versions #5936

Merged
merged 16 commits into from
Jul 6, 2023
Prev Previous commit
Next Next commit
run directly on VM
  • Loading branch information
jameslamb committed Jun 23, 2023
commit be647832294045f2dc659ba2fd0cf63ebe4eab48
12 changes: 6 additions & 6 deletions .github/workflows/python_package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,6 @@ jobs:
test-oldest-versions:
name: Python - oldest supported versions (ubuntu-latest)
runs-on: ubuntu-latest
container: 'python:3.6'
timeout-minutes: 60
steps:
- name: Checkout repository
Expand All @@ -99,11 +98,12 @@ jobs:
# "$(. /etc/os-release && echo "$VERSION_CODENAME")" stable" | \
# tee /etc/apt/sources.list.d/docker.list > /dev/null

apt-get update
apt-get install -y --no-install-recommends \
docker-ce \
docker-ce-cli \
containerd.io
# apt-get update
# apt-get install -y --no-install-recommends \
# docker-ce \
# docker-ce-cli \
# containerd.io
echo "this is unnecessary"
- name: Create wheel
run: |
docker run \
Expand Down