Skip to content

Commit

Permalink
Merge pull request #88 from cloudblue/LITE-24759
Browse files Browse the repository at this point in the history
LITE-24759 increasing minimum version of ujson
  • Loading branch information
d3rky authored Aug 18, 2022
2 parents 438679a + 383f436 commit 2165119
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ on:

jobs:
build_3_6_7_8_django_2_2:
name: Build on Python 3.6, 3.7, 3.8 and django 2.2
name: Build on Python 3.7, 3.8 and django 2.2
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6, 3.7, 3.8]
python-version: [3.7, 3.8]
steps:
- name: Checkout
uses: actions/checkout@v2
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -201,15 +201,15 @@ kubectl exec -i REPLICA_CONTAINER -- python manage.py cqrs_deleted_diff_replica
Development
===========

1. Python 3.6+
1. Python 3.7 +
0. Install dependencies `requirements/dev.txt`

Testing
=======

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

Expand Down
2 changes: 1 addition & 1 deletion requirements/dev.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Django>=2.2.19
pika>=1.0.0
kombu>=4.6.*
ujson>=3.0.0
ujson>=5.4.0
django-model-utils>=4.0.0
python-dateutil>=2.4
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def read_file(name):
long_description_content_type='text/markdown',
license='Apache License, Version 2.0',

python_requires='>=3.6',
python_requires='>=3.7',
zip_safe=True,
packages=find_packages(),
include_package_data=True,
Expand All @@ -38,7 +38,6 @@ def read_file(name):
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: Unix',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
Expand Down

0 comments on commit 2165119

Please sign in to comment.