Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,11 @@ jobs:
with:
fetch-depth: 0

- name: Fetch upstream tags
run: |
git remote add upstream https://github.com/dask/fastparquet.git
git fetch upstream --tags

- name: Setup conda
uses: conda-incubator/setup-miniconda@v3
with:
Expand Down Expand Up @@ -53,6 +58,11 @@ jobs:
with:
fetch-depth: 0

- name: Fetch upstream tags
run: |
git remote add upstream https://github.com/dask/fastparquet.git
git fetch upstream --tags

- name: Setup conda
uses: conda-incubator/setup-miniconda@v3
with:
Expand Down Expand Up @@ -82,6 +92,11 @@ jobs:
with:
fetch-depth: 0

- name: Fetch upstream tags
run: |
git remote add upstream https://github.com/dask/fastparquet.git
git fetch upstream --tags

- name: Setup conda
uses: conda-incubator/setup-miniconda@v3
with:
Expand All @@ -94,6 +109,7 @@ jobs:
pip install hypothesis
pip install pytest-localserver pytest-xdist pytest-asyncio
pip install -e . --no-deps # Install fastparquet
pip install versioneer # Needed for pandas build
git clone https://github.com/pandas-dev/pandas
cd pandas
python setup.py build_ext -j 4
Expand All @@ -117,6 +133,11 @@ jobs:
with:
fetch-depth: 0

- name: Fetch upstream tags
run: |
git remote add upstream https://github.com/dask/fastparquet.git
git fetch upstream --tags

- name: Setup conda
uses: conda-incubator/setup-miniconda@v3
with:
Expand Down
1 change: 0 additions & 1 deletion ci/environment-py310.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,5 @@ dependencies:
- orjson
- ujson
- python-rapidjson
- versioneer
- meson-python
- pyarrow
6 changes: 6 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,8 @@
[build-system]
requires = ["setuptools", "setuptools_scm", "Cython >= 0.29.23", "numpy>=2.0.0rc1"]
build-backend = "setuptools.build_meta"

[tool.setuptools_scm]
write_to = "fastparquet/_version.py"
version_scheme = "guess-next-dev"
local_scheme = "no-local-version"
11 changes: 0 additions & 11 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,3 @@ test=pytest

[tool:pytest]
addopts = -vv

# See the docstring in versioneer.py for instructions. Note that you must
# re-run 'versioneer.py setup' after changing this section, and commit the
# resulting files.

[versioneer]
VCS = git
style = pep440
versionfile_source = fastparquet/_version.py
versionfile_build = fastparquet/_version.py
tag_prefix = ""
6 changes: 1 addition & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,7 @@ def fix_exts(sources):

setup(
name='fastparquet',
use_scm_version={
'version_scheme': 'guess-next-dev',
'local_scheme': 'no-local-version',
'write_to': 'fastparquet/_version.py'
},
use_scm_version=True,
description='Python support for Parquet file format',
author='Martin Durant',
author_email='mdurant@anaconda.com',
Expand Down