Skip to content

Commit

Permalink
perf: add support for Palm version
Browse files Browse the repository at this point in the history
BREAKING CHANGE: add support for palm
  • Loading branch information
Ever3tt committed Nov 30, 2023
1 parent 99ab780 commit d63be85
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 7 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

---

## [16.0.0] - 2023-11-30

### Features

- Add support for the latest Open edX + eduNEXT release (Palm).

## v15.3.1 - 2023-11-02

### [15.3.1](https://github.com/eduNEXT/tutor-contrib-edunext-distro/compare/v15.3.0...v15.3.1) (2023-11-02)
Expand Down
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
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 15.3.1
current_version = 16.0.0
commit = False
tag = False

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
2 changes: 1 addition & 1 deletion tutordistro/__about__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
Tutor Distro version.
"""

__version__ = "15.3.1"
__version__ = "16.0.0"

0 comments on commit d63be85

Please sign in to comment.