diff --git a/HISTORY.rst b/HISTORY.rst index 5cfeaf9..367a939 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -12,3 +12,9 @@ History * Use environment.yaml and requirements.txt instead of pyproject.toml and replace poetry env byconda env * lock numpy to 1.23.5 + +0.1.7 (2022-12-26) +------------------ + +* fix pypi package names in the requirements.txt file +* fix python version in requirement.txt diff --git a/README.md b/README.md index 38d259c..d7e8699 100644 --- a/README.md +++ b/README.md @@ -60,7 +60,7 @@ pip install git+https://github.com/MAfarrag/earthobserve ## pip to install the last release you can easly use pip ``` -pip install earthobserve==0.1.6 +pip install earthobserve==0.1.7 ``` Quick start diff --git a/environment.yml b/environment.yml index 67e0867..efac3f8 100644 --- a/environment.yml +++ b/environment.yml @@ -1,7 +1,7 @@ channels: - conda-forge dependencies: - - python >=3.9,<3.15 + - python >=3.9,<3.11 - numpy ==1.23.5 - pip >=22.3.1 - gdal >=3.5.3 @@ -10,7 +10,7 @@ dependencies: - ecmwf-api-client >=1.6.3 - earthengine-api >=0.1.324 - joblib >=1.2.0 - - pyramids >=0.2.10 + - pyramids >=0.2.11 - loguru >=0.6.0 - pytest >=7.2.0 - pytest-cov ==4.0.0 diff --git a/requirements-dev.txt b/requirements-dev.txt index 4ecfb71..7ce99f8 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -7,6 +7,6 @@ flake8-rst-docstrings >=0.3.0 pep8-naming >=0.13.3 pre-commit >=2.20.0 pre-commit-hooks >=4.4.0 -pytest >=7.2.3 +pytest >=7.2.0 pytest-cov >= 4.0.0 reorder-python-imports >=3.9.0 diff --git a/requirements.txt b/requirements.txt index ac62d00..55154c4 100644 --- a/requirements.txt +++ b/requirements.txt @@ -7,8 +7,5 @@ netCDF4 >=1.6.1 numpy ==1.23.5 pandas >=1.4.4 pip >=22.3.1 -pyramids >=0.2.10 -pytest >=7.2.0 -pytest-cov ==4.0.0 -python >=3.9,<3.15 +pyramids-gis >=0.2.11 requests >=2.28.1 diff --git a/setup.py b/setup.py index 3fd51f1..00daa8a 100644 --- a/setup.py +++ b/setup.py @@ -7,12 +7,11 @@ history = history_file.read() requirements = [line.strip() for line in open("requirements.txt").readlines()] -requirements = requirements[1:] requirements_dev = [line.strip() for line in open("requirements-dev.txt").readlines()] setup( name="earth2observe", - version="0.1.6", + version="0.1.7", description="remote sensing package", author="Mostafa Farrag", author_email="moah.farag@gmail.come",