We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a25c419 commit b6fd94eCopy full SHA for b6fd94e
README.md
@@ -294,6 +294,11 @@ or with [tox](https://pypi.org/project/tox/) installed:
294
Changelog
295
=========
296
297
+Unreleased
298
+-----
299
+
300
+- Add type hints and expose them to users ([@qnighy])([#172])
301
302
0.10.1
303
-----
304
- Fix parsing of variable without a value ([@asyncee])([@bbc2])([#158])
requirements.txt
@@ -1,5 +1,5 @@
1
bumpversion
2
-typing
+typing; python_version<"3.5"
3
click
4
flake8>=2.2.3
5
ipython
setup.py
@@ -33,7 +33,7 @@
33
'dotenv': ['py.typed'],
34
},
35
install_requires=[
36
- 'typing',
+ "typing; python_version<'3.5'",
37
],
38
extras_require={
39
'cli': ['click>=5.0', ],
0 commit comments