Skip to content

Commit

Permalink
README, version classifier tweak for 1.7.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
ikreymer committed Jun 22, 2019
1 parent 833c001 commit 2c3f0c0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Background

This library provides a fast, standalone way to read and write `WARC
Format <https://en.wikipedia.org/wiki/Web_ARChive>`__ commonly used in
web archives. Supports Python 2.7+ and Python 3.3+ (using
web archives. Supports Python 2.7+ and Python 3.4+ (using
`six <https://pythonhosted.org/six/>`__, the only external dependency)

warcio supports reading and writing of WARC files compliant with both the `WARC 1.0 <http://bibnum.bnf.fr/WARC/WARC_ISO_28500_version1_latestdraft.pdf>`__
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from setuptools.command.test import test as TestCommand
import glob

__version__ = '1.7.0.dev0'
__version__ = '1.7.0'


class PyTest(TestCommand):
Expand Down Expand Up @@ -51,16 +51,16 @@ def run_tests(self):
'requests',
],
classifiers=[
'Development Status :: 4 - Beta',
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities',
]
Expand Down

0 comments on commit 2c3f0c0

Please sign in to comment.