Skip to content

Commit 34f6bd2

Browse files
Pavel Perestoronineigenein
authored andcommitted
OPT: bump elasticsearch ⬆️
1 parent a204ccc commit 34f6bd2

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
strategy:
1616
matrix:
17-
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
17+
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
1818
steps:
1919
- uses: actions/checkout@v2
2020
- name: Set up Python ${{ matrix.python-version }}

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.black]
22
line-length = 120
3-
target_version = ["py38", "py39", "py310", "py311", "py312"]
3+
target_version = ["py39", "py310", "py311", "py312", "py313"]
44

55
[tool.isort]
66
combine_as_imports = true

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424
"typing-extensions>=4.5.0,<5.0.0",
2525
],
2626
extras_require={
27-
"all": ["elasticsearch>=8.0.0,<9.0.0"],
28-
"elasticsearch": ["elasticsearch>=8.0.0,<9.0.0"],
27+
"all": ["elasticsearch>=8.0.0,<10.0.0"],
28+
"elasticsearch": ["elasticsearch>=8.0.0,<10.0.0"],
2929
},
3030
packages=find_packages(exclude=["tests*"]),
3131
tests_require=["tox"],
@@ -39,11 +39,11 @@
3939
"License :: OSI Approved :: Apache Software License",
4040
"Programming Language :: Python",
4141
"Programming Language :: Python :: 3",
42-
"Programming Language :: Python :: 3.8",
4342
"Programming Language :: Python :: 3.9",
4443
"Programming Language :: Python :: 3.10",
4544
"Programming Language :: Python :: 3.11",
4645
"Programming Language :: Python :: 3.12",
46+
"Programming Language :: Python :: 3.13",
4747
"Topic :: Internet :: WWW/HTTP",
4848
"Topic :: Software Development :: Libraries :: Python Modules",
4949
],

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
addopts = --tb=short
33

44
[tox]
5-
envlist = py38,py39,py310,py311,py312
5+
envlist = py39,py310,py311,py312,py313
66
skipsdist = true
77

88
[testenv]
@@ -18,7 +18,7 @@ docker =
1818
elasticsearch
1919

2020
[docker:elasticsearch]
21-
image = elasticsearch:8.3.3
21+
image = elasticsearch:9.1.0
2222
environment=
2323
discovery.type=single-node
2424
xpack.security.http.ssl.enabled=false

0 commit comments

Comments
 (0)