Compare commits

...

10 Commits

Author SHA1 Message Date
openeuler-ci-bot
f6f3841a51
!11 Remove unused Make-tests-pass-on-conda-builds.patch to fix ci_failed
From: @han-guangyu 
Reviewed-by: @desert-sailor 
Signed-off-by: @
2024-03-05 00:46:43 +00:00
Han Guangyu
1b87ea980a Remove unused patch
Remove unused `Make-tests-pass-on-conda-builds.patch` to fix ci_failed.
2024-03-04 22:26:54 +08:00
openeuler-ci-bot
55f183c413
!9 Update package with version 4.10.0
From: @desert-sailor 
Reviewed-by: @han-guangyu 
Signed-off-by: @han-guangyu
2024-03-04 12:34:46 +00:00
desert-sailor
4fe11553c2 Update package with version 4.10.0 2024-03-04 17:45:57 +08:00
openeuler-ci-bot
7e11d8f54e
!8 python3升级导致python-typing-extensions构建失败
From: @lyn1001 
Reviewed-by: @desert-sailor 
Signed-off-by: @desert-sailor
2024-02-02 16:51:59 +00:00
lyn1001
6866f7735c Make tests pass on conda builds 2024-02-02 15:09:19 +08:00
openeuler-ci-bot
82a05464ff
!7 update to 4.5.0
From: @lyn1001 
Reviewed-by: @xiyuanwang 
Signed-off-by: @xiyuanwang
2023-05-09 11:02:44 +00:00
lyn1001
1a5719a577 update to 4.5.0 2023-05-09 18:49:19 +08:00
openeuler-ci-bot
cec2a6ad86
!5 Upgrade to 3.10.0.2 to fix python3.10 test failure
From: @huangtianhua 
Reviewed-by: @xiyuanwang 
Signed-off-by: @xiyuanwang
2022-05-06 03:43:52 +00:00
huangtianhua
7f9dd9e3b1 Upgrade to 3.10.0.2 to fix python3.10 test failure 2022-05-06 11:36:00 +08:00
3 changed files with 35 additions and 11 deletions

View File

@ -1,11 +1,11 @@
%global _empty_manifest_terminate_build 0 %global _empty_manifest_terminate_build 0
Name: python-typing-extensions Name: python-typing-extensions
Version: 3.10.0.0 Version: 4.10.0
Release: 1 Release: 2
Summary: Backported and Experimental Type Hints for Python 3.5+ Summary: Backported and Experimental Type Hints for Python 3.5+
License: PSF License: PSF-2.0
URL: https://github.com/python/typing/blob/master/typing_extensions/README.rst URL: https://github.com/python/typing/blob/master/typing_extensions/README.rst
Source0: https://files.pythonhosted.org/packages/aa/55/62e2d4934c282a60b4243a950c9dbfa01ae7cac0e8d6c0b5315b87432c81/typing_extensions-3.10.0.0.tar.gz Source0: https://files.pythonhosted.org/packages/16/3a/0d26ce356c7465a19c9ea8814b960f8a36c3b0d07c323176620b7b483e44/typing_extensions-4.10.0.tar.gz
BuildArch: noarch BuildArch: noarch
%description %description
Typing Extensions - Backported and Experimental Type Hints for Python. Typing Extensions - Backported and Experimental Type Hints for Python.
@ -17,13 +17,13 @@ module are also included in typing_extensions, such as typing.ParamSpec and typi
%package -n python3-typing-extensions %package -n python3-typing-extensions
Summary: Backported and Experimental Type Hints for Python 3.5+ Summary: Backported and Experimental Type Hints for Python 3.5+
Provides: python-typing-extensions Provides: python-typing-extensions = %{version}-%{release}
# Base build requires # Base build requires
BuildRequires: python3-devel BuildRequires: python3-devel
BuildRequires: python3-setuptools BuildRequires: python3-setuptools
BuildRequires: python3-pbr BuildRequires: python3-pbr
BuildRequires: python3-pip BuildRequires: python3-pip python3-flit-core
BuildRequires: python3-wheel BuildRequires: python3-wheel python3-test
%description -n python3-typing-extensions %description -n python3-typing-extensions
Typing Extensions -Backported and Experimental Type Hints for Python. Typing Extensions -Backported and Experimental Type Hints for Python.
@ -34,13 +34,13 @@ Provides: python3-typing-extensions-doc
Typing Extensions -Backported and Experimental Type Hints for Python. Typing Extensions -Backported and Experimental Type Hints for Python.
%prep %prep
%autosetup -n typing_extensions-%{version} %autosetup -n typing_extensions-%{version} -p1
%build %build
%py3_build %pyproject_build
%install %install
%py3_install %pyproject_install
install -d -m755 %{buildroot}/%{_pkgdocdir} install -d -m755 %{buildroot}/%{_pkgdocdir}
if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi
@ -69,16 +69,40 @@ mv %{buildroot}/filelist.lst .
mv %{buildroot}/doclist.lst . mv %{buildroot}/doclist.lst .
%check %check
%{__python3} src_py3/test_typing_extensions.py cd src
%{__python3} -m unittest discover
%files -n python3-typing-extensions -f filelist.lst %files -n python3-typing-extensions -f filelist.lst
%dir %{python3_sitelib}/* %dir %{python3_sitelib}/*
%{python3_sitelib}/__pycache__/
%files help -f doclist.lst %files help -f doclist.lst
%license LICENSE
%doc CHANGELOG.md README.md
%{_docdir}/* %{_docdir}/*
%changelog %changelog
* Mon Mar 4 2024 Han Guangyu <hanguangyu@uniontech.com> - 4.10.0-2
- Remove unused `Make-tests-pass-on-conda-builds.patch` to fix ci_failed.
* Mon Mar 4 2024 Dongxing Wang <dongxing.wang_a@thundersoft.com> - 4.10.0-1
- Update package with version 4.10.0
Add support for PEP 728, PEP 742
Drop runtime error when a read-only TypedDict item overrides a mutable one.
Speedup issubclass() checks against simple runtime-checkable protocols by around 6%.
Add support for PEP 705, adding typing_extensions.ReadOnly.
Drop support for Python 3.7 (including PyPy-3.7).
* Fri Feb 2 2024 liyanan <liyanan61@h-partners.com> - 4.5.0-2
- Make tests pass on conda builds
* Tue May 9 2023 liyanan <thistleslyn@163.com> - 4.5.0-1
- Update package to version 4.5.0
* Fri May 06 2022 huangtianhua <huangtianhua@huawei.com> - 3.10.0.2-1
- upgrade to 3.10.0.2 to fix python3.10 test error
* Thu Aug 26 2021 orange-snn <songnannan2@huaiwe.com> - 3.10.0.0-1 * Thu Aug 26 2021 orange-snn <songnannan2@huaiwe.com> - 3.10.0.0-1
- update to 3.10.0.0 - update to 3.10.0.0

Binary file not shown.

Binary file not shown.