generated from roboflow/template-python
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #627 from roboflow/develop
`supervision-0.17.0` release
- Loading branch information
Showing
50 changed files
with
3,049 additions
and
1,450 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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
version: 2 | ||
updates: | ||
# GitHub Actions | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: "daily" | ||
commit-message: | ||
prefix: ⬆️ | ||
# Python | ||
- package-ecosystem: "pip" | ||
directory: "/" | ||
schedule: | ||
interval: "daily" | ||
commit-message: | ||
prefix: ⬆️ |
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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
attrs==23.1.0 | ||
certifi==2023.7.22 | ||
charset-normalizer==2.0.12 | ||
cycler==0.12.1 | ||
exceptiongroup==1.1.3 | ||
fonttools==4.43.1 | ||
idna==3.4 | ||
iniconfig==2.0.0 | ||
kiwisolver==1.4.5 | ||
matplotlib==3.5.0 | ||
numpy==1.21.2 | ||
opencv-python==4.5.5.64 | ||
packaging==23.2 | ||
Pillow==10.1.0 | ||
pluggy==1.3.0 | ||
pyparsing==3.1.1 | ||
pytest==7.2.0 | ||
python-dateutil==2.8.2 | ||
PyYAML==5.3 | ||
requests==2.26.0 | ||
scipy==1.9.0 | ||
setuptools-scm==8.0.4 | ||
six==1.16.0 | ||
tomli==2.0.1 | ||
tqdm==4.62.3 | ||
typing_extensions==4.8.0 | ||
urllib3==1.26.18 |
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
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
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
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
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 |
---|---|---|
@@ -0,0 +1,32 @@ | ||
name: Python 3.8 - Min Dep Test WorkFlow | ||
|
||
on: | ||
pull_request: | ||
branches: [main, develop] | ||
|
||
jobs: | ||
build-min-dep-test: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
python-version: ["3.8"] | ||
steps: | ||
- name: 🛎️ Checkout | ||
uses: actions/checkout@v4 | ||
- name: 🐍 Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v4 | ||
# id based on python version | ||
id: python-setup | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
check-latest: true | ||
cache: 'pip' | ||
cache-dependency-path: '**/requirements-dev-min.txt' | ||
|
||
- name: 📦 Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install -r .github/requirements-dev-min.txt | ||
- name: 🧪 Test | ||
run: "python -m pytest ./test" |
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
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
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
Oops, something went wrong.