forked from CrayLabs/SmartDashboard
-
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.
Drop python 3.8, add python 3.11 support (CrayLabs#49)
Python 3.8 is nearing its end of life so we're no longer supporting it. Also added support for Python 3.11. [ committed by @AlyssaCote ] [ reviewed by @mellis13 ]
- Loading branch information
1 parent
09af0ce
commit 79be2fd
Showing
4 changed files
with
8 additions
and
6 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,17 +33,17 @@ build-backend = "setuptools.build_meta" | |
[project] | ||
name = "smartdashboard" | ||
version = "0.0.3" | ||
requires-python = ">=3.8,<3.11" | ||
requires-python = ">=3.9,<3.12" | ||
authors = [ | ||
{name = "CrayLabs: a Hewlett Packard Enterprise OSS Organization", email = "[email protected]"}, | ||
] | ||
description = "Visualize SmartSim Experiments" | ||
license = { text = "BSD 2-Clause License" } | ||
keywords = ["scientific", "ai", "workflow", "hpc", "analysis"] | ||
classifiers = [ | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"License :: OSI Approved :: BSD License", | ||
"Intended Audience :: Science/Research", | ||
"Topic :: Scientific/Engineering", | ||
|
@@ -105,7 +105,7 @@ tests = ["tests"] | |
|
||
[tool.black] | ||
line-length = 88 | ||
target-version = ['py38', 'py39', 'py310'] | ||
target-version = ['py39', 'py310', 'py311'] | ||
exclude = ''' | ||
( | ||
| \.egg | ||
|