Skip to content

Commit

Permalink
Bumping version number, change classifier in setup.py from a tuple to…
Browse files Browse the repository at this point in the history
… a list to avoid warning message, upaded tests to try to accomodate mock as builtin in python > 3.3
  • Loading branch information
Mitch Garnaat committed Sep 3, 2018
1 parent 1e31ec4 commit 100df48
Show file tree
Hide file tree
Showing 6 changed files with 27 additions and 10 deletions.
3 changes: 1 addition & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
boto3==1.2.3
mock==1.3.0
boto3==1.8.6
nose==1.3.7
10 changes: 6 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(
name='placebo',
version='0.8.1',
version='0.8.2',
description='Make boto3 calls that look real but have no effect',
long_description=open('README.md').read(),
author='Mitch Garnaat',
Expand All @@ -14,7 +14,7 @@
packages=find_packages(exclude=['tests*']),
package_dir={'placebo': 'placebo'},
license="Apache License 2.0",
classifiers=(
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
Expand All @@ -26,6 +26,8 @@
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5'
),
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7'
],
)
6 changes: 5 additions & 1 deletion tests/unit/test_canned.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,11 @@
import os

import boto3
import mock

try:
import mock
except ImportError:
import unittest.mock as mock

import placebo

Expand Down
6 changes: 5 additions & 1 deletion tests/unit/test_pill.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,11 @@
import os

import boto3
import mock

try:
import mock
except ImportError:
import unittest.mock as mock

import placebo.pill

Expand Down
6 changes: 5 additions & 1 deletion tests/unit/test_save.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,11 @@
import shutil

import boto3
import mock

try:
import mock
except ImportError:
import unittest.mock as mock

import placebo

Expand Down
6 changes: 5 additions & 1 deletion tests/unit/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,11 @@
import shutil

import boto3
import mock

try:
import mock
except ImportError:
import unittest.mock as mock

from placebo.utils import placebo_session

Expand Down

0 comments on commit 100df48

Please sign in to comment.