You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by GitBox <gi...@apache.org> on 2019/01/09 23:08:39 UTC

[GitHub] kaxil commented on a change in pull request #4468: [AIRFLOW-3662] Add dependency for Enum

kaxil commented on a change in pull request #4468: [AIRFLOW-3662] Add dependency for Enum
URL: https://github.com/apache/airflow/pull/4468#discussion_r246581051
 
 

 ##########
 File path: setup.py
 ##########
 @@ -304,6 +304,7 @@ def do_setup():
             'configparser>=3.5.0, <3.6.0',
             'croniter>=0.3.17, <0.4',
             'dill>=0.2.2, <0.3',
+            'enum34~=1.1.6',
 
 Review comment:
   It means it will select the latest version of the package, greater or equal to 0.6.10, but still in the 0.6.* version, so it won't download 0.7.0 for example. It ensures you will get security fixes but keep backward-compatibility, if the package maintainer respects the semantic versioning (which states that breaking changes should occur only in major versions).
   
   Or, as said by PEP 440:
   
   > For a given release identifier V.N , the compatible release clause is approximately equivalent to the pair of comparison clauses:
   > 
   > >= V.N, == V.*

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services