Skip to content

Commit 5bb0b26

Browse files
committed
Edits from comments by JW on PR
1 parent 1566346 commit 5bb0b26

File tree

6 files changed

+4
-4
lines changed

6 files changed

+4
-4
lines changed

MANIFEST.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
recursive-include docs *
22
recursive-include man *
3-
recursive-include src *
3+
recursive-include include *
44
include MANIFEST.in
55
include README.md
66
include COPYING

create_docs.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# svn propset svn:mime-type text/html docs/*html
2-
epydoc -v --no-frames --no-private --introspect-only -o docs netCDF4
2+
epydoc -v --no-frames --no-private --introspect-only --name netcdf4-python -o docs netCDF4._netCDF4
File renamed without changes.
File renamed without changes.
File renamed without changes.

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,7 @@ def getnetcdfvers(libdirs):
369369
os.remove(netcdf4_src_c)
370370
# this determines whether renameGroup and filepath methods will work.
371371
has_rename_grp, has_nc_inq_path, has_nc_inq_format_extended = check_api(inc_dirs)
372-
f = open(osp.join('src', 'constants.pyx'),'w')
372+
f = open(osp.join('include', 'constants.pyx'),'w')
373373
if has_rename_grp:
374374
sys.stdout.write('netcdf lib has group rename capability\n')
375375
f.write('DEF HAS_RENAME_GRP = 1\n')
@@ -389,7 +389,7 @@ def getnetcdfvers(libdirs):
389389
sys.stdout.write('netcdf lib does not have nc_inq_format_extended function\n')
390390
f.write('DEF HAS_NC_INQ_FORMAT_EXTENDED = 0\n')
391391
f.close()
392-
ext_modules = cythonize(extensions, include_path=['src'])
392+
ext_modules = cythonize(extensions, include_path=['include'])
393393
else:
394394
extensions = [Extension("netCDF4._netCDF4",
395395
[netcdf4_src_c],

0 commit comments

Comments
 (0)