Skip to content

Commit

Permalink
Drop python 3.8, add python 3.11 support (CrayLabs#49)
Browse files Browse the repository at this point in the history
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
AlyssaCote authored Apr 17, 2024
1 parent 09af0ce commit 79be2fd
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
- uses: actions/setup-python@v2
name: Install Python
with:
python-version: '3.8'
python-version: '3.9'

- name: Install build
run: |
Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:
- uses: actions/setup-python@v2
name: Install Python
with:
python-version: '3.8'
python-version: '3.9'

- name: Install build
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/run_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
matrix:
os: [macos-12, ubuntu-20.04] # Operating systems
compiler: [8] # GNU compiler version
py_v: [3.8, 3.9, '3.10'] # Python versions
py_v: ['3.9', '3.10', '3.11'] # Python versions

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 2 additions & 0 deletions doc/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,13 @@ Development branch

Description

- Drop Python 3.8 support, add 3.11 support. (SmartDashboard-PR49_)
- Add Database Telemetry page. (SmartDashboard-PR38_)
- Add Github Actions workflow that checks if changelog is edited
on pull requests into develop. (SmartDashboard-PR47_)
- Add manifest file tracking. (SmartDashboard-PR46_)

.. _SmartDashboard-PR49: https://github.com/CrayLabs/SmartDashboard/pull/49
.. _SmartDashboard-PR38: https://github.com/CrayLabs/SmartDashboard/pull/38
.. _SmartDashboard-PR47: https://github.com/CrayLabs/SmartDashboard/pull/47
.. _SmartDashboard-PR46: https://github.com/CrayLabs/SmartDashboard/pull/46
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -105,7 +105,7 @@ tests = ["tests"]

[tool.black]
line-length = 88
target-version = ['py38', 'py39', 'py310']
target-version = ['py39', 'py310', 'py311']
exclude = '''
(
| \.egg
Expand Down

0 comments on commit 79be2fd

Please sign in to comment.