Skip to content

Commit 8ad60d3

Browse files
committed
renaming workflowhub to wfcommons
1 parent 5f36ae0 commit 8ad60d3

28 files changed

Lines changed: 45 additions & 45 deletions

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ assignees: ''
77

88
---
99

10-
**WorkflowHub Information**
11-
- WorkflowHub version: [e.g., 0.3, master branch, etc.]
10+
**WfCommons Information**
11+
- WfCommons version: [e.g., 0.3, master branch, etc.]
1212
- Python Version: [e.g., 3.5]
1313

1414
**Describe the bug**

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@
99

1010
This Python package provides a collection of tools for:
1111

12-
- Analyzing traces of actual workflow executions;
12+
- Analyzing instances of actual workflow executions;
1313
- Producing recipes structures for creating workflow recipes for workflow generation; and
14-
- Generating synthetic realistic workflow traces.
14+
- Generating synthetic realistic workflow instances.
1515

1616
## Installation
1717

18-
WfCommons is available on [PyPI](https://pypi.org/project/workflowhub).
18+
WfCommons is available on [PyPI](https://pypi.org/project/wfcommons).
1919
WfCommons requires Python3.6+ and has been tested on Linux and macOS.
2020

2121
### Requirements
@@ -43,7 +43,7 @@ While `pip` can be used to install WfCommons, we suggest the following
4343
approach for reliable installation when many Python environments are available:
4444

4545
```
46-
$ python3 -m pip install workflowhub
46+
$ python3 -m pip install wfcommons
4747
```
4848

4949
### Retrieving the latest unstable version
@@ -87,8 +87,8 @@ that paper, as it provides a recent and general overview on the framework.
8787

8888
[build-badge]: https://github.com/wfcommons/wfcommons/workflows/Build/badge.svg
8989
[build-link]: https://github.com/wfcommons/wfcommons/actions
90-
[pypi-badge]: https://badge.fury.io/py/workflowhub.svg
91-
[pypi-link]: https://badge.fury.io/py/workflowhub
90+
[pypi-badge]: https://badge.fury.io/py/wfcommons.svg
91+
[pypi-link]: https://badge.fury.io/py/wfcommons
9292
[license-badge]: https://img.shields.io/badge/License-LGPL%20v3-blue.svg
9393
[codefactor-badge]: https://www.codefactor.io/repository/github/wfcommons/wfcommons/badge
9494
[codefactor-link]: https://www.codefactor.io/repository/github/wfcommons/wfcommons

docs/source/quickstart_installation.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Installation
22
============
33

4-
WfCommons is available on `PyPI <https://pypi.org/project/workflowhub>`_.
4+
WfCommons is available on `PyPI <https://pypi.org/project/wfcommons>`_.
55
WfCommons requires Python3.6+ and has been tested on Linux and macOS.
66

77
Requirements
@@ -40,7 +40,7 @@ approach for reliable installation when many Python environments are available:
4040

4141
.. code-block:: bash
4242
43-
$ python3 -m pip install workflowhub
43+
$ python3 -m pip install wfcommons
4444
4545
Retrieving the latest unstable version
4646
--------------------------------------

wfcommons/common/file.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env python
22
# -*- coding: utf-8 -*-
33
#
4-
# Copyright (c) 2020-2021 The WorkflowHub Team.
4+
# Copyright (c) 2020-2021 The WfCommons Team.
55
#
66
# This program is free software: you can redistribute it and/or modify
77
# it under the terms of the GNU General Public License as published by

wfcommons/common/machine.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env python
22
# -*- coding: utf-8 -*-
33
#
4-
# Copyright (c) 2020-2021 The WorkflowHub Team.
4+
# Copyright (c) 2020-2021 The WfCommons Team.
55
#
66
# This program is free software: you can redistribute it and/or modify
77
# it under the terms of the GNU General Public License as published by

wfcommons/common/task.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env python
22
# -*- coding: utf-8 -*-
33
#
4-
# Copyright (c) 2020-2021 The WorkflowHub Team.
4+
# Copyright (c) 2020-2021 The WfCommons Team.
55
#
66
# This program is free software: you can redistribute it and/or modify
77
# it under the terms of the GNU General Public License as published by

wfcommons/common/workflow.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env python
22
# -*- coding: utf-8 -*-
33
#
4-
# Copyright (c) 2020-2021 The WorkflowHub Team.
4+
# Copyright (c) 2020-2021 The WfCommons Team.
55
#
66
# This program is free software: you can redistribute it and/or modify
77
# it under the terms of the GNU General Public License as published by
@@ -49,12 +49,12 @@ def __init__(self,
4949
makespan: Optional[int] = 0.0
5050
) -> None:
5151
"""Create an object of a workflow representation."""
52-
self.description = description if description else 'Trace generated with WorkflowHub - https://workflowhub.org'
52+
self.description = description if description else 'Trace generated with WfCommons - https://wfcommons.org'
5353
self.created_at = str(datetime.utcnow().isoformat())
5454
self.schema_version = '1.0'
55-
self.wms_name = 'WorkflowHub' if not wms_name else wms_name
55+
self.wms_name = 'WfCommons' if not wms_name else wms_name
5656
self.wms_version = str(__version__) if not wms_version else wms_version
57-
self.wms_url = 'https://workflowhub.readthedocs.io/en/v{}/'.format(__version__) if not wms_url else wms_url
57+
self.wms_url = 'https://wfcommons.readthedocs.io/en/v{}/'.format(__version__) if not wms_url else wms_url
5858
self.executed_at = datetime.now().astimezone().strftime("%Y%m%dT%H%M%S%z") if not executed_at else executed_at
5959
self.makespan = makespan
6060
super().__init__(name=name, makespan=self.makespan, executedat=self.executed_at)

wfcommons/generator/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env python
22
# -*- coding: utf-8 -*-
33
#
4-
# Copyright (c) 2020-2021 The WorkflowHub Team.
4+
# Copyright (c) 2020-2021 The WfCommons Team.
55
#
66
# This program is free software: you can redistribute it and/or modify
77
# it under the terms of the GNU General Public License as published by

wfcommons/generator/generator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env python
22
# -*- coding: utf-8 -*-
33
#
4-
# Copyright (c) 2020-2021 The WorkflowHub Team.
4+
# Copyright (c) 2020-2021 The WfCommons Team.
55
#
66
# This program is free software: you can redistribute it and/or modify
77
# it under the terms of the GNU General Public License as published by

wfcommons/generator/workflow/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env python
22
# -*- coding: utf-8 -*-
33
#
4-
# Copyright (c) 2020-2021 The WorkflowHub Team.
4+
# Copyright (c) 2020-2021 The WfCommons Team.
55
#
66
# This program is free software: you can redistribute it and/or modify
77
# it under the terms of the GNU General Public License as published by

0 commit comments

Comments
 (0)