File tree Expand file tree Collapse file tree 3 files changed +10
-8
lines changed
Expand file tree Collapse file tree 3 files changed +10
-8
lines changed Original file line number Diff line number Diff line change 1414 runs-on : ${{ matrix.os }}
1515 strategy :
1616 matrix :
17- python-version : ['3.10']
17+ python-version : ['3.10','3.11' ]
1818 os : [ubuntu-latest]
1919
2020 steps :
Original file line number Diff line number Diff line change 1- FROM python:3.10 AS builder
1+ FROM python:3.11 AS builder
22
33ENV PIP_ROOT_USER_ACTION=ignore
44
@@ -11,7 +11,7 @@ COPY elastic_datashader /build/elastic_datashader
1111WORKDIR /build/elastic_datashader
1212RUN poetry build
1313
14- FROM python:3.10 AS deployment
14+ FROM python:3.11 AS deployment
1515LABEL maintainer="foss@spectric.com"
1616RUN useradd -d /home/datashader datashader && \
1717 mkdir -p /home/datashader /opt/elastic_datashader/tms-cache && \
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ elastic_datashader = "elastic_datashader.cli:main"
2323python = " >=3.10,<4"
2424elasticsearch = " 7.17.4"
2525elasticsearch-dsl = " 7.4.0"
26- datashader = " 0.14.2 "
26+ datashader = " 0.15.0 "
2727pandas = " ^1.5.3"
2828colorcet = " ^3.0.1"
2929mercantile = " 1.2.1"
@@ -32,13 +32,14 @@ Pillow = "*"
3232pynumeral = " *"
3333arrow = " *"
3434python-datemath = " *"
35- numba = " 0.56.4 "
35+ numba = " 0.57.0 "
3636numpy = " ^1.23"
3737PyYAML = " *"
3838humanize = " *"
3939uvicorn = {extras = [" standard" ], version = " ^0.18.2" , optional = true }
40- fastapi = " ^0.86"
41- georgio = " 2023.119.77"
40+ fastapi = " ^0.96"
41+ georgio = " 2023.156.924"
42+ jinja2 = " 3.1.2"
4243
4344[tool .poetry .dev-dependencies ]
4445pytest = " *"
@@ -64,13 +65,14 @@ line-length = 150
6465[tool .tox ]
6566legacy_tox_ini = """
6667[tox]
67- envlist = py310
68+ envlist = py311
6869isolated_build = true
6970recreate = true
7071
7172[gh-actions]
7273python =
7374 3.10: py310
75+ 3.11: py311
7476
7577[testenv]
7678setenv =
You can’t perform that action at this time.
0 commit comments