Skip to content

Commit 81158f8

Browse files
committed
Update links
1 parent 3d6814f commit 81158f8

File tree

8 files changed

+26
-29
lines changed

8 files changed

+26
-29
lines changed

doc/announce/release-0.9.2.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Here is a quick summary of what the py lib provides:
1616

1717
See here for more information:
1818

19-
Pypi pages: http://pypi.python.org/pypi/py/
19+
Pypi pages: https://pypi.org/project/py/
2020

2121
Download/Install: http://codespeak.net/py/0.9.2/download.html
2222

doc/announce/release-1.0.0.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,6 @@ holger
5858
.. _`default plugins`: http://codespeak.net/py/dist/test/plugin/index.html
5959
.. _`distributed testing`: http://codespeak.net/py/dist/test/dist.html
6060
.. _`elastic distributed execution`: http://codespeak.net/py/dist/execnet.html
61-
.. _`1.0.0 py lib release`: http://pypi.python.org/pypi/py
61+
.. _`1.0.0 py lib release`: https://pypi.org/project/py/
6262
.. _`oejskit`: http://codespeak.net/py/dist/test/plugin/oejskit.html
6363

doc/announce/release-1.4.0.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ as "pytest-2.0.0", see here for the revamped docs:
2222
http://pytest.org
2323

2424
And "py.cleanup|py.lookup|py.countloc" etc. helpers are now part of
25-
the pycmd distribution, see http://pypi.python.org/pypi/pycmd
25+
the pycmd distribution, see https://pypi.org/project/pycmd/
2626

2727
This makes "py-1.4.0" a simple library which does not install
2828
any command line utilities anymore.

doc/announce/release-1.4.1.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ comes as its own separate "pytest" distribution, see:
2323
http://pytest.org
2424

2525
Also, the "py.cleanup|py.lookup|py.countloc" helpers are now part of
26-
the pycmd distribution, see http://pypi.python.org/pypi/pycmd
26+
the pycmd distribution, see https://pypi.org/project/pycmd/
2727

2828

2929
Changes between 1.4.0 and 1.4.1

doc/faq.txt

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@ as a clone of ``py.test`` when py.test was in the ``0.8`` release
4141
cycle so some of the newer features_ introduced with py.test-1.0
4242
and py.test-1.1 have no counterpart in nose_.
4343

44-
.. _nose: http://somethingaboutorange.com/mrl/projects/nose/0.11.1/
44+
.. _nose: https://nose.readthedocs.io/
4545
.. _features: test/features.html
46-
.. _apipkg: http://pypi.python.org/pypi/apipkg
46+
.. _apipkg: https://pypi.org/project/apipkg/
4747

4848

4949
What's this "magic" with py.test?
@@ -112,7 +112,7 @@ and will safely find all factory functions for the ``MYARG`` function
112112
argument. It helps to alleviate the de-coupling of function
113113
argument usage and creation.
114114

115-
.. _`Convention over Configuration`: http://en.wikipedia.org/wiki/Convention_over_Configuration
115+
.. _`Convention over Configuration`: https://en.wikipedia.org/wiki/Convention_over_configuration
116116

117117
Can I yield multiple values from a factory function?
118118
-----------------------------------------------------
@@ -134,7 +134,7 @@ Use the `pytest_generate_tests`_ hook to solve both issues
134134
and implement the `parametrization scheme of your choice`_.
135135

136136
.. _`pytest_generate_tests`: test/funcargs.html#parametrizing-tests
137-
.. _`parametrization scheme of your choice`: http://tetamap.wordpress.com/2009/05/13/parametrizing-python-tests-generalized/
137+
.. _`parametrization scheme of your choice`: https://holgerkrekel.net/2009/05/13/parametrizing-python-tests-generalized/
138138

139139

140140
py.test interaction with other packages
@@ -167,6 +167,4 @@ script with this content and invoke that with the python version::
167167

168168
.. _`directly use a checkout`: install.html#directly-use-a-checkout
169169

170-
.. _`install distribute`: http://pypi.python.org/pypi/distribute#installation-instructions
171-
172-
170+
.. _`install distribute`: https://pypi.org/project/distribute/

doc/install.txt

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
.. _`py`:
3-
.. _`index page`: http://pypi.python.org/pypi/py/
3+
.. _`index page`: https://pypi.org/project/py/
44

55
installation info in a nutshell
66
===================================================
@@ -15,7 +15,7 @@ installation info in a nutshell
1515

1616
**Installers**: ``easy_install`` and ``pip``
1717

18-
**hg repository**: https://bitbucket.org/hpk42/py
18+
**Code repository**: https://github.com/pytest-dev/py
1919

2020
easy install or pip ``py``
2121
-----------------------------
@@ -39,16 +39,16 @@ Working from version control or a tarball
3939
-----------------------------------------------
4040

4141
To follow development or start experiments, checkout the
42-
complete code and documentation source with mercurial_::
42+
complete code and documentation source::
4343

44-
hg clone https://bitbucket.org/hpk42/py
44+
git clone https://github.com/pytest-dev/py
4545

46-
Development takes place on the 'trunk' branch.
46+
Development takes place on the 'master' branch.
4747

4848
You can also go to the python package index and
4949
download and unpack a TAR file::
5050

51-
http://pypi.python.org/pypi/py/
51+
https://pypi.org/project/py/
5252

5353
activating a checkout with setuptools
5454
--------------------------------------------
@@ -63,7 +63,7 @@ in order to work inline with the tools and the lib of your checkout.
6363

6464
.. _`directly use a checkout`:
6565

66-
.. _`setuptools`: http://pypi.python.org/pypi/setuptools
66+
.. _`setuptools`: https://pypi.org/project/setuptools/
6767

6868

6969
Mailing list and issue tracker
@@ -73,10 +73,10 @@ Mailing list and issue tracker
7373

7474
- #pylib on irc.freenode.net IRC channel for random questions.
7575

76-
- `bitbucket issue tracker`_ use this bitbucket issue tracker to report
76+
- `issue tracker`_ use the issue tracker to report
7777
bugs or request features.
7878

79-
.. _`bitbucket issue tracker`: http://bitbucket.org/hpk42/py/issues/
79+
.. _`issue tracker`: https://github.com/pytest-dev/py/issues
8080

8181
.. _codespeak: http://codespeak.net/
8282
.. _`py-dev`:

doc/links.inc

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,15 @@
11

22
.. _`skipping plugin`: plugin/skipping.html
33
.. _`funcargs mechanism`: funcargs.html
4-
.. _`doctest.py`: http://docs.python.org/library/doctest.html
4+
.. _`doctest.py`: https://docs.python.org/library/doctest.html
55
.. _`xUnit style setup`: xunit_setup.html
66
.. _`pytest_nose`: plugin/nose.html
77
.. _`reStructured Text`: http://docutils.sourceforge.net
88
.. _`Python debugger`: http://docs.python.org/lib/module-pdb.html
9-
.. _nose: http://somethingaboutorange.com/mrl/projects/nose/
10-
.. _pytest: http://pypi.python.org/pypi/pytest
11-
.. _mercurial: http://mercurial.selenic.com/wiki/
12-
.. _`setuptools`: http://pypi.python.org/pypi/setuptools
13-
.. _`distribute`: http://pypi.python.org/pypi/distribute
14-
.. _`pip`: http://pypi.python.org/pypi/pip
15-
.. _`virtualenv`: http://pypi.python.org/pypi/virtualenv
9+
.. _nose: https://nose.readthedocs.io/
10+
.. _pytest: https://pypi.org/project/pytest/
11+
.. _`setuptools`: https://pypi.org/project/setuptools/
12+
.. _`distribute`: https://pypi.org/project/distribute/
13+
.. _`pip`: https://pypi.org/project/pip/
14+
.. _`virtualenv`: https://pypi.org/project/virtualenv/
1615
.. _hudson: http://hudson-ci.org/

doc/path.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ py.path
55
**Note**: The 'py' library is in "maintenance mode" and so is not
66
recommended for new projects. Please check out
77
`pathlib <https://docs.python.org/3/library/pathlib.html>`_ or
8-
`pathlib2 <https://pypi.python.org/pypi/pathlib2/>`_ for path
8+
`pathlib2 <https://pypi.org/project/pathlib2/>`_ for path
99
operations.
1010

1111
The 'py' lib provides a uniform high-level api to deal with filesystems

0 commit comments

Comments
 (0)