Skip to content

Commit

Permalink
Merge pull request #159 from jbernal0019/master
Browse files Browse the repository at this point in the history
v3.0.0, first release for the Flask-based pman
  • Loading branch information
jbernal0019 committed Mar 12, 2021
2 parents aebb9d7 + f00b2d2 commit e4597ff
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
6 changes: 3 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
@@ -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
Expand Down
5 changes: 2 additions & 3 deletions docker-compose_dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion pman/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit e4597ff

Please sign in to comment.