Skip to content

House Keeping for PR #34 #60

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Aug 21, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Here is a brief explanation on how I triage incoming tickets to get a better sen
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

* is not valid
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.
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.

Examples:

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

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

- [ ] Python 3.8 - Mac
- [ ] Python 3.8 - Linux (OPTIONAL)
- [ ] Python 3.9 - Linux
- [ ] Python 3.9 - Linux (OPTIONAL)
- [ ] Python 3.9 (or Newer) - Mac
- [ ] Python 3.10 - Linux
- [ ] Python 3.11 - Linux
Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
>> `uname -a`
- [ ] linux
- [ ] MacOS (darwin)
- `multicast` version:
- `<Project>` version:
>> `python3 -m pythonrepo.pythonrepo --version`


Expand Down
6 changes: 3 additions & 3 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name: Bug report
about: Create a report to help us improve
title: ''
labels: Bug, Failing
labels: Bug, Testing
assignees: reactive-firewall

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

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

**Additional context** _(optional)_
Add any other context about the problem here.
23 changes: 23 additions & 0 deletions .github/ISSUE_TEMPLATE/house-keeping.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
---
name: House Keeping
about: Create a suggestion to help improve a specific detail like depenancy version.
title: House Keeping
labels: Documentation, Github, Enhancement
assignees: ''

---

**Describe the Task**
A clear and concise description of what needs done.
[e.g. library xyz should use the latest version 123]

**Expected Solution** __(suggested)__
A clear and concise description of what you (or others) might expect as a fix.
[e.g. update the version number to 123]

**Related Documentation** __(optional)__
If applicable, add documentation references to help explain your question.
[e.g. see link/to/librarry/version/123/docs]

**Additional context** __(optional)__
Add any other context about the question here.
2 changes: 2 additions & 0 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ Python Repo:
- any-glob-to-any-file:
- setup.py
- pythonrepo/*.py
- LICENSE
- LICENSE.md

# Add 'Lint' label to any lint file changes
Linter:
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
# The short X.Y version.
version = 'v1.1'
# The full version, including alpha/beta/rc tags.
release = 'v1.1.5'
release = 'v1.1.4'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
7 changes: 5 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ classifiers =
Operating System :: POSIX :: Linux
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.7
Expand All @@ -34,5 +37,5 @@ packages = find:

[options.packages.find]
exclude =
docs
tests
docs
tests
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def readFile(filename):

setup(
name="""pythonrepo""",
version="""1.1.3""",
version="""1.1.4""",
description="""Python Repo""",
long_description=readme,
install_requires=requirements,
Expand Down
Loading