Skip to content

Commit

Permalink
Removed Python 3.8 from the build matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
jmwright committed Jan 16, 2024
1 parent 1831823 commit f4c2498
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-vtk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
matrix:
os: [ 'ubuntu-20.04' ]
python-version: [ '3.8', '3.9', '3.10', '3.11', '3.12' ]
python-version: [ '3.9', '3.10', '3.11', '3.12' ]

steps:
- name: Checkout project
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-wheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
matrix:
os: [ 'ubuntu-22.04', 'macos-11', 'windows-2019' ]
python-version: [ '3.8', '3.9', '3.10', '3.11', '3.12' ]
python-version: [ '3.9', '3.10', '3.11', '3.12' ]

steps:

Expand Down
2 changes: 1 addition & 1 deletion local-build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ function info() {

trap "info Exited!; exit;" SIGINT SIGTERM

for python_version in '3.8' '3.9' '3.10' '3.11' '3.12'
for python_version in '3.9' '3.10' '3.11' '3.12'
do
info "Building wheel for Python $python_version..."
info "Removing temp files..."
Expand Down

0 comments on commit f4c2498

Please sign in to comment.