Skip to content

Commit 55389af

Browse files
committed
give up 2.6 support
1 parent 3c9ceba commit 55389af

File tree

3 files changed

+15
-4
lines changed

3 files changed

+15
-4
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# gsdata-python-sdk
22

3-
![MIT](https://img.shields.io/npm/l/express.svg) [![Build Status](https://travis-ci.org/superalsrk/gsdata-python-sdk.svg?branch=master&v=9)](https://travis-ci.org/superalsrk/gsdata-python-sdk)
3+
![MIT](https://img.shields.io/npm/l/express.svg) [![Build Status](https://travis-ci.org/superalsrk/gsdata-python-sdk.svg?branch=master&v=11)](https://travis-ci.org/superalsrk/gsdata-python-sdk)
44

55

66
### 前言

gsdata_tests/test_gsdata.py

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,16 @@
11
# -*- coding: utf-8 -*-
22

3-
import unittest
3+
import sys
4+
5+
if (sys.version_info < (2,7)):
6+
import unittest2 as unittest
7+
else:
8+
import unittest
9+
410
import json
511
from gsdata import Signature
612
from gsdata import Gsdata
713

8-
914
class TestGsdata(unittest.TestCase):
1015
def test_md5(self):
1116
assert Signature.md5('{"appid":"xto3s5r4utwlloii2aa0","loginname":"[email protected]"}94GSwqAL2PwdPbM9N02KNHuf9') == 'f91e20ab7736cd33ed312e1fb0ab8d98'

setup.py

+7-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from setuptools import setup
33
setup(
44
name='gsdata',
5-
version='1.0.0',
5+
version='1.1.0',
66
description='gsdata unoffical python sdk',
77
url='https://github.com/superalsrk/gsdata-python-sdk',
88
author='SRK.Lyu',
@@ -13,6 +13,12 @@
1313
"Development Status :: 4 - Beta",
1414
"Intended Audience :: Developers",
1515
"Topic :: Internet :: WWW/HTTP",
16+
'Programming Language :: Python',
17+
'Programming Language :: Python :: 2.7',
18+
'Programming Language :: Python :: 3',
19+
'Programming Language :: Python :: 3.3',
20+
'Programming Language :: Python :: 3.4',
21+
'Programming Language :: Python :: 3.5',
1622
],
1723
keywords='gsdata unoffical python sdk',
1824
license='MIT',

0 commit comments

Comments
 (0)