Skip to content

Commit d47b6c1

Browse files
committed
Fix repository org (change to cubed-dev)
1 parent 18041d4 commit d47b6c1

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99

1010
jobs:
1111
build-artifacts:
12-
if: github.repository == 'tomwhite/cubed'
12+
if: github.repository == 'cubed-dev/cubed'
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Checkout source

api_status.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ This table shows which parts of the the [Array API](https://data-apis.org/array-
4040
| | _others_ | :white_check_mark: | | |
4141
| Indexing | Single-axis | :white_check_mark: | | |
4242
| | Multi-axis | :white_check_mark: | | |
43-
| | Boolean array | :x: | 3 | Shape is data dependent, [#73](https://github.com/tomwhite/cubed/issues/73) |
43+
| | Boolean array | :x: | 3 | Shape is data dependent, [#73](https://github.com/cubed-dev/cubed/issues/73) |
4444
| Linear Algebra Functions | `matmul` | :white_check_mark: | | |
4545
| | `matrix_transpose` | :white_check_mark: | | |
4646
| | `tensordot` | :white_check_mark: | | |
@@ -49,10 +49,10 @@ This table shows which parts of the the [Array API](https://data-apis.org/array-
4949
| | `broadcast_to` | :white_check_mark: | | |
5050
| | `concat` | :white_check_mark: | | |
5151
| | `expand_dims` | :white_check_mark: | | |
52-
| | `flip` | :x: | 2 | Needs indexing with step=-1, [#114](https://github.com/tomwhite/cubed/issues/114) |
52+
| | `flip` | :x: | 2 | Needs indexing with step=-1, [#114](https://github.com/cubed-dev/cubed/issues/114) |
5353
| | `permute_dims` | :white_check_mark: | | |
5454
| | `reshape` | :white_check_mark: | | Partial implementation |
55-
| | `roll` | :x: | 2 | Use `concat` and `reshape`, [#115](https://github.com/tomwhite/cubed/issues/115) |
55+
| | `roll` | :x: | 2 | Use `concat` and `reshape`, [#115](https://github.com/cubed-dev/cubed/issues/115) |
5656
| | `squeeze` | :white_check_mark: | | |
5757
| | `stack` | :white_check_mark: | | |
5858
| Searching Functions | `argmax` | :white_check_mark: | | |
@@ -69,8 +69,8 @@ This table shows which parts of the the [Array API](https://data-apis.org/array-
6969
| | `mean` | :white_check_mark: | | |
7070
| | `min` | :white_check_mark: | | |
7171
| | `prod` | :white_check_mark: | | |
72-
| | `std` | :x: | 2 | Like `mean`, [#29](https://github.com/tomwhite/cubed/issues/29) |
72+
| | `std` | :x: | 2 | Like `mean`, [#29](https://github.com/cubed-dev/cubed/issues/29) |
7373
| | `sum` | :white_check_mark: | | |
74-
| | `var` | :x: | 2 | Like `mean`, [#29](https://github.com/tomwhite/cubed/issues/29) |
74+
| | `var` | :x: | 2 | Like `mean`, [#29](https://github.com/cubed-dev/cubed/issues/29) |
7575
| Utility Functions | `all` | :white_check_mark: | | |
7676
| | `any` | :white_check_mark: | | |

cubed/core/gufunc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ def apply_gufunc(
4848

4949
if nout is not None:
5050
raise NotImplementedError(
51-
"Multiple outputs are not yet supported, see https://github.com/tomwhite/cubed/issues/69"
51+
"Multiple outputs are not yet supported, see https://github.com/cubed-dev/cubed/issues/69"
5252
)
5353

5454
# Vectorize function, if required

cubed/tests/test_optimization.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -394,7 +394,7 @@ def test_fuse_diamond(spec):
394394

395395

396396
# mixed levels and diamond
397-
# from https://github.com/tomwhite/cubed/issues/126
397+
# from https://github.com/cubed-dev/cubed/issues/126
398398
#
399399
# a -> a
400400
# | /|
@@ -429,7 +429,7 @@ def test_fuse_mixed_levels_and_diamond(spec):
429429

430430

431431
# repeated argument
432-
# from https://github.com/tomwhite/cubed/issues/65
432+
# from https://github.com/cubed-dev/cubed/issues/65
433433
#
434434
# a -> a
435435
# | ‖

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@
105105
# documentation.
106106

107107
html_theme_options = {
108-
"repository_url": "https://github.com/tomwhite/cubed",
108+
"repository_url": "https://github.com/cubed-dev/cubed",
109109
"use_repository_button": True,
110110
"use_issues_button": True,
111111
"use_edit_page_button": True,

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,6 @@ test-modal = [
9595
]
9696

9797
[project.urls]
98-
homepage = "https://github.com/tomwhite/cubed"
98+
homepage = "https://github.com/cubed-dev/cubed"
9999
documentation = "https://tomwhite.github.io/cubed"
100-
repository = "https://github.com/tomwhite/cubed"
100+
repository = "https://github.com/cubed-dev/cubed"

0 commit comments

Comments
 (0)