Skip to content

Commit

Permalink
version 1.9.1 - add fix for older python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
abbbi committed Nov 14, 2022
1 parent 1491683 commit 62a49c9
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
7 changes: 6 additions & 1 deletion libvirtnbdbackup/outputhelper/outputhelper.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,12 @@
import zipfile
import logging
import time
from typing import IO, Literal, Union, Tuple, BinaryIO
from typing import IO, Union, Tuple, BinaryIO

try:
from typing import Literal
except ImportError:
from typing_extensions import Literal
from libvirtnbdbackup.outputhelper import exceptions

log = logging.getLogger(__name__)
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ tqdm
lz4>=2.1.2
lxml
paramiko
typing_extensions
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ long_description = Backup utility for libvirt, using latest changed block tracki
release = 1
packager = Michael Ablassmeier <abi@grinser.de>
doc_files = README.md Changelog LICENSE
requires = python3-libvirt python3-libnbd python3-lxml python3-tqdm python3-lz4 nbdkit-server nbdkit-python-plugin python3-dataclasses python3-paramiko
requires = python3-libvirt python3-libnbd python3-lxml python3-tqdm python3-lz4 nbdkit-server nbdkit-python-plugin python3-dataclasses python3-paramiko python3-typing-extensions

0 comments on commit 62a49c9

Please sign in to comment.