Skip to content

Commit

Permalink
Setting version number constants
Browse files Browse the repository at this point in the history
  • Loading branch information
alexanderrichards committed Sep 14, 2023
1 parent e13ea2f commit f172672
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ganga/GangaCore/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM centos:7
LABEL maintainer "Ulrik Egede <ulrik.egede@monash.edu>"
ARG ganga_version=8.4.2
ARG ganga_version='8.6.8'

RUN yum -y update && yum install -y wget git python3

Expand Down
2 changes: 1 addition & 1 deletion ganga/GangaCore/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def getLCGRootPath():

# ------------------------------------------------
# store Ganga version based on new git tag for this file
_gangaVersion = '8.6.0'
_gangaVersion = '8.6.8'
_development = False

# store a path to Ganga libraries
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 @@

file_path = os.path.dirname(os.path.realpath(__file__))

_gangaVersion = '8.4.2'
_gangaVersion = '8.6.8'

def version():
return _gangaVersion
Expand Down

0 comments on commit f172672

Please sign in to comment.