Skip to content

Commit 825e309

Browse files
committed
Update supported Python versions and remove intel macOS testing
1 parent 709a7cc commit 825e309

File tree

2 files changed

+7
-11
lines changed

2 files changed

+7
-11
lines changed

.github/workflows/test_and_deploy.yml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -26,17 +26,13 @@ jobs:
2626
runs-on: ${{ matrix.os }}
2727
strategy:
2828
matrix:
29-
# Run all supported Python versions on linux
3029
os: [ubuntu-latest]
31-
python-version: ["3.10", "3.11", "3.12"]
32-
# Include one windows and two macOS (intel based and arm based) runs
30+
python-version: ["3.11", "3.12", "3.13"]
3331
include:
34-
- os: macos-13
35-
python-version: "3.12"
3632
- os: macos-latest
37-
python-version: "3.12"
33+
python-version: "3.13"
3834
- os: windows-latest
39-
python-version: "3.12"
35+
python-version: "3.13"
4036

4137
steps:
4238
# Run tests

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ 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.10"
6+
requires-python = ">=3.11"
77
dynamic = ["version"]
88

99
license = {text = "BSD-3-Clause"}
@@ -12,9 +12,9 @@ classifiers = [
1212
"Development Status :: 4 - Beta",
1313
"Programming Language :: Python",
1414
"Programming Language :: Python :: 3",
15-
"Programming Language :: Python :: 3.10",
1615
"Programming Language :: Python :: 3.11",
1716
"Programming Language :: Python :: 3.12",
17+
"Programming Language :: Python :: 3.13",
1818
"Operating System :: OS Independent",
1919
"License :: OSI Approved :: BSD License",
2020
]
@@ -94,14 +94,14 @@ docstring-code-format = true # Also format code in docstrings
9494
[tool.tox]
9595
legacy_tox_ini = """
9696
[tox]
97-
envlist = py{310,311,312}
97+
envlist = py{311,312,313}
9898
isolated_build = True
9999
100100
[gh-actions]
101101
python =
102-
3.10: py310
103102
3.11: py311
104103
3.12: py312
104+
3.13: py313
105105
106106
107107
[testenv]

0 commit comments

Comments
 (0)