Skip to content

Commit

Permalink
[FIX] python 3.13-dev not available and github issue templates
Browse files Browse the repository at this point in the history
  • Loading branch information
miikanissi committed May 24, 2024
1 parent ba3b626 commit 507d074
Show file tree
Hide file tree
Showing 4 changed files with 46 additions and 2 deletions.
30 changes: 30 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Bug report
description: Report a problem with Zebrafy
labels: [bug]
body:
- type: textarea
attributes:
label: "Description"
description: "A short description of the problem you are reporting."
validations:
required: true
- type: textarea
attributes:
label: "Python version"
description: "Output of `python3 --version` (Zebrafy requires python >= 3.7)"
render: markdown
placeholder: |
Python 3.11.2
validations:
required: true
- type: input
attributes:
label: "Zebrafy version"
placeholder: "zebrafy v1.1.3"
validations:
required: true
- type: textarea
attributes:
label: "Steps to reproduce"
validations:
required: true
15 changes: 15 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Feature request
description: Suggest an idea for Zebrafy
labels: [enhancement]
body:
- type: textarea
attributes:
label: "Description"
description: "A short description of the feature idea you have."
render: markdown
validations:
required: true
- type: textarea
attributes:
label: "Additional context"
description: "Any other context or screenshots about the feature."
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13-dev"]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
Expand Down
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Intended Audience :: Manufacturing",
Expand Down

0 comments on commit 507d074

Please sign in to comment.