Skip to content

Commit 0c0fa36

Browse files
Unpin test dependencies. (#196)
1 parent cd7a171 commit 0c0fa36

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,4 @@ build/
55
*.pyc
66
/.tox
77
.DS_Store
8+
.pytest_cache

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ services:
1111
- redis-server
1212

1313
install:
14+
- pip install -U pytest # Travis comes with an old version pre-installed.
1415
- pip install -e .[tests]
1516
- pip freeze
1617

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@
1010
crypto_requires = ["cryptography>=1.3.0"]
1111

1212
test_requires = crypto_requires + [
13-
"pytest~=5.4.0",
14-
"pytest-asyncio~=0.8",
15-
"async_generator~=1.8",
16-
"async-timeout~=2.0",
13+
"pytest",
14+
"pytest-asyncio",
15+
"async_generator",
16+
"async-timeout",
1717
]
1818

1919

0 commit comments

Comments
 (0)