Skip to content

Commit c6d9146

Browse files
authored
Merge pull request #134 from cloudblue/LITE-27692-deprecate-python-3.7
LITE-27692: deprecate python 3.7
2 parents b089b53 + 81eef15 commit c6d9146

File tree

7 files changed

+322
-398
lines changed

7 files changed

+322
-398
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
strategy:
1717
matrix:
18-
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
18+
python-version: ['3.8', '3.9', '3.10', '3.11']
1919
steps:
2020
- name: Checkout
2121
uses: actions/checkout@v3

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ kubectl exec -i REPLICA_CONTAINER -- python manage.py cqrs_deleted_diff_replica
210210
Development
211211
===========
212212

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

222222
Unit testing
223223
------
224-
1. Python >= 3.7
224+
1. Python >= 3.8
225225
2. Install dependencies `requirements/test.txt`
226226
3. `export PYTHONPATH=/your/path/to/django-cqrs/`
227227

docs/getting_started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Getting started
99

1010
# Requirements
1111

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

1515
> - Django \>= 3.2

0 commit comments

Comments
 (0)