1
0
mirror of https://github.com/cmur2/python-veml6070.git synced 2025-09-18 11:52:01 +02:00

module: support Python 3 only

This commit is contained in:
cn
2019-12-18 19:57:23 +01:00
parent 4f16e38129
commit e0f9b327f5
7 changed files with 7 additions and 35 deletions

View File

@@ -3,9 +3,9 @@ name: ci
on:
push:
branches: [master, three]
branches: [master]
pull_request:
branches: [master, three]
branches: [master]
workflow_dispatch:
schedule:
- cron: '37 4 * * 4' # weekly on thursday morning
@@ -16,12 +16,8 @@ jobs:
strategy:
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