-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove support for python 3.8. Upgrade all dependencies Replaced sphinx docs googleanalytics module as current one is deprecated. Reformatted code using new version of black.. Use new merge-requires github action AB#10062
- Loading branch information
Showing
35 changed files
with
252 additions
and
198 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export TOOLS_BUILDNUMBER=20241115.3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# This workflow configures the repository specific choices of which CI builds | ||
# must pass in order for a build to merge. This allows a sinlge global teraform | ||
# configured rule to require a "well known" check in each repository. Whilst | ||
# granting repository stakeholders the ability configure what workflows are | ||
# appropriate to satisfy that check. | ||
name: Merge Requires | ||
on: | ||
push: | ||
|
||
jobs: | ||
ci: | ||
if: ${{ github.event_name != 'release' }} | ||
secrets: inherit | ||
uses: ./.github/workflows/ci.yml | ||
release: | ||
if: ${{ github.event_name == 'release' }} | ||
secrets: inherit | ||
uses: ./.github/workflows/package.yml | ||
|
||
merge-checks-ok: | ||
runs-on: ubuntu-latest | ||
needs: [ci] | ||
steps: | ||
- name: ok | ||
run: | | ||
echo "It's working!" | ||
release-checks-ok: | ||
runs-on: ubuntu-latest | ||
if: ${{ github.event_name == 'release' }} | ||
needs: [ci, release] | ||
steps: | ||
- name: ok | ||
run: | | ||
echo "Houston we have cleared the tower" |
7 changes: 3 additions & 4 deletions
7
.github/workflows/python-publish.yml → .github/workflows/package.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,12 @@ | ||
# | ||
# jupyter notebooks | ||
# | ||
# python 3.12 is unsupported as it reuires pyzmq 25.1.1 which | ||
# is a dependency of notebook. | ||
ipython~=8.12.3; python_version < '3.12' | ||
# pin notebook at version 6. version7 does not support the various | ||
# extensions - upgrade to notebook v7 is a future PR when | ||
# it has stabilised. | ||
notebook~=6.4; python_version < '3.12' | ||
jupyter~=1.0; python_version < '3.12' | ||
jupyter-console~=6.6; python_version < '3.12' | ||
jupyter-contrib-nbextensions~=0.7; python_version < '3.12' | ||
jupyter-nbextensions-configurator~=0.6; python_version < '3.12' | ||
python-dotenv[cli]~=1.0; python_version < '3.12' | ||
ipython~=8.13.0; python_version < '3.10' | ||
ipython~=8.20; python_version >= '3.10' | ||
notebook~=7.2 | ||
jupyter~=1.0 | ||
jupyter-console~=6.6 | ||
jupyter-contrib-nbextensions~=0.7 | ||
jupyter-nbextensions-configurator~=0.6 | ||
python-dotenv[cli]~=1.0 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,12 @@ | ||
# | ||
# this is used for pushing to github pages | ||
# | ||
# sphinx 7.2 does not support 3.8 | ||
sphinx~=7.1 | ||
sphinx-rtd-theme~=1.3 | ||
sphinx~=7.4; python_version < '3.10' | ||
sphinx~=8.1; python_version >= '3.10' | ||
sphinx-rtd-theme~=3.0 | ||
sphinxcontrib-spelling~=8.0 | ||
sphinx-gallery~=0.14 | ||
sphinxcontrib-googleanalytics~=0.4 | ||
sphinx-gallery~=0.18 | ||
nbsphinx~=0.9 | ||
|
||
-r notebooks/requirements.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.