Skip to content

Commit 51fb474

Browse files
Merge pull request #44 from web-push-libs/feat/43
feat: update setup to use min valid cryptography lib
2 parents 7af350d + 423a5db commit 51fb474

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

circle.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ machine:
44
python:
55
version: 3.5.2
66
post:
7-
- pyenv global 2.7.12 3.4.4 3.5.2 3.6.0
7+
- pyenv global 2.7.12 3.4.4 3.5.2
88

99
dependencies:
1010
cache_directories:

python/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
setup(
1212
name='http_ece',
13-
version='1.0.1',
13+
version='1.1.0',
1414
author='Martin Thomson',
1515
author_email='[email protected]',
1616
scripts=[],
@@ -27,7 +27,7 @@
2727
],
2828
keywords='crypto http',
2929
install_requires=[
30-
'cryptography~=1.9',
30+
'cryptography>=1.9',
3131
],
3232
tests_require=[
3333
'nose',

python/tox.ini

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,13 @@
44
# and then run "tox" from this directory.
55

66
[tox]
7-
envlist = py27,py34,py35,py36
7+
envlist = py27,py34,py35
88

99
[testenv]
1010
basepython =
1111
py27: python2.7
1212
py34: python3.4
1313
py35: python3.5
14-
py36: python3.6
1514
commands =
1615
nosetests \
1716
[]

0 commit comments

Comments
 (0)