Skip to content

Commit

Permalink
Add Python 3.12 in tests and other lists
Browse files Browse the repository at this point in the history
  • Loading branch information
markkuleinio committed Jan 4, 2024
1 parent 9d451cc commit ed6b312
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
8 changes: 5 additions & 3 deletions .github/ISSUE_TEMPLATE/bug_report.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ body:
attributes:
label: pynetbox version
description: What version of pynetbox are you currently running?
placeholder: v7.1.0
placeholder: v7.3.0
validations:
required: true
- type: input
attributes:
label: NetBox version
description: What version of NetBox are you currently running?
placeholder: v3.6.0
placeholder: v3.7.0
validations:
required: true
- type: dropdown
Expand All @@ -30,6 +30,8 @@ body:
- "3.9"
- "3.10"
- "3.11"
- "3.12"
- "3.13alpha/beta"
validations:
required: true
- type: textarea
Expand All @@ -42,7 +44,7 @@ body:
while adequately illustrating the issue. For example:
```python
>>> import pynetbox
>>> nb = pynebox.api('https://netbox.example.com', token='my-token')
>>> nb = pynetbox.api('https://netbox.example.com', token='my-token')
```
Note: **do not utilize the demo instance** for replicating suspected bugs,
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/py3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python: ["3.8", "3.9", "3.10", "3.11"]
python: ["3.8", "3.9", "3.10", "3.11", "3.12"]
netbox: ["3.3", "3.4", "3.5", "3.6", "3.7"]

steps:
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,6 @@
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
)

0 comments on commit ed6b312

Please sign in to comment.