Skip to content

Commit

Permalink
build: Iterate the version number
Browse files Browse the repository at this point in the history
  • Loading branch information
jpmckinney committed Jul 15, 2021
1 parent 9f3808b commit dc0684a
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 7 deletions.
8 changes: 4 additions & 4 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
1.6.3 - July 14, 2021
1.6.3 - July 15, 2021
---------------------

* feat: :meth:`.Table.from_csv` accepts a ``row_limit`` keyword argument. (#740)
* feat: :meth:`.Table.from_json` accepts an ``encoding`` keyword argument. (#734)
* feat: :meth:`.Table.print_html` accepts a ``max_precision`` keyword argument. (#753)
* feat: :class:`.TypeTester` accepts a ``null_values`` keyword argument. (#745)
* feat: :meth:`.Table.print_html` accepts a ``max_precision`` keyword argument, like :meth:`.Table.print_table`. (#753)
* feat: :class:`.TypeTester` accepts a ``null_values`` keyword argument, like individual data types. (#745)
* feat: :class:`.Min`, :class:`.Max` and :class:`.Sum` (#735) work with :class:`.TimeDelta`.
* feat: :class:`.FieldSizeLimitError` includes the line number in the error message. (#681)
* feat: :class:`.csv.Sniffer` warns on error while sniffing CSV dialect.
* fix: :meth:`.Table.normalize` works with basic processing methods. (#691)
* fix: :meth:`.Table.homogenize` casts ``compare_values`` and ``default_row``. (#700)
* fix: :meth:`.Table.homogenize` works with basic processing methods. (#756)
* fix: :meth:`.Table.homogenize` casts ``compare_values`` and ``default_row``. (#700)
* fix: :meth:`.Table.homogenize` accepts tuples. (#710)
* fix: :meth:`.TableSet.group_by` accepts input with no rows. (#703)
* fix: :class:`.TypeTester` warns if a column specified by the ``force`` argument is not in the table, instead of raising an error. (#747)
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
# Metadata
project = u'agate'
copyright = u'2017, Christopher Groskopf'
version = '1.6.2'
version = '1.6.3'
release = version

exclude_patterns = ['_build']
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(
name='agate',
version='1.6.2',
version='1.6.3',
description='A data analysis library that is optimized for humans instead of machines.',
long_description=long_description,
long_description_content_type='text/x-rst',
Expand Down
4 changes: 3 additions & 1 deletion tests/test_py3.py
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,9 @@ class TestSniffer(unittest.TestCase):
def test_sniffer(self):
with open('examples/test.csv', encoding='utf-8') as f:
contents = f.read()
# Inexplicably, `direct` succeeds but `actual` succeeds. Observed on Python 3.6 and 3.8.
# Failure observed on Python 3.6 and 3.8. The left-hand side in these cases is an empty dictionary.
# 3.6 https://github.com/wireservice/agate/runs/3078380985
# 3.8 https://github.com/wireservice/agate/runs/3078633299
direct = csv.Sniffer().sniff(contents, csv_py3.POSSIBLE_DELIMITERS).__dict__
actual = csv_py3.Sniffer().sniff(contents).__dict__
expected = csv.Sniffer().sniff(contents).__dict__
Expand Down

0 comments on commit dc0684a

Please sign in to comment.