Skip to content

Commit 6032814

Browse files
committed
Merge branch 'dev'
2 parents f3da3d1 + 2085d85 commit 6032814

File tree

461 files changed

+106360
-106909
lines changed

Some content is hidden

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

461 files changed

+106360
-106909
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

+38-38
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,38 @@
1-
2-
name: Bug Report
3-
description: Report a bug in the project
4-
title: "[Bug] "
5-
labels: bug
6-
body:
7-
- type: markdown
8-
attributes:
9-
value: |
10-
## 🐛 Bug Report
11-
Please fill out all required fields to help us diagnose and fix the issue.
12-
13-
- type: textarea
14-
id: description
15-
attributes:
16-
label: "What happened?"
17-
description: "Clearly describe the unexpected behavior."
18-
placeholder: "Example: When I try to save a file, I get an error message..."
19-
validations:
20-
required: true
21-
22-
- type: textarea
23-
id: steps-to-reproduce
24-
attributes:
25-
label: "Steps to reproduce"
26-
description: "Tell us how to reproduce the issue."
27-
placeholder: "Please provide a code snippet or a github gist for reproducing purpose."
28-
validations:
29-
required: true
30-
31-
- type: input
32-
id: environment
33-
attributes:
34-
label: "DSPy version"
35-
description: "Tell us your DSPy version."
36-
validations:
37-
required: true
38-
1+
2+
name: Bug Report
3+
description: Report a bug in the project
4+
title: "[Bug] "
5+
labels: bug
6+
body:
7+
- type: markdown
8+
attributes:
9+
value: |
10+
## 🐛 Bug Report
11+
Please fill out all required fields to help us diagnose and fix the issue.
12+
13+
- type: textarea
14+
id: description
15+
attributes:
16+
label: "What happened?"
17+
description: "Clearly describe the unexpected behavior."
18+
placeholder: "Example: When I try to save a file, I get an error message..."
19+
validations:
20+
required: true
21+
22+
- type: textarea
23+
id: steps-to-reproduce
24+
attributes:
25+
label: "Steps to reproduce"
26+
description: "Tell us how to reproduce the issue."
27+
placeholder: "Please provide a code snippet or a github gist for reproducing purpose."
28+
validations:
29+
required: true
30+
31+
- type: input
32+
id: environment
33+
attributes:
34+
label: "DSPy version"
35+
description: "Tell us your DSPy version."
36+
validations:
37+
required: true
38+

.github/ISSUE_TEMPLATE/config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
blank_issues_enabled: false
1+
blank_issues_enabled: false
+33-33
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,33 @@
1-
name: Feature Request
2-
description: Suggest a new feature or improvement
3-
title: "[Feature] "
4-
labels: enhancement
5-
body:
6-
- type: markdown
7-
attributes:
8-
value: |
9-
## 🚀 Feature Request
10-
Please fill out the following details.
11-
12-
- type: textarea
13-
id: description
14-
attributes:
15-
label: "What feature would you like to see?"
16-
description: "Describe the feature clearly."
17-
validations:
18-
required: true
19-
20-
- type: checkboxes
21-
id: contribute
22-
attributes:
23-
label: "Would you like to contribute?"
24-
options:
25-
- label: Yes, I'd like to help implement this.
26-
- label: No, I just want to request it.
27-
28-
- type: textarea
29-
id: additional-info
30-
attributes:
31-
label: "Additional Context"
32-
description: "Any links, references, or extra details?"
33-
placeholder: "Example: This feature exists in XYZ tool."
1+
name: Feature Request
2+
description: Suggest a new feature or improvement
3+
title: "[Feature] "
4+
labels: enhancement
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
## 🚀 Feature Request
10+
Please fill out the following details.
11+
12+
- type: textarea
13+
id: description
14+
attributes:
15+
label: "What feature would you like to see?"
16+
description: "Describe the feature clearly."
17+
validations:
18+
required: true
19+
20+
- type: checkboxes
21+
id: contribute
22+
attributes:
23+
label: "Would you like to contribute?"
24+
options:
25+
- label: Yes, I'd like to help implement this.
26+
- label: No, I just want to request it.
27+
28+
- type: textarea
29+
id: additional-info
30+
attributes:
31+
label: "Additional Context"
32+
description: "Any links, references, or extra details?"
33+
placeholder: "Example: This feature exists in XYZ tool."
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
## 📝 Changes Description
2-
3-
This MR/PR contains the following changes:
4-
...
5-
6-
## ✅ Contributor Checklist
7-
8-
- [] Pre-Commit checks are passing (locally and remotely)
9-
- [] Title of your PR / MR corresponds to the required format
10-
- [] Commit message follows required format {label}(dspy): {message}
11-
12-
## ⚠️ Warnings
13-
14-
Anything we should be aware of ?
1+
## 📝 Changes Description
2+
3+
This MR/PR contains the following changes:
4+
...
5+
6+
## ✅ Contributor Checklist
7+
8+
- [] Pre-Commit checks are passing (locally and remotely)
9+
- [] Title of your PR / MR corresponds to the required format
10+
- [] Commit message follows required format {label}(dspy): {message}
11+
12+
## ⚠️ Warnings
13+
14+
Anything we should be aware of ?
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
#!/bin/bash
2-
3-
# The $1 argument is the version number passed from the workflow
4-
VERSION=$1
5-
6-
echo "version: $VERSION"
7-
8-
for i in {1..5}; do
9-
if python3 -m pip install --index-url https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple dspy-ai-test=="$VERSION"; then
10-
break
11-
else
12-
echo "Attempt $i failed. Waiting before retrying..."
13-
sleep 10
14-
fi
1+
#!/bin/bash
2+
3+
# The $1 argument is the version number passed from the workflow
4+
VERSION=$1
5+
6+
echo "version: $VERSION"
7+
8+
for i in {1..5}; do
9+
if python3 -m pip install --index-url https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple dspy-ai-test=="$VERSION"; then
10+
break
11+
else
12+
echo "Attempt $i failed. Waiting before retrying..."
13+
sleep 10
14+
fi
1515
done

0 commit comments

Comments
 (0)