Skip to content

Commit

Permalink
tag ppft-1.6.6.3
Browse files Browse the repository at this point in the history
  • Loading branch information
mmckerns committed Nov 2, 2020
1 parent 3c37430 commit 907366c
Show file tree
Hide file tree
Showing 18 changed files with 38 additions and 20 deletions.
18 changes: 18 additions & 0 deletions README_MODS
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
### VERSION 1.6.6.3 ###
# see MODS*.diff for full patch (against 1.6.6)
# made these functional changes
- ...TBD...

# made these "build" changes
- edited pp*py to have version = '1.6.6.3'
- ...TBD...

### VERSION 1.6.6.2 ###
# see MODS*.diff for full patch (against 1.6.6)
# made these functional changes
- ...TBD...

# made these "build" changes
- edited pp*py to have version = '1.6.6.2'
- ...TBD...

### VERSION 1.6.6.1 ###
# see MODS*.diff for full patch (against 1.6.6)
# made these functional changes
Expand Down
2 changes: 1 addition & 1 deletion pp/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
copyright = """Copyright (c) 2015-2016 California Institute of Technology.
Copyright (c) 2016-2020 The Uncertainty Quantification Foundation."""
# comment out the following if this is a release
__version__ += '.dev0'
#__version__ += '.dev0'

#'''
#__version__ = __version__.rsplit('.',1)
Expand Down
2 changes: 1 addition & 1 deletion pp/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
copyright = """Copyright (c) 2005-2012 Vitalii Vanovschi.
Copyright (c) 2015-2016 California Institute of Technology.
Copyright (c) 2016-2020 The Uncertainty Quantification Foundation."""
__version__ = version = "1.6.6.2"
__version__ = version = "1.6.6.3"


def preprocess(msg):
Expand Down
2 changes: 1 addition & 1 deletion pp/_pp.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ def getname(obj): # just get __name__
copyright = """Copyright (c) 2005-2012 Vitalii Vanovschi.
Copyright (c) 2015-2016 California Institute of Technology.
Copyright (c) 2016-2020 The Uncertainty Quantification Foundation."""
__version__ = version = "1.6.6.2"
__version__ = version = "1.6.6.3"

# Reconnect persistent rworkers in seconds.
RECONNECT_WAIT_TIME = 5
Expand Down
2 changes: 1 addition & 1 deletion pp/auto.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
copyright = """Copyright (c) 2005-2012 Vitalii Vanovschi.
Copyright (c) 2015-2016 California Institute of Technology.
Copyright (c) 2016-2020 The Uncertainty Quantification Foundation."""
__version__ = version = "1.6.6.2"
__version__ = version = "1.6.6.3"

# broadcast every 10 sec
BROADCAST_INTERVAL = 10
Expand Down
2 changes: 1 addition & 1 deletion pp/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def b_(string): #XXX: same as six.b for 2.x?
copyright = """Copyright (c) 2005-2012 Vitalii Vanovschi.
Copyright (c) 2015-2016 California Institute of Technology.
Copyright (c) 2016-2020 The Uncertainty Quantification Foundation."""
__version__ = version = "1.6.6.2"
__version__ = version = "1.6.6.3"

def start_thread(name, target, args=(), kwargs={}, daemon=True):
"""Starts a thread"""
Expand Down
2 changes: 1 addition & 1 deletion pp/server/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
copyright = """Copyright (c) 2005-2012 Vitalii Vanovschi.
Copyright (c) 2015-2016 California Institute of Technology.
Copyright (c) 2016-2020 The Uncertainty Quantification Foundation."""
__version__ = version = "1.6.6.2"
__version__ = version = "1.6.6.3"

LISTEN_SOCKET_TIMEOUT = 20

Expand Down
2 changes: 1 addition & 1 deletion pp/server/ppserver
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ import ppft.transport as pptransport
copyright = """Copyright (c) 2005-2012 Vitalii Vanovschi.
Copyright (c) 2015-2016 California Institute of Technology.
Copyright (c) 2016-2020 The Uncertainty Quantification Foundation."""
__version__ = version = "1.6.6.2"
__version__ = version = "1.6.6.3"

LISTEN_SOCKET_TIMEOUT = 20

Expand Down
2 changes: 1 addition & 1 deletion pp/transport.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
copyright = """Copyright (c) 2005-2012 Vitalii Vanovschi.
Copyright (c) 2015-2016 California Institute of Technology.
Copyright (c) 2016-2020 The Uncertainty Quantification Foundation."""
__version__ = version = "1.6.6.2"
__version__ = version = "1.6.6.3"


# compartibility with Python 2.6
Expand Down
2 changes: 1 addition & 1 deletion ppft/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
copyright = """Copyright (c) 2015-2016 California Institute of Technology.
Copyright (c) 2016-2020 The Uncertainty Quantification Foundation."""
# comment out the following if this is a release
__version__ += '.dev0'
#__version__ += '.dev0'

#'''
#__version__ = __version__.rsplit('.',1)
Expand Down
2 changes: 1 addition & 1 deletion ppft/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
copyright = """Copyright (c) 2005-2012 Vitalii Vanovschi.
Copyright (c) 2015-2016 California Institute of Technology.
Copyright (c) 2016-2020 The Uncertainty Quantification Foundation."""
__version__ = version = "1.6.6.2"
__version__ = version = "1.6.6.3"


def preprocess(msg):
Expand Down
2 changes: 1 addition & 1 deletion ppft/_pp.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def getname(obj): # just get __name__
copyright = """Copyright (c) 2005-2012 Vitalii Vanovschi.
Copyright (c) 2015-2016 California Institute of Technology.
Copyright (c) 2016-2020 The Uncertainty Quantification Foundation."""
__version__ = version = "1.6.6.2"
__version__ = version = "1.6.6.3"

# Reconnect persistent rworkers in seconds.
RECONNECT_WAIT_TIME = 5
Expand Down
2 changes: 1 addition & 1 deletion ppft/auto.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
copyright = """Copyright (c) 2005-2012 Vitalii Vanovschi.
Copyright (c) 2015-2016 California Institute of Technology.
Copyright (c) 2016-2020 The Uncertainty Quantification Foundation."""
__version__ = version = "1.6.6.2"
__version__ = version = "1.6.6.3"

# broadcast every 10 sec
BROADCAST_INTERVAL = 10
Expand Down
2 changes: 1 addition & 1 deletion ppft/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def b_(string):
copyright = """Copyright (c) 2005-2012 Vitalii Vanovschi.
Copyright (c) 2015-2016 California Institute of Technology.
Copyright (c) 2016-2020 The Uncertainty Quantification Foundation."""
__version__ = version = "1.6.6.2"
__version__ = version = "1.6.6.3"

def start_thread(name, target, args=(), kwargs={}, daemon=True):
"""Starts a thread"""
Expand Down
2 changes: 1 addition & 1 deletion ppft/server/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
copyright = """Copyright (c) 2005-2012 Vitalii Vanovschi.
Copyright (c) 2015-2016 California Institute of Technology.
Copyright (c) 2016-2020 The Uncertainty Quantification Foundation."""
__version__ = version = "1.6.6.2"
__version__ = version = "1.6.6.3"

LISTEN_SOCKET_TIMEOUT = 20

Expand Down
2 changes: 1 addition & 1 deletion ppft/server/ppserver
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ import pp.transport as pptransport
copyright = """Copyright (c) 2005-2012 Vitalii Vanovschi.
Copyright (c) 2015-2016 California Institute of Technology.
Copyright (c) 2016-2020 The Uncertainty Quantification Foundation."""
__version__ = version = "1.6.6.2"
__version__ = version = "1.6.6.3"

LISTEN_SOCKET_TIMEOUT = 20

Expand Down
2 changes: 1 addition & 1 deletion ppft/transport.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
copyright = """Copyright (c) 2005-2012 Vitalii Vanovschi.
Copyright (c) 2015-2016 California Institute of Technology.
Copyright (c) 2016-2020 The Uncertainty Quantification Foundation."""
__version__ = version = "1.6.6.2"
__version__ = version = "1.6.6.3"


# compatibility with Python 2.6
Expand Down
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
from distutils.core import setup
has_setuptools = False

stable_version = '1.6.6.2'
stable_version = '1.6.6.3'
target_version = '1.6.6.3'
is_release = stable_version == target_version
VERSION = stable_version if is_release else target_version + '.dev0'
Expand Down Expand Up @@ -73,7 +73,7 @@
Current Release
===============
This documentation is for version ``ppft-1.6.6.2`` (a fork of ``pp-1.6.6``).
This documentation is for version ``ppft-1.6.6.3`` (a fork of ``pp-1.6.6``).
The latest released version of ``ppft`` is available from::
Expand All @@ -99,8 +99,8 @@
download the tarball, unzip, and run the installer::
[download]
$ tar -xvzf ppft-1.6.6.2.tgz
$ cd ppft-1.6.6.2
$ tar -xvzf ppft-1.6.6.3.tgz
$ cd ppft-1.6.6.3
$ python setup.py build
$ python setup.py install
Expand Down

0 comments on commit 907366c

Please sign in to comment.