Skip to content

Commit fb08e31

Browse files
committed
Deploying to gh-pages from @ d086c61 🚀
1 parent a49207d commit fb08e31

File tree

12 files changed

+410
-10
lines changed

12 files changed

+410
-10
lines changed

_sources/index.md.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -197,4 +197,5 @@ git_filter_repo.py --path numpy/array_api/ --path-rename numpy/array_api:array_a
197197

198198
api.rst
199199
changelog.md
200+
releasing.md
200201
```

_sources/releasing.md.txt

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
# Releasing
2+
3+
To release array-api-strict:
4+
5+
- [ ] Create a release branch and make a PR on GitHub.
6+
7+
- [ ] Update `changelog.md` with the changes for the release.
8+
9+
- [ ] Make sure the CI is passing on the release branch PR. Also double check that
10+
you have properly pulled `main` and merged it into the release branch so
11+
that the branch contains all the necessary changes for the release.
12+
13+
- [ ] When you are ready to make the release, create a tag with the release number
14+
15+
```
16+
git tag -a 2.2 -m "array-api-strict 2.2"
17+
```
18+
19+
and push it up to GitHub
20+
21+
```
22+
git push origin --tags
23+
```
24+
25+
This will trigger the `publish-package` build on GitHub Actions. Make sure
26+
that build works correctly and pushes the release up to PyPI. If something
27+
goes wrong, you may need to delete the tag from GitHub and try again.
28+
29+
Note that the `array_api_strict.__version__` version as well as the version
30+
in the package metadata is all automatically computed from the tag, so it is
31+
not necessary to update the version anywhere else.
32+
33+
- [ ] Once the release is published, you can merge the PR.
34+
35+
- [ ] The conda-forge bot will automatically send a PR to the
36+
[array-api-strict-feedstock](https://github.com/conda-forge/array-api-strict-feedstock)
37+
updating the version, which you should merge.

_static/custom.css

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,17 @@ body {
1010
html {
1111
scroll-behavior: auto;
1212
}
13+
14+
/* Make checkboxes from the tasklist extension ('- [ ]' in Markdown) not add bullet points to the checkboxes.
15+
16+
This can be removed once https://github.com/executablebooks/mdit-py-plugins/issues/59 is addressed.
17+
*/
18+
19+
.contains-task-list {
20+
list-style: none;
21+
}
22+
23+
/* Make the checkboxes indented like they are bullets */
24+
.task-list-item-checkbox {
25+
margin: 0 0.2em 0.25em -1.4em;
26+
}

api.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<link rel="stylesheet" type="text/css" href="_static/styles/furo.css?v=354aac6f" />
1212
<link rel="stylesheet" type="text/css" href="_static/copybutton.css?v=76b2166b" />
1313
<link rel="stylesheet" type="text/css" href="_static/styles/furo-extensions.css?v=302659d7" />
14-
<link rel="stylesheet" type="text/css" href="_static/custom.css?v=d9f9fa6c" />
14+
<link rel="stylesheet" type="text/css" href="_static/custom.css?v=dc4c535e" />
1515

1616

1717

@@ -203,6 +203,7 @@
203203
<ul class="current">
204204
<li class="toctree-l1 current current-page"><a class="current reference internal" href="#">API Reference</a></li>
205205
<li class="toctree-l1"><a class="reference internal" href="changelog.html">Changelog</a></li>
206+
<li class="toctree-l1"><a class="reference internal" href="releasing.html">Releasing</a></li>
206207
</ul>
207208

208209
</div>

changelog.html

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@
33
<head><meta charset="utf-8"/>
44
<meta name="viewport" content="width=device-width,initial-scale=1"/>
55
<meta name="color-scheme" content="light dark"><meta name="viewport" content="width=device-width, initial-scale=1" />
6-
<link rel="index" title="Index" href="genindex.html" /><link rel="search" title="Search" href="search.html" /><link rel="prev" title="API Reference" href="api.html" />
6+
<link rel="index" title="Index" href="genindex.html" /><link rel="search" title="Search" href="search.html" /><link rel="next" title="Releasing" href="releasing.html" /><link rel="prev" title="API Reference" href="api.html" />
77

88
<link rel="shortcut icon" href="_static/favicon.png"/><!-- Generated with Sphinx 8.1.3 and Furo 2024.08.06 -->
99
<title>Changelog - array-api-strict documentation</title>
1010
<link rel="stylesheet" type="text/css" href="_static/pygments.css?v=a746c00c" />
1111
<link rel="stylesheet" type="text/css" href="_static/styles/furo.css?v=354aac6f" />
1212
<link rel="stylesheet" type="text/css" href="_static/copybutton.css?v=76b2166b" />
1313
<link rel="stylesheet" type="text/css" href="_static/styles/furo-extensions.css?v=302659d7" />
14-
<link rel="stylesheet" type="text/css" href="_static/custom.css?v=d9f9fa6c" />
14+
<link rel="stylesheet" type="text/css" href="_static/custom.css?v=dc4c535e" />
1515

1616

1717

@@ -203,6 +203,7 @@
203203
<ul class="current">
204204
<li class="toctree-l1"><a class="reference internal" href="api.html">API Reference</a></li>
205205
<li class="toctree-l1 current current-page"><a class="current reference internal" href="#">Changelog</a></li>
206+
<li class="toctree-l1"><a class="reference internal" href="releasing.html">Releasing</a></li>
206207
</ul>
207208

208209
</div>
@@ -452,7 +453,15 @@ <h2>1.0 (2024-01-24)<a class="headerlink" href="#id19" title="Link to this headi
452453
<footer>
453454

454455
<div class="related-pages">
455-
456+
<a class="next-page" href="releasing.html">
457+
<div class="page-info">
458+
<div class="context">
459+
<span>Next</span>
460+
</div>
461+
<div class="title">Releasing</div>
462+
</div>
463+
<svg class="furo-related-icon"><use href="#svg-arrow-right"></use></svg>
464+
</a>
456465
<a class="prev-page" href="api.html">
457466
<svg class="furo-related-icon"><use href="#svg-arrow-right"></use></svg>
458467
<div class="page-info">

genindex.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<link rel="stylesheet" type="text/css" href="_static/styles/furo.css?v=354aac6f" />
1010
<link rel="stylesheet" type="text/css" href="_static/copybutton.css?v=76b2166b" />
1111
<link rel="stylesheet" type="text/css" href="_static/styles/furo-extensions.css?v=302659d7" />
12-
<link rel="stylesheet" type="text/css" href="_static/custom.css?v=d9f9fa6c" />
12+
<link rel="stylesheet" type="text/css" href="_static/custom.css?v=dc4c535e" />
1313

1414

1515

@@ -201,6 +201,7 @@
201201
<ul>
202202
<li class="toctree-l1"><a class="reference internal" href="api.html">API Reference</a></li>
203203
<li class="toctree-l1"><a class="reference internal" href="changelog.html">Changelog</a></li>
204+
<li class="toctree-l1"><a class="reference internal" href="releasing.html">Releasing</a></li>
204205
</ul>
205206

206207
</div>

index.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<link rel="stylesheet" type="text/css" href="_static/styles/furo.css?v=354aac6f" />
1212
<link rel="stylesheet" type="text/css" href="_static/copybutton.css?v=76b2166b" />
1313
<link rel="stylesheet" type="text/css" href="_static/styles/furo-extensions.css?v=302659d7" />
14-
<link rel="stylesheet" type="text/css" href="_static/custom.css?v=d9f9fa6c" />
14+
<link rel="stylesheet" type="text/css" href="_static/custom.css?v=dc4c535e" />
1515

1616

1717

@@ -203,6 +203,7 @@
203203
<ul>
204204
<li class="toctree-l1"><a class="reference internal" href="api.html">API Reference</a></li>
205205
<li class="toctree-l1"><a class="reference internal" href="changelog.html">Changelog</a></li>
206+
<li class="toctree-l1"><a class="reference internal" href="releasing.html">Releasing</a></li>
206207
</ul>
207208

208209
</div>

objects.inv

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@
22
# Project: array-api-strict
33
# Version:
44
# The remainder of this file is compressed using zlib.
5-
xڭSMo� ��+H�+�v�V��t֨i��J�� m�ʬڸ�kv����x�JIkBˌTJf�e�̋��x^�*�3��9��",P � �� �IՈD�Vx�5&��������~���RO�$L�k��|<�He��٦d��=&�|}�- B�Y��r���ٺ�R���!� p���n7��qm�w��$l"bck 7$��p��v�j�m��!v�v��X[�pF��>;2�D���C}�-Cs�����v�Z 3Q�)+J�H/���4��nk鐙,D΄�:mF��l��j�몭��L��sL�P��4K�/��5����ҟqB��aw`x��q��zq�1�'��:x�ԏ�i3�U��@�J��ވ��*��a��bTF�h0� ̹Gf}���R
5+
xڭS�O� ��W�lW�zC��D��m�<���&�6����Ů�2u.�����<�֢�.����,���]��K�W�������#d� G�mI���"7�I&�1�z�8)�۞��P��9���Ϫ�DN��C�۽�lY�_��`���2����ny���]�-_X������.�X�rR}�Z=1� \�u>\`��)�K1g�<y�K.�a!�}bK��) �v�0qXG�T�xF���1lA���_=q���2��
6+
�x9�9�橳����BY!T��lj����[�,u�v�,qՖ�M���l`㗞�rP����T֣>1h�h�}�5bw��g<a[7�?�g��}����fqשt�:9D�G��cS�5�>�A��_ʉ[��0�J�aJ5y��uq�E�Ίi��<3���}���

py-modindex.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<link rel="stylesheet" type="text/css" href="_static/styles/furo.css?v=354aac6f" />
1010
<link rel="stylesheet" type="text/css" href="_static/copybutton.css?v=76b2166b" />
1111
<link rel="stylesheet" type="text/css" href="_static/styles/furo-extensions.css?v=302659d7" />
12-
<link rel="stylesheet" type="text/css" href="_static/custom.css?v=d9f9fa6c" />
12+
<link rel="stylesheet" type="text/css" href="_static/custom.css?v=dc4c535e" />
1313

1414

1515

@@ -201,6 +201,7 @@
201201
<ul>
202202
<li class="toctree-l1"><a class="reference internal" href="api.html">API Reference</a></li>
203203
<li class="toctree-l1"><a class="reference internal" href="changelog.html">Changelog</a></li>
204+
<li class="toctree-l1"><a class="reference internal" href="releasing.html">Releasing</a></li>
204205
</ul>
205206

206207
</div>

0 commit comments

Comments
 (0)