Skip to content

Commit 511ce08

Browse files
committed
Fixed dependencies
* six is now a runtime requirement * DRY tox.ini
1 parent 0509340 commit 511ce08

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

fluent.runtime/setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
from setuptools import setup
33
import sys
44

5+
56
setup(name='fluent.runtime',
67
version='0.1',
78
description='Localization library for expressive translations.',
@@ -24,7 +25,7 @@
2425
'attrs',
2526
'babel',
2627
'pytz',
28+
'six',
2729
],
28-
tests_require=['six'],
29-
test_suite='tests'
30+
test_suite='tests',
3031
)

fluent.runtime/tox.ini

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,5 @@ skipsdist=True
66
setenv =
77
PYTHONPATH = {toxinidir}
88
deps =
9-
fluent.syntax>=0.12,<=0.13
10-
six
11-
attrs
12-
Babel
9+
.
1310
commands = ./runtests.py

0 commit comments

Comments
 (0)