Skip to content

Commit f134019

Browse files
authored
Merge pull request #15 from kattni/pypi-fixes
PyPi fix, linting.
2 parents 90c83ba + 423d1b8 commit f134019

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.travis.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ python:
66
cache:
77
pip: true
88
deploy:
9-
provider: releases
9+
- provider: releases
1010
api_key: "$GITHUB_TOKEN"
1111
file_glob: true
1212
file: "$TRAVIS_BUILD_DIR/bundles/*"
@@ -23,6 +23,7 @@ deploy:
2323
install:
2424
- pip install -r requirements.txt
2525
- pip install pylint circuitpython-build-tools Sphinx sphinx-rtd-theme
26+
- pip install --force-reinstall pylint==1.9.2
2627
script:
2728
- pylint adafruit_pca9685.py
2829
- ([[ ! -d "examples" ]] || pylint --disable=missing-docstring,invalid-name examples/*.py)

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,9 @@
5252
],
5353

5454
# What does your project relate to?
55-
keywords='adafruit pca9865 hardware micropython circuitpython',
55+
keywords='adafruit pca9865 motor stepper servo hardware micropython circuitpython',
5656

5757
# You can just specify the packages manually here if your project is
5858
# simple. Or you can use find_packages().
5959
py_modules=['adafruit_pca9865'],
60-
)
60+
)

0 commit comments

Comments
 (0)