Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
python-version: ['3.11', '3.12']
python-version: ['3.12']
toxenv: ["django42", "django52", "quality", "docs"]

steps:
Expand All @@ -37,7 +37,7 @@ jobs:
run: tox

- name: Run coverage
if: matrix.python-version == '3.11' && matrix.toxenv == 'django42'
if: matrix.python-version == '3.12' && matrix.toxenv == 'django42'
uses: codecov/codecov-action@v5
with:
flags: unittests
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pypi-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: setup python
uses: actions/setup-python@v6
with:
python-version: 3.11
python-version: 3.12

- name: Install pip
run: pip install -r requirements/pip.txt
Expand Down
2 changes: 1 addition & 1 deletion .readthedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ version: 2
build:
os: "ubuntu-lts-latest"
tools:
python: "3.11"
python: "3.12"

# Build documentation in the docs/ directory with Sphinx
sphinx:
Expand Down
2 changes: 1 addition & 1 deletion openedx_events/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
more information about the project.
"""

__version__ = "10.6.0"
__version__ = "11.0.0"
16 changes: 8 additions & 8 deletions requirements/base.txt
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
#
# This file is autogenerated by pip-compile with Python 3.11
# This file is autogenerated by pip-compile with Python 3.12
# by the following command:
#
# make upgrade
#
asgiref==3.11.0
asgiref==3.11.1
# via django
attrs==25.4.0
# via -r requirements/base.in
cffi==2.0.0
# via pynacl
click==8.3.1
# via edx-django-utils
django==5.2.9
django==5.2.12
# via
# -c https://raw.githubusercontent.com/openedx/edx-lint/master/edx_lint/files/common_constraints.txt
# -r requirements/base.in
Expand All @@ -29,25 +29,25 @@ edx-ccx-keys==2.0.2
# via -r requirements/base.in
edx-django-utils==8.0.1
# via -r requirements/base.in
edx-opaque-keys[django]==3.0.0
edx-opaque-keys[django]==3.1.0
# via
# -r requirements/base.in
# edx-ccx-keys
fastavro==1.12.1
# via -r requirements/base.in
psutil==7.2.1
psutil==7.2.2
# via edx-django-utils
pycparser==2.23
pycparser==3.0
# via cffi
pymongo==4.15.5
pymongo==4.16.0
# via edx-opaque-keys
pynacl==1.6.2
# via edx-django-utils
six==1.17.0
# via edx-ccx-keys
sqlparse==0.5.5
# via django
stevedore==5.6.0
stevedore==5.7.0
# via
# edx-django-utils
# edx-opaque-keys
Expand Down
22 changes: 13 additions & 9 deletions requirements/ci.txt
Original file line number Diff line number Diff line change
@@ -1,34 +1,38 @@
#
# This file is autogenerated by pip-compile with Python 3.11
# This file is autogenerated by pip-compile with Python 3.12
# by the following command:
#
# make upgrade
#
cachetools==6.2.4
# via tox
chardet==5.2.0
cachetools==7.0.3
# via tox
colorama==0.4.6
# via tox
distlib==0.4.0
# via virtualenv
filelock==3.20.2
filelock==3.25.0
# via
# python-discovery
# tox
# virtualenv
packaging==25.0
packaging==26.0
# via
# pyproject-api
# tox
platformdirs==4.5.1
platformdirs==4.9.4
# via
# python-discovery
# tox
# virtualenv
pluggy==1.6.0
# via tox
pyproject-api==1.10.0
# via tox
tox==4.33.0
python-discovery==1.1.1
# via virtualenv
tomli-w==1.2.0
# via tox
tox==4.49.0
# via -r requirements/ci.in
virtualenv==20.35.4
virtualenv==21.1.0
# via tox
Loading