mirror of
https://github.com/jazzband/contextlib2.git
synced 2026-03-16 21:50:24 +00:00
Moving from BitBucket to GitHub
This commit is contained in:
parent
c8b517d807
commit
943e50a52d
4 changed files with 19 additions and 29 deletions
11
.gitignore
vendored
Normal file
11
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
build/
|
||||
dist/
|
||||
docs/_build/
|
||||
pip.egg-info/
|
||||
MANIFEST
|
||||
.tox
|
||||
*.egg
|
||||
*.py[cod]
|
||||
*~
|
||||
.coverage
|
||||
coverage.xml
|
||||
18
.hgignore
18
.hgignore
|
|
@ -1,18 +0,0 @@
|
|||
syntax: glob
|
||||
*.swp
|
||||
*.kate-swp
|
||||
*.o
|
||||
*.pyc
|
||||
*.pyo
|
||||
*.pyd
|
||||
*.cover
|
||||
*~
|
||||
.tox/
|
||||
__pycache__
|
||||
.coverage
|
||||
coverage/
|
||||
htmlcov/
|
||||
_build/
|
||||
dist/
|
||||
MANIFEST
|
||||
.tox
|
||||
13
README.rst
13
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 <https://docs.python.org/3.5/library/contextlib.html>`_ to
|
||||
|
|
@ -29,8 +26,8 @@ You can test against multiple versions of Python with `tox <http://tox.testrun.o
|
|||
|
||||
Versions currently tested in tox are:
|
||||
|
||||
* CPython 2.7 (also tested in Codeship)
|
||||
* CPython 3.4 (also tested in Codeship)
|
||||
* CPython 2.7
|
||||
* CPython 3.4
|
||||
* CPython 3.5
|
||||
* PyPy
|
||||
* PyPy3
|
||||
|
|
@ -39,4 +36,4 @@ To install all the relevant runtimes on Fedora 23::
|
|||
|
||||
sudo dnf install python python3 pypy pypy3
|
||||
sudo dnf copr enable -y mstuchli/Python3.5
|
||||
sudo dnf install python35-python3
|
||||
sudo dnf install python35-python3
|
||||
|
|
|
|||
|
|
@ -693,11 +693,11 @@ Supported Python versions are currently 2.7 and 3.2+.
|
|||
Development and Support
|
||||
-----------------------
|
||||
|
||||
contextlib2 is developed and maintained on BitBucket_. Problems and suggested
|
||||
contextlib2 is developed and maintained on GitHub_. Problems and suggested
|
||||
improvements can be posted to the `issue tracker`_.
|
||||
|
||||
.. _BitBucket: https://bitbucket.org/ncoghlan/contextlib2/overview
|
||||
.. _issue tracker: https://bitbucket.org/ncoghlan/contextlib2/issues?status=new&status=open
|
||||
.. _GitHub: https://github.com/ncoghlan/contextlib2
|
||||
.. _issue tracker: https://github.com/ncoghlan/contextlib2/issues
|
||||
|
||||
|
||||
.. include:: ../NEWS.rst
|
||||
|
|
|
|||
Loading…
Reference in a new issue