1
0
mirror of https://github.com/cmur2/python-bme280.git synced 2025-07-04 09:11:18 +02:00

module: support Python 3 only

This commit is contained in:
cn
2019-12-15 23:12:15 +01:00
parent 9d88df942a
commit c5fd84e4b9
5 changed files with 8 additions and 26 deletions

View File

@ -3,26 +3,21 @@ name: ci
on:
push:
branches: [master, three]
branches: [master]
pull_request:
branches: [master, three]
branches: [master]
workflow_dispatch:
schedule:
- cron: '41 4 * * 4' # weekly on thursday morning
jobs:
build:
runs-on: ubuntu-18.04
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version:
- '2.7'
# Python 3.4 on GHA doesn't work due to fastdiff==0.2.0 failing with:
# pkg_resources.DistributionNotFound: The 'setuptools_scm>=1.15.0' distribution was not found and is required by the application
#- '3.4'
- '3.5'
- '3.7'
- '3.8'
- '3.9'
steps:
- uses: actions/checkout@v2