Skip to content

Commit 20c6b35

Browse files
authored
Merge pull request #34 from AzureAD/release-0.1.2
MSAL Python Extensions 0.1.2
2 parents f6d52b0 + 2014357 commit 20c6b35

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

.travis.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@ matrix:
1616
env: TOXENV=py37
1717
os: linux
1818
dist: xenial
19+
- python: "3.8"
20+
env: TOXENV=py38
21+
os: linux
22+
dist: xenial
1923
- name: "Python 3.7 on macOS"
2024
env: TOXENV=py37
2125
os: osx

msal_extensions/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""Provides auxiliary functionality to the `msal` package."""
2-
__version__ = "0.1.1"
2+
__version__ = "0.1.2"
33

44
import sys
55

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
'Development Status :: 2 - Pre-Alpha',
1717
],
1818
install_requires=[
19-
'msal>=0.4.1,<0.6.0',
19+
'msal>=0.4.1,<1.0.0',
2020
'portalocker~=1.0',
2121
],
2222
tests_require=['pytest'],

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py27,py35,py36,py37
2+
envlist = py27,py35,py36,py37,py38
33

44
[testenv]
55
deps = pytest

0 commit comments

Comments
 (0)