Skip to content

Commit 6876d93

Browse files
test with python3.11 and python3.13
1 parent 84c6431 commit 6876d93

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@
1515
Development Status :: 5 - Production/Stable
1616
Programming Language :: Python
1717
Programming Language :: Python :: 3
18-
Programming Language :: Python :: 3.7
1918
Programming Language :: Python :: 3.8
2019
Programming Language :: Python :: 3.9
2120
Programming Language :: Python :: 3.10
2221
Programming Language :: Python :: 3.11
2322
Programming Language :: Python :: 3.12
23+
Programming Language :: Python :: 3.13
2424
Programming Language :: Python :: 3 :: Only
2525
Programming Language :: Python :: Implementation :: CPython
2626
Programming Language :: Python :: Implementation :: PyPy
@@ -112,7 +112,7 @@ def run_tests(self):
112112
platforms=['any'],
113113
classifiers=classifiers,
114114
license='BSD',
115-
python_requires=">=3.6",
115+
python_requires=">=3.9",
116116
install_requires=[],
117117
tests_require=reqs('test.txt'),
118118
cmdclass={'test': pytest},

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
envlist =
3-
{pypy3,3.12,3.8,3.9,3.10}-unit
3+
{pypy3,3.9,3.10,3.11,3.12,3.13}-unit
44
flake8
55
apicheck
66
pydocstyle
@@ -20,9 +20,9 @@ commands = py.test -xv --cov=vine --cov-report=xml --no-cov-on-fail t/unit {posa
2020
basepython =
2121
flake8,apicheck,linkcheck,pydocstyle: python3.10
2222
pypy3: pypy3.10
23-
3.8: python3.8
2423
3.9: python3.9
2524
3.10: python3.10
25+
3.11: python3.11
2626
3.12: python3.12
2727

2828
[testenv:apicheck]

vine/synchronization.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ def all_done():
3232
Note that you cannot add new promises to a barrier after
3333
the barrier is fulfilled.
3434
"""
35+
3536
__slots__ = (
3637
'p', 'args', 'kwargs', '_value', 'size',
3738
'ready', 'reason', 'cancelled', 'finalized',

0 commit comments

Comments
 (0)