File tree Expand file tree Collapse file tree 3 files changed +15
-11
lines changed Expand file tree Collapse file tree 3 files changed +15
-11
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 1- [ ![ Python Version] ( https://img.shields.io/pypi/pyversions/cellfinder .svg )] ( https://pypi.org/project/cellfinder )
1+ [ ![ Python Version] ( https://img.shields.io/pypi/pyversions/fancylog .svg )] ( https://pypi.org/project/fancylog )
22[ ![ PyPI] ( https://img.shields.io/pypi/v/fancylog.svg )] ( https://pypi.org/project/fancylog )
33[ ![ Downloads] ( https://pepy.tech/badge/fancylog )] ( https://pepy.tech/project/fancylog )
44[ ![ Wheel] ( https://img.shields.io/pypi/wheel/fancylog.svg )] ( https://pypi.org/project/fancylog )
Original file line number Diff line number Diff line change @@ -3,17 +3,18 @@ name = "fancylog"
33authors = [{
name =
" Adam Tyson" ,
email =
" [email protected] " }]
44description = " Fancier logging in Python"
55readme = " README.md"
6- requires-python = " >=3.9.0 "
6+ requires-python = " >=3.10 "
77dynamic = [" version" ]
88
99license = {text = " BSD-3-Clause" }
1010
1111classifiers = [
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 ]
9495legacy_tox_ini = """
9596[tox]
96- envlist = py{39, 310,311}
97+ envlist = py{310,311,312 }
9798isolated_build = True
9899
99100[gh-actions]
100101python =
101- 3.9: py39
102102 3.10: py310
103103 3.11: py311
104+ 3.12: py312
105+
104106
105107[testenv]
106108extras =
You can’t perform that action at this time.
0 commit comments