Skip to content
This repository has been archived by the owner on Jun 14, 2022. It is now read-only.

Commit

Permalink
Merge pull request #13 from erik/bump-versions
Browse files Browse the repository at this point in the history
Update dependency versions
  • Loading branch information
erik authored Oct 11, 2018
2 parents ac92cb1 + fdfe6a3 commit cd6a71d
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 18 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ notifications:
language: python
python:
- "2.7"
- "3.5"
- "3.6"
install:
- pip install .
- pip install -r requirements.txt
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ alexandra
|Build Status|

Minimal Python library to remove the tedious boilerplate-y parts of
writing Alexa skills. Alexandra is tested against Python 2.7 and 3.5.1.
writing Alexa skills. Alexandra is tested against Python 2.7 and 3.6.

Alexandra can be used as part of an AWS lambda function or a self-hosted
server. There's a builtin WSGI app if you're in to that kind of thing.
Expand Down
30 changes: 17 additions & 13 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,14 +1,18 @@
cffi==1.9.1
cryptography==1.7.1
enum34==1.1.6
idna==2.2
ipaddress==1.0.17
pluggy==0.4.0
py==1.4.32
pyasn1==0.1.9
pycparser==2.17
pyOpenSSL==16.2.0
pytest==3.0.5
six==1.10.0
tox==2.5.0
asn1crypto==0.24.0
atomicwrites==1.2.1
attrs==18.2.0
cffi==1.11.5
cryptography==2.3.1
filelock==3.0.9
idna==2.7
more-itertools==4.3.0
pluggy==0.7.1
py==1.6.0
pycparser==2.19
pyOpenSSL==17.5.0
pytest==3.8.2
six==1.11.0
toml==0.10.0
tox==3.5.2
virtualenv==16.0.0
Werkzeug==0.11.4
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
'Intended Audience :: Developers',
'License :: OSI Approved :: ISC License (ISCL)',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Home Automation',
'Topic :: Internet :: WWW/HTTP :: WSGI :: Application',
'Topic :: Software Development :: Libraries :: Application Frameworks',
Expand All @@ -21,6 +21,6 @@
test_requires=['tox'],
install_requires=[
'Werkzeug==0.11.4',
'pyOpenssl==16.2.0'
'pyOpenssl==17.5.0'
]
)
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# and then run "tox" from this directory.

[tox]
envlist = py27, py35
envlist = py27, py36

[testenv]
deps = pytest
Expand Down

0 comments on commit cd6a71d

Please sign in to comment.