Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cycler: composable cycles
=========================

Docs: http://matplotlib.org/cycler/
Docs: https://matplotlib.org/cycler/
4 changes: 2 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ environment:
global:
# SDK v7.0 MSVC Express 2008's SetEnv.cmd script will fail if the
# /E:ON and /V:ON options are not enabled in the batch script intepreter
# See: http://stackoverflow.com/a/13751649/163740
# See: https://stackoverflow.com/a/13751649/163740
CMD_IN_ENV: "cmd /E:ON /V:ON /C .\\ci\\appveyor\\run_with_env.cmd"

matrix:
Expand Down Expand Up @@ -34,7 +34,7 @@ environment:
PYTHON_ARCH: "64"

install:
# Install Python (from the official .msi of http://python.org) and pip when
# Install Python (from the official .msi of https://python.org) and pip when
# not already installed.
- "powershell ./ci/appveyor/install.ps1"
- "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
Expand Down
4 changes: 2 additions & 2 deletions ci/appveyor/install.ps1
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Sample script to install Python and pip under Windows
# Authors: Olivier Grisel, Jonathan Helmus and Kyle Kastner
# License: CC0 1.0 Universal: http://creativecommons.org/publicdomain/zero/1.0/
# License: CC0 1.0 Universal: https://creativecommons.org/publicdomain/zero/1.0/

$MINICONDA_URL = "http://repo.continuum.io/miniconda/"
$MINICONDA_URL = "https://repo.continuum.io/miniconda/"
$BASE_URL = "https://www.python.org/ftp/python/"
$GET_PIP_URL = "https://bootstrap.pypa.io/get-pip.py"
$GET_PIP_PATH = "C:\get-pip.py"
Expand Down
2 changes: 1 addition & 1 deletion ci/appveyor/run_with_env.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
::
:: More details at:
:: https://github.com/cython/cython/wiki/64BitCythonExtensionsOnWindows
:: http://stackoverflow.com/a/13751649/163740
:: https://stackoverflow.com/a/13751649/163740
::
:: Author: Olivier Grisel
:: License: BSD 3 clause
Expand Down
2 changes: 1 addition & 1 deletion conda-recipe/bld.bat
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ if errorlevel 1 exit 1
:: Add more build steps here, if they are necessary.

:: See
:: http://docs.continuum.io/conda/build.html
:: https://conda.io/docs/user-guide/tasks/build-packages/index.html
:: for a list of environment variables that are set during the build process.
2 changes: 1 addition & 1 deletion conda-recipe/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ $PYTHON setup.py install
# Add more build steps here, if they are necessary.

# See
# http://docs.continuum.io/conda/build.html
# https://conda.io/docs/user-guide/tasks/build-packages/index.html
# for a list of environment variables that are set during the build process.
4 changes: 2 additions & 2 deletions conda-recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,10 @@ test:
# - nose

about:
home: http://github.com/matplotlib/cycler
home: https://github.com/matplotlib/cycler
license: BSD
summary: 'Composable style cycles'

# See
# http://docs.continuum.io/conda/build.html for
# https://conda.io/docs/building/build.html for
# more information about meta.yaml
2 changes: 1 addition & 1 deletion doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@
#texinfo_no_detailmenu = False

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

################# numpydoc config ####################
numpydoc_show_class_members = False
2 changes: 1 addition & 1 deletion doc/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@


====== ====================================
docs http://matplotlib.org/cycler
docs https://matplotlib.org/cycler
pypi https://pypi.python.org/pypi/Cycler
github https://github.com/matplotlib/cycler
====== ====================================
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
author_email='matplotlib-users@python.org',
py_modules=['cycler'],
description='Composable style cycles',
url='http://github.com/matplotlib/cycler',
url='https://github.com/matplotlib/cycler',
platforms='Cross platform (Linux, Mac OSX, Windows)',
install_requires=['six'],
license="BSD",
Expand Down