From f00b2d2437a60f107be59f9fe8c6c12e0ebd7d69 Mon Sep 17 00:00:00 2001 From: Jorge Date: Fri, 12 Mar 2021 14:27:26 -0500 Subject: [PATCH] v3.0.0, first release for the Flask-based pman --- .github/workflows/ci.yml | 2 +- README.rst | 6 +++--- docker-compose_dev.yml | 5 ++--- pman/config.py | 2 +- setup.py | 2 +- 5 files changed, 8 insertions(+), 9 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ea4513b3..cd03c690 100755 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -43,7 +43,7 @@ jobs: steps: - uses: actions/checkout@v2 - run: docker build -t fnndsc/pman . - - uses: FNNDSC/cube-integration-action@v1 + - uses: FNNDSC/cube-integration-action@v4 build: diff --git a/README.rst b/README.rst index 7ae32f5e..e105bf69 100755 --- a/README.rst +++ b/README.rst @@ -1,6 +1,6 @@ -############# -pman v3.0.0.0 -############# +########### +pman v3.0.0 +########### .. image:: https://img.shields.io/docker/v/fnndsc/pman?sort=semver :alt: Docker Image Version diff --git a/docker-compose_dev.yml b/docker-compose_dev.yml index 8c3f79cb..53d524b2 100755 --- a/docker-compose_dev.yml +++ b/docker-compose_dev.yml @@ -17,9 +17,8 @@ services: # necessary for a production pman. # # Since pman spins off containers of its own it needs to mount storeBase dir (where - # pfioh shares the data) into the spawned container. However, it can't mount a dir - # inside itself to the spawned container, it has to mount an actual existing - # directory in the host. This directory is passed in the STOREBASE env variable. + # pfioh shares the data) into the spawned container. This directory is passed in the + # STOREBASE env variable. environment: - STOREBASE image: ${PMANREPO}/pman:dev diff --git a/pman/config.py b/pman/config.py index 541e2eb8..b08e4887 100755 --- a/pman/config.py +++ b/pman/config.py @@ -9,7 +9,7 @@ class Config: """ DEBUG = False TESTING = False - SERVER_VERSION = "3.0.0.0" + SERVER_VERSION = "3.0.0" def __init__(self): # Environment variables diff --git a/setup.py b/setup.py index e79c9266..312e0a4e 100755 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ setup( name = 'pman', - version = '3.0.0.0', + version = '3.0.0', description = 'Process Manager', long_description = readme, author = 'FNNDSC Developers',