diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml new file mode 100644 index 0000000..1bd6ac8 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -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 diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml new file mode 100644 index 0000000..d8c9e74 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -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." diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 46897ce..874f358 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 }} diff --git a/pyproject.toml b/pyproject.toml index cdb0a49..4deac29 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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",