Skip to content

Commit

Permalink
Release v1.2.1
Browse files Browse the repository at this point in the history
Misc:
- Remove exclusion of requests 2.22.0 (#277)
- Update pypi py37 support (#275)
  • Loading branch information
Murray-LIANG committed Aug 12, 2019
2 parents 3bce969 + 905870c commit bd2c831
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 6 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ python:
- "3.4"
- "3.5"
- "3.6"
- "3.7"
install:
- pip install codecov
- pip install -r requirements.txt
Expand Down
5 changes: 4 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,13 @@ StorOps: The Python Library for VNX & Unity
.. image:: https://img.shields.io/pypi/v/storops.svg
:target: https://pypi.python.org/pypi/storops

.. image:: https://img.shields.io/pypi/pyversions/storops.svg
:target: https://pypi.org/project/storops/

.. image:: https://landscape.io/github/emc-openstack/storops/master/landscape.svg?style=flat
:target: https://landscape.io/github/emc-openstack/storops/

VERSION: 1.2.0
VERSION: 1.2.1

A minimalist Python library to manage VNX/Unity systems.
This document lies in the source code and go with the release.
Expand Down
3 changes: 2 additions & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ install:
- "%PYTHON%\\python.exe -m pip install tox"
# Try to workaround the issue:
# Expected version spec in enum34;python_version<"3.4" # BSD at ;python_version<"3.4" # BSD
- "%PYTHON%\\python.exe -m pip install --upgrade pip setuptools"
# Upgrading virtualenv makes the pip inside tox being as latest as possible
- "%PYTHON%\\python.exe -m pip install --upgrade pip setuptools virtualenv"

build: off

Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
requests>=2.8.1,!=2.9.0,!=2.20.0,!=2.22.0 # Apache-2.0, cinder, manila
requests>=2.8.1,!=2.9.0,!=2.20.0 # Apache-2.0, cinder, manila
PyYAML>=3.10 # MIT, cinder, manila
six>=1.9.0 # MIT, cinder, manila
enum34;python_version<'3.4' # BSD
Expand Down
7 changes: 6 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,8 @@ def get_long_description():
version=version(),
author='Cedric Zhuang',
author_email='[email protected]',
maintainer='Dell EMC Unity OpenStack Team',
maintainer_email='[email protected]',
url='https://github.com/emc-openstack/storops',
description=get_description(),
license='Apache Software License',
Expand All @@ -75,16 +77,19 @@ def get_long_description():
packages=find_packages(),
platforms=['any'],
long_description=get_long_description(),
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Natural Language :: English',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Development Status :: 4 - Beta',
'Development Status :: 5 - Production/Stable',
'Topic :: Software Development :: Libraries',
'Topic :: Utilities',
'License :: OSI Approved :: Apache Software License',
],
Expand Down
5 changes: 4 additions & 1 deletion utility/rpm_publish/python-storops-vnx.spec
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
%global pypi_name storops

Name: python-%{pypi_name}-vnx
Version: 1.2.0
Version: 1.2.1
Release: 1%{?dist}
Summary: Library for managing Unity/VNX systems.

Expand Down Expand Up @@ -70,6 +70,9 @@ Library for managing Unity/VNX systems. Please refer to https://github.com/emc-o


%changelog
* Mon Aug 12 2019 Ryan Liang <[email protected]> - 1.2.1-1
- Release v1.2.1: https://github.com/emc-openstack/storops/releases/tag/r1.2.1

* Wed Jun 12 2019 Ryan Liang <[email protected]> - 1.2.0-1
- Release v1.2.0: https://github.com/emc-openstack/storops/releases/tag/r1.2.0

Expand Down
5 changes: 4 additions & 1 deletion utility/rpm_publish/python-storops.spec
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
# %%global pre_release dev.1

Name: python-%{pypi_name}
Version: 1.2.0
Version: 1.2.1
Release: %{?pre_release:0.%{pre_release}}%{!?pre_release:1}%{?dist}
Summary: Library for managing Unity/VNX systems.

Expand Down Expand Up @@ -134,6 +134,9 @@ Library for managing Unity/VNX systems. Please refer to https://github.com/emc-o


%changelog
* Mon Aug 12 2019 Ryan Liang <[email protected]> - 1.2.1-1
- Release v1.2.1: https://github.com/emc-openstack/storops/releases/tag/r1.2.1

* Wed Jun 12 2019 Ryan Liang <[email protected]> - 1.2.0-1
- Release v1.2.0: https://github.com/emc-openstack/storops/releases/tag/r1.2.0

Expand Down

0 comments on commit bd2c831

Please sign in to comment.