From aa25a0853b6b577d0e3fde1a9b45c1056d5aa354 Mon Sep 17 00:00:00 2001 From: Dimitri Papadopoulos <3234522+DimitriPapadopoulos@users.noreply.github.com> Date: Thu, 21 Sep 2023 19:09:08 +0200 Subject: [PATCH] =?UTF-8?q?http://=20=E2=86=92=20https://?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Also update URLs where applicable. --- docs/make.bat | 2 +- docs/source/conf.py | 2 +- docs/source/index.rst | 2 +- docs/source/intro.rst | 8 ++++---- fsspec/implementations/sftp.py | 2 +- setup.py | 2 +- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/docs/make.bat b/docs/make.bat index 64383db6b..20fd78f6d 100644 --- a/docs/make.bat +++ b/docs/make.bat @@ -22,7 +22,7 @@ if errorlevel 9009 ( echo.may add the Sphinx directory to PATH. echo. echo.If you don't have Sphinx installed, grab it from - echo.http://sphinx-doc.org/ + echo.https://www.sphinx-doc.org/ exit /b 1 ) diff --git a/docs/source/conf.py b/docs/source/conf.py index 5f4622802..5eccb1b8c 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -121,7 +121,7 @@ # to template names. # # This is required for the alabaster theme -# refs: http://alabaster.readthedocs.io/en/latest/installation.html#sidebars +# refs: https://alabaster.readthedocs.io/en/latest/installation.html#sidebars html_sidebars = { "**": [ "relations.html", # needs 'show_related': True theme option to display diff --git a/docs/source/index.rst b/docs/source/index.rst index 09df9790b..591996837 100644 --- a/docs/source/index.rst +++ b/docs/source/index.rst @@ -64,7 +64,7 @@ The following libraries use ``fsspec`` internally for path and file handling: .. _Dask: https://dask.org/ .. _Intake: https://intake.readthedocs.io/ .. _pandas: https://pandas.pydata.org/ -.. _xarray: http://xarray.pydata.org/ +.. _xarray: https://docs.xarray.dev/ .. _zarr: https://zarr.readthedocs.io/ .. _DVC: https://dvc.org/ .. _kedro: https://kedro.readthedocs.io/en/stable/01_introduction/01_introduction.html diff --git a/docs/source/intro.rst b/docs/source/intro.rst index 5089a1c8a..10ca292cf 100644 --- a/docs/source/intro.rst +++ b/docs/source/intro.rst @@ -25,9 +25,9 @@ of each implementation with the generic usage that Dask demanded. People may fin `code`_ which parses URLs and creates file-system instances interesting. -.. _Dask: http://dask.pydata.org/en/latest/ -.. _docs: http://dask.pydata.org/en/latest/remote-data-services.html -.. _code: https://github.com/dask/dask/blob/master/dask/bytes/core.py#L266 +.. _Dask: https://dask.pydata.org/en/latest/ +.. _docs: https://dask.pydata.org/en/latest/how-to/connect-to-remote-data.html +.. _code: https://github.com/dask/dask/blob/7e4beffb/dask/bytes/core.py#L345 At the same time, the Apache `Arrow`_ project was also concerned with a similar problem, particularly a common interface to local and HDFS files, for example the @@ -63,7 +63,7 @@ to look: .. _os: https://docs.python.org/3/library/os.html .. _path: https://docs.python.org/3/library/os.path.html -.. _gcsfs: http://gcsfs.readthedocs.io/en/latest/api.html#gcsfs.core.GCSFileSystem +.. _gcsfs: https://gcsfs.readthedocs.io/en/latest/api.html#gcsfs.core.GCSFileSystem .. _pyfilesystems: https://docs.pyfilesystem.org/en/latest/index.html Other similar work diff --git a/fsspec/implementations/sftp.py b/fsspec/implementations/sftp.py index e7f26f1ca..1153e7c6a 100644 --- a/fsspec/implementations/sftp.py +++ b/fsspec/implementations/sftp.py @@ -36,7 +36,7 @@ def __init__(self, host, **ssh_kwargs): Location on the server to put files, when within a transaction ssh_kwargs: dict Parameters passed on to connection. See details in - http://docs.paramiko.org/en/2.4/api/client.html#paramiko.client.SSHClient.connect + https://docs.paramiko.org/en/3.3/api/client.html#paramiko.client.SSHClient.connect May include port, username, password... """ if self._cached: diff --git a/setup.py b/setup.py index a620e42b1..68e84a758 100644 --- a/setup.py +++ b/setup.py @@ -61,7 +61,7 @@ description="File-system specification", long_description=long_description, long_description_content_type="text/markdown", - url="http://github.com/fsspec/filesystem_spec", + url="https://github.com/fsspec/filesystem_spec", project_urls={ "Changelog": "https://filesystem-spec.readthedocs.io/en/latest/changelog.html", "Documentation": "https://filesystem-spec.readthedocs.io/en/latest/",