File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ ## Changelog
2+
3+ - 0.1.2: set zip_safe to False to better work with Cython (important for libs that depend on this one)
4+ - 0.1.1: change distribution system from distutils to setuptools
5+ - 0.1.0: initial version
6+
Original file line number Diff line number Diff line change @@ -142,12 +142,6 @@ WLSQM itself does not link against LAPACK or BLAS; it utilizes the `cython_lapac
142142[ BSD] ( LICENSE.md ) . Copyright 2016-2017 Juha Jeronen and University of Jyväskylä.
143143
144144
145- ## History
146-
147- - 0.1.1: change distribution system from distutils to setuptools
148- - 0.1.0: initial version
149-
150-
151145#### Acknowledgement
152146
153147This work was financially supported by the Jenny and Antti Wihuri Foundation.
Original file line number Diff line number Diff line change @@ -207,6 +207,11 @@ def ext_math(extName):
207207 package_data = {'wlsqm.utils' : ['*.pxd' , '*.pyx' ], # note: paths relative to each package
208208 'wlsqm.fitter' : ['*.pxd' , '*.pyx' ]},
209209
210+ # Disable zip_safe, because:
211+ # - Cython won't find .pxd files inside installed .egg, hard to compile libs depending on this one
212+ # - dynamic loader may need to have the library unzipped to a temporary folder anyway (at import time)
213+ zip_safe = False ,
214+
210215 # Usage examples; not in a package
211216 data_files = datafiles
212217)
Original file line number Diff line number Diff line change 2020
2121from __future__ import absolute_import # https://www.python.org/dev/peps/pep-0328/
2222
23- __version__ = '0.1.1 '
23+ __version__ = '0.1.2 '
2424
2525from .fitter .defs import * # definitions (constants) (common)
2626from .fitter .simple import * # simple API
You can’t perform that action at this time.
0 commit comments