338
I Use This!
Very High Activity

Commits : Listings

Analyzed about 23 hours ago. based on code collected about 24 hours ago.
Apr 29, 2024 — Apr 29, 2025
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
more changes of names from compiler to weave More... over 23 years ago
compile_code is no longer a part of weave More... over 23 years ago
renaming compiler to weave More... over 23 years ago
encapsulated all Numeric specific code within a try/except so that most functionality can be used without Numeric installed More... over 23 years ago
Making this a package made installation easier because distutils doesn't allow both py_modules and packages -- not sure it would have worked even if it did More... over 23 years ago
Modified how configuration works More... over 23 years ago
setup configuration module for scipy_distutils More... over 23 years ago
fftw_info.py holds searches for fftw libraries on a persons machine. It is made separate from the fftw library because it may be needed by other libraries later on. Also, it could become useful to other projects trying to find fftw on a mchine. Its very simple right now. More... over 23 years ago
get_path changes made by Pearu so that it works in core.run_setup More... over 23 years ago
cpuinfo.py is needed to calculate optimzation flags on linux. It has much of the same functionality as scipy.proc, but I've included it for now. We'll merge the two later. More... over 23 years ago
Implemented multiple changes provided by Pearu that increased the number of compilers supported, added some optimization flags, and generally cleaned things up. I made changes needed to get things rolling for scipy on win32 again. I've included an email exchange discussing changes below: More... over 23 years ago
changed to using fortran class instead of instance for setting fortran compiler. This was needed after Pearu's changes. More... over 23 years ago
removed print statements More... over 23 years ago
added default setting so users don't need to supply a dependency list for a package in package_config More... over 23 years ago
added package_config method to misc_util that should further simplify the creation of modules that depend on other modules. More... over 23 years ago
fixed path issues resulting from using setup_xxx.configuration() methods to grab information about package for use in setup.py. the configuration() methods use absolute path names to identify files. This is bad for sdist which uses the relative path of a file to determine which directory it goes into in the source distribution. To solve the problem, I have sdist search all absolute file paths for the "greatest common directory" among them. This directory is removed from them to determine where the file will go in the distribution directories. Files without absolute paths are always put in the top directory of the distribution. More... over 23 years ago
added misc_util file that has a few routines used extensively in setup_xxx.py files and test files within scipy More... over 23 years ago
added build_py module More... over 23 years ago
split scipy_test off into its own module. More... over 23 years ago
factored out the scipy specific distutils code into a scipy_distutils package. More... over 23 years ago