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

Merge branch 'dev0'

parents 6b9717ea 967ca043
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 ...@@ -13,7 +13,7 @@ The documentation can be found on [Read the Docs](https://robust-speckle-trackin
## Dependencies ## 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. - [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. - [LLVM's OpenMP library](http://openmp.llvm.org) 10.0.0 or later.
- [h5py](https://www.h5py.org) 2.10.0 or later. - [h5py](https://www.h5py.org) 2.10.0 or later.
......
...@@ -22,7 +22,7 @@ copyright = '2020, Nikolay Ivanov' ...@@ -22,7 +22,7 @@ copyright = '2020, Nikolay Ivanov'
author = 'Nikolay Ivanov' author = 'Nikolay Ivanov'
# The full version, including alpha/beta/rc tags # The full version, including alpha/beta/rc tags
release = '0.1.4' release = '0.1.5'
# -- General configuration --------------------------------------------------- # -- General configuration ---------------------------------------------------
......
...@@ -5,7 +5,7 @@ Dependencies ...@@ -5,7 +5,7 @@ Dependencies
------------ ------------
pyrost has the following **mandatory** runtime 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). **not** supported).
* `GNU Scientific Library <https://www.gnu.org/software/gsl/>`_ 2.4 * `GNU Scientific Library <https://www.gnu.org/software/gsl/>`_ 2.4
or later, which is used for numerical integration and pseudo-random or later, which is used for numerical integration and pseudo-random
...@@ -43,7 +43,7 @@ Installation from source ...@@ -43,7 +43,7 @@ Installation from source
In order to install pyrost from source you will need: In order to install pyrost from source you will need:
* a C++ compiler (gcc or clang will do). * 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). **not** supported).
* `GNU Scientific Library <https://www.gnu.org/software/gsl/>`_ 2.4 * `GNU Scientific Library <https://www.gnu.org/software/gsl/>`_ 2.4
or later, which is used for numerical integration and pseudo-random or later, which is used for numerical integration and pseudo-random
......
...@@ -42,7 +42,7 @@ with open('README.md', 'r') as readme: ...@@ -42,7 +42,7 @@ with open('README.md', 'r') as readme:
long_description = readme.read() long_description = readme.read()
setup(name='pyrost', setup(name='pyrost',
version='0.1.4', version='0.1.5',
author='Nikolay Ivanov', author='Nikolay Ivanov',
author_email="nikolay.ivanov@desy.de", author_email="nikolay.ivanov@desy.de",
long_description=long_description, long_description=long_description,
...@@ -60,4 +60,4 @@ setup(name='pyrost', ...@@ -60,4 +60,4 @@ setup(name='pyrost',
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)", "License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent" "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