Skip to content

Commit 0c1f6fb

Browse files
authored
Fix broken links (#320)
1 parent 8fb9cee commit 0c1f6fb

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/components/array-libraries.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@ export const ArrayLibraries = () => {
8686
description={library.description}
8787
logo={library.logo}
8888
url={library.url}
89+
repo={library.repo}
8990
/>
9091
))}
9192
</SimpleGrid>

src/data/array-libraries.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export const Libraries = [
2020
description:
2121
'NumPy-compatible array library for GPU-accelerated computing with Python.',
2222
url: 'https://cupy.chainer.org/',
23-
repo: 'https://github.com/cupy/cupy/',
23+
repo: 'https://github.com/cupy/cupy',
2424
logo: '/libraries/cupy_logo_1000px.png',
2525
},
2626
{
@@ -35,13 +35,14 @@ export const Libraries = [
3535
name: 'Sparse',
3636
description: 'Sparse multi-dimensional arrays for the PyData ecosystem',
3737
url: 'https://sparse.pydata.org/',
38+
repo: 'https://github.com/pydata/sparse',
3839
logo: '/libraries/sparse-logo.png',
3940
},
4041
{
4142
name: 'Pint',
4243
description: 'Operate and manipulate physical quantities in Python',
4344
url: 'http://pint.readthedocs.org/',
44-
repo: 'https://github.com/pydata/sparse',
45+
repo: 'https://github.com/hgrecco/pint',
4546
logo: '/libraries/pint-logo-full.jpg',
4647
},
4748
]

0 commit comments

Comments
 (0)