Skip to content
Merged

7.4.2 #123

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/python_actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8, 3.9, "3.10", "3.11", "3.12"]
python-version: ["3.10", "3.11", "3.12", "3.13"]
steps:
# Check out the code and critical support code
- name: Checkout
Expand Down
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/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)-
[![Python Actions](https://github.com/SpiNNakerManchester/sPyNNakerNewModelTemplate/actions/workflows/python_actions.yml/badge.svg)](https://github.com/SpiNNakerManchester/sPyNNakerNewModelTemplate/actions/workflows/python_actions.yml)
[![C Actions](https://github.com/SpiNNakerManchester/sPyNNakerNewModelTemplate/actions/workflows/c_actions.yml/badge.svg)](https://github.com/SpiNNakerManchester/sPyNNakerNewModelTemplate/actions/workflows/c_actions.yml)

# sPyNNaker New Model Template

Expand Down
2 changes: 1 addition & 1 deletion c_models/Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ PROJECT_NAME = "sPyNNaker New Model Template c_models"
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER = development
PROJECT_NUMBER = 7.4.2

# 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 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!7.3.1"
__version__ = "1!7.4.2"
__version_month__ = "TBD"
__version_year__ = "TBD"
__version_day__ = "TBD"
__version_name__ = "To Do"
__version_name__ = ""
8 changes: 3 additions & 5 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,6 @@ classifiers =
Operating System :: Microsoft :: Windows
Operating System :: MacOS
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Expand All @@ -41,12 +39,12 @@ keywords =
pynn

[options]
python_requires = >=3.8, <4
python_requires = >=3.10, <4
packages = find:
zip_safe = True
include_package_data = True
install_requires =
sPyNNaker == 1!7.3.1
sPyNNaker == 1!7.4.2

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

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