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
via c4b428015b5286fba37f49ffecff592dc1217e03 (commit)
via 780cc55642eddbdc1b41557f79fe1d406415f334 (commit)
via 8417bda4771e6281f3851bc18c4c2fed5d48a2c0 (commit)
via e3f4e1a00f36a197cc9318ea4fc5911da02ea7ef (commit)
via 3fa162e89cbb1611e03ccbf140cecb7fbddd4f1c (commit)
from 8d80a738de4e210cdf679a13ad328cae3902bc61 (commit)
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/c4b428015b5286fba37f49ffecff592dc1217e03
commit c4b428015b5286fba37f49ffecff592dc1217e03
Author: Oleg Broytman <ph...@ph...>
Date: Tue Oct 25 01:26:30 2022 +0300
Build(devscripts/test-sqlobject.cmd): Add Python 3.11
[skip ci]
diff --git a/devscripts/test-sqlobject.cmd b/devscripts/test-sqlobject.cmd
index 8c7e38d..f227bf0 100644
--- a/devscripts/test-sqlobject.cmd
+++ b/devscripts/test-sqlobject.cmd
@@ -3,7 +3,7 @@
SetLocal EnableDelayedExpansion
set SavePATH=%PATH%
-for %%V in (27 34 35 36 37 38 39 310) do (
+for %%V in (27 34 35 36 37 38 39 310 311) do (
for %%s in (32 64) do (
set PATH=C:\Python%%V-%%s;C:\Python%%V-%%s\Scripts;!SavePATH!
set TOXPYTHON=C:\Python%%V-%%s\python.exe
http://sourceforge.net/p/sqlobject/sqlobject/ci/780cc55642eddbdc1b41557f79fe1d406415f334
commit 780cc55642eddbdc1b41557f79fe1d406415f334
Author: Oleg Broytman <ph...@ph...>
Date: Sun Sep 25 14:52:49 2022 +0300
It's free, open-source (MIT), Python
[skip ci]
diff --git a/ANNOUNCE.rst b/ANNOUNCE.rst
index db59849..4082821 100644
--- a/ANNOUNCE.rst
+++ b/ANNOUNCE.rst
@@ -28,9 +28,10 @@ http://sqlobject.org/News.html
What is SQLObject
=================
-SQLObject is an object-relational mapper. Your database tables are described
-as classes, and rows are instances of those classes. SQLObject is meant to be
-easy to use and quick to get started with.
+SQLObject is a free and open-source (LGPL) Python object-relational
+mapper. Your database tables are described as classes, and rows are
+instances of those classes. SQLObject is meant to be easy to use and
+quick to get started with.
SQLObject supports a number of backends: MySQL/MariaDB (with a number of
DB API drivers: ``MySQLdb``, ``mysqlclient``, ``mysql-connector``,
http://sourceforge.net/p/sqlobject/sqlobject/ci/8417bda4771e6281f3851bc18c4c2fed5d48a2c0
commit 8417bda4771e6281f3851bc18c4c2fed5d48a2c0
Author: Oleg Broytman <ph...@ph...>
Date: Sun Sep 25 14:48:53 2022 +0300
Add lists of supported DB API drivers
[skip ci]
diff --git a/ANNOUNCE.rst b/ANNOUNCE.rst
index ae69435..db59849 100644
--- a/ANNOUNCE.rst
+++ b/ANNOUNCE.rst
@@ -32,9 +32,13 @@ SQLObject is an object-relational mapper. Your database tables are described
as classes, and rows are instances of those classes. SQLObject is meant to be
easy to use and quick to get started with.
-SQLObject supports a number of backends: MySQL, PostgreSQL, SQLite;
-connections to other backends - Firebird, Sybase, MSSQL
-and MaxDB (also known as SAPDB) - are lesser debugged).
+SQLObject supports a number of backends: MySQL/MariaDB (with a number of
+DB API drivers: ``MySQLdb``, ``mysqlclient``, ``mysql-connector``,
+``PyMySQL``, ``mariadb``), PostgreSQL (``psycopg2``, ``PyGreSQL``,
+partially ``pg8000`` and ``py-postgresql``), SQLite (builtin ``sqlite``,
+``pysqlite``, partially ``supersqlite``); connections to other backends
+- Firebird, Sybase, MSSQL and MaxDB (also known as SAPDB) - are less
+debugged).
Python 2.7 or 3.4+ is required.
http://sourceforge.net/p/sqlobject/sqlobject/ci/e3f4e1a00f36a197cc9318ea4fc5911da02ea7ef
commit e3f4e1a00f36a197cc9318ea4fc5911da02ea7ef
Author: Oleg Broytman <ph...@ph...>
Date: Fri Sep 23 16:22:22 2022 +0300
Docs(ANNOUNCE): Reorder URLs: first users then developers
Change the URL for mailing lists.
[skip ci]
diff --git a/ANNOUNCE.rst b/ANNOUNCE.rst
index 7d270b0..ae69435 100644
--- a/ANNOUNCE.rst
+++ b/ANNOUNCE.rst
@@ -45,15 +45,6 @@ Where is SQLObject
Site:
http://sqlobject.org
-Development:
-http://sqlobject.org/devel/
-
-Developer Guide:
-http://sqlobject.org/DeveloperGuide.html
-
-Mailing list:
-https://lists.sourceforge.net/mailman/listinfo/sqlobject-discuss
-
Download:
https://pypi.org/project/SQLObject/3.10.1a0.dev20221020/
@@ -63,6 +54,15 @@ http://sqlobject.org/News.html
StackOverflow:
https://stackoverflow.com/questions/tagged/sqlobject
+Mailing lists:
+https://sourceforge.net/p/sqlobject/mailman/
+
+Development:
+http://sqlobject.org/devel/
+
+Developer Guide:
+http://sqlobject.org/DeveloperGuide.html
+
Example
=======
http://sourceforge.net/p/sqlobject/sqlobject/ci/3fa162e89cbb1611e03ccbf140cecb7fbddd4f1c
commit 3fa162e89cbb1611e03ccbf140cecb7fbddd4f1c
Author: Oleg Broytman <ph...@ph...>
Date: Fri Sep 23 15:54:40 2022 +0300
Docs(ANNOUNCE): Add Developer Guide and brief installation instruction
[skip ci]
diff --git a/ANNOUNCE.rst b/ANNOUNCE.rst
index c9b634b..7d270b0 100644
--- a/ANNOUNCE.rst
+++ b/ANNOUNCE.rst
@@ -48,6 +48,9 @@ http://sqlobject.org
Development:
http://sqlobject.org/devel/
+Developer Guide:
+http://sqlobject.org/DeveloperGuide.html
+
Mailing list:
https://lists.sourceforge.net/mailman/listinfo/sqlobject-discuss
@@ -64,6 +67,10 @@ https://stackoverflow.com/questions/tagged/sqlobject
Example
=======
+Install::
+
+ $ pip install sqlobject
+
Create a simple class that wraps a table::
>>> from sqlobject import *
-----------------------------------------------------------------------
Summary of changes:
ANNOUNCE.rst | 38 +++++++++++++++++++++++++-------------
devscripts/test-sqlobject.cmd | 2 +-
2 files changed, 26 insertions(+), 14 deletions(-)
hooks/post-receive
--
SQLObject development repository
|