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',