15
0
forked from pool/python-ara

- update to 1.7.0:

* Update bootstrap CSS from 4.6.0 to 5.3.0 and fix broken layout
    and components as a result of the update
  * Removed separate light/dark themes via bootstrap-darkly and
    bootstrap-flatly: bootstrap 5.3 features a new built-in dark
    theme
  * Re-worked the dark/light theme selection to match the new
    bootstrap built-in dark theme including pygments highlighting
    for pretty-printed output
  * Removed jquery, it is no longer required with bootstrap
  * Re-worked implementation of file line highlighting since it
    relied on jquery
  * Fixed tooltip implementation (i.e, for task tags) since the
    implementation in bootstrap had changed
  * Large chunks of templating were moved out to partials/tables and
    partials/search in order to improve readability.
  * Round of template cleanups and fixes as reported by djlint
  * Will continue to be a work in progress to simplify and standardize
    templates.
  * Raised the requirement on django from >=3.2,<3.3 to >=3.2,<4.3 to
    allow installation with the latest LTS release of django.
   * Raised the requirement on python from >=3.6 to >=3.8 to accomodate
    django 4.2.
  * Ignored Django warning about the lack of a STATIC_ROOT directory.
    ara uses whitenoise for serving static files which makes the warning
    superfluous. (#492)
  --
  --
  ---
  ---

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-ara?expand=0&rev=30
This commit is contained in:
2023-11-25 14:08:12 +00:00
committed by Git OBS Bridge
parent 4d61a51811
commit cd657be34e
4 changed files with 46 additions and 16 deletions

View File

@@ -28,19 +28,19 @@
# plugin for Ansible package
%define pythons python3
Name: python-ara
Version: 1.6.1
Version: 1.7.0
Release: 0
Summary: ARA Records Ansible
License: GPL-3.0-or-later
URL: https://github.com/ansible-community/ara
Source: https://files.pythonhosted.org/packages/source/a/ara/ara-%{version}.tar.gz
BuildRequires: %{python_module devel}
BuildRequires: %{python_module devel >= 3.8}
BuildRequires: %{python_module pbr}
BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module setuptools_scm}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: python-cliff
Requires: python-pbr >= 2.0.0
Requires: python-pbr
Requires: python-requests >= 2.14.2
Requires(post): update-alternatives
Requires(postun):update-alternatives
@@ -52,7 +52,7 @@ Recommends: python-dynaconf
Recommends: python-whitenoise
BuildArch: noarch
%if %{with test}
BuildRequires: %{python_module Django >= 2.1.5}
BuildRequires: %{python_module Django >= 3.2}
BuildRequires: %{python_module ara >= %{version}}
BuildRequires: %{python_module django-cors-headers}
BuildRequires: %{python_module django-filter}