Skip to content

Commit 35ecaf8

Browse files
Revert/qwen 3.5 (#2087)
* Revert "Qwen3 5 and move to transformers 5 (#2070)" This reverts commit 805344d. * Bump version of inference-models
1 parent a284c8e commit 35ecaf8

Some content is hidden

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

45 files changed

+20188
-1911
lines changed
Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
name: Build and Push Container with Stream Manager Jetson 5.1.1
2+
permissions:
3+
contents: read
4+
on:
5+
release:
6+
types: [created]
7+
push:
8+
branches: [main]
9+
workflow_dispatch:
10+
inputs:
11+
force_push:
12+
type: boolean
13+
description: "Do you want to push image after build?"
14+
default: false
15+
16+
env:
17+
VERSION: "0.0.0" # Default version, will be overwritten
18+
19+
jobs:
20+
docker:
21+
runs-on:
22+
labels: ubuntu-latest
23+
timeout-minutes: 120
24+
permissions:
25+
id-token: write
26+
contents: read
27+
steps:
28+
- name: Login to Docker Hub
29+
uses: docker/login-action@v3
30+
with:
31+
username: ${{ secrets.DOCKERHUB_USERNAME }}
32+
password: ${{ secrets.DOCKERHUB_TOKEN }}
33+
- name: 🛎️ Checkout
34+
uses: actions/checkout@v4
35+
- name: Read version from file
36+
run: echo "VERSION=$(DISABLE_VERSION_CHECK=true python ./inference/core/version.py)" >> $GITHUB_ENV
37+
- name: Set up Depot CLI
38+
uses: depot/setup-action@v1
39+
- name: Build and Push
40+
uses: depot/build-push-action@v1
41+
with:
42+
push: ${{ github.event_name == 'release' || (github.event.inputs.force_push == 'true')}}
43+
project: grl7ffzxd7
44+
tags: roboflow/roboflow-inference-stream-manager-jetson-5.1.1:latest,roboflow/roboflow-inference-stream-manager-jetson-5.1.1:${{ env.VERSION}}
45+
platforms: linux/arm64
46+
file: ./docker/dockerfiles/Dockerfile.onnx.jetson.5.1.1.stream_manager

.github/workflows/integration_e2e_tests_inference_sdk_x86.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
timeout-minutes: 20
2323
strategy:
2424
matrix:
25-
python-version: ["3.10", "3.11", "3.12"]
25+
python-version: ["3.9", "3.10", "3.11", "3.12"]
2626
steps:
2727
- name: 🛎️ Checkout
2828
uses: actions/checkout@v4
@@ -63,7 +63,7 @@ jobs:
6363
timeout-minutes: 30
6464
strategy:
6565
matrix:
66-
python-version: ["3.10", "3.11", "3.12"]
66+
python-version: ["3.9", "3.10", "3.11", "3.12"]
6767
steps:
6868
- name: 🛎️ Checkout
6969
uses: actions/checkout@v4

.github/workflows/integration_tests_inference_cli_depending_on_inference_x86.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
timeout-minutes: 30
2020
strategy:
2121
matrix:
22-
python-version: ["3.10"]
22+
python-version: ["3.9", "3.10"]
2323
steps:
2424
- name: 🛎️ Checkout
2525
uses: actions/checkout@v4

.github/workflows/integration_tests_inference_cli_x86.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
timeout-minutes: 30
2020
strategy:
2121
matrix:
22-
python-version: ["3.10", "3.11", "3.12"]
22+
python-version: ["3.9", "3.10", "3.11", "3.12"]
2323
steps:
2424
- name: 🛎️ Checkout
2525
uses: actions/checkout@v4

.github/workflows/integration_tests_inference_models.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
timeout-minutes: 45
2020
strategy:
2121
matrix:
22-
python-version: ["3.10", "3.11", "3.12"]
22+
python-version: ["3.9", "3.10", "3.11", "3.12"]
2323
steps:
2424
- name: 🛎️ Checkout
2525
uses: actions/checkout@v4

.github/workflows/integration_tests_workflows_x86.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ on:
1414
default: all
1515
options:
1616
- all
17+
- "3.9"
1718
- "3.10"
1819
- "3.11"
1920
- "3.12"
@@ -38,7 +39,7 @@ jobs:
3839
group: public-depot
3940
strategy:
4041
matrix:
41-
python-version: ${{ fromJSON((github.event.inputs.python-version || 'all') == 'all' && '["3.10","3.11","3.12"]' || format('["{0}"]', github.event.inputs.python-version)) }}
42+
python-version: ${{ fromJSON((github.event.inputs.python-version || 'all') == 'all' && '["3.9","3.10","3.11","3.12"]' || format('["{0}"]', github.event.inputs.python-version)) }}
4243
use-inference-models: ${{ fromJSON((github.event.inputs.use-inference-models || 'all') == 'all'&& '["true","false"]'|| format('["{0}"]', github.event.inputs.use-inference-models)) }}
4344
timeout-minutes: 15
4445
steps:

.github/workflows/test_package_install_inference.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@ jobs:
2222
timeout-minutes: 10
2323
strategy:
2424
matrix:
25-
python-version: ["3.10", "3.11", "3.12"]
25+
python-version: ["3.9", "3.10", "3.11", "3.12"]
2626
steps:
2727
- name: 🛎️ Checkout
2828
uses: actions/checkout@v4
29-
- name: 🐍 Set up Python 3.10 to create wheels
29+
- name: 🐍 Set up Python 3.9 to create wheels
3030
uses: actions/setup-python@v2
3131
with:
32-
python-version: "3.10"
32+
python-version: "3.9"
3333
- name: 🛞 Create Wheels
3434
run: |
3535
make create_wheels

.github/workflows/test_package_install_inference_cli.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@ jobs:
2222
timeout-minutes: 10
2323
strategy:
2424
matrix:
25-
python-version: ["3.10", "3.11", "3.12"]
25+
python-version: ["3.9", "3.10", "3.11", "3.12"]
2626
steps:
2727
- name: 🛎️ Checkout
2828
uses: actions/checkout@v4
29-
- name: 🐍 Set up Python 3.10 to create wheels
29+
- name: 🐍 Set up Python 3.9 to create wheels
3030
uses: actions/setup-python@v2
3131
with:
32-
python-version: "3.10"
32+
python-version: "3.9"
3333
- name: 🛞 Create Wheels
3434
run: |
3535
make create_wheels

.github/workflows/test_package_install_inference_gpu.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@ jobs:
2222
timeout-minutes: 15
2323
strategy:
2424
matrix:
25-
python-version: ["3.10", "3.11", "3.12"]
25+
python-version: ["3.9", "3.10", "3.11", "3.12"]
2626
steps:
2727
- name: 🛎️ Checkout
2828
uses: actions/checkout@v4
29-
- name: 🐍 Set up Python 3.10 to create wheels
29+
- name: 🐍 Set up Python 3.9 to create wheels
3030
uses: actions/setup-python@v2
3131
with:
32-
python-version: "3.10"
32+
python-version: "3.9"
3333
- name: 🛞 Create Wheels
3434
run: |
3535
make create_wheels

.github/workflows/test_package_install_inference_gpu_with_extras.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@ jobs:
2222
timeout-minutes: 30
2323
strategy:
2424
matrix:
25-
python-version: ["3.10", "3.11", "3.12"]
25+
python-version: ["3.9", "3.10", "3.11", "3.12"]
2626
steps:
2727
- name: 🛎️ Checkout
2828
uses: actions/checkout@v4
29-
- name: 🐍 Set up Python 3.10 to create wheels
29+
- name: 🐍 Set up Python 3.9 to create wheels
3030
uses: actions/setup-python@v2
3131
with:
32-
python-version: "3.10"
32+
python-version: "3.9"
3333
- name: 🚧 Install GDAL OS library
3434
run: sudo apt-get update && sudo apt-get install libgdal-dev
3535
- name: 🛞 Create Wheels

0 commit comments

Comments
 (0)