Skip to content

Commit

Permalink
Merge pull request #12 from nschloe/fix-links
Browse files Browse the repository at this point in the history
fix some links
  • Loading branch information
nschloe authored Apr 25, 2021
2 parents 1a67e8d + 6ddefcb commit 7209683
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,10 +68,10 @@ members of the project's leadership.
## Attribution

This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html
available at https://www.contributor-covenant.org/version/1/4/code-of-conduct/

[homepage]: https://www.contributor-covenant.org
[homepage]: https://www.contributor-covenant.org/

For answers to common questions about this code of conduct, see
https://www.contributor-covenant.org/faq
https://www.contributor-covenant.org/faq/

2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ VERSION=$(shell python3 -c "from configparser import ConfigParser; p = ConfigPar
default:
@echo "\"make publish\"?"

# https://packaging.python.org/tutorials/packaging-projects
# https://packaging.python.org/tutorials/packaging-projects/
upload:
# Make sure we're on the main branch
@if [ "$(shell git rev-parse --abbrev-ref HEAD)" != "main" ]; then exit 1; fi
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ slower:

<img alt="memory usage" src="https://nschloe.github.io/npx/perf-add-at.svg" width="50%">

Corresponding report: https://github.com/numpy/numpy/issues/11156.
[Corresponding issue report](https://github.com/numpy/numpy/issues/11156)


#### `unique_rows`
Expand All @@ -60,7 +60,7 @@ npx.unique_rows(a, return_inverse=False, return_counts=False)
Returns the unique rows of the integer array `a`. The numpy alternative `np.unique(a,
axis=0)` is slow.

Corresponding report: https://github.com/numpy/numpy/issues/11136.
[Corresponding issue report](https://github.com/numpy/numpy/issues/11136)


#### `isin_rows`
Expand Down Expand Up @@ -95,7 +95,7 @@ out = npx.minimize(f, x0)
In SciPy, the result from a minimization `out.x` will _always_ have shape `(n,)`, no
matter the input vector. npx changes this to respect the input vector shape.

Corresponding report: https://github.com/scipy/scipy/issues/13869.
[Corresponding issue report](https://github.com/scipy/scipy/issues/13869)


### License
Expand Down

0 comments on commit 7209683

Please sign in to comment.