Skip to content

Commit

Permalink
merged in master
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian-B committed Oct 2, 2023
2 parents 2880154 + 74ca130 commit 7d5226a
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 9 deletions.
2 changes: 1 addition & 1 deletion neural_modelling/Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ PROJECT_NAME = "sPyNNaker neural_modelling"
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER = 7.1.0
PROJECT_NUMBER = 7.1.1

# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a
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 =
SpiNNFrontEndCommon == 1!7.1.0
SpiNNFrontEndCommon == 1!7.1.1
matplotlib
pyparsing>=2.2.1,<3.0.0
quantities
Expand Down Expand Up @@ -80,7 +80,7 @@ spynnaker.pyNN.model_binaries =

[options.extras_require]
test =
SpiNNakerTestBase == 1!7.1.0
SpiNNakerTestBase == 1!7.1.1
# pytest will be brought in by pytest-cov
pytest-cov
testfixtures
Expand Down
4 changes: 2 additions & 2 deletions spynnaker/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@
# See the License for the specific language governing permissions and
# limitations under the License.

__version__ = "1!7.1.0"
__version__ = "1!7.1.1"
__version_month__ = "TBD"
__version_year__ = "TBD"
__version_day__ = "TBD"
__version_name__ = "Not yet released"
__version_name__ = "Post_HBP"

_NAME = f"sPyNNaker_under_version({__version__}-{__version_name__})"
4 changes: 2 additions & 2 deletions spynnaker/pyNN/_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!7.1.0"
__version__ = "1!7.1.1"
__version_month__ = "TBD"
__version_year__ = "TBD"
__version_day__ = "TBD"
__version_name__ = "Not yet released"
__version_name__ = "Post_HBP"
6 changes: 4 additions & 2 deletions spynnaker/pyNN/connections/ethernet_control_connection.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@ def __init__(
local_host=local_host, local_port=local_port)
self.__translators = dict()
self.__translators[label] = translator
self.add_receive_callback(label, self._translate, translate_key=False)
self.add_receive_no_time_callback(
label, self._translate, translate_key=False)

def add_translator(self, label, translator):
"""
Expand All @@ -52,7 +53,8 @@ def add_translator(self, label, translator):
"""
super().add_receive_label(label)
self.__translators[label] = translator
self.add_receive_callback(label, self._translate, translate_key=False)
self.add_receive_no_time_callback(
label, self._translate, translate_key=False)

def _translate(self, label, key, payload=None):
translator = self.__translators[label]
Expand Down

0 comments on commit 7d5226a

Please sign in to comment.