Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.black]
line-length = 120
target_version = ["py38", "py39", "py310", "py311", "py312"]
target_version = ["py39", "py310", "py311", "py312", "py313"]

[tool.isort]
combine_as_imports = true
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
"typing-extensions>=4.5.0,<5.0.0",
],
extras_require={
"all": ["elasticsearch>=8.0.0,<9.0.0"],
"elasticsearch": ["elasticsearch>=8.0.0,<9.0.0"],
"all": ["elasticsearch>=8.0.0,<10.0.0"],
"elasticsearch": ["elasticsearch>=8.0.0,<10.0.0"],
},
packages=find_packages(exclude=["tests*"]),
tests_require=["tox"],
Expand All @@ -39,11 +39,11 @@
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries :: Python Modules",
],
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
addopts = --tb=short

[tox]
envlist = py38,py39,py310,py311,py312
envlist = py39,py310,py311,py312,py313
skipsdist = true

[testenv]
Expand All @@ -18,7 +18,7 @@ docker =
elasticsearch

[docker:elasticsearch]
image = elasticsearch:8.3.3
image = elasticsearch:9.1.0
environment=
discovery.type=single-node
xpack.security.http.ssl.enabled=false
Expand Down