mirror of
https://github.com/psycopg/psycopg2.git
synced 2025-01-31 01:14:09 +03:00
Website on https
This commit is contained in:
parent
501b0412f6
commit
c3c24cd67b
2
INSTALL
2
INSTALL
|
@ -1,4 +1,4 @@
|
|||
Installation instructions are included in the docs.
|
||||
|
||||
Please check the 'doc/src/install.rst' file or online at
|
||||
<http://www.psycopg.org/docs/install.html>.
|
||||
<https://www.psycopg.org/docs/install.html>.
|
||||
|
|
|
@ -23,12 +23,12 @@ Documentation
|
|||
|
||||
Documentation is included in the ``doc`` directory and is `available online`__.
|
||||
|
||||
.. __: http://www.psycopg.org/docs/
|
||||
.. __: https://www.psycopg.org/docs/
|
||||
|
||||
For any other resource (source code repository, bug tracker, mailing list)
|
||||
please check the `project homepage`__.
|
||||
|
||||
.. __: http://psycopg.org/
|
||||
.. __: https://psycopg.org/
|
||||
|
||||
|
||||
Installation
|
||||
|
@ -58,8 +58,8 @@ production it is advised to use the package built from sources.
|
|||
|
||||
.. _PyPI: https://pypi.org/project/psycopg2/
|
||||
.. _psycopg2-binary: https://pypi.org/project/psycopg2-binary/
|
||||
.. _install: http://www.psycopg.org/docs/install.html#install-from-source
|
||||
.. _faq: http://www.psycopg.org/docs/faq.html#faq-compile
|
||||
.. _install: https://www.psycopg.org/docs/install.html#install-from-source
|
||||
.. _faq: https://www.psycopg.org/docs/faq.html#faq-compile
|
||||
|
||||
:Linux/OSX: |travis|
|
||||
:Windows: |appveyor|
|
||||
|
|
|
@ -6,7 +6,7 @@ introspection, so you will need the same prerequisites_. The only extra
|
|||
prerequisite is virtualenv_: the packages needed to build the docs will be
|
||||
installed when building the env.
|
||||
|
||||
.. _prerequisites: http://www.psycopg.org/docs/install.html#install-from-source
|
||||
.. _prerequisites: https://www.psycopg.org/docs/install.html#install-from-source
|
||||
.. _virtualenv: https://virtualenv.pypa.io/en/latest/
|
||||
|
||||
Build the env once with::
|
||||
|
|
|
@ -292,7 +292,7 @@ How do I interrupt a long-running query in an interactive shell?
|
|||
can handle a :kbd:`Ctrl-C` correctly. For previous versions, you can use
|
||||
`this implementation`__.
|
||||
|
||||
.. __: http://www.psycopg.org/articles/2014/07/20/cancelling-postgresql-statements-python/
|
||||
.. __: https://www.psycopg.org/articles/2014/07/20/cancelling-postgresql-statements-python/
|
||||
|
||||
.. code-block:: pycon
|
||||
|
||||
|
|
|
@ -23,7 +23,7 @@ extended and customized thanks to a flexible :ref:`objects adaptation system
|
|||
Psycopg 2 is both Unicode and Python 3 friendly.
|
||||
|
||||
|
||||
.. _Psycopg: http://psycopg.org/
|
||||
.. _Psycopg: https://psycopg.org/
|
||||
.. _PostgreSQL: https://www.postgresql.org/
|
||||
.. _Python: https://www.python.org/
|
||||
.. _libpq: https://www.postgresql.org/docs/current/static/libpq.html
|
||||
|
|
|
@ -6,7 +6,7 @@ provide new-style classes for connection and cursor objects and other sweet
|
|||
candies. Like the original, psycopg 2 was written with the aim of being very
|
||||
small and fast, and stable as a rock.
|
||||
|
||||
Homepage: http://psycopg.org/
|
||||
Homepage: https://psycopg.org/
|
||||
|
||||
.. _PostgreSQL: https://www.postgresql.org/
|
||||
.. _Python: https://www.python.org/
|
||||
|
|
10
setup.py
10
setup.py
|
@ -104,7 +104,7 @@ If you prefer to avoid building psycopg2 from source, please install the PyPI
|
|||
'psycopg2-binary' package instead.
|
||||
|
||||
For further information please check the 'doc/src/install.rst' file (also at
|
||||
<http://www.psycopg.org/docs/install.html>).
|
||||
<https://www.psycopg.org/docs/install.html>).
|
||||
|
||||
""")
|
||||
sys.exit(1)
|
||||
|
@ -303,7 +303,7 @@ If you want to install psycopg2 from source, please install the packages
|
|||
required for the build and try again.
|
||||
|
||||
For further information please check the 'doc/src/install.rst' file (also at
|
||||
<http://www.psycopg.org/docs/install.html>).
|
||||
<https://www.psycopg.org/docs/install.html>).
|
||||
|
||||
""")
|
||||
raise
|
||||
|
@ -594,7 +594,7 @@ setup(name="psycopg2",
|
|||
author_email="fog@initd.org",
|
||||
maintainer="Daniele Varrazzo",
|
||||
maintainer_email="daniele.varrazzo@gmail.org",
|
||||
url="http://psycopg.org/",
|
||||
url="https://psycopg.org/",
|
||||
license="LGPL with exceptions",
|
||||
platforms=["any"],
|
||||
python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*',
|
||||
|
@ -607,8 +607,8 @@ setup(name="psycopg2",
|
|||
cmdclass={'build_ext': psycopg_build_ext},
|
||||
ext_modules=ext,
|
||||
project_urls={
|
||||
'Homepage': 'http://psycopg.org/',
|
||||
'Documentation': 'http://www.psycopg.org/docs/',
|
||||
'Homepage': 'https://psycopg.org/',
|
||||
'Documentation': 'https://www.psycopg.org/docs/',
|
||||
'Code': 'https://github.com/psycopg/psycopg2',
|
||||
'Issue Tracker': 'https://github.com/psycopg/psycopg2/issues',
|
||||
'Download': 'https://pypi.org/project/psycopg2/',
|
||||
|
|
Loading…
Reference in New Issue
Block a user