Changeset 710 for branches

Show
Ignore:
Timestamp:
02/12/10 16:31:52 (2 years ago)
Author:
apdavison
Message:

Deleted some files that should not be part of the 0.6 branch

Location:
branches/0.6
Files:
3 removed
5 modified

Legend:

Unmodified
Added
Removed
  • branches/0.6/MANIFEST.in

    r640 r710  
    11include src/hoc/*.mod 
    2 include test/parameters/* 
    3 include test/*tests.py 
     2include test/system/*.py 
     3include test/system/parameters/* 
     4include test/regression/*.py 
    45include test/unittests/*.py 
    56include examples/*.py 
  • branches/0.6/changelog

    r706 r710  
    11==================== 
    2 Release 0.6.0 (r???) 
     2Release 0.6.0 (r710) 
    33==================== 
    44 
  • branches/0.6/setup.py

    r708 r710  
    4141setup( 
    4242    name = "PyNN", 
    43     version = "0.6.0pre", 
     43    version = "0.6.0", 
    4444    package_dir={'pyNN': 'src'}, 
    4545    packages = ['pyNN','pyNN.nest', 'pyNN.pcsim', 'pyNN.neuron', 'pyNN.brian', 'pyNN.recording'], 
     
    4848    author_email = "pynn@neuralensemble.org", 
    4949    description = "A Python package for simulator-independent specification of neuronal network models", 
    50         long_description = """In other words, you can write the code for a model once, using the PyNN API and the Python_ programming language, and then run it without modification on any simulator that PyNN supports (currently NEURON, NEST, PCSIM and Brian). 
     50    long_description = """In other words, you can write the code for a model once, using the PyNN API and the Python_ programming language, and then run it without modification on any simulator that PyNN supports (currently NEURON, NEST, PCSIM and Brian). 
    5151 
    5252The API has two parts, a low-level, procedural API (functions ``create()``, ``connect()``, ``set()``, ``record()``, ``record_v()``), and a high-level, object-oriented API (classes ``Population`` and ``Projection``, which have methods like ``set()``, ``record()``, ``setWeights()``, etc.).  
  • branches/0.6/src/__init__.py

    r706 r710  
    6666""" 
    6767 
    68 __version__ = '0.6.0pre ( $Rev$)'.replace(' $','') 
     68__version__ = '0.6.0 ( $Rev$)'.replace(' $','') 
    6969__all__ = ["common", "random", "nest", "neuron", "pcsim", "brian", "recording"] 
    7070 
  • branches/0.6/src/common.py

    r702 r710  
    12241224            raise TypeError("Can't inject current into a spike source.") 
    12251225        current_source.inject_into(self) 
    1226      
    1227     def getSubPopulation(self, cells): 
    1228         """ 
    1229         Returns a sub population from a population object. The shape of cells will 
    1230         determine the dimensions of the sub population. cells should contains cells 
    1231         member of the parent population. 
    1232         Ex z = pop.getSubPopulation([pop[1],pop[3],pop[5]]) 
    1233         """ 
    1234         raise NotImplementedError() 
     1226 
    12351227     
    12361228# ==============================================================================