File tree Expand file tree Collapse file tree 1 file changed +3
-5
lines changed
Filter options
Expand file tree Collapse file tree 1 file changed +3
-5
lines changed
Original file line number Diff line number Diff line change 31
31
- os : ubuntu-latest
32
32
python : " 3.13-dev"
33
33
experimental : true
34
- build : ' '
35
34
- os : ubuntu-latest
36
35
python : " 3.13-dev"
37
36
experimental : true
@@ -40,18 +39,15 @@ jobs:
40
39
- os : ubuntu-latest
41
40
python : pypy-3.10
42
41
experimental : false
43
- build : ' '
44
42
- os : ubuntu-latest
45
43
python : pypy-3.9
46
44
experimental : false
47
- build : ' '
48
45
- os : macos-latest
49
46
python : " 3.12"
50
47
experimental : true
51
48
- os : windows-latest
52
49
python : " 3.12"
53
50
experimental : true
54
- build : ' '
55
51
steps :
56
52
- uses : actions/checkout@v4
57
53
- name : Set up Python ${{ matrix.python }}
72
68
python -m pip install --upgrade pip setuptools
73
69
python -m pip install -e .
74
70
- name : Display Python version
75
- run : python --version --version
71
+ run : |
72
+ python -VV
73
+ python -c 'import sysconfig; print("Free threading?", "Yes" if sysconfig.get_config_var("Py_GIL_DISABLED") else "No")'
76
74
- name : Run Tests
77
75
id : pyperformance
78
76
run : python -u -m pyperformance.tests
You can’t perform that action at this time.
0 commit comments