Accepting request 598808 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/598808 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-jedi?expand=0&rev=8
This commit is contained in:
commit
b1ae54823f
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:f6d5973573e76b1fd2ea75f6dcd6445d02d41ff3af5fc61b275b4e323d1dd396
|
|
||||||
size 337972
|
|
3
jedi-0.12.0.tar.gz
Normal file
3
jedi-0.12.0.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:1972f694c6bc66a2fac8718299e2ab73011d653a6d8059790c3476d2353b99ad
|
||||||
|
size 359402
|
@ -1,3 +1,22 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 19 17:18:37 UTC 2018 - toddrme2178@gmail.com
|
||||||
|
|
||||||
|
- Update to version 0.12.0
|
||||||
|
* Virtualenv/Environment support
|
||||||
|
* F-String Completion/Goto Support
|
||||||
|
* Cannot crash with segfaults anymore
|
||||||
|
* Cleaned up import logic
|
||||||
|
* Understand async/await and autocomplete it (including async generators)
|
||||||
|
* Better namespace completions
|
||||||
|
* Passing tests for Windows (including CI for Windows)
|
||||||
|
* Remove Python 2.6 support
|
||||||
|
- Update to version 0.11.1
|
||||||
|
* Parso update - the caching layer was broken
|
||||||
|
* Better usages - a lot of internal code was ripped out and improved.
|
||||||
|
- Remove upstream-included test_requrements.patch
|
||||||
|
- Add new test_requrements.patch to avoid limit on pytest version.
|
||||||
|
- Disable tests, they don't work in most situations.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Nov 10 13:40:12 UTC 2017 - mimi.vx@gmail.com
|
Fri Nov 10 13:40:12 UTC 2017 - mimi.vx@gmail.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package python-jedi
|
# spec file for package python-jedi
|
||||||
#
|
#
|
||||||
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -17,15 +17,11 @@
|
|||||||
|
|
||||||
|
|
||||||
# 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
|
||||||
%ifnarch %ix86 x86_64
|
|
||||||
%bcond_with tests
|
%bcond_with tests
|
||||||
%else
|
|
||||||
%bcond_without tests
|
|
||||||
%endif
|
|
||||||
|
|
||||||
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
||||||
Name: python-jedi
|
Name: python-jedi
|
||||||
Version: 0.11.0
|
Version: 0.12.0
|
||||||
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
|
||||||
@ -53,7 +49,6 @@ BuildRequires: python3-typing
|
|||||||
%endif
|
%endif
|
||||||
BuildRequires: python3-tox
|
BuildRequires: python3-tox
|
||||||
%endif
|
%endif
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
%python_subpackages
|
%python_subpackages
|
||||||
|
|
||||||
@ -94,7 +89,8 @@ popd
|
|||||||
|
|
||||||
%files %{python_files}
|
%files %{python_files}
|
||||||
%defattr(-,root,root,-)
|
%defattr(-,root,root,-)
|
||||||
%doc AUTHORS.txt CHANGELOG.rst LICENSE.txt README.rst
|
%doc AUTHORS.txt CHANGELOG.rst README.rst
|
||||||
|
%license LICENSE.txt
|
||||||
%{python_sitelib}/jedi-%{version}-py*.egg-info
|
%{python_sitelib}/jedi-%{version}-py*.egg-info
|
||||||
%{python_sitelib}/jedi/
|
%{python_sitelib}/jedi/
|
||||||
|
|
||||||
|
@ -1,7 +1,14 @@
|
|||||||
Index: jedi-0.11.0/requirements.txt
|
Index: jedi-0.12.0/tox.ini
|
||||||
===================================================================
|
===================================================================
|
||||||
--- jedi-0.11.0.orig/requirements.txt
|
--- jedi-0.12.0.orig/tox.ini
|
||||||
+++ jedi-0.11.0/requirements.txt
|
+++ jedi-0.12.0/tox.ini
|
||||||
@@ -1 +1 @@
|
@@ -2,7 +2,7 @@
|
||||||
-parso==0.1.0
|
envlist = py27, py33, py34, py35, py36
|
||||||
+parso>=0.1.0
|
[testenv]
|
||||||
|
deps =
|
||||||
|
- pytest>=2.3.5, < 3.3
|
||||||
|
+ pytest>=2.3.5
|
||||||
|
pytest-cache
|
||||||
|
# docopt for sith doctests
|
||||||
|
docopt
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user