Skip to content

Commit

Permalink
Bump to 1.0.2 (#10)
Browse files Browse the repository at this point in the history
Only mark as types source and
move typing to text requirements (PEP0508).
  • Loading branch information
penguinolog authored May 24, 2018
1 parent 28dfdd8 commit ea46ed9
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 7 deletions.
1 change: 0 additions & 1 deletion CI_REQUIREMENTS.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
mock; python_version == "2.7"
typing>=3.6; python_version < "3.7"
-r requirements.txt
2 changes: 1 addition & 1 deletion advanced_descriptors/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
'AdvancedProperty',
)

__version__ = '1.0.1'
__version__ = '1.0.2'
__author__ = "Alexey Stepanov"
__author_email__ = '[email protected]'
__maintainers__ = {
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
six >=1.9
typing >= 3.6 ; python_version < "3.7"
5 changes: 0 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -247,11 +247,6 @@ def get_simple_vars_from_src(src):
classifiers=classifiers,
keywords=keywords,
install_requires=required,
extras_require={
':python_version < "3.7"': [
'typing>=3.6',
],
},
package_data={
'advanced_descriptors': [
os.path.basename(filename)
Expand Down

0 comments on commit ea46ed9

Please sign in to comment.