Skip to content

Commit 6f842ce

Browse files
committed
update docs to reflect py3.6 minimum
1 parent d411b5a commit 6f842ce

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

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.

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)