Skip to content

Commit fb61e96

Browse files
authored
Merge pull request #208 from mpsonntag/packageInfoFix1.3
Final fixes for release 1.3.3
2 parents 6bd6034 + d1bae64 commit fb61e96

File tree

3 files changed

+25
-22
lines changed

3 files changed

+25
-22
lines changed

.travis.yml

Lines changed: 19 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -4,23 +4,26 @@ dist: trusty
44
language: python
55

66
matrix:
7-
include:
8-
- os: linux
9-
python: "2.7"
10-
env: COVERALLS=1
11-
- os: linux
12-
python: "3.4"
13-
- os: linux
14-
python: "3.5"
7+
include:
8+
- os: linux
9+
python: "2.7"
10+
env: COVERALLS=1
11+
- os: linux
12+
python: "3.4"
13+
- os: linux
14+
python: "3.5"
1515

16-
- os: osx
17-
language: generic
18-
env:
19-
- OSXENV=2.7
20-
- os: osx
21-
language: generic
22-
env:
23-
- OSXENV=3.5
16+
- os: osx
17+
language: generic
18+
env:
19+
- OSXENV=3.5
20+
# Keep only one osx branch active for now
21+
# since currently osx builds on travis
22+
# are frequently stalled or indefinitely delayed.
23+
# - os: osx
24+
# language: generic
25+
# env:
26+
# - OSXENV=2.7
2427

2528
before_install:
2629
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then bash resources/install_osx_virtualenv.sh; fi

README.rst

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
1-
odML libraries and editor
2-
=========================
31
.. image:: https://travis-ci.org/G-Node/python-odml.svg?branch=master
42
:target: https://travis-ci.org/G-Node/python-odml
3+
.. image:: https://ci.appveyor.com/api/projects/status/2wfvsu7boe18kwjy?svg=true
4+
:target: https://ci.appveyor.com/project/mpsonntag/python-odml
55
.. image:: https://coveralls.io/repos/github/G-Node/python-odml/badge.svg?branch=master
66
:target: https://coveralls.io/github/G-Node/python-odml?branch=master
77

8+
odML libraries and editor
9+
=========================
10+
811
Dependencies
912
------------
1013

setup.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,6 @@
1313
with open('README.rst') as f:
1414
description_text = f.read()
1515

16-
with open("LICENSE") as f:
17-
license_text = f.read()
18-
1916
install_req = ["lxml", "pyyaml"]
2017
if sys.version_info < (3, 4):
2118
install_req += ["enum34"]
@@ -32,5 +29,5 @@
3229
install_requires=install_req,
3330
long_description=description_text,
3431
classifiers=CLASSIFIERS,
35-
license=license_text
32+
license="BSD"
3633
)

0 commit comments

Comments
 (0)