Skip to content

Commit bec32f7

Browse files
authored
Merge pull request #273 from roboflow/develop
RF-DETR 1.2.0 release
2 parents 5e2979d + 3efdc84 commit bec32f7

Some content is hidden

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

59 files changed

+2759
-1381
lines changed

.github/CODEOWNERS

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# These owners will be the default owners for everything in
2+
# the repo. They will be requested for review when someone
3+
# opens a pull request.
4+
* @SkalskiP @probicheaux @isaacrob-roboflow @Matvezy
Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
name: 🤩 Feature Request
2+
description: Suggest an idea for RF-DETR
3+
# title: " "
4+
labels: [enhancement]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Thank you for submitting an RF-DETR Feature Request!
10+
11+
- type: checkboxes
12+
attributes:
13+
label: Search before asking
14+
description: >
15+
Please search the [issues](https://github.com/roboflow/rf-detr/issues) to see if a similar feature request already exists.
16+
options:
17+
- label: >
18+
I have searched the RF-DETR [issues](https://github.com/roboflow/rf-detr/issues) and found no similar feature requests.
19+
required: true
20+
21+
- type: textarea
22+
attributes:
23+
label: Description
24+
description: A short description of your feature.
25+
placeholder: |
26+
What new feature would you like to see in RF-DETR?
27+
validations:
28+
required: true
29+
30+
- type: textarea
31+
attributes:
32+
label: Use case
33+
description: |
34+
Describe the use case of your feature request. It will help us understand and prioritize the feature request.
35+
placeholder: |
36+
How would this feature be used, and who would use it?
37+
38+
- type: textarea
39+
attributes:
40+
label: Additional
41+
description: Anything else you would like to share?
42+
43+
- type: checkboxes
44+
attributes:
45+
label: Are you willing to submit a PR?
46+
description: >
47+
(Optional) We encourage you to submit a [Pull Request](https://github.com/roboflow/supervision/pulls) (PR) to help improve Supervision for everyone, especially if you have a good understanding of how to implement a fix or feature.
48+
options:
49+
- label: Yes I'd like to help by submitting a PR!

.github/workflows/test-doc.yml

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
name: 🧪 Docs Test WorkFlow 📚
2+
3+
on:
4+
pull_request:
5+
branches: [main, develop]
6+
push:
7+
branches: [docs/wip]
8+
9+
# Restrict permissions by default
10+
permissions:
11+
contents: read # Required for checkout
12+
checks: write # Required for test reporting
13+
14+
jobs:
15+
docs-build-test:
16+
name: Test docs build
17+
runs-on: ubuntu-latest
18+
timeout-minutes: 10
19+
strategy:
20+
matrix:
21+
python-version: ["3.10"]
22+
steps:
23+
- name: 📥 Checkout the repository
24+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
25+
with:
26+
fetch-depth: 0
27+
28+
- name: 🐍 Install uv and set Python ${{ matrix.python-version }}
29+
uses: astral-sh/setup-uv@bd01e18f51369d5a26f1651c3cb451d3417e3bba # v6.3.1
30+
with:
31+
python-version: ${{ matrix.python-version }}
32+
activate-environment: true
33+
34+
35+
- name: 🏗️ Install dependencies
36+
run: |
37+
uv pip install -r pyproject.toml --extra docs
38+
39+
40+
- name: 🧪 Test Docs Build
41+
run: uv run mkdocs build --verbose

CNAME

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
rfdetr.roboflow.com

0 commit comments

Comments
 (0)