diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1336d5b1..9253c21f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -9,7 +9,7 @@ on: jobs: build-artifacts: - if: github.repository == 'tomwhite/cubed' + if: github.repository == 'cubed-dev/cubed' runs-on: ubuntu-latest steps: - name: Checkout source diff --git a/api_status.md b/api_status.md index 9edd1e36..cf0ba4fd 100644 --- a/api_status.md +++ b/api_status.md @@ -40,7 +40,7 @@ This table shows which parts of the the [Array API](https://data-apis.org/array- | | _others_ | :white_check_mark: | | | | Indexing | Single-axis | :white_check_mark: | | | | | Multi-axis | :white_check_mark: | | | -| | Boolean array | :x: | 3 | Shape is data dependent, [#73](https://github.com/tomwhite/cubed/issues/73) | +| | Boolean array | :x: | 3 | Shape is data dependent, [#73](https://github.com/cubed-dev/cubed/issues/73) | | Linear Algebra Functions | `matmul` | :white_check_mark: | | | | | `matrix_transpose` | :white_check_mark: | | | | | `tensordot` | :white_check_mark: | | | @@ -49,10 +49,10 @@ This table shows which parts of the the [Array API](https://data-apis.org/array- | | `broadcast_to` | :white_check_mark: | | | | | `concat` | :white_check_mark: | | | | | `expand_dims` | :white_check_mark: | | | -| | `flip` | :x: | 2 | Needs indexing with step=-1, [#114](https://github.com/tomwhite/cubed/issues/114) | +| | `flip` | :x: | 2 | Needs indexing with step=-1, [#114](https://github.com/cubed-dev/cubed/issues/114) | | | `permute_dims` | :white_check_mark: | | | | | `reshape` | :white_check_mark: | | Partial implementation | -| | `roll` | :x: | 2 | Use `concat` and `reshape`, [#115](https://github.com/tomwhite/cubed/issues/115) | +| | `roll` | :x: | 2 | Use `concat` and `reshape`, [#115](https://github.com/cubed-dev/cubed/issues/115) | | | `squeeze` | :white_check_mark: | | | | | `stack` | :white_check_mark: | | | | 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- | | `mean` | :white_check_mark: | | | | | `min` | :white_check_mark: | | | | | `prod` | :white_check_mark: | | | -| | `std` | :x: | 2 | Like `mean`, [#29](https://github.com/tomwhite/cubed/issues/29) | +| | `std` | :x: | 2 | Like `mean`, [#29](https://github.com/cubed-dev/cubed/issues/29) | | | `sum` | :white_check_mark: | | | -| | `var` | :x: | 2 | Like `mean`, [#29](https://github.com/tomwhite/cubed/issues/29) | +| | `var` | :x: | 2 | Like `mean`, [#29](https://github.com/cubed-dev/cubed/issues/29) | | Utility Functions | `all` | :white_check_mark: | | | | | `any` | :white_check_mark: | | | diff --git a/cubed/core/gufunc.py b/cubed/core/gufunc.py index 02e13733..bc85e8e8 100644 --- a/cubed/core/gufunc.py +++ b/cubed/core/gufunc.py @@ -48,7 +48,7 @@ def apply_gufunc( if nout is not None: raise NotImplementedError( - "Multiple outputs are not yet supported, see https://github.com/tomwhite/cubed/issues/69" + "Multiple outputs are not yet supported, see https://github.com/cubed-dev/cubed/issues/69" ) # Vectorize function, if required diff --git a/cubed/tests/test_optimization.py b/cubed/tests/test_optimization.py index 599b7b93..88d9b17f 100644 --- a/cubed/tests/test_optimization.py +++ b/cubed/tests/test_optimization.py @@ -394,7 +394,7 @@ def test_fuse_diamond(spec): # mixed levels and diamond -# from https://github.com/tomwhite/cubed/issues/126 +# from https://github.com/cubed-dev/cubed/issues/126 # # a -> a # | /| @@ -429,7 +429,7 @@ def test_fuse_mixed_levels_and_diamond(spec): # repeated argument -# from https://github.com/tomwhite/cubed/issues/65 +# from https://github.com/cubed-dev/cubed/issues/65 # # a -> a # | ‖ diff --git a/docs/conf.py b/docs/conf.py index eabb70a2..630fbb79 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -105,7 +105,7 @@ # documentation. html_theme_options = { - "repository_url": "https://github.com/tomwhite/cubed", + "repository_url": "https://github.com/cubed-dev/cubed", "use_repository_button": True, "use_issues_button": True, "use_edit_page_button": True, diff --git a/pyproject.toml b/pyproject.toml index e04c5fda..9948b6cf 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -95,6 +95,6 @@ test-modal = [ ] [project.urls] -homepage = "https://github.com/tomwhite/cubed" +homepage = "https://github.com/cubed-dev/cubed" documentation = "https://tomwhite.github.io/cubed" -repository = "https://github.com/tomwhite/cubed" +repository = "https://github.com/cubed-dev/cubed"