Skip to content

Commit 467f54b

Browse files
committed
Note support for Python 3.13.
1 parent 3874f6e commit 467f54b

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
runs-on: ubuntu-latest
66
strategy:
77
matrix:
8-
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
8+
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
99
steps:
1010
- uses: actions/checkout@v4
1111
- name: Setup Python ${{ matrix.python-version }}

doc/getting.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Installation
44
============
55

66
simplefix has a few dependencies. Firstly, it is known to run on
7-
Python_ 3.8 through to 3.12. It will not run on Python 3.5 or
7+
Python_ 3.8 through to 3.13. It will not run on Python 3.5 or
88
earlier versions, including Python 2.7.
99

1010
You can install it using pip_::

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#! /usr/bin/env python
22
########################################################################
33
# SimpleFIX
4-
# Copyright (C) 2016-2024, David Arnold.
4+
# Copyright (C) 2016-2025, David Arnold.
55
#
66
# Permission is hereby granted, free of charge, to any person obtaining a copy
77
# of this software and associated documentation files (the "Software"), to deal
@@ -51,6 +51,7 @@
5151
'Programming Language :: Python :: 3.10',
5252
'Programming Language :: Python :: 3.11',
5353
'Programming Language :: Python :: 3.12',
54+
'Programming Language :: Python :: 3.13',
5455
],
5556
)
5657

0 commit comments

Comments
 (0)