Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-emcee for openSUSE:Factory checked in at 2023-01-28 18:46:05 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-emcee (Old) and /work/SRC/openSUSE:Factory/.python-emcee.new.32243 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-emcee" Sat Jan 28 18:46:05 2023 rev:7 rq:1061748 version:3.1.4 Changes: -------- --- /work/SRC/openSUSE:Factory/python-emcee/python-emcee.changes 2022-10-01 17:44:24.409806564 +0200 +++ /work/SRC/openSUSE:Factory/.python-emcee.new.32243/python-emcee.changes 2023-01-28 19:01:15.896034985 +0100 @@ -1,0 +2,6 @@ +Sat Jan 28 14:36:57 UTC 2023 - Dirk Müller <[email protected]> + +- update to 3.1.4: + * Handling updated kstest interface in scipy 1.10 + +------------------------------------------------------------------- Old: ---- emcee-3.1.3.tar.gz New: ---- emcee-3.1.4.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-emcee.spec ++++++ --- /var/tmp/diff_new_pack.jwrXwD/_old 2023-01-28 19:01:16.288037147 +0100 +++ /var/tmp/diff_new_pack.jwrXwD/_new 2023-01-28 19:01:16.296037191 +0100 @@ -1,7 +1,7 @@ # # spec file for package python-emcee # -# Copyright (c) 2022 SUSE LLC +# Copyright (c) 2023 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -20,7 +20,7 @@ # NEP 29: python36-numpy and -scipy are no longer available in TW %define skip_python36 1 Name: python-emcee -Version: 3.1.3 +Version: 3.1.4 Release: 0 Summary: Python affine-invariant ensemble MCMC sampling License: MIT ++++++ emcee-3.1.3.tar.gz -> emcee-3.1.4.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/emcee-3.1.3/.github/dependabot.yml new/emcee-3.1.4/.github/dependabot.yml --- old/emcee-3.1.3/.github/dependabot.yml 1970-01-01 01:00:00.000000000 +0100 +++ new/emcee-3.1.4/.github/dependabot.yml 2023-01-27 13:19:09.000000000 +0100 @@ -0,0 +1,6 @@ +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "monthly" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/emcee-3.1.3/.github/workflows/tests.yml new/emcee-3.1.4/.github/workflows/tests.yml --- old/emcee-3.1.3/.github/workflows/tests.yml 2022-09-27 22:03:48.000000000 +0200 +++ new/emcee-3.1.4/.github/workflows/tests.yml 2023-01-27 13:19:09.000000000 +0100 @@ -26,11 +26,11 @@ steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 - name: Setup Python - uses: actions/setup-python@v2 + uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} - name: Install dependencies @@ -54,7 +54,7 @@ runs-on: ubuntu-latest steps: - name: Setup Python - uses: actions/setup-python@v2 + uses: actions/setup-python@v4 with: python-version: "3.9" - name: Finish coverage collection @@ -68,11 +68,11 @@ lint: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: fetch-depth: 0 - name: Setup Python - uses: actions/setup-python@v2 + uses: actions/setup-python@v4 with: python-version: "3.9" - name: Install dependencies @@ -85,10 +85,10 @@ build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: fetch-depth: 0 - - uses: actions/setup-python@v2 + - uses: actions/setup-python@v4 name: Install Python with: python-version: "3.9" @@ -97,7 +97,7 @@ python -m pip install -U pip python -m pip install -U build python -m build . - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v3 with: path: dist/* @@ -106,12 +106,12 @@ runs-on: ubuntu-latest if: startsWith(github.ref, 'refs/tags/') steps: - - uses: actions/download-artifact@v2 + - uses: actions/download-artifact@v3 with: name: artifact path: dist - - uses: pypa/[email protected] + - uses: pypa/[email protected] with: user: __token__ password: ${{ secrets.pypi_password }} diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/emcee-3.1.3/.pre-commit-config.yaml new/emcee-3.1.4/.pre-commit-config.yaml --- old/emcee-3.1.3/.pre-commit-config.yaml 2022-09-27 22:03:48.000000000 +0200 +++ new/emcee-3.1.4/.pre-commit-config.yaml 2023-01-27 13:19:09.000000000 +0100 @@ -1,26 +1,20 @@ - repos: -- repo: https://github.com/pre-commit/pre-commit-hooks - rev: v4.3.0 - hooks: - - id: trailing-whitespace - - id: end-of-file-fixer - - id: debug-statements - -- repo: https://github.com/PyCQA/isort - rev: "5.10.1" - hooks: - - id: isort - args: [] - additional_dependencies: [toml] - exclude: docs/tutorials + - repo: https://github.com/pre-commit/pre-commit-hooks + rev: v4.4.0 + hooks: + - id: trailing-whitespace + - id: end-of-file-fixer + - id: debug-statements -- repo: https://github.com/psf/black - rev: "22.8.0" - hooks: - - id: black + - repo: https://github.com/PyCQA/isort + rev: "5.11.4" + hooks: + - id: isort + args: [] + additional_dependencies: [toml] + exclude: docs/tutorials -- repo: https://github.com/dfm/black_nbconvert - rev: v0.4.0 - hooks: - - id: black_nbconvert + - repo: https://github.com/psf/black + rev: "22.12.0" + hooks: + - id: black-jupyter diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/emcee-3.1.3/PKG-INFO new/emcee-3.1.4/PKG-INFO --- old/emcee-3.1.3/PKG-INFO 2022-09-27 22:04:02.255622600 +0200 +++ new/emcee-3.1.4/PKG-INFO 2023-01-27 13:19:19.915073600 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: emcee -Version: 3.1.3 +Version: 3.1.4 Summary: The Python ensemble sampling toolkit for MCMC Home-page: https://emcee.readthedocs.io Author: Daniel Foreman-Mackey diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/emcee-3.1.3/docs/conf.py new/emcee-3.1.4/docs/conf.py --- old/emcee-3.1.3/docs/conf.py 2022-09-27 22:03:48.000000000 +0200 +++ new/emcee-3.1.4/docs/conf.py 2023-01-27 13:19:09.000000000 +0100 @@ -15,6 +15,7 @@ "sphinx.ext.napoleon", "sphinx.ext.mathjax", "myst_nb", + "IPython.sphinxext.ipython_console_highlighting", ] myst_enable_extensions = ["dollarmath", "colon_fence"] diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/emcee-3.1.3/docs/requirements.txt new/emcee-3.1.4/docs/requirements.txt --- old/emcee-3.1.3/docs/requirements.txt 2022-09-27 22:03:48.000000000 +0200 +++ new/emcee-3.1.4/docs/requirements.txt 2023-01-27 13:19:09.000000000 +0100 @@ -5,3 +5,4 @@ h5py celerite corner +ipython diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/emcee-3.1.3/docs/tutorials/parallel.ipynb new/emcee-3.1.4/docs/tutorials/parallel.ipynb --- old/emcee-3.1.3/docs/tutorials/parallel.ipynb 2022-09-27 22:03:48.000000000 +0200 +++ new/emcee-3.1.4/docs/tutorials/parallel.ipynb 2023-01-27 13:19:09.000000000 +0100 @@ -255,7 +255,8 @@ ], "source": [ "with open(\"script.py\", \"w\") as f:\n", - " f.write(\"\"\"\n", + " f.write(\n", + " \"\"\"\n", "import sys\n", "import time\n", "import emcee\n", @@ -284,7 +285,8 @@ " sampler.run_mcmc(initial, nsteps)\n", " end = time.time()\n", " print(end - start)\n", - "\"\"\")\n", + "\"\"\"\n", + " )\n", "\n", "mpi_time = !mpiexec -n {ncpu} python script.py\n", "mpi_time = float(mpi_time[0])\n", diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/emcee-3.1.3/src/emcee/emcee_version.py new/emcee-3.1.4/src/emcee/emcee_version.py --- old/emcee-3.1.3/src/emcee/emcee_version.py 2022-09-27 22:04:02.000000000 +0200 +++ new/emcee-3.1.4/src/emcee/emcee_version.py 2023-01-27 13:19:19.000000000 +0100 @@ -1 +1 @@ -__version__ = "3.1.3" +__version__ = "3.1.4" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/emcee-3.1.3/src/emcee/tests/integration/test_proposal.py new/emcee-3.1.4/src/emcee/tests/integration/test_proposal.py --- old/emcee-3.1.3/src/emcee/tests/integration/test_proposal.py 2022-09-27 22:03:48.000000000 +0200 +++ new/emcee-3.1.4/src/emcee/tests/integration/test_proposal.py 2023-01-27 13:19:09.000000000 +0100 @@ -98,5 +98,5 @@ # Check that the resulting chain "fails" the K-S test. samps = sampler.get_chain(flat=True) np.random.shuffle(samps) - ks, _ = stats.kstest(samps[::100], "uniform") + ks, _ = stats.kstest(samps[::100, 0], "uniform") assert ks > 0.1, "The K-S test failed" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/emcee-3.1.3/src/emcee.egg-info/PKG-INFO new/emcee-3.1.4/src/emcee.egg-info/PKG-INFO --- old/emcee-3.1.3/src/emcee.egg-info/PKG-INFO 2022-09-27 22:04:02.000000000 +0200 +++ new/emcee-3.1.4/src/emcee.egg-info/PKG-INFO 2023-01-27 13:19:19.000000000 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: emcee -Version: 3.1.3 +Version: 3.1.4 Summary: The Python ensemble sampling toolkit for MCMC Home-page: https://emcee.readthedocs.io Author: Daniel Foreman-Mackey diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/emcee-3.1.3/src/emcee.egg-info/SOURCES.txt new/emcee-3.1.4/src/emcee.egg-info/SOURCES.txt --- old/emcee-3.1.3/src/emcee.egg-info/SOURCES.txt 2022-09-27 22:04:02.000000000 +0200 +++ new/emcee-3.1.4/src/emcee.egg-info/SOURCES.txt 2023-01-27 13:19:19.000000000 +0100 @@ -14,6 +14,7 @@ setup.py tox.ini .github/ISSUE_TEMPLATE.md +.github/dependabot.yml .github/workflows/tests.yml binder/environment.yml docs/.gitignore
