Skip to content
Draft
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
7 changes: 4 additions & 3 deletions .github/workflows/python_checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -218,8 +218,8 @@ jobs:
matrix:
include:
# prereleases
#- runner: ubuntu-latest
# python-version: "3.14"
- runner: ubuntu-latest
python-version: "3.14"

- runner: ubuntu-latest
python-version: "3.13"
Expand Down Expand Up @@ -271,7 +271,8 @@ jobs:
run: flake8 ${{ inputs.flake8-packages }}

- name: Lint with pylint
if: ${{ matrix.python-version != env.PRERELEASE || inputs.check-prereleases == 'true' }}
if: ${{ matrix.python-version != '3.14' }}
#if: ${{ matrix.python-version != env.PRERELEASE || inputs.check-prereleases == 'true' }}
uses: SpiNNakerManchester/SupportScripts/actions/pylint@main
with:
package: ${{ inputs.pylint-packages }}
Expand Down
24 changes: 12 additions & 12 deletions release.pl
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@
# Assumes all repositories master/main locally are upto date including C build
# This script can be safely be repeated until the $release pushed to pypi or tagged

my $release = "7.4.0"; # Without the leading 1!
my $release_name = "Quietly Confident";
my $branch = $release;
# my $branch = "version_bump";
my $release = "7.3.1"; # Without the leading 1!
my $release_name = "To Do";
#my $branch = $release;
my $branch = "version_bump";

use strict;
use warnings;
Expand Down Expand Up @@ -449,18 +449,18 @@ sub wait_doc_built{
update_directory("../spinnaker_tools");
update_directory("../spinn_common");
update_directory("../SpiNNUtils");
#wait_doc_built('spinnutils');
wait_doc_built('spinnutils');
update_directory("../SpiNNMachine");
#wait_doc_built('spinnmachine');
wait_doc_built('spinnmachine');
update_directory("../SpiNNMan");
#wait_doc_built('spinnman');
wait_doc_built('spinnman');
update_directory("../spalloc");
update_directory("../PACMAN");
#wait_doc_built('spalloc');
#wait_doc_built('pacman');
wait_doc_built('spalloc');
wait_doc_built('pacman');
update_directory("../SpiNNFrontEndCommon");
update_directory("../TestBase");
#wait_doc_built('spinnfrontendcommon');
wait_doc_built('spinnfrontendcommon');
update_directory("../sPyNNaker");
update_directory("../SpiNNakerGraphFrontEnd");
update_directory("../PyNNExamples");
Expand All @@ -476,8 +476,8 @@ sub wait_doc_built{
update_directory("../TSPonSpiNNaker");
update_directory("../BitBrainDemo");
update_directory("../SpiNNakerJupyterExamples");
#wait_doc_built('spynnaker');
#wait_doc_built('spinnakergraphfrontend');
wait_doc_built('spynnaker');
wait_doc_built('spinnakergraphfrontend');
update_directory("../sphinx8");
update_integration_tests("../IntegrationTests");
# die "stop";
Expand Down