Skip to content

Commit 3876bba

Browse files
author
cmoraes
committed
+ change documentation to use Pypi
1 parent bfe378c commit 3876bba

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ venv\Scripts\activate
2727
### Installing via pip
2828
You will need pip and git installed on your system before you run this command.
2929
```
30-
pip install git+https://github.com/controlm/ctm-python-client.git
30+
pip install ctm-python-client
3131
```
3232

3333
### Installing from source

docs_source/source/gettingstarted.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ venv\Scripts\activate.bat
3838
**Note: Requires `pip` and `git` to be installed.**
3939

4040
```shell
41-
pip install git+https://github.com/controlm/ctm-python-client.git
41+
pip install ctm-python-client
4242
```
4343

4444
### Installing from source

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
name="ctm-python-client",
99
packages=find_packages(where="src"),
1010
package_dir={"": "src"},
11-
version="2.1.2rc",
11+
version="2.1.3",
1212
description="Python Workflows for Control-M",
1313
long_description=long_description,
1414
long_description_content_type='text/markdown',

src/ctm_python_client/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
__version__ = '2.1.2'
1+
__version__ = '2.1.3'
22
__author__ = 'BMC Software'

tests/test_sanity.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ def test_version_author():
22
import ctm_python_client
33

44
assert ctm_python_client.__author__ == 'BMC Software'
5-
assert ctm_python_client.__version__ == '2.1.2'
5+
assert ctm_python_client.__version__ == '2.1.3'
66

77

0 commit comments

Comments
 (0)