diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst index 8e8bfc7f..05961917 100644 --- a/CONTRIBUTING.rst +++ b/CONTRIBUTING.rst @@ -13,7 +13,7 @@ Types of Contributions Report Bugs ~~~~~~~~~~~ -Report bugs at https://github.com/Qwlouse/sacred/issues. +Report bugs at https://github.com/IDSIA/sacred/issues. If you are reporting a bug, please include: @@ -42,7 +42,7 @@ articles, and such. Submit Feedback ~~~~~~~~~~~~~~~ -The best way to send feedback is to file an issue at https://github.com/Qwlouse/sacred/issues. +The best way to send feedback is to file an issue at https://github.com/IDSIA/sacred/issues. If you are proposing a feature: @@ -83,7 +83,7 @@ To get tox, just pip install it. 6. Submit a pull request through the GitHub website. -.. _Fork: https://github.com/Qwlouse/sacred/fork +.. _Fork: https://github.com/IDSIA/sacred/fork Pull Request Guidelines ----------------------- @@ -96,5 +96,5 @@ Before you submit a pull request, check that it meets these guidelines: your new functionality into a function with a docstring, and add the feature to the list in README.rst. 3. The pull request should work for Python 2.7, 3.3, and 3.4. - Check https://travis-ci.org/Qwlouse/sacred/pull_requests + Check https://travis-ci.org/IDSIA/sacred/pull_requests for active pull requests or run the ``tox`` command and make sure that the tests pass for all supported Python versions. diff --git a/README.rst b/README.rst index fab11d72..bc482606 100644 --- a/README.rst +++ b/README.rst @@ -18,16 +18,16 @@ Sacred :target: http://sacred.readthedocs.org/ :alt: ReadTheDocs -.. image:: https://travis-ci.org/Qwlouse/sacred.svg - :target: https://travis-ci.org/Qwlouse/sacred +.. image:: https://travis-ci.org/IDSIA/sacred.svg + :target: https://travis-ci.org/IDSIA/sacred :alt: Travis-CI Status -.. image:: https://coveralls.io/repos/Qwlouse/sacred/badge.svg - :target: https://coveralls.io/r/Qwlouse/sacred +.. image:: https://coveralls.io/repos/IDSIA/sacred/badge.svg + :target: https://coveralls.io/r/IDSIA/sacred :alt: Coverage Report -.. image:: https://scrutinizer-ci.com/g/Qwlouse/sacred/badges/quality-score.png?b=master - :target: https://scrutinizer-ci.com/g/Qwlouse/sacred/ +.. image:: https://scrutinizer-ci.com/g/IDSIA/sacred/badges/quality-score.png?b=master + :target: https://scrutinizer-ci.com/g/IDSIA/sacred/ :alt: Code Scrutinizer Quality .. image:: https://pypip.in/wheel/sacred/badge.svg?style=flat @@ -73,7 +73,7 @@ You can directly install it from the Python Package Index with pip: Or if you want to do it manually you can checkout the current version from git and install it yourself: - | git clone https://github.com/Qwlouse/sacred.git + | git clone https://github.com/IDSIA/sacred.git | cd sacred | python setup.py install diff --git a/docs/examples.rst b/docs/examples.rst index ae9e0945..94a4c97f 100644 --- a/docs/examples.rst +++ b/docs/examples.rst @@ -2,7 +2,7 @@ Examples ******** You can find these examples in the examples directory (surprise!) of the Sacred sources or in the -`Github Repository `_. +`Github Repository `_. Look at them for the sourcecode, it is an important part of the examples. It can also be very helpful to run them yourself and play with the command-line interface. @@ -12,36 +12,36 @@ also get by running them with the ``-h``, ``--help`` or ``help`` flags. Hello World =========== -`examples/01_hello_world.py `_ +`examples/01_hello_world.py `_ .. automodule:: examples.01_hello_world Hello Config Dict ================= -`examples/02_hello_config_dict.py `_ +`examples/02_hello_config_dict.py `_ .. automodule:: examples.02_hello_config_dict Hello Config Scope ================== -`examples/03_hello_config_scope.py `_ +`examples/03_hello_config_scope.py `_ .. automodule:: examples.03_hello_config_scope Captured Functions ================== -`examples/04_captured_functions.py `_ +`examples/04_captured_functions.py `_ .. automodule:: examples.04_captured_functions My Commands =========== -`examples/05_my_commands.py `_ +`examples/05_my_commands.py `_ .. automodule:: examples.05_my_commands Randomness ========== -`examples/06_randomness.py `_ +`examples/06_randomness.py `_ .. automodule:: examples.06_randomness diff --git a/docs/quickstart.rst b/docs/quickstart.rst index 17cb0505..8c062d6b 100644 --- a/docs/quickstart.rst +++ b/docs/quickstart.rst @@ -9,7 +9,7 @@ You can get Sacred directly from pypi like this:: But you can of course also clone the git repo and install it from there:: - git clone https://github.com/Qwlouse/sacred.git + git clone https://github.com/IDSIA/sacred.git cd sacred [sudo] python setup.py install diff --git a/sacred/__about__.py b/sacred/__about__.py index 83d67c0d..86cea67d 100644 --- a/sacred/__about__.py +++ b/sacred/__about__.py @@ -10,4 +10,4 @@ __author__ = 'Klaus Greff' __author_email__ = 'qwlouse@gmail.com' -__url__ = "https://github.com/Qwlouse/sacred" +__url__ = "https://github.com/IDSIA/sacred"