Skip to content

Commit af08bab

Browse files
authored
changelog (#969)
1 parent f452413 commit af08bab

7 files changed

Lines changed: 31 additions & 9 deletions

File tree

.github/workflows/main.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
fail-fast: false
1515
matrix:
16-
CONDA_ENV: [py39, py310, py311, py312]
16+
CONDA_ENV: [py310, py311, py312, py313, py314]
1717
steps:
1818
- name: APT
1919
run: sudo apt-get install liblzo2-dev

.github/workflows/test_wheel.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
os: [ubuntu-22.04, windows-2022]
1414
architecture: ['x64']
1515
linux_archs: ["native"]
16-
numpy_version: ["numpy~=1.23", "numpy~=1.24", "numpy~=1.25", "numpy#latest"]
16+
numpy_version: ["numpy#latest"]
1717
include:
1818
# https://cibuildwheel.readthedocs.io/en/stable/options/#build-skip
1919
- os: windows-2022

.github/workflows/wheel.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -215,9 +215,9 @@ jobs:
215215
python -m pip install delvewheel cython
216216
217217
- name: Build wheels
218-
uses: joerick/cibuildwheel@v2.21.3
218+
uses: joerick/cibuildwheel@v3.3.0
219219

220-
- uses: actions/upload-artifact@v3
220+
- uses: actions/upload-artifact@v6
221221
with:
222222
path: ./wheelhouse/*.whl
223223
name: wheels
@@ -234,7 +234,7 @@ jobs:
234234
name: ${{ matrix.os }} ${{ matrix.architecture}}
235235
env:
236236
CIBW_BEFORE_ALL: "pip install numpy==2.0.0rc1 cython"
237-
CIBW_SKIP: "pp* *37* *38*"
237+
CIBW_SKIP: "pp* *37* *38* *39*"
238238
CIBW_ARCHS_MACOS: ${{ matrix.architecture }}
239239
CIBW_TEST_SKIP: "*"
240240

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: test_env
22
channels:
33
- conda-forge
44
dependencies:
5-
- python=3.9
5+
- python=3.13
66
- bson
77
- lz4
88
- lzo
@@ -13,7 +13,7 @@ dependencies:
1313
- thrift
1414
- numpy
1515
- cramjam
16-
- pyspark=3.3
16+
- pyspark
1717
- packaging
1818
- orjson
1919
- ujson

ci/environment-py314.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: test_env
2+
channels:
3+
- conda-forge
4+
dependencies:
5+
- python=3.14
6+
- bson
7+
- lz4
8+
- lzo
9+
- pytest
10+
- pandas
11+
- dask
12+
- pytest-cov
13+
- thrift
14+
- numpy
15+
- cramjam
16+
- packaging
17+
- orjson
18+
- ujson
19+
- python-rapidjson

docs/source/releasenotes.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
Release Notes
22
=============
33

4+
Releases since 2023 are essentially bugfixes only and updating
5+
supported python versions.
6+
47
2023.10.0
58
---------
69

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,11 +61,11 @@ def fix_exts(sources):
6161
'License :: OSI Approved :: Apache Software License',
6262
'Programming Language :: Python',
6363
'Programming Language :: Python :: 3',
64-
'Programming Language :: Python :: 3.9',
6564
'Programming Language :: Python :: 3.10',
6665
'Programming Language :: Python :: 3.11',
6766
'Programming Language :: Python :: 3.12',
6867
'Programming Language :: Python :: 3.13',
68+
'Programming Language :: Python :: 3.14',
6969
'Programming Language :: Python :: Implementation :: CPython',
7070
],
7171
packages=['fastparquet'],
@@ -81,6 +81,6 @@ def fix_exts(sources):
8181
else ''),
8282
include_package_data=True,
8383
exclude_package_data={'fastparquet': ['test/*']},
84-
python_requires=">=3.9",
84+
python_requires=">=3.10",
8585
**extra
8686
)

0 commit comments

Comments
 (0)