diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 8742b23..2635ec4 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -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 diff --git a/msal_extensions/__init__.py b/msal_extensions/__init__.py index 384f5fb..09f0af4 100644 --- a/msal_extensions/__init__.py +++ b/msal_extensions/__init__.py @@ -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,