Skip to content
This repository has been archived by the owner on Oct 16, 2023. It is now read-only.

Commit

Permalink
Added to init.py and corrected uri
Browse files Browse the repository at this point in the history
  • Loading branch information
t92549 committed Aug 16, 2022
1 parent 71a3e46 commit 41bb86c
Show file tree
Hide file tree
Showing 7 changed files with 43 additions and 7 deletions.
3 changes: 3 additions & 0 deletions cd/updateGafferVersion.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ sed -i'' "s/gaffer2:$oldVersion/gaffer2:$newVersion/g" NOTICES
sed -i'' "s/__version__ = \"$oldVersion\"/__version__ = \"$newVersion\"/g" python-shell/__init__.py
sed -i'' "s/__version__ = \"$oldVersion\"/__version__ = \"$newVersion\"/g" python-shell/src/__init__.py
sed -i'' "s/__version__ = \"$oldVersion\"/__version__ = \"$newVersion\"/g" python-shell/src/gafferpy/__init__.py
sed -i'' "s/__version__ = \"$oldVersion\"/__version__ = \"$newVersion\"/g" python-shell/src/fishbowl/__init__.py
sed -i'' "s/__version__ = \"$oldVersion\"/__version__ = \"$newVersion\"/g" python-shell/src/gafferpy_examples/__init__.py
sed -i'' "s/__version__ = \"$oldVersion\"/__version__ = \"$newVersion\"/g" python-shell/src/test/__init__.py

git add pom.xml
git add NOTICES
Expand Down
11 changes: 11 additions & 0 deletions python-shell/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
__version__ = "2.0.0-alpha-0.3"

__title__ = "gafferpy"
__description__ = "Gaffer Python Shell"
__uri__ = "https://github.com/gchq/gaffer-tools"
__doc__ = __description__ + " <" + __uri__ + ">"

__author__ = "GCHQ"

__license__ = "Apache 2.0"
__copyright__ = "Crown Copyright (c) 2016-2022"
4 changes: 2 additions & 2 deletions python-shell/src/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

__title__ = "gafferpy"
__description__ = "Gaffer Python Shell"
__uri__ = "https://github.com/gchq/gafferpy-tools"
__uri__ = "https://github.com/gchq/gaffer-tools"
__doc__ = __description__ + " <" + __uri__ + ">"

__author__ = "GCHQ"

__license__ = "Apache 2.0"
__copyright__ = "Crown Copyright (c) 2016-2017"
__copyright__ = "Crown Copyright (c) 2016-2022"
11 changes: 11 additions & 0 deletions python-shell/src/fishbowl/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
__version__ = "2.0.0-alpha-0.3"

__title__ = "fishbowl"
__description__ = "Gaffer Python Shell"
__uri__ = "https://github.com/gchq/gaffer-tools"
__doc__ = __description__ + " <" + __uri__ + ">"

__author__ = "GCHQ"

__license__ = "Apache 2.0"
__copyright__ = "Crown Copyright (c) 2016-2022"
4 changes: 2 additions & 2 deletions python-shell/src/gafferpy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

__title__ = "gafferpy"
__description__ = "Gaffer Python Shell"
__uri__ = "https://github.com/gchq/gafferpy-tools"
__uri__ = "https://github.com/gchq/gaffer-tools"
__doc__ = __description__ + " <" + __uri__ + ">"

__author__ = "GCHQ"

__license__ = "Apache 2.0"
__copyright__ = "Crown Copyright (c) 2016-2017"
__copyright__ = "Crown Copyright (c) 2016-2022"
6 changes: 3 additions & 3 deletions python-shell/src/gafferpy_examples/__init__.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
__version__ = "2.0.0-alpha-0.3"

__title__ = "gafferpy"
__title__ = "gafferpy_examples"
__description__ = "Gaffer Python Shell"
__uri__ = "https://github.com/gchq/gafferpy-tools"
__uri__ = "https://github.com/gchq/gaffer-tools"
__doc__ = __description__ + " <" + __uri__ + ">"

__author__ = "GCHQ"

__license__ = "Apache 2.0"
__copyright__ = "Crown Copyright (c) 2016-2017"
__copyright__ = "Crown Copyright (c) 2016-2022"
11 changes: 11 additions & 0 deletions python-shell/src/test/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
__version__ = "2.0.0-alpha-0.3"

__title__ = "gafferpy"
__description__ = "Gaffer Python Shell"
__uri__ = "https://github.com/gchq/gaffer-tools"
__doc__ = __description__ + " <" + __uri__ + ">"

__author__ = "GCHQ"

__license__ = "Apache 2.0"
__copyright__ = "Crown Copyright (c) 2016-2022"

0 comments on commit 41bb86c

Please sign in to comment.