Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-asv for openSUSE:Factory 
checked in at 2021-05-18 18:27:02
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-asv (Old)
 and      /work/SRC/openSUSE:Factory/.python-asv.new.2988 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-asv"

Tue May 18 18:27:02 2021 rev:4 rq:893907 version:0.4.2

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-asv/python-asv.changes    2020-06-10 
00:43:17.094165216 +0200
+++ /work/SRC/openSUSE:Factory/.python-asv.new.2988/python-asv.changes  
2021-05-18 18:27:28.906692134 +0200
@@ -1,0 +2,7 @@
+Tue May 18 06:44:31 UTC 2021 - pgaj...@suse.com
+
+- version update to 0.4.2
+  * Do not supply ``--no-site-packages`` to virtualenv, as it is on by
+    default and no longer supported. (#917)
+
+-------------------------------------------------------------------

Old:
----
  asv-0.4.1.tar.gz

New:
----
  asv-0.4.2.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ python-asv.spec ++++++
--- /var/tmp/diff_new_pack.EgPDAO/_old  2021-05-18 18:27:29.298690435 +0200
+++ /var/tmp/diff_new_pack.EgPDAO/_new  2021-05-18 18:27:29.302690418 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-asv
 #
-# Copyright (c) 2020 SUSE LLC
+# Copyright (c) 2021 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:           python-asv
-Version:        0.4.1
+Version:        0.4.2
 Release:        0
 Summary:        Airspeed Velocity: A Python history benchmarking tool
 License:        BSD-3-Clause AND MIT
@@ -32,7 +32,7 @@
 BuildRequires:  python-rpm-macros
 Requires:       python-six >= 1.4
 Requires(post): update-alternatives
-Requires(postun): update-alternatives
+Requires(postun):update-alternatives
 Suggests:       python-python-hglib >= 1.5
 # SECTION test requirements
 BuildRequires:  %{python_module pip}
@@ -66,7 +66,7 @@
 %check
 #MVY: there are so MANY tests failing inside OBS - like test_continuous 
calling pip and building bad command line
 exit 0
-# % python_exec setup.py test
+# % pytest
 
 %post
 %python_install_alternative asv

++++++ asv-0.4.1.tar.gz -> asv-0.4.2.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/asv-0.4.1/.travis.yml new/asv-0.4.2/.travis.yml
--- old/asv-0.4.1/.travis.yml   2019-05-26 16:37:43.000000000 +0200
+++ new/asv-0.4.2/.travis.yml   2020-05-16 13:23:15.000000000 +0200
@@ -25,31 +25,23 @@
           SKIP="$SKIP|test/test_repo_template/asv_test_repo/__init__.py"
           SKIP="$SKIP|asv/extern/asizeof.py"
           SKIP="$SKIP|asv/benchmark.py.*undefined name .(run|params)."
+          SKIP="$SKIP|format.*has unused arguments at position"
           PYFLAKES_NODOCTEST=1 pyflakes asv test | grep -E -v "$SKIP" > 
test.out; cat test.out; test \! -s test.out
 
-    - python: 3.8-dev
+    - python: 3.8
       dist: xenial
 
-    - python: 3.7
-      dist: xenial
-
-    - python: 2.7
-
     - python: 3.6
-
-    - python: 3.5
-
-    - python: 2.7
       env:
         - USE_CONDA=true
-        - COVERAGE="--cov=asv --cov=test"
 
-    - python: 3.6
-      env: USE_CONDA=true
-
-    - python: pypy3.5-6.0
+    - python: pypy3
       dist: xenial
 
+    - python: 2.7
+
+    - python: 3.5
+
 cache:
   directories:
     - $HOME/.cache/pip
@@ -73,8 +65,9 @@
     export TRAVIS_PYTHON=`which python`
     export TRAVIS_PIP=`which pip`
     if [[ $USE_CONDA == true ]]; then
+      ENVIRONMENT_TYPE=conda
       mkdir -p $HOME/download;
-      export MINICONDA_SH="Miniconda3-4.5.11-Linux-x86_64.sh";
+      export MINICONDA_SH="Miniconda3-latest-Linux-x86_64.sh";
       pushd $HOME/download;
       wget -N https://repo.continuum.io/miniconda/$MINICONDA_SH;
       chmod +x $MINICONDA_SH;
@@ -82,10 +75,11 @@
       popd;
       . $HOME/miniconda3/etc/profile.d/conda.sh  # enable conda bash function
       conda activate
-      conda install --yes conda conda-build bzip2
+      conda install --yes conda-build bzip2
       conda info
-      if $TRAVIS_PYTHON -c 'import virtualenv'; then echo "ERROR: virtualenv 
package is installed"; exit 1; fi;
+      XDIST_FLAG=""
     else
+      ENVIRONMENT_TYPE=virtualenv
       if $TRAVIS_PYTHON -c 'import sys; sys.exit(0 if "__pypy__" in 
sys.modules else 1)'; then
         $TRAVIS_PIP install virtualenv;
       elif [[ "$TRAVIS_PYTHON_VERSION" == "3.8-dev" ]]; then
@@ -93,14 +87,17 @@
       else
         $TRAVIS_PIP install virtualenv numpy scipy;
       fi
+      XDIST_FLAG="-n3"
+    fi
+    if $TRAVIS_PYTHON -c 'import sys; sys.exit(0 if "__pypy__" in sys.modules 
else 1)'; then
+      $TRAVIS_PIP install "pytest>=4.4.0,<5.0" 
"pytest-rerunfailures>=8.0,<9.0" "pytest-faulthandler<2.0"
     fi
-    $TRAVIS_PIP install selenium six "pytest>=4.4.0" "pytest-xdist" 
pytest-rerunfailures feedparser python-hglib;
+    $TRAVIS_PIP install selenium six "pytest>=4.4.0" "pytest-xdist" feedparser 
python-hglib filelock;
     if [[ "$COVERAGE" != '' ]]; then $TRAVIS_PIP install pytest-cov codecov; 
fi;
   - $TRAVIS_PYTHON setup.py build_ext -i
 
 script:
-  - if [[ $USE_CONDA == true ]]; then PYTEST_PARALLEL=""; else 
PYTEST_PARALLEL="-n 3"; fi
-  - $TRAVIS_PYTHON -m pytest -l $COVERAGE $PYTEST_PARALLEL -vv 
--webdriver=FirefoxHeadless test
+  - $TRAVIS_PYTHON -m pytest -l $COVERAGE $XDIST_FLAG -v -v 
--webdriver=FirefoxHeadless test
 
 after_script:
   - if [[ "$COVERAGE" != '' ]]; then
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/asv-0.4.1/CHANGES.rst new/asv-0.4.2/CHANGES.rst
--- old/asv-0.4.1/CHANGES.rst   2019-05-30 13:48:37.000000000 +0200
+++ new/asv-0.4.2/CHANGES.rst   2020-05-16 13:42:54.000000000 +0200
@@ -1,3 +1,13 @@
+0.4.2 (2020-05-16)
+------------------
+
+Bug Fixes
+^^^^^^^^^
+
+- Do not supply ``--no-site-packages`` to virtualenv, as it is on by
+  default and no longer supported. (#917)
+
+
 0.4.1 (2019-05-30)
 ------------------
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/asv-0.4.1/PKG-INFO new/asv-0.4.2/PKG-INFO
--- old/asv-0.4.1/PKG-INFO      2019-05-30 16:34:18.000000000 +0200
+++ new/asv-0.4.2/PKG-INFO      2020-05-16 13:43:11.163800700 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: asv
-Version: 0.4.1
+Version: 0.4.2
 Summary: Airspeed Velocity: A simple Python history benchmarking tool
 Home-page: https://github.com/airspeed-velocity/asv
 Author: Michael Droettboom
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/asv-0.4.1/appveyor.yml new/asv-0.4.2/appveyor.yml
--- old/asv-0.4.1/appveyor.yml  2019-05-26 16:37:43.000000000 +0200
+++ new/asv-0.4.2/appveyor.yml  2020-05-16 13:23:15.000000000 +0200
@@ -2,65 +2,46 @@
 # Windows
 
 environment:
-
   global:
-      PYTHON: "C:\\conda"
-      MINICONDA_VERSION: "latest"
-      CMD_IN_ENV: "cmd /E:ON /V:ON /C 
.\\.continuous-integration\\appveyor\\windows_sdk.cmd"
-
+    CONDA_PATH: "C:\\Miniconda3-x64"
   matrix:
-
-      - PYTHON_VERSION: "3.7"
-        platform: x64
-        PYTHON_ARCH: "64"
-      #- PYTHON_VERSION: "2.7"
-      #  platform: x86
-      #  PYTHON_ARCH: "32"
+    - PYTHON_VERSION: "3.7"
+      platform: x64
 
 cache:
-    - '%LOCALAPPDATA%\pip\Cache'
+  - '%LOCALAPPDATA%\pip\Cache'
 
 install:
-    # Init and clone submodules
-    - git submodule update --init --recursive
+  # Append webdriver paths
+  - "SET PATH=%PATH%;C:\\Tools\\WebDriver;C:\\Program Files (x86)\\Mozilla 
Firefox"
+
+  # Init and clone submodules
+  - git submodule update --init --recursive
 
-    # Clear tmpdir (sometimes left behind by appveyor?)
-    - rmdir /s /q %APPVEYOR_BUILD_FOLDER%\\tmp & exit /b 0
+  # Clear tmpdir (sometimes left behind by appveyor?)
+  - rmdir /s /q %APPVEYOR_BUILD_FOLDER%\\tmp & exit /b 0
 
-    # Install miniconda using a powershell script.
-    - "powershell .continuous-integration/appveyor/install-miniconda.ps1"
-    - "%PYTHON%\\Scripts\\activate.bat"
-
-    # Install the build and runtime dependencies of the project.
-    - "conda update -q --yes conda"
-    - "conda install -q --yes python=%PYTHON_VERSION% conda six pip pytest 
pytest-xdist!=1.23.1,!=1.23.2 lockfile selenium conda-build bzip2"
-    - "python -mpip install pytest-rerunfailures"
-
-    # Tell conda to not use hardlinks: on Windows it's not possible
-    # to delete hard links to files in use, which causes problem when
-    # trying to cleanup environments during the tests
-    - "conda config --set always_copy True"
-    - "conda config --set allow_softlinks False"
-
-    # Check that we have the expected version of Python
-    - "python --version"
+  # Setup conda environment
+  - "%CONDA_PATH%\\Scripts\\activate.bat"
 
-    # In-place build
-    - "%CMD_IN_ENV% python setup.py build_ext -i"
+  # Install the build and runtime dependencies of the project.
+  - conda install -q --yes python=%PYTHON_VERSION% conda six pip pytest 
pytest-xdist pytest-timeout filelock selenium conda-build bzip2
+  - python -mpip install pytest-rerunfailures pytest-faulthandler
 
-    # Append webdriver paths
-    - "SET PATH=%PATH%;C:\\Tools\\WebDriver;C:\\Program Files (x86)\\Mozilla 
Firefox"
+  # Check that we have the expected version of Python
+  - python --version
 
-# Not a .NET project
-build: false
+build_script:
+  # In-place build
+  - python setup.py build_ext -i
 
 test_script:
-    - "python -m pytest -l --basetemp=%APPVEYOR_BUILD_FOLDER%\\tmp -vv 
--webdriver=FirefoxHeadless test"
+  - python -m pytest -l --basetemp=%APPVEYOR_BUILD_FOLDER%\\tmp -v -v 
--webdriver=ChromeHeadless --timeout=1800 --durations=100 test
 
 after_build:
-    # Clear up pip cache
-    - C:\cygwin\bin\find "%LOCALAPPDATA%\pip" -type f -mtime +360 -delete
-    - C:\cygwin\bin\find "%LOCALAPPDATA%\pip" -type f -size +10M -delete
-    - C:\cygwin\bin\find "%LOCALAPPDATA%\pip" -empty -delete
-    # Show size of cache
-    - C:\cygwin\bin\du -hs "%LOCALAPPDATA%\pip\Cache"
+  # Clear up pip cache
+  - C:\cygwin\bin\find "%LOCALAPPDATA%\pip" -type f -mtime +360 -delete
+  - C:\cygwin\bin\find "%LOCALAPPDATA%\pip" -type f -size +10M -delete
+  - C:\cygwin\bin\find "%LOCALAPPDATA%\pip" -empty -delete
+  # Show size of cache
+  - C:\cygwin\bin\du -hs "%LOCALAPPDATA%\pip\Cache"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/asv-0.4.1/asv/__init__.py 
new/asv-0.4.2/asv/__init__.py
--- old/asv-0.4.1/asv/__init__.py       2019-05-30 13:48:37.000000000 +0200
+++ new/asv-0.4.2/asv/__init__.py       2020-05-16 13:42:54.000000000 +0200
@@ -9,7 +9,7 @@
 
 # This __version__ assignment is parsed by setup.py; keep it in this form.
 # Development versions end with ".dev" (suffix is added below).
-__version__ = '0.4.1'
+__version__ = '0.4.2'
 __release__ = not __version__.endswith(".dev")
 
 try:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/asv-0.4.1/asv/_version.py 
new/asv-0.4.2/asv/_version.py
--- old/asv-0.4.1/asv/_version.py       2019-05-30 16:34:17.000000000 +0200
+++ new/asv-0.4.2/asv/_version.py       2020-05-16 13:43:10.000000000 +0200
@@ -1,2 +1,2 @@
 __suffix__ = ""
-__githash__ = "49fc2e473a40eb293796ebfffc487fd91a2921f2"
+__githash__ = "9173bcaa997dd3b9bebdfd762950443a1d989706"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/asv-0.4.1/asv/plugins/virtualenv.py 
new/asv-0.4.2/asv/plugins/virtualenv.py
--- old/asv-0.4.1/asv/plugins/virtualenv.py     2019-05-12 12:07:17.000000000 
+0200
+++ new/asv-0.4.2/asv/plugins/virtualenv.py     2020-05-16 11:52:39.000000000 
+0200
@@ -131,7 +131,6 @@
         util.check_call([
             sys.executable,
             "-mvirtualenv",
-            '--no-site-packages',
             "-p",
             self._executable,
             self._path])
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/asv-0.4.1/asv.egg-info/PKG-INFO 
new/asv-0.4.2/asv.egg-info/PKG-INFO
--- old/asv-0.4.1/asv.egg-info/PKG-INFO 2019-05-30 16:34:17.000000000 +0200
+++ new/asv-0.4.2/asv.egg-info/PKG-INFO 2020-05-16 13:43:10.000000000 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: asv
-Version: 0.4.1
+Version: 0.4.2
 Summary: Airspeed Velocity: A simple Python history benchmarking tool
 Home-page: https://github.com/airspeed-velocity/asv
 Author: Michael Droettboom

Reply via email to