Skip to content

Commit

Permalink
perf: add support for Palm version (#55)
Browse files Browse the repository at this point in the history
BREAKING CHANGE: add support for palm

* feat: some configurations have been reverted to the previous version
  • Loading branch information
Ever3tt authored Dec 13, 2023
1 parent 99ab780 commit 6f1f12a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ This plugin works with some docker images. These are defined by default
if you have different images that aren't based on these, you can have some problems.

```yaml
DOCKER_IMAGE_OPENEDX: "docker.io/ednxops/distro-edunext-edxapp:olmo"
DOCKER_IMAGE_OPENEDX_DEV: "docker.io/ednxops/distro-edunext-edxapp-dev:olmo"
DOCKER_IMAGE_OPENEDX: "docker.io/ednxops/distro-edunext-edxapp:palma"
DOCKER_IMAGE_OPENEDX_DEV: "docker.io/ednxops/distro-edunext-edxapp-dev:palma"
```
Also, you need an edx-platform version distro compatible.
Expand All @@ -51,14 +51,15 @@ Also, you need an edx-platform version distro compatible.
| maple | mango | v13 |
| nutmeg | nuez | v14 |
| olive | olmo | v15 |
| palm | palma | v16 |
:warning: **NOTE**: From Olmo version Distro has not defaulted packages. Now it is necessary to add the packages you want in ``config.yml`` file. See [How to add a new package](./docs/how_to_add_new_packages.rst)
You can find distro releases on https://github.com/edunext/edunext-platform.
```yaml
EDX_PLATFORM_REPOSITORY: "https://github.com/eduNEXT/edunext-platform.git"
EDX_PLATFORM_VERSION: "ednx-release/olmo.master"
EDX_PLATFORM_VERSION: "ednx-release/palma.master"
```
# Packages
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ def load_about():
long_description=load_readme(),
packages=find_packages(exclude=["tests*"]),
include_package_data=True,
python_requires=">=3.6",
install_requires=["tutor>=15.0.0, <16", "click", "schema"],
python_requires=">=3.8",
install_requires=["tutor>=16.0.0, <17", "click", "schema"],
extras_require={
"test": ["behave", "pytest", "pylint", "pytest-mock", "pycodestyle", "isort", "schema"]
},
Expand Down

0 comments on commit 6f1f12a

Please sign in to comment.