Skip to content

Commit

Permalink
Merge pull request #134 from cloudblue/LITE-27692-deprecate-python-3.7
Browse files Browse the repository at this point in the history
LITE-27692: deprecate python 3.7
  • Loading branch information
maxipavlovic authored May 31, 2023
2 parents b089b53 + 81eef15 commit c6d9146
Show file tree
Hide file tree
Showing 7 changed files with 322 additions and 398 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
python-version: ['3.8', '3.9', '3.10', '3.11']
steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ kubectl exec -i REPLICA_CONTAINER -- python manage.py cqrs_deleted_diff_replica
Development
===========

1. Python >= 3.7
1. Python >= 3.8
2. Install dependencies `requirements/dev.txt`
3. We use `isort` library to order and format our imports, and we check it using `flake8-isort` library (automatically on `flake8` run).
For convenience you may run `isort .` to order imports.
Expand All @@ -221,7 +221,7 @@ Testing

Unit testing
------
1. Python >= 3.7
1. Python >= 3.8
2. Install dependencies `requirements/test.txt`
3. `export PYTHONPATH=/your/path/to/django-cqrs/`

Expand Down
2 changes: 1 addition & 1 deletion docs/getting_started.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Getting started

# Requirements

**django-cqrs** works with Python 3.7 or later and has the
**django-cqrs** works with Python 3.8 or later and has the
following dependencies:

> - Django \>= 3.2
Expand Down
Loading

0 comments on commit c6d9146

Please sign in to comment.