Skip to content

Commit

Permalink
re-enable testing of Python 3.5 and 3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
ianare committed May 2, 2023
1 parent 840e129 commit 8bbe136
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
10 changes: 4 additions & 6 deletions .github/workflows/linting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,14 @@ jobs:
static-check:
name: Run Static Analysis
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8"]

steps:
- uses: actions/checkout@v3

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
python-version: "3.10"

- name: Cache dependencies
uses: actions/cache@v3
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,13 @@ on:
jobs:
pytest:
name: Run Tests
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
timeout-minutes: 30
strategy:
matrix:
python-version:
- "3.5"
- "3.6"
- "3.7"
- "3.8"
- "3.9"
Expand All @@ -23,7 +25,7 @@ jobs:
- uses: actions/checkout@v3

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}

Expand Down
4 changes: 2 additions & 2 deletions .pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -472,7 +472,7 @@ max-bool-expr=5
max-branches=10

# Maximum number of locals for function / method body.
max-locals=20
max-locals=25

# Maximum number of parents for a class (see R0901).
max-parents=7
Expand All @@ -484,7 +484,7 @@ max-public-methods=20
max-returns=10

# Maximum number of statements in function / method body.
max-statements=50
max-statements=60

# Minimum number of public methods for a class (see R0903).
min-public-methods=2
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Supported formats: TIFF, JPEG, PNG, Webp, HEIC
Compatibility
*************

EXIF.py is tested and officially supported on Python 3.5 to 3.10
EXIF.py is tested and officially supported on Python 3.5 to 3.11

Starting with version ``3.0.0``, Python2 compatibility is dropped *completely* (syntax errors due to type hinting).

Expand Down

0 comments on commit 8bbe136

Please sign in to comment.