Hello community,
here is the log from the commit of package python-agate-dbf for
openSUSE:Factory checked in at 2020-11-10 15:08:56
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-agate-dbf (Old)
and /work/SRC/openSUSE:Factory/.python-agate-dbf.new.11331 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-agate-dbf"
Tue Nov 10 15:08:56 2020 rev:4 rq:847491 version:0.2.2
Changes:
--------
--- /work/SRC/openSUSE:Factory/python-agate-dbf/python-agate-dbf.changes
2020-04-16 23:07:10.759884487 +0200
+++
/work/SRC/openSUSE:Factory/.python-agate-dbf.new.11331/python-agate-dbf.changes
2020-11-10 15:09:04.633474187 +0100
@@ -1,0 +2,6 @@
+Tue Nov 10 12:49:23 UTC 2020 - Marketa Machova <[email protected]>
+
+- Update to 0.2.2
+ * No longer lowercase column names.
+
+-------------------------------------------------------------------
@@ -25,0 +32 @@
+
Old:
----
0.2.1.tar.gz
New:
----
0.2.2.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-agate-dbf.spec ++++++
--- /var/tmp/diff_new_pack.YVmF2m/_old 2020-11-10 15:09:05.165473086 +0100
+++ /var/tmp/diff_new_pack.YVmF2m/_new 2020-11-10 15:09:05.165473086 +0100
@@ -18,7 +18,7 @@
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-agate-dbf
-Version: 0.2.1
+Version: 0.2.2
Release: 0
Summary: Read support for dbf files for agate
License: MIT
++++++ 0.2.1.tar.gz -> 0.2.2.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/agate-dbf-0.2.1/CHANGELOG.rst
new/agate-dbf-0.2.2/CHANGELOG.rst
--- old/agate-dbf-0.2.1/CHANGELOG.rst 2019-03-16 17:18:51.000000000 +0100
+++ new/agate-dbf-0.2.2/CHANGELOG.rst 2020-07-07 19:34:14.000000000 +0200
@@ -1,3 +1,8 @@
+0.2.2 - July 7, 2020
+--------------------
+
+* No longer lowercase column names.
+
0.2.1 - March 16, 2019
----------------------
@@ -8,7 +13,7 @@
-------------------------
* Remove dependency on monkeypatching.
-* Upgraded required agate to ``1.5.0``.
+* Upgrade required agate to ``1.5.0``.
0.1.0 - February 5, 2016
------------------------
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/agate-dbf-0.2.1/agatedbf/table.py
new/agate-dbf-0.2.2/agatedbf/table.py
--- old/agate-dbf-0.2.1/agatedbf/table.py 2019-03-16 17:18:51.000000000
+0100
+++ new/agate-dbf-0.2.2/agatedbf/table.py 2020-07-07 19:34:14.000000000
+0200
@@ -18,7 +18,7 @@
Path to an DBF file to load. Note that due to limitations of the
dependency you can not pass a file handle. It must be a path.
"""
- dbf = DBF(path, load=True, lowernames=True, encoding=encoding,
recfactory=recfactory)
+ dbf = DBF(path, load=True, encoding=encoding, recfactory=recfactory)
table = agate.Table(dbf.records, column_names=dbf.field_names)
return table
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/agate-dbf-0.2.1/docs/conf.py
new/agate-dbf-0.2.2/docs/conf.py
--- old/agate-dbf-0.2.1/docs/conf.py 2019-03-16 17:18:51.000000000 +0100
+++ new/agate-dbf-0.2.2/docs/conf.py 2020-07-07 19:34:14.000000000 +0200
@@ -52,9 +52,9 @@
# built documents.
#
# The short X.Y version.
-version = '0.2.1'
+version = '0.2.2'
# The full version, including alpha/beta/rc tags.
-release = '0.2.1'
+release = '0.2.2'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/agate-dbf-0.2.1/examples/testdbf_converted.csv
new/agate-dbf-0.2.2/examples/testdbf_converted.csv
--- old/agate-dbf-0.2.1/examples/testdbf_converted.csv 2019-03-16
17:18:51.000000000 +0100
+++ new/agate-dbf-0.2.2/examples/testdbf_converted.csv 2020-07-07
19:34:14.000000000 +0200
@@ -1,4 +1,4 @@
-statefp10,cd111fp,geoid10,namelsad10,lsad10,cdsessn,mtfcc10,funcstat10,aland10,awater10,intptlat10,intptlon10
+STATEFP10,CD111FP,GEOID10,NAMELSAD10,LSAD10,CDSESSN,MTFCC10,FUNCSTAT10,ALAND10,AWATER10,INTPTLAT10,INTPTLON10
27,8,2708,Congressional District
8,C2,111,G5200,False,71546663636,12416573076,47.2400052,-92.9323194
27,5,2705,Congressional District
5,C2,111,G5200,False,320220379,15485125,44.9781144,-93.2928317
27,4,2704,Congressional District
4,C2,111,G5200,False,510623511,58464019,44.9957711,-93.0835230
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/agate-dbf-0.2.1/setup.py new/agate-dbf-0.2.2/setup.py
--- old/agate-dbf-0.2.1/setup.py 2019-03-16 17:18:51.000000000 +0100
+++ new/agate-dbf-0.2.2/setup.py 2020-07-07 19:34:14.000000000 +0200
@@ -9,7 +9,7 @@
setup(
name='agate-dbf',
- version='0.2.1',
+ version='0.2.2',
description='agate-dbf adds read support for dbf files to agate.',
long_description=open('README.rst').read(),
author='Christopher Groskopf',