Skip to content

Commit 3e54fea

Browse files
Merge pull request #1542 from amcadmus/master
Merge devel into master
2 parents 159e45d + 0ff22bc commit 3e54fea

File tree

165 files changed

+7417
-909
lines changed

Some content is hidden

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

165 files changed

+7417
-909
lines changed

.github/ISSUE_TEMPLATE/bug-report.md

Lines changed: 0 additions & 27 deletions
This file was deleted.
Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
name: Bug report
2+
description: Create a bug report to help us eliminate issues and improve deepmd-kit.
3+
title: "[BUG] _Replace With Suitable Title_"
4+
labels: bug
5+
assignees: []
6+
body:
7+
- type: textarea
8+
id: summary
9+
attributes:
10+
label: Bug summary
11+
description: Please provide a clear and concise description of what the bug is.
12+
placeholder:
13+
value:
14+
validations:
15+
required: true
16+
- type: input
17+
id: version
18+
attributes:
19+
label: DeePMD-kit Version
20+
description: "`dp --version`"
21+
validations:
22+
required: true
23+
- type: input
24+
id: tf-version
25+
attributes:
26+
label: TensorFlow Version
27+
description: "The version will be printed when running DeePMD-kit."
28+
validations:
29+
required: true
30+
- type: dropdown
31+
id: installation-way
32+
attributes:
33+
label: How did you download the software?
34+
options:
35+
- Offline packages
36+
- conda
37+
- docker
38+
- pip
39+
- Built from source
40+
- Others (write below)
41+
validations:
42+
required: true
43+
- type: textarea
44+
id: log
45+
attributes:
46+
label: Input Files, Running Commands, Error Log, etc.
47+
description: "Please provide necessary information including input file, running commands, error log , etc., AS DETAILED AS POSSIBLE to help locate and reproduce your problem. WARNING: Do not use image to show error log! Paste texts in a code block instead."
48+
placeholder:
49+
value:
50+
validations:
51+
required: true
52+
- type: textarea
53+
id: reproduce
54+
attributes:
55+
label: Steps to Reproduce
56+
description: "Describe the steps required to (quickly) reproduce the issue. You can attach (small) files to the section below or add URLs where to download an archive with all necessary files. Please try to create an input set that is as minimal and small as possible and reproduces the bug as quickly as possible. **NOTE:** the less effort and time it takes to reproduce your reported bug, the more likely it becomes, that somebody will look into it and fix the problem."
57+
placeholder:
58+
value:
59+
validations:
60+
required: true
61+
- type: textarea
62+
id: further
63+
attributes:
64+
label: Further Information, Files, and Links
65+
description: Put any additional information here, attach relevant text or image files and URLs to external sites, e.g. relevant publications
66+
placeholder:
67+
value:
68+
validations:
69+
required: false

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
blank_issues_enabled: false
2+
contact_links:
3+
- name: Request for Help
4+
url: https://github.com/deepmodeling/deepmd-kit/discussions/491
5+
about: If you have a usage question

.github/ISSUE_TEMPLATE/feature-request.md

Lines changed: 0 additions & 21 deletions
This file was deleted.
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: Feature request
2+
description: Suggest an idea for this project.
3+
title: "[Feature Request] _Replace with Title_"
4+
labels: enhancement
5+
assignees: []
6+
body:
7+
- type: textarea
8+
id: summary
9+
attributes:
10+
label: Summary
11+
description: "Please provide a brief and concise description of the suggested feature or change"
12+
placeholder:
13+
value:
14+
validations:
15+
required: true
16+
- type: textarea
17+
id: details
18+
attributes:
19+
label: Detailed Description
20+
description: "Please explain how you would like to see deepmd-kit enhanced, what feature(s) you are looking for, what specific problems this will solve. If possible, provide references to relevant background information like publications or web pages, and whether you are planning to implement the enhancement yourself or would like to participate in the implementation. If applicable add a reference to an existing bug report or issue that this will address."
21+
placeholder:
22+
value:
23+
validations:
24+
required: true
25+
- type: textarea
26+
id: further
27+
attributes:
28+
label: Further Information, Files, and Links
29+
description: Put any additional information here, attach relevant text or image files and URLs to external sites, e.g. relevant publications
30+
placeholder:
31+
value:
32+
validations:
33+
required: false

.github/ISSUE_TEMPLATE/generic-issue.md

Lines changed: 0 additions & 23 deletions
This file was deleted.
Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
name: Generic issue
2+
description: For issues that do not fit any of the other categories.
3+
title: _Replace With a Descriptive Title_
4+
labels: wontfix
5+
assignees: []
6+
body:
7+
- type: textarea
8+
id: summary
9+
attributes:
10+
label: Summary
11+
description: "Please provide a clear and concise description of what the question is."
12+
placeholder:
13+
value:
14+
validations:
15+
required: true
16+
- type: input
17+
id: version
18+
attributes:
19+
label: DeePMD-kit Version
20+
description: "`dp --version`"
21+
validations:
22+
required: true
23+
- type: input
24+
id: tf-version
25+
attributes:
26+
label: TensorFlow Version
27+
description: "The version will be printed when running DeePMD-kit."
28+
validations:
29+
required: true
30+
- type: textarea
31+
id: other-version
32+
attributes:
33+
label: Python Version, CUDA Version, GCC Version, LAMMPS Version, etc
34+
description: "If applicable, specify what platform you are running on."
35+
placeholder:
36+
value:
37+
validations:
38+
required: false
39+
- type: textarea
40+
id: details
41+
attributes:
42+
label: Details
43+
description: "Please explain the issue in detail here."
44+
placeholder:
45+
value:
46+
validations:
47+
required: true

.github/ISSUE_TEMPLATE/parameters.md

Lines changed: 0 additions & 25 deletions
This file was deleted.
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: Parameters
2+
description: Make a suggestion for a change of input parameters or a new output to deepmd-kit.
3+
title: "[Parameters] _Replace With Suitable Title_"
4+
labels: documentation, enhancement
5+
assignees: []
6+
body:
7+
- type: textarea
8+
id: summary
9+
attributes:
10+
label: Summary
11+
description: "Please provide a clear and concise description of what your request is."
12+
placeholder:
13+
value:
14+
validations:
15+
required: true
16+
- type: textarea
17+
id: details
18+
attributes:
19+
label: Detailed Description
20+
description: "Please explain how you would like to see deepmd-kit enhanced. Specify your material system, and exactly what behaviors or properties you are looking for, or what specific problems this will solve. If possible, provide references to relevant background information like publications or web pages, and whether you are planning to implement the enhancement yourself or would like to participate in the implementation."
21+
placeholder:
22+
value:
23+
validations:
24+
required: true
25+
- type: textarea
26+
id: further
27+
attributes:
28+
label: Further Information, Files, and Links
29+
description: Put any additional information here, attach relevant text or image files and URLs to external sites, e.g. relevant publications
30+
placeholder:
31+
value:
32+
validations:
33+
required: false

.github/ISSUE_TEMPLATE/request-for-help.md

Lines changed: 0 additions & 21 deletions
This file was deleted.

0 commit comments

Comments
 (0)