File tree Expand file tree Collapse file tree 3 files changed +6
-1
lines changed Expand file tree Collapse file tree 3 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,10 @@ Changelog
3
3
4
4
.. currentmodule :: sparse
5
5
6
+ 0.15.1 / 2024-01-10
7
+ -------------------
8
+ * Fix regression where with XArray by supporting all API functions via the Array API standard. (:pr: `622 ` thanks :ghuser: `hameerabbasi `)
9
+
6
10
0.15.0 / 2024-01-09
7
11
-------------------
8
12
* Fix regression where :obj: `DeprecationWarning`s were being fired unexpectedly. (:pr:`581 ` thanks :ghuser: `hameerabbasi `)
Original file line number Diff line number Diff line change @@ -21,6 +21,7 @@ classifiers = [
21
21
" Programming Language :: Python :: 3.8" ,
22
22
" Programming Language :: Python :: 3.9" ,
23
23
" Programming Language :: Python :: 3.10" ,
24
+ " Programming Language :: Python :: 3.11" ,
24
25
" Programming Language :: Python :: 3 :: Only" ,
25
26
" Intended Audience :: Developers" ,
26
27
" Intended Audience :: Science/Research" ,
Original file line number Diff line number Diff line change 13
13
* Upload to PyPI
14
14
``` bash
15
15
git clean -xfd # remove all files in directory not in repository
16
- python setup.py sdist bdist_wheel --universal # make packages
16
+ python -m build --wheel --sdist # make packages
17
17
twine upload dist/* # upload packages
18
18
```
19
19
You can’t perform that action at this time.
0 commit comments