Skip to content

Commit

Permalink
Merge pull request #20 from ttys0dev/update-deps
Browse files Browse the repository at this point in the history
  • Loading branch information
mlissner committed Jan 11, 2024
2 parents 66a3c10 + 5f16eea commit 208905e
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 14 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/lint.yml
Expand Up @@ -6,9 +6,9 @@ jobs:
black:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2-beta
- uses: actions/setup-python@v2
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.8"
python-version: "3.12"
- name: Black Code Formatter
uses: psf/black@stable
7 changes: 4 additions & 3 deletions .github/workflows/tests.yml
Expand Up @@ -7,13 +7,14 @@ jobs:

runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install OS dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/upload.yml
Expand Up @@ -9,7 +9,7 @@ jobs:
upload:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2.1.0
- uses: actions/checkout@v4
with:
format: space-delimited
token: ${{ secrets.GITHUB_TOKEN }}
Expand Down
6 changes: 3 additions & 3 deletions requirements-ci.txt
@@ -1,4 +1,4 @@
Pillow>=9.0.1
python-resize-image==1.1.20
Pillow
python-resize-image
boto3
botocore
botocore
9 changes: 5 additions & 4 deletions requirements.txt
@@ -1,6 +1,7 @@
python-dateutil~=2.0
lxml~=4.0
requests~=2.0
python-dateutil>=2.0
lxml>=4.0
requests>=2.0
climage
python-Levenshtein
fuzzywuzzy
fuzzywuzzy
setuptools
4 changes: 4 additions & 0 deletions setup.py
Expand Up @@ -43,6 +43,10 @@
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Libraries :: Python Modules",
Expand Down

0 comments on commit 208905e

Please sign in to comment.