Skip to content

Commit

Permalink
Merge pull request #172 from Souleymane-T/fix/add-deleted-uids-for-users
Browse files Browse the repository at this point in the history
Remove python 3.6 support
  • Loading branch information
lcognat authored Dec 8, 2023
2 parents 4dd7d35 + 263303d commit 257a1ed
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 43 deletions.
40 changes: 1 addition & 39 deletions .github/workflows/check-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,45 +33,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
sudo apt-get install binutils libproj-dev gdal-bin
pip install -e ".[tests]"
- name: Test with pytest
run: |
pytest --ds=tests.unittest_settings --pyargs -q tests --cov --cov-report html --cov-report term
- name: Tests coverage with CodeCov
run: |
codecov
tests-python36:
runs-on: ubuntu-20.04
strategy:
max-parallel: 2
matrix:
python-version: [3.6]
services:
postgres:
image: postgis/postgis:14-master
env:
POSTGRES_DB: db-concrete-datastore
POSTGRES_USER: user-concrete-datastore
POSTGRES_PASSWORD: pwd-concrete-datastore
POSTGRES_HOST: localhost
POSTGRES_PORT: 5432
ports:
- 5432:5432
steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Run SMTPD server
run: |
python -m pip install --upgrade pip
python -m smtpd -n -c DebuggingServer localhost:1025 &
- name: Install dependencies
run: |
python -m pip install --upgrade pip
sudo apt-get update
sudo apt-get install binutils libproj-dev gdal-bin
pip install -e ".[tests]"
- name: Test with pytest
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

### Removed

- nothing removed
- Python 3.6 support

## [1.58.0] - 2023-12-08

Expand Down
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/Netsach/concrete-datastore/check-tests.yml?branch=master&label=tests)
![Codecov](https://img.shields.io/codecov/c/github/Netsach/concrete-datastore?logo=codecov)
![Code Style](https://img.shields.io/badge/code%20style-black-000000.svg)
![Python](https://img.shields.io/badge/python-3.6-3473A7?logo=python&logoColor=FED646)
![Python](https://img.shields.io/badge/python-3.7-3473A7?logo=python&logoColor=FED646)
![Python](https://img.shields.io/badge/python-3.8-3473A7?logo=python&logoColor=FED646)
![Python](https://img.shields.io/badge/python-3.9-3473A7?logo=python&logoColor=FED646)
Expand Down Expand Up @@ -76,4 +75,4 @@ Voir la [documentation officielle](http://concrete-datastore.netsach.org/)

## Version Anglaise

Vous pouvez retrouver la version Anglaise [ici](README-en.md)
Vous pouvez retrouver la version Anglaise [ici](README-en.md)
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ project_urls =
Source Code = https://github.com/Netsach/concrete-datastore/
Tests Coverage = https://codecov.io/gh/Netsach/concrete-datastore
classifiers =
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9

[options]
packages = find:
Expand Down

0 comments on commit 257a1ed

Please sign in to comment.