Skip to content

File tree

8 files changed

+38
-12
lines changed

8 files changed

+38
-12
lines changed

.github/CONTRIBUTING.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Here is a brief explanation on how I triage incoming tickets to get a better sen
3131
When sitting down to do some triaging work, start with the list of untriaged tickets. Consider all tickets that do not have a label as untriaged. The first step is to categorize the ticket into one of the following categories and either close the ticket or assign an appropriate lable. The reported issue
3232

3333
* is not valid
34-
If you think the ticket is invalid comment why you think it is invalid, then close the ticket. Tickets might be invalid if they were already fixed in the past or it was decided that the proposed feature will not be implemented because it does not conform with the overall goal of Pocket-PiAI Project. Also if you happen to know that the problem was already reported, label the ticket with Status: duplicate, reference the other ticket that is already addressing the problem and close the duplicate.
34+
If you think the ticket is invalid comment why you think it is invalid, then close the ticket. Tickets might be invalid if they were already fixed in the past or it was decided that the proposed feature will not be implemented because it does not conform with the overall goal of Python-Repo Project. Also if you happen to know that the problem was already reported, label the ticket with Status: duplicate, reference the other ticket that is already addressing the problem and close the duplicate.
3535

3636
Examples:
3737

@@ -107,9 +107,7 @@ This is the checklist that I try to go through for every single pull request tha
107107

108108
- [ ] Do the tests pass for all of the following? If not, write a note in the PR, or fix them yourself.
109109

110-
- [ ] Python 3.8 - Mac
111-
- [ ] Python 3.8 - Linux (OPTIONAL)
112-
- [ ] Python 3.9 - Linux
110+
- [ ] Python 3.9 - Linux (OPTIONAL)
113111
- [ ] Python 3.9 (or Newer) - Mac
114112
- [ ] Python 3.10 - Linux
115113
- [ ] Python 3.11 - Linux

.github/ISSUE_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
>> `uname -a`
1010
- [ ] linux
1111
- [ ] MacOS (darwin)
12-
- `multicast` version:
12+
- `<Project>` version:
1313
>> `python3 -m pythonrepo.pythonrepo --version`
1414
1515

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name: Bug report
33
about: Create a report to help us improve
44
title: ''
5-
labels: Bug, Failing
5+
labels: Bug, Testing
66
assignees: reactive-firewall
77

88
---
@@ -26,11 +26,11 @@ If applicable, add logs here to help explain your problem.
2626
**Screenshots** _(optional)_
2727
If applicable, add screenshots to help explain your problem.
2828

29-
**PiAP Device (please complete the following information):**
29+
**Reporter's Device (please complete the following information):**
3030
- OS: [e.g. macOS]
3131
- OS Version: [e.g. 22]
3232
- Python Version [e.g. 3.9] _(optional)_
33-
- Python Template Version: [e.g. v0.5.0]
33+
- Python Template Version: [e.g. v1.5.0]
3434

3535
**Additional context** _(optional)_
3636
Add any other context about the problem here.
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
name: House Keeping
3+
about: Create a suggestion to help improve a specific detail like depenancy version.
4+
title: House Keeping
5+
labels: Documentation, Github, Enhancement
6+
assignees: ''
7+
8+
---
9+
10+
**Describe the Task**
11+
A clear and concise description of what needs done.
12+
[e.g. library xyz should use the latest version 123]
13+
14+
**Expected Solution** __(suggested)__
15+
A clear and concise description of what you (or others) might expect as a fix.
16+
[e.g. update the version number to 123]
17+
18+
**Related Documentation** __(optional)__
19+
If applicable, add documentation references to help explain your question.
20+
[e.g. see link/to/librarry/version/123/docs]
21+
22+
**Additional context** __(optional)__
23+
Add any other context about the question here.

.github/labeler.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ Python Repo:
44
- any-glob-to-any-file:
55
- setup.py
66
- pythonrepo/*.py
7+
- LICENSE
8+
- LICENSE.md
79

810
# Add 'Lint' label to any lint file changes
911
Linter:

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
# The short X.Y version.
5252
version = 'v1.1'
5353
# The full version, including alpha/beta/rc tags.
54-
release = 'v1.1.5'
54+
release = 'v1.1.4'
5555

5656
# The language for content autogenerated by Sphinx. Refer to documentation
5757
# for a list of supported languages.

setup.cfg

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@ classifiers =
1313
Operating System :: POSIX :: Linux
1414
Programming Language :: Python
1515
Programming Language :: Python :: 3
16+
Programming Language :: Python :: 3.12
17+
Programming Language :: Python :: 3.11
18+
Programming Language :: Python :: 3.10
1619
Programming Language :: Python :: 3.9
1720
Programming Language :: Python :: 3.8
1821
Programming Language :: Python :: 3.7
@@ -34,5 +37,5 @@ packages = find:
3437

3538
[options.packages.find]
3639
exclude =
37-
docs
38-
tests
40+
docs
41+
tests

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def readFile(filename):
5050

5151
setup(
5252
name="""pythonrepo""",
53-
version="""1.1.3""",
53+
version="""1.1.4""",
5454
description="""Python Repo""",
5555
long_description=readme,
5656
install_requires=requirements,

0 commit comments

Comments
 (0)