Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • Christoph.Fischer/enstools-feature
1 result
Show changes
......@@ -10,7 +10,7 @@ cd enstools-feature
# Create a conda environment:
conda create --name enstools-feature python=3.7
conda create --name enstools-feature python=3.9
conda activate enstools-feature
conda config --add channels conda-forge
......@@ -23,11 +23,14 @@ conda config --set channel_priority strict
# Also need to downgrade numpy
conda install -c conda-forge cartopy
pip install wheel numpy==1.20.0
pip install wheel numpy==1.21.6
# Integrate git and the public enstools repo
pip install -e git+https://github.com/wavestoweather/enstools.git@main#egg=enstools
# enstools uses older numba due to numpy compatibility issues, but already resolved.
pip install numba --upgrade
# Install requirements for the enstools-feature package
conda install --file requirements.txt
......
......@@ -41,8 +41,8 @@ if len(sys.argv) == 2 and sys.argv[1] == "--get-version":
# perform the actual install operation
setup(name=f"enstools-{settings['PACKAGE_NAME']}",
version=get_version(settings),
author="Your Name",
author_email="your.name@your.institution.org",
author="enstools-feature team",
author_email="christoph.fischer@uni-mainz.de",
packages=[f"enstools.{settings['PACKAGE_NAME']}"],
namespace_packages=['enstools'],
)