Skip to content

Commit 3d253ac

Browse files
committed
add python 3.13
1 parent 14c575b commit 3d253ac

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
strategy:
4747
matrix:
4848
os: [ubuntu-latest]
49-
python-version: ["3.9", "3.10", "3.11", "3.12"]
49+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
5050
allow-failure: [false]
5151
test-case: [test-local]
5252
include:

CHANGES.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ Unreleased
66

77
Changes:
88

9+
* Add Python 3.13 to CI and project setup.
10+
* Update docker base to `python:3.13.11-alpine3.23`.
911
* Pin `requests>=2.32.4` to address security vulnerability
1012
(see `#143 <https://github.com/bird-house/twitcher/pull/143>`_).
1113

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# vim:set ft=dockerfile:
2-
FROM python:3.11-alpine3.20
2+
FROM python:3.13.11-alpine3.23
33
LABEL Description="Twitcher" Vendor="Birdhouse" Maintainer="https://github.com/bird-house/twitcher"
44

55
# Configure hostname and ports for services

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
long_description=README + '\n\n' + CHANGES,
2222
long_description_content_type="text/x-rst",
2323
classifiers=[
24-
"Development Status :: 4 - Beta",
24+
"Development Status :: 5 - Production/Stable",
2525
"Framework :: Pyramid",
2626
"Intended Audience :: Developers",
2727
"License :: OSI Approved :: Apache Software License",
@@ -32,6 +32,7 @@
3232
"Programming Language :: Python :: 3.10",
3333
"Programming Language :: Python :: 3.11",
3434
"Programming Language :: Python :: 3.12",
35+
"Programming Language :: Python :: 3.13",
3536
"Topic :: Internet :: WWW/HTTP",
3637
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
3738
],

0 commit comments

Comments
 (0)