Skip to content

Commit

Permalink
docs: Update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
jpmckinney committed Jan 3, 2023
1 parent 4d5267e commit a1e2aaf
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.rst
@@ -1,3 +1,8 @@
1.7.0 - Jan 3, 2023
-------------------

- Drop support for Python 2.7 (no longer works) and 3.6 (no longer tested).

1.6.3 - July 15, 2021
---------------------

Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Expand Up @@ -17,7 +17,7 @@
autodoc_default_flags = ['members', 'show-inheritance']

intersphinx_mapping = {
'python': ('http://docs.python.org/3.5', None),
'python': ('http://docs.python.org/3.11', None),
'leather': ('http://leather.readthedocs.io/en/latest/', None)
}

Expand All @@ -28,7 +28,7 @@
# Metadata
project = 'agate'
copyright = '2017, Christopher Groskopf'
version = '1.6.3'
version = '1.7.0'
release = version

exclude_patterns = ['_build']
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Expand Up @@ -5,7 +5,7 @@

setup(
name='agate',
version='1.6.3',
version='1.7.0',
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 All @@ -25,11 +25,11 @@
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'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 :: Scientific/Engineering :: Information Analysis',
Expand Down

0 comments on commit a1e2aaf

Please sign in to comment.