File tree 5 files changed +9
-3
lines changed
5 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 29
29
- ["3.10", "py310"]
30
30
- ["3.11", "py311"]
31
31
- ["3.12", "py312"]
32
+ - ["3.13.0-alpha - 3.13.0", "py313"]
32
33
- ["3.9", "docs"]
33
34
- ["3.9", "coverage"]
34
35
- ["3.9", "py39-datetime"]
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ with-pypy = false
9
9
with-docs = true
10
10
with-sphinx-doctests = true
11
11
with-windows = true
12
- with-future-python = false
12
+ with-future-python = true
13
13
with-macos = false
14
14
15
15
[tox ]
Original file line number Diff line number Diff line change 4
4
7.1 (unreleased)
5
5
----------------
6
6
7
- - Nothing changed yet.
7
+ - Allow to use the package with Python 3.13 -- Caution: No security
8
+ audit has been done so far.
8
9
9
10
10
11
7.0 (2023-11-17)
Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ def read(*rnames):
68
68
package_dir = {'' : 'src' },
69
69
install_requires = [
70
70
],
71
- python_requires = ">=3.7, <3.13 " ,
71
+ python_requires = ">=3.7, <3.14 " ,
72
72
tests_require = tests_require ,
73
73
extras_require = {
74
74
'test' : tests_require ,
Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ envlist =
11
11
py310
12
12
py311
13
13
py312
14
+ py313
14
15
docs
15
16
coverage
16
17
py39-datetime
@@ -20,10 +21,12 @@ envlist =
20
21
usedevelop = true
21
22
package = wheel
22
23
wheel_build_env = .pkg
24
+ pip_pre = py313: true
23
25
deps =
24
26
datetime: DateTime
25
27
-cconstraints.txt
26
28
pytest-cov
29
+ Sphinx
27
30
setenv =
28
31
COVERAGE_FILE =.coverage.{envname}
29
32
py312: VIRTUALENV_PIP =23.1.2
@@ -104,6 +107,7 @@ deps =
104
107
datetime: DateTime
105
108
-cconstraints.txt
106
109
pytest-cov
110
+ Sphinx
107
111
setenv =
108
112
COVERAGE_FILE =.coverage
109
113
commands =
You can’t perform that action at this time.
0 commit comments