From c665796c52a12206eb2cec5f51c9c1d3780173c9 Mon Sep 17 00:00:00 2001 From: Sarah Hoffmann Date: Wed, 14 Dec 2022 16:14:23 +0100 Subject: [PATCH] drop support for Python 3.6 --- .github/workflows/ci-tests.yml | 2 +- CMakeLists.txt | 2 +- docs/admin/Installation.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci-tests.yml b/.github/workflows/ci-tests.yml index 9b51a90b..7414cc77 100644 --- a/.github/workflows/ci-tests.yml +++ b/.github/workflows/ci-tests.yml @@ -71,7 +71,7 @@ jobs: - uses: actions/setup-python@v4 with: - python-version: 3.6 + python-version: 3.7 if: matrix.ubuntu == 18 - uses: ./Nominatim/.github/actions/setup-postgresql diff --git a/CMakeLists.txt b/CMakeLists.txt index f151b312..8200e757 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -73,7 +73,7 @@ endif() #----------------------------------------------------------------------------- if (BUILD_IMPORTER) - find_package(PythonInterp 3.6 REQUIRED) + find_package(PythonInterp 3.7 REQUIRED) endif() #----------------------------------------------------------------------------- diff --git a/docs/admin/Installation.md b/docs/admin/Installation.md index 36b8eeca..f3e656d8 100644 --- a/docs/admin/Installation.md +++ b/docs/admin/Installation.md @@ -44,7 +44,7 @@ For running Nominatim: * [PostgreSQL](https://www.postgresql.org) (9.6+ will work, 11+ strongly recommended) * [PostGIS](https://postgis.net) (2.2+ will work, 3.0+ strongly recommended) - * [Python 3](https://www.python.org/) (3.6+) + * [Python 3](https://www.python.org/) (3.7+) * [Psycopg2](https://www.psycopg.org) (2.7+) * [Python Dotenv](https://github.com/theskumar/python-dotenv) * [psutil](https://github.com/giampaolo/psutil) -- 2.45.1