Skip to content

Commit 1f4f851

Browse files
authoredFeb 14, 2017
Merge pull request #38 from bgaifullin/master
Rewrote whole module on pure C
2 parents d7feedf + 2dda508 commit 1f4f851

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+4079
-1955
lines changed
 

‎.gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,3 @@
1111
*.pyo
1212
*.egg*
1313
*.so
14-
*.c

‎.travis.yml

+6-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
1+
dist: trusty
12
sudo: false
23
language: python
34
python:
45
- '2.7'
5-
- '3.3'
66
- '3.4'
7+
- '3.5'
78

89
addons:
910
apt:
@@ -16,6 +17,8 @@ addons:
1617
- pkg-config
1718

1819
install:
19-
- travis_retry pip install -e ".[test]"
20+
- travis_retry pip install -r requirements-test.txt
21+
- travis_retry pip install -e "."
22+
- pip list
2023

21-
script: py.test
24+
script: 'py.test tests'

0 commit comments

Comments
 (0)
Please sign in to comment.