From 0eb20839675cb21d2fc68c1a729e2097a27ca47c Mon Sep 17 00:00:00 2001 From: Filip Lajszczak Date: Fri, 15 Nov 2024 17:31:51 +0000 Subject: [PATCH] Extends python version compatibility testing. --- .github/workflows/tests.yaml | 9 ++------- pyproject.toml | 5 ++++- snakesay/__init__.py | 2 ++ 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 0b458d4..eac473f 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -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: diff --git a/pyproject.toml b/pyproject.toml index 06aca94..9b5bf93 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "snakesay" -version = "0.10.2" +version = "0.10.3" description = "speaking snake" authors = [ { name="PythonAnywhere Developers", email="developers@pythonanywhere.com" } @@ -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", diff --git a/snakesay/__init__.py b/snakesay/__init__.py index 551f350..716e822 100644 --- a/snakesay/__init__.py +++ b/snakesay/__init__.py @@ -1 +1,3 @@ from snakesay.snakesay import snakesay + +__version__ = "0.10.3" \ No newline at end of file