Skip to content
Merged

1.3.0 #138

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,12 @@ jobs:
if: ${{ matrix.os == 'ubuntu-latest' && matrix.python-version != '2.7' }}
run: |
sudo apt update
sudo apt install python3-dev libgirepository1.0-dev libcairo2-dev gir1.2-secret-1 gnome-keyring
# girepository-2.0 becomes necessary since PyGobject 3.51 https://pygobject.gnome.org/changelog.html#pre-release
sudo apt install -y python3-dev libgirepository-2.0-dev libcairo2-dev gir1.2-secret-1 gnome-keyring
# The line above is different than the PyGObject install instructions:
# https://pygobject.gnome.org/getting_started.html#ubuntu-logo-ubuntu-debian-logo-debian
# because we chose to specify the exact dependencies (secret and keyring)
# rather than using the much larger gtk.
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
Expand Down
2 changes: 1 addition & 1 deletion msal_extensions/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""Provides auxiliary functionality to the `msal` package."""
__version__ = "1.2.0" # Note: During/after release, copy this number to Dockerfile
__version__ = "1.3.0" # Note: During/after release, copy this number to Dockerfile

from .persistence import (
FilePersistence,
Expand Down
Loading