Changeset 0e8fca0 in sasview


Ignore:
Timestamp:
Dec 12, 2011 11:20:16 AM (12 years ago)
Author:
Jae Cho <jhjcho@…>
Branches:
master, ESS_GUI, ESS_GUI_Docs, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_iss879, ESS_GUI_iss959, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc, costrafo411, magnetic_scatt, release-4.1.1, release-4.1.2, release-4.2.2, release_4.0.1, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
Children:
ef7606b
Parents:
a189869
Message:

removed warning from leastsq: not exist in recent scipy

Location:
park_integration
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • park_integration/setup.py

    ra189869 r0e8fca0  
    22     Installation script for SANS fitting 
    33""" 
    4 import sys 
    5 if len(sys.argv) == 1: 
    6     sys.argv.append('install') 
    74# Then build and install the modules 
    85from distutils.core import setup, Extension 
  • park_integration/src/sans/fit/ScipyFitting.py

    r06e7c26 r0e8fca0  
    109109                                            model.get_params(self.param_list), 
    110110                                                    ftol=ftol, 
    111                                                     full_output=1, 
    112                                                     warning=True) 
     111                                                    full_output=1) 
    113112 
    114113        except KeyboardInterrupt: 
Note: See TracChangeset for help on using the changeset viewer.