Skip to content

Commit 305cd26

Browse files
committed
Test 3.6 & 3.7.
1 parent ef2d759 commit 305cd26

File tree

4 files changed

+9
-1
lines changed

4 files changed

+9
-1
lines changed

.travis.yml

+4
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@ matrix:
1717
osx_image: xcode7.3
1818
language: objective-c
1919
env: TRAVIS_PYTHON_VERSION=2.7
20+
- os: osx
21+
osx_image: xcode7.3
22+
language: objective-c
23+
env: TRAVIS_PYTHON_VERSION=3.6
2024
- os: osx
2125
osx_image: xcode7.3
2226
language: objective-c

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
[![Appveyor](https://ci.appveyor.com/api/projects/status/github/gatagat/lap?branch=master&svg=true)](https://ci.appveyor.com/project/gatagat/lap/history)
33
![Python 2.7](https://img.shields.io/badge/python-2.7-blue.svg)
44
![Python 3.6](https://img.shields.io/badge/python-3.6-blue.svg)
5+
![Python 3.7](https://img.shields.io/badge/python-3.7-blue.svg)
56

67
lap: Linear Assignment Problem solver
78
=====================================
@@ -31,7 +32,7 @@ Installation
3132

3233
lap requires:
3334

34-
* Python (2.7, 3.6)
35+
* Python (2.7, 3.6, 3.7)
3536
* NumPy (>=1.10.1)
3637
* Cython (>=0.21) - to compile the wrapper
3738
* SciPy, pytest, pytest-timeout - only for testing

appveyor.yml

+2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ environment:
77
matrix:
88
- PYTHON: C:\Python27
99
- PYTHON: C:\Python27-x64
10+
- PYTHON: C:\Python36
11+
- PYTHON: C:\Python36-x64
1012
- PYTHON: C:\Python37
1113
- PYTHON: C:\Python37-x64
1214

setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -191,6 +191,7 @@ def setup_package():
191191
'Programming Language :: Python :: 3',
192192
'Programming Language :: Python :: 2.7',
193193
'Programming Language :: Python :: 3.6',
194+
'Programming Language :: Python :: 3.7',
194195
'Operating System :: Microsoft :: Windows',
195196
'Operating System :: POSIX',
196197
'Operating System :: Unix',

0 commit comments

Comments
 (0)