Skip to content

Commit

Permalink
Merge pull request #54 from jan-janssen/dependabot/pip/pillow-10.3.0
Browse files Browse the repository at this point in the history
Bump pillow from 10.2.0 to 10.3.0
  • Loading branch information
jan-janssen authored Apr 4, 2024
2 parents ba309b4 + d4fd3d9 commit 6521ec1
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .ci_support/environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ dependencies:
- pyotp=2.9.0
- pyzbar=0.1.9
- zbar=0.10
- pillow=10.2.0
- pillow=10.3.0
1 change: 1 addition & 0 deletions pyauthenticator/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
Generate two factor authentication codes on the command line
"""

from pyauthenticator.share import generate_qrcode
from pyauthenticator.share import get_two_factor_code as get_two_factor_code_internal
from pyauthenticator.share import load_config
Expand Down
1 change: 1 addition & 0 deletions pyauthenticator/__main__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
Generate two factor authentication codes on the command line
"""

import argparse
import sys

Expand Down
1 change: 1 addition & 0 deletions pyauthenticator/share.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
Shared functionality to generate two factor authentication codes
"""

import json
import os
from inspect import signature
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
'pyotp==2.9.0',
'qrcode==7.4.2',
'pyzbar==0.1.9',
'pillow==10.2.0',
'pillow==10.3.0',
],
cmdclass=versioneer.get_cmdclass(),
entry_points={
Expand Down

0 comments on commit 6521ec1

Please sign in to comment.