diff --git a/msal_extensions/__init__.py b/msal_extensions/__init__.py index 28ca611..fbd898c 100644 --- a/msal_extensions/__init__.py +++ b/msal_extensions/__init__.py @@ -1,5 +1,5 @@ """Provides auxiliary functionality to the `msal` package.""" -__version__ = "0.1.2" +__version__ = "0.1.3" import sys diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..3c6e79c --- /dev/null +++ b/setup.cfg @@ -0,0 +1,2 @@ +[bdist_wheel] +universal=1 diff --git a/setup.py b/setup.py index c95e5d3..ce2845c 100644 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ ], package_data={'': ['LICENSE']}, install_requires=[ - 'msal>=0.4.1,<1.0.0', + 'msal>=0.4.1,<2.0.0', 'portalocker~=1.0', ], tests_require=['pytest'],