File tree Expand file tree Collapse file tree 2 files changed +14
-10
lines changed Expand file tree Collapse file tree 2 files changed +14
-10
lines changed Original file line number Diff line number Diff line change @@ -27,14 +27,16 @@ jobs:
27
27
strategy :
28
28
matrix :
29
29
# Run all supported Python versions on linux
30
- python-version : ["3.9", "3.10", "3.11"]
31
30
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
33
33
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"
38
40
39
41
steps :
40
42
# Run tests
Original file line number Diff line number Diff line change @@ -3,17 +3,18 @@ name = "fancylog"
3
3
authors = [{name = " Adam Tyson" , email = " code@adamltyson.com" }]
4
4
description = " Fancier logging in Python"
5
5
readme = " README.md"
6
- requires-python = " >=3.9.0 "
6
+ requires-python = " >=3.10 "
7
7
dynamic = [" version" ]
8
8
9
9
license = {text = " BSD-3-Clause" }
10
10
11
11
classifiers = [
12
12
" Development Status :: 4 - Beta" ,
13
13
" Programming Language :: Python" ,
14
- " Programming Language :: Python :: 3.9 " ,
14
+ " Programming Language :: Python :: 3" ,
15
15
" Programming Language :: Python :: 3.10" ,
16
16
" Programming Language :: Python :: 3.11" ,
17
+ " Programming Language :: Python :: 3.12" ,
17
18
" Operating System :: OS Independent" ,
18
19
" License :: OSI Approved :: BSD License" ,
19
20
]
@@ -93,14 +94,15 @@ docstring-code-format = true # Also format code in docstrings
93
94
[tool .tox ]
94
95
legacy_tox_ini = """
95
96
[tox]
96
- envlist = py{39, 310,311}
97
+ envlist = py{310,311,312 }
97
98
isolated_build = True
98
99
99
100
[gh-actions]
100
101
python =
101
- 3.9: py39
102
102
3.10: py310
103
103
3.11: py311
104
+ 3.12: py312
105
+
104
106
105
107
[testenv]
106
108
extras =
You can’t perform that action at this time.
0 commit comments