Accepting request 621488 from home:apersaud:branches:devel:languages:python
- specfile: * require parso >= 0.3.0 * remove python-devel requirement - update to version 0.12.1: * This release forces you to upgrade parso. If you don't, nothing will work anymore. Otherwise changes should be limited to bug fixes. Unfortunately Jedi still uses a few internals of parso that make it hard to keep compatibility over multiple releases. Parso >=0.3.0 is going to be needed. OBS-URL: https://build.opensuse.org/request/show/621488 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-jedi?expand=0&rev=25
This commit is contained in:
parent
09f3e0c44b
commit
f0261543b2
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:1972f694c6bc66a2fac8718299e2ab73011d653a6d8059790c3476d2353b99ad
|
|
||||||
size 359402
|
|
3
jedi-0.12.1.tar.gz
Normal file
3
jedi-0.12.1.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:b409ed0f6913a701ed474a614a3bb46e6953639033e31f769ca7581da5bd1ec1
|
||||||
|
size 361831
|
@ -1,3 +1,17 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jul 2 01:09:29 UTC 2018 - arun@gmx.de
|
||||||
|
|
||||||
|
- specfile:
|
||||||
|
* require parso >= 0.3.0
|
||||||
|
* remove python-devel requirement
|
||||||
|
|
||||||
|
- update to version 0.12.1:
|
||||||
|
* This release forces you to upgrade parso. If you don't, nothing
|
||||||
|
will work anymore. Otherwise changes should be limited to bug
|
||||||
|
fixes. Unfortunately Jedi still uses a few internals of parso that
|
||||||
|
make it hard to keep compatibility over multiple releases. Parso
|
||||||
|
>=0.3.0 is going to be needed.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Apr 19 17:18:37 UTC 2018 - toddrme2178@gmail.com
|
Thu Apr 19 17:18:37 UTC 2018 - toddrme2178@gmail.com
|
||||||
|
|
||||||
|
@ -16,40 +16,38 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
||||||
# Compiled file tests only work on particular architectures and only run on python 3.4
|
# Compiled file tests only work on particular architectures and only run on python 3.4
|
||||||
%bcond_with tests
|
%bcond_with tests
|
||||||
|
|
||||||
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
|
||||||
Name: python-jedi
|
Name: python-jedi
|
||||||
Version: 0.12.0
|
Version: 0.12.1
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: An autocompletion tool for Python
|
Summary: An autocompletion tool for Python
|
||||||
License: MIT and Python-2.0
|
License: MIT AND Python-2.0
|
||||||
Group: Development/Languages/Python
|
Group: Development/Languages/Python
|
||||||
Url: https://github.com/davidhalter/jedi
|
URL: https://github.com/davidhalter/jedi
|
||||||
Source0: https://files.pythonhosted.org/packages/source/j/jedi/jedi-%{version}.tar.gz
|
Source0: https://files.pythonhosted.org/packages/source/j/jedi/jedi-%{version}.tar.gz
|
||||||
Patch0: test_requrements.patch
|
Patch0: test_requrements.patch
|
||||||
BuildRequires: %{python_module devel}
|
|
||||||
BuildRequires: %{python_module setuptools}
|
BuildRequires: %{python_module setuptools}
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
BuildRequires: python-rpm-macros
|
BuildRequires: python-rpm-macros
|
||||||
Requires: python-parso
|
Requires: python-parso >= 0.3.0
|
||||||
|
BuildArch: noarch
|
||||||
%if %{with tests}
|
%if %{with tests}
|
||||||
# Test requirements
|
# Test requirements
|
||||||
BuildRequires: %{python_module colorama}
|
BuildRequires: %{python_module colorama}
|
||||||
BuildRequires: %{python_module docopt}
|
BuildRequires: %{python_module docopt}
|
||||||
BuildRequires: %{python_module numpydoc}
|
BuildRequires: %{python_module numpydoc}
|
||||||
BuildRequires: %{python_module parso}
|
BuildRequires: %{python_module parso >= 0.3.0}
|
||||||
BuildRequires: %{python_module pytest >= 2.3.5}
|
BuildRequires: %{python_module pytest >= 2.3.5}
|
||||||
BuildRequires: %{python_module pytest-cache}
|
BuildRequires: %{python_module pytest-cache}
|
||||||
BuildRequires: python2-typing
|
BuildRequires: python2-typing
|
||||||
|
BuildRequires: python3-tox
|
||||||
# do not require python3-typing for python >= 3.5
|
# do not require python3-typing for python >= 3.5
|
||||||
%if 0%{?suse_version} <= 1320
|
%if 0%{?suse_version} <= 1320
|
||||||
BuildRequires: python3-typing
|
BuildRequires: python3-typing
|
||||||
%endif
|
%endif
|
||||||
BuildRequires: python3-tox
|
|
||||||
%endif
|
%endif
|
||||||
BuildArch: noarch
|
|
||||||
%python_subpackages
|
%python_subpackages
|
||||||
|
|
||||||
%description
|
%description
|
||||||
@ -88,7 +86,6 @@ popd
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%files %{python_files}
|
%files %{python_files}
|
||||||
%defattr(-,root,root,-)
|
|
||||||
%doc AUTHORS.txt CHANGELOG.rst README.rst
|
%doc AUTHORS.txt CHANGELOG.rst README.rst
|
||||||
%license LICENSE.txt
|
%license LICENSE.txt
|
||||||
%{python_sitelib}/jedi-%{version}-py*.egg-info
|
%{python_sitelib}/jedi-%{version}-py*.egg-info
|
||||||
|
Loading…
x
Reference in New Issue
Block a user