Skip to content

Commit b6fd94e

Browse files
committed
Restrict typing dependency to Python < 3.5
1 parent a25c419 commit b6fd94e

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -294,6 +294,11 @@ or with [tox](https://pypi.org/project/tox/) installed:
294294
Changelog
295295
=========
296296

297+
Unreleased
298+
-----
299+
300+
- Add type hints and expose them to users ([@qnighy])([#172])
301+
297302
0.10.1
298303
-----
299304
- Fix parsing of variable without a value ([@asyncee])([@bbc2])([#158])

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
bumpversion
2-
typing
2+
typing; python_version<"3.5"
33
click
44
flake8>=2.2.3
55
ipython

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
'dotenv': ['py.typed'],
3434
},
3535
install_requires=[
36-
'typing',
36+
"typing; python_version<'3.5'",
3737
],
3838
extras_require={
3939
'cli': ['click>=5.0', ],

0 commit comments

Comments
 (0)