Skip to content

Commit

Permalink
Merge branch 'master' into eprop_adaptive_update
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewgait committed Aug 8, 2023
2 parents ddb0630 + c3319b0 commit a3b2ba8
Show file tree
Hide file tree
Showing 14 changed files with 15 additions and 17 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python_actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
uses: ./support/actions/install-spinn-deps
with:
repositories: >
SpiNNUtils SpiNNMachine SpiNNMan PACMAN DataSpecification spalloc
SpiNNUtils SpiNNMachine SpiNNMan PACMAN spalloc
SpiNNFrontEndCommon sPyNNaker TestBase
install: true

Expand Down
1 change: 0 additions & 1 deletion .ratexcludes
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
**/*.npy
**/*.jpg
**/*.elf
**/DataSpecification/**
**/IntroLab/**
**/PACMAN/**
**/PyNN8Examples/**
Expand Down
1 change: 0 additions & 1 deletion pypi_to_import
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ SpiNNUtilities:spinn_utilities
SpiNNMachine:spinn_machine
SpiNNMan:spinnman
SpiNNaker_PACMAN:pacman
SpiNNaker_DataSpecification:data_specification
SpiNNFrontEndCommon:spinn_front_end_common
sPyNNaker:spynnaker
SpyNNaker8:spynnaker8
6 changes: 3 additions & 3 deletions python_models8/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
# See the License for the specific language governing permissions and
# limitations under the License.

__version__ = "1!6.0.1"
__version_month__ = "May"
__version_year__ = "2021"
__version__ = "1!7.1.0"
__version_month__ = "TBD"
__version_year__ = "TBD"
__version_day__ = "TBD"
__version_name__ = "Not yet released"
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from data_specification.enums import DataType
from spinn_front_end_common.interface.ds import DataType
from spynnaker.pyNN.models.neuron.additional_inputs import (
AbstractAdditionalInput)
from spynnaker.pyNN.utilities.struct import Struct
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from data_specification.enums.data_type import DataType
from spinn_front_end_common.interface.ds import DataType
from spynnaker.pyNN.utilities.struct import Struct
from spynnaker.pyNN.models.neuron.implementations import (
AbstractNeuronImpl)
Expand Down
2 changes: 1 addition & 1 deletion python_models8/neuron/input_types/my_input_type.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from spynnaker.pyNN.models.neuron.input_types import AbstractInputType
from data_specification.enums.data_type import DataType
from spinn_front_end_common.interface.ds import DataType
from spynnaker.pyNN.utilities.struct import Struct

# TODO create constants to match the parameter names
Expand Down
2 changes: 1 addition & 1 deletion python_models8/neuron/input_types/my_input_type_semd.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from spinn_utilities.overrides import overrides
from data_specification.enums import DataType
from spinn_front_end_common.interface.ds import DataType
from spynnaker.pyNN.models.neuron.input_types import AbstractInputType
from spynnaker.pyNN.utilities.struct import Struct

Expand Down
2 changes: 1 addition & 1 deletion python_models8/neuron/neuron_models/my_neuron_model.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from spinn_utilities.overrides import overrides
from data_specification.enums import DataType
from spinn_front_end_common.interface.ds import DataType
from spynnaker.pyNN.models.neuron.implementations import (
AbstractStandardNeuronComponent)
from spynnaker.pyNN.utilities.struct import Struct
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from spinn_utilities.overrides import overrides
from data_specification.enums import DataType
from spinn_front_end_common.interface.ds import DataType
from spinn_front_end_common.utilities.constants import BYTES_PER_WORD
from spynnaker.pyNN.models.neuron.plasticity.stdp.timing_dependence import (
AbstractTimingDependence)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from spinn_utilities.overrides import overrides
from data_specification.enums import DataType
from spinn_front_end_common.interface.ds import DataType
from spinn_front_end_common.utilities.constants import BYTES_PER_WORD
from spynnaker.pyNN.models.neuron.plasticity.stdp.weight_dependence import (
AbstractWeightDependence, AbstractHasAPlusAMinus)
Expand Down
2 changes: 1 addition & 1 deletion python_models8/neuron/synapse_types/my_synapse_type.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from spinn_utilities.overrides import overrides
from data_specification.enums import DataType
from spinn_front_end_common.interface.ds import DataType
from spynnaker.pyNN.models.neuron.synapse_types import AbstractSynapseType
from spynnaker.pyNN.utilities.struct import Struct
from spynnaker.pyNN.data.spynnaker_data_view import SpynnakerDataView
Expand Down
2 changes: 1 addition & 1 deletion python_models8/neuron/threshold_types/my_threshold_type.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from data_specification.enums import DataType
from spinn_front_end_common.interface.ds import DataType
from spynnaker.pyNN.models.neuron.threshold_types import AbstractThresholdType
from spynnaker.pyNN.utilities.struct import Struct

Expand Down
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ packages = find:
zip_safe = True
include_package_data = True
install_requires =
sPyNNaker == 1!6.0.1
sPyNNaker == 1!7.1.0

[options.packages.find]
include =
Expand All @@ -62,7 +62,7 @@ include =

[options.extras_require]
test =
SpiNNakerTestBase == 1!6.0.1
SpiNNakerTestBase == 1!7.1.0
# pytest will be brought in by pytest-cov
pytest-cov
testfixtures
Expand Down

0 comments on commit a3b2ba8

Please sign in to comment.