File tree Expand file tree Collapse file tree 3 files changed +10
-2
lines changed Expand file tree Collapse file tree 3 files changed +10
-2
lines changed Original file line number Diff line number Diff line change 3
3
Changelog
4
4
=========
5
5
6
+ 8.0.0 (2022-XX-XX)
7
+ ------------------
8
+
9
+ * Dropped support for EOL Python 2.7 and 3.5 (`#1606 `_, , contributed by `@hugovk `_)
10
+
11
+ .. _@hugovk : https://github.com/hugovk
12
+ .. _#1606 : https://github.com/elastic/elasticsearch-dsl-py/pull/1606
13
+
6
14
7.4.0 (2021-07-15)
7
15
------------------
8
16
Original file line number Diff line number Diff line change 84
84
from .utils import AttrDict , AttrList , DslBase
85
85
from .wrappers import Range
86
86
87
- VERSION = (7 , 2 , 0 )
87
+ VERSION = (8 , 0 , 0 )
88
88
__version__ = VERSION
89
89
__versionstr__ = "." .join (map (str , VERSION ))
90
90
__all__ = [
Original file line number Diff line number Diff line change 19
19
20
20
from setuptools import find_packages , setup
21
21
22
- VERSION = (7 , 2 , 0 )
22
+ VERSION = (8 , 0 , 0 )
23
23
__version__ = VERSION
24
24
__versionstr__ = "." .join (map (str , VERSION ))
25
25
You can’t perform that action at this time.
0 commit comments