Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Licensed to the StackStorm, Inc ('StackStorm') under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
Expand All @@ -13,3 +12,5 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

__version__ = '2.8.1'
4 changes: 3 additions & 1 deletion contrib/runners/action_chain_runner/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@
from dist_utils import fetch_requirements
from dist_utils import apply_vagrant_workaround

from action_chain_runner import __version__

BASE_DIR = os.path.dirname(os.path.abspath(__file__))
REQUIREMENTS_FILE = os.path.join(BASE_DIR, 'requirements.txt')

Expand All @@ -31,7 +33,7 @@
apply_vagrant_workaround()
setup(
name='stackstorm-runner-action-chain',
version='2.5.0',
version=__version__,
description=('Action-Chain workflow action runner for StackStorm event-driven '
'automation platform'),
author='StackStorm',
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Licensed to the StackStorm, Inc ('StackStorm') under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
Expand All @@ -13,3 +12,5 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

__version__ = '2.8.1'
4 changes: 3 additions & 1 deletion contrib/runners/announcement_runner/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@
from dist_utils import fetch_requirements
from dist_utils import apply_vagrant_workaround

from announcement_runner import __version__

BASE_DIR = os.path.dirname(os.path.abspath(__file__))
REQUIREMENTS_FILE = os.path.join(BASE_DIR, 'requirements.txt')

Expand All @@ -31,7 +33,7 @@
apply_vagrant_workaround()
setup(
name='stackstorm-runner-announcement',
version='2.5.0',
version=__version__,
description=('Announcement action runner for StackStorm event-driven automation platform'),
author='StackStorm',
author_email='info@stackstorm.com',
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Licensed to the StackStorm, Inc ('StackStorm') under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
Expand All @@ -13,3 +12,5 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

__version__ = '2.8.1'
4 changes: 3 additions & 1 deletion contrib/runners/cloudslang_runner/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@
from dist_utils import fetch_requirements
from dist_utils import apply_vagrant_workaround

from cloudslang_runner import __version__

BASE_DIR = os.path.dirname(os.path.abspath(__file__))
REQUIREMENTS_FILE = os.path.join(BASE_DIR, 'requirements.txt')

Expand All @@ -31,7 +33,7 @@
apply_vagrant_workaround()
setup(
name='stackstorm-runner-cloudslang',
version='2.5.0',
version=__version__,
description=('CloudSlang action runner for StackStorm event-driven automation platform'),
author='StackStorm',
author_email='info@stackstorm.com',
Expand Down
3 changes: 2 additions & 1 deletion contrib/runners/http_runner/http_runner/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Licensed to the StackStorm, Inc ('StackStorm') under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
Expand All @@ -13,3 +12,5 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

__version__ = '2.8.1'
4 changes: 3 additions & 1 deletion contrib/runners/http_runner/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@
from dist_utils import fetch_requirements
from dist_utils import apply_vagrant_workaround

from http_runner import __version__

BASE_DIR = os.path.dirname(os.path.abspath(__file__))
REQUIREMENTS_FILE = os.path.join(BASE_DIR, 'requirements.txt')

Expand All @@ -31,7 +33,7 @@
apply_vagrant_workaround()
setup(
name='stackstorm-runner-http',
version='2.5.0',
version=__version__,
description=('HTTP(s) action runner for StackStorm event-driven automation platform'),
author='StackStorm',
author_email='info@stackstorm.com',
Expand Down
3 changes: 2 additions & 1 deletion contrib/runners/inquirer_runner/inquirer_runner/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Licensed to the StackStorm, Inc ('StackStorm') under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
Expand All @@ -13,3 +12,5 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

__version__ = '2.8.1'
4 changes: 3 additions & 1 deletion contrib/runners/inquirer_runner/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@
from dist_utils import fetch_requirements
from dist_utils import apply_vagrant_workaround

from inquirer_runner import __version__

BASE_DIR = os.path.dirname(os.path.abspath(__file__))
REQUIREMENTS_FILE = os.path.join(BASE_DIR, 'requirements.txt')

Expand All @@ -31,7 +33,7 @@
apply_vagrant_workaround()
setup(
name='stackstorm-runner-inquirer',
version='2.5.0',
version=__version__,
description=('Inquirer action runner for StackStorm event-driven automation platform'),
author='StackStorm',
author_email='info@stackstorm.com',
Expand Down
3 changes: 2 additions & 1 deletion contrib/runners/local_runner/local_runner/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Licensed to the StackStorm, Inc ('StackStorm') under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
Expand All @@ -13,3 +12,5 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

__version__ = '2.8.1'
4 changes: 3 additions & 1 deletion contrib/runners/local_runner/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@
from dist_utils import fetch_requirements
from dist_utils import apply_vagrant_workaround

from local_runner import __version__

BASE_DIR = os.path.dirname(os.path.abspath(__file__))
REQUIREMENTS_FILE = os.path.join(BASE_DIR, 'requirements.txt')

Expand All @@ -31,7 +33,7 @@
apply_vagrant_workaround()
setup(
name='stackstorm-runner-local',
version='2.5.0',
version=__version__,
description=('Local Shell Command and Script action runner for StackStorm event-driven '
'automation platform'),
author='StackStorm',
Expand Down
3 changes: 2 additions & 1 deletion contrib/runners/mistral_v2/mistral_v2/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Licensed to the StackStorm, Inc ('StackStorm') under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
Expand All @@ -13,3 +12,5 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

__version__ = '2.8.1'
4 changes: 3 additions & 1 deletion contrib/runners/mistral_v2/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@
from dist_utils import fetch_requirements
from dist_utils import apply_vagrant_workaround

from mistral_v2 import __version__

BASE_DIR = os.path.dirname(os.path.abspath(__file__))
REQUIREMENTS_FILE = os.path.join(BASE_DIR, 'requirements.txt')

Expand All @@ -31,7 +33,7 @@
apply_vagrant_workaround()
setup(
name='stackstorm-runner-mistral-v2',
version='2.5.0',
version=__version__,
description=('Mistral v2 workflow action runner for StackStorm event-driven '
'automation platform'),
author='StackStorm',
Expand Down
3 changes: 2 additions & 1 deletion contrib/runners/noop_runner/noop_runner/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Licensed to the StackStorm, Inc ('StackStorm') under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
Expand All @@ -13,3 +12,5 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

__version__ = '2.8.1'
4 changes: 3 additions & 1 deletion contrib/runners/noop_runner/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@
from dist_utils import fetch_requirements
from dist_utils import apply_vagrant_workaround

from noop_runner import __version__

BASE_DIR = os.path.dirname(os.path.abspath(__file__))
REQUIREMENTS_FILE = os.path.join(BASE_DIR, 'requirements.txt')

Expand All @@ -31,7 +33,7 @@
apply_vagrant_workaround()
setup(
name='stackstorm-runner-noop',
version='2.5.0',
version=__version__,
description=('No-Op action runner for StackStorm event-driven automation platform'),
author='StackStorm',
author_email='info@stackstorm.com',
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Licensed to the StackStorm, Inc ('StackStorm') under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
Expand All @@ -13,3 +12,5 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

__version__ = '2.8.1'
4 changes: 3 additions & 1 deletion contrib/runners/orchestra_runner/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@
from dist_utils import fetch_requirements
from dist_utils import apply_vagrant_workaround

from orchestra_runner import __version__

BASE_DIR = os.path.dirname(os.path.abspath(__file__))
REQUIREMENTS_FILE = os.path.join(BASE_DIR, 'requirements.txt')

Expand All @@ -31,7 +33,7 @@
apply_vagrant_workaround()
setup(
name='stackstorm-runner-orchestra',
version='2.5.0',
version=__version__,
description='Orchestra workflow runner for StackStorm event-driven automation platform',
author='StackStorm',
author_email='info@stackstorm.com',
Expand Down
3 changes: 2 additions & 1 deletion contrib/runners/python_runner/python_runner/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Licensed to the StackStorm, Inc ('StackStorm') under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
Expand All @@ -13,3 +12,5 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

__version__ = '2.8.1'
4 changes: 3 additions & 1 deletion contrib/runners/python_runner/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@
from dist_utils import fetch_requirements
from dist_utils import apply_vagrant_workaround

from python_runner import __version__

BASE_DIR = os.path.dirname(os.path.abspath(__file__))
REQUIREMENTS_FILE = os.path.join(BASE_DIR, 'requirements.txt')

Expand All @@ -31,7 +33,7 @@
apply_vagrant_workaround()
setup(
name='stackstorm-runner-python',
version='2.5.0',
version=__version__,
description='Python action runner for StackStorm event-driven automation platform',
author='StackStorm',
author_email='info@stackstorm.com',
Expand Down
3 changes: 2 additions & 1 deletion contrib/runners/remote_runner/remote_runner/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Licensed to the StackStorm, Inc ('StackStorm') under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
Expand All @@ -13,3 +12,5 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

__version__ = '2.8.1'
4 changes: 3 additions & 1 deletion contrib/runners/remote_runner/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@
from dist_utils import fetch_requirements
from dist_utils import apply_vagrant_workaround

from remote_runner import __version__

BASE_DIR = os.path.dirname(os.path.abspath(__file__))
REQUIREMENTS_FILE = os.path.join(BASE_DIR, 'requirements.txt')

Expand All @@ -31,7 +33,7 @@
apply_vagrant_workaround()
setup(
name='stackstorm-runner-remote',
version='2.5.0',
version=__version__,
description=('Remote SSH shell command and script action runner for StackStorm event-driven '
'automation platform'),
author='StackStorm',
Expand Down
4 changes: 3 additions & 1 deletion contrib/runners/windows_runner/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@
from dist_utils import fetch_requirements
from dist_utils import apply_vagrant_workaround

from windows_runner import __version__

BASE_DIR = os.path.dirname(os.path.abspath(__file__))
REQUIREMENTS_FILE = os.path.join(BASE_DIR, 'requirements.txt')

Expand All @@ -31,7 +33,7 @@
apply_vagrant_workaround()
setup(
name='stackstorm-runner-windows',
version='2.5.0',
version=__version__,
description=('Windows command and script action runner for StackStorm event-driven '
'automation platform'),
author='StackStorm',
Expand Down
3 changes: 2 additions & 1 deletion contrib/runners/windows_runner/windows_runner/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Licensed to the StackStorm, Inc ('StackStorm') under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
Expand All @@ -13,3 +12,5 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

__version__ = '2.8.1'