Skip to content
This repository has been archived by the owner on Dec 16, 2024. It is now read-only.

Commit

Permalink
feat: upgrade to quince
Browse files Browse the repository at this point in the history
  • Loading branch information
ziafazal authored and regisb committed Nov 16, 2023
1 parent 149e1e3 commit 1a7bd77
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ variables:
TUTOR_IMAGES: ecommerce ecommerce-worker orders-dev payment-dev
TUTOR_PYPI_PACKAGE: tutor-ecommerce
TUTOR_EXTRA_ENABLED_PLUGINS: discovery mfe
OPENEDX_RELEASE: palm
OPENEDX_RELEASE: quince
GITHUB_REPO: overhangio/tutor-ecommerce

include:
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@
include_package_data=True,
python_requires=">=3.8",
install_requires=[
"tutor>=16.0.0,<17.0.0",
"tutor-discovery>=16.0.0,<17.0.0",
"tutor-mfe>=16.0.0,<17.0.0",
"tutor>=17.0.0,<18.0.0",
"tutor-discovery>=17.0.0,<18.0.0",
"tutor-mfe>=17.0.0,<18.0.0",
],
extras_require={"dev": ["scriv"]},
entry_points={"tutor.plugin.v1": ["ecommerce = tutorecommerce.plugin"]},
Expand Down
4 changes: 2 additions & 2 deletions tutorecommerce/__about__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
__version__ = "16.0.0"
__version__ = "17.0.0"
__package_version__ = __version__

# Handle version suffix for nightly, just like tutor core.
__version_suffix__ = "nightly"
__version_suffix__ = ""

if __version_suffix__:
__version__ += "-" + __version_suffix__
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ RUN {% if is_buildkit_enabled() %}--mount=type=cache,target=/openedx/.cache/pip,
# https://pypi.org/project/setuptools/
# https://pypi.org/project/pip/
# https://pypi.org/project/wheel/
setuptools==67.7.2 pip==23.1.2. wheel==0.40.0
setuptools==68.2.2 pip==23.2.1 wheel==0.41.2

# Install a recent version of nodejs
# https://pypi.org/project/nodeenv
Expand Down

0 comments on commit 1a7bd77

Please sign in to comment.