Skip to content

Commit

Permalink
Change repository name
Browse files Browse the repository at this point in the history
  • Loading branch information
Guillaume Lemaitre committed Jul 19, 2016
1 parent 34251ae commit c9db691
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion AUTHORS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ Contributors
Refers to GitHub contributors page_.

.. _scikit-learn: http://scikit-learn.org
.. _page: https://github.com/fmfn/UnbalancedDataset/graphs/contributors
.. _page: https://github.com/scikit-learn-contrib/imbalanced-learn/graphs/contributors
10 changes: 5 additions & 5 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@
Contributing code
=================

This guide is adapted from (scikit-learn)[https://github.com/viisar/brew/blob/master/CONTRIBUTING.rst]
This guide is adapted from (scikit-learn)[https://github.com/scikit-learn/scikit-learn/blob/master/CONTRIBUTING.md]

How to contribute
-----------------

The preferred way to contribute to imbalanced-learn is to fork the
[main repository](https://github.com/fmfn/UnbalancedDataset) on
[main repository](https://github.com/scikit-learn-contrib/imbalanced-learn) on
GitHub:

1. Fork the [project repository](https://github.com/fmfn/UnbalancedDataset):
1. Fork the [project repository](https://github.com/scikit-learn-contrib/imbalanced-learn):
click on the 'Fork' button near the top of the page. This creates
a copy of the code under your account on the GitHub server.

Expand Down Expand Up @@ -126,8 +126,8 @@ It is recommended to check that your issue complies with the
following rules before submitting:

- Verify that your issue is not being currently addressed by other
[issues](https://github.com/fmfn/UnbalancedDataset/issues?q=)
or [pull requests](https://github.com/fmfn/UnbalancedDataset/pulls?q=).
[issues](https://github.com/scikit-learn-contrib/imbalanced-learn/issues?q=)
or [pull requests](https://github.com/scikit-learn-contrib/imbalanced-learn/pulls?q=).

- Please ensure all code snippets and error messages are formatted in
appropriate code blocks.
Expand Down
6 changes: 3 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ Documentation

Installation documentation, API documentation, and examples can be found on the documentation_.

.. _documentation: http://glemaitre.github.io/imbalanced-learn
.. _documentation: http://contrib.scikit-learn.org/imbalanced-learn/

Installation
============
Expand Down Expand Up @@ -69,7 +69,7 @@ The package is release also in Anaconda Cloud platform::
If you prefer, you can clone it and run the setup.py file. Use the following commands to get a
copy from Github and install all dependencies::

git clone https://github.com/fmfn/imbalanced-learn.git
git clone https://github.com/scikit-learn-contrib/imbalanced-learn.git
cd imbalanced-learn
python setup.py install

Expand Down Expand Up @@ -124,7 +124,7 @@ Below is a list of the methods currently implemented in this module.

The different algorithms are presented in the following notebook_.

.. _notebook: https://github.com/fmfn/UnbalancedDataset/blob/master/examples/plot_unbalanced_dataset.ipynb
.. _notebook: https://github.com/scikit-learn-contrib/imbalanced-learn/blob/master/examples/plot_unbalanced_dataset.ipynb

This is a work in progress. Any comments, suggestions or corrections are welcome.

Expand Down
4 changes: 2 additions & 2 deletions conda-recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ package:

source:
git_rev: 0.1.1
git_url: https://github.com/fmfn/UnbalancedDataset.git
git_url: https://github.com/scikit-learn-contrib/imbalanced-learn.git

requirements:
build:
Expand All @@ -27,7 +27,7 @@ test:
- imblearn

about:
home: https://github.com/fmfn/UnbalancedDataset
home: https://github.com/scikit-learn-contrib/imbalanced-learn
license: MIT
license_file: LICENSE

Expand Down
6 changes: 3 additions & 3 deletions doc/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ The package is release also in Anaconda Cloud platform::
If you prefer, you can clone it and run the setup.py file. Use the following commands to get a
copy from Github and install all dependencies::

git clone https://github.com/fmfn/UnbalancedDataset.git
cd UnbalancedDataset
git clone https://github.com/scikit-learn-contrib/imbalanced-learn.git
cd imbalanced-learn
python setup.py install

Test and coverage
Expand All @@ -36,4 +36,4 @@ Contribute

You can contribute to this code through Pull Request on GitHub_. Please, make sure that your code is coming with unit tests to ensure full coverage and continuous integration in the API.

.. _GitHub: https://github.com/fmfn/UnbalancedDataset.git
.. _GitHub: https://github.com/scikit-learn-contrib/imbalanced-learn/pulls
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ def is_installing():
LONG_DESCRIPTION = f.read()
MAINTAINER = 'G. Lemaitre, F. Nogueira, D. Oliveira, C. Aridas'
MAINTAINER_EMAIL = '[email protected], [email protected], [email protected], [email protected]'
URL = 'https://github.com/fmfn/UnbalancedDataset'
URL = 'https://github.com/scikit-learn-contrib/imbalanced-learn'
LICENSE = 'new BSD'
DOWNLOAD_URL = 'https://github.com/fmfn/UnbalancedDataset'
DOWNLOAD_URL = 'https://github.com/scikit-learn-contrib/imbalanced-learn'
VERSION = _VERSION_GLOBALS['__version__']


Expand Down

0 comments on commit c9db691

Please sign in to comment.