15
0
Files
python-graphql-core/python-graphql-core.spec
Markéta Machová cb15d3c5b9 Accepting request 1006786 from home:yarunachalam:branches:devel:languages:python
- Update to 3.2.3 
  Patch-release GraphQL-core v3.2.3, based on GraphQL.js v16.6.0.
  This patch-releases includes only one change in GraphQL.js v16.6.0:
  The parser now allows to limit the number of tokens
  Thanks to all who are sponsoring me (@Cito) for maintaining this project.
- Update to 3.2.2
  Patch-release GraphQL-core v3.2.2, based on GraphQL.js v16.4.0.
  This patch-releases includes the changes in GraphQL.js v16.4.0, and the following fixes:
  Require typing extensions when needed
  Recommend using poetry instead of pipenv in the docs (#161)
  Cast error message to string to handle proxy objects (#175)
  Remove newline in description (#180)
- Update to 3.2.1
  Patch-release GraphQL-core v3.2.1, based on GraphQL.js v16.3.0.
  This patch-releases includes the changes in GraphQL.js v16.3.0, and the following fix:
  Serialize with maximum precision when converting float to FloatValue (#164)
  Thanks to @bennyweise for contributing and all who are sponsoring me (@Cito) for maintaining this project.
- Update to 3.2.0
  Final release of GraphQL-core v3.2.0, based on GraphQL.js v16.2.0.
  See v3.2.0rc1, v3.2.0rc2, v3.2.0rc3, v3.2.0rc4, v3.2.0rc5 and the changelog of GraphQL.js for a complete list of changes.
  Thanks to all who contributed and are sponsoring me (@Cito) for maintaining this project.

OBS-URL: https://build.opensuse.org/request/show/1006786
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-graphql-core?expand=0&rev=8
2022-09-29 09:29:22 +00:00

61 lines
1.8 KiB
RPMSpec

#
# spec file for package python-graphql-core
#
# Copyright (c) 2022 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
%define skip_python2 1
Name: python-graphql-core
Version: 3.2.1
Release: 0
Summary: GraphQL implementation for Python
License: MIT
Group: Development/Languages/Python
URL: https://github.com/graphql-python/graphql-core
Source: https://files.pythonhosted.org/packages/source/g/graphql-core/graphql-core-%{version}.tar.gz
BuildRequires: %{python_module pytest-asyncio >= 0.14}
BuildRequires: %{python_module pytest-benchmark >= 3.2}
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Conflicts: python-graphql
BuildArch: noarch
%python_subpackages
%description
GraphQL implementation for Python, a port of GraphQL.js,
the JavaScript reference implementation for GraphQL.
%prep
%setup -q -n graphql-core-%{version}
%build
%python_build
%install
%python_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
%pytest
%files %{python_files}
%doc README.md
%license LICENSE
%{python_sitelib}/*
%changelog