Skip to content

Commit b026075

Browse files
committed
bump version
1 parent d9e6496 commit b026075

File tree

4 files changed

+22
-118
lines changed

4 files changed

+22
-118
lines changed

Maintaining.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,16 @@
22
33
## Updating Package
44

5-
- Make your changes
5+
- If from scratch, using `pipenv`
6+
- Install pipenv `pip install pipenv` or `pip3 install pipenv`
7+
- CD to project directory
8+
- Install using pipenv `pipenv install`
9+
- Activate and enter python env for current folder `pipenv shell`, now you are inside python env
10+
- Install project as local package `pip install -e .`
11+
- Make your code changes
612
- Increase `version` value on `./setup.py` file
7-
- To run test, run `pytest`
813
- To install the package locally with a symlink `pip install -e .`
14+
- To run test, run `pytest`
915
- To update https://pypi.org repo, run these on terminal:
1016
```bash
1117
# install setuptools & wheel

Pipfile

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
[[source]]
2+
name = "pypi"
3+
url = "https://pypi.org/simple"
4+
verify_ssl = true
5+
6+
[dev-packages]
7+
8+
[packages]
9+
10+
[requires]
11+
python_version = "3.7"

Pipfile.lock

Lines changed: 2 additions & 115 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
setuptools.setup(
1414
name="midtransclient",
15-
version="1.1.0",
15+
version="1.1.1",
1616
author="Rizda Prasetya",
1717
author_email="[email protected]",
1818
license='MIT',

0 commit comments

Comments
 (0)