Skip to content

Commit

Permalink
Scheduled weekly dependency update for week 06 (#743)
Browse files Browse the repository at this point in the history
* Update hiredis from 2.1.1 to 2.2.1
* Update coverage from 7.0.5 to 7.1.0
* Update setuptools from 66.1.1 to 67.1.0
* Update setup.py

Co-authored-by: Sasha Romijn <github@mxsasha.eu>
  • Loading branch information
pyup-bot and mxsasha authored Feb 9, 2023
1 parent 2fba5dd commit 4d4068e
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 deletions.
22 changes: 11 additions & 11 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,15 +99,15 @@ commands:
echo
- run:
name: Installing psql client and enchant
command: $SUDO apt -y install postgresql-client netcat python3-enchant
name: Installing psql client, enchant, netcat, rust
command: $SUDO apt -y install postgresql-client netcat python3-enchant rustc

- restore_cache:
keys:
- v20-dependencies-{{ .Environment.CIRCLE_JOB }}-{{ checksum
- v21-dependencies-{{ .Environment.CIRCLE_JOB }}-{{ checksum
"requirements.txt" }}
# fallback to using the latest cache if no exact match is found
- v20-dependencies-{{ .Environment.CIRCLE_JOB }}
- v21-dependencies-{{ .Environment.CIRCLE_JOB }}

- run:
name: install latest pip
Expand All @@ -127,7 +127,7 @@ commands:
- save_cache:
paths:
- ./venv
key: v20-dependencies-{{ .Environment.CIRCLE_JOB }}-{{ checksum
key: v21-dependencies-{{ .Environment.CIRCLE_JOB }}-{{ checksum
"requirements.txt" }}

wait_for_postgres:
Expand Down Expand Up @@ -208,7 +208,7 @@ jobs:
POSTGRES_HOST_AUTH_METHOD: trust

- image: cimg/redis:<< parameters.redis_version >>
- image: cimg/rust:1.65
# - image: cimg/rust:1.65

steps:
- checkout
Expand Down Expand Up @@ -244,7 +244,7 @@ jobs:
POSTGRES_HOST_AUTH_METHOD: trust

- image: cimg/redis:<< parameters.redis_version >>
- image: cimg/rust:1.65
# - image: cimg/rust:1.65

steps:
- checkout
Expand Down Expand Up @@ -282,7 +282,7 @@ jobs:
POSTGRES_HOST_AUTH_METHOD: trust

- image: cimg/redis:<< parameters.redis_version >>
- image: cimg/rust:1.65
# - image: cimg/rust:1.65

steps:
- checkout
Expand Down Expand Up @@ -321,7 +321,7 @@ jobs:
POSTGRES_HOST_AUTH_METHOD: trust

- image: cimg/redis:<< parameters.redis_version >>
- image: cimg/rust:1.65
# - image: cimg/rust:1.65

steps:
- checkout
Expand All @@ -344,7 +344,7 @@ jobs:
environment:
PYTHON_INTERPRETER: python3
SUDO: sudo
- image: cimg/rust:1.65
# - image: cimg/rust:1.65

steps:
- checkout
Expand Down Expand Up @@ -375,7 +375,7 @@ jobs:
environment:
PYTHON_INTERPRETER: python3
SUDO: sudo
- image: cimg/rust:1.65
# - image: cimg/rust:1.65

steps:
- checkout
Expand Down
6 changes: 3 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ setproctitle==1.3.2 # updating the process title for useful ps output
python-daemon==2.3.2 # daemonising the main process
pid==3.0.4 # managing PID files
redis==4.4.2 # preloaded data storage & sync through redis
hiredis==2.1.1 # improved redis response parsing performance
hiredis==2.2.1 # improved redis response parsing performance
coredis==4.10.2 # async redis
requests==2.28.2 # HTTP request handling
pytz==2022.7.1
Expand All @@ -38,7 +38,7 @@ ujson==5.7.0
pytest==7.2.1
pytest-cov==4.0.0
pytest-env==0.8.1
coverage==7.0.5
coverage==7.1.0
twisted==22.10.0 # Used for a mock email server in integration tests
python-graphql-client==0.4.2
pytest-asyncio==0.20.3
Expand All @@ -57,6 +57,6 @@ flake8==6.0.0; python_version >= '3.8'
pep8-naming==0.13.3

# Creating python packages
setuptools==66.1.1
setuptools==67.1.0
wheel==0.38.4 # also require for installing, #488
twine==4.0.2
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
'python-daemon==2.3.2',
'pid==3.0.4',
'redis==4.4.2',
'hiredis==2.1.1',
'hiredis==2.2.1',
'coredis==4.10.2',
'requests==2.28.2',
'pytz==2022.7.1',
Expand Down

0 comments on commit 4d4068e

Please sign in to comment.