Skip to content

Commit

Permalink
fix python version and package names in pypi
Browse files Browse the repository at this point in the history
  • Loading branch information
MAfarrag committed Dec 27, 2022
1 parent edbd5c2 commit 55cc635
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 10 deletions.
6 changes: 6 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions environment.yml
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
5 changes: 1 addition & 4 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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="[email protected]",
Expand Down

0 comments on commit 55cc635

Please sign in to comment.