Skip to content

Commit

Permalink
changed all links to new repository location at IDSIA/sacred
Browse files Browse the repository at this point in the history
  • Loading branch information
Qwlouse committed Mar 17, 2015
1 parent 5d0c61c commit 5bc3e44
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 20 deletions.
8 changes: 4 additions & 4 deletions CONTRIBUTING.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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:

Expand Down Expand Up @@ -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:

Expand Down Expand Up @@ -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
-----------------------
Expand All @@ -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.
14 changes: 7 additions & 7 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
14 changes: 7 additions & 7 deletions docs/examples.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Examples
********
You can find these examples in the examples directory (surprise!) of the
Sacred sources or in the
`Github Repository <https://github.com/Qwlouse/sacred/tree/master/examples>`_.
`Github Repository <https://github.com/IDSIA/sacred/tree/master/examples>`_.
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.
Expand All @@ -12,36 +12,36 @@ also get by running them with the ``-h``, ``--help`` or ``help`` flags.

Hello World
===========
`examples/01_hello_world.py <https://github.com/Qwlouse/sacred/tree/master/examples/01_hello_world.py>`_
`examples/01_hello_world.py <https://github.com/IDSIA/sacred/tree/master/examples/01_hello_world.py>`_

.. automodule:: examples.01_hello_world

Hello Config Dict
=================
`examples/02_hello_config_dict.py <https://github.com/Qwlouse/sacred/tree/master/examples/02_hello_config_dict.py>`_
`examples/02_hello_config_dict.py <https://github.com/IDSIA/sacred/tree/master/examples/02_hello_config_dict.py>`_

.. automodule:: examples.02_hello_config_dict

Hello Config Scope
==================
`examples/03_hello_config_scope.py <https://github.com/Qwlouse/sacred/tree/master/examples/03_hello_config_scope.py>`_
`examples/03_hello_config_scope.py <https://github.com/IDSIA/sacred/tree/master/examples/03_hello_config_scope.py>`_

.. automodule:: examples.03_hello_config_scope

Captured Functions
==================
`examples/04_captured_functions.py <https://github.com/Qwlouse/sacred/tree/master/examples/04_captured_functions.py>`_
`examples/04_captured_functions.py <https://github.com/IDSIA/sacred/tree/master/examples/04_captured_functions.py>`_

.. automodule:: examples.04_captured_functions

My Commands
===========
`examples/05_my_commands.py <https://github.com/Qwlouse/sacred/tree/master/examples/05_my_commands.py>`_
`examples/05_my_commands.py <https://github.com/IDSIA/sacred/tree/master/examples/05_my_commands.py>`_

.. automodule:: examples.05_my_commands

Randomness
==========
`examples/06_randomness.py <https://github.com/Qwlouse/sacred/tree/master/examples/06_randomness.py>`_
`examples/06_randomness.py <https://github.com/IDSIA/sacred/tree/master/examples/06_randomness.py>`_

.. automodule:: examples.06_randomness
2 changes: 1 addition & 1 deletion docs/quickstart.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion sacred/__about__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@
__author__ = 'Klaus Greff'
__author_email__ = 'qwlouse@gmail.com'

__url__ = "https://github.com/Qwlouse/sacred"
__url__ = "https://github.com/IDSIA/sacred"

0 comments on commit 5bc3e44

Please sign in to comment.