Skip to content

Commit

Permalink
Merge pull request #16 from ChristianKuehnel/pyversions
Browse files Browse the repository at this point in the history
added more python versions updated extra dependencies in setup.py
  • Loading branch information
ChristianKuehnel committed Sep 28, 2019
2 parents 4b048e1 + 33bba66 commit 9080224
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
4 changes: 4 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,14 @@ language: python
matrix:
fast_finish: true
include:
- python: '3.4'
env: TOXENV=py34
- python: '3.5'
env: TOXENV=py35
- python: '3.6'
env: TOXENV=py36
- python: '3.7'
env: TOXENV=py37
- python: '3.6'
env: TOXENV=flake8
- python: '3.6'
Expand Down
10 changes: 8 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,17 @@ def readme():
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5'
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
packages=find_packages(),
keywords='bluetooth low-energy ble',
zip_safe=False,
extras_require={'testing': ['pytest']},
extras_require={
'testing': ['pytest'],
'bluepy': ['bluepy==1.2.0'],
'pygatt': ['pygatt==3.4.0'],
},
install_requires=['typing>=3,<4'],
)
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py35, py36, py37, pylint, flake8, noimport
envlist = py34, py35, py36, py37, pylint, flake8, noimport
skip_missing_interpreters = True

[testenv]
Expand Down

0 comments on commit 9080224

Please sign in to comment.