Skip to content

Bump case-utils to 0.13.0, case-validation-action to 2.8.0 #24

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Aug 30, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.8, 3.9, "3.10", "3.11"]
python-version: [3.9, "3.10", "3.11"]

steps:
- uses: actions/checkout@v3
Expand All @@ -31,7 +31,7 @@ jobs:
run: |
python -m venv development
. development/bin/activate
python -m pip install --upgrade pip
python -m pip install --upgrade pip setuptools wheel
python -m pip install flake8 pylint pytest rdflib
python setup.py install
exifread2case --help
Expand All @@ -49,7 +49,7 @@ jobs:

# Run the CASE validation job to confirm all examples in exifread_output_examples are valid
- name: CASE Export Validation
uses: kchason/case-validation-action@v2.6.1
uses: kchason/case-validation-action@v2.8.0
with:
case-path: ./exifread_output_examples/
case-version: "case-1.2.0"
Expand Down
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ classifiers =
[options]
install_requires =
exifread
case_utils >= 0.11.0, < 0.12.0
case_utils >= 0.13.0, < 0.14.0
packages = find:
python_requires = >=3.8
python_requires = >=3.9

[options.entry_points]
console_scripts =
Expand Down