Skip to content

Commit

Permalink
[BB-4011] Koa upgrade: bump Python version for CI (#5)
Browse files Browse the repository at this point in the history
The Koa release uses Python 3.8, so we should be using this Python version for the CI from now on.
  • Loading branch information
Agrendalath authored Apr 8, 2021
1 parent 2dbd33e commit fc70254
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
defaults: &DEFAULT
working_directory: /home/circleci/xblock-html
docker:
- image: circleci/python:3.5
- image: circleci/python:3.8


version: 2
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ pip install https://github.com/open-craft/xblock-html-completable
```
You may specify the `-e` flag if you intend to develop on the repo.

Note that as of version 1.0.0, Python 2.7 is no longer supported. The current minimum Python version is 3.5.
Note that as of version 1.0.0, Python 2.7 is no longer supported. The current minimum Python version is 3.8.

To enable this block type, add `completable_html5` to course's advanced module list.

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def package_data(pkg, roots):

setup(
name='completable-html-xblock',
version='1.0.0',
version='1.1.0',
description='HTML XBlock will help creating and using a secure, easy-to-use and completable HTML blocks',
license='AGPL v3',
packages=[
Expand All @@ -32,7 +32,7 @@ def package_data(pkg, roots):
install_requires=[
'XBlock',
'bleach',
'html-xblock~=1.0.0',
'html-xblock~=1.1.0',
],
entry_points={
'xblock.v1': [
Expand Down

0 comments on commit fc70254

Please sign in to comment.