Skip to content

Commit

Permalink
Merge pull request #45 from groveco/support-redis-versions
Browse files Browse the repository at this point in the history
Update setup.py
  • Loading branch information
noazark authored Oct 11, 2024
2 parents 9a90da9 + 9111314 commit c89512b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install pip==24.0
pip install flake8
- name: Lint with flake8
# TODO: fix linting issues and remove --exit-zero flag
Expand All @@ -29,11 +29,11 @@ jobs:
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Install requirements
run: |
pip install -r requirements.txt
pip install -r requirements.txt
- name: Install package
# TODO: update to latest packaging conventions
# TODO: update to latest packaging conventions
run: |
pip install -e .
- name: Run tests
run: |
python manage.py test --settings=segments.tests.settings
python manage.py test --settings=segments.tests.settings
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def read(fname):
classifiers=[
"Topic :: Utilities",
],
install_requires=["Django>=2.2.28", "redis==4.3.4"],
install_requires=["Django>=2.2.28", "redis>=4.3.4"],
include_package_data=True,
zip_safe=False,
)

0 comments on commit c89512b

Please sign in to comment.