Updating Service Fabric SDK to 6.0 release candidate and adding support for Python 3.5 (#28)
* Updating setup and version and history * Fixing setup typo * Fixing requests version to not conflict with msrest version * Support Python 3.5 * Updating history * Adding classifier
This commit is contained in:
Родитель
cb2419e576
Коммит
bfd90864b6
|
@ -1,7 +1,8 @@
|
|||
language: python
|
||||
python:
|
||||
- 3.6
|
||||
- 2.7
|
||||
- 3.5
|
||||
- 3.6
|
||||
git:
|
||||
depth: 3
|
||||
install:
|
||||
|
@ -16,3 +17,6 @@ jobs:
|
|||
- stage: linting
|
||||
python: 3.6
|
||||
script: scripts/verify.sh lint
|
||||
- stage: linting
|
||||
python: 3.5
|
||||
script: scripts/verify.sh lint
|
||||
|
|
|
@ -16,6 +16,12 @@ To get started, after installation run the following:
|
|||
Change Log
|
||||
==========
|
||||
|
||||
1.2.0rc1
|
||||
--------
|
||||
|
||||
- Updating to Service Fabric 6.0 SDK release candidate
|
||||
- Added support and testing for Python 3.5, for ease of install on Ubuntu
|
||||
|
||||
1.1.0
|
||||
-----
|
||||
|
||||
|
|
|
@ -17,7 +17,7 @@ def read(fname):
|
|||
|
||||
setup(
|
||||
name='sfctl',
|
||||
version='1.1.0',
|
||||
version='1.2.0rc1',
|
||||
description='Azure Service Fabric command line',
|
||||
long_description=read('README.rst'),
|
||||
url='https://github.com/Azure/service-fabric-cli',
|
||||
|
@ -32,10 +32,11 @@ setup(
|
|||
'License :: OSI Approved :: MIT License',
|
||||
'Natural Language :: English',
|
||||
'Programming Language :: Python :: 2.7',
|
||||
'Programming Language :: Python :: 3.5',
|
||||
'Programming Language :: Python :: 3.6'
|
||||
],
|
||||
keywords='servicefabric azure',
|
||||
python_requires='>=2.7,!=3.5,!=3.4,!=3.3,!=3.2,!=3.1,!=3.0,<3.7',
|
||||
python_requires='>=2.7,!=3.4,!=3.3,!=3.2,!=3.1,!=3.0,<3.7',
|
||||
packages=[
|
||||
'sfctl',
|
||||
'sfctl.helps',
|
||||
|
@ -44,8 +45,8 @@ setup(
|
|||
install_requires=[
|
||||
'knack==0.1.1',
|
||||
'msrest',
|
||||
'requests',
|
||||
'azure-servicefabric==5.6.130',
|
||||
'requests~=2.14',
|
||||
'sfctl-azure-servicefabric==6.0.0rc1',
|
||||
'pyopenssl',
|
||||
'jsonpickle'
|
||||
],
|
||||
|
|
Загрузка…
Ссылка в новой задаче