Skip to content

Commit e6e829a

Browse files
Merge pull request #167 from python-discord/deployment-update
Add `--upgrade` flag to deployment pip install
2 parents 0b50b9b + d260c0c commit e6e829a

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

.pre-commit-config.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
repos:
22
- repo: https://github.com/pre-commit/pre-commit-hooks
3-
rev: v4.3.0
3+
rev: v4.4.0
44
hooks:
55
- id: check-merge-conflict
66
- id: check-toml
@@ -9,19 +9,19 @@ repos:
99
- id: trailing-whitespace
1010
args: [--markdown-linebreak-ext=md]
1111
- repo: https://github.com/pre-commit/pygrep-hooks
12-
rev: v1.9.0
12+
rev: v1.10.0
1313
hooks:
1414
- id: python-check-blanket-noqa
1515
- repo: https://github.com/PyCQA/isort
16-
rev: 5.10.1
16+
rev: 5.12.0
1717
hooks:
1818
- id: isort
1919
- repo: https://github.com/psf/black
20-
rev: 22.10.0
20+
rev: 23.1.0
2121
hooks:
2222
- id: black
2323
- repo: https://github.com/PyCQA/flake8
24-
rev: &flake8_version 5.0.4
24+
rev: &flake8_version 6.0.0
2525
hooks:
2626
- &flake8_hook
2727
id: flake8

deployment.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ spec:
3131
- "-c"
3232
- >-
3333
PYTHONUSERBASE=/snekbox/user_base
34-
pip install --user
34+
pip install --user --upgrade
3535
anyio[trio]~=3.6
3636
arrow~=1.2
37-
attrs~=22.1
37+
attrs~=22.2
3838
beautifulsoup4~=4.11
3939
einspect~=0.5
4040
fishhook~=0.2
@@ -43,17 +43,17 @@ spec:
4343
lark~=1.1
4444
matplotlib~=3.6
4545
more-itertools~=9.0
46-
networkx~=2.8
47-
numpy~=1.23
46+
networkx~=3.0
47+
numpy~=1.24
4848
pandas~=1.5
4949
pendulum~=2.1
5050
python-dateutil~=2.8
5151
pyyaml~=6.0
52-
scipy~=1.9.2
52+
scipy~=1.10
5353
sympy~=1.11
5454
toml~=0.10
5555
typing-extensions~=4.4
56-
tzdata~=2022.6
56+
tzdata~=2022.7
5757
yarl~=1.8
5858
volumes:
5959
- name: snekbox-user-base-volume

0 commit comments

Comments
 (0)