@@ -22,7 +22,7 @@ In order to add a feature:
2222 documentation.
2323
2424- The feature must work fully on the following CPython versions:
25- 3.8, 3.9, 3.10, 3.11 and 3.12 on both UNIX and Windows.
25+ 3.8, 3.9, 3.10, 3.11, 3.12, 3.13 and 3.14 on both UNIX and Windows.
2626
2727- The feature must not add unnecessary dependencies (where
2828 "unnecessary" is of course subjective, but new dependencies should
@@ -143,12 +143,12 @@ Running System Tests
143143 $ nox -s system
144144
145145 # Run a single system test
146- $ nox -s system-3.8 -- -k <name of test>
146+ $ nox -s system-3.14 -- -k <name of test>
147147
148148
149149 .. note::
150150
151- System tests are only configured to run under Python 3.8 .
151+ System tests are only configured to run under Python 3.14 .
152152 For expediency, we do not run them in older versions of Python 3.
153153
154154 This alone will not run the tests. You'll need to change some local
@@ -195,11 +195,11 @@ configure them just like the System Tests.
195195
196196 # Run all tests in a folder
197197 $ cd samples/snippets
198- $ nox -s py-3.8
198+ $ nox -s py-3.14
199199
200200 # Run a single sample test
201201 $ cd samples/snippets
202- $ nox -s py-3.8 -- -k <name of test>
202+ $ nox -s py-3.14 -- -k <name of test>
203203
204204********************************************
205205Note About ``README `` as it pertains to PyPI
@@ -226,12 +226,16 @@ We support:
226226- `Python 3.10 `_
227227- `Python 3.11 `_
228228- `Python 3.12 `_
229+ - `Python 3.13 `_
230+ - `Python 3.14 `_
229231
230232.. _Python 3.8 : https://docs.python.org/3.8/
231233.. _Python 3.9 : https://docs.python.org/3.9/
232234.. _Python 3.10 : https://docs.python.org/3.10/
233235.. _Python 3.11 : https://docs.python.org/3.11/
234236.. _Python 3.12 : https://docs.python.org/3.12/
237+ .. _Python 3.13 : https://docs.python.org/3.13/
238+ .. _Python 3.14 : https://docs.python.org/3.14/
235239
236240
237241Supported versions can be found in our ``noxfile.py `` `config `_.
0 commit comments