21
21
from jinja2 import select_autoescape
22
22
23
23
24
- PYTHON_VERSIONS = ["3.8" , "3.9" , "3.10" ]
24
+ PYTHON_VERSIONS = ["3.8" , "3.9" , "3.10" , "3.11" ]
25
25
26
26
RC_PATTERN = r"/v[0-9]+(\.[0-9]+)*-rc[0-9]+/"
27
27
@@ -62,7 +62,7 @@ def build_workflows(prefix="", filter_branch=None, upload=False, indentation=6,
62
62
63
63
# Disable all Linux Wheels Workflows from CircleCI
64
64
# since those will now be done through Nova. We'll keep
65
- # around the py3.8 cpu Linux Wheels build since the docs
65
+ # around the py3.8 CPU Linux Wheels build since the docs
66
66
# job depends on it.
67
67
if os_type == "linux" and btype == "wheel" :
68
68
if not (python_version == "3.8" and cu_version == "cpu" ):
@@ -76,6 +76,13 @@ def build_workflows(prefix="", filter_branch=None, upload=False, indentation=6,
76
76
if os_type != "win" and btype == "conda" :
77
77
continue
78
78
79
+ # Not supporting Python 3.11 conda packages at the
80
+ # moment since the necessary dependencies are not
81
+ # available. Windows 3.11 Wheels will be built from
82
+ # CircleCI here, however.
83
+ if python_version == "3.11" and btype == "conda" :
84
+ continue
85
+
79
86
w += workflow_pair (
80
87
btype , os_type , python_version , cu_version , unicode , prefix , upload , filter_branch = fb
81
88
)
0 commit comments