-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improve requirements handling (rq#1287)
* setup: read requirements.txt for dependencies This makes it easier to keep required packages in sync. Signed-off-by: Paul Spooren <[email protected]> * requirements: Update to click 5.0 and redis 3.5.0 Click 5.0 was already required by the `setup.py` and is not brought in sync. Redis Python library 3.5.0 introduces the `HSET` command with mapping support which replaces the previous `hmset`. By lifting the minimal required version to 3.5.0 we can remove the combat function if Redis server 4.0 is guaranteed. Signed-off-by: Paul Spooren <[email protected]> * ci: remove Python3.4 testing `redis-py` 3.5.0 does no longer support Python 3.4, so drop it in CI. Signed-off-by: Paul Spooren <[email protected]>
- Loading branch information
Showing
3 changed files
with
12 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,6 @@ services: | |
- redis | ||
matrix: | ||
include: | ||
- python: "3.4" | ||
- python: "3.5" | ||
- python: "3.6" | ||
- python: "3.7" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
redis>=3.0 | ||
click>=3.0.0 | ||
redis>=3.5.0 | ||
click>=5.0.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters