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
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# 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
|
||||
# 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
|
||||
%ifnarch %ix86 x86_64
|
||||
%bcond_with tests
|
||||
%else
|
||||
%bcond_without tests
|
||||
%endif
|
||||
|
||||
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
||||
Name: python-jedi
|
||||
Version: 0.11.0
|
||||
Version: 0.12.0
|
||||
Release: 0
|
||||
Summary: An autocompletion tool for Python
|
||||
License: MIT and Python-2.0
|
||||
@ -53,7 +49,6 @@ BuildRequires: python3-typing
|
||||
%endif
|
||||
BuildRequires: python3-tox
|
||||
%endif
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
BuildArch: noarch
|
||||
%python_subpackages
|
||||
|
||||
@ -94,7 +89,8 @@ popd
|
||||
|
||||
%files %{python_files}
|
||||
%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/
|
||||
|
||||
|
@ -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.11.0/requirements.txt
|
||||
@@ -1 +1 @@
|
||||
-parso==0.1.0
|
||||
+parso>=0.1.0
|
||||
--- jedi-0.12.0.orig/tox.ini
|
||||
+++ jedi-0.12.0/tox.ini
|
||||
@@ -2,7 +2,7 @@
|
||||
envlist = py27, py33, py34, py35, py36
|
||||
[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