@@ -22,7 +22,7 @@ In order to add a feature:
22
22
documentation.
23
23
24
24
- The feature must work fully on the following CPython versions:
25
- 3.7, 3.8, 3. 9, 3.10, 3.11, 3.12 and 3.13 on both UNIX and Windows.
25
+ 3.9, 3.10, 3.11, 3.12 and 3.13 on both UNIX and Windows.
26
26
27
27
- The feature must not add unnecessary dependencies (where
28
28
"unnecessary" is of course subjective, but new dependencies should
@@ -143,12 +143,12 @@ Running System Tests
143
143
$ nox -s system
144
144
145
145
# Run a single system test
146
- $ nox -s system-3.8 -- -k <name of test>
146
+ $ nox -s system-3.9 -- -k <name of test>
147
147
148
148
149
149
.. note::
150
150
151
- System tests are only configured to run under Python 3.8 .
151
+ System tests are only configured to run under Python 3.9 .
152
152
For expediency, we do not run them in older versions of Python 3.
153
153
154
154
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.
195
195
196
196
# Run all tests in a folder
197
197
$ cd samples/snippets
198
- $ nox -s py-3.8
198
+ $ nox -s py-3.9
199
199
200
200
# Run a single sample test
201
201
$ cd samples/snippets
202
- $ nox -s py-3.8 -- -k <name of test>
202
+ $ nox -s py-3.9 -- -k <name of test>
203
203
204
204
********************************************
205
205
Note About ``README `` as it pertains to PyPI
@@ -221,16 +221,12 @@ Supported Python Versions
221
221
222
222
We support:
223
223
224
- - `Python 3.7 `_
225
- - `Python 3.8 `_
226
224
- `Python 3.9 `_
227
225
- `Python 3.10 `_
228
226
- `Python 3.11 `_
229
227
- `Python 3.12 `_
230
228
- `Python 3.13 `_
231
229
232
- .. _Python 3.7 : https://docs.python.org/3.7/
233
- .. _Python 3.8 : https://docs.python.org/3.8/
234
230
.. _Python 3.9 : https://docs.python.org/3.9/
235
231
.. _Python 3.10 : https://docs.python.org/3.10/
236
232
.. _Python 3.11 : https://docs.python.org/3.11/
0 commit comments