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:
13
.github/workflows/ci.yml
vendored
13
.github/workflows/ci.yml
vendored
@ -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
|
||||
|
Reference in New Issue
Block a user