Skip to content

Commit 9d036ce

Browse files
committed
resolve merge conflict
2 parents 1a0b863 + da9d903 commit 9d036ce

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

62 files changed

+5270
-2484
lines changed

.github/workflows/integration.yaml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ on:
1313
branches:
1414
- master
1515
- '[0-9].[0-9]'
16+
schedule:
17+
- cron: '0 1 * * *' # nightly build
1618

1719
jobs:
1820

@@ -22,7 +24,7 @@ jobs:
2224
steps:
2325
- uses: actions/checkout@v2
2426
- name: install python
25-
uses: actions/setup-python@v3
27+
uses: actions/setup-python@v4
2628
with:
2729
python-version: 3.9
2830
cache: 'pip'
@@ -37,7 +39,7 @@ jobs:
3739
strategy:
3840
max-parallel: 15
3941
matrix:
40-
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10', 'pypy-3.7']
42+
python-version: ['3.7', '3.8', '3.9', '3.10', 'pypy-3.7', 'pypy-3.8']
4143
test-type: ['standalone', 'cluster']
4244
connection-type: ['hiredis', 'plain']
4345
env:
@@ -46,7 +48,7 @@ jobs:
4648
steps:
4749
- uses: actions/checkout@v2
4850
- name: install python
49-
uses: actions/setup-python@v3
51+
uses: actions/setup-python@v4
5052
with:
5153
python-version: ${{ matrix.python-version }}
5254
cache: 'pip'
@@ -82,7 +84,7 @@ jobs:
8284
runs-on: ubuntu-latest
8385
strategy:
8486
matrix:
85-
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10', 'pypy-3.7']
87+
python-version: ['3.7', '3.8', '3.9', '3.10', 'pypy-3.7']
8688
steps:
8789
- uses: actions/checkout@v2
8890
- name: install python ${{ matrix.python-version }}

CHANGES

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
1+
* Fix start_id type for XAUTOCLAIM
2+
* Remove verbose logging from cluster.py
3+
* Add retry mechanism to async version of Connection
24
* Compare commands case-insensitively in the asyncio command parser
35
* Allow negative `retries` for `Retry` class to retry forever
46
* Add `items` parameter to `hset` signature

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ this, instead of using make test, you need to pass
126126
Our test suite uses `pytest`. You can run a specific test suite against
127127
a specific Python version like this:
128128

129-
`$ docker-compose run test tox -e py36 -- --redis-url=redis://master:6379/9 tests/test_commands.py`
129+
`$ docker-compose run test tox -e py37 -- --redis-url=redis://master:6379/9 tests/test_commands.py`
130130

131131
### Troubleshooting
132132

README.md

Lines changed: 29 additions & 1208 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)