File tree 3 files changed +7
-3
lines changed
3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -12,12 +12,12 @@ jobs:
12
12
strategy :
13
13
fail-fast : false
14
14
matrix :
15
- branch : ["origin/main ", "3.13", "3.12"]
15
+ branch : ["3.14 ", "3.13", "3.12"]
16
16
steps :
17
17
- uses : actions/checkout@v4
18
18
- uses : actions/setup-python@v5
19
19
with :
20
- python-version : 3
20
+ python-version : ${{ matrix.branch }}
21
21
allow-prereleases : true
22
22
cache : pip
23
23
- name : Clone docsbuild scripts
39
39
--theme "$(pwd)"
40
40
--languages en
41
41
--branches ${{ matrix.branch }}
42
+ ${{ matrix.branch == '3.14' && '--select-output no-html' || '' }}
42
43
- name : Show logs
43
44
if : failure()
44
45
run : |
Original file line number Diff line number Diff line change 36
36
rev : v2.5.0
37
37
hooks :
38
38
- id : pyproject-fmt
39
- args : [--max-supported-python=3.13]
40
39
41
40
- repo : https://github.com/abravalheri/validate-pyproject
42
41
rev : v0.23
Original file line number Diff line number Diff line change @@ -21,6 +21,7 @@ classifiers = [
21
21
" Programming Language :: Python :: 3 :: Only" ,
22
22
" Programming Language :: Python :: 3.12" ,
23
23
" Programming Language :: Python :: 3.13" ,
24
+ " Programming Language :: Python :: 3.14" ,
24
25
" Topic :: Documentation" ,
25
26
" Topic :: Software Development :: Documentation" ,
26
27
]
@@ -67,3 +68,6 @@ lint.ignore = [
67
68
" E241" , # Multiple spaces after ','
68
69
]
69
70
lint.isort.required-imports = [ " from __future__ import annotations" ]
71
+
72
+ [tool .pyproject-fmt ]
73
+ max_supported_python = " 3.14"
You can’t perform that action at this time.
0 commit comments