Skip to content

Commit

Permalink
chore: Adds support of python 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
farhan committed Feb 26, 2024
1 parent 41b94f4 commit 638fef4
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 8 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,8 @@ jobs:
runs-on: ubuntu-20.04
strategy:
matrix:
python-version:
- '3.8'
TOX_ENV: [coverage, quality, django32, django42]
python-version: ['3.8', '3.12']
TOX_ENV: [coverage, quality, django42]
steps:
- uses: actions/checkout@v2
- name: setup python
Expand Down
2 changes: 1 addition & 1 deletion invideoquiz/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
"""
from .invideoquiz import InVideoQuizXBlock

__version__ = '1.4.0'
__version__ = '1.5.0'
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,12 +150,12 @@ def get_version(file_path):
classifiers=[
'Development Status :: 5 - Production/Stable',
'Framework :: Django',
'Framework :: Django :: 3.2',
'Framework :: Django :: 4.2',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.12",
],
)
5 changes: 2 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
[tox]
downloadcache = {toxworkdir}/_download/
envlist = py38-django{32,42},coverage,quality
envlist = py{38,312}-django{42},coverage,quality

[testenv]
deps =
django32: Django>=3.2,<4.0
deps =
django42: Django>=4.2,<4.3
-rrequirements/test.txt
commands =
Expand Down

0 comments on commit 638fef4

Please sign in to comment.