This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "SQLObject development repository".
The branch, master has been updated
discards 2d25d026fb3938cad3bbe02d72772e083200991d (commit)
via fec1260acd46aaf9852b1f5bdf33da83aab7e9af (commit)
This update added new revisions after undoing existing revisions. That is
to say, the old revision is not a strict subset of the new revision. This
situation occurs when you --force push a change and generate a repository
containing something like this:
* -- * -- B -- O -- O -- O (2d25d026fb3938cad3bbe02d72772e083200991d)
\
N -- N -- N (fec1260acd46aaf9852b1f5bdf33da83aab7e9af)
When this happens we assume that you've already had alert emails for all
of the O revisions, and so we here report only the revisions in the N
branch from the common base, B.
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://sourceforge.net/p/sqlobject/sqlobject/ci/fec1260acd46aaf9852b1f5bdf33da83aab7e9af
commit fec1260acd46aaf9852b1f5bdf33da83aab7e9af
Author: Oleg Broytman <ph...@ph...>
Date: Mon Apr 16 20:49:10 2018 +0300
Build, docs: pypi.python.org => pypi.org
diff --git a/ANNOUNCE.rst b/ANNOUNCE.rst
index 2e05210..781eee7 100644
--- a/ANNOUNCE.rst
+++ b/ANNOUNCE.rst
@@ -54,7 +54,7 @@ Mailing list:
https://lists.sourceforge.net/mailman/listinfo/sqlobject-discuss
Download:
-https://pypi.python.org/pypi/SQLObject/3.7.0a0.dev20171115
+https://pypi.org/project/SQLObject/3.7.0a0.dev20171115/
News and changes:
http://sqlobject.org/News.html
diff --git a/docs/DeveloperGuide.rst b/docs/DeveloperGuide.rst
index 5e889c8..966c379 100644
--- a/docs/DeveloperGuide.rst
+++ b/docs/DeveloperGuide.rst
@@ -234,7 +234,7 @@ Tests are important. Tests keep everything from falling apart. All
new additions should have tests.
Testing uses pytest, an alternative to ``unittest``. It is available
-at http://pytest.org/ and https://pypi.python.org/pypi/pytest. Read its
+at http://pytest.org/ and https://pypi.org/project/pytest/. Read its
`getting started`_ document for more.
.. _getting started: http://docs.pytest.org/en/latest/getting-started.html
@@ -283,7 +283,7 @@ To avoid triggering unnecessary test run at CI services add text `[skip ci]
``[ci skip]`` anywhere in your commit messages for commits that don't change
code (documentation updates and such).
-We use `coverage.py <https://pypi.python.org/pypi/coverage>`_
+We use `coverage.py <https://pypi.org/project/coverage/>`_
to measures code coverage by tests and upload the result for analyzis to
`Coveralls <https://coveralls.io/github/sqlobject/sqlobject>`_ and
`Codecov <https://codecov.io/gh/sqlobject/sqlobject>`_:
diff --git a/docs/News.rst b/docs/News.rst
index 17626cd..209ae25 100644
--- a/docs/News.rst
+++ b/docs/News.rst
@@ -68,7 +68,7 @@ Minor features
Drivers
-------
-* Add support for `pg8000 <https://pypi.python.org/pypi/pg8000>`_
+* Add support for `pg8000 <https://pypi.org/project/pg8000/>`_
PostgreSQL driver.
* Fix autoreconnect with pymysql driver. Contributed by Shailesh Mungikar.
@@ -202,7 +202,7 @@ Minor features
'connector', 'oursql' and 'pymysql'. Default is to test for mysqldb only.
* Add support for `MySQL Connector
- <https://pypi.python.org/pypi/mysql-connector>`_ (pure python; `binary
+ <https://pypi.org/project/mysql-connector/>`_ (pure python; `binary
packages <https://dev.mysql.com/doc/connector-python/en/>`_ are not at
PyPI and hence are hard to install and test).
@@ -224,11 +224,11 @@ Drivers (work in progress)
* Extend support for PyGreSQL driver. There are still some problems.
* Add support for `py-postgresql
- <https://pypi.python.org/pypi/py-postgresql>`_ PostgreSQL driver. There
+ <https://pypi.org/project/py-postgresql/>`_ PostgreSQL driver. There
are still problems with the driver.
* Add support for `pyfirebirdsql
- <https://pypi.python.org/pypi/firebirdsql>`_.There are still problems with
+ <https://pypi.org/project/firebirdsql/>`_.There are still problems with
the driver.
Bug fixes
diff --git a/docs/Python3.rst b/docs/Python3.rst
index f14b106..ad4fb56 100644
--- a/docs/Python3.rst
+++ b/docs/Python3.rst
@@ -40,7 +40,7 @@ Note that the default encoding of MySQL databases is *latin1*, which can cause
problems with general Unicode strings. We recommend specifying the character
set as *utf8* when using MySQL to protect against these issues.
-.. _mysqlclient: https://pypi.python.org/pypi/mysqlclient
+.. _mysqlclient: https://pypi.org/project/mysqlclient/
Using databases created with SQLObject and Python 2 in Python 3
diff --git a/docs/SQLObject.rst b/docs/SQLObject.rst
index 1ccc222..dd96d07 100644
--- a/docs/SQLObject.rst
+++ b/docs/SQLObject.rst
@@ -59,21 +59,21 @@ problems (not all tests passed).
.. _MySQL: https://www.mysql.com/
.. _MySQLdb: https://sourceforge.net/projects/mysql-python/
-.. _mysqlclient: https://pypi.python.org/pypi/mysqlclient
-.. _`MySQL Connector`: https://pypi.python.org/pypi/mysql-connector
+.. _mysqlclient: https://pypi.org/project/mysqlclient/
+.. _`MySQL Connector`: https://pypi.org/project/mysql-connector/
.. _oursql: https://github.com/python-oursql/oursql
.. _PyMySQL: https://github.com/PyMySQL/PyMySQL/
.. _PostgreSQL: https://postgresql.org
.. _psycopg2: http://initd.org/psycopg/
.. _PyGreSQL: http://www.pygresql.org/
-.. _py-postgresql: https://pypi.python.org/pypi/py-postgresql
-.. _pg8000: https://pypi.python.org/pypi/pg8000
+.. _py-postgresql: https://pypi.org/project/py-postgresql/
+.. _pg8000: https://pypi.org/project/pg8000/
.. _SQLite: https://sqlite.org/
.. _PySQLite: https://github.com/ghaering/pysqlite
.. _Firebird: http://www.firebirdsql.org/en/python-driver/
.. _fdb: http://www.firebirdsql.org/en/devel-python-driver/
.. _kinterbasdb: http://kinterbasdb.sourceforge.net/
-.. _pyfirebirdsql: https://pypi.python.org/pypi/firebirdsql
+.. _pyfirebirdsql: https://pypi.org/project/firebirdsql/
.. _`MAX DB`: http://maxdb.sap.com/
.. _sapdb: http://maxdb.sap.com/doc/7_8/50/01923f25b842438a408805774f6989/frameset.htm
.. _Sybase: http://www.object-craft.com.au/projects/sybase/
@@ -81,8 +81,8 @@ problems (not all tests passed).
.. _pymssql: http://www.pymssql.org/en/latest/index.html
.. _FreeTDS: http://www.freetds.org/
.. _adodbapi: http://adodbapi.sourceforge.net/
-.. _PyODBC: https://pypi.python.org/pypi/pyodbc
-.. _PyPyODBC: https://pypi.python.org/pypi/pypyodbc
+.. _PyODBC: https://pypi.org/project/pyodbc/
+.. _PyPyODBC: https://pypi.org/project/pypyodbc/
Python 2.7 or 3.4+ is required.
diff --git a/docs/TODO.rst b/docs/TODO.rst
index 41e24b1..106a599 100644
--- a/docs/TODO.rst
+++ b/docs/TODO.rst
@@ -9,14 +9,14 @@ TODO
* PyPy.
-* Use https://pypi.python.org/pypi/psycopg2cffi to run SQLObject
+* Use https://pypi.org/project/psycopg2cffi/ to run SQLObject
under PyPy.
-* https://pypi.python.org/pypi/turbodbc
+* https://pypi.org/project/turbodbc/
* PyODBC and PyPyODBC for linux and w32: SQLite (libsqliteodbc).
-* https://pypi.python.org/pypi/JayDeBeApi
+* https://pypi.org/project/JayDeBeApi/
* Jython.
@@ -92,7 +92,7 @@ TODO
* Support PyODBC driver for all backends.
-* `dbms <https://pypi.python.org/pypi/dbms>`_ is a DB API wrapper for DB
+* `dbms <https://pypi.org/project/dbms/>`_ is a DB API wrapper for DB
API drivers for IBM DB2, Firebird, MSSQL Server, MySQL, Oracle,
PostgreSQL, SQLite and ODBC.
@@ -109,7 +109,7 @@ TODO
* Use DBUtils_, especially SolidConnection.
-.. _DBUtils: https://pypi.python.org/pypi/DBUtils
+.. _DBUtils: https://pypi.org/project/DBUtils/
* ``_fromDatabase`` currently doesn't support IDs that don't fit into the
normal naming scheme. It should do so. You can still use ``_idName``
diff --git a/docs/download.rst b/docs/download.rst
index a028998..4d87846 100644
--- a/docs/download.rst
+++ b/docs/download.rst
@@ -2,7 +2,7 @@ Download SQLObject
++++++++++++++++++
The latest releases are always available on the `Python Package Index
-<https://pypi.python.org/pypi/SQLObject>`_, and is installable
+<https://pypi.org/project/SQLObject/>`_, and is installable
with `pip <https://pip.pypa.io/en/latest/>`_ or `easy_install
<https://setuptools.readthedocs.io/en/latest/easy_install.html>`_.
diff --git a/setup.py b/setup.py
index 8217d37..77a9947 100755
--- a/setup.py
+++ b/setup.py
@@ -58,12 +58,12 @@ and `GitHub <https://github.com/sqlobject>`_.
maintainer="Oleg Broytman",
maintainer_email="ph...@ph...",
url="http://sqlobject.org/",
- download_url="https://pypi.python.org/pypi/SQLObject/%s" %
+ download_url="https://pypi.org/project/SQLObject/%s/" %
sqlobject_version.version,
project_urls={
'Homepage': 'http://sqlobject.org/',
'Development docs': 'http://sqlobject.org/devel/',
- 'Download': 'https://pypi.python.org/pypi/SQLObject/%s' %
+ 'Download': 'https://pypi.org/project/SQLObject/%s/' %
sqlobject_version.version,
'Github repo': 'https://github.com/sqlobject',
'Issue tracker': 'https://github.com/sqlobject/sqlobject/issues',
@@ -168,7 +168,7 @@ Mailing list:
https://lists.sourceforge.net/mailman/listinfo/sqlobject-discuss
Download:
-https://pypi.python.org/pypi/SQLObject/@@
+https://pypi.org/project/SQLObject/@@/
News and changes:
http://sqlobject.org/docs/News.html
diff --git a/sqlobject/compat.py b/sqlobject/compat.py
index 7e8d0e1..18aba9d 100644
--- a/sqlobject/compat.py
+++ b/sqlobject/compat.py
@@ -1,7 +1,7 @@
import sys
import types
-# Credit to six authors: https://pypi.python.org/pypi/six
+# Credit to six authors: https://pypi.org/project/six/
# License: MIT
-----------------------------------------------------------------------
Summary of changes:
ANNOUNCE.rst | 2 +-
docs/DeveloperGuide.rst | 4 ++--
docs/News.rst | 8 ++++----
docs/Python3.rst | 2 +-
docs/SQLObject.rst | 14 +++++++-------
docs/TODO.rst | 10 +++++-----
docs/download.rst | 2 +-
setup.py | 6 +++---
sqlobject/compat.py | 2 +-
9 files changed, 25 insertions(+), 25 deletions(-)
hooks/post-receive
--
SQLObject development repository
|