File tree Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change 5555 be provided in place of `` data `` . `` OpticalSeries.__init__ `` now makes `` data `` optional. However, this has the
5656 side effect of moving the position of `` data `` to later in the argument list, which may break code that relies
5757 on positional arguments for `` OpticalSeries.__init__ `` . @rly (#1274 )
58+ - Fixed ` setup.py ` not being able to import ` versioneer ` when installing in an embedded Python environment. @ikhramts (#1395 )
5859
5960## PyNWB 1.5.1 (May 24, 2021)
6061
Original file line number Diff line number Diff line change 11# -*- coding: utf-8 -*-
22
3+ import sys
4+
35from setuptools import setup , find_packages
46
7+ # Some Python installations don't add the current directory to path.
8+ if '' not in sys .path :
9+ sys .path .insert (0 , '' )
10+
511import versioneer
612
713with open ('README.rst' , 'r' ) as fp :
You can’t perform that action at this time.
0 commit comments