Skip to content

Commit 621d231

Browse files
committed
Move unumpy to separate repo.
1 parent a607ca5 commit 621d231

33 files changed

+39
-2077
lines changed

.conda/meta.yaml

+5-5
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
{% set sha256 = '06fc0874e1e27c91c862d40b24ee314b95e038275ce653a3dfd8eca00030a85f' %}
33

44
package:
5-
name: uarray
5+
name: unumpy
66
version: {{ version }}
77

88
source:
9-
fn: uarray-{{ version }}.tar.gz
10-
url: https://github.com/Quansight-Labs/uarray/archive/v{{ version }}.tar.gz
9+
fn: unumpy-{{ version }}.tar.gz
10+
url: https://github.com/Quansight-Labs/unumpy/archive/v{{ version }}.tar.gz
1111
sha256: {{ sha256 }}
1212

1313
requirements:
@@ -22,12 +22,12 @@ build:
2222
test: {}
2323

2424
about:
25-
home: https://github.com/Quansight-Labs/uarray
25+
home: https://github.com/Quansight-Labs/unumpy
2626
license: BSD
2727
license_family: BSD
2828
license_file: LICENSE
2929
summary: 'Array interface object for Python with pluggable backends and a multiple-dispatch mechanism for defining down-stream functions'
30-
dev_url: https://github.com/Quansight-Labs/uarray
30+
dev_url: https://github.com/Quansight-Labs/unumpy
3131

3232
extra:
3333
recipe-maintainers:

.gitattributes

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
uarray/_version.py export-subst
2+
unumpy/_version.py export-subst

CONTRIBUTING.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
11
# Contributing
22

3-
Contribution to `uarray` are welcome and appreciated. Contributions can take the form of bug reports, documentation, code, and more.
3+
Contributions to `unumpy` are welcome and appreciated. Contributions can take the form of bug reports, documentation, code, and more.
44

55
## Getting the code
66

7-
Make a fork of the main [uarray repository](https://github.com/Quansight-Labs/uarray) and clone the fork:
7+
Make a fork of the main [unumpy repository](https://github.com/Quansight-Labs/unumpy) and clone the fork:
88

99
```
10-
git clone https://github.com/<your-github-username>/uarray
10+
git clone https://github.com/<your-github-username>/unumpy
1111
```
1212

1313
## Install
1414

15-
`uarray` and all development dependencies can be installed via:
15+
`unumpy` and all development dependencies can be installed via:
1616

1717
```
1818
pip install -e ".[all]"
1919
```
2020

21-
Note that uarray supports Python versions >= 3.5. If you're running `conda` and would prefer to have dependencies
21+
Note that unumpy supports Python versions >= 3.5. If you're running `conda` and would prefer to have dependencies
2222
pulled from there, use
2323

2424
```
@@ -38,5 +38,5 @@ pytest
3838
To run a subset of tests:
3939

4040
```
41-
pytest uarray/tests/test_backend.py
41+
pytest unumpy/tests/test_numpy.py
4242
```

MANIFEST.in

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
include versioneer.py
22
recursive-include uarray *.py
33
recursive-include unumpy *.py
4+
include unumpy/_version.py

README.md

+2-6
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,11 @@
1-
# `uarray` - A back-end mechanism geared towards array computing
1+
# `unumpy` - NumPy, but implementation-independent
22

33
[![Join the chat at https://gitter.im/Plures/uarray](https://badges.gitter.im/Plures/uarray.svg)](https://gitter.im/Plures/uarray?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) [![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/Quansight-Labs/uarray/master) [![Build Status](https://dev.azure.com/Quansight-Labs/uarray/_apis/build/status/Quansight-Labs.uarray?branchName=master)](https://dev.azure.com/Quansight-Labs/uarray/_build/latest?definitionId=1&branchName=master) [![PyPI](https://img.shields.io/pypi/v/uarray.svg?style=flat-square)](https://pypi.org/project/uarray/)
44

55
<img src="docs/logo.png" style="width: 20em; text-align: center;" alt="uarray logo">
66

7-
- [Documentation](https://uarray.readthedocs.io/en/latest/)
7+
- [Documentation](https://unumpy.readthedocs.io/en/latest/)
88
- [Road Map](https://github.com/orgs/Quansight-Labs/projects/1)
9-
- [Future Meetings](https://calendar.google.com/calendar/embed?src=quansight.com_cg7sf4usbcn18gdhdb3l2c6v1g%40group.calendar.google.com&ctz=America%2FNew_York)
10-
- [Meeting Notes](https://github.com/Quansight-Labs/uarray/wiki/Meeting-Notes)
11-
- [References](https://github.com/Quansight-Labs/uarray/wiki/References)
12-
- [Papers](https://paperpile.com/shared/fHftX5)
139

1410
## Contributing
1511

docs/conf.py

+1
Original file line numberDiff line numberDiff line change
@@ -207,6 +207,7 @@ def __getattr__(cls, name):
207207
"python": ("https://docs.python.org/3/", None),
208208
"numpy": ("https://docs.scipy.org/doc/numpy/", None),
209209
"scipy": ("https://docs.scipy.org/doc/scipy/reference/", None),
210+
"uarray": ("https://uarray.readthedocs.io/en/latest/", None),
210211
}
211212

212213
doctest_global_setup = """

docs/generated/uarray.BackendNotImplementedError.rst

-6
This file was deleted.

docs/generated/uarray.Dispatchable.__init__.rst

-6
This file was deleted.

docs/generated/uarray.Dispatchable.rst

-21
This file was deleted.

docs/generated/uarray.all_of_type.rst

-6
This file was deleted.

docs/generated/uarray.clear_backends.rst

-6
This file was deleted.

docs/generated/uarray.create_multimethod.rst

-6
This file was deleted.

docs/generated/uarray.generate_multimethod.rst

-6
This file was deleted.

docs/generated/uarray.mark_as.rst

-6
This file was deleted.

docs/generated/uarray.register_backend.rst

-6
This file was deleted.

docs/generated/uarray.rst

-149
This file was deleted.

docs/generated/uarray.set_backend.rst

-6
This file was deleted.

docs/generated/uarray.set_global_backend.rst

-6
This file was deleted.

docs/generated/uarray.skip_backend.rst

-6
This file was deleted.

docs/generated/uarray.wrap_single_convertor.rst

-6
This file was deleted.

docs/index.rst

-2
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,6 @@ Choose the documentation page relevant to you:
9292

9393
glossary
9494

95-
generated/uarray
96-
9795
generated/unumpy
9896

9997

pytest.ini

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
[pytest]
22
addopts = --mypy --black --doctest-modules --junitxml=junit/test-results.xml --cov-report=xml --cov-report=term --cov --cov-report html --cov . --cov-config .coveragerc
33
testpaths =
4-
uarray
54
unumpy
65
doctest_optionflags= IGNORE_EXCEPTION_DETAIL

requirements.txt

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.

0 commit comments

Comments
 (0)