Skip to content

Commit 709a7cc

Browse files
committed
Update supported Python versions
1 parent 9ebefb8 commit 709a7cc

File tree

2 files changed

+14
-10
lines changed

2 files changed

+14
-10
lines changed

.github/workflows/test_and_deploy.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,16 @@ jobs:
2727
strategy:
2828
matrix:
2929
# Run all supported Python versions on linux
30-
python-version: ["3.9", "3.10", "3.11"]
3130
os: [ubuntu-latest]
32-
# Include one windows and macos run
31+
python-version: ["3.10", "3.11", "3.12"]
32+
# Include one windows and two macOS (intel based and arm based) runs
3333
include:
34-
- os: macos-latest
35-
python-version: "3.11"
36-
- os: windows-latest
37-
python-version: "3.11"
34+
- os: macos-13
35+
python-version: "3.12"
36+
- os: macos-latest
37+
python-version: "3.12"
38+
- os: windows-latest
39+
python-version: "3.12"
3840

3941
steps:
4042
# Run tests

pyproject.toml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,18 @@ name = "fancylog"
33
authors = [{name = "Adam Tyson", email= "code@adamltyson.com"}]
44
description = "Fancier logging in Python"
55
readme = "README.md"
6-
requires-python = ">=3.9.0"
6+
requires-python = ">=3.10"
77
dynamic = ["version"]
88

99
license = {text = "BSD-3-Clause"}
1010

1111
classifiers = [
1212
"Development Status :: 4 - Beta",
1313
"Programming Language :: Python",
14-
"Programming Language :: Python :: 3.9",
14+
"Programming Language :: Python :: 3",
1515
"Programming Language :: Python :: 3.10",
1616
"Programming Language :: Python :: 3.11",
17+
"Programming Language :: Python :: 3.12",
1718
"Operating System :: OS Independent",
1819
"License :: OSI Approved :: BSD License",
1920
]
@@ -93,14 +94,15 @@ docstring-code-format = true # Also format code in docstrings
9394
[tool.tox]
9495
legacy_tox_ini = """
9596
[tox]
96-
envlist = py{39,310,311}
97+
envlist = py{310,311,312}
9798
isolated_build = True
9899
99100
[gh-actions]
100101
python =
101-
3.9: py39
102102
3.10: py310
103103
3.11: py311
104+
3.12: py312
105+
104106
105107
[testenv]
106108
extras =

0 commit comments

Comments
 (0)