Skip to content

Commit

Permalink
Merge pull request #111 from SpiNNakerManchester/rename_eight
Browse files Browse the repository at this point in the history
Rename eight
  • Loading branch information
rowleya authored Jun 24, 2024
2 parents 8428cab + 45bb5eb commit d73cc62
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ modified_src/
application_generated_data_files/
reports/
*.pyc
/sPyNNaker8NewModelTemplate.egg-info/
/sPyNNakerNewModelTemplate.egg-info/
__pycache__
.pytest_cache
.settings/
Expand Down
2 changes: 1 addition & 1 deletion .ratexcludes
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
**/*.elf
**/IntroLab/**
**/PACMAN/**
**/PyNN8Examples/**
**/PyNNExamples/**
**/spalloc/**
**/spinnaker_tools/**
**/SpiNNFrontEndCommon/**
Expand Down
4 changes: 2 additions & 2 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ title: Support for adding new neuron models to the PyNN 0.8 and PyNN0.9 Implemen
for executing on SpiNNaker machines.
authors:
- name: SpiNNaker Software Team
alias: For a list of contributors see https://github.com/SpiNNakerManchester/sPyNNaker8NewModelTemplate/graphs/contributors or for a combined list see https://spinnakermanchester.github.io/latest/LicenseAgreement.html#contributors
alias: For a list of contributors see https://github.com/SpiNNakerManchester/sPyNNakerNewModelTemplate/graphs/contributors or for a combined list see https://spinnakermanchester.github.io/latest/LicenseAgreement.html#contributors
address: University of Manchester, Oxford Road
city: Manchester
country: GB
Expand All @@ -106,4 +106,4 @@ contact:
name: SpiNNaker Software Team
post-code: M13 9PL
license: Apache-2.0
repository: https://github.com/SpiNNakerManchester/sPyNNaker8NewModelTemplate
repository: https://github.com/SpiNNakerManchester/sPyNNakerNewModelTemplate
2 changes: 1 addition & 1 deletion LICENSE_POLICY.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ See: [here](https://spinnakermanchester.github.io/latest/LicenseAgreement.html#m

For up to date information on Contributors see the graphs/contributors pages on each project.

For example [https://github.com/SpiNNakerManchester/sPyNNaker8NewModelTemplate/graphs/contributors](https://github.com/SpiNNakerManchester/sPyNNaker8NewModelTemplate/graphs/contributors)
For example [https://github.com/SpiNNakerManchester/sPyNNakerNewModelTemplate/graphs/contributors](https://github.com/SpiNNakerManchester/sPyNNakerNewModelTemplate/graphs/contributors)

[Combined list](https://spinnakermanchester.github.io/latest/LicenseAgreement.html#contributors)

4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[![Python Build Status](https://github.com/SpiNNakerManchester/sPyNNaker8NewModelTemplate/workflows/Python%20Actions/badge.svg?branch=master)](https://github.com/SpiNNakerManchester/sPyNNaker8NewModelTemplate/actions?query=workflow%3A%22Python+Actions%22+branch%3Amaster)
[![C Build Status](https://github.com/SpiNNakerManchester/sPyNNaker8NewModelTemplate/workflows/C%20Actions/badge.svg?branch=master)](https://github.com/SpiNNakerManchester/sPyNNaker8NewModelTemplate/actions?query=workflow%3A%22C+Actions%22+branch%3Amaster)-
[![Python Build Status](https://github.com/SpiNNakerManchester/sPyNNakerNewModelTemplate/workflows/Python%20Actions/badge.svg?branch=master)](https://github.com/SpiNNakerManchester/sPyNNakerNewModelTemplate/actions?query=workflow%3A%22Python+Actions%22+branch%3Amaster)
[![C Build Status](https://github.com/SpiNNakerManchester/sPyNNakerNewModelTemplate/workflows/C%20Actions/badge.svg?branch=master)](https://github.com/SpiNNakerManchester/sPyNNakerNewModelTemplate/actions?query=workflow%3A%22C+Actions%22+branch%3Amaster)-

# sPyNNaker New Model Template

Expand Down
2 changes: 1 addition & 1 deletion c_models/makefiles/Makefile.common
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# THIS FILE WAS USED IN AN OLDER MAKE STYLE
# Make now has to convert c files before building
# SEE https://spinnakermanchester.github.io/latest/Makefiles.html
$(error inclusion of sPyNNaker8NewModelTemplate/c_models/makefiles/Makefile.common)
$(error inclusion of sPyNNakerNewModelTemplate/c_models/makefiles/Makefile.common)
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# limitations under the License.

[metadata]
name = sPyNNaker8NewModelTemplate
name = sPyNNakerNewModelTemplate
version = attr: python_models8._version.__version__
description = SpiNNaker Template for New Models
long_description = file: README.md
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
if os.path.isdir(build_dir):
shutil.rmtree(build_dir)
egg_dir = os.path.join(
this_dir, "sPyNNaker8NewModelTemplate.egg-info")
this_dir, "sPyNNakerNewModelTemplate.egg-info")
if os.path.isdir(egg_dir):
shutil.rmtree(egg_dir)
setup()

0 comments on commit d73cc62

Please sign in to comment.