Skip to content

Commit 47732e2

Browse files
committed
Merge pull request #4 from dan-blanchard/master
Modernize code for Python 3
2 parents cc5f020 + 40fc1ad commit 47732e2

21 files changed

Lines changed: 1239 additions & 939 deletions

.travis.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
language: python
2+
python:
3+
- 2.6
4+
- 2.7
5+
- 3.2
6+
7+
notifications:
8+
email: false
9+
10+
# Install stuff
11+
before_install:
12+
- travis/install_sge.sh
13+
- export GRID_MAP_REDIS_PORT=12345
14+
- export SGE_ROOT=/var/lib/gridengine
15+
- export SGE_CELL=default
16+
- export DRMAA_LIBRARY_PATH=/usr/lib/libdrmaa.so.1.0
17+
install:
18+
- python setup.py install
19+
20+
# Run test
21+
script:
22+
- nosetests -d -v
23+

MANIFEST.in

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
include license.txt
2+
include *.rst
3+
recursive-include examples *
4+
recursive-include test *

README.md

Lines changed: 0 additions & 4 deletions
This file was deleted.

README.rst

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
drmaa-python
2+
------------
3+
4+
5+
.. image:: https://travis-ci.org/dan-blanchard/drmaa-python.png
6+
:target: https://travis-ci.org/dan-blanchard/drmaa-python
7+
:alt: Travis build status
8+
9+
DRMAA bindings for Python. Now Python 3 compatible.
10+

0 commit comments

Comments
 (0)