Skip to content
This repository was archived by the owner on Apr 14, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
language: python
sudo: false
python:
- '3.5'
- '2.7'
- '3.4'
- '3.5'
- '3.6'
cache:
directories:
- "$HOME/.cache/pip"
- ".tox"
install:
- pip install tox
install: pip install tox-travis
script: tox --recreate
deploy:
provider: pypi
Expand Down
3 changes: 2 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ Release History
V3.2.1
------

- Feature: Permit use of non-standard characteristics in reserved range (#140)
- Improvement: Officially support Python 3.6.
- Improvement: Permit use of non-standard characteristics in reserved range (#140)

V3.2.0
------
Expand Down
7 changes: 3 additions & 4 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,10 @@ leaves something to be desired and only works in Linux.
Requirements
------------

- Python 2.7
- Python 2.7.5 or greater, or Python 3.5 or greater

- The latest version is recommended. Earlier versions (for example
2.7.3) will not connect to the USB adapter at all and fail during
``struct.unpack`` calls.
- Python 2.7.3's ``struct`` library has a bug that will break PyGATT - 2.7.5
or greater is recommended.

- BlueZ 5.18 or greater (with gatttool) - required for the gatttool
backend only.
Expand Down
4 changes: 3 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@

[tox]
envlist = py27
py34
py35
py36

[testenv]
sitepackages=False
Expand All @@ -16,4 +18,4 @@ deps = -r{toxinidir}/requirements.txt

[flake8]
max-line-length = 80
exclude=*.egg,.eggs,.tox,./lib,./bin,./env,./env3.5
exclude=*.egg,.eggs,.tox,./lib,./bin,./env,./env3.5,./env3.4,./env3.6