-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add Python 3.12 to GHA pytest-with-coverage workflow This lets us use the workflow to test whether all the packages NEMO-Cmd depends on have been updated to support Python 3.12. * Add workflow_dispatch trigger to GHA CI workflow Enables workflow to be triggered from GitHub CLI, browser, or via API. This is primarily to allow the workflow to be run via gh workflow run pytest-with-coverage --ref py312 during the conda-forge Python 3.12 migration to test if the environment is solvable yet. * Update pkgs & versions used in recent dev env * pre-commit autoupdate * Change dev, hpc & rtd envs to Python 3.12 * Drop TROVE classifiers They are now just outdated maintenance overhead. * Change sphinx-linkcheck workflow to Python 3.12 The Python version used in the 'sphinx-linkcheck.yaml' GitHub actions workflow has been updated from '3.11' to '3.12'. This change aligns with the recent migration to Python 3.12 for development. * Change to Python 3.12 for development * Drop support for Python 3.10
- Loading branch information
1 parent
2910cab
commit 4fc466b
Showing
11 changed files
with
62 additions
and
62 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
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 |
---|---|---|
|
@@ -12,7 +12,7 @@ channels: | |
|
||
dependencies: | ||
- pip | ||
- python=3.11 | ||
- python=3.12 | ||
|
||
# readthedocs packages | ||
- mock | ||
|
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 |
---|---|---|
|
@@ -28,7 +28,7 @@ name = "SalishSeaCmd" | |
dynamic = [ "version" ] | ||
description = "SalishSeaCast NEMO Command Processor" | ||
readme = "README.rst" | ||
requires-python = ">=3.10" | ||
requires-python = ">=3.11" | ||
license = { file = "LICENSE" } | ||
authors = [ | ||
{ name = "Doug Latornell", email = "[email protected]" }, | ||
|
@@ -37,20 +37,6 @@ keywords = [ | |
"automation", "oceanography", "ocean modelling", | ||
"UBC-MOAD", "Salish Sea", "SalishSeaCast", | ||
] | ||
classifiers = [ | ||
"Development Status :: 5 - Production/Stable", | ||
"License :: OSI Approved :: Apache Software License", | ||
"Programming Language :: Python :: Implementation :: CPython", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Operating System :: POSIX :: Linux", | ||
"Operating System :: Unix", | ||
"Environment :: Console", | ||
"Intended Audience :: Science/Research", | ||
"Intended Audience :: Education", | ||
"Intended Audience :: Developers", | ||
] | ||
dependencies = [ | ||
# see envs/environment-dev.yaml for conda environment dev installation | ||
# see envs/requirements.txt for versions most recently used in development | ||
|