Skip to content

Commit

Permalink
Clarify version info requirements when submitting new issues (#1739)
Browse files Browse the repository at this point in the history
  • Loading branch information
BCSharp committed Aug 30, 2023
1 parent dbcdb07 commit 42e6a0e
Showing 1 changed file with 16 additions and 5 deletions.
21 changes: 16 additions & 5 deletions .github/ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
### Prerequisites

The issue tracker is used to report bugs and request new features, NOT to ask questions.
The issue tracker is used to report bugs and request new features, **NOT** to ask questions.

Questions should be posted in [Discussions](https://github.com/IronLanguages/ironpython3/discussions/categories/q-a) or to the users mailing list which can be accessed at
https://ironpython.groups.io/g/users.
Expand All @@ -19,10 +19,21 @@ https://ironpython.groups.io/g/users.
2. [Second Step]
3. [and so on...]

**Expected behavior:** [What you expected to happen]
**Expected behavior:**

**Actual behavior:** [What actually happened]
[What you expected to happen]

### Versions
**Actual behavior:**

You can get this information from executing `ipy -VV`.
[What actually happened]

### Version Information

If you are using the `ipy` console program, provide output of executing `ipy -VV`. If it is a local build, provide also the git hash of the commit used to build IronPython. Additionally, provide the type of the operating system used.

If you are using the IronPython engine embedded in a .NET application, provide the version number of the NuGet package used (or if it is a local build, the git hash of the commit used to build IronPython), and the following info:

* .NET platform used (choice from: .NET, .NET Core, .NET Framework, Mono, Unity),
* Version of the .NET platform used,
* Operating system used,
* Value of `sys.version`, from imported module `sys`.

0 comments on commit 42e6a0e

Please sign in to comment.