Skip to content

Commit

Permalink
build: Drop python 3.8 support and add 3.12
Browse files Browse the repository at this point in the history
This commit also fixes a bug in the tox.ini file where we weren't
running the quality tests correctly if you run just `tox`
  • Loading branch information
feanil committed Sep 10, 2024
1 parent abb675e commit 38e989a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ jobs:
strategy:
matrix:
python-version:
- '3.8'
- '3.11'
- '3.12'
TOX_ENV:
- csslint
- eslint
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ def is_requirement(line):

setup(
name='xblock-sql-grader',
version='0.6.0',
version='1.0.0',
description='SQL Grader XBlock', # TODO: write a better description.
license='AGPLv3',
long_description=README,
Expand Down Expand Up @@ -154,7 +154,7 @@ def is_requirement(line):
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
)
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
envlist =
csslint
eslint
py{38, 311}-django{42}quality
py{311,312}-django{42},quality

[testenv]
deps =
Expand Down

0 comments on commit 38e989a

Please sign in to comment.