Skip to content

Commit adbd5b6

Browse files
switch to version 0.25
1 parent 72bf86b commit adbd5b6

File tree

4 files changed

+9
-6
lines changed

4 files changed

+9
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ By [Moduland Co](http://www.moduland.ir)
4040

4141
## Installation
4242
### Source Code
43-
- Download [Version 0.23](https://github.com/moduland/Orangetool/archive/v0.23.zip) or [Latest Source ](https://github.com/Moduland/Orangetool/archive/master.zip)
43+
- Download [Version 0.25](https://github.com/moduland/Orangetool/archive/v0.25.zip) or [Latest Source ](https://github.com/Moduland/Orangetool/archive/master.zip)
4444
- `pip3 install -r requirements.txt` or `pip install -r requirements.txt` (Need root access)
4545
- `python3 setup.py install` or `python setup.py install`
4646
### PyPI

orangetool/orangetool_system.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
'''
1212
ip_pattern=r"(?:[0-9]{1,3}\.){3}[0-9]{1,3}"
1313
api_1="http://ipinfo.io/ip"
14-
VERSION="0.23"
14+
VERSION="0.25"
1515
UPDATE_URL="http://www.orangetool.ir/version"
1616
def check_update(DEBUG=False):
1717
'''

requirements.txt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
psutil
2-
requests
3-
2+
requests

setup.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,18 @@
22
setup(
33
name = 'orangetool',
44
packages = ['orangetool'],
5-
version = '0.23',
5+
version = '0.25',
66
description = 'Some useful script for Orangepi/Raspberrypi boards',
77
long_description="",
88
author = 'Moduland Co',
99
author_email = 'info@moduland.ir',
1010
url = 'https://github.com/Moduland/Orangetool',
11-
download_url = 'https://github.com/Moduland/Orangetool/tarball/v0.22',
11+
download_url = 'https://github.com/Moduland/Orangetool/tarball/v0.24',
1212
keywords = ['orangepi', 'raspberrypi', 'embedded-systems','python'],
1313
classifiers = [],
14+
install_requires=[
15+
'psutil',
16+
'requests',
17+
],
1418
license='MIT',
1519
)

0 commit comments

Comments
 (0)