Skip to content

Commit

Permalink
feat: add support for sumac
Browse files Browse the repository at this point in the history
  • Loading branch information
Ian2012 committed Nov 5, 2024
1 parent ec8fd1b commit b3ea70e
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 11 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,12 @@ on:
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.12']
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
python-version: '3.12'
- name: Upgrade pip
run: python -m pip install --upgrade pip
- name: Install dependencies
Expand Down
19 changes: 14 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ build-backend = "setuptools.build_meta"
[project]
name = "tutor-contrib-celery"
dynamic = ["version"]
description = "A Tutor plugin to manage our opinionated Open edX operations"
description = "A Tutor plugin to manage celery deployments"
readme = "README.md"
requires-python = ">=3.8"
requires-python = ">=3.9"
license = { text = "AGPLv3" }
authors = [
{ name = "eduNEXT" }
Expand All @@ -18,17 +18,23 @@ classifiers = [
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"tutor>=18.0.0,<19.0.0"
"tutor>=19.0.0,<20.0.0"
]

optional-dependencies = { dev = ["python-semantic-release", "pylint", "black"]}
[project.optional-dependencies]
dev = [
"python-semantic-release",
"black",
"mypy",
"pylint",
"isort",
]

[project.urls]
Homepage = "https://github.com/edunext/tutor-contrib-celery"
Expand Down Expand Up @@ -69,5 +75,8 @@ exclude_commit_patterns = [
"style:",
"chore:",
"test:",
"revert:",
"perf:",
"refactor:",
"ci:",
]
2 changes: 1 addition & 1 deletion tutorcelery/__about__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "18.3.0"
__version__ = "19.0.0"

0 comments on commit b3ea70e

Please sign in to comment.