Skip to content

Commit 669a555

Browse files
authored
Merge pull request #39 from mylokin/master
Update dependencies for python 2.7
2 parents e1a8bb9 + 7a3c7a2 commit 669a555

3 files changed

Lines changed: 7 additions & 10 deletions

File tree

.travis.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
language: python
22
python:
33
- "2.7"
4-
- "pypy"
54
before_install:
6-
- pip install --upgrade flake8 pytest coveralls
5+
- pip install --upgrade flake8==3.9.2 pytest==4.6.11 pytest-runner==5.2 coveralls==1.10.0
76
- flake8 .
87
install:
98
- pip install .

restea/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '0.3.9'
1+
__version__ = '0.3.10'

setup.py

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
setup(
88
name='restea',
99
packages=['restea', 'restea.adapters'],
10-
version='0.3.9',
10+
version='0.3.10',
1111
description='Simple RESTful server toolkit',
1212
long_description=readme_content,
1313
author='Walery Jadlowski',
@@ -17,13 +17,11 @@
1717
install_requires=[
1818
'future==0.16.0',
1919
],
20-
setup_requires=[
21-
'pytest-runner',
22-
],
2320
tests_require=[
24-
'pytest',
25-
'pytest-cov',
26-
'pytest-mock',
21+
'pytest==4.6.11',
22+
'pytest-cov==2.12.0',
23+
'pytest-mock==2.0.0',
24+
'mock==3.0.5',
2725
],
2826
license='MIT',
2927
classifiers=[

0 commit comments

Comments
 (0)