Skip to main content
Glama

ClickUp Operator

by noah-vh
specifiers.cpython-312.pyc39 kB
� lMg����N�dZddlmZddlZddlZddlZddlmZmZm Z m Z m Z ddl m Z ddlmZe eefZe de� �ZeeegefZdd �ZGd �d e�ZGd �dej0��ZGd�de�Zej6d�Zdd�Zdd�Zdd�Zdd�Z Gd�de�Z!y)z� .. testsetup:: from packaging.specifiers import Specifier, SpecifierSet, InvalidSpecifier from packaging.version import Version �)� annotationsN)�Callable�Iterable�Iterator�TypeVar�Union�)�canonicalize_version)�Version�UnparsedVersionVar)�boundc�<�t|t�s t|�}|S�N)� isinstancer )�versions �`C:\Users\noahv\Documents\GitHub\clickup-operator\.venv\Lib\site-packages\packaging/specifiers.py�_coerce_versionrs�� �g�w� '��'�"�� �N�c��eZdZdZy)�InvalidSpecifiera Raised when attempting to create a :class:`Specifier` with a specifier string that is invalid. >>> Specifier("lolwat") Traceback (most recent call last): ... packaging.specifiers.InvalidSpecifier: Invalid specifier: 'lolwat' N)�__name__� __module__� __qualname__�__doc__�rrrr s��rrc�0�eZdZejd d��Zejd d��Zejd d��Zeejd d���Z e jd d��Z ejddd��Z ej d dd��Z y)� BaseSpecifierc��y)z� Returns the str representation of this Specifier-like object. This should be representative of the Specifier itself. Nr��selfs r�__str__zBaseSpecifier.__str__-��rc��y)zF Returns a hash value for this Specifier-like object. Nrrs r�__hash__zBaseSpecifier.__hash__4r"rc��y)z� Returns a boolean representing whether or not the two Specifier-like objects are equal. :param other: The other object to check against. Nr�r �others r�__eq__zBaseSpecifier.__eq__:r"rc��y)z�Whether or not pre-releases as a whole are allowed. This can be set to either ``True`` or ``False`` to explicitly enable or disable prereleases or it can be set to ``None`` (the default) to use default semantics. Nrrs r� prereleaseszBaseSpecifier.prereleasesCr"rc��y)zQSetter for :attr:`prereleases`. :param value: The value to set. Nr�r �values rr*zBaseSpecifier.prereleasesLr"rNc��y)zR Determines if the given item is contained within this specifier. Nr)r �itemr*s r�containszBaseSpecifier.containsSr"rc��y)z� Takes an iterable of items and filters them so that only items which are contained within this specifier are allowed in it. Nr)r �iterabler*s r�filterzBaseSpecifier.filterYr"r��return�str�r5�int�r'�objectr5�bool�r5� bool | None�r-r;r5�Noner)r/r6r*r=r5r;�r2zIterable[UnparsedVersionVar]r*r=r5zIterator[UnparsedVersionVar]) rrr�abc�abstractmethodr!r$r(�propertyr*�setterr0r3rrrrr,s������ �� �  ��� �� �  ��� �� ����� ��� ���� �� �  ��� �� �  ���QU� �4� �CN� � %� �� rr)� metaclassc ��eZdZdZdZdZejdezezdzejejz�Z dddd d d d d d�Z d&d'd�Z e d(d��Zejd)d��Ze d*d��Ze d*d��Zd*d�Zd*d�Ze d+d��Zd,d�Zd-d�Zd.d�Zd/d�Zd/d�Zd/d�Zd/d�Zd/d�Zd0d �Zd0d!�Zd/d"�Zd1d#�Z d2d3d$�Z! d2 d4d%�Z"y)5� Specifiera?This class abstracts handling of version specifiers. .. tip:: It is generally not required to instantiate this manually. You should instead prefer to work with :class:`SpecifierSet` instead, which can parse comma-separated version specifiers (which is what package metadata contains). z8 (?P<operator>(~=|==|!=|<=|>=|<|>|===)) a� (?P<version> (?: # The identity operators allow for an escape hatch that will # do an exact string match of the version you wish to install. # This will not be parsed by PEP 440 and we cannot determine # any semantic meaning from it. This operator is discouraged # but included entirely as an escape hatch. (?<====) # Only match for the identity operator \s* [^\s;)]* # The arbitrary version can be just about anything, # we match everything except for whitespace, a # semi-colon for marker support, and a closing paren # since versions can be enclosed in them. ) | (?: # The (non)equality operators allow for wild card and local # versions to be specified so we have to define these two # operators separately to enable that. (?<===|!=) # Only match for equals and not equals \s* v? (?:[0-9]+!)? # epoch [0-9]+(?:\.[0-9]+)* # release # You cannot use a wild card and a pre-release, post-release, a dev or # local version together so group them with a | and make them optional. (?: \.\* # Wild card syntax of .* | (?: # pre release [-_\.]? (alpha|beta|preview|pre|a|b|c|rc) [-_\.]? [0-9]* )? (?: # post release (?:-[0-9]+)|(?:[-_\.]?(post|rev|r)[-_\.]?[0-9]*) )? (?:[-_\.]?dev[-_\.]?[0-9]*)? # dev release (?:\+[a-z0-9]+(?:[-_\.][a-z0-9]+)*)? # local )? ) | (?: # The compatible operator requires at least two digits in the # release segment. (?<=~=) # Only match for the compatible operator \s* v? (?:[0-9]+!)? # epoch [0-9]+(?:\.[0-9]+)+ # release (We have a + instead of a *) (?: # pre release [-_\.]? (alpha|beta|preview|pre|a|b|c|rc) [-_\.]? [0-9]* )? (?: # post release (?:-[0-9]+)|(?:[-_\.]?(post|rev|r)[-_\.]?[0-9]*) )? (?:[-_\.]?dev[-_\.]?[0-9]*)? # dev release ) | (?: # All other operators only allow a sub set of what the # (non)equality operators do. Specifically they do not allow # local versions to be specified nor do they allow the prefix # matching wild cards. (?<!==|!=|~=) # We have special cases for these # operators so we want to make sure they # don't match here. \s* v? (?:[0-9]+!)? # epoch [0-9]+(?:\.[0-9]+)* # release (?: # pre release [-_\.]? (alpha|beta|preview|pre|a|b|c|rc) [-_\.]? [0-9]* )? (?: # post release (?:-[0-9]+)|(?:[-_\.]?(post|rev|r)[-_\.]?[0-9]*) )? (?:[-_\.]?dev[-_\.]?[0-9]*)? # dev release ) ) z^\s*z\s*$� compatible�equal� not_equal�less_than_equal�greater_than_equal� less_than� greater_than� arbitrary)�~=�==z!=�<=�>=�<�>�===Nc���|jj|�}|std|����|jd�j �|jd�j �f|_||_y)a�Initialize a Specifier instance. :param spec: The string representation of a specifier which will be parsed and normalized before use. :param prereleases: This tells the specifier if it should accept prerelease versions if applicable or not. The default of ``None`` will autodetect it from the given specifiers. :raises InvalidSpecifier: If the given specifier is invalid (i.e. bad syntax). zInvalid specifier: �operatorrN)�_regex�searchr�group�strip�_spec� _prereleases)r �specr*�matchs r�__init__zSpecifier.__init__�sm��� � �"�"�4�(���"�%8���#A�B� B� �K�K� � #� )� )� +� �K�K� � "� (� (� *�' �� � (��rc��|j� |jS|j\}}|dvr1|dk(r|jd�r|dd}t|�jryy)N)rQrSrRrPrVrUrTrQ�.*�����TF)r^r]�endswithr � is_prerelease)r rXrs rr*zSpecifier.prereleases�sm�� � � � (��$�$� $� !�J�J���'� �@� @��4��G�$4�$4�T�$:�!�#�2�,���w��-�-��rc��||_yr�r^r,s rr*zSpecifier.prereleases� ��!��rc� �|jdS)z`The operator of this specifier. >>> Specifier("==1.2.3").operator '==' r�r]rs rrXzSpecifier.operator����z�z�!�}�rc� �|jdS)zaThe version of this specifier. >>> Specifier("==1.2.3").version '1.2.3' r rkrs rrzSpecifier.versionrlrc��|j�d|j��nd}d|jj�dt |��|�d�S)aTA representation of the Specifier that shows all internal state. >>> Specifier('>=1.0.0') <Specifier('>=1.0.0')> >>> Specifier('>=1.0.0', prereleases=False) <Specifier('>=1.0.0', prereleases=False)> >>> Specifier('>=1.0.0', prereleases=True) <Specifier('>=1.0.0', prereleases=True)> �, prereleases=�rT�(�)>)r^r*� __class__rr6�r �pres r�__repr__zSpecifier.__repr__&sU��� � �,��T�-�-�0� 1�� � �4�>�>�*�*�+�1�S��Y�M�#��b�A�Arc�4�dj|j�S)z�A string representation of the Specifier that can be round-tripped. >>> str(Specifier('>=1.0.0')) '>=1.0.0' >>> str(Specifier('>=1.0.0', prereleases=False)) '>=1.0.0' z{}{})�formatr]rs rr!zSpecifier.__str__8s���v�}�}�d�j�j�)�)rc�x�t|jd|jddk7��}|jd|fS)Nr rrP��strip_trailing_zero)r r])r �canonical_versions r�_canonical_speczSpecifier._canonical_specBs>��0� �J�J�q�M�!%���A��$�!6� ���z�z�!�}�/�/�/rc�,�t|j�Sr)�hashr}rs rr$zSpecifier.__hash__Js���D�(�(�)�)rc���t|t�r |jt|��}nt||j�stS|j |j k(S#t$r tcYSwxYw)a>Whether or not the two Specifier-like objects are equal. :param other: The other object to check against. The value of :attr:`prereleases` is ignored. >>> Specifier("==1.2.3") == Specifier("== 1.2.3.0") True >>> (Specifier("==1.2.3", prereleases=False) == ... Specifier("==1.2.3", prereleases=True)) True >>> Specifier("==1.2.3") == "==1.2.3" True >>> Specifier("==1.2.3") == Specifier("==1.2.4") False >>> Specifier("==1.2.3") == Specifier("~=1.2.3") False )rr6rsr�NotImplementedr}r&s rr(zSpecifier.__eq__Msi��& �e�S� !� &����s�5�z�2���E�4�>�>�2�!� !��#�#�u�'<�'<�<�<�� $� &�%�%� &�s�A"�"A4�3A4c�>�t|d|j|���}|S)N� _compare_)�getattr� _operators)r �op�operator_callables r� _get_operatorzSpecifier._get_operatorjs+��.5� �I�d�o�o�b�1�2�3�/ ��!� rc ���tttjtt |���dd�}|dz }|j d�||�xr|j d�||�S)N�����rcrSrQ)� _version_join�list� itertools� takewhile�_is_not_suffix�_version_splitr�)r � prospectiver_�prefixs r�_compare_compatiblezSpecifier._compare_compatiblepsw��� ��$�$�^�^�D�5I�J� K�C�R� P� �� �$���'�t�!�!�$�'� �T�:� �?W�t�?Q�?Q�RV�?W� ��@ � rc�D�|jd�r_t|jd��}t|ddd��}t|�}t|�}t ||�\}}|dt |�} | |k(St |�} | jst |j�}|| k(S)NrcFrzrd)rer �publicr�� _pad_version�lenr �local) r r�r_�normalized_prospective�normalized_spec� split_spec�split_prospective�padded_prospective�_�shortened_prospective� spec_versions r�_compare_equalzSpecifier._compare_equal�s��� �=�=�� �%9��"�"��&� "�3�4���9�RW�X�O�(��8�J� !/�/E� F� �%1�1B�J�$O� !� �� %7�7H��Z��$I� !�(�J�6� 6�#�4�=�L�  �%�%�%�k�&8�&8�9� ��,�.� .rc�(�|j||� Sr)r��r r�r_s r�_compare_not_equalzSpecifier._compare_not_equal�s���&�&�{�D�9�9�9rc�D�t|j�t|�kSr�r r�r�s r�_compare_less_than_equalz"Specifier._compare_less_than_equal�����{�)�)�*�g�d�m�;�;rc�D�t|j�t|�k\Srr�r�s r�_compare_greater_than_equalz%Specifier._compare_greater_than_equal�r�rc��t|�}||ksy|js8|jr,t|j�t|j�k(ryy�NFT)r rf� base_version�r r��spec_strr_s r�_compare_less_thanzSpecifier._compare_less_than�sT���x� �� �T�!�� �!�!�k�&?�&?��{�/�/�0�G�D�<M�<M�4N�N�� rc��t|�}||kDsy|js8|jr,t|j�t|j�k(ry|j�,t|j�t|j�k(ryyr�)r �is_postreleaser�r�r�s r�_compare_greater_thanzSpecifier._compare_greater_than�s����x� �� �T�!�� �"�"�{�'A�'A��{�/�/�0�G�D�<M�<M�4N�N�� � � � (��{�/�/�0�G�D�<M�<M�4N�N�� rc�h�t|�j�t|�j�k(Sr)r6�lowerr�s r�_compare_arbitraryzSpecifier._compare_arbitrary�s&���;��%�%�'�3�t�9�?�?�+<�<�<rc�$�|j|�S)a;Return whether or not the item is contained in this specifier. :param item: The item to check for. This is used for the ``in`` operator and behaves the same as :meth:`contains` with no ``prereleases`` argument passed. >>> "1.2.3" in Specifier(">=1.2.3") True >>> Version("1.2.3") in Specifier(">=1.2.3") True >>> "1.0.0" in Specifier(">=1.2.3") False >>> "1.3.0a1" in Specifier(">=1.2.3") False >>> "1.3.0a1" in Specifier(">=1.2.3", prereleases=True) True �r0�r r/s r� __contains__zSpecifier.__contains__����&�}�}�T�"�"rc��|� |j}t|�}|jr|sy|j|j�}|||j �S)alReturn whether or not the item is contained in this specifier. :param item: The item to check for, which can be a version string or a :class:`Version` instance. :param prereleases: Whether or not to match prereleases with this Specifier. If set to ``None`` (the default), it uses :attr:`prereleases` to determine whether or not prereleases are allowed. >>> Specifier(">=1.2.3").contains("1.2.3") True >>> Specifier(">=1.2.3").contains(Version("1.2.3")) True >>> Specifier(">=1.2.3").contains("1.0.0") False >>> Specifier(">=1.2.3").contains("1.3.0a1") False >>> Specifier(">=1.2.3", prereleases=True).contains("1.3.0a1") True >>> Specifier(">=1.2.3").contains("1.3.0a1", prereleases=True) True F)r*rrfr�rXr)r r/r*�normalized_itemr�s rr0zSpecifier.contains sY��4 � ��*�*�K�*�$�/�� � (� (���/3�.@�.@����.O�� ��$�,�,�?�?rc#��K�d}g}d|�|ndi}|D]S}t|�}|j|fi|��s�"|jr |s|js|j |��Nd}|���U|s|r |D]}|���yyy�w)aOFilter items in the given iterable, that match the specifier. :param iterable: An iterable that can contain version strings and :class:`Version` instances. The items in the iterable will be filtered according to the specifier. :param prereleases: Whether or not to allow prereleases in the returned iterator. If set to ``None`` (the default), it will be intelligently decide whether to allow prereleases or not (based on the :attr:`prereleases` attribute, and whether the only versions matching are prereleases). This method is smarter than just ``filter(Specifier().contains, [...])`` because it implements the rule from :pep:`440` that a prerelease item SHOULD be accepted if no other versions match the given specifier. >>> list(Specifier(">=1.2.3").filter(["1.2", "1.3", "1.5a1"])) ['1.3'] >>> list(Specifier(">=1.2.3").filter(["1.2", "1.2.3", "1.3", Version("1.4")])) ['1.2.3', '1.3', <Version('1.4')>] >>> list(Specifier(">=1.2.3").filter(["1.2", "1.5a1"])) ['1.5a1'] >>> list(Specifier(">=1.2.3").filter(["1.3", "1.5a1"], prereleases=True)) ['1.3', '1.5a1'] >>> list(Specifier(">=1.2.3", prereleases=True).filter(["1.3", "1.5a1"])) ['1.3', '1.5a1'] Fr*NT)rr0rfr*�append)r r2r*�yielded�found_prereleases�kwr�parsed_versions rr3zSpecifier.filter5s�����<�����K�,C�[�� N�� �G�,�W�5�N��t�}�}�^�2�r�2�"�/�/��4�#3�#3�%�,�,�W�5�#�G�!�M� �(�,�,��� �-�-�w�s �0A9�AA9�rpN)r_r6r*r=r5r?)r5r;r>r4)r5ztuple[str, str]r7r9)r�r6r5�CallableOperator)r�r r_r6r5r;)r�r r�r6r5r;)r/z str | Versionr5r;r)r/�UnparsedVersionr*r=r5r;r@)#rrrr�_operator_regex_str�_version_regex_str�re�compile�VERBOSE� IGNORECASErYr�rarCr*rDrXrrvr!r}r$r(r�r�r�r�r�r�r�r�r�r�r0r3rrrrGrGcsR��� ��\ ��|�R�Z�Z��%�%�(:�:�W�D� � � �R�]�]�"��F� ����"� � �� �J�(�4����.���"��"���������B�$*��0��0�*�=�:!�  �(&/�P:�<� <� �0�<=�#�**@�ZRV�;�4�;�CN�;� %�;rrGz^([0-9]+)((?:a|b|c|rc)[0-9]+)$c��g}|jd�\}}}|j|xsd�|jd�D]J}tj |�}|r |j |j ���:|j|��L|S)aSplit version into components. The split components are intended for version comparison. The logic does not attempt to retain the original version string, so joining the components back with :func:`_version_join` may not produce the original version string. �!�0�.)� rpartitionr��split� _prefix_regexrZ�extend�groups)r�result�epochr��restr/r`s rr�r�vsy���F��'�'��,�N�E�1�d� �M�M�%�,�3��� � �3����$�$�T�*�� � �M�M�%�,�,�.� )� �M�M�$� �  � �Mrc�6�|^}}|�ddj|���S)z�Join split version components into a version string. This function assumes the input came from :func:`_version_split`, where the first component must be the epoch (either empty or numeric), and all other components numeric. r�r�)�join)� componentsr�r�s rr�r��s'���L�E�D��W�A�c�h�h�t�n�%� &�&rc�.��t�fd�dD�� S)Nc3�@�K�|]}�j|����y�wr)� startswith)�.0r��segments �r� <genexpr>z!_is_not_suffix.<locals>.<genexpr>�s!������1P�v����6�"�1P�s�)�dev�a�b�rc�post)�any)r�s`rr�r��s"�����1P��� �rc ���gg}}|jttjd�|���|jttjd�|���|j|t |d�d�|j|t |d�d�|j ddgt dt |d�t |d�z �z�|j ddgt dt |d�t |d�z �z�ttjj|��ttjj|��fS)Nc�"�|j�Sr��isdigit��xs r�<lambda>z_pad_version.<locals>.<lambda>�s �����rc�"�|j�Srr�r�s rr�z_pad_version.<locals>.<lambda>�s ��!�)�)�+rrr r�) r�r�r�r�r��insert�max�chain� from_iterable)�left�right� left_split� right_splits rr�r��s5�� �"� �J����d�9�.�.�/D�d�K�L�M����t�I�/�/�0E�u�M�N�O����d�3�z�!�}�-�/�0�1����u�S��Q��0�2�3�4����a�#���Q��K��N�(;�c�*�Q�-�>P�(P�!Q�Q�R����q�3�%�#�a��Z��]�);�c�+�a�.�>Q�)Q�"R�R�S� �Y�_�_� *� *�:� 6�7� �Y�_�_� *� *�;� 7�8� �rc���eZdZdZ d dd�Zedd��Zejdd��Zdd�Zdd�Z dd�Z dd �Z dd �Z dd �Z dd �Zdd �Z d dd�Z d dd�Zy)� SpecifierSetz�This class abstracts handling of a set of version specifiers. It can be passed a single specifier (``>=3.0``), a comma-separated list of specifiers (``>=3.0,!=3.1``), or no specifier at all. Nc�"�t|t�rc|jd�D�cgc]#}|j�s�|j���%}}t t t |��|_||_yt |�|_||_ycc}w)a�Initialize a SpecifierSet instance. :param specifiers: The string representation of a specifier or a comma-separated list of specifiers which will be parsed and normalized before use. May also be an iterable of ``Specifier`` instances, which will be used as is. :param prereleases: This tells the SpecifierSet if it should accept prerelease versions if applicable or not. The default of ``None`` will autodetect it from the given specifiers. :raises InvalidSpecifier: If the given ``specifiers`` are not parseable than this exception will be raised. �,N) rr6r�r\� frozenset�maprG�_specsr^)r � specifiersr*�s�split_specifierss rrazSpecifierSet.__init__�s~��, �j�#� &�4>�3C�3C�C�3H�V�3H�a�A�G�G�I���� �3H� �V�$�C� �3C�$D�E�D�K�(��� $�J�/�D�K�(���� Ws �B �B c��|j� |jS|jsytd�|jD��S)Nc3�4K�|]}|j���y�wr�r*�r�rs rr�z+SpecifierSet.prereleases.<locals>.<genexpr>�s����6�+�Q�1�=�=�+�s�)r^r�r�rs rr*zSpecifierSet.prereleases�s?�� � � � (��$�$� $� �{�{���6�$�+�+�6�6�6rc��||_yrrhr,s rr*zSpecifierSet.prereleases�rirc�^�|j�d|j��nd}dt|��|�d�S)aA representation of the specifier set that shows all internal state. Note that the ordering of the individual specifiers within the set may not match the input string. >>> SpecifierSet('>=1.0.0,!=2.0.0') <SpecifierSet('!=2.0.0,>=1.0.0')> >>> SpecifierSet('>=1.0.0,!=2.0.0', prereleases=False) <SpecifierSet('!=2.0.0,>=1.0.0', prereleases=False)> >>> SpecifierSet('>=1.0.0,!=2.0.0', prereleases=True) <SpecifierSet('!=2.0.0,>=1.0.0', prereleases=True)> rorpz<SpecifierSet(rr)r^r*r6rts rrvzSpecifierSet.__repr__�sD��� � �,��T�-�-�0� 1�� �  ��D� �}�S�E��4�4rc�X�djtd�|jD���S)anA string representation of the specifier set that can be round-tripped. Note that the ordering of the individual specifiers within the set may not match the input string. >>> str(SpecifierSet(">=1.0.0,!=1.0.1")) '!=1.0.1,>=1.0.0' >>> str(SpecifierSet(">=1.0.0,!=1.0.1", prereleases=False)) '!=1.0.1,>=1.0.0' r�c3�2K�|]}t|����y�wr)r6rs rr�z'SpecifierSet.__str__.<locals>.<genexpr>s����;�{�!�s�1�v�{�s�)r��sortedr�rs rr!zSpecifierSet.__str__ s"���x�x��;�t�{�{�;�;�<�<rc�,�t|j�Sr)rr�rs rr$zSpecifierSet.__hash__s���D�K�K� � rc���t|t�r t|�}nt|t�stSt�}t |j |j z�|_|j �|j �|j |_|S|j �|j �|j |_|S|j |j k(r|j |_|Std��)a�Return a SpecifierSet which is a combination of the two sets. :param other: The other object to combine with. >>> SpecifierSet(">=1.0.0,!=1.0.1") & '<=2.0.0,!=2.0.1' <SpecifierSet('!=1.0.1,!=2.0.1,<=2.0.0,>=1.0.0')> >>> SpecifierSet(">=1.0.0,!=1.0.1") & SpecifierSet('<=2.0.0,!=2.0.1') <SpecifierSet('!=1.0.1,!=2.0.1,<=2.0.0,>=1.0.0')> zFCannot combine SpecifierSets with True and False prerelease overrides.)rr6r�r�r�r�r^� ValueError)r r'� specifiers r�__and__zSpecifierSet.__and__s��� �e�S� !� ��'�E��E�<�0�!� !� �N� �$�T�[�[�5�<�<�%?�@� �� � � � $��);�);�)G�%*�%7�%7�I� "���� � � *�u�/A�/A�/I�%)�%6�%6�I� "���� � �%�"4�"4� 4�%)�%6�%6�I� "��� ��� rc��t|ttf�rtt|��}nt|t�stS|j |j k(S)a�Whether or not the two SpecifierSet-like objects are equal. :param other: The other object to check against. The value of :attr:`prereleases` is ignored. >>> SpecifierSet(">=1.0.0,!=1.0.1") == SpecifierSet(">=1.0.0,!=1.0.1") True >>> (SpecifierSet(">=1.0.0,!=1.0.1", prereleases=False) == ... SpecifierSet(">=1.0.0,!=1.0.1", prereleases=True)) True >>> SpecifierSet(">=1.0.0,!=1.0.1") == ">=1.0.0,!=1.0.1" True >>> SpecifierSet(">=1.0.0,!=1.0.1") == SpecifierSet(">=1.0.0") False >>> SpecifierSet(">=1.0.0,!=1.0.1") == SpecifierSet(">=1.0.0,!=1.0.2") False )rr6rGr�r�r�r&s rr(zSpecifierSet.__eq__9sD��& �e�c�9�-� .� ��U��,�E��E�<�0�!� !��{�{�e�l�l�*�*rc�,�t|j�S)z7Returns the number of specifiers in this specifier set.)r�r�rs r�__len__zSpecifierSet.__len__Ss���4�;�;��rc�,�t|j�S)z� Returns an iterator over all the underlying :class:`Specifier` instances in this specifier set. >>> sorted(SpecifierSet(">=1.0.0,!=1.0.1"), key=str) [<Specifier('!=1.0.1')>, <Specifier('>=1.0.0')>] )�iterr�rs r�__iter__zSpecifierSet.__iter__Ws���D�K�K� � rc�$�|j|�S)arReturn whether or not the item is contained in this specifier. :param item: The item to check for. This is used for the ``in`` operator and behaves the same as :meth:`contains` with no ``prereleases`` argument passed. >>> "1.2.3" in SpecifierSet(">=1.0.0,!=1.0.1") True >>> Version("1.2.3") in SpecifierSet(">=1.0.0,!=1.0.1") True >>> "1.0.1" in SpecifierSet(">=1.0.0,!=1.0.1") False >>> "1.3.0a1" in SpecifierSet(">=1.0.0,!=1.0.1") False >>> "1.3.0a1" in SpecifierSet(">=1.0.0,!=1.0.1", prereleases=True) True r�r�s rr�zSpecifierSet.__contains__ar�rc�����t�t�s t����� |j��s �jry|r!�jrt�j��t ��fd�|j D��S)a�Return whether or not the item is contained in this SpecifierSet. :param item: The item to check for, which can be a version string or a :class:`Version` instance. :param prereleases: Whether or not to match prereleases with this SpecifierSet. If set to ``None`` (the default), it uses :attr:`prereleases` to determine whether or not prereleases are allowed. >>> SpecifierSet(">=1.0.0,!=1.0.1").contains("1.2.3") True >>> SpecifierSet(">=1.0.0,!=1.0.1").contains(Version("1.2.3")) True >>> SpecifierSet(">=1.0.0,!=1.0.1").contains("1.0.1") False >>> SpecifierSet(">=1.0.0,!=1.0.1").contains("1.3.0a1") False >>> SpecifierSet(">=1.0.0,!=1.0.1", prereleases=True).contains("1.3.0a1") True >>> SpecifierSet(">=1.0.0,!=1.0.1").contains("1.3.0a1", prereleases=True) True Fc3�D�K�|]}|j�������y�w)rNr�)r�rr/r*s ��rr�z(SpecifierSet.contains.<locals>.<genexpr>�s�����R�k��1�:�:�d� �:�<�k�s� )rr r*rfr��allr�)r r/r*� installeds `` rr0zSpecifierSet.containsvsm���<�$��(��4�=�D� � ��*�*�K��t�1�1�� ��+�+��4�,�,�-�D� �R�d�k�k�R�R�Rrc�r�|� |j}|jr8|jD]}|j|t|���}� t |�Sg}g}|D]A}t |�}|j r|s|r�|j|��1|j|��C|s|r |� t |�St |�S)a.Filter items in the given iterable, that match the specifiers in this set. :param iterable: An iterable that can contain version strings and :class:`Version` instances. The items in the iterable will be filtered according to the specifier. :param prereleases: Whether or not to allow prereleases in the returned iterator. If set to ``None`` (the default), it will be intelligently decide whether to allow prereleases or not (based on the :attr:`prereleases` attribute, and whether the only versions matching are prereleases). This method is smarter than just ``filter(SpecifierSet(...).contains, [...])`` because it implements the rule from :pep:`440` that a prerelease item SHOULD be accepted if no other versions match the given specifier. >>> list(SpecifierSet(">=1.2.3").filter(["1.2", "1.3", "1.5a1"])) ['1.3'] >>> list(SpecifierSet(">=1.2.3").filter(["1.2", "1.3", Version("1.4")])) ['1.3', <Version('1.4')>] >>> list(SpecifierSet(">=1.2.3").filter(["1.2", "1.5a1"])) [] >>> list(SpecifierSet(">=1.2.3").filter(["1.3", "1.5a1"], prereleases=True)) ['1.3', '1.5a1'] >>> list(SpecifierSet(">=1.2.3", prereleases=True).filter(["1.3", "1.5a1"])) ['1.3', '1.5a1'] An "empty" SpecifierSet will filter items based on the presence of prerelease versions in the set. >>> list(SpecifierSet("").filter(["1.3", "1.5a1"])) ['1.3'] >>> list(SpecifierSet("").filter(["1.5a1"])) ['1.5a1'] >>> list(SpecifierSet("", prereleases=True).filter(["1.3", "1.5a1"])) ['1.3', '1.5a1'] >>> list(SpecifierSet("").filter(["1.3", "1.5a1"], prereleases=True)) ['1.3', '1.5a1'] r)r*r�r3r;rrrfr�)r r2r*r_�filteredr�r/r�s rr3zSpecifierSet.filter�s���X � ��*�*�K� �;�;�� � ���;�;�x�T�+�=N�;�O��$���>� !� 24�H�:<� � ��!0��!6��"�/�/� �#�)�0�0��6��O�O�D�)�!�� 1�k�6I��-�.�.���>� !rr�)r�zstr | Iterable[Specifier]r*r=r5r?r<r>r4r7)r'zSpecifierSet | strr5r�r9)r5zIterator[Specifier])r/r�r5r;)NN)r/r�r*r=rr=r5r;rr@)rrrrrarCr*rDrvr!r$rr(rrr�r0r3rrrr�r��s����13�#'�$(�-�$(�!�$(� � $(�L�7��7� ���"��"�5�* =�!��@+�4 �!�#�0$(�!%� 7S��7S�!�7S�� 7S� � 7S�tRV�M"�4�M"�CN�M"� %�M"rr�)rr�r5r )rr6r5� list[str])r�rr5r6)r�r6r5r;)r�rr�rr5ztuple[list[str], list[str]])"r� __future__rrAr�r��typingrrrrr�utilsr rr r6r�r r;r�rr r�ABCMetarrGr�r�r�r�r�r�r�rrr�<module>r"s����#� �� �?�?�'����� �%���1��I���W�c�N�D�0�1��� �z� �4 �c�k�k�4 �nM� �M�`�� � �<�=� ��,'�� �*J"�=�J"r

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/noah-vh/mcp-server-clickup'

If you have feedback or need assistance with the MCP directory API, please join our Discord server