Skip to content

Commit 36a1511

Browse files
committed
Merge tag '22.0.0' into develop
2 parents d411b5a + 9908bc8 commit 36a1511

File tree

5 files changed

+19
-9
lines changed

5 files changed

+19
-9
lines changed

CHANGELOG

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
22
ChangeLog
33
*********
44

5+
22.0.0 (2022-05-27)
6+
===================
7+
- Feature: Improve Hypothes.is annotations by allowing the parent frame to pass in its url when
8+
turning on the annotator.
9+
- Feature: Enable syntax highlighting for .boa files (https://boa.cs.iastate.edu/) and bump Pygments
10+
dep to 2.12.0.
11+
- Code: Upgrade MFR's Dockerfile to be based off python3.6 and Debian buster. Remove manual gosu
12+
installation and fetch from apt-get instead. python3.6 is now the only supported python version.
13+
- Code: Migrate CI from TravisCI to Github Actions.
14+
515
20.0.1 (2020-10-21)
616
===================
717
- Feature: Add flags to toggle logging of MFR events to specific Keen collections.

CONTRIBUTING.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ Clone the repo:
2323
Configure development environment and install the development dependencies.
2424

2525
.. note::
26-
Python 3.5 or greater, `R`_, and `pspp`_ are required.
27-
Python 3.6 is reccomended. It's recommended that a python version manager such as `pyenv`_ is used and that you use a virtual environment such as `pyenv-virtualenv`_ during development.
26+
Python 3.6 or greater, `R`_, and `pspp`_ are required.
27+
It's recommended that a python version manager such as `pyenv`_ is used and that you use a virtual environment such as `pyenv-virtualenv`_ during development.
2828

2929
.. _R: https://www.r-project.org/
3030
.. _pspp: https://www.gnu.org/software/pspp/

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ A Python package for rendering files to HTML via an embeddable iframe.
88

99
### Compatibility
1010

11-
MFR is compatible with Python 3.5 (tested up to 3.5.3) and 3.6.
11+
MFR is compatible with Python 3.6.
1212

1313
### Documentation
1414

1515
Documentation available at: http://modular-file-renderer.readthedocs.io/en/latest/
1616

1717
### Setting up
1818

19-
Install the latest version of python3.5.
19+
Install the latest version of python3.6.
2020

2121
For MacOSX users:
2222

@@ -33,12 +33,12 @@ apt-get install python3
3333
apt-get install pspp unoconv
3434
```
3535

36-
After installing python3.5, create the virtual environment with the following commands:
36+
After installing python3.6, create the virtual environment with the following commands:
3737

3838
```bash
3939
pip install virtualenv
4040
pip install virtualenvwrapper
41-
mkvirtualenv --python=`which python3.5` mfr
41+
mkvirtualenv --python=`which python3.6` mfr
4242

4343
pip install setuptools==37.0.0
4444
pip install invoke==0.13.0
@@ -98,7 +98,7 @@ Interested in adding support for a new provider or file format? Check out the CO
9898

9999
### License
100100

101-
Copyright 2013-2018 Center for Open Science
101+
Copyright 2013-2022 Center for Open Science
102102

103103
Licensed under the Apache License, Version 2.0 (the "License");
104104
you may not use this file except in compliance with the License.

mfr/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '20.0.1'
1+
__version__ = '22.0.0'

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def parse_requirements(requirements):
3030
'Natural Language :: English',
3131
'Intended Audience :: Developers',
3232
'Programming Language :: Python :: 3',
33-
'Programming Language :: Python :: 3.5',
33+
'Programming Language :: Python :: 3.6',
3434
'Development Status :: 5 - Production/Stable',
3535
'License :: OSI Approved :: Apache Software License',
3636
],

0 commit comments

Comments
 (0)