Skip to content

Commit 9dfc60b

Browse files
committed
Don't track bencoder.c in git
1 parent 001cf27 commit 9dfc60b

File tree

5 files changed

+9
-6957
lines changed

5 files changed

+9
-6957
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,3 +60,5 @@ target/
6060

6161
#Ipython Notebook
6262
.ipynb_checkpoints
63+
64+
bencoder.c

.travis.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,8 @@ python:
88
- 3.5
99
- pypy
1010

11-
install: python setup.py install
11+
install:
12+
- pip install cython
13+
- cython bencoder.pyx
14+
- python setup.py install
1215
script: nosetests

appveyor.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,10 +78,11 @@ install:
7878

7979
# Upgrade to the latest version of pip to avoid it displaying warnings
8080
# about it being out of date.
81-
- "pip install --disable-pip-version-check --user --upgrade pip wheel"
81+
- "pip install --disable-pip-version-check --user --upgrade pip wheel cython"
8282

8383
build_script:
8484
# Build the compiled extension
85+
- "%CMD_IN_ENV% cython bencoder.pyx"
8586
- "%CMD_IN_ENV% python setup.py install"
8687

8788
test_script:

0 commit comments

Comments
 (0)