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 a98b7be3a884986cb8060f80f15c4e4809476325 (commit)
via dc75365a4999c1d4112240617a2c93b67fd7a5e8 (commit)
via f0750f5a357df1c1c8f024a13abb48a1dcdde611 (commit)
via db02d0281af3a60c095a7e2205d645b92c54c554 (commit)
via 5396e8151f13215a6a2076ea24c52482489af5b8 (commit)
via 782091b5712fdaadbc4ae8b88a4a52562bfc5d2b (commit)
via 61151b8015d67de07a7a1e19d9161e7534b00800 (commit)
from c714f55a9aa4990020711494d2d3911faf9566c4 (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/a98b7be3a884986cb8060f80f15c4e4809476325
commit a98b7be3a884986cb8060f80f15c4e4809476325
Author: Oleg Broytman <ph...@ph...>
Date: Sat Feb 24 22:20:24 2024 +0300
CI: Skip tests with `pg8000`
diff --git a/docs/News.rst b/docs/News.rst
index b88cf8c..dc2863d 100644
--- a/docs/News.rst
+++ b/docs/News.rst
@@ -13,6 +13,8 @@ CI
* Run tests with ``PyGreSQL`` (do not ignore errors).
+* Skip tests with ``pg8000``.
+
SQLObject 3.11.0
================
diff --git a/tox.ini b/tox.ini
index c660a75..4d1b619 100644
--- a/tox.ini
+++ b/tox.ini
@@ -554,7 +554,7 @@ commands =
easy_install -i https://downloads.egenix.com/python/index/ucs2/ egenix-mx-base
{[pg8000-w32]commands}
-[testenv:py3{4,5,6,7,8,9,10,11,12}-postgres-pg8000-w32]
+[testenv:py3{4,5,6,7,8,9,10,11,12}-postgres-pg8000-noauto-w32]
platform = win32
commands = {[pg8000-w32]commands}
http://sourceforge.net/p/sqlobject/sqlobject/ci/dc75365a4999c1d4112240617a2c93b67fd7a5e8
commit dc75365a4999c1d4112240617a2c93b67fd7a5e8
Author: Oleg Broytman <ph...@ph...>
Date: Sat Feb 24 21:48:12 2024 +0300
CI: Run tests with `PyGreSQL`
diff --git a/docs/News.rst b/docs/News.rst
index 270a44a..b88cf8c 100644
--- a/docs/News.rst
+++ b/docs/News.rst
@@ -8,6 +8,11 @@ News
SQLObject (master)
==================
+CI
+--
+
+* Run tests with ``PyGreSQL`` (do not ignore errors).
+
SQLObject 3.11.0
================
diff --git a/tox.ini b/tox.ini
index e798939..c660a75 100644
--- a/tox.ini
+++ b/tox.ini
@@ -213,7 +213,7 @@ commands =
{[testenv]commands}
-dropdb --username=runner --no-password sqlobject_test
createdb --username=runner --no-password sqlobject_test
- -pytest -D "postgres://runner:test@localhost/sqlobject_test?driver=pygresql&charset=utf-8&debug=1"
+ pytest -D "postgres://runner:test@localhost/sqlobject_test?driver=pygresql&charset=utf-8&debug=1"
dropdb --username=runner --no-password sqlobject_test
[testenv:py27-postgres-pygresql]
@@ -508,10 +508,10 @@ commands =
{[testenv]commands}
-dropdb --username=runner --no-password sqlobject_test
createdb --username=runner --no-password sqlobject_test
- -pytest -D "postgres://runner:test@localhost/sqlobject_test?driver=pygresql&charset=utf-8&debug=1"
+ pytest -D "postgres://runner:test@localhost/sqlobject_test?driver=pygresql&charset=utf-8&debug=1"
dropdb --username=runner --no-password sqlobject_test
-[testenv:py27-postgres-pygresql-noauto-w32]
+[testenv:py27-postgres-pygresql-w32]
platform = win32
commands =
easy_install -i https://downloads.egenix.com/python/index/ucs2/ egenix-mx-base
http://sourceforge.net/p/sqlobject/sqlobject/ci/f0750f5a357df1c1c8f024a13abb48a1dcdde611
commit f0750f5a357df1c1c8f024a13abb48a1dcdde611
Author: Oleg Broytman <ph...@ph...>
Date: Tue Jan 23 11:37:53 2024 +0300
Build(git): Simplify regular expressions for `compileall`
[skip ci]
diff --git a/devscripts/git-hooks/post-checkout b/devscripts/git-hooks/post-checkout
index 40f7bd7..c615fc8 100755
--- a/devscripts/git-hooks/post-checkout
+++ b/devscripts/git-hooks/post-checkout
@@ -16,7 +16,7 @@ if [ "$new_branch" = 1 ]; then
rm -rf docs/_build/html docs/html
fi &&
-python -m compileall -q -x '\.tox/.+' . &&
-python -O -m compileall -q -x '\.tox/.+' .
+python -m compileall -q -x '\.tox/' . &&
+python -O -m compileall -q -x '\.tox/' .
exit 0
diff --git a/devscripts/git-hooks/post-merge b/devscripts/git-hooks/post-merge
index 633a1d0..2df0670 100755
--- a/devscripts/git-hooks/post-merge
+++ b/devscripts/git-hooks/post-merge
@@ -2,7 +2,7 @@
# post-merge hook that compiles python files to byte code
-python -m compileall -q -x '\.tox/.+' . &&
-python -O -m compileall -q -x '\.tox/.+' .
+python -m compileall -q -x '\.tox/' . &&
+python -O -m compileall -q -x '\.tox/' .
exit 0
diff --git a/devscripts/git-hooks/post-rewrite b/devscripts/git-hooks/post-rewrite
index df28442..59efb3d 100755
--- a/devscripts/git-hooks/post-rewrite
+++ b/devscripts/git-hooks/post-rewrite
@@ -2,7 +2,7 @@
# post-rewrite hook that compiles python files to byte code
-python -m compileall -q -x '\.tox/.+' . &&
-python -O -m compileall -q -x '\.tox/.+' .
+python -m compileall -q -x '\.tox/' . &&
+python -O -m compileall -q -x '\.tox/' .
exit 0
http://sourceforge.net/p/sqlobject/sqlobject/ci/db02d0281af3a60c095a7e2205d645b92c54c554
commit db02d0281af3a60c095a7e2205d645b92c54c554
Author: Oleg Broytman <ph...@ph...>
Date: Wed Jan 3 02:52:53 2024 +0300
Tests(tox): Ignore errors from PyGreSQL tests
diff --git a/tox.ini b/tox.ini
index caa5945..e798939 100644
--- a/tox.ini
+++ b/tox.ini
@@ -213,7 +213,7 @@ commands =
{[testenv]commands}
-dropdb --username=runner --no-password sqlobject_test
createdb --username=runner --no-password sqlobject_test
- pytest -D "postgres://runner:test@localhost/sqlobject_test?driver=pygresql&charset=utf-8&debug=1"
+ -pytest -D "postgres://runner:test@localhost/sqlobject_test?driver=pygresql&charset=utf-8&debug=1"
dropdb --username=runner --no-password sqlobject_test
[testenv:py27-postgres-pygresql]
http://sourceforge.net/p/sqlobject/sqlobject/ci/5396e8151f13215a6a2076ea24c52482489af5b8
commit 5396e8151f13215a6a2076ea24c52482489af5b8
Author: Oleg Broytman <ph...@ph...>
Date: Wed Jan 3 02:02:14 2024 +0300
Build(GHActions): Use `checkout@v4` instead of outdated `v2`
diff --git a/.github/workflows/run-tests.yaml b/.github/workflows/run-tests.yaml
index 3593f6a..b38d006 100644
--- a/.github/workflows/run-tests.yaml
+++ b/.github/workflows/run-tests.yaml
@@ -39,7 +39,7 @@ jobs:
if: ${{ runner.os == 'Windows' }}
# Setup Python/pip
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v4
- uses: s-weigand/setup-conda@v1
with:
conda-channels: conda-forge
http://sourceforge.net/p/sqlobject/sqlobject/ci/782091b5712fdaadbc4ae8b88a4a52562bfc5d2b
commit 782091b5712fdaadbc4ae8b88a4a52562bfc5d2b
Author: Oleg Broytman <ph...@ph...>
Date: Thu Dec 14 23:15:05 2023 +0300
Build(setup.cfg): Remove `validators.py`
We no longer carry `validators.py` with us.
[skip ci]
diff --git a/setup.cfg b/setup.cfg
index af28274..461bc50 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -10,7 +10,7 @@ tag_date = 0
tag_svn_revision = 0
[flake8]
-exclude = .git,.tox,docs/europython/*.py,validators.py
+exclude = .git,.tox,docs/europython/*.py
# E305: expected 2 blank lines after class or function definition, found 1
# W503 line break before binary operator
# W605 invalid escape sequence
http://sourceforge.net/p/sqlobject/sqlobject/ci/61151b8015d67de07a7a1e19d9161e7534b00800
commit 61151b8015d67de07a7a1e19d9161e7534b00800
Author: Oleg Broytman <ph...@ph...>
Date: Sat Nov 11 16:19:51 2023 +0300
Build(devscripts/postrelease): Restore alpha state
[skip ci]
diff --git a/devscripts/postrelease b/devscripts/postrelease
index 0a9c73a..246e9e3 100755
--- a/devscripts/postrelease
+++ b/devscripts/postrelease
@@ -2,5 +2,8 @@
git checkout HEAD~ ANNOUNCE.rst setup.cfg &&
+trove_cls='3 - Alpha' &&
+sed -Ei "s/Development Status :: .+\",\$/Development Status :: $trove_cls\",/" setup.py &&
+
`git var GIT_EDITOR` ANNOUNCE.rst setup.cfg README.rst docs/News.rst &&
exec git commit --message="Build: Prepare for the next release" --message="[skip ci]" ANNOUNCE.rst setup.cfg README.rst docs/News.rst
-----------------------------------------------------------------------
Summary of changes:
.github/workflows/run-tests.yaml | 2 +-
devscripts/git-hooks/post-checkout | 4 ++--
devscripts/git-hooks/post-merge | 4 ++--
devscripts/git-hooks/post-rewrite | 4 ++--
devscripts/postrelease | 3 +++
docs/News.rst | 7 +++++++
setup.cfg | 2 +-
tox.ini | 6 +++---
8 files changed, 21 insertions(+), 11 deletions(-)
hooks/post-receive
--
SQLObject development repository
|