Skip to content

Commit

Permalink
release 4.43.21141
Browse files Browse the repository at this point in the history
  • Loading branch information
klahnakoski committed May 21, 2021
2 parents ed63f4a + 362f354 commit d243018
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
language: python
python:
- "2.7"
- "3.6"
- "3.7"

env:
global:
Expand Down
3 changes: 3 additions & 0 deletions mo_dots/lists.py
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,9 @@ def __eq__(self, other):
except Exception:
return False

def __ne__(self, other):
return not self.__eq__(other)

def __add__(self, value):
if value == None:
return self
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
setup(
author='Kyle Lahnakoski',
author_email='kyle@lahnakoski.com',
classifiers=["Development Status :: 4 - Beta","Topic :: Software Development :: Libraries","Topic :: Software Development :: Libraries :: Python Modules","License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)","Programming Language :: Python :: 2.7","Programming Language :: Python :: 3.6","Programming Language :: Python :: 3.7"],
classifiers=["Development Status :: 4 - Beta","Topic :: Software Development :: Libraries","Topic :: Software Development :: Libraries :: Python Modules","License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)","Programming Language :: Python :: 2.7","Programming Language :: Python :: 3.7"],
description='More Dots! Dot-access to Python dicts like Javascript',
include_package_data=True,
install_requires=["mo-future==3.147.20327","mo-imports==3.149.20327"],
Expand All @@ -15,6 +15,6 @@
name='mo-dots',
packages=["mo_dots"],
url='https://github.com/klahnakoski/mo-dots',
version='4.22.21108',
version='4.43.21141',
zip_safe=False
)
3 changes: 1 addition & 2 deletions setuptools.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7"
],
"description": "More Dots! Dot-access to Python dicts like Javascript",
Expand Down Expand Up @@ -126,6 +125,6 @@
"name": "mo-dots",
"packages": ["mo_dots"],
"url": "https://github.com/klahnakoski/mo-dots",
"version": "4.22.21108",
"version": "4.43.21141",
"zip_safe": false
}

0 comments on commit d243018

Please sign in to comment.