Increase minimum Python version to 3.8

This commit is contained in:
Christopher C. Wells 2023-07-09 09:32:43 -07:00
parent 73e1f18e78
commit 45263d24f7
3 changed files with 3 additions and 3 deletions

View File

@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy: strategy:
matrix: matrix:
python-version: [ '3.7', '3.8', '3.9', '3.10', '3.11' ] python-version: [ '3.8', '3.9', '3.10', '3.11' ]
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- uses: ./.github/actions/setup - uses: ./.github/actions/setup

View File

@ -7,7 +7,7 @@ information and steps below to set up a local development environment for Baby B
## Requirements ## Requirements
- Python 3.7+, pip, pipenv - Python 3.8+, pip, pipenv
- NodeJS 18.x and NPM 8.x (NVM recommended) - NodeJS 18.x and NPM 8.x (NVM recommended)
- Gulp - Gulp
- Possibly `libpq-dev` - Possibly `libpq-dev`

View File

@ -87,7 +87,7 @@ requirements are Python, a web server, an application server, and a database.
### Requirements ### Requirements
- Python 3.7+, pip, pipenv - Python 3.8+, pip, pipenv
- Web server ([nginx](http://nginx.org/), [Apache](http://httpd.apache.org/), etc.) - Web server ([nginx](http://nginx.org/), [Apache](http://httpd.apache.org/), etc.)
- Application server ([uwsgi](http://projects.unbit.it/uwsgi), [gunicorn](http://gunicorn.org/), etc.) - Application server ([uwsgi](http://projects.unbit.it/uwsgi), [gunicorn](http://gunicorn.org/), etc.)
- Database (See [Django's databases documentation](https://docs.djangoproject.com/en/4.2/ref/databases/)). - Database (See [Django's databases documentation](https://docs.djangoproject.com/en/4.2/ref/databases/)).