Skip to content

Commit b08c0a3

Browse files
committed
drop py27 and py34 support
1 parent 56c7aed commit b08c0a3

File tree

5 files changed

+9
-7
lines changed

5 files changed

+9
-7
lines changed

.travis.yml

-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@ sudo: required
33
dist: xenial
44

55
python:
6-
- 2.7
7-
- 3.4
86
- 3.5
97
- 3.6
108
- 3.7

CHANGES.rst

+7
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@ Changelog
44
Here you can see the full list of changes between each intervals release.
55

66

7+
0.9.0 (2020-07-16)
8+
^^^^^^^^^^^^^^^^^^
9+
10+
- Fixed interval coercion (#42)
11+
- Dropped py27 and py34 support
12+
13+
714
0.8.1 (2017-12-06)
815
^^^^^^^^^^^^^^^^^^
916

intervals/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@
3232
)
3333

3434

35-
__version__ = '0.8.1'
35+
__version__ = '0.9.0'

setup.py

-3
Original file line numberDiff line numberDiff line change
@@ -57,10 +57,7 @@ def get_version():
5757
'License :: OSI Approved :: BSD License',
5858
'Operating System :: OS Independent',
5959
'Programming Language :: Python',
60-
'Programming Language :: Python :: 2',
61-
'Programming Language :: Python :: 2.7',
6260
'Programming Language :: Python :: 3',
63-
'Programming Language :: Python :: 3.4',
6461
'Programming Language :: Python :: 3.5',
6562
'Programming Language :: Python :: 3.6',
6663
'Programming Language :: Python :: 3.7',

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py27,py33,py34,pypy
2+
envlist = py35,py36,py37,pypy
33

44
[testenv]
55
deps =

0 commit comments

Comments
 (0)