From 07d566cbd0c2a5a3679f24399f4a1117cdc38241 Mon Sep 17 00:00:00 2001 From: Camilo Valenzuela Date: Fri, 26 Mar 2021 15:41:55 -0300 Subject: [PATCH] Changed to 1.0.1, separeted dev requirements --- .github/workflows/tests.yml | 2 +- docs/source/conf.py | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index b3b00f1..fe12d7e 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -24,7 +24,7 @@ jobs: run: | python -m pip install --upgrade pip pip install black pytest coverage - if [ -f requirements.txt ]; then pip install -r requirements.txt; fi + if [ -f requirements.txt ]; then pip install -r requirements-dev.txt; fi - name: Black Code Formatter uses: lgeiger/black-action@v1.0.1 - name: Test with pytest diff --git a/docs/source/conf.py b/docs/source/conf.py index e6f9a03..7b166c1 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -23,7 +23,7 @@ author = "ALeRCE" # The full version, including alpha/beta/rc tags -release = "1.0.0" +release = "1.0.1" # -- General configuration --------------------------------------------------- diff --git a/setup.py b/setup.py index 379d9b6..bb4253c 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ setup( name='alerce', - version="1.0.0", + version="1.0.1", description='ALeRCE Client', author='ALeRCE Team', author_email='contact@alerce.online',