Skip to content

Commit

Permalink
Merge pull request #11 from OPERA-Cal-Val/dev
Browse files Browse the repository at this point in the history
v0.0.3
  • Loading branch information
cmarshak authored Jan 10, 2024
2 parents 24a9524 + bb85545 commit 6292b5f
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 9 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,15 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [PEP 440](https://www.python.org/dev/peps/pep-0440/)
and uses [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.0.3]
* Fixes PyPI workflow by removing unrecognized `License :: OSI Approved :: Apache 2.0' is not a valid classifier.`
* Fixes dependencies in pyproject.toml
* Updates readme installation instruction.
* On PyPI

## [0.0.2]
* Fixes automated workflows (first on PyPI)
* Fixes automated workflows
* Still not on PyPI

## [0.0.1]
(not on PyPI)
Expand Down
13 changes: 7 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,16 +29,17 @@ In order to easily manage dependencies, we recommend using dedicated project env
via [Anaconda/Miniconda](https://docs.conda.io/projects/conda/en/latest/user-guide/install/index.html)
or [Python virtual environments](https://docs.python.org/3/tutorial/venv.html).

1. Clone the repository and navigate to it in the ternmal.
2. Install the environment with `mamba env update -f environment.yaml`
3. Activate the environment `conda activate tile-stitcher`
4. Install the library with `pip`
1. Install the environment in this repository with `mamba env update -f environment.yml`
2. Activate the environment `conda activate tile-stitcher`
3. Install the library with `pip` via `pip install tile-stitcher`

For development, clone the repository and navigate to it in the terminal.

```
python -m pip install .
python -m pip install . -e
```

You can also install for development with `python -m pip install -e .`. Python 3.10+ is supported.
Python 3.10+ is supported.

# Notebooks

Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ description = 'Create rasters from global tiles'
license = {text = 'Apache-2.0'}
classifiers = [
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache 2.0',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
Expand All @@ -26,13 +25,13 @@ dependencies = [
"boto3",
"rasterio",
"tqdm",
"gdal",
"geopandas",
"matplotlib",
"numpy",
"pandas",
"pandera",
"shapely",
"dem-stitcher>=2.5.4",
]

[project.optional-dependencies]
Expand Down

0 comments on commit 6292b5f

Please sign in to comment.