forked from pool/python-aiocsv
Compare commits
6 Commits
| Author | SHA256 | Date | |
|---|---|---|---|
| 2c5fd746e8 | |||
| 06f2daed02 | |||
| 7e58e90dd8 | |||
| b93e3cf3d1 | |||
| 5f131d58ec | |||
| 114f11088a |
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:0fd2efbb5a327e1e6de5e9d97040e13e86e30420eecffbebb50b399bde4e144e
|
||||
size 20646
|
||||
3
aiocsv-1.4.0.tar.gz
Normal file
3
aiocsv-1.4.0.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:9d584626442a77852408ac3ab670ec9ede374850bf2eda7216d1ad13f256fcb6
|
||||
size 21548
|
||||
@@ -1,3 +1,38 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Sep 29 10:22:39 UTC 2025 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
- update to 1.4.0:
|
||||
* Allow numeric fields to start with escapechar
|
||||
* Fix Dialect typing (wtf cpython)
|
||||
* drop 3.8 support
|
||||
* backport PyModule_Add
|
||||
* Fix seg faults when Parser_new fails partway-through
|
||||
* Consider CPython bug #113732 when running on 3.12
|
||||
* fix type checking issues with new quote settings
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Aug 11 05:06:04 UTC 2025 - Steve Kowalik <steven.kowalik@suse.com>
|
||||
|
||||
- Add BuildRequires on pytest-asyncio due to pytest 8.4.1.
|
||||
- Switch to github tarball for test files.
|
||||
- Skip a test broken by cPython changes.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Oct 11 10:35:13 UTC 2024 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||
|
||||
- Update to 1.3.2
|
||||
* Don't leak records after raising StopIteration
|
||||
* Remove unnecessary type: ignore
|
||||
* Add black, isort and pyright to CI
|
||||
* black & isort all files
|
||||
* black & isort tests
|
||||
* Detailed type hints for reader/writer init methods
|
||||
* Documentation update
|
||||
* Tests: fix type issues with dialect kwargs
|
||||
* Tests: silence issues with parser instantiation
|
||||
- Update BuildRequires and Requires from pyproject.toml
|
||||
- Use Python 3.11 on SLE-15 by default
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Mar 3 12:39:43 UTC 2024 - Ben Greiner <code@bnavigator.de>
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package python-aiocsv
|
||||
#
|
||||
# Copyright (c) 2024 SUSE LLC
|
||||
# Copyright (c) 2025 SUSE LLC and contributors
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@@ -16,21 +16,25 @@
|
||||
#
|
||||
|
||||
|
||||
%{?sle15_python_module_pythons}
|
||||
Name: python-aiocsv
|
||||
Version: 1.3.1
|
||||
Version: 1.4.0
|
||||
Release: 0
|
||||
Summary: Asynchronous CSV reading/writing in Python
|
||||
License: MIT
|
||||
URL: https://github.com/MKuranowski/aiocsv
|
||||
Source: https://files.pythonhosted.org/packages/source/a/aiocsv/aiocsv-%{version}.tar.gz
|
||||
Source: https://github.com/MKuranowski/aiocsv/archive/refs/tags/v%{version}.tar.gz#/aiocsv-%{version}.tar.gz
|
||||
BuildRequires: %{python_module aiofiles}
|
||||
BuildRequires: %{python_module devel >= 3.8}
|
||||
BuildRequires: %{python_module pip}
|
||||
BuildRequires: %{python_module pytest-asyncio}
|
||||
BuildRequires: %{python_module pytest}
|
||||
BuildRequires: %{python_module setuptools >= 61.0}
|
||||
BuildRequires: %{python_module typing_extensions}
|
||||
BuildRequires: %{python_module wheel}
|
||||
BuildRequires: fdupes
|
||||
BuildRequires: python-rpm-macros
|
||||
Requires: python-typing_extensions
|
||||
%python_subpackages
|
||||
|
||||
%description
|
||||
@@ -64,7 +68,8 @@ sed -i '/_parser.c/d' %{buildroot}%{$python_sitearch}/aiocsv-%{version}.dist-inf
|
||||
}
|
||||
|
||||
%check
|
||||
%pytest_arch
|
||||
# https://github.com/MKuranowski/aiocsv/issues/33
|
||||
%pytest_arch -k 'not test_parsing_weird_quotes_nonnumeric'
|
||||
|
||||
%files %{python_files}
|
||||
%doc readme.md
|
||||
|
||||
Reference in New Issue
Block a user