parent
420d5aa624
commit
c446cc20f6
12
HISTORY.md
12
HISTORY.md
|
|
@ -4,6 +4,18 @@ Release History
|
|||
master
|
||||
------
|
||||
|
||||
0.8.0 (2020-05-24)
|
||||
------------------
|
||||
|
||||
**Improvements**
|
||||
|
||||
* Drop Python 2 support!
|
||||
* Remove Python 2.7 and 3.5 support.
|
||||
* Replace all instances of `.format` with f-strings.
|
||||
* Remove all `__future__` imports.
|
||||
* Fix HTTP 403 forbidden exception in read_pdf(url) and remove Python 2 urllib support.
|
||||
* Fix test data.
|
||||
|
||||
**Bugfixes**
|
||||
|
||||
* Fix library discovery on Windows. [#32](https://github.com/camelot-dev/camelot/pull/32) by [KOLANICH](https://github.com/KOLANICH).
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
|
||||
VERSION = (0, 7, 3)
|
||||
VERSION = (0, 8, 0)
|
||||
PRERELEASE = None # alpha, beta or rc
|
||||
REVISION = None
|
||||
|
||||
|
|
|
|||
1
setup.py
1
setup.py
|
|
@ -71,7 +71,6 @@ def setup_package():
|
|||
# Trove classifiers
|
||||
# Full list: https://pypi.python.org/pypi?%3Aaction=list_classifiers
|
||||
'License :: OSI Approved :: MIT License',
|
||||
'Programming Language :: Python :: 3.5',
|
||||
'Programming Language :: Python :: 3.6',
|
||||
'Programming Language :: Python :: 3.7',
|
||||
'Programming Language :: Python :: 3.8'
|
||||
|
|
|
|||
Loading…
Reference in New Issue