Skip to content

Commit

Permalink
Perfection
Browse files Browse the repository at this point in the history
  • Loading branch information
dabacon committed Feb 13, 2021
1 parent 0987a75 commit 6236f9d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ tester.add_equality_group(MyObject("a"), MyObject("a"))
# in this new group are not equal to those in the perviously added group.
# So, for example, this would raise an `AssertionError` if it was
# true that `MyObject("a")` was equal to `MyObject("b")`.
tester.add_equality_group(MyObject("b"), MyObject("b")
tester.add_equality_group(MyObject("b"), MyObject("b"))
```


Expand Down
2 changes: 1 addition & 1 deletion pymore/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.

__version__ = "0.1.1"
__version__ = "0.1.2"

from pymore.equals_tester import EqualsTester
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@

setup(
name=name,
version="0.1.1",
version="0.1.2",
url="http://github.com/dabacon/pymore",
author="The pymore Developers",
author_email="[email protected]",
Expand Down

0 comments on commit 6236f9d

Please sign in to comment.