Skip to content

Commit

Permalink
Bump lowest support Python version to 3.8.
Browse files Browse the repository at this point in the history
  • Loading branch information
alexdlaird committed Dec 3, 2023
1 parent f2f4be4 commit 4cd14c4
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 5 deletions.
16 changes: 13 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,24 @@ jobs:
build:
name: Build

runs-on: ubuntu-latest
strategy:
fail-fast: false
max-parallel: 3
matrix:
os: [ ubuntu-latest ]
python-version: [ "3.11" ]
include:
- python-version: "3.8"
os: ubuntu-20.04

runs-on: ${matrix.os}

steps:
- uses: actions/checkout@v2
- name: Set up Python 3.11
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.11
python-version: 3.8
- name: Install dependencies
run:
make install
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[![Build](https://github.com/heliumedu/platform/actions/workflows/build.yml/badge.svg)](https://github.com/heliumedu/platform/actions/workflows/build.yml)
[![Codecov](https://codecov.io/gh/HeliumEdu/platform/branch/master/graph/badge.svg)](https://codecov.io/gh/HeliumEdu/platform)
![Python Versions](https://img.shields.io/badge/python-%203.6%20|%203.7%20|%203.8%20|%203.9%20|%203.10%20|%203.11%20-blue)
![Python Versions](https://img.shields.io/badge/python-%203.8%20|%203.9%20|%203.10%20|%203.11%20-blue)
![GitHub License](https://img.shields.io/github/license/heliumedu/platform)

# Helium Platform Project
Expand All @@ -9,7 +9,7 @@

## Prerequisites

- Python (>= 3.6)
- Python (>= 3.8)
- Pip (>= 9.0)
- MySQL (>= 5.7)
- Redis (>= 3.2)
Expand Down

0 comments on commit 4cd14c4

Please sign in to comment.