Skip to content

Commit 5615801

Browse files
committed
DOC: Switch to https where used
Switch links to https
1 parent 66fc298 commit 5615801

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+108
-106
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ notifications:
9494

9595
# Setup anaconda
9696
before_install:
97-
- wget http://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh
97+
- wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh
9898
- chmod +x miniconda.sh
9999
- ./miniconda.sh -b -p /home/travis/miniconda
100100
- export PATH=/home/travis/miniconda/bin:$PATH

CHANGES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
Release Notes
22
=============
33

4-
The list of changes for each statsmodels release can be found [here](http://www.statsmodels.org/devel/release/index.html). Full details are available in the [commit logs](https://github.com/statsmodels/statsmodels).
4+
The list of changes for each statsmodels release can be found [here](https://www.statsmodels.org/devel/release/index.html). Full details are available in the [commit logs](https://github.com/statsmodels/statsmodels).

CONTRIBUTING.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ Making Changes to the Code
2020
For a pull request to be accepted, you must meet the below requirements. This greatly helps in keeping the job of maintaining and releasing the software a shared effort.
2121

2222
- **One branch. One feature.** Branches are cheap and github makes it easy to merge and delete branches with a few clicks. Avoid the temptation to lump in a bunch of unrelated changes when working on a feature, if possible. This helps us keep track of what has changed when preparing a release.
23-
- Commit messages should be clear and concise. This means a subject line of less than 80 characters, and, if necessary, a blank line followed by a commit message body. We have an `informal commit format standard <http://www.statsmodels.org/devel/dev/maintainer_notes.html#commit-comments>`_ that we try to adhere to. You can see what this looks like in practice by ``git log --oneline -n 10``. If your commit references or closes a specific issue, you can close it by mentioning it in the `commit message <https://help.github.com/articles/closing-issues-via-commit-messages>`_. (*For maintainers*: These suggestions go for Merge commit comments too. These are partially the record for release notes.)
24-
- Code submissions must always include tests. See our `notes on testing <http://www.statsmodels.org/devel/dev/test_notes.html>`_.
23+
- Commit messages should be clear and concise. This means a subject line of less than 80 characters, and, if necessary, a blank line followed by a commit message body. We have an `informal commit format standard <https://www.statsmodels.org/devel/dev/maintainer_notes.html#commit-comments>`_ that we try to adhere to. You can see what this looks like in practice by ``git log --oneline -n 10``. If your commit references or closes a specific issue, you can close it by mentioning it in the `commit message <https://help.github.com/articles/closing-issues-via-commit-messages>`_. (*For maintainers*: These suggestions go for Merge commit comments too. These are partially the record for release notes.)
24+
- Code submissions must always include tests. See our `notes on testing <https://www.statsmodels.org/devel/dev/test_notes.html>`_.
2525
- Each function, class, method, and attribute needs to be documented using docstrings. We conform to the `numpy docstring standard <https://github.com/numpy/numpy/blob/master/doc/HOWTO_DOCUMENT.rst.txt#docstring-standard>`_.
2626
- If you are adding new functionality, you need to add it to the documentation by editing (or creating) the appropriate file in ``docs/source``.
2727
- Make sure your documentation changes parse correctly. Change into the top-level ``docs/`` directory and type::
@@ -41,7 +41,7 @@ So you want to submit a patch to `statsmodels` but aren't too familiar with gith
4141
2. `Create a new feature branch <http://git-scm.com/book/en/Git-Branching-Basic-Branching-and-Merging>`_. Each branch must be self-contained, with a single new feature or bugfix.
4242
3. Make sure the test suite passes. This includes testing on Python 3. The easiest way to do this is to either enable `Travis-CI <https://travis-ci.org/>`_ on your fork, or to make a pull request and check there.
4343
4. Document your changes by editing the appropriate file in ``docs/source/``. If it is a big, new feature add a note and an example to the latest ``docs/source/release/versionX.X.rst`` file. See older versions for examples. If it's a minor change, it will be included automatically in our relase notes.
44-
5. Add an example. If it is a big, new feature please submit an example notebook by following `these instructions <http://www.statsmodels.org/devel/dev/examples.html>`_.
44+
5. Add an example. If it is a big, new feature please submit an example notebook by following `these instructions <https://www.statsmodels.org/devel/dev/examples.html>`_.
4545
6. `Submit a pull request <https://help.github.com/articles/using-pull-requests>`_
4646

4747
Mailing List
@@ -52,7 +52,7 @@ Conversations about development take place on the `statsmodels mailing list <htt
5252
Learn More
5353
~~~~~~~~~~
5454

55-
The ``statsmodels`` documentation's `developer page <http://www.statsmodels.org/stable/dev/index.html>`_
55+
The ``statsmodels`` documentation's `developer page <https://www.statsmodels.org/stable/dev/index.html>`_
5656
offers much more detailed information about the process.
5757

5858
License

INSTALL.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ You will need a C compiler installed.
111111
Installing from Source on Windows
112112
---------------------------------
113113

114-
See http://www.statsmodels.org/devel/install.html#windows.
114+
See https://www.statsmodels.org/devel/install.html#windows.
115115

116116

117117
Documentation
@@ -120,4 +120,4 @@ Documentation
120120
You may find more information about the project and installation in our
121121
documentation
122122

123-
http://www.statsmodels.org/devel/install.html
123+
https://www.statsmodels.org/devel/install.html

README.rst

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,18 +13,18 @@ Documentation
1313

1414
The documentation for the latest release is at
1515

16-
http://www.statsmodels.org/stable/
16+
https://www.statsmodels.org/stable/
1717

1818
The documentation for the development version is at
1919

20-
http://www.statsmodels.org/dev/
20+
https://www.statsmodels.org/dev/
2121

2222
Recent improvements are highlighted in the release notes
2323

24-
http://www.statsmodels.org/stable/release/version0.9.html
24+
https://www.statsmodels.org/stable/release/version0.9.html
2525

26-
Backups of documentation are available at http://statsmodels.github.io/stable/
27-
and http://statsmodels.github.io/dev/.
26+
Backups of documentation are available at https://statsmodels.github.io/stable/
27+
and https://statsmodels.github.io/dev/.
2828

2929

3030

@@ -125,7 +125,7 @@ https://github.com/statsmodels/statsmodels/tags
125125

126126
Binaries and source distributions are available from PyPi
127127

128-
http://pypi.python.org/pypi/statsmodels/
128+
https://pypi.org/project/statsmodels/
129129

130130
Binaries can be installed in Anaconda
131131

@@ -137,7 +137,7 @@ Installing from sources
137137

138138
See INSTALL.txt for requirements or see the documentation
139139

140-
http://statsmodels.github.io/dev/install.html
140+
https://statsmodels.github.io/dev/install.html
141141

142142
License
143143
=======

docs/source/about.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ development of statsmodels:
5757

5858
We would also like to thank our hosting providers, `github
5959
<https://github.com/>`_ for the public code repository, `github.io
60-
<http://www.statsmodels.org/stable/index.html>`_ for hosting our documentation and `python.org
60+
<https://www.statsmodels.org/stable/index.html>`_ for hosting our documentation and `python.org
6161
<https://www.python.org/>`_ for making our downloads available on PyPi.
6262

6363
We also thank our continuous integration providers,

docs/source/conf.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -301,12 +301,12 @@
301301

302302
# Example configuration for intersphinx: refer to the Python standard library.
303303
intersphinx_mapping = {
304-
'numpy' : ('https://docs.scipy.org/doc/numpy/', None),
305-
'python' : ('https://docs.python.org/3.2', None),
306-
'pydagogue' : ('http://matthew-brett.github.io/pydagogue/', None),
307-
'patsy' : ('http://patsy.readthedocs.io/en/latest/', None),
308-
'pandas' : ('http://pandas.pydata.org/pandas-docs/stable/', None),
309-
}
304+
'numpy': ('https://docs.scipy.org/doc/numpy/', None),
305+
'python': ('https://docs.python.org/3/', None),
306+
'pydagogue': ('https://matthew-brett.github.io/pydagogue/', None),
307+
'patsy': ('https://patsy.readthedocs.io/en/latest/', None),
308+
'pandas': ('https://pandas.pydata.org/pandas-docs/stable/', None),
309+
}
310310

311311
from os.path import dirname, abspath, join
312312
plot_basedir = join(dirname(dirname(os.path.abspath(__file__))), 'source')

docs/source/datasets/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Using Datasets from Stata
2525
Using Datasets from R
2626
---------------------
2727

28-
The `Rdatasets project <http://vincentarelbundock.github.io/Rdatasets/>`__ gives access to the datasets available in R's core datasets package and many other common R packages. All of these datasets are available to statsmodels by using the :func:`get_rdataset` function. The actual data is accessible by the ``data`` attribute. For example:
28+
The `Rdatasets project <https://vincentarelbundock.github.io/Rdatasets/>`__ gives access to the datasets available in R's core datasets package and many other common R packages. All of these datasets are available to statsmodels by using the :func:`get_rdataset` function. The actual data is accessible by the ``data`` attribute. For example:
2929

3030
.. ipython:: python
3131

docs/source/dev/examples.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Examples are best contributed as IPython notebooks. Save your notebook with all
2626
The Example Gallery
2727
~~~~~~~~~~~~~~~~~~~
2828

29-
We have a gallery of example notebooks available `here <http://www.statsmodels.org/devel/examples/index.html>`_. If you would like your example to show up in this gallery, add a link to the notebook in ``docs/source/examples/landing.json``. For the thumbnail, take a screenshot of what you think is the best "hook" for the notebook. The image will be displayed at 360 x 225 (W x H). It's best to save the image as a PNG with a resolution that is some multiple of 360 x 225 (720 x 450 is preferred).
29+
We have a gallery of example notebooks available `here <https://www.statsmodels.org/devel/examples/index.html>`_. If you would like your example to show up in this gallery, add a link to the notebook in ``docs/source/examples/landing.json``. For the thumbnail, take a screenshot of what you think is the best "hook" for the notebook. The image will be displayed at 360 x 225 (W x H). It's best to save the image as a PNG with a resolution that is some multiple of 360 x 225 (720 x 450 is preferred).
3030

3131

3232
Before submitting a PR

docs/source/dev/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Making Changes to the Code
2121
For a pull request to be accepted, you must meet the below requirements. This greatly helps the job of maintaining and releasing the software a shared effort.
2222

2323
- **One branch. One feature.** Branches are cheap and github makes it easy to merge and delete branches with a few clicks. Avoid the temptation to lump in a bunch of unrelated changes when working on a feature, if possible. This helps us keep track of what has changed when preparing a release.
24-
- Commit messages should be clear and concise. This means a subject line of less than 80 characters, and, if necessary, a blank line followed by a commit message body. We have an `informal commit format standard <http://www.statsmodels.org/devel/dev/maintainer_notes.html#commit-comments>`_ that we try to adhere to. You can see what this looks like in practice by ``git log --oneline -n 10``. If your commit references or closes a specific issue, you can close it by mentioning it in the `commit message <https://help.github.com/articles/closing-issues-via-commit-messages/>`_. (*For maintainers*: These suggestions go for Merge commit comments too. These are partially the record for release notes.)
24+
- Commit messages should be clear and concise. This means a subject line of less than 80 characters, and, if necessary, a blank line followed by a commit message body. We have an `informal commit format standard <https://www.statsmodels.org/devel/dev/maintainer_notes.html#commit-comments>`_ that we try to adhere to. You can see what this looks like in practice by ``git log --oneline -n 10``. If your commit references or closes a specific issue, you can close it by mentioning it in the `commit message <https://help.github.com/articles/closing-issues-via-commit-messages/>`_. (*For maintainers*: These suggestions go for Merge commit comments too. These are partially the record for release notes.)
2525
- Code submissions must always include tests. See our notes on :ref:`testing`.
2626
- Each function, class, method, and attribute needs to be documented using docstrings. We conform to the `numpy docstring standard <https://github.com/numpy/numpy/blob/master/doc/HOWTO_DOCUMENT.rst.txt#docstring-standard>`_.
2727
- If you are adding new functionality, you need to add it to the documentation by editing (or creating) the appropriate file in ``docs/source``.

0 commit comments

Comments
 (0)