Skip to content

Commit

Permalink
chore: Updating Dependencies (#6)
Browse files Browse the repository at this point in the history
* chore: Updating Dependencies

* Update test.yaml
  • Loading branch information
SudoSpartanDan authored Jun 7, 2023
1 parent 527740a commit ba963df
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up Python 3.9
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Install build tools
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6, 3.7, 3.8, 3.9]
python-version: [3.7, 3.8, 3.9]

steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand Down
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

setup(
name='aad-token-verify',
version='0.1.4',
version='0.2.0',
description='A python utility library to verify an Azure Active Directory OAuth token',
long_description=long_description,
long_description_content_type='text/markdown',
Expand All @@ -28,12 +28,12 @@
'License :: OSI Approved :: MIT License',
'Topic :: Software Development :: Libraries :: Python Modules',
],
python_requires='>=3.6',
python_requires='>=3.7',
install_requires=[
'requests>=2.25.1,<3',
'PyJWT>=2.1.0,<3',
'cryptography>=3.3.2<4',
'cachetools>=4.2.2,<5'
'cryptography>=41.0.1,<42',
'cachetools>=5.3.1,<6'
],
keywords='azure ad token oauth verify jwt',
packages=['aad_token_verify'],
Expand Down

0 comments on commit ba963df

Please sign in to comment.