Skip to content

Commit 3e2ab67

Browse files
committed
Now require python>=3.10
1 parent eb0582f commit 3e2ab67

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/code.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,12 @@ jobs:
3232
fail-fast: false
3333
matrix:
3434
os: ["ubuntu-latest"] # can add windows-latest, macos-latest
35-
python: ["3.9", "3.10"]
35+
python: ["3.10", "3.11", "3.12"]
3636
install: ["-e .[dev]"]
3737
# Make one version be non-editable to test both paths of version code
3838
include:
3939
- os: "ubuntu-latest"
40-
python: "3.8"
40+
python: "3.13"
4141
install: ".[dev]"
4242

4343
runs-on: ${{ matrix.os }}

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,17 @@ name = "pytac"
77
classifiers = [
88
"Development Status :: 4 - Beta",
99
"License :: OSI Approved :: Apache Software License",
10-
"Programming Language :: Python :: 3.7",
11-
"Programming Language :: Python :: 3.8",
12-
"Programming Language :: Python :: 3.9",
1310
"Programming Language :: Python :: 3.10",
11+
"Programming Language :: Python :: 3.11",
12+
"Programming Language :: Python :: 3.12",
13+
"Programming Language :: Python :: 3.13",
1414
]
1515
description = "Python Toolkit for Accelerator Controls"
1616
dependencies = ["numpy", "scipy", "setuptools>=60.0.0", "aioca"]
1717
dynamic = ["version"]
1818
license.file = "LICENSE"
1919
readme = "README.rst"
20-
requires-python = ">=3.7"
20+
requires-python = ">=3.10"
2121

2222
[project.optional-dependencies]
2323
dev = [

0 commit comments

Comments
 (0)