Skip to content

Commit 22ec7f9

Browse files
committed
upgrade version to 0.5.2
1 parent 4a2927b commit 22ec7f9

File tree

9 files changed

+58
-14
lines changed

9 files changed

+58
-14
lines changed

.github/workflows/documentation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121

2222
- uses: actions/setup-python@v4
2323
with:
24-
python-version: '3.11'
24+
python-version: '3.12'
2525

2626
- uses: tlylt/install-graphviz@v1
2727

.github/workflows/wheels-any.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919

2020
- uses: actions/setup-python@v4
2121
with:
22-
python-version: '3.11'
22+
python-version: '3.12'
2323

2424
- name: build wheel
2525
run: python -m pip wheel .

CHANGELOGS.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
Change Logs
33
===========
44

5+
0.5.2
6+
+++++
7+
58
0.5.1
69
+++++
710

_doc/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,5 +68,5 @@ Source are available at `sdpython/pandas_streaming <https://github.com/sdpython/
6868
Older versions
6969
++++++++++++++
7070

71+
* `0.5.2 <../v0.5.2/index.html>`_
7172
* `0.5.1 <../v0.5.1/index.html>`_
72-
* `0.5.0 <../v0.5.0/index.html>`_

azure-pipelines.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
strategy:
66
matrix:
77
Python311-Linux:
8-
python.version: '3.11'
8+
python.version: '3.12'
99
maxParallel: 3
1010

1111
steps:
@@ -49,7 +49,7 @@ jobs:
4949
strategy:
5050
matrix:
5151
Python311-Linux:
52-
python.version: '3.11'
52+
python.version: '3.12'
5353
maxParallel: 3
5454

5555
steps:
@@ -91,7 +91,7 @@ jobs:
9191
strategy:
9292
matrix:
9393
Python311-Linux:
94-
python.version: '3.11'
94+
python.version: '3.12'
9595
maxParallel: 3
9696

9797
steps:
@@ -139,7 +139,7 @@ jobs:
139139
strategy:
140140
matrix:
141141
Python311-Windows:
142-
python.version: '3.11'
142+
python.version: '3.12'
143143
maxParallel: 3
144144

145145
steps:
@@ -170,7 +170,7 @@ jobs:
170170
strategy:
171171
matrix:
172172
Python311-Mac:
173-
python.version: '3.11'
173+
python.version: '3.12'
174174
maxParallel: 3
175175

176176
steps:

pandas_streaming/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "0.5.1"
1+
__version__ = "0.5.2"
22
__author__ = "Xavier Dupré"
33
__github__ = "https://github.com/sdpython/pandas_streaming"
44
__url__ = "https://sdpython.github.io/doc/pandas-streaming/dev/"

pyproject.toml

Lines changed: 43 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,39 @@
1+
[project]
2+
authors = [{name="Xavier Dupré", email="xavier.dupre@gmail.com"}]
3+
classifiers = [
4+
"Intended Audience :: Science/Research",
5+
"Intended Audience :: Developers",
6+
"License :: OSI Approved :: MIT License",
7+
"Programming Language :: C",
8+
"Programming Language :: Python",
9+
"Topic :: Software Development",
10+
"Topic :: Scientific/Engineering",
11+
"Development Status :: 5 - Production/Stable",
12+
"Operating System :: Microsoft :: Windows",
13+
"Operating System :: POSIX",
14+
"Operating System :: Unix",
15+
"Operating System :: MacOS",
16+
"Programming Language :: Python :: 3",
17+
"Programming Language :: Python :: 3.10",
18+
"Programming Language :: Python :: 3.11",
19+
"Programming Language :: Python :: 3.12",
20+
"Programming Language :: Python :: 3.13",
21+
]
22+
dependencies = ["pandas"]
23+
description = "Streaming DataFrame: streaming over pandas."
24+
keywords = ["pandas", "streaming"]
25+
license = {file = "LICENSE.txt"}
26+
name = "pandas-streaming"
27+
readme = "README.rst"
28+
requires-python = ">=3.10"
29+
version = "0.5.2"
30+
31+
[project.urls]
32+
homepage = "https://sdpython.github.io/doc/pandas-streaming/dev/"
33+
documentation = "https://sdpython.github.io/doc/pandas-streaming/dev/"
34+
repository = "https://github.com/sdpython/pandas-streaming/"
35+
changelog = "https://sdpython.github.io/doc/pandas-streaming/dev/CHANGELOGS.html"
36+
137
[tool.ruff]
238

339
# Exclude a variety of commonly ignored directories.
@@ -38,7 +74,13 @@ select = [
3874
]
3975

4076
[tool.ruff.lint.per-file-ignores]
41-
"**" = ["B905", "C401", "C408", "C413", "RUF012", "RUF100", "RUF010", "SIM108", "SIM910", "SIM110", "SIM102", "SIM114", "SIM103", "UP015", "UP027", "UP031", "UP034", "UP032", "UP006", "UP035", "UP007", "UP038"]
77+
"**" = [
78+
"B905",
79+
"C401", "C408", "C413",
80+
"RUF012", "RUF100", "RUF010",
81+
"SIM108", "SIM910", "SIM110", "SIM102", "SIM114", "SIM103",
82+
"UP015", "UP027", "UP031", "UP034", "UP032", "UP006", "UP035", "UP007", "UP038"
83+
]
4284
"**/plot*.py" = ["B018"]
4385
"_doc/examples/**.py" = ["E402", "F811", "B018"]
4486
"_unittests/ut_df/test_dataframe_io_helpers.py" = ["E501"]

requirements-dev.txt

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,19 +7,18 @@ jupyter_sphinx
77
jyquickhelper
88
matplotlib
99
nbsphinx
10-
pandas>=1.1.0
10+
pandas>=2
1111
pandocfilters
1212
Pillow
1313
pycodestyle
14-
pylint>=2.14.0
1514
pytest
1615
pytest-cov
1716
ruff
1817
scikit-learn
1918
scipy
2019
sphinx
2120
sphinx-issues
22-
git+https://github.com/sdpython/sphinx-runpython.git
21+
sphinx-runpython
2322
sphinx_gallery
2423
ujson
2524
wheel

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
setup(
4141
name="pandas-streaming",
4242
version=version_str,
43-
description="Array (and numpy) API for ONNX",
43+
description="Streaming DataFrame: streaming over pandas",
4444
long_description=long_description,
4545
author="Xavier Dupré",
4646
author_email="xavier.dupre@gmail.com",

0 commit comments

Comments
 (0)