File tree Expand file tree Collapse file tree 4 files changed +11
-4
lines changed Expand file tree Collapse file tree 4 files changed +11
-4
lines changed Original file line number Diff line number Diff line change 26
26
- " 3.10"
27
27
- " 3.11"
28
28
- " 3.12"
29
+ - " 3.13"
29
30
- " pypy3.9"
31
+ - " pypy3.10"
30
32
image :
31
33
- " ubuntu-22.04"
32
34
include :
43
45
- name : Disable AppArmor
44
46
run : sudo aa-disable /usr/sbin/slapd
45
47
- name : Set up Python ${{ matrix.python-version }}
46
- uses : actions/setup-python@v4
48
+ uses : actions/setup-python@v5
47
49
with :
48
50
python-version : ${{ matrix.python-version }}
49
51
allow-prereleases : true
Original file line number Diff line number Diff line change 9
9
tox_test :
10
10
name : Tox env "${{matrix.tox_env}}" on Fedora
11
11
steps :
12
- - uses : actions/checkout@v2
12
+ - uses : actions/checkout@v4
13
13
- name : Run Tox tests
14
14
uses : fedora-python/tox-github-action@main
15
15
with :
16
16
tox_env : ${{ matrix.tox_env }}
17
17
dnf_install : >
18
18
@c-development openldap-devel python3-devel
19
19
openldap-servers openldap-clients lcov clang-analyzer valgrind
20
- enchant
20
+ enchant python3-setuptools
21
21
strategy :
22
22
matrix :
23
23
tox_env :
28
28
- py310
29
29
- py311
30
30
- py312
31
+ - py313
31
32
- c90-py36
32
33
- c90-py37
33
34
- py3-nosasltls
Original file line number Diff line number Diff line change @@ -93,6 +93,7 @@ class OpenLDAP2:
93
93
'Programming Language :: Python :: 3.10' ,
94
94
'Programming Language :: Python :: 3.11' ,
95
95
'Programming Language :: Python :: 3.12' ,
96
+ 'Programming Language :: Python :: 3.13' ,
96
97
# Note: when updating Python versions, also change tox.ini and .github/workflows/*
97
98
98
99
'Topic :: Database' ,
Original file line number Diff line number Diff line change @@ -17,10 +17,12 @@ python =
17
17
3.10: py310
18
18
3.11: py311
19
19
3.12: py312
20
+ 3.13: py313
20
21
pypy3.9: pypy3.9
22
+ pypy3.10: pypy3.10
21
23
22
24
[testenv]
23
- deps =
25
+ deps = setuptools
24
26
passenv = WITH_GCOV
25
27
# - Enable BytesWarning
26
28
# - Turn all warnings into exceptions.
@@ -98,6 +100,7 @@ deps =
98
100
markdown
99
101
sphinx
100
102
sphinxcontrib-spelling
103
+ setuptools
101
104
commands =
102
105
{envpython} setup.py check --restructuredtext --metadata --strict
103
106
{envpython} -m markdown README -f {envtmpdir}/README.html
You can’t perform that action at this time.
0 commit comments