Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-cssselect2 for openSUSE:Factory checked in at 2026-09-18 22:03:14 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-cssselect2 (Old) and /work/SRC/openSUSE:Factory/.python-cssselect2.new.383539 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-cssselect2" Fri Sep 18 22:03:14 2026 rev:11 rq:1378561 version:0.10.0 Changes: -------- --- /work/SRC/openSUSE:Factory/python-cssselect2/python-cssselect2.changes 2026-02-17 16:39:11.910980915 +0100 +++ /work/SRC/openSUSE:Factory/.python-cssselect2.new.383539/python-cssselect2.changes 2026-09-18 22:03:23.616685229 +0200 @@ -1,0 +2,8 @@ +Wed Sep 16 14:23:15 UTC 2026 - Nico Krapp <[email protected]> + +- Update to 0.10.1 + * Fix packaging +- Update to 0.10.0 + * Support CSS Notes + +------------------------------------------------------------------- Old: ---- cssselect2-0.9.0.tar.gz New: ---- cssselect2-0.10.0.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-cssselect2.spec ++++++ --- /var/tmp/diff_new_pack.WwSNCh/_old 2026-09-18 22:03:24.396717920 +0200 +++ /var/tmp/diff_new_pack.WwSNCh/_new 2026-09-18 22:03:24.398718004 +0200 @@ -16,10 +16,9 @@ # -%define skip_python2 1 %{?sle15_python_module_pythons} Name: python-cssselect2 -Version: 0.9.0 +Version: 0.10.0 Release: 0 Summary: CSS selectors for Python ElementTree License: BSD-3-Clause @@ -51,7 +50,7 @@ cssselect. %prep -%setup -q -n cssselect2-%{version} +%autosetup -p1 -n cssselect2-%{version} %build %pyproject_wheel ++++++ cssselect2-0.9.0.tar.gz -> cssselect2-0.10.0.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/cssselect2-0.9.0/.github/workflows/doconfly.yml new/cssselect2-0.10.0/.github/workflows/doconfly.yml --- old/cssselect2-0.9.0/.github/workflows/doconfly.yml 2026-02-12 18:12:31.000000000 +0100 +++ new/cssselect2-0.10.0/.github/workflows/doconfly.yml 2026-08-31 15:18:39.000000000 +0200 @@ -11,19 +11,7 @@ name: doconfly job runs-on: ubuntu-latest env: - PORT: ${{ secrets.PORT }} - SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }} - TAKOYAKI: ${{ secrets.TAKOYAKI }} - USER: ${{ secrets.USER }} - DOCUMENTATION_PATH: ${{ secrets.DOCUMENTATION_PATH }} - DOCUMENTATION_URL: ${{ secrets.DOCUMENTATION_URL }} + PASSWORD: ${{ secrets.DOCONFLY_PASSWORD }} steps: - run: | - which ssh-agent || ( apt-get update -y && apt-get install openssh-client -y ) - eval $(ssh-agent -s) - echo "$SSH_PRIVATE_KEY" | tr -d '\r' | ssh-add - - mkdir -p ~/.ssh - chmod 700 ~/.ssh - ssh-keyscan -p $PORT $TAKOYAKI >> ~/.ssh/known_hosts - chmod 644 ~/.ssh/known_hosts - ssh $USER@$TAKOYAKI -p $PORT "doconfly/doconfly.sh $GITHUB_REPOSITORY $GITHUB_REF $DOCUMENTATION_PATH $DOCUMENTATION_URL" + curl --user "doconfly:$PASSWORD" "https://doconfly.courtbouillon.org/$GITHUB_REPOSITORY/$GITHUB_REF" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/cssselect2-0.9.0/.github/workflows/release.yml new/cssselect2-0.10.0/.github/workflows/release.yml --- old/cssselect2-0.9.0/.github/workflows/release.yml 2026-02-12 18:12:31.000000000 +0100 +++ new/cssselect2-0.10.0/.github/workflows/release.yml 2026-08-31 15:18:39.000000000 +0200 @@ -14,8 +14,8 @@ permissions: id-token: write steps: - - uses: actions/checkout@v4 - - uses: actions/setup-python@v5 + - uses: actions/checkout@v7 + - uses: actions/setup-python@v7 - name: Install requirements run: python -m pip install flit - name: Build packages @@ -29,7 +29,7 @@ contents: write steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v7 - name: Install requirements run: sudo apt-get install pandoc - name: Generate content diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/cssselect2-0.9.0/.github/workflows/tests.yml new/cssselect2-0.10.0/.github/workflows/tests.yml --- old/cssselect2-0.9.0/.github/workflows/tests.yml 2026-02-12 18:12:31.000000000 +0100 +++ new/cssselect2-0.10.0/.github/workflows/tests.yml 2026-08-31 15:18:39.000000000 +0200 @@ -15,10 +15,10 @@ - os: ubuntu-latest python-version: 'pypy-3.11' steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 with: submodules: true - - uses: actions/setup-python@v5 + - uses: actions/setup-python@v7 with: python-version: ${{ matrix.python-version }} - name: Upgrade pip and setuptools diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/cssselect2-0.9.0/cssselect2/__init__.py new/cssselect2-0.10.0/cssselect2/__init__.py --- old/cssselect2-0.9.0/cssselect2/__init__.py 2026-02-12 18:12:31.000000000 +0100 +++ new/cssselect2-0.10.0/cssselect2/__init__.py 2026-08-31 15:18:39.000000000 +0200 @@ -13,7 +13,7 @@ from .parser import SelectorError # noqa from .tree import ElementWrapper # noqa -VERSION = __version__ = '0.9.0' +VERSION = __version__ = '0.10.0' class Matcher: diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/cssselect2-0.9.0/cssselect2/parser.py new/cssselect2-0.10.0/cssselect2/parser.py --- old/cssselect2-0.9.0/cssselect2/parser.py 2026-02-12 18:12:31.000000000 +0100 +++ new/cssselect2-0.10.0/cssselect2/parser.py 2026-08-31 15:18:39.000000000 +0200 @@ -9,6 +9,8 @@ 'marker', 'placeholder', 'file-selector-button', # As per CSS Generated Content for Paged Media Module 'footnote-call', 'footnote-marker', + # As per CSS Notes + 'note-call', 'note-marker', 'note-callback', # As per CSS Scoping Module Level 1 'content', 'shadow', } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/cssselect2-0.9.0/docs/changelog.rst new/cssselect2-0.10.0/docs/changelog.rst --- old/cssselect2-0.9.0/docs/changelog.rst 2026-02-12 18:12:31.000000000 +0100 +++ new/cssselect2-0.10.0/docs/changelog.rst 2026-08-31 15:18:39.000000000 +0200 @@ -2,6 +2,14 @@ --------- +Version 0.10.0 +.............. + +Released on 2026-08-31. + +* Support CSS Notes + + Version 0.9.0 ............. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/cssselect2-0.9.0/pyproject.toml new/cssselect2-0.10.0/pyproject.toml --- old/cssselect2-0.9.0/pyproject.toml 2026-02-12 18:12:31.000000000 +0100 +++ new/cssselect2-0.10.0/pyproject.toml 2026-08-31 15:18:39.000000000 +0200 @@ -1,5 +1,5 @@ [build-system] -requires = ['flit_core >=3.2,<4'] +requires = ['flit_core >=3.2,<5'] build-backend = 'flit_core.buildapi' [project] @@ -55,7 +55,7 @@ omit = ['.*'] [tool.ruff.lint] -select = ['E', 'W', 'F', 'I', 'N', 'RUF', 'T20', 'PIE', 'PT', 'RSE', 'UP', 'Q'] +select = ['E', 'W', 'F', 'I', 'N', 'RUF', 'T20', 'PIE', 'PT', 'RSE', 'UP', 'Q', 'LOG', 'G'] ignore = ['RUF001', 'RUF002', 'RUF003'] [tool.ruff.lint.flake8-quotes]
