Skip to content

Commit d607b7f

Browse files
[7.4.1.dev2] Update install_requires -> elasticsearch7
1 parent e1cd0bd commit d607b7f

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

Changelog.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ Changelog
88
Rover fork for Python 3.11 support
99
https://roverdotcom.atlassian.net/browse/DEV-96564
1010
https://github.com/roverdotcom/web/pull/71333
11+
* Update source dir elasticsearch_dsl -> elasticsearch7_dsl for build purposes
1112
* Update setup.py to require Python 3.11
1213

1314

noxfile.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"setup.py",
2222
"noxfile.py",
2323
"docs/",
24-
"elasticsearch_dsl/",
24+
"elasticsearch7_dsl/",
2525
"examples/",
2626
"tests/",
2727
"utils/",
@@ -37,7 +37,7 @@ def test(session):
3737
else:
3838
argv = (
3939
"-vvv",
40-
"--cov=elasticsearch_dsl",
40+
"--cov=elasticsearch7_dsl",
4141
"--cov=tests.test_integration.test_examples",
4242
"tests/",
4343
)

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
from setuptools import find_packages, setup
2222

23-
VERSION = (7, 4, 1, "dev1")
23+
VERSION = (7, 4, 1, "dev2")
2424
__version__ = VERSION
2525
__versionstr__ = ".".join(map(str, VERSION))
2626

@@ -31,7 +31,7 @@
3131
install_requires = [
3232
"six",
3333
"python-dateutil",
34-
"elasticsearch>=7.0.0,<8.0.0",
34+
"elasticsearch7>=7.0.0,<8.0.0",
3535
# ipaddress is included in stdlib since python 3.3
3636
'ipaddress; python_version<"3.3"',
3737
]

0 commit comments

Comments
 (0)