Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
python-version: ['3.11', '3.12']
python-version: ['3.12']
toxenv: [django42, django52, quality, package]

steps:
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 Dependencies
run: pip install -r requirements/pip.txt
Expand Down
2 changes: 1 addition & 1 deletion image_explorer/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@
"""
from .image_explorer import ImageExplorerBlock

__version__ = '3.1.0'
__version__ = '3.1.1'
8 changes: 4 additions & 4 deletions requirements/base.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# 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
Expand All @@ -8,13 +8,13 @@ appdirs==1.4.4
# via fs
asgiref==3.11.1
# via django
boto3==1.42.59
boto3==1.42.63
# via fs-s3fs
botocore==1.42.59
botocore==1.42.63
# via
# boto3
# s3transfer
django==5.2.11
django==5.2.12
# via
# -c https://raw.githubusercontent.com/edx/edx-lint/master/edx_lint/files/common_constraints.txt
# openedx-django-pyfs
Expand Down
12 changes: 7 additions & 5 deletions requirements/ci.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
#
# 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==7.0.2
cachetools==7.0.3
# via tox
colorama==0.4.6
# via tox
Expand All @@ -19,7 +19,7 @@ packaging==26.0
# via
# pyproject-api
# tox
platformdirs==4.9.2
platformdirs==4.9.4
# via
# python-discovery
# tox
Expand All @@ -28,9 +28,11 @@ pluggy==1.6.0
# via tox
pyproject-api==1.10.0
# via tox
python-discovery==1.1.0
python-discovery==1.1.1
# via virtualenv
tox==4.47.0
tomli-w==1.2.0
# via tox
tox==4.49.0
# via -r requirements/ci.in
virtualenv==21.1.0
# via tox
2 changes: 1 addition & 1 deletion requirements/pip-tools.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# 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
Expand Down
2 changes: 1 addition & 1 deletion requirements/pip.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# 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
Expand Down
16 changes: 7 additions & 9 deletions requirements/test.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# 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
Expand All @@ -18,22 +18,20 @@ astroid==4.0.4
# via
# pylint
# pylint-celery
binaryornot==0.4.4
binaryornot==0.5.0
# via cookiecutter
boto3==1.42.59
boto3==1.42.63
# via
# -r requirements/base.txt
# fs-s3fs
botocore==1.42.59
botocore==1.42.63
# via
# -r requirements/base.txt
# boto3
# s3transfer
certifi==2026.2.25
# via requests
chardet==6.0.0.post1
# via binaryornot
charset-normalizer==3.4.4
charset-normalizer==3.4.5
# via requests
click==8.3.1
# via
Expand All @@ -45,7 +43,7 @@ click-log==0.4.0
# via edx-lint
code-annotations==2.3.2
# via edx-lint
cookiecutter==2.7.0
cookiecutter==2.7.1
# via xblock-sdk
coverage[toml]==7.13.4
# via pytest-cov
Expand Down Expand Up @@ -117,7 +115,7 @@ openedx-django-pyfs==3.8.0
# xblock
packaging==26.0
# via pytest
platformdirs==4.9.2
platformdirs==4.9.4
# via pylint
pluggy==1.6.0
# via
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,6 @@ def package_data(pkg, root_list):
long_description_content_type='text/markdown',
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Framework :: Django',
'Framework :: Django :: 4.2',
Expand All @@ -127,5 +126,5 @@ def package_data(pkg, root_list):
},
packages=['image_explorer'],
package_data=package_data("image_explorer", ["static", "templates", "public", "translations"]),
python_requires=">=3.11",
python_requires=">=3.12",
)
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py{311,312}-django{42,52},quality,package
envlist = py312-django{42,52},quality,package

[pytest]
DJANGO_SETTINGS_MODULE = workbench.settings
Expand Down