Skip to content

Commit 8fbf9a1

Browse files
committed
Deploying to gh-pages from @ beac55b 🚀
1 parent 7df781f commit 8fbf9a1

15 files changed

+201
-149
lines changed

_sources/changelog.md.txt

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,28 @@
11
# Changelog
22

3+
## 1.10.0 (2024-12-25)
4+
5+
### Major Changes
6+
7+
- New function `is_writeable_array` adds transparent support for readonly
8+
arrays, such as JAX arrays or numpy arrays with `.flags.writeable=False`.
9+
10+
- `asarray(..., copy=None)` with `dask` backend always copies, so that
11+
`copy=None` and `copy=True` are equivalent for the `dask` backend.
12+
This change is made to be forward compatible with the `dask==2024.12`
13+
release.
14+
15+
16+
### Minor Changes
17+
18+
- `array_namespace` accepts (and ignores) `None` and python scalars (int, float,
19+
complex, bool). This change is to simplify downstream adoption, for
20+
functions where arguments can be either arrays or scalars.
21+
22+
- `vecdot` conjugates its first argument, as stipulated by the Array API spec.
23+
Previously, conjation if the first argument was missing.
24+
25+
326
## 1.9.1 (2024-10-29)
427

528
### Major Changes

_static/documentation_options.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
const DOCUMENTATION_OPTIONS = {
2-
VERSION: '1.10.0.dev0',
2+
VERSION: '1.10.1.dev0',
33
LANGUAGE: 'en',
44
COLLAPSE_INDEX: false,
55
BUILDER: 'html',

_static/pygments.css

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -106,17 +106,17 @@ body[data-theme="dark"] .highlight .cp { color: #ff3a3a; font-weight: bold } /*
106106
body[data-theme="dark"] .highlight .cpf { color: #ababab; font-style: italic } /* Comment.PreprocFile */
107107
body[data-theme="dark"] .highlight .c1 { color: #ababab; font-style: italic } /* Comment.Single */
108108
body[data-theme="dark"] .highlight .cs { color: #e50808; font-weight: bold; background-color: #520000 } /* Comment.Special */
109-
body[data-theme="dark"] .highlight .gd { color: #ff3a3a } /* Generic.Deleted */
109+
body[data-theme="dark"] .highlight .gd { color: #d22323 } /* Generic.Deleted */
110110
body[data-theme="dark"] .highlight .ge { color: #d0d0d0; font-style: italic } /* Generic.Emph */
111111
body[data-theme="dark"] .highlight .ges { color: #d0d0d0; font-weight: bold; font-style: italic } /* Generic.EmphStrong */
112-
body[data-theme="dark"] .highlight .gr { color: #ff3a3a } /* Generic.Error */
112+
body[data-theme="dark"] .highlight .gr { color: #d22323 } /* Generic.Error */
113113
body[data-theme="dark"] .highlight .gh { color: #ffffff; font-weight: bold } /* Generic.Heading */
114114
body[data-theme="dark"] .highlight .gi { color: #589819 } /* Generic.Inserted */
115115
body[data-theme="dark"] .highlight .go { color: #cccccc } /* Generic.Output */
116116
body[data-theme="dark"] .highlight .gp { color: #aaaaaa } /* Generic.Prompt */
117117
body[data-theme="dark"] .highlight .gs { color: #d0d0d0; font-weight: bold } /* Generic.Strong */
118118
body[data-theme="dark"] .highlight .gu { color: #ffffff; text-decoration: underline } /* Generic.Subheading */
119-
body[data-theme="dark"] .highlight .gt { color: #ff3a3a } /* Generic.Traceback */
119+
body[data-theme="dark"] .highlight .gt { color: #d22323 } /* Generic.Traceback */
120120
body[data-theme="dark"] .highlight .kc { color: #6ebf26; font-weight: bold } /* Keyword.Constant */
121121
body[data-theme="dark"] .highlight .kd { color: #6ebf26; font-weight: bold } /* Keyword.Declaration */
122122
body[data-theme="dark"] .highlight .kn { color: #6ebf26; font-weight: bold } /* Keyword.Namespace */
@@ -192,17 +192,17 @@ body:not([data-theme="light"]) .highlight .cp { color: #ff3a3a; font-weight: bol
192192
body:not([data-theme="light"]) .highlight .cpf { color: #ababab; font-style: italic } /* Comment.PreprocFile */
193193
body:not([data-theme="light"]) .highlight .c1 { color: #ababab; font-style: italic } /* Comment.Single */
194194
body:not([data-theme="light"]) .highlight .cs { color: #e50808; font-weight: bold; background-color: #520000 } /* Comment.Special */
195-
body:not([data-theme="light"]) .highlight .gd { color: #ff3a3a } /* Generic.Deleted */
195+
body:not([data-theme="light"]) .highlight .gd { color: #d22323 } /* Generic.Deleted */
196196
body:not([data-theme="light"]) .highlight .ge { color: #d0d0d0; font-style: italic } /* Generic.Emph */
197197
body:not([data-theme="light"]) .highlight .ges { color: #d0d0d0; font-weight: bold; font-style: italic } /* Generic.EmphStrong */
198-
body:not([data-theme="light"]) .highlight .gr { color: #ff3a3a } /* Generic.Error */
198+
body:not([data-theme="light"]) .highlight .gr { color: #d22323 } /* Generic.Error */
199199
body:not([data-theme="light"]) .highlight .gh { color: #ffffff; font-weight: bold } /* Generic.Heading */
200200
body:not([data-theme="light"]) .highlight .gi { color: #589819 } /* Generic.Inserted */
201201
body:not([data-theme="light"]) .highlight .go { color: #cccccc } /* Generic.Output */
202202
body:not([data-theme="light"]) .highlight .gp { color: #aaaaaa } /* Generic.Prompt */
203203
body:not([data-theme="light"]) .highlight .gs { color: #d0d0d0; font-weight: bold } /* Generic.Strong */
204204
body:not([data-theme="light"]) .highlight .gu { color: #ffffff; text-decoration: underline } /* Generic.Subheading */
205-
body:not([data-theme="light"]) .highlight .gt { color: #ff3a3a } /* Generic.Traceback */
205+
body:not([data-theme="light"]) .highlight .gt { color: #d22323 } /* Generic.Traceback */
206206
body:not([data-theme="light"]) .highlight .kc { color: #6ebf26; font-weight: bold } /* Keyword.Constant */
207207
body:not([data-theme="light"]) .highlight .kd { color: #6ebf26; font-weight: bold } /* Keyword.Declaration */
208208
body:not([data-theme="light"]) .highlight .kn { color: #6ebf26; font-weight: bold } /* Keyword.Namespace */

0 commit comments

Comments
 (0)