diff --git a/.github/workflows/test_install.yml b/.github/workflows/test_install.yml new file mode 100644 index 00000000..5ba83d83 --- /dev/null +++ b/.github/workflows/test_install.yml @@ -0,0 +1,17 @@ +name: Check pip install package with multiple version of python +on: [push, pull_request] + +jobs: + check-requirements-install: + strategy: + matrix: + python-version: [ "3.9", "3.12" ] + + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-python@v5 + with: + python-version: ${{ matrix.python-version }} + cache: 'pip' + - run: pip install -r requirements.txt diff --git a/docs/changelog.rst b/docs/changelog.rst index 3723a076..18583d8b 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -5,10 +5,15 @@ CHANGELOG [Unreleased] ------------------ +🚀 **Nouveautés** + +- Mise à jour de la dependance `greenlet` afin de pouvoir installer l'atlas sur une version de debian 12 (@juggler31) + 🐛 **Corrections** - Correction de la carte avec affichage par mailles de la fiche "Commune" (#533 par @jpm-cbna) - Correction et amélioration de l'affichage de la fenêtre listant les sous-taxons aggrégés (#558 par @jpm-cbna) +- Correction du script install_db.sh afin d'installer l'atlas sans geonature. (@juggler31) 🐛 **Optimisations**