Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package python-jaraco.itertools for
openSUSE:Factory checked in at 2022-08-31 18:08:28
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-jaraco.itertools (Old)
and /work/SRC/openSUSE:Factory/.python-jaraco.itertools.new.2083 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-jaraco.itertools"
Wed Aug 31 18:08:28 2022 rev:6 rq:1000108 version:6.2.1
Changes:
--------
---
/work/SRC/openSUSE:Factory/python-jaraco.itertools/python-jaraco.itertools.changes
2021-11-10 21:46:04.079801512 +0100
+++
/work/SRC/openSUSE:Factory/.python-jaraco.itertools.new.2083/python-jaraco.itertools.changes
2022-08-31 18:08:30.991300614 +0200
@@ -1,0 +2,14 @@
+Mon Aug 29 11:56:23 UTC 2022 - Ben Greiner <[email protected]>
+
+- Update to 6.2.1:
+ #15: Fixed broken test in ensure_unique.
+- v6.2.0: Added accumulate function.
+- v6.1.1: Fixed typo in ensure_unique doctest.
+- v6.1.0: Add ensure_unique function.
+- v6.0.3: #13: Fixed doc build errors.
+- v6.0.2: Minor fixes.
+- v6.0.1: Switch to PEP 420 for namespace package.
+- v6.0.0: Remove Counter.GetCount. Remove flatten and iflatten.
+- Switch to PEP517 and remove obsolete jaraco.base requirement
+
+-------------------------------------------------------------------
Old:
----
jaraco.itertools-5.0.0.tar.gz
New:
----
jaraco.itertools-6.2.1.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-jaraco.itertools.spec ++++++
--- /var/tmp/diff_new_pack.P3n6xi/_old 2022-08-31 18:08:31.507301979 +0200
+++ /var/tmp/diff_new_pack.P3n6xi/_new 2022-08-31 18:08:31.511301989 +0200
@@ -1,7 +1,7 @@
#
# spec file for package python-jaraco.itertools
#
-# Copyright (c) 2021 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
@@ -16,27 +16,25 @@
#
-%{?!python_module:%define python_module() python-%{**} python3-%{**}}
-%define skip_python2 1
Name: python-jaraco.itertools
-Version: 5.0.0
+Version: 6.2.1
Release: 0
Summary: Tools to work with iterables
License: MIT
Group: Development/Languages/Python
URL: https://github.com/jaraco/jaraco.itertools
Source0:
https://files.pythonhosted.org/packages/source/j/jaraco.itertools/jaraco.itertools-%{version}.tar.gz
+BuildRequires: %{python_module base >= 3.7}
BuildRequires: %{python_module inflect}
-BuildRequires: %{python_module jaraco.base >= 6.1}
BuildRequires: %{python_module more-itertools >= 4.0.0}
+BuildRequires: %{python_module pip}
BuildRequires: %{python_module pytest}
-BuildRequires: %{python_module setuptools_scm >= 1.15.0}
-BuildRequires: %{python_module setuptools}
-BuildRequires: %{python_module six}
+BuildRequires: %{python_module setuptools >= 56}
+BuildRequires: %{python_module setuptools_scm >= 3.4.1}
+BuildRequires: %{python_module wheel}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: python-inflect
-Requires: python-jaraco.base >= 6.1
Requires: python-more-itertools >= 4.0.0
BuildArch: noarch
%python_subpackages
@@ -47,30 +45,27 @@
%prep
%setup -q -n jaraco.itertools-%{version}
-sed -i 's/--flake8//' pytest.ini
-sed -i 's/--black --cov//' pytest.ini
+rm -r jaraco.itertools.egg-info
%build
-%python_build
+%pyproject_wheel
%install
-%python_install
-
-%{python_expand rm -f %{buildroot}%{$python_sitelib}/jaraco/__init__.py* \
- %{buildroot}%{$python_sitelib}/jaraco/__pycache__/__init__.*
-$python -m compileall -d %{$python_sitelib}
%{buildroot}%{$python_sitelib}/jaraco/
-$python -O -m compileall -d %{$python_sitelib}
%{buildroot}%{$python_sitelib}/jaraco/
-%fdupes %{buildroot}%{$python_sitelib}
-}
+%pyproject_install
+%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
-%pytest
+# work around for gh#pytest-dev/pytest#3396 until gh#pytest-dev/pytest#10088
lands in a pytest release
+touch jaraco/__init__.py
+%pytest --doctest-modules
%files %{python_files}
%license LICENSE
%doc docs/*.rst README.rst CHANGES.rst
-%{python_sitelib}/jaraco.itertools-%{version}-py*.egg-info
+%dir %{python_sitelib}/jaraco
+%{python_sitelib}/jaraco.itertools-%{version}*-info
%{python_sitelib}/jaraco/itertools.py*
+%pycache_only %dir %{python_sitelib}/jaraco/__pycache__
%pycache_only %{python_sitelib}/jaraco/__pycache__/itertools*.py*
%changelog
++++++ jaraco.itertools-5.0.0.tar.gz -> jaraco.itertools-6.2.1.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/jaraco.itertools-5.0.0/.coveragerc
new/jaraco.itertools-6.2.1/.coveragerc
--- old/jaraco.itertools-5.0.0/.coveragerc 2019-12-20 05:36:10.000000000
+0100
+++ new/jaraco.itertools-6.2.1/.coveragerc 2022-02-21 04:01:24.000000000
+0100
@@ -1,5 +1,7 @@
[run]
-omit = .tox/*
+omit =
+ # leading `*/` for pytest-dev/pytest-cov#456
+ */.tox/*
[report]
show_missing = True
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/jaraco.itertools-5.0.0/.editorconfig
new/jaraco.itertools-6.2.1/.editorconfig
--- old/jaraco.itertools-5.0.0/.editorconfig 1970-01-01 01:00:00.000000000
+0100
+++ new/jaraco.itertools-6.2.1/.editorconfig 2022-02-21 04:01:24.000000000
+0100
@@ -0,0 +1,16 @@
+root = true
+
+[*]
+charset = utf-8
+indent_style = tab
+indent_size = 4
+insert_final_newline = true
+end_of_line = lf
+
+[*.py]
+indent_style = space
+max_line_length = 88
+
+[*.{yml,yaml}]
+indent_style = space
+indent_size = 2
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/jaraco.itertools-5.0.0/.flake8
new/jaraco.itertools-6.2.1/.flake8
--- old/jaraco.itertools-5.0.0/.flake8 2019-12-20 05:36:10.000000000 +0100
+++ new/jaraco.itertools-6.2.1/.flake8 2022-02-21 04:01:24.000000000 +0100
@@ -1,9 +1,9 @@
[flake8]
max-line-length = 88
-ignore =
- # W503 violates spec https://github.com/PyCQA/pycodestyle/issues/513
- W503
- # W504 has issues
https://github.com/OCA/maintainer-quality-tools/issues/545
- W504
+
+# jaraco/skeleton#34
+max-complexity = 10
+
+extend-ignore =
# Black creates whitespace before colon
E203
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/jaraco.itertools-5.0.0/.github/dependabot.yml
new/jaraco.itertools-6.2.1/.github/dependabot.yml
--- old/jaraco.itertools-5.0.0/.github/dependabot.yml 1970-01-01
01:00:00.000000000 +0100
+++ new/jaraco.itertools-6.2.1/.github/dependabot.yml 2022-02-21
04:01:24.000000000 +0100
@@ -0,0 +1,8 @@
+version: 2
+updates:
+ - package-ecosystem: "pip"
+ directory: "/"
+ schedule:
+ interval: "daily"
+ allow:
+ - dependency-type: "all"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/jaraco.itertools-5.0.0/.github/workflows/main.yml
new/jaraco.itertools-6.2.1/.github/workflows/main.yml
--- old/jaraco.itertools-5.0.0/.github/workflows/main.yml 1970-01-01
01:00:00.000000000 +0100
+++ new/jaraco.itertools-6.2.1/.github/workflows/main.yml 2022-02-21
04:01:24.000000000 +0100
@@ -0,0 +1,48 @@
+name: tests
+
+on: [push, pull_request]
+
+jobs:
+ test:
+ strategy:
+ matrix:
+ python:
+ - 3.7
+ - 3.9
+ - "3.10"
+ platform:
+ - ubuntu-latest
+ - macos-latest
+ - windows-latest
+ runs-on: ${{ matrix.platform }}
+ steps:
+ - uses: actions/checkout@v2
+ - name: Setup Python
+ uses: actions/setup-python@v2
+ with:
+ python-version: ${{ matrix.python }}
+ - name: Install tox
+ run: |
+ python -m pip install tox
+ - name: Run tests
+ run: tox
+
+ release:
+ needs: test
+ if: github.event_name == 'push' && contains(github.ref, 'refs/tags/')
+ runs-on: ubuntu-latest
+
+ steps:
+ - uses: actions/checkout@v2
+ - name: Setup Python
+ uses: actions/setup-python@v2
+ with:
+ python-version: "3.10"
+ - name: Install tox
+ run: |
+ python -m pip install tox
+ - name: Release
+ run: tox -e release
+ env:
+ TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/jaraco.itertools-5.0.0/.pre-commit-config.yaml
new/jaraco.itertools-6.2.1/.pre-commit-config.yaml
--- old/jaraco.itertools-5.0.0/.pre-commit-config.yaml 2019-12-20
05:36:10.000000000 +0100
+++ new/jaraco.itertools-6.2.1/.pre-commit-config.yaml 2022-02-21
04:01:24.000000000 +0100
@@ -1,5 +1,5 @@
repos:
- repo: https://github.com/psf/black
- rev: 19.3b0
+ rev: 22.1.0
hooks:
- id: black
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/jaraco.itertools-5.0.0/.readthedocs.yml
new/jaraco.itertools-6.2.1/.readthedocs.yml
--- old/jaraco.itertools-5.0.0/.readthedocs.yml 2019-12-20 05:36:10.000000000
+0100
+++ new/jaraco.itertools-6.2.1/.readthedocs.yml 2022-02-21 04:01:24.000000000
+0100
@@ -1,5 +1,6 @@
+version: 2
python:
- version: 3
- extra_requirements:
- - docs
- pip_install: true
+ install:
+ - path: .
+ extra_requirements:
+ - docs
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/jaraco.itertools-5.0.0/.travis.yml
new/jaraco.itertools-6.2.1/.travis.yml
--- old/jaraco.itertools-5.0.0/.travis.yml 2019-12-20 05:36:10.000000000
+0100
+++ new/jaraco.itertools-6.2.1/.travis.yml 1970-01-01 01:00:00.000000000
+0100
@@ -1,27 +0,0 @@
-dist: xenial
-language: python
-
-python:
-- 3.6
-- &latest_py3 3.8
-
-jobs:
- fast_finish: true
- include:
- - stage: deploy
- if: tag IS present
- python: *latest_py3
- before_script: skip
- script: tox -e release
-
-cache: pip
-
-install:
-- pip install tox tox-venv
-
-before_script:
- # Disable IPv6. Ref travis-ci/travis-ci#8361
- - if [ "${TRAVIS_OS_NAME}" == "linux" ]; then
- sudo sh -c 'echo 0 > /proc/sys/net/ipv6/conf/all/disable_ipv6';
- fi
-script: tox
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/jaraco.itertools-5.0.0/CHANGES.rst
new/jaraco.itertools-6.2.1/CHANGES.rst
--- old/jaraco.itertools-5.0.0/CHANGES.rst 2019-12-20 05:36:10.000000000
+0100
+++ new/jaraco.itertools-6.2.1/CHANGES.rst 2022-02-21 04:01:24.000000000
+0100
@@ -1,3 +1,44 @@
+v6.2.1
+======
+
+#15: Fixed broken test in ``ensure_unique``.
+
+v6.2.0
+======
+
+Added ``accumulate`` function.
+
+v6.1.1
+======
+
+Fixed typo in ``ensure_unique`` doctest.
+
+v6.1.0
+======
+
+Add ``ensure_unique`` function.
+
+v6.0.3
+======
+
+#13: Fixed doc build errors.
+
+v6.0.2
+======
+
+Minor fixes.
+
+v6.0.1
+======
+
+Switch to PEP 420 for namespace package.
+
+v6.0.0
+======
+
+Remove ``Counter.GetCount``.
+Remove ``flatten`` and ``iflatten``.
+
v5.0.0
======
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/jaraco.itertools-5.0.0/LICENSE
new/jaraco.itertools-6.2.1/LICENSE
--- old/jaraco.itertools-5.0.0/LICENSE 2019-12-20 05:36:10.000000000 +0100
+++ new/jaraco.itertools-6.2.1/LICENSE 2022-02-21 04:01:24.000000000 +0100
@@ -1,7 +1,19 @@
Copyright Jason R. Coombs
-Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
of the Software, and to permit persons to whom the Software is furnished to do
so, subject to the following conditions:
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to
+deal in the Software without restriction, including without limitation the
+rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
+sell copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
-The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
+IN THE SOFTWARE.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/jaraco.itertools-5.0.0/PKG-INFO
new/jaraco.itertools-6.2.1/PKG-INFO
--- old/jaraco.itertools-5.0.0/PKG-INFO 2019-12-20 05:36:30.418280400 +0100
+++ new/jaraco.itertools-6.2.1/PKG-INFO 2022-02-21 04:01:47.201205000 +0100
@@ -1,34 +1,42 @@
Metadata-Version: 2.1
Name: jaraco.itertools
-Version: 5.0.0
+Version: 6.2.1
Summary: jaraco.itertools
Home-page: https://github.com/jaraco/jaraco.itertools
Author: Jason R. Coombs
Author-email: [email protected]
License: UNKNOWN
-Description: .. image:: https://img.shields.io/pypi/v/jaraco.itertools.svg
- :target: https://pypi.org/project/jaraco.itertools
-
- .. image:: https://img.shields.io/pypi/pyversions/jaraco.itertools.svg
-
- .. image::
https://img.shields.io/travis/jaraco/jaraco.itertools/master.svg
- :target: https://travis-ci.org/jaraco/jaraco.itertools
-
- .. image:: https://img.shields.io/badge/code%20style-black-000000.svg
- :target: https://github.com/psf/black
- :alt: Code style: Black
-
- .. .. image::
https://img.shields.io/appveyor/ci/jaraco/jaraco.itertools/master.svg
- .. :target:
https://ci.appveyor.com/project/jaraco/jaraco.itertools/branch/master
-
- .. image::
https://readthedocs.org/projects/jaracoitertools/badge/?version=latest
- :target:
https://jaracoitertools.readthedocs.io/en/latest/?badge=latest
-
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
-Requires-Python: >=3.6
+Classifier: Programming Language :: Python :: 3 :: Only
+Requires-Python: >=3.7
Provides-Extra: testing
Provides-Extra: docs
+License-File: LICENSE
+
+.. image:: https://img.shields.io/pypi/v/jaraco.itertools.svg
+ :target: `PyPI link`_
+
+.. image:: https://img.shields.io/pypi/pyversions/jaraco.itertools.svg
+ :target: `PyPI link`_
+
+.. _PyPI link: https://pypi.org/project/jaraco.itertools
+
+.. image:: https://github.com/jaraco/jaraco.itertools/workflows/tests/badge.svg
+ :target:
https://github.com/jaraco/jaraco.itertools/actions?query=workflow%3A%22tests%22
+ :alt: tests
+
+.. image:: https://img.shields.io/badge/code%20style-black-000000.svg
+ :target: https://github.com/psf/black
+ :alt: Code style: Black
+
+.. image::
https://readthedocs.org/projects/jaracoitertools/badge/?version=latest
+ :target: https://jaracoitertools.readthedocs.io/en/latest/?badge=latest
+
+.. image:: https://img.shields.io/badge/skeleton-2022-informational
+ :target: https://blog.jaraco.com/skeleton
+
+
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/jaraco.itertools-5.0.0/README.rst
new/jaraco.itertools-6.2.1/README.rst
--- old/jaraco.itertools-5.0.0/README.rst 2019-12-20 05:36:10.000000000
+0100
+++ new/jaraco.itertools-6.2.1/README.rst 2022-02-21 04:01:24.000000000
+0100
@@ -1,17 +1,21 @@
.. image:: https://img.shields.io/pypi/v/jaraco.itertools.svg
- :target: https://pypi.org/project/jaraco.itertools
+ :target: `PyPI link`_
.. image:: https://img.shields.io/pypi/pyversions/jaraco.itertools.svg
+ :target: `PyPI link`_
-.. image:: https://img.shields.io/travis/jaraco/jaraco.itertools/master.svg
- :target: https://travis-ci.org/jaraco/jaraco.itertools
+.. _PyPI link: https://pypi.org/project/jaraco.itertools
+
+.. image:: https://github.com/jaraco/jaraco.itertools/workflows/tests/badge.svg
+ :target:
https://github.com/jaraco/jaraco.itertools/actions?query=workflow%3A%22tests%22
+ :alt: tests
.. image:: https://img.shields.io/badge/code%20style-black-000000.svg
:target: https://github.com/psf/black
:alt: Code style: Black
-.. .. image::
https://img.shields.io/appveyor/ci/jaraco/jaraco.itertools/master.svg
-.. :target:
https://ci.appveyor.com/project/jaraco/jaraco.itertools/branch/master
-
.. image::
https://readthedocs.org/projects/jaracoitertools/badge/?version=latest
:target: https://jaracoitertools.readthedocs.io/en/latest/?badge=latest
+
+.. image:: https://img.shields.io/badge/skeleton-2022-informational
+ :target: https://blog.jaraco.com/skeleton
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/jaraco.itertools-5.0.0/appveyor.yml
new/jaraco.itertools-6.2.1/appveyor.yml
--- old/jaraco.itertools-5.0.0/appveyor.yml 2019-12-20 05:36:10.000000000
+0100
+++ new/jaraco.itertools-6.2.1/appveyor.yml 1970-01-01 01:00:00.000000000
+0100
@@ -1,24 +0,0 @@
-environment:
-
- APPVEYOR: true
-
- matrix:
- - PYTHON: "C:\\Python36-x64"
- - PYTHON: "C:\\Python38-x64"
-
-install:
- # symlink python from a directory with a space
- - "mklink /d \"C:\\Program Files\\Python\" %PYTHON%"
- - "SET PYTHON=\"C:\\Program Files\\Python\""
- - "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
-
-build: off
-
-cache:
- - '%LOCALAPPDATA%\pip\Cache'
-
-test_script:
- - "python -m pip install -U tox tox-venv virtualenv"
- - "tox"
-
-version: '{build}'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/jaraco.itertools-5.0.0/conftest.py
new/jaraco.itertools-6.2.1/conftest.py
--- old/jaraco.itertools-5.0.0/conftest.py 2019-12-20 05:36:10.000000000
+0100
+++ new/jaraco.itertools-6.2.1/conftest.py 2022-02-21 04:01:24.000000000
+0100
@@ -1,12 +1,12 @@
-import six
+import sys
def pytest_collection_modifyitems(session, config, items):
- remove_PY2_broken_tests(items)
+ remove_broken_tests(items)
-def remove_PY2_broken_tests(items):
- if six.PY3:
- return
- broken_test_names = ['jaraco.itertools.always_iterable']
- items[:] = (item for item in items if item.name not in broken_test_names)
+def remove_broken_tests(items):
+ # Remove broken tests for PyPy3
+ if hasattr(sys, 'pypy_version_info'):
+ broken_test_names = ['jaraco.itertools.always_iterable']
+ items[:] = (item for item in items if item.name not in
broken_test_names)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/jaraco.itertools-5.0.0/docs/conf.py
new/jaraco.itertools-6.2.1/docs/conf.py
--- old/jaraco.itertools-5.0.0/docs/conf.py 2019-12-20 05:36:10.000000000
+0100
+++ new/jaraco.itertools-6.2.1/docs/conf.py 2022-02-21 04:01:24.000000000
+0100
@@ -14,7 +14,7 @@
url='{package_url}/issues/{issue}',
),
dict(
- pattern=r'^(?m)((?P<scm_version>v?\d+(\.\d+){1,2}))\n[-=]+\n',
+ pattern=r'(?m:^((?P<scm_version>v?\d+(\.\d+){1,2}))\n[-=]+\n)',
with_scm='{text}\n{rev[timestamp]:%d %b %Y}\n',
),
dict(
@@ -28,3 +28,13 @@
],
)
}
+
+# Be strict about any broken references:
+nitpicky = True
+
+# Include Python intersphinx mapping to prevent failures
+# jaraco/skeleton#51
+extensions += ['sphinx.ext.intersphinx']
+intersphinx_mapping = {
+ 'python': ('https://docs.python.org/3', None),
+}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/jaraco.itertools-5.0.0/docs/index.rst
new/jaraco.itertools-6.2.1/docs/index.rst
--- old/jaraco.itertools-5.0.0/docs/index.rst 2019-12-20 05:36:10.000000000
+0100
+++ new/jaraco.itertools-6.2.1/docs/index.rst 2022-02-21 04:01:24.000000000
+0100
@@ -1,5 +1,5 @@
-Welcome to jaraco.itertools documentation!
-==========================================
+Welcome to |project| documentation!
+===================================
.. toctree::
:maxdepth: 1
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/jaraco.itertools-5.0.0/jaraco/__init__.py
new/jaraco.itertools-6.2.1/jaraco/__init__.py
--- old/jaraco.itertools-5.0.0/jaraco/__init__.py 2019-12-20
05:36:10.000000000 +0100
+++ new/jaraco.itertools-6.2.1/jaraco/__init__.py 1970-01-01
01:00:00.000000000 +0100
@@ -1 +0,0 @@
-__path__ = __import__('pkgutil').extend_path(__path__, __name__)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/jaraco.itertools-5.0.0/jaraco/itertools.py
new/jaraco.itertools-6.2.1/jaraco/itertools.py
--- old/jaraco.itertools-5.0.0/jaraco/itertools.py 2019-12-20
05:36:10.000000000 +0100
+++ new/jaraco.itertools-6.2.1/jaraco/itertools.py 2022-02-21
04:01:24.000000000 +0100
@@ -1,5 +1,3 @@
-# -*- coding: UTF-8 -*-
-
"""
jaraco.itertools
Tools for working with iterables. Complements itertools and more_itertools.
@@ -69,7 +67,7 @@
return queues.get_first_n_queues(2)
-class GroupbySaved(object):
+class GroupbySaved:
"""
Split a sequence into n sequences where n is determined by the
number of distinct values returned by a key function applied to each
@@ -172,8 +170,6 @@
self._fetcher()
return self.get()
- next = __next__
-
def __iter__(self):
while True:
try:
@@ -185,7 +181,7 @@
self.put_nowait(item)
-class Count(object):
+class Count:
"""
A stop object that will count how many times it's been called and return
False on the N+1st call. Useful for use with takewhile.
@@ -237,7 +233,7 @@
return vars(self) == vars(other)
-class islice(object):
+class islice:
"""May be applied to an iterable to limit the number of items returned.
Works similarly to count, except is called only once on an iterable.
Functionality is identical to islice, except for __str__ and reusability.
@@ -283,7 +279,7 @@
return result
-class LessThanNBlanks(object):
+class LessThanNBlanks:
"""
An object that when called will return True until n false elements
are encountered.
@@ -312,7 +308,7 @@
return self.count < self.limit
-class LessThanNConsecutiveBlanks(object):
+class LessThanNConsecutiveBlanks:
"""
An object that when called will return True until n consecutive
false elements are encountered.
@@ -342,7 +338,7 @@
return self.count < self.limit
-class splitter(object):
+class splitter:
"""
object that will split a string with the given arguments for each call.
@@ -399,12 +395,14 @@
return infinite_call(functools.partial(f, *args))
-class Counter(object):
+class Counter:
"""
Wrap an iterable in an object that stores the count of items
that pass through it.
>>> items = Counter(range(20))
+ >>> items.count
+ 0
>>> values = list(items)
>>> items.count
20
@@ -412,71 +410,16 @@
def __init__(self, i):
self.count = 0
- self._orig_iter = iter(i)
+ self.iter = zip(itertools.count(1), i)
def __iter__(self):
return self
def __next__(self):
- result = next(self._orig_iter)
- self.count += 1
- return result
-
- next = __next__
-
- def GetCount(self):
- warnings.warn("Use count attribute directly", DeprecationWarning,
stacklevel=2)
- return self.count
-
-
-# todo, factor out caching capability
-
-
-class iterable_test(dict):
- def __init__(self, ignore_classes=(str, bytes)):
- """ignore_classes must include str, because if a string
- is iterable, so is a single character, and the routine runs
- into an infinite recursion"""
- warnings.warn("Slated for removal", DeprecationWarning, stacklevel=2)
- assert {str} <= set(ignore_classes), 'str must be in ignore_classes'
- self.ignore_classes = ignore_classes
-
- def __getitem__(self, candidate):
- return dict.get(self, type(candidate)) or self._test(candidate)
-
- def _test(self, candidate):
- try:
- if isinstance(candidate, tuple(self.ignore_classes)):
- raise TypeError
- iter(candidate)
- result = True
- except TypeError:
- result = False
- self[type(candidate)] = result
+ self.count, result = next(self.iter)
return result
-def iflatten(subject, test=None):
- if test is None:
- test = iterable_test()
- if not test[subject]:
- yield subject
- else:
- for elem in subject:
- for subelem in iflatten(elem, test):
- yield subelem
-
-
-def flatten(subject, test=None):
- """
- *Deprecated*: Use more_itertools.collapse instead.
- """
- warnings.warn(
- "Use more_itertools.collapse instead", DeprecationWarning, stacklevel=2
- )
- return list(more_itertools.collapse(subject, base_type=(bytes,)))
-
-
def empty():
"""
An empty iterator.
@@ -501,7 +444,7 @@
return False
-class Reusable(object):
+class Reusable:
"""
An iterator that may be reset and reused.
@@ -543,8 +486,6 @@
self.reset()
raise
- next = __next__
-
def every_other(iterable):
"""
@@ -606,7 +547,7 @@
return next(peeker), original
-class Peekable(object):
+class Peekable:
"""
Wrapper for a traditional iterable to give it a peek attribute.
@@ -649,8 +590,6 @@
def __next__(self):
return next(self.iterator)
- next = __next__
-
def peek(self):
result, self.iterator = peek(self.iterator)
return result
@@ -772,7 +711,7 @@
>>> next(numbers)
2
"""
- result, = item
+ (result,) = item
return result
@@ -816,7 +755,7 @@
return zip(pre_iter, iter, post_iter)
-class IterSaver(object):
+class IterSaver:
def __init__(self, n, iterable):
self.n = n
self.iterable = iterable
@@ -827,8 +766,6 @@
self.buffer.append(next(self.iterable))
return self.buffer.popleft()
- next = __next__
-
def partition_items(count, bin_size):
"""
@@ -970,7 +907,7 @@
'a'
"""
try:
- single, = sequence
+ (single,) = sequence
except ValueError:
return sequence
return single
@@ -1050,7 +987,9 @@
)
for pair in more_itertools.pairwise(iterable):
keyed = tuple(map(key, pair))
- assert comp(*keyed), err_tmpl.format(**locals())
+ # cannot use bare assert due to jaraco/jaraco.test#3
+ if not comp(*keyed):
+ raise AssertionError(err_tmpl.format(**locals()))
yield pair[0]
yield pair[1]
@@ -1065,7 +1004,7 @@
- items in old are yielded first
- items in new are yielded last
- items that match are yielded in the order in which they
- appear, giving preference to new
+ appear, giving preference to new
Items match based on the 'key' parameter (identity by default).
@@ -1214,7 +1153,7 @@
"""
def unmatched(pair):
- test_key, item, = pair
+ test_key, item = pair
return test_key != key
items_iter = iter(items.items())
@@ -1222,3 +1161,55 @@
left = collections.OrderedDict(itertools.takewhile(unmatched, items_iter))
right = collections.OrderedDict(items_iter)
return left, item, right
+
+
+def ensure_unique(iterable, key=lambda x: x):
+ """
+ Wrap an iterable to raise a ValueError if non-unique values are
encountered.
+
+ >>> from more_itertools import consume
+ >>> list(ensure_unique('abc'))
+ ['a', 'b', 'c']
+ >>> consume(ensure_unique('abca'))
+ Traceback (most recent call last):
+ ...
+ ValueError: Duplicate element 'a' encountered.
+ """
+ seen = set()
+ seen_add = seen.add
+ for element in iterable:
+ k = key(element)
+ if k in seen:
+ raise ValueError(f"Duplicate element {element!r} encountered.")
+ seen_add(k)
+ yield element
+
+
+def accumulate(increments):
+ """
+ Accumulate values in the iterable into a new iterable
+ of the same length.
+
+ >>> list(accumulate([1, 2, 3]))
+ [1, 3, 6]
+ >>> list(accumulate([0.5, -1, 20]))
+ [0.5, -0.5, 19.5]
+ >>> list(accumulate([]))
+ []
+ >>> list(accumulate([42]))
+ [42]
+
+ Accepts any objects that are summable.
+
+ >>> list(accumulate('abcde'))
+ ['a', 'ab', 'abc', 'abcd', 'abcde']
+ """
+ items_ = iter(increments)
+ try:
+ value = next(items_)
+ except StopIteration:
+ return
+ yield value
+ for item in items_:
+ value += item
+ yield value
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/jaraco.itertools-5.0.0/jaraco.itertools.egg-info/PKG-INFO
new/jaraco.itertools-6.2.1/jaraco.itertools.egg-info/PKG-INFO
--- old/jaraco.itertools-5.0.0/jaraco.itertools.egg-info/PKG-INFO
2019-12-20 05:36:30.000000000 +0100
+++ new/jaraco.itertools-6.2.1/jaraco.itertools.egg-info/PKG-INFO
2022-02-21 04:01:46.000000000 +0100
@@ -1,34 +1,42 @@
Metadata-Version: 2.1
Name: jaraco.itertools
-Version: 5.0.0
+Version: 6.2.1
Summary: jaraco.itertools
Home-page: https://github.com/jaraco/jaraco.itertools
Author: Jason R. Coombs
Author-email: [email protected]
License: UNKNOWN
-Description: .. image:: https://img.shields.io/pypi/v/jaraco.itertools.svg
- :target: https://pypi.org/project/jaraco.itertools
-
- .. image:: https://img.shields.io/pypi/pyversions/jaraco.itertools.svg
-
- .. image::
https://img.shields.io/travis/jaraco/jaraco.itertools/master.svg
- :target: https://travis-ci.org/jaraco/jaraco.itertools
-
- .. image:: https://img.shields.io/badge/code%20style-black-000000.svg
- :target: https://github.com/psf/black
- :alt: Code style: Black
-
- .. .. image::
https://img.shields.io/appveyor/ci/jaraco/jaraco.itertools/master.svg
- .. :target:
https://ci.appveyor.com/project/jaraco/jaraco.itertools/branch/master
-
- .. image::
https://readthedocs.org/projects/jaracoitertools/badge/?version=latest
- :target:
https://jaracoitertools.readthedocs.io/en/latest/?badge=latest
-
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
-Requires-Python: >=3.6
+Classifier: Programming Language :: Python :: 3 :: Only
+Requires-Python: >=3.7
Provides-Extra: testing
Provides-Extra: docs
+License-File: LICENSE
+
+.. image:: https://img.shields.io/pypi/v/jaraco.itertools.svg
+ :target: `PyPI link`_
+
+.. image:: https://img.shields.io/pypi/pyversions/jaraco.itertools.svg
+ :target: `PyPI link`_
+
+.. _PyPI link: https://pypi.org/project/jaraco.itertools
+
+.. image:: https://github.com/jaraco/jaraco.itertools/workflows/tests/badge.svg
+ :target:
https://github.com/jaraco/jaraco.itertools/actions?query=workflow%3A%22tests%22
+ :alt: tests
+
+.. image:: https://img.shields.io/badge/code%20style-black-000000.svg
+ :target: https://github.com/psf/black
+ :alt: Code style: Black
+
+.. image::
https://readthedocs.org/projects/jaracoitertools/badge/?version=latest
+ :target: https://jaracoitertools.readthedocs.io/en/latest/?badge=latest
+
+.. image:: https://img.shields.io/badge/skeleton-2022-informational
+ :target: https://blog.jaraco.com/skeleton
+
+
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/jaraco.itertools-5.0.0/jaraco.itertools.egg-info/SOURCES.txt
new/jaraco.itertools-6.2.1/jaraco.itertools.egg-info/SOURCES.txt
--- old/jaraco.itertools-5.0.0/jaraco.itertools.egg-info/SOURCES.txt
2019-12-20 05:36:30.000000000 +0100
+++ new/jaraco.itertools-6.2.1/jaraco.itertools.egg-info/SOURCES.txt
2022-02-21 04:01:47.000000000 +0100
@@ -1,23 +1,22 @@
.coveragerc
+.editorconfig
.flake8
.pre-commit-config.yaml
.readthedocs.yml
-.travis.yml
CHANGES.rst
LICENSE
README.rst
-appveyor.yml
conftest.py
+mypy.ini
pyproject.toml
pytest.ini
setup.cfg
-setup.py
-skeleton.md
tox.ini
+.github/dependabot.yml
+.github/workflows/main.yml
docs/conf.py
docs/history.rst
docs/index.rst
-jaraco/__init__.py
jaraco/itertools.py
jaraco.itertools.egg-info/PKG-INFO
jaraco.itertools.egg-info/SOURCES.txt
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/jaraco.itertools-5.0.0/jaraco.itertools.egg-info/requires.txt
new/jaraco.itertools-6.2.1/jaraco.itertools.egg-info/requires.txt
--- old/jaraco.itertools-5.0.0/jaraco.itertools.egg-info/requires.txt
2019-12-20 05:36:30.000000000 +0100
+++ new/jaraco.itertools-6.2.1/jaraco.itertools.egg-info/requires.txt
2022-02-21 04:01:47.000000000 +0100
@@ -3,12 +3,16 @@
[docs]
sphinx
-jaraco.packaging>=3.2
+jaraco.packaging>=9
rst.linker>=1.9
[testing]
-pytest!=3.7.3,>=3.5
-pytest-checkdocs>=1.2.3
+pytest>=6
+pytest-checkdocs>=2.4
pytest-flake8
-pytest-black-multipy
pytest-cov
+pytest-enabler>=1.0.1
+
+[testing:platform_python_implementation != "PyPy"]
+pytest-black>=0.3.7
+pytest-mypy>=0.9.1
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/jaraco.itertools-5.0.0/mypy.ini
new/jaraco.itertools-6.2.1/mypy.ini
--- old/jaraco.itertools-5.0.0/mypy.ini 1970-01-01 01:00:00.000000000 +0100
+++ new/jaraco.itertools-6.2.1/mypy.ini 2022-02-21 04:01:24.000000000 +0100
@@ -0,0 +1,2 @@
+[mypy]
+ignore_missing_imports = True
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/jaraco.itertools-5.0.0/pyproject.toml
new/jaraco.itertools-6.2.1/pyproject.toml
--- old/jaraco.itertools-5.0.0/pyproject.toml 2019-12-20 05:36:10.000000000
+0100
+++ new/jaraco.itertools-6.2.1/pyproject.toml 2022-02-21 04:01:24.000000000
+0100
@@ -1,6 +1,20 @@
[build-system]
-requires = ["setuptools>=34.4", "wheel", "setuptools_scm>=1.15"]
+requires = ["setuptools>=56", "setuptools_scm[toml]>=3.4.1"]
build-backend = "setuptools.build_meta"
[tool.black]
skip-string-normalization = true
+
+[tool.setuptools_scm]
+
+[pytest.enabler.black]
+addopts = "--black"
+
+[pytest.enabler.mypy]
+addopts = "--mypy"
+
+[pytest.enabler.flake8]
+addopts = "--flake8"
+
+[pytest.enabler.cov]
+addopts = "--cov"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/jaraco.itertools-5.0.0/pytest.ini
new/jaraco.itertools-6.2.1/pytest.ini
--- old/jaraco.itertools-5.0.0/pytest.ini 2019-12-20 05:36:10.000000000
+0100
+++ new/jaraco.itertools-6.2.1/pytest.ini 2022-02-21 04:01:24.000000000
+0100
@@ -1,5 +1,18 @@
[pytest]
norecursedirs=dist build .tox .eggs
-addopts=--doctest-modules --flake8 --black --cov
+# doctests disabled due to pytest-dev/pytest#3396
+# addopts=--doctest-modules
doctest_optionflags=ALLOW_UNICODE ELLIPSIS ALLOW_BYTES
filterwarnings=
+ # Suppress deprecation warning in flake8
+ ignore:SelectableGroups dict interface is deprecated::flake8
+
+ # shopkeep/pytest-black#55
+ ignore:<class 'pytest_black.BlackItem'> is not using a cooperative
constructor:pytest.PytestDeprecationWarning
+ ignore:The \(fspath. py.path.local\) argument to BlackItem is
deprecated.:pytest.PytestDeprecationWarning
+ ignore:BlackItem is an Item subclass and should not be a
collector:pytest.PytestWarning
+
+ # tholo/pytest-flake8#83
+ ignore:<class 'pytest_flake8.Flake8Item'> is not using a cooperative
constructor:pytest.PytestDeprecationWarning
+ ignore:The \(fspath. py.path.local\) argument to Flake8Item is
deprecated.:pytest.PytestDeprecationWarning
+ ignore:Flake8Item is an Item subclass and should not be a
collector:pytest.PytestWarning
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/jaraco.itertools-5.0.0/setup.cfg
new/jaraco.itertools-6.2.1/setup.cfg
--- old/jaraco.itertools-5.0.0/setup.cfg 2019-12-20 05:36:30.418280400
+0100
+++ new/jaraco.itertools-6.2.1/setup.cfg 2022-02-21 04:01:47.201205000
+0100
@@ -1,8 +1,4 @@
-[bdist_wheel]
-universal = 1
-
[metadata]
-license_file = LICENSE
name = jaraco.itertools
author = Jason R. Coombs
author_email = [email protected]
@@ -14,26 +10,37 @@
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3
+ Programming Language :: Python :: 3 :: Only
[options]
-packages = find:
+packages = find_namespace:
include_package_data = true
-python_requires = >=3.6
+python_requires = >=3.7
install_requires =
more_itertools>=4.0.0
inflect
-setup_requires = setuptools_scm >= 1.15.0
+
+[options.packages.find]
+exclude =
+ build*
+ dist*
+ docs*
+ tests*
[options.extras_require]
testing =
- pytest >= 3.5, !=3.7.3
- pytest-checkdocs >= 1.2.3
+ pytest >= 6
+ pytest-checkdocs >= 2.4
pytest-flake8
- pytest-black-multipy
+ pytest-black >= 0.3.7; \
+ python_implementation != "PyPy"
pytest-cov
+ pytest-mypy >= 0.9.1; \
+ python_implementation != "PyPy"
+ pytest-enabler >= 1.0.1
docs =
sphinx
- jaraco.packaging >= 3.2
+ jaraco.packaging >= 9
rst.linker >= 1.9
[options.entry_points]
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/jaraco.itertools-5.0.0/setup.py
new/jaraco.itertools-6.2.1/setup.py
--- old/jaraco.itertools-5.0.0/setup.py 2019-12-20 05:36:10.000000000 +0100
+++ new/jaraco.itertools-6.2.1/setup.py 1970-01-01 01:00:00.000000000 +0100
@@ -1,6 +0,0 @@
-#!/usr/bin/env python
-
-import setuptools
-
-if __name__ == "__main__":
- setuptools.setup(use_scm_version=True)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/jaraco.itertools-5.0.0/skeleton.md
new/jaraco.itertools-6.2.1/skeleton.md
--- old/jaraco.itertools-5.0.0/skeleton.md 2019-12-20 05:36:10.000000000
+0100
+++ new/jaraco.itertools-6.2.1/skeleton.md 1970-01-01 01:00:00.000000000
+0100
@@ -1,137 +0,0 @@
-# Overview
-
-This project is merged with [skeleton](https://github.com/jaraco/skeleton).
What is skeleton? It's the scaffolding of a Python project jaraco [introduced
in his blog](https://blog.jaraco.com/a-project-skeleton-for-python-projects/).
It seeks to provide a means to re-use techniques and inherit advances when
managing projects for distribution.
-
-## An SCM Managed Approach
-
-While maintaining dozens of projects in PyPI, jaraco derives best practices
for project distribution and publishes them in the [skeleton
repo](https://github.com/jaraco/skeleton), a git repo capturing the evolution
and culmination of these best practices.
-
-It's intended to be used by a new or existing project to adopt these practices
and honed and proven techniques. Adopters are encouraged to use the project
directly and maintain a small deviation from the technique, make their own fork
for more substantial changes unique to their environment or preferences, or
simply adopt the skeleton once and abandon it thereafter.
-
-The primary advantage to using an SCM for maintaining these techniques is that
those tools help facilitate the merge between the template and its adopting
projects.
-
-Another advantage to using an SCM-managed approach is that tools like GitHub
recognize that a change in the skeleton is the _same change_ across all
projects that merge with that skeleton. Without the ancestry, with a
traditional copy/paste approach, a [commit like
this](https://github.com/jaraco/skeleton/commit/12eed1326e1bc26ce256e7b3f8cd8d3a5beab2d5)
would produce notifications in the upstream project issue for each and every
application, but because it's centralized, GitHub provides just the one
notification when the change is added to the skeleton.
-
-# Usage
-
-## new projects
-
-To use skeleton for a new project, simply pull the skeleton into a new project:
-
-```
-$ git init my-new-project
-$ cd my-new-project
-$ git pull gh://jaraco/skeleton
-```
-
-Now customize the project to suit your individual project needs.
-
-## existing projects
-
-If you have an existing project, you can still incorporate the skeleton by
merging it into the codebase.
-
-```
-$ git merge skeleton --allow-unrelated-histories
-```
-
-The `--allow-unrelated-histories` is necessary because the history from the
skeleton was previously unrelated to the existing codebase. Resolve any merge
conflicts and commit to the master, and now the project is based on the shared
skeleton.
-
-## Updating
-
-Whenever a change is needed or desired for the general technique for
packaging, it can be made in the skeleton project and then merged into each of
the derived projects as needed, recommended before each release. As a result,
features and best practices for packaging are centrally maintained and readily
trickle into a whole suite of packages. This technique lowers the amount of
tedious work necessary to create or maintain a project, and coupled with other
techniques like continuous integration and deployment, lowers the cost of
creating and maintaining refined Python projects to just a few, familiar git
operations.
-
-Thereafter, the target project can make whatever customizations it deems
relevant to the scaffolding. The project may even at some point decide that the
divergence is too great to merit renewed merging with the original skeleton.
This approach applies maximal guidance while creating minimal constraints.
-
-# Features
-
-The features/techniques employed by the skeleton include:
-
-- PEP 517/518 based build relying on setuptools as the build tool
-- setuptools declarative configuration using setup.cfg
-- tox for running tests
-- A README.rst as reStructuredText with some popular badges, but with
readthedocs and appveyor badges commented out
-- A CHANGES.rst file intended for publishing release notes about the project
-- Use of [black](https://black.readthedocs.io/en/stable/) for code formatting
(disabled on unsupported Python 3.5 and earlier)
-
-## Packaging Conventions
-
-A pyproject.toml is included to enable PEP 517 and PEP 518 compatibility and
declares the requirements necessary to build the project on setuptools (a
minimum version compatible with setup.cfg declarative config).
-
-The setup.cfg file implements the following features:
-
-- Assumes universal wheel for release
-- Advertises the project's LICENSE file (MIT by default)
-- Reads the README.rst file into the long description
-- Some common Trove classifiers
-- Includes all packages discovered in the repo
-- Data files in the package are also included (not just Python files)
-- Declares the required Python versions
-- Declares install requirements (empty by default)
-- Declares setup requirements for legacy environments
-- Supplies two 'extras':
- - testing: requirements for running tests
- - docs: requirements for building docs
- - these extras split the declaration into "upstream" (requirements as
declared by the skeleton) and "local" (those specific to the local project);
these markers help avoid merge conflicts
-- Placeholder for defining entry points
-
-Additionally, the setup.py file declares `use_scm_version` which relies on
[setuptools_scm](https://pypi.org/project/setuptools_scm) to do two things:
-
-- derive the project version from SCM tags
-- ensure that all files committed to the repo are automatically included in
releases
-
-## Running Tests
-
-The skeleton assumes the developer has [tox](https://pypi.org/project/tox)
installed. The developer is expected to run `tox` to run tests on the current
Python version using [pytest](https://pypi.org/project/pytest).
-
-Other environments (invoked with `tox -e {name}`) supplied include:
-
- - a `docs` environment to build the documentation
- - a `release` environment to publish the package to PyPI
-
-A pytest.ini is included to define common options around running tests. In
particular:
-
-- rely on default test discovery in the current directory
-- avoid recursing into common directories not containing tests
-- run doctests on modules and invoke flake8 tests
-- in doctests, allow unicode literals and regular literals to match, allowing
for doctests to run on Python 2 and 3. Also enable ELLIPSES, a default that
would be undone by supplying the prior option.
-- filters out known warnings caused by libraries/functionality included by the
skeleton
-
-Relies a .flake8 file to correct some default behaviors:
-
-- disable mutually incompatible rules W503 and W504
-- support for black format
-
-## Continuous Integration
-
-The project is pre-configured to run tests in
[Travis-CI](https://travis-ci.org) (.travis.yml). Any new project must be
enabled either through their web site or with the `travis enable` command.
-
-Features include:
-- test against Python 2 and 3
-- run on Ubuntu Xenial
-- correct for broken IPv6
-
-Also provided is a minimal template for running under Appveyor (Windows).
-
-### Continuous Deployments
-
-In addition to running tests, an additional deploy stage is configured to
automatically release tagged commits to PyPI using [API
tokens](https://pypi.org/help/#apitoken). The release process expects an
authorized token to be configured with Travis as the TWINE_PASSWORD environment
variable. After the Travis project is created, configure the token through the
web UI or with a command like the following (bash syntax):
-
-```
-TWINE_PASSWORD={token} travis env copy TWINE_PASSWORD
-```
-
-## Building Documentation
-
-Documentation is automatically built by [Read the
Docs](https://readthedocs.org) when the project is registered with it, by way
of the .readthedocs.yml file. To test the docs build manually, a tox env may be
invoked as `tox -e docs`. Both techniques rely on the dependencies declared in
`setup.cfg/options.extras_require.docs`.
-
-In addition to building the sphinx docs scaffolded in `docs/`, the docs build
a `history.html` file that first injects release dates and hyperlinks into the
CHANGES.rst before incorporating it as history in the docs.
-
-## Cutting releases
-
-By default, tagged commits are released through the continuous integration
deploy stage.
-
-Releases may also be cut manually by invoking the tox environment `release`
with the PyPI token set as the TWINE_PASSWORD:
-
-```
-TWINE_PASSWORD={token} tox -e release
-```
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/jaraco.itertools-5.0.0/tox.ini
new/jaraco.itertools-6.2.1/tox.ini
--- old/jaraco.itertools-5.0.0/tox.ini 2019-12-20 05:36:10.000000000 +0100
+++ new/jaraco.itertools-6.2.1/tox.ini 2022-02-21 04:01:24.000000000 +0100
@@ -3,16 +3,11 @@
minversion = 3.2
# https://github.com/jaraco/skeleton/issues/6
tox_pip_extensions_ext_venv_update = true
-# Ensure that a late version of pip is used even on tox-venv.
-requires =
- tox-pip-version>=0.0.6
- tox-venv
+toxworkdir={env:TOX_WORK_DIR:.tox}
[testenv]
deps =
- setuptools>=31.0.1
-pip_version = pip
commands =
pytest {posargs}
usedevelop = True
@@ -24,19 +19,21 @@
testing
changedir = docs
commands =
- python -m sphinx . {toxinidir}/build/html
+ python -m sphinx -W --keep-going . {toxinidir}/build/html
[testenv:release]
skip_install = True
deps =
- pep517>=0.5
- twine[keyring]>=1.13
- path
+ build
+ twine>=3
+ jaraco.develop>=7.1
passenv =
TWINE_PASSWORD
+ GITHUB_TOKEN
setenv =
TWINE_USERNAME = {env:TWINE_USERNAME:__token__}
commands =
- python -c "import path; path.Path('dist').rmtree_p()"
- python -m pep517.build .
+ python -c "import shutil; shutil.rmtree('dist', ignore_errors=True)"
+ python -m build
python -m twine upload dist/*
+ python -m jaraco.develop.create-github-release