From 515aeebd2ced8f726661778f8c81dcb72f8991de Mon Sep 17 00:00:00 2001 From: hanaugustin Date: Tue, 11 Apr 2023 14:52:16 +0200 Subject: [PATCH] :fix: update repo reference from ZGIS to Sen2cube-at --- Dockerfile | 2 +- README.md | 8 ++++---- setup.py | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index b15232c..19fb3db 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,6 +15,6 @@ RUN cd /home/sen2cli \ && . /home/sen2cli/.venv/sen2cli/bin/activate \ && echo "source /home/sen2cli/.venv/sen2cli/bin/activate" >> /home/sen2cli/.bashrc \ && pip install wheel \ - && pip install "git+https://github.com/ZGIS/sen2cli.git@${SEN2CLI_VERSION}" + && pip install "git+https://github.com/Sen2cube-at/sen2cli.git@${SEN2CLI_VERSION}" CMD . /home/sen2cli/.venv/sen2cli/bin/activate && /bin/bash \ No newline at end of file diff --git a/README.md b/README.md index 2569835..622202c 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ [![Project Status: WIP – Initial development is in progress, but there has not yet been a stable, usable release suitable for the public.](https://www.repostatus.org/badges/latest/wip.svg)](https://www.repostatus.org/#wip) -[![Python Version: 3.8](https://img.shields.io/badge/Python-3.8-blue.svg)](https://www.github.com/ZGIS/sen2cli) +[![Python Version: 3.8](https://img.shields.io/badge/Python-3.8-blue.svg)](https://www.github.com/Sen2cube-at/sen2cli) [![License: GNU General Public License 3.0 or later](https://img.shields.io/badge/License-GPLv3+-blue.svg)](https://www.gnu.org/licenses/gpl-3.0) # Sen2Cube.at - Commandline interface @@ -12,17 +12,17 @@ Commandline interface for Sen2Cube.at backend. Install latest commit from `main` in your current Python environment run ```bash -pip install git+https://github.com/ZGIS/sen2cli.git@main +pip install git+https://github.com/Sen2cube-at/sen2cli.git@main ``` You can also specify a version instead of `@main` e.g. ```bash -pip install git+https://github.com/ZGIS/sen2cli.git@v0.2.0 +pip install git+https://github.com/Sen2cube-at/sen2cli.git@v0.2.0 ``` ### 🐳 Docker -Download [`Dockerfile`](https://github.com/ZGIS/sen2cli/blob/main/Dockerfile) from GitHub. To build the image for the +Download [`Dockerfile`](https://github.com/Sen2cube-at/sen2cli/blob/main/Dockerfile) from GitHub. To build the image for the latest release version run ``` diff --git a/setup.py b/setup.py index a9bb1f6..ed09635 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ # Package meta-data. NAME = 'sen2cli' DESCRIPTION = 'Sen2Cube.at commandline interface.' -URL = 'https://github.com/ZGIS/sen2cli' +URL = 'https://github.com/Sen2Cube-at/sen2cli' EMAIL = 'me@example.com' AUTHOR = 'Sen2Cube.at' REQUIRES_PYTHON = '>=3.8.0'