Skip to content

Commit

Permalink
feat: add support for sumac (#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ian2012 authored Dec 17, 2024
1 parent 1c8cf03 commit 3d050c4
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jobs:
python-version: ['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
16 changes: 13 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ 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.9"
license = { text = "AGPLv3" }
Expand All @@ -24,10 +24,17 @@ classifiers = [
"Programming Language :: Python :: 3.12",
]
dependencies = [
"tutor>=18.2,<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 @@ -68,5 +75,8 @@ exclude_commit_patterns = [
"style:",
"chore:",
"test:",
"revert:",
"perf:",
"refactor:",
"ci:",
]

0 comments on commit 3d050c4

Please sign in to comment.