Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
pygolang
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
pygolang
Commits
6dd420da
Commit
6dd420da
authored
Feb 15, 2024
by
Kirill Smelkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tox += CPython 3.12
Tests now pass with that version. /reviewed-by
@jerome
/reviewed-on
!23
parent
f8761f73
Pipeline
#32887
failed with stage
in 0 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
6 deletions
+9
-6
setup.py
setup.py
+2
-1
tox.ini
tox.ini
+7
-5
No files found.
setup.py
View file @
6dd420da
# pygolang | pythonic package setup
# Copyright (C) 2018-202
3
Nexedi SA and Contributors.
# Copyright (C) 2018-202
4
Nexedi SA and Contributors.
# Kirill Smelkov <kirr@nexedi.com>
#
# This program is free software: you can Use, Study, Modify and Redistribute
...
...
@@ -353,6 +353,7 @@ setup(
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
Operating System :: POSIX
...
...
tox.ini
View file @
6dd420da
[tox]
envlist
=
{py27d,py27,py37,py38,py39d,py39,py310d,py310,py311d,py311,pypy,pypy3}-{thread,gevent}
{py27d,py27,py37,py38,py39d,py39,py310d,py310,py311d,py311,py
312,py
py,pypy3}-{thread,gevent}
# ThreadSanitizer
...
...
@@ -10,18 +10,18 @@ envlist =
# (*) PyPy locks its GIL (see RPyGilAcquire) by manually doing atomic cmpxchg
# and other games, which TSAN cannot see if PyPy itself was not compiled with
# -fsanitize=thread.
{py27d,py27,py37,py38,py39d,py39,py310d,py310,py311d,py311
}-{thread
}-tsan
{py27d,py27,py37,py38,py39d,py39,py310d,py310,py311d,py311
,py312
}-{thread
}-tsan
# XXX py*-gevent-tsan would be nice to have, but at present TSAN is not
# effective with gevent, because it does not understand greenlet "thread"
# switching and so perceives the program as having only one thread where races
# are impossible. Disabled to save time.
# {py27d,py27,py37,py38,py39d,py39,py310d,py310,py311d,py311 }-{ gevent}-tsan
# {py27d,py27,py37,py38,py39d,py39,py310d,py310,py311d,py311
,py312
}-{ gevent}-tsan
# AddressSanitizer
# XXX asan does not work with gevent: https://github.com/python-greenlet/greenlet/issues/113
{py27d,py27,py37,py38,py39d,py39,py310d,py310,py311d,py311,pypy,pypy3}-{thread
}-asan
{py27d,py27,py37,py38,py39d,py39,py310d,py310,py311d,py311,py
312,py
py,pypy3}-{thread
}-asan
[testenv]
basepython
=
...
...
@@ -35,6 +35,8 @@ basepython =
py310:
python3.10
py311d:
python3.11-dbg
py311:
python3.11
py312:
python3.12
py312d:
python3.12-dbg
pypy:
pypy
pypy3:
pypy3
...
...
@@ -72,5 +74,5 @@ commands=
# asan/tsan: tell pytest not to capture output - else it is not possible to see
# reports from sanitizers because they crash tested process on error.
# likewise for python debug builds.
asan,tsan,py{27,39,310,311}d:
-s
\
asan,tsan,py{27,39,310,311
,312
}d:
-s
\
gpython/
golang/
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment