Skip to content

Commit fee48e5

Browse files
easier python deps (blakeblackshear#4827)
* easier python deps * update build wheels deps * dependencies PRs cant become stale
1 parent 59b52f3 commit fee48e5

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

.github/workflows/stale.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -6,21 +6,21 @@ name: "Stalebot"
66
on:
77
schedule:
88
- cron: "0 0 * * *" # run stalebot once a day
9-
9+
1010
jobs:
1111
stale:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- uses: actions/stale@main
1515
id: stale
1616
with:
17-
stale-issue-message: 'This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.'
18-
close-issue-message: ''
17+
stale-issue-message: "This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions."
18+
close-issue-message: ""
1919
days-before-stale: 30
2020
days-before-close: 3
2121
exempt-draft-pr: true
22-
exempt-issue-labels: 'pinned,security'
23-
exempt-pr-labels: 'pinned,security'
22+
exempt-issue-labels: "pinned,security"
23+
exempt-pr-labels: "pinned,security,dependencies"
2424
operations-per-run: 120
2525
- name: Print outputs
2626
run: echo ${{ join(steps.stale.outputs.*, ',') }}

requirements-dev.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
pylint == 2.15.*
2-
black == 22.10.*
2+
black == 22.12.*

requirements-wheels.txt

+4-4
Original file line numberDiff line numberDiff line change
@@ -7,19 +7,19 @@ numpy == 1.22.*
77
opencv-python-headless == 4.5.5.*
88
paho-mqtt == 1.6.*
99
peewee == 3.15.*
10-
peewee_migrate == 1.4.*
10+
peewee_migrate == 1.6.*
1111
psutil == 5.9.*
1212
pydantic == 1.10.*
1313
PyYAML == 6.0
14-
pytz == 2022.6
14+
pytz == 2022.7
1515
tzlocal == 4.2
1616
types-PyYAML == 6.0.*
1717
requests == 2.28.*
1818
types-requests == 2.28.*
1919
scipy == 1.8.*
20-
setproctitle == 1.2.*
20+
setproctitle == 1.3.*
2121
ws4py == 0.5.*
22-
zeroconf == 0.39.4
22+
zeroconf == 0.47.*
2323
# Openvino Library - Custom built with MYRIAD support
2424
openvino @ https://github.com/NateMeyer/openvino-wheels/releases/download/multi-arch_2022.2.0/openvino-2022.2.0-000-cp39-cp39-manylinux_2_31_x86_64.whl; platform_machine == 'x86_64'
2525
openvino @ https://github.com/NateMeyer/openvino-wheels/releases/download/multi-arch_2022.2.0/openvino-2022.2.0-000-cp39-cp39-linux_aarch64.whl; platform_machine == 'aarch64'

requirements.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
scikit-build == 0.14.1
2-
nvidia-pyindex
1+
scikit-build == 0.16.4
2+
nvidia-pyindex

0 commit comments

Comments
 (0)