Skip to content

Commit

Permalink
Remove now unnecessary importlib backport
Browse files Browse the repository at this point in the history
  • Loading branch information
JockeTF committed Sep 25, 2024
1 parent 95816c0 commit ddbaf47
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
1 change: 1 addition & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
fail-fast: false
python-version:
- '3.8'
- '3.9'
Expand Down
2 changes: 1 addition & 1 deletion fimfarchive/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
import os
import shutil
from importlib import import_module
from importlib_resources import files
from importlib.resources import files
from pathlib import Path
from typing import (
cast, Any, Callable, Dict, Iterator,
Expand Down
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ dependencies = [
"arrow~=1.3",
"bbcode~=1.1",
"blinker~=1.8",
"importlib-resources~=6.4",
"jinja2~=3.1",
"jmespath~=1.0",
"jsonapi-client",
Expand Down
2 changes: 1 addition & 1 deletion tests/fixtures/responses.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
from typing import Any, ContextManager, Dict, Iterator, Optional, Union, Type

import pytest
from importlib_resources import as_file, files
from importlib.resources import as_file, files
from pytest import FixtureRequest
from requests import Session, Response
from requests.sessions import PreparedRequest
Expand Down

0 comments on commit ddbaf47

Please sign in to comment.