diff --git a/README.md b/README.md index 82ac572..4d98905 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ Comprehensive documentation is available [here](https://alessiospuriomancini.git We recommend installing ``CosmoPower`` within a [Conda](https://docs.conda.io/projects/conda/en/latest/index.html) virtual environment. For example, to create and activate an environment called ``cp_env``, use: - conda create -n cp_env python=3.7 pip && conda activate cp_env + conda create -n cp_env python=3.11 pip && conda activate cp_env Once inside the environment, you can install ``CosmoPower``: diff --git a/setup.py b/setup.py index 9ed6a27..4a88abc 100644 --- a/setup.py +++ b/setup.py @@ -22,19 +22,19 @@ def read_file(file): if 'arm' in os.uname().machine: tensorflow = 'tensorflow-metal' else: - tensorflow = 'tensorflow>2.0' + tensorflow = 'tensorflow<2.14' setup(classifiers=['Operating System :: OS Independent', 'Intended Audience :: Developers', 'Intended Audience :: Science/Research' ], name='cosmopower', - version='v0.1.3', + version='v0.2.0', description='Machine Learning - accelerated Bayesian inference', long_description_content_type = "text/markdown", long_description = long_description, author='Alessio Spurio Mancini', - author_email='a.spuriomancini@ucl.ac.uk', + author_email='alessio.spuriomancini@rhul.ac.uk', license='GNU General Public License v3 (GPLv3)', url='https://github.com/alessiospuriomancini/cosmopower', packages=find_packages(),