commit python-jupyter-core for openSUSE:Factory
Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-jupyter-core for openSUSE:Factory checked in at 2024-04-02 16:37:38 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-jupyter-core (Old) and /work/SRC/openSUSE:Factory/.python-jupyter-core.new.1905 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Package is "python-jupyter-core" Tue Apr 2 16:37:38 2024 rev:25 rq:1163572 version:5.7.2 Changes: -------- --- /work/SRC/openSUSE:Factory/python-jupyter-core/python-jupyter-core.changes 2024-03-06 23:03:06.430214555 +0100 +++ /work/SRC/openSUSE:Factory/.python-jupyter-core.new.1905/python-jupyter-core.changes 2024-04-02 16:37:43.718874649 +0200 @@ -1,0 +2,7 @@ +Fri Mar 29 18:20:02 UTC 2024 - Ben Greiner <code@bnavigator.de> + +- Update to 5.7.2 + * Update Release Scripts #396 (@blink1073) + * Enforce pytest 7 #393 (@blink1073) + +------------------------------------------------------------------- Old: ---- jupyter_core-5.7.1.tar.gz New: ---- jupyter_core-5.7.2.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-jupyter-core.spec ++++++ --- /var/tmp/diff_new_pack.tXouuU/_old 2024-04-02 16:37:44.326897055 +0200 +++ /var/tmp/diff_new_pack.tXouuU/_new 2024-04-02 16:37:44.330897203 +0200 @@ -33,7 +33,7 @@ %endif Name: python-jupyter-core%{psuffix} -Version: 5.7.1 +Version: 5.7.2 Release: 0 Summary: Base package on which Jupyter projects rely License: BSD-3-Clause @@ -68,8 +68,8 @@ %if %{with test} BuildRequires: %{python_module ipykernel} BuildRequires: %{python_module jupyter-core = %{version}} +BuildRequires: %{python_module pytest >= 7 with %python-pytest < 8} BuildRequires: %{python_module pytest-timeout} -BuildRequires: %{python_module pytest} %endif %python_subpackages ++++++ jupyter_core-5.7.1.tar.gz -> jupyter_core-5.7.2.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/jupyter_core-5.7.1/.github/workflows/prep-release.yml new/jupyter_core-5.7.2/.github/workflows/prep-release.yml --- old/jupyter_core-5.7.1/.github/workflows/prep-release.yml 2020-02-02 01:00:00.000000000 +0100 +++ new/jupyter_core-5.7.2/.github/workflows/prep-release.yml 2020-02-02 01:00:00.000000000 +0100 @@ -12,6 +12,10 @@ post_version_spec: description: "Post Version Specifier" required: false + silent: + description: "Set a placeholder in the changelog and don't publish the release." + required: false + type: boolean since: description: "Use PRs with activity since this date or git reference" required: false @@ -22,6 +26,8 @@ jobs: prep_release: runs-on: ubuntu-latest + permissions: + contents: write steps: - uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1 @@ -29,8 +35,9 @@ id: prep-release uses: jupyter-server/jupyter_releaser/.github/actions/prep-release@v2 with: - token: ${{ secrets.ADMIN_GITHUB_TOKEN }} + token: ${{ secrets.GITHUB_TOKEN }} version_spec: ${{ github.event.inputs.version_spec }} + silent: ${{ github.event.inputs.silent }} post_version_spec: ${{ github.event.inputs.post_version_spec }} target: ${{ github.event.inputs.target }} branch: ${{ github.event.inputs.branch }} diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/jupyter_core-5.7.1/.github/workflows/publish-changelog.yml new/jupyter_core-5.7.2/.github/workflows/publish-changelog.yml --- old/jupyter_core-5.7.1/.github/workflows/publish-changelog.yml 1970-01-01 01:00:00.000000000 +0100 +++ new/jupyter_core-5.7.2/.github/workflows/publish-changelog.yml 2020-02-02 01:00:00.000000000 +0100 @@ -0,0 +1,34 @@ +name: "Publish Changelog" +on: + release: + types: [published] + + workflow_dispatch: + inputs: + branch: + description: "The branch to target" + required: false + +jobs: + publish_changelog: + runs-on: ubuntu-latest + environment: release + steps: + - uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1 + + - uses: actions/create-github-app-token@v1 + id: app-token + with: + app-id: ${{ vars.APP_ID }} + private-key: ${{ secrets.APP_PRIVATE_KEY }} + + - name: Publish changelog + id: publish-changelog + uses: jupyter-server/jupyter_releaser/.github/actions/publish-changelog@v2 + with: + token: ${{ steps.app-token.outputs.token }} + branch: ${{ github.event.inputs.branch }} + + - name: "** Next Step **" + run: | + echo "Merge the changelog update PR: ${{ steps.publish-changelog.outputs.pr_url }}" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/jupyter_core-5.7.1/.github/workflows/publish-release.yml new/jupyter_core-5.7.2/.github/workflows/publish-release.yml --- old/jupyter_core-5.7.1/.github/workflows/publish-release.yml 2020-02-02 01:00:00.000000000 +0100 +++ new/jupyter_core-5.7.2/.github/workflows/publish-release.yml 2020-02-02 01:00:00.000000000 +0100 @@ -15,30 +15,32 @@ jobs: publish_release: runs-on: ubuntu-latest + environment: release + permissions: + id-token: write steps: - uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1 + - uses: actions/create-github-app-token@v1 + id: app-token + with: + app-id: ${{ vars.APP_ID }} + private-key: ${{ secrets.APP_PRIVATE_KEY }} + - name: Populate Release id: populate-release uses: jupyter-server/jupyter_releaser/.github/actions/populate-release@v2 with: - token: ${{ secrets.ADMIN_GITHUB_TOKEN }} - target: ${{ github.event.inputs.target }} + token: ${{ steps.app-token.outputs.token }} branch: ${{ github.event.inputs.branch }} release_url: ${{ github.event.inputs.release_url }} steps_to_skip: ${{ github.event.inputs.steps_to_skip }} - name: Finalize Release id: finalize-release - env: - PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }} - PYPI_TOKEN_MAP: ${{ secrets.PYPI_TOKEN_MAP }} - TWINE_USERNAME: __token__ - NPM_TOKEN: ${{ secrets.NPM_TOKEN }} - uses: jupyter-server/jupyter-releaser/.github/actions/finalize-release@v2 + uses: jupyter-server/jupyter_releaser/.github/actions/finalize-release@v2 with: - token: ${{ secrets.ADMIN_GITHUB_TOKEN }} - target: ${{ github.event.inputs.target }} + token: ${{ steps.app-token.outputs.token }} release_url: ${{ steps.populate-release.outputs.release_url }} - name: "** Next Step **" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/jupyter_core-5.7.1/.pre-commit-config.yaml new/jupyter_core-5.7.2/.pre-commit-config.yaml --- old/jupyter_core-5.7.1/.pre-commit-config.yaml 2020-02-02 01:00:00.000000000 +0100 +++ new/jupyter_core-5.7.2/.pre-commit-config.yaml 2020-02-02 01:00:00.000000000 +0100 @@ -21,7 +21,7 @@ - id: trailing-whitespace - repo: https://github.com/python-jsonschema/check-jsonschema - rev: 0.27.3 + rev: 0.27.4 hooks: - id: check-github-workflows @@ -67,7 +67,7 @@ - id: rst-inline-touching-normal - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.1.9 + rev: v0.2.0 hooks: - id: ruff types_or: [python, jupyter] @@ -76,7 +76,7 @@ types_or: [python, jupyter] - repo: https://github.com/scientific-python/cookie - rev: "2023.12.21" + rev: "2024.01.24" hooks: - id: sp-repo-review additional_dependencies: ["repo-review[cli]"] diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/jupyter_core-5.7.1/CHANGELOG.md new/jupyter_core-5.7.2/CHANGELOG.md --- old/jupyter_core-5.7.1/CHANGELOG.md 2020-02-02 01:00:00.000000000 +0100 +++ new/jupyter_core-5.7.2/CHANGELOG.md 2020-02-02 01:00:00.000000000 +0100 @@ -2,6 +2,24 @@ <!-- <START NEW CHANGELOG ENTRY> --> +## 5.7.2 + +([Full Changelog](https://github.com/jupyter/jupyter_core/compare/v5.7.1...1264a81fc834f18db2b...)) + +### Maintenance and upkeep improvements + +- Update Release Scripts [#396](https://github.com/jupyter/jupyter_core/pull/396) ([@blink1073](https://github.com/blink1073)) +- Enforce pytest 7 [#393](https://github.com/jupyter/jupyter_core/pull/393) ([@blink1073](https://github.com/blink1073)) +- chore: update pre-commit hooks [#392](https://github.com/jupyter/jupyter_core/pull/392) ([@pre-commit-ci](https://github.com/pre-commit-ci)) + +### Contributors to this release + +([GitHub contributors page for this release](https://github.com/jupyter/jupyter_core/graphs/contributors?from=2024-01-08&to=2024-03-12&type=c)) + +[@blink1073](https://github.com/search?q=repo%3Ajupyter%2Fjupyter_core+involves%3Ablink1073+updated%3A2024-01-08..2024-03-12&type=Issues) | [@pre-commit-ci](https://github.com/search?q=repo%3Ajupyter%2Fjupyter_core+involves%3Apre-commit-ci+updated%3A2024-01-08..2024-03-12&type=Issues) + +<!-- <END NEW CHANGELOG ENTRY> --> + ## 5.7.1 ([Full Changelog](https://github.com/jupyter/jupyter_core/compare/v5.7.0...8e69e7f1b856099c057...)) @@ -16,8 +34,6 @@ [@blink1073](https://github.com/search?q=repo%3Ajupyter%2Fjupyter_core+involves%3Ablink1073+updated%3A2024-01-03..2024-01-08&type=Issues) -<!-- <END NEW CHANGELOG ENTRY> --> - ## 5.7.0 ([Full Changelog](https://github.com/jupyter/jupyter_core/compare/v5.6.1...19912f49cfb9e2645e0...)) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/jupyter_core-5.7.1/PKG-INFO new/jupyter_core-5.7.2/PKG-INFO --- old/jupyter_core-5.7.1/PKG-INFO 2020-02-02 01:00:00.000000000 +0100 +++ new/jupyter_core-5.7.2/PKG-INFO 2020-02-02 01:00:00.000000000 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: jupyter_core -Version: 5.7.1 +Version: 5.7.2 Summary: Jupyter core package. A base package on which Jupyter projects rely. Project-URL: Homepage, https://jupyter.org Project-URL: Documentation, https://jupyter-core.readthedocs.io/ @@ -60,9 +60,9 @@ Provides-Extra: test Requires-Dist: ipykernel; extra == 'test' Requires-Dist: pre-commit; extra == 'test' -Requires-Dist: pytest; extra == 'test' Requires-Dist: pytest-cov; extra == 'test' Requires-Dist: pytest-timeout; extra == 'test' +Requires-Dist: pytest<8; extra == 'test' Description-Content-Type: text/plain There is no reason to install this package on its own. \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/jupyter_core-5.7.1/RELEASE.md new/jupyter_core-5.7.2/RELEASE.md --- old/jupyter_core-5.7.1/RELEASE.md 1970-01-01 01:00:00.000000000 +0100 +++ new/jupyter_core-5.7.2/RELEASE.md 2020-02-02 01:00:00.000000000 +0100 @@ -0,0 +1,3 @@ +# Making a Release + +The recommended way to make a release is to use [`jupyter_releaser`](https://jupyter-releaser.readthedocs.io/en/latest/get_started/making_release...). diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/jupyter_core-5.7.1/jupyter_core/version.py new/jupyter_core-5.7.2/jupyter_core/version.py --- old/jupyter_core-5.7.1/jupyter_core/version.py 2020-02-02 01:00:00.000000000 +0100 +++ new/jupyter_core-5.7.2/jupyter_core/version.py 2020-02-02 01:00:00.000000000 +0100 @@ -6,7 +6,7 @@ import re # Version string must appear intact for hatch versioning -__version__ = "5.7.1" +__version__ = "5.7.2" # Build up version_info tuple for backwards compatibility pattern = r"(?P<major>\d+).(?P<minor>\d+).(?P<patch>\d+)(?P<rest>.*)" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/jupyter_core-5.7.1/pyproject.toml new/jupyter_core-5.7.2/pyproject.toml --- old/jupyter_core-5.7.1/pyproject.toml 2020-02-02 01:00:00.000000000 +0100 +++ new/jupyter_core-5.7.2/pyproject.toml 2020-02-02 01:00:00.000000000 +0100 @@ -42,7 +42,7 @@ test = [ "ipykernel", "pre-commit", - "pytest", + "pytest<8", "pytest-cov", "pytest-timeout" ] @@ -110,7 +110,7 @@ warn_unreachable = true [tool.pytest.ini_options] -minversion = "6.0" +minversion = "7.0" xfail_strict = true log_cli_level = "info" addopts = [
participants (1)
-
Source-Sync