Skip to content
This repository was archived by the owner on May 5, 2025. It is now read-only.

Commit 9f3dce7

Browse files
authored
Merge pull request #55 from sserrata/hotfix-1.2.2
Hotfix 1.2.2
2 parents 2a806d4 + 9e7564f commit 9f3dce7

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

HISTORY.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
History
33
=======
44

5+
1.2.2 (2018-06-20)
6+
------------------
7+
8+
* Added pancloud.adapters to find_packages include list to resolve issue with PyPI package.
9+
510
1.2.1 (2018-06-20)
611
------------------
712

pancloud/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@
1111
from .credentials import Credentials
1212

1313
__author__ = 'Palo Alto Networks'
14-
__version__ = '1.2.1'
14+
__version__ = '1.2.2'

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.2.1
2+
current_version = 1.2.2
33
commit = True
44
tag = True
55

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@
2424

2525
setup(
2626
name='pancloud',
27-
version='1.2.1',
27+
version='1.2.2',
2828
description="Python idiomatic SDK for the Palo Alto Networks Application Framework.",
2929
long_description=readme + '\n\n' + history,
3030
author="Steven Serrata",
3131
author_email='[email protected]',
3232
url='https://github.com/PaloAltoNetworks/pancloud',
33-
packages=find_packages(include=['pancloud']),
33+
packages=find_packages(include=['pancloud', 'pancloud.adapters']),
3434
include_package_data=True,
3535
install_requires=requirements,
3636
license="ISC license",

0 commit comments

Comments
 (0)