From 943e50a52d30bf5a9d01fbad100f8857b4bf3dcb Mon Sep 17 00:00:00 2001 From: Nick Coghlan Date: Sun, 17 Apr 2016 17:31:06 +1000 Subject: [PATCH] Moving from BitBucket to GitHub --- .gitignore | 11 +++++++++++ .hgignore | 18 ------------------ README.rst | 13 +++++-------- docs/index.rst | 6 +++--- 4 files changed, 19 insertions(+), 29 deletions(-) create mode 100644 .gitignore delete mode 100644 .hgignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..06499a6 --- /dev/null +++ b/.gitignore @@ -0,0 +1,11 @@ +build/ +dist/ +docs/_build/ +pip.egg-info/ +MANIFEST +.tox +*.egg +*.py[cod] +*~ +.coverage +coverage.xml diff --git a/.hgignore b/.hgignore deleted file mode 100644 index 46cb218..0000000 --- a/.hgignore +++ /dev/null @@ -1,18 +0,0 @@ -syntax: glob -*.swp -*.kate-swp -*.o -*.pyc -*.pyo -*.pyd -*.cover -*~ -.tox/ -__pycache__ -.coverage -coverage/ -htmlcov/ -_build/ -dist/ -MANIFEST -.tox diff --git a/README.rst b/README.rst index 74b1136..38b9244 100644 --- a/README.rst +++ b/README.rst @@ -2,11 +2,8 @@ :target: https://contextlib2.readthedocs.org/ :alt: Latest Docs -.. image:: https://codeship.com/projects/884e9500-3d1a-0133-3eb0-1abe7f570a4c/status?branch=default - :target: https://codeship.com/projects/102388 - -.. image:: https://codecov.io/bitbucket/ncoghlan/contextlib2/coverage.svg?branch=default - :target: https://codecov.io/bitbucket/ncoghlan/contextlib2?branch=default +.. todo: set up Travis CI +.. todo: set up Coveralls contextlib2 is a backport of the `standard library's contextlib module `_ to @@ -29,8 +26,8 @@ You can test against multiple versions of Python with `tox