Skip to content

Commit

Permalink
0.0.14 - Tentative fix for #18
Browse files Browse the repository at this point in the history
  • Loading branch information
PonteIneptique committed Oct 3, 2022
1 parent ba795e7 commit 1ca7009
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
6 changes: 5 additions & 1 deletion htrvx/testing.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
from collections import defaultdict
from typing import Iterable, List, Literal, Dict, Optional, Tuple, Union, IO
from typing import Iterable, List, Dict, Optional, Tuple, Union, IO
try:
from typing import Literal
except ImportError:
from typing_extensions import Literal

import click
from lxml import etree
Expand Down
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
URL = 'https://github.com/htr-united/htrvx'
AUTHOR = 'Thibault Clérice & Ariane Pinche'
REQUIRES_PYTHON = '>=3.6.0'
VERSION = "0.0.13"
VERSION = "0.0.14"

# What packages are required for this module to be executed?

Expand All @@ -28,8 +28,10 @@

# What packages are optional?
EXTRAS = {
# 'fancy feature': ['django'],
":python_version<'3.8'": ["typing_extensions"]
}
# 'fancy feature': ['django'],
#}

# The rest you shouldn't have to touch too much :)
# ------------------------------------------------
Expand Down

0 comments on commit 1ca7009

Please sign in to comment.