Skip to content

Commit

Permalink
update test versions (#895)
Browse files Browse the repository at this point in the history
* update test versions

* more

* still tun on ubuntu 22
  • Loading branch information
martindurant authored Oct 25, 2023
1 parent b5960e4 commit 25fcae2
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
fail-fast: false
matrix:
CONDA_ENV: [py38, py39, py310]
CONDA_ENV: [py39, py310, py311, py312]
steps:
- name: APT
run: sudo apt-get install liblzo2-dev
Expand All @@ -38,12 +38,12 @@ jobs:
run: |
pytest --verbose --cov=fastparquet
v2:
name: v2-py38
name: v2-py310
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
CONDA_ENV: [py38]
CONDA_ENV: [py310]
steps:
- name: APT
run: sudo apt-get install liblzo2-dev
Expand Down Expand Up @@ -150,7 +150,7 @@ jobs:
- name: Setup conda
uses: mamba-org/provision-with-micromamba@main
with:
environment-file: ci/environment-py38win.yml
environment-file: ci/environment-py310win.yml

- name: pip-install
shell: bash -l {0}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_wheel.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
os: [ubuntu-22.04, windows-2019]
architecture: ['x64']
linux_archs: ["native"]
numpy_version: ["numpy~=1.20.3", "numpy~=1.21.0", "numpy~=1.22.0", "numpy#latest"]
numpy_version: ["numpy~=1.23", "numpy~=1.24", "numpy~=1.25", "numpy#latest"]
include:
# https://cibuildwheel.readthedocs.io/en/stable/options/#build-skip
- os: windows-2019
Expand Down
2 changes: 1 addition & 1 deletion ci/environment-py38.yml → ci/environment-py310win.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: test_env
channels:
- conda-forge
dependencies:
- python=3.8
- python=3.10
- bson
- lz4
- lzo
Expand Down
3 changes: 2 additions & 1 deletion ci/environment-py38win.yml → ci/environment-py311.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: test_env
channels:
- conda-forge
dependencies:
- python=3.8
- python=3.11
- bson
- lz4
- lzo
Expand All @@ -13,6 +13,7 @@ dependencies:
- thrift
- numpy
- cramjam
- pyspark=3.3
- packaging
- orjson
- ujson
Expand Down
21 changes: 21 additions & 0 deletions ci/environment-py312.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: test_env
channels:
- conda-forge
dependencies:
- python=3.12
- bson
- lz4
- lzo
- pytest
- pandas
- dask
- pytest-cov
- thrift
- numpy
- cramjam
- pyspark=3.3
- packaging
- orjson
- ujson
- python-rapidjson
- pyarrow

0 comments on commit 25fcae2

Please sign in to comment.