Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-lesscpy for openSUSE:Factory 
checked in at 2022-11-01 13:42:19
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-lesscpy (Old)
 and      /work/SRC/openSUSE:Factory/.python-lesscpy.new.2275 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-lesscpy"

Tue Nov  1 13:42:19 2022 rev:13 rq:1032504 version:0.15.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-lesscpy/python-lesscpy.changes    
2022-09-30 17:58:12.553301810 +0200
+++ /work/SRC/openSUSE:Factory/.python-lesscpy.new.2275/python-lesscpy.changes  
2022-11-01 13:42:30.351876176 +0100
@@ -1,0 +2,10 @@
+Fri Oct 28 18:02:02 UTC 2022 - Yogalakshmi Arunachalam <[email protected]>
+
+- Update to v0.15.1 
+  * Git: Ignore '.DS_Store' (macOS)
+  * Add `dev-requirements.txt` for `build` and `twine` packages
+  * README: Remove mentioning of 'six'
+  * Merge pull request #123 from saschpe/supported-interpreters
+  * Update supported Python versions
+
+-------------------------------------------------------------------

Old:
----
  lesscpy-0.15.0.tar.gz

New:
----
  lesscpy-0.15.1.tar.gz

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

Other differences:
------------------
++++++ python-lesscpy.spec ++++++
--- /var/tmp/diff_new_pack.KDjht5/_old  2022-11-01 13:42:30.815878645 +0100
+++ /var/tmp/diff_new_pack.KDjht5/_new  2022-11-01 13:42:30.823878687 +0100
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:           python-lesscpy
-Version:        0.15.0
+Version:        0.15.1
 Release:        0
 Summary:        Lesscss compiler
 License:        MIT

++++++ lesscpy-0.15.0.tar.gz -> lesscpy-0.15.1.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lesscpy-0.15.0/PKG-INFO new/lesscpy-0.15.1/PKG-INFO
--- old/lesscpy-0.15.0/PKG-INFO 2021-07-15 08:55:01.007032000 +0200
+++ new/lesscpy-0.15.1/PKG-INFO 2022-10-21 13:38:03.252287400 +0200
@@ -1,12 +1,11 @@
 Metadata-Version: 2.1
 Name: lesscpy
-Version: 0.15.0
+Version: 0.15.1
 Summary: Python LESS compiler
 Home-page: https://github.com/lesscpy/lesscpy
 Author: J??hann T Mar??usson
 Author-email: [email protected]
 License: MIT
-Platform: UNKNOWN
 Classifier: Development Status :: 5 - Production/Stable
 Classifier: Environment :: Console
 Classifier: Intended Audience :: End Users/Desktop
@@ -16,12 +15,12 @@
 Classifier: Operating System :: OS Independent
 Classifier: Programming Language :: Python
 Classifier: Programming Language :: Python :: 3
-Classifier: Programming Language :: Python :: 3.4
-Classifier: Programming Language :: Python :: 3.5
 Classifier: Programming Language :: Python :: 3.6
 Classifier: Programming Language :: Python :: 3.7
 Classifier: Programming Language :: Python :: 3.8
 Classifier: Programming Language :: Python :: 3.9
+Classifier: Programming Language :: Python :: 3.10
+Classifier: Programming Language :: Python :: 3.11
 Classifier: Programming Language :: Python :: Implementation :: CPython
 Classifier: Programming Language :: Python :: Implementation :: PyPy
 Classifier: Topic :: Software Development :: Code Generators
@@ -104,9 +103,8 @@
 Requirements
 ------------
 
-- Python 3.4 - 3.9,
+- Python 3.7 - 3.11,
 - ply (Python Lex-Yacc) (check requirements.txt)
-- six
 
 Installation
 ------------
@@ -185,7 +183,6 @@
 .. code-block:: python
 
     import lesscpy
-    from six import StringIO
 
     print(lesscpy.compile(StringIO(u"a { border-width: 2px * 3; }"), 
minify=True))
 
@@ -202,5 +199,3 @@
 
 
 .. _`Python Package Index`: https://pypi.python.org/pypi/lesscpy
-
-
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lesscpy-0.15.0/README.rst 
new/lesscpy-0.15.1/README.rst
--- old/lesscpy-0.15.0/README.rst       2021-07-15 08:36:54.000000000 +0200
+++ new/lesscpy-0.15.1/README.rst       2022-10-21 13:32:56.000000000 +0200
@@ -73,9 +73,8 @@
 Requirements
 ------------
 
-- Python 3.4 - 3.9,
+- Python 3.7 - 3.11,
 - ply (Python Lex-Yacc) (check requirements.txt)
-- six
 
 Installation
 ------------
@@ -154,7 +153,6 @@
 .. code-block:: python
 
     import lesscpy
-    from six import StringIO
 
     print(lesscpy.compile(StringIO(u"a { border-width: 2px * 3; }"), 
minify=True))
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lesscpy-0.15.0/lesscpy/__init__.py 
new/lesscpy-0.15.1/lesscpy/__init__.py
--- old/lesscpy-0.15.0/lesscpy/__init__.py      2021-07-15 08:45:16.000000000 
+0200
+++ new/lesscpy-0.15.1/lesscpy/__init__.py      2022-10-21 13:26:04.000000000 
+0200
@@ -1,4 +1,4 @@
-__version_info__ = ('0', '15', '0')
+__version_info__ = ('0', '15', '1')
 __version__ = '.'.join(__version_info__)
 
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lesscpy-0.15.0/lesscpy.egg-info/PKG-INFO 
new/lesscpy-0.15.1/lesscpy.egg-info/PKG-INFO
--- old/lesscpy-0.15.0/lesscpy.egg-info/PKG-INFO        2021-07-15 
08:55:00.000000000 +0200
+++ new/lesscpy-0.15.1/lesscpy.egg-info/PKG-INFO        2022-10-21 
13:38:03.000000000 +0200
@@ -1,12 +1,11 @@
 Metadata-Version: 2.1
 Name: lesscpy
-Version: 0.15.0
+Version: 0.15.1
 Summary: Python LESS compiler
 Home-page: https://github.com/lesscpy/lesscpy
 Author: J??hann T Mar??usson
 Author-email: [email protected]
 License: MIT
-Platform: UNKNOWN
 Classifier: Development Status :: 5 - Production/Stable
 Classifier: Environment :: Console
 Classifier: Intended Audience :: End Users/Desktop
@@ -16,12 +15,12 @@
 Classifier: Operating System :: OS Independent
 Classifier: Programming Language :: Python
 Classifier: Programming Language :: Python :: 3
-Classifier: Programming Language :: Python :: 3.4
-Classifier: Programming Language :: Python :: 3.5
 Classifier: Programming Language :: Python :: 3.6
 Classifier: Programming Language :: Python :: 3.7
 Classifier: Programming Language :: Python :: 3.8
 Classifier: Programming Language :: Python :: 3.9
+Classifier: Programming Language :: Python :: 3.10
+Classifier: Programming Language :: Python :: 3.11
 Classifier: Programming Language :: Python :: Implementation :: CPython
 Classifier: Programming Language :: Python :: Implementation :: PyPy
 Classifier: Topic :: Software Development :: Code Generators
@@ -104,9 +103,8 @@
 Requirements
 ------------
 
-- Python 3.4 - 3.9,
+- Python 3.7 - 3.11,
 - ply (Python Lex-Yacc) (check requirements.txt)
-- six
 
 Installation
 ------------
@@ -185,7 +183,6 @@
 .. code-block:: python
 
     import lesscpy
-    from six import StringIO
 
     print(lesscpy.compile(StringIO(u"a { border-width: 2px * 3; }"), 
minify=True))
 
@@ -202,5 +199,3 @@
 
 
 .. _`Python Package Index`: https://pypi.python.org/pypi/lesscpy
-
-
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lesscpy-0.15.0/lesscpy.egg-info/entry_points.txt 
new/lesscpy-0.15.1/lesscpy.egg-info/entry_points.txt
--- old/lesscpy-0.15.0/lesscpy.egg-info/entry_points.txt        2021-07-15 
08:55:00.000000000 +0200
+++ new/lesscpy-0.15.1/lesscpy.egg-info/entry_points.txt        2022-10-21 
13:38:03.000000000 +0200
@@ -1,3 +1,2 @@
 [console_scripts]
 lesscpy = lesscpy.scripts.compiler:run
-
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lesscpy-0.15.0/lesscpy.egg-info/requires.txt 
new/lesscpy-0.15.1/lesscpy.egg-info/requires.txt
--- old/lesscpy-0.15.0/lesscpy.egg-info/requires.txt    2021-07-15 
08:55:00.000000000 +0200
+++ new/lesscpy-0.15.1/lesscpy.egg-info/requires.txt    2022-10-21 
13:38:03.000000000 +0200
@@ -1,2 +1 @@
 ply
-six
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lesscpy-0.15.0/requirements.txt 
new/lesscpy-0.15.1/requirements.txt
--- old/lesscpy-0.15.0/requirements.txt 2019-10-08 20:40:38.000000000 +0200
+++ new/lesscpy-0.15.1/requirements.txt 2022-10-21 13:15:14.000000000 +0200
@@ -1,2 +1 @@
 ply
-six
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lesscpy-0.15.0/setup.py new/lesscpy-0.15.1/setup.py
--- old/lesscpy-0.15.0/setup.py 2021-07-15 08:41:17.000000000 +0200
+++ new/lesscpy-0.15.1/setup.py 2022-10-21 13:23:18.000000000 +0200
@@ -49,12 +49,12 @@
         'Operating System :: OS Independent',
         'Programming Language :: Python',
         'Programming Language :: Python :: 3',
-        'Programming Language :: Python :: 3.4',
-        'Programming Language :: Python :: 3.5',
         'Programming Language :: Python :: 3.6',
         'Programming Language :: Python :: 3.7',
         'Programming Language :: Python :: 3.8',
         'Programming Language :: Python :: 3.9',
+        'Programming Language :: Python :: 3.10',
+        'Programming Language :: Python :: 3.11',
         'Programming Language :: Python :: Implementation :: CPython',
         'Programming Language :: Python :: Implementation :: PyPy',
         'Topic :: Software Development :: Code Generators',
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lesscpy-0.15.0/test-requirements.txt 
new/lesscpy-0.15.1/test-requirements.txt
--- old/lesscpy-0.15.0/test-requirements.txt    2019-10-08 20:40:38.000000000 
+0200
+++ new/lesscpy-0.15.1/test-requirements.txt    2022-10-21 13:16:42.000000000 
+0200
@@ -2,3 +2,4 @@
 coverage
 flake8
 nose
+tox
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lesscpy-0.15.0/tox.ini new/lesscpy-0.15.1/tox.ini
--- old/lesscpy-0.15.0/tox.ini  2021-07-15 08:41:16.000000000 +0200
+++ new/lesscpy-0.15.1/tox.ini  2022-10-21 13:22:48.000000000 +0200
@@ -1,5 +1,5 @@
 [tox]
-envlist = py36,py37,py38,py39,pypy,pypy3
+envlist = py37,py38,py39,py3.10,py3.11,pypy3
 skip_missing_interpreters = True
 
 [testenv]

Reply via email to