Skip to content

Commit 0eb2083

Browse files
Extends python version compatibility testing.
1 parent 2f5fb26 commit 0eb2083

3 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/tests.yaml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,19 @@
11
name: Tests
22

3-
on: [push]
3+
on: [push, pull_request]
44

55
jobs:
66
build:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
python-version: [ '3.7', '3.8', '3.9', '3.10', '3.11' ]
10+
python-version: [ '3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13' ]
1111

1212
name: Python ${{ matrix.python-version }}
1313
steps:
1414

1515
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
1616

17-
- name: Setup timezone
18-
uses: zcong1993/setup-timezone@master
19-
with:
20-
timezone: UTC
21-
2217
- name: Set up Python
2318
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5
2419
with:

pyproject.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "snakesay"
3-
version = "0.10.2"
3+
version = "0.10.3"
44
description = "speaking snake"
55
authors = [
66
{ name="PythonAnywhere Developers", email="developers@pythonanywhere.com" }
@@ -9,6 +9,9 @@ license = {text="MIT"}
99
readme = "README.md"
1010
requires-python = ">=3.7"
1111
classifiers = [
12+
"Programming Language :: Python :: 3.13",
13+
"Programming Language :: Python :: 3.12",
14+
"Programming Language :: Python :: 3.11",
1215
"Programming Language :: Python :: 3.10",
1316
"Programming Language :: Python :: 3.9",
1417
"Programming Language :: Python :: 3.8",

snakesay/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
11
from snakesay.snakesay import snakesay
2+
3+
__version__ = "0.10.3"

0 commit comments

Comments
 (0)