Skip to content

Commit b5092a6

Browse files
authored
Merge pull request #42 from hugovk/https
http -> https
2 parents e45ae7d + 8e663c4 commit b5092a6

File tree

10 files changed

+13
-13
lines changed

10 files changed

+13
-13
lines changed

README.rst

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

4-
Docs: http://matplotlib.org/cycler/
4+
Docs: https://matplotlib.org/cycler/

appveyor.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ environment:
55
global:
66
# SDK v7.0 MSVC Express 2008's SetEnv.cmd script will fail if the
77
# /E:ON and /V:ON options are not enabled in the batch script intepreter
8-
# See: http://stackoverflow.com/a/13751649/163740
8+
# See: https://stackoverflow.com/a/13751649/163740
99
CMD_IN_ENV: "cmd /E:ON /V:ON /C .\\ci\\appveyor\\run_with_env.cmd"
1010

1111
matrix:
@@ -34,7 +34,7 @@ environment:
3434
PYTHON_ARCH: "64"
3535

3636
install:
37-
# Install Python (from the official .msi of http://python.org) and pip when
37+
# Install Python (from the official .msi of https://python.org) and pip when
3838
# not already installed.
3939
- "powershell ./ci/appveyor/install.ps1"
4040
- "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"

ci/appveyor/install.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Sample script to install Python and pip under Windows
22
# Authors: Olivier Grisel, Jonathan Helmus and Kyle Kastner
3-
# License: CC0 1.0 Universal: http://creativecommons.org/publicdomain/zero/1.0/
3+
# License: CC0 1.0 Universal: https://creativecommons.org/publicdomain/zero/1.0/
44

5-
$MINICONDA_URL = "http://repo.continuum.io/miniconda/"
5+
$MINICONDA_URL = "https://repo.continuum.io/miniconda/"
66
$BASE_URL = "https://www.python.org/ftp/python/"
77
$GET_PIP_URL = "https://bootstrap.pypa.io/get-pip.py"
88
$GET_PIP_PATH = "C:\get-pip.py"

ci/appveyor/run_with_env.cmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
::
1414
:: More details at:
1515
:: https://github.com/cython/cython/wiki/64BitCythonExtensionsOnWindows
16-
:: http://stackoverflow.com/a/13751649/163740
16+
:: https://stackoverflow.com/a/13751649/163740
1717
::
1818
:: Author: Olivier Grisel
1919
:: License: BSD 3 clause

conda-recipe/bld.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ if errorlevel 1 exit 1
44
:: Add more build steps here, if they are necessary.
55

66
:: See
7-
:: http://docs.continuum.io/conda/build.html
7+
:: https://conda.io/docs/user-guide/tasks/build-packages/index.html
88
:: for a list of environment variables that are set during the build process.

conda-recipe/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ $PYTHON setup.py install
55
# Add more build steps here, if they are necessary.
66

77
# See
8-
# http://docs.continuum.io/conda/build.html
8+
# https://conda.io/docs/user-guide/tasks/build-packages/index.html
99
# for a list of environment variables that are set during the build process.

conda-recipe/meta.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,10 @@ test:
5454
# - nose
5555

5656
about:
57-
home: http://github.com/matplotlib/cycler
57+
home: https://github.com/matplotlib/cycler
5858
license: BSD
5959
summary: 'Composable style cycles'
6060

6161
# See
62-
# http://docs.continuum.io/conda/build.html for
62+
# https://conda.io/docs/building/build.html for
6363
# more information about meta.yaml

doc/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@
278278
#texinfo_no_detailmenu = False
279279

280280
intersphinx_mapping = {'python': ('https://docs.python.org/3.4', None),
281-
'matplotlb': ('http://matplotlib.org', None)}
281+
'matplotlb': ('https://matplotlib.org', None)}
282282

283283
################# numpydoc config ####################
284284
numpydoc_show_class_members = False

doc/source/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212

1313
====== ====================================
14-
docs http://matplotlib.org/cycler
14+
docs https://matplotlib.org/cycler
1515
pypi https://pypi.python.org/pypi/Cycler
1616
github https://github.com/matplotlib/cycler
1717
====== ====================================

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
author_email='matplotlib-users@python.org',
77
py_modules=['cycler'],
88
description='Composable style cycles',
9-
url='http://github.com/matplotlib/cycler',
9+
url='https://github.com/matplotlib/cycler',
1010
platforms='Cross platform (Linux, Mac OSX, Windows)',
1111
install_requires=['six'],
1212
license="BSD",

0 commit comments

Comments
 (0)