Skip to content

Commit 7399432

Browse files
authored
signals-dev -> sintel-dev (#13)
1 parent aa6b787 commit 7399432

File tree

5 files changed

+13
-13
lines changed

5 files changed

+13
-13
lines changed

CONTRIBUTING.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,21 +7,21 @@ update to `SigPro` library.
77

88
The first step would be to clone the `SigPro` repository. In order to do so
99
make sure that you have access to the repository by accessing it direcly
10-
[https://github.com/signals-dev/SigPro/](
11-
https://github.com/signals-dev/SigPro/).
10+
[https://github.com/sintel-dev/SigPro/](
11+
https://github.com/sintel-dev/SigPro/).
1212

1313
If you have access to the repository and you have your `ssh` keys configured
1414
in your github account, you can clone it by using the following command
1515

1616
```bash
17-
git clone [email protected]:signals-dev/SigPro.git
17+
git clone [email protected]:sintel-dev/SigPro.git
1818
```
1919

2020
If you don't have your `ssh` keys configured you can clone the repository
2121
using your login name and password running the following command:
2222

2323
```bash
24-
git clone https://github.com/signals-dev/SigPro
24+
git clone https://github.com/sintel-dev/SigPro
2525
```
2626

2727
Next, you can enter your repository folder, create a virtualenv and install
@@ -96,4 +96,4 @@ request by doing the following steps:
9696
1. Add the new files and the updated ones. By running `git status` you will see the modified and `new/untracked` files. Use `git add` to `add` the files that involve your implementation, such as the new primitive `json` file, the new module with the new transformation or aggregation and other changes that you may have done to existing files (such as `setup.py` if you updated or introduce a new dependency).
9797
2. Commit your changes using `git commit -m "Implement my new transformation"`.
9898
3. Push your branch: `git push --set-upstream origin <name_of_your_branch>`.
99-
4. Go to [https://github.com/signals-dev/SigPro/](https://github.com/signals-dev/SigPro/) and create a pull request from this branch to the master branch.
99+
4. Go to [https://github.com/sintel-dev/SigPro/](https://github.com/sintel-dev/SigPro/) and create a pull request from this branch to the master branch.

HISTORY.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ to create new primitives and to test those with the demo data included in this p
2020

2121
This release also includes the following User Guides:
2222

23-
* [PRIMITIVES.md](https://github.com/signals-dev/SigPro/blob/master/PRIMITIVES.md): Information
23+
* [PRIMITIVES.md](https://github.com/sintel-dev/SigPro/blob/master/PRIMITIVES.md): Information
2424
about the primitive families, their expected input and output.
25-
* [USAGE.md](https://github.com/signals-dev/SigPro/blob/master/USAGE.md): Instructions about how
25+
* [USAGE.md](https://github.com/sintel-dev/SigPro/blob/master/USAGE.md): Instructions about how
2626
to usee the three main functionalities of `SigPro`.
27-
* [DEVELOPMENT.md](https://github.com/signals-dev/SigPro/blob/master/DEVELOPMENT.md): Step by step
27+
* [DEVELOPMENT.md](https://github.com/sintel-dev/SigPro/blob/master/DEVELOPMENT.md): Step by step
2828
guide about how to write a valid `SigPro` primitive and contribute it to either `SigPro` or
2929
your own library.
3030

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@
55

66
[![Development Status](https://img.shields.io/badge/Development%20Status-2%20--%20Pre--Alpha-yellow)](https://pypi.org/search/?c=Development+Status+%3A%3A+2+-+Pre-Alpha)
77
[![PyPi Shield](https://img.shields.io/pypi/v/SigPro.svg)](https://pypi.python.org/pypi/SigPro)
8-
[![Tests](https://github.com/signals-dev/SigPro/workflows/Run%20Tests/badge.svg)](https://github.com/signals-dev/SigPro/actions?query=workflow%3A%22Run+Tests%22+branch%3Amaster)
8+
[![Tests](https://github.com/sintel-dev/SigPro/workflows/Run%20Tests/badge.svg)](https://github.com/sintel-dev/SigPro/actions?query=workflow%3A%22Run+Tests%22+branch%3Amaster)
99
[![Downloads](https://pepy.tech/badge/sigpro)](https://pepy.tech/project/sigpro)
1010

1111

1212
# SigPro: Signal Processing Tools for Machine Learning
1313

14-
* License: [MIT](https://github.com/signals-dev/SigPro/blob/master/LICENSE)
14+
* License: [MIT](https://github.com/sintel-dev/SigPro/blob/master/LICENSE)
1515
* Development Status: [Pre-Alpha](https://pypi.org/search/?c=Development+Status+%3A%3A+2+-+Pre-Alpha)
16-
* Homepage: https://github.com/signals-dev/SigPro
16+
* Homepage: https://github.com/sintel-dev/SigPro
1717

1818
## Overview
1919

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
copyright = '2020, MIT Data To AI Lab'
6161
author = 'MIT Data To AI Lab'
6262
description = 'Signal Processing Tools for Machine Learning'
63-
user = 'signals-dev'
63+
user = 'sintel-dev'
6464

6565
# The version info for the project you're documenting, acts as replacement
6666
# for |version| and |release|, also used in various other places throughout

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@
9999
setup_requires=setup_requires,
100100
test_suite='tests',
101101
tests_require=tests_require,
102-
url='https://github.com/signals-dev/SigPro',
102+
url='https://github.com/sintel-dev/SigPro',
103103
version='0.0.4.dev0',
104104
zip_safe=False,
105105
)

0 commit comments

Comments
 (0)