Skip to content
Snippets Groups Projects
Commit 967ca043 authored by Nikolay Ivanov's avatar Nikolay Ivanov
Browse files

changed python version compatibility, version changed to 0.1.5

parent 85be942f
No related branches found
No related tags found
No related merge requests found
......@@ -13,7 +13,7 @@ The documentation can be found on [Read the Docs](https://robust-speckle-trackin
## Dependencies
- [Python](https://www.python.org/) 3.7 or later (Python 2.x is **not** supported).
- [Python](https://www.python.org/) 3.6 or later (Python 2.x is **not** supported).
- [GNU Scientific Library](https://www.gnu.org/software/gsl/) 2.4 or later.
- [LLVM's OpenMP library](http://openmp.llvm.org) 10.0.0 or later.
- [h5py](https://www.h5py.org) 2.10.0 or later.
......
This diff is collapsed.
......@@ -22,7 +22,7 @@ copyright = '2020, Nikolay Ivanov'
author = 'Nikolay Ivanov'
# The full version, including alpha/beta/rc tags
release = '0.1.4'
release = '0.1.5'
# -- General configuration ---------------------------------------------------
......
......@@ -5,7 +5,7 @@ Dependencies
------------
pyrost has the following **mandatory** runtime dependencies:
* `Python <https://www.python.org/>`_ 3.7 or later (Python 2.x is
* `Python <https://www.python.org/>`_ 3.6 or later (Python 2.x is
**not** supported).
* `GNU Scientific Library <https://www.gnu.org/software/gsl/>`_ 2.4
or later, which is used for numerical integration and pseudo-random
......@@ -43,7 +43,7 @@ Installation from source
In order to install pyrost from source you will need:
* a C++ compiler (gcc or clang will do).
* `Python <https://www.python.org/>`_ 3.7 or later (Python 2.x is
* `Python <https://www.python.org/>`_ 3.6 or later (Python 2.x is
**not** supported).
* `GNU Scientific Library <https://www.gnu.org/software/gsl/>`_ 2.4
or later, which is used for numerical integration and pseudo-random
......
......@@ -42,7 +42,7 @@ with open('README.md', 'r') as readme:
long_description = readme.read()
setup(name='pyrost',
version='0.1.4',
version='0.1.5',
author='Nikolay Ivanov',
author_email="nikolay.ivanov@desy.de",
long_description=long_description,
......@@ -60,4 +60,4 @@ setup(name='pyrost',
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent"
],
python_requires='>=3.7')
python_requires='>=3.6')
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment