module: support Python 3 only

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

View File

@ -16,7 +16,6 @@ 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'

View File

@ -11,7 +11,7 @@ license = "MIT"
homepage = "https://dev.mycrobase.de/gitea/cn/python-veml6070"
[tool.poetry.dependencies]
python = "^2.7 || ^3.4"
python = "^3.4"
smbus2 = "*"
[tool.poetry.dev-dependencies]

View File

@ -14,7 +14,7 @@ import veml6070 # pylint: disable=wrong-import-position
# inspired by https://github.com/adafruit/Adafruit_Python_GPIO/blob/master/Adafruit_GPIO/I2C.py
class MockSMBus(object): # pylint: disable=bad-option-value,useless-object-inheritance
class MockSMBus():
def __init__(self, initial_read=None):
self._log = []
self.initial_read = initial_read or {}

View File

@ -31,7 +31,7 @@ NORMALIZED_REFRESHTIME = 0.1
NORMALIZED_UVA_SENSITIVITY = 0.05
class Veml6070(object): # pylint: disable=bad-option-value,useless-object-inheritance
class Veml6070():
def __init__(self, i2c_bus=1, sensor_address=ADDR_L, rset=RSET_270K, integration_time=INTEGRATIONTIME_1T):
self.bus = smbus.SMBus(i2c_bus)
self.sendor_address = sensor_address