15
0

- update to 2.0.1:

* Add official support for python 3.10 and 3.11. [gforcada] [michael-k]
  * Update options handling. [gforcada]
  * Mark support for python 3.9. [lovetoburnswhen]
  * Drop python 2.7 and 3.6. [gforcada]
  * Overhaul GitHub actions to test on actual supported python versions.
  * New flake8 option `--builtins-ignorelist` to specify a list of builtins
    to ignore. [gsingh93]

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-flake8-builtins?expand=0&rev=9
This commit is contained in:
2022-12-15 21:12:09 +00:00
committed by Git OBS Bridge
parent 2fb3420039
commit 64c094e4e4
4 changed files with 20 additions and 7 deletions

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:09998853b2405e98e61d2ff3027c47033adbdc17f9fe44ca58443d876eb00f3b
size 16581

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:5aeb420130efe8acbdaf8708a582492413293a3ca25653518f687937879650a5
size 15721

View File

@@ -1,3 +1,15 @@
-------------------------------------------------------------------
Thu Dec 15 21:10:42 UTC 2022 - Dirk Müller <dmueller@suse.com>
- update to 2.0.1:
* Add official support for python 3.10 and 3.11. [gforcada] [michael-k]
* Update options handling. [gforcada]
* Mark support for python 3.9. [lovetoburnswhen]
* Drop python 2.7 and 3.6. [gforcada]
* Overhaul GitHub actions to test on actual supported python versions.
* New flake8 option `--builtins-ignorelist` to specify a list of builtins
to ignore. [gsingh93]
-------------------------------------------------------------------
Thu Sep 17 11:10:13 UTC 2020 - Dirk Mueller <dmueller@suse.com>

View File

@@ -1,7 +1,7 @@
#
# spec file for package python-flake8-builtins
#
# Copyright (c) 2020 SUSE LLC
# Copyright (c) 2022 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -19,19 +19,20 @@
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
%define skip_python2 1
Name: python-flake8-builtins
Version: 1.5.3
Version: 2.0.1
Release: 0
Summary: Flake8 Builtins plugin
License: GPL-2.0-only
URL: https://github.com/gforcada/flake8-builtins
Source: https://files.pythonhosted.org/packages/source/f/flake8-builtins/flake8-builtins-%{version}.tar.gz
BuildRequires: %{python_module base >= 3.7}
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: python-flake8
Requires: python-flake8 >= 6.0.0
BuildArch: noarch
# SECTION test requirements
BuildRequires: %{python_module flake8}
BuildRequires: %{python_module flake8 >= 6.0.0}
BuildRequires: %{python_module hypothesis}
BuildRequires: %{python_module hypothesmith}
BuildRequires: %{python_module pytest}