Skip to content

Commit 42217b3

Browse files
Restore ability to create snappy sdist
1 parent f134b3b commit 42217b3

2 files changed

Lines changed: 9 additions & 4 deletions

File tree

MANIFEST.in

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
include cython/*.h
2-
include cython/*.c
3-
include cython/*.cpp
1+
include cython/*
2+
include cython/numbers/*
3+
include cython/core/*
44
include kernel/addl_code/*.h
55
include kernel/headers/*.h
66
include kernel/real_type/*.h
@@ -10,6 +10,11 @@ include kernel/unix_kit/*.c
1010
include kernel/addl_code/*.c
1111
include kernel/addl_code/*.cc
1212
include opengl/*.h
13+
include opengl/*.pyx
14+
include opengl/*.pxi
15+
include opengl/common/*.pyx
16+
include opengl/legacy/*.pyx
17+
include opengl/modern/*.pyx
1318
include opengl/KHR/*.h
1419
include opengl/glew/*
1520
include opengl/glew/bin/Release/Win32/*

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ def check_call(args):
190190
class SnapPySdist(sdist):
191191
def run(self):
192192
python = sys.executable
193-
check_call([python, 'setup.py', 'bdist_wheel'])
193+
check_call([python, 'setup.py', 'build_docs'])
194194
sdist.run(self)
195195

196196

0 commit comments

Comments
 (0)