deps: adaptations for Django 5.x

This commit is contained in:
David Larlet 2024-01-29 13:36:05 -05:00
parent 4de8b2ec96
commit a159914c53
No known key found for this signature in database
GPG key ID: 3E2953A359E7E7BD
4 changed files with 58 additions and 61 deletions

View file

@ -2,9 +2,9 @@ name: Test & Docs
on:
push:
branches: [ master ]
branches: [master]
pull_request:
branches: [ master ]
branches: [master]
jobs:
tests:
@ -24,57 +24,57 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.12"]
python-version: ['3.10', '3.12']
database: [postgresql]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
cache-dependency-path: '**/pyproject.toml'
- name: Install dependencies
run: |
sudo apt update
sudo apt install libgdal-dev
python -m pip install --upgrade pip
make develop installjs vendors
- name: run tests
run: make test
env:
DJANGO_SETTINGS_MODULE: 'umap.tests.settings'
UMAP_SETTINGS: 'umap/tests/settings.py'
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
cache-dependency-path: '**/pyproject.toml'
- name: Install dependencies
run: |
sudo apt update
sudo apt install libgdal-dev
python -m pip install --upgrade pip
make develop installjs vendors
- name: run tests
run: make test
env:
DJANGO_SETTINGS_MODULE: 'umap.tests.settings'
UMAP_SETTINGS: 'umap/tests/settings.py'
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Install dependencies
run: |
python3 -m pip install -e .[test,dev]
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install dependencies
run: |
python3 -m pip install -e .[test,dev]
- name: Run Lint
run: make lint
- name: Run Docs
run: make docs
- name: Run Lint
run: make lint
- name: Run Docs
run: make docs
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Install dependencies
run: |
python3 -m pip install -r docs/requirements.txt
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install dependencies
run: |
python3 -m pip install -r docs/requirements.txt
- name: Run Docs
run: mkdocs build
- name: Run Docs
run: mkdocs build

View file

@ -2,31 +2,30 @@ os: linux
language: python
dist: focal
python:
- "3.6"
- "3.7"
- "3.8"
- "3.9"
- '3.10'
- '3.11'
- '3.12'
services:
- postgresql
addons:
apt:
packages:
- libgdal-dev
- postgresql-12-postgis-3
- libgdal-dev
- postgresql-12-postgis-3
env:
global:
- PGPORT=5432
- UMAP_SETTINGS=umap/tests/settings.py
- PGPORT=5432
- UMAP_SETTINGS=umap/tests/settings.py
install:
- make develop
- make develop
script: make test
notifications:
irc:
channels:
- "irc.libera.chat#umap"
- 'irc.libera.chat#umap'
on_success: change
on_failure: always
email: false
branches:
only:
- master
- master

View file

@ -16,14 +16,14 @@ develop: ## Install the test and dev dependencies
format: ## Format the code and templates files
djlint umap/templates --reformat &&\
isort --profile black . &&\
ruff format --target-version=py38 .
ruff format --target-version=py310 .
.PHONY: lint
lint: ## Lint the code and template files
djlint umap/templates --lint &&\
isort --check --profile black umap/ &&\
ruff format --check --target-version=py38 umap/ &&\
vermin --no-tips --violations -t=3.8- umap/
ruff format --check --target-version=py310 umap/ &&\
vermin --no-tips --violations -t=3.10- umap/
docs: ## Compile the docs
mkdocs build

View file

@ -15,7 +15,7 @@ maintainers = [
]
homepage = "https://github.com/umap-project/umap"
keywords = ["django", "leaflet", "geodjango", "openstreetmap", "map"]
requires-python = ">=3.8"
requires-python = ">=3.10"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
@ -23,8 +23,6 @@ classifiers = [
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"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",