1
0
mirror of https://github.com/cmur2/python-veml6070.git synced 2026-04-04 08:18:30 +02:00

module: support Python 3 only

This commit is contained in:
cn
2019-12-18 19:57:23 +01:00
parent 40bdf7fd6a
commit 86926c5ff0
9 changed files with 52 additions and 594 deletions

10
Pipfile
View File

@@ -1,14 +1,16 @@
[[source]]
url = 'https://pypi.python.org/simple'
[requires]
python_version = '2.7'
#[requires]
#python_version = '3.x' # Note: not possivle, use pipenv install --three --dev
[packages]
smbus2 = '*'
[dev-packages]
mock = '*'
pylint = '< 2'
pytest = '< 5'
pylint = '*'
pytest = '*'
snapshottest = '*'
rope = '*'
yapf = '*'