Skip to content

Commit

Permalink
removed Python 3.7 and added 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
cnvogelg committed Aug 25, 2024
1 parent bb15d5a commit 6c597ec
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
strategy:
matrix:
platform: [ubuntu-latest, macos-latest]
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ authors = [
{name = "Christian Vogelgsang", email = "chris@vogelgsang.org"},
]
description = "A Cython binding for a m68k system emulator"
requires-python = ">=3.7"
requires-python = ">=3.8"
keywords = ["m68k", "musashi", "machine68k", "system emulator"]
license = {text = "GPL-v2"}
classifiers = [
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[tox]
envlist = py{37,38,39,310,311}
envlist = py{38,39,310,311,312}
skipsdist = {env:TOXBUILD:false}

[gh-actions]
python =
3.7: py37
3.8: py38
3.9: py39
3.10: py310
3.11: py311
3.12: py312

[testenv]
deps= -rrequirements-test.txt
Expand Down

0 comments on commit 6c597ec

Please sign in to comment.