Skip to content

Commit

Permalink
Extends python version compatibility testing.
Browse files Browse the repository at this point in the history
  • Loading branch information
filiplajszczak committed Nov 15, 2024
1 parent 2f5fb26 commit 0eb2083
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
9 changes: 2 additions & 7 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
@@ -1,24 +1,19 @@
name: Tests

on: [push]
on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '3.7', '3.8', '3.9', '3.10', '3.11' ]
python-version: [ '3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13' ]

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

- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4

- name: Setup timezone
uses: zcong1993/setup-timezone@master
with:
timezone: UTC

- name: Set up Python
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5
with:
Expand Down
5 changes: 4 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "snakesay"
version = "0.10.2"
version = "0.10.3"
description = "speaking snake"
authors = [
{ name="PythonAnywhere Developers", email="[email protected]" }
Expand All @@ -9,6 +9,9 @@ license = {text="MIT"}
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.8",
Expand Down
2 changes: 2 additions & 0 deletions snakesay/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
from snakesay.snakesay import snakesay

__version__ = "0.10.3"

0 comments on commit 0eb2083

Please sign in to comment.