Compare commits

..

3 Commits

Author SHA1 Message Date
Timo Furrer f9d257876b Support PyPy 2018-05-10 11:59:34 +02:00
Timo Furrer 7a750a1cff release: 0.4.1 2018-05-10 11:32:54 +02:00
Timo Furrer bc06315abd Limit pendulum version to >=1.0 and <= 1.5.1
See https://github.com/sdispater/pendulum/issues/205
2018-05-10 11:32:32 +02:00
4 changed files with 7 additions and 3 deletions
+3
View File
@@ -3,6 +3,9 @@ python:
- "2.7"
- "3.6"
- "3.7-dev"
# Test PyPy versions because PyPy is awesome :)
- "pypy2.7"
- "pypy3.6"
matrix:
allow_failures:
+1 -1
View File
@@ -1 +1 @@
__version__ = '0.4.0'
__version__ = '0.4.1'
+2 -1
View File
@@ -25,7 +25,7 @@ required = [
'pytz',
'dateparser>=0.7.0',
'tzlocal',
'pendulum>=1.0',
'pendulum>=1.0, <=1.5.1',
'snaptime'
]
@@ -98,6 +98,7 @@ setup(
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: Implementation',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Software Development :: Libraries :: Python Modules'
),
cmdclass={
+1 -1
View File
@@ -1,5 +1,5 @@
[tox]
envlist = py27, py34, py35, py36
envlist = py27, pypy, py34, py35, py36, pypy3
[testenv]
deps = pipenv