Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package python-django-appconf for
openSUSE:Factory checked in at 2023-01-04 17:53:39
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-django-appconf (Old)
and /work/SRC/openSUSE:Factory/.python-django-appconf.new.1563 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-django-appconf"
Wed Jan 4 17:53:39 2023 rev:20 rq:1055854 version:1.0.5
Changes:
--------
---
/work/SRC/openSUSE:Factory/python-django-appconf/python-django-appconf.changes
2022-11-22 16:10:14.110045885 +0100
+++
/work/SRC/openSUSE:Factory/.python-django-appconf.new.1563/python-django-appconf.changes
2023-01-04 17:53:55.230647640 +0100
@@ -1,0 +2,7 @@
+Wed Jan 4 14:11:51 UTC 2023 - Dirk Müller <[email protected]>
+
+- update to 1.0.5:
+ * Adds testing against latest non-EOL Python and Django versions and
+ updates package metadata accordingly.
+
+-------------------------------------------------------------------
Old:
----
v1.0.4.tar.gz
New:
----
v1.0.5.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-django-appconf.spec ++++++
--- /var/tmp/diff_new_pack.mdLWiv/_old 2023-01-04 17:53:55.750650706 +0100
+++ /var/tmp/diff_new_pack.mdLWiv/_new 2023-01-04 17:53:55.802651011 +0100
@@ -1,7 +1,7 @@
#
# spec file for package python-django-appconf
#
-# Copyright (c) 2022 SUSE LLC
+# Copyright (c) 2023 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -19,7 +19,7 @@
%define skip_python2 1
%define skip_python36 1
Name: python-django-appconf
-Version: 1.0.4
+Version: 1.0.5
Release: 0
Summary: A Helper Class for Handling Configuration Defaults of Packaged
Apps
License: BSD-3-Clause
++++++ v1.0.4.tar.gz -> v1.0.5.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/django-appconf-1.0.4/.github/workflows/tests.yml
new/django-appconf-1.0.5/.github/workflows/tests.yml
--- old/django-appconf-1.0.4/.github/workflows/tests.yml 1970-01-01
01:00:00.000000000 +0100
+++ new/django-appconf-1.0.5/.github/workflows/tests.yml 2021-09-24
15:48:59.000000000 +0200
@@ -0,0 +1,28 @@
+name: Run Tests
+on: [push]
+jobs:
+ tests:
+ name: Python ${{ matrix.python-version }}
+ runs-on: ubuntu-latest
+ strategy:
+ fail-fast: false
+ matrix:
+ python-version:
+ - 3.6
+ - 3.7
+ - 3.8
+ - 3.9
+ steps:
+ - uses: actions/checkout@v2
+ - name: Set up Python ${{ matrix.python-version }}
+ uses: actions/setup-python@v2
+ with:
+ python-version: ${{ matrix.python-version }}
+ - name: Install dependencies
+ run: |
+ python -m pip install --upgrade pip wheel setuptools
+ python -m pip install --upgrade tox tox-py coverage
+ - name: Run tox targets for ${{ matrix.python-version }}
+ run: tox --py current
+ - name: codecov
+ uses: codecov/codecov-action@v2
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/django-appconf-1.0.4/.travis.yml
new/django-appconf-1.0.5/.travis.yml
--- old/django-appconf-1.0.4/.travis.yml 2020-03-31 14:52:43.000000000
+0200
+++ new/django-appconf-1.0.5/.travis.yml 1970-01-01 01:00:00.000000000
+0100
@@ -1,89 +0,0 @@
-sudo: false
-language: python
-dist: xenial
-
-matrix:
- fast_finish: true
- allow_failures:
- - env: TOXENV=py36-djmaster
- - env: TOXENV=py37-djmaster
- - env: TOXENV=py38-djmaster
- include:
- # Python version is just for the look on travis.
- - python: 3.5
- env: TOXENV=py35-dj111
-
- - python: 3.5
- env: TOXENV=py35-dj20
-
- - python: 3.5
- env: TOXENV=py35-dj21
-
- - python: 3.5
- env: TOXENV=py35-dj22
-
- - python: 3.6
- env: TOXENV=py36-dj111
-
- - python: 3.6
- env: TOXENV=py36-dj20
-
- - python: 3.6
- env: TOXENV=py36-dj21
-
- - python: 3.6
- env: TOXENV=py36-dj22
-
- - python: 3.6
- env: TOXENV=py36-dj30
-
- - python: 3.6
- env: TOXENV=py36-djmaster
-
- - python: 3.7
- env: TOXENV=py37-dj111
-
- - python: 3.7
- env: TOXENV=py37-dj20
-
- - python: 3.7
- env: TOXENV=py37-dj21
-
- - python: 3.7
- env: TOXENV=py37-dj22
-
- - python: 3.7
- env: TOXENV=py37-dj30
-
- - python: 3.7
- env: TOXENV=py37-djmaster
-
- - python: 3.8
- env: TOXENV=py38-dj111
-
- - python: 3.8
- env: TOXENV=py38-dj20
-
- - python: 3.8
- env: TOXENV=py38-dj21
-
- - python: 3.8
- env: TOXENV=py38-dj22
-
- - python: 3.8
- env: TOXENV=py38-dj30
-
- - python: 3.8
- env: TOXENV=py38-djmaster
-
-install:
- - pip install tox codecov
-
-script:
- - tox -e $TOXENV
-
-notifications:
- irc: "irc.freenode.org#django-compressor"
-
-after_success:
- - codecov
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/django-appconf-1.0.4/MANIFEST.in
new/django-appconf-1.0.5/MANIFEST.in
--- old/django-appconf-1.0.4/MANIFEST.in 2020-03-31 14:52:43.000000000
+0200
+++ new/django-appconf-1.0.5/MANIFEST.in 2021-09-24 15:48:59.000000000
+0200
@@ -3,3 +3,4 @@
include AUTHORS
recursive-include docs *
recursive-include tests *
+recursive-exclude */__pycache__ *
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/django-appconf-1.0.4/README.rst
new/django-appconf-1.0.5/README.rst
--- old/django-appconf-1.0.4/README.rst 2020-03-31 14:52:43.000000000 +0200
+++ new/django-appconf-1.0.5/README.rst 2021-09-24 15:48:59.000000000 +0200
@@ -75,6 +75,10 @@
.. code-block:: python
ACME_SETTING_1 = "uno"
+
+Since django-appconf completes Django's global settings with its default
values
+(like "one" above), the standard ``python manage.py diffsettings`` will show
+these defaults automatically.
In case you want to use a different settings object instead of the default
``'django.conf.settings'``, set the ``holder`` attribute of the inner
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/django-appconf-1.0.4/appconf/__init__.py
new/django-appconf-1.0.5/appconf/__init__.py
--- old/django-appconf-1.0.4/appconf/__init__.py 2020-03-31
14:52:43.000000000 +0200
+++ new/django-appconf-1.0.5/appconf/__init__.py 2021-09-24
15:48:59.000000000 +0200
@@ -1,3 +1,3 @@
from .base import AppConf # noqa
-__version__ = "1.0.4"
+__version__ = "1.0.5"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/django-appconf-1.0.4/docs/changelog.rst
new/django-appconf-1.0.5/docs/changelog.rst
--- old/django-appconf-1.0.4/docs/changelog.rst 2020-03-31 14:52:43.000000000
+0200
+++ new/django-appconf-1.0.5/docs/changelog.rst 2021-09-24 15:48:59.000000000
+0200
@@ -1,6 +1,12 @@
Changelog
=========
+1.0.5 (2021-09-24)
+------------------
+
+* Adds testing against latest non-EOL Python and Django versions and updates
+ package metadata accordingly.
+
1.0.4 (2020-04-01)
------------------
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/django-appconf-1.0.4/setup.cfg
new/django-appconf-1.0.5/setup.cfg
--- old/django-appconf-1.0.4/setup.cfg 2020-03-31 14:52:43.000000000 +0200
+++ new/django-appconf-1.0.5/setup.cfg 1970-01-01 01:00:00.000000000 +0100
@@ -1,3 +0,0 @@
-[wheel]
-universal = 1
-
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/django-appconf-1.0.4/setup.py
new/django-appconf-1.0.5/setup.py
--- old/django-appconf-1.0.4/setup.py 2020-03-31 14:52:43.000000000 +0200
+++ new/django-appconf-1.0.5/setup.py 2021-09-24 15:48:59.000000000 +0200
@@ -29,25 +29,25 @@
license='BSD',
url='https://django-appconf.readthedocs.io/',
packages=['appconf'],
+ python_requires='>=3.6',
install_requires=['django'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
- 'Framework :: Django :: 1.11',
- 'Framework :: Django :: 2.0',
- 'Framework :: Django :: 2.1',
'Framework :: Django :: 2.2',
- 'Framework :: Django :: 3.0',
+ 'Framework :: Django :: 3.1',
+ 'Framework :: Django :: 3.2',
+ 'Framework :: Django :: 4.0',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
- 'Programming Language :: Python',
'Programming Language :: Python :: 3',
- 'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
+ 'Programming Language :: Python :: 3.9',
+ 'Programming Language :: Python :: 3 :: Only',
'Topic :: Utilities',
],
project_urls={
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/django-appconf-1.0.4/tox.ini
new/django-appconf-1.0.5/tox.ini
--- old/django-appconf-1.0.4/tox.ini 2020-03-31 14:52:43.000000000 +0200
+++ new/django-appconf-1.0.5/tox.ini 2021-09-24 15:48:59.000000000 +0200
@@ -3,36 +3,35 @@
usedevelop = True
minversion = 1.11
envlist =
- flake8-py37,
- py{35,36,37,38}-dj{111,20,21,22},
- py{36,37,38}-dj{30,master}
+ flake8-py39,
+ py{36,37,38,39}-dj{22,31,32},
+ py{38,39}-dj{40,main}
[testenv]
basepython =
- py35: python3.5
py36: python3.6
py37: python3.7
py38: python3.8
+ py39: python3.9
pypy: pypy
usedevelop = true
setenv =
PYTHONPATH = {toxinidir}
DJANGO_SETTINGS_MODULE=tests.test_settings
deps =
- py{35,36,37,38,pypy}: coverage
+ py{35,36,37,38,39,pypy}: coverage
django-discover-runner
- dj111: Django>=1.11,<2.0
- dj20: Django>=2.0,<2.1
- dj21: Django>=2.1,<2.2
- dj22: Django>=2.2,<2.3
- dj30: Django>=3.0,<3.1
- djmaster: https://github.com/django/django/archive/master.tar.gz#egg=django
+ dj22: Django>=2.2,<3.0
+ dj31: Django>=3.1,<3.2
+ dj32: Django>=3.2,<4.0
+ dj40: Django>=4.0a1,<5.0
+ djmain: https://github.com/django/django/archive/main.tar.gz#egg=django
commands =
- coverage run {envbindir}/django-admin.py test -v2 {posargs:tests}
+ coverage run {envbindir}/django-admin test -v2 {posargs:tests}
coverage report
-[testenv:flake8-py37]
+[testenv:flake8-py39]
commands = flake8 appconf
deps = flake8