Skip to content

Commit 4696343

Browse files
authored
Merge pull request #1040 from CoffeaTeam/try-py3.12
chore: test in python 3.12
2 parents 16d2d63 + 5edcce1 commit 4696343

File tree

3 files changed

+8
-9
lines changed

3 files changed

+8
-9
lines changed

.cirrus.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ task:
1212
memory: 7G
1313
matrix:
1414
- image: python:3.8
15-
- image: python:3.11
15+
- image: python:3.12
1616

1717
create_venv_script: |
1818
python -m venv ../venv

.github/workflows/ci.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
os: [ubuntu-latest, macOS-latest, windows-latest]
4141
java-version: [17]
4242
java-distribution: ["corretto"]
43-
python-version: ["3.8", "3.11"]
43+
python-version: ["3.8", "3.12"]
4444

4545
name: test coffea (${{ matrix.os }}) - python ${{ matrix.python-version }}, JDK${{ matrix.java-version }}
4646

@@ -104,21 +104,21 @@ jobs:
104104
run: |
105105
pytest --cov-report=xml --cov=coffea --deselect=test_taskvine
106106
- name: Upload codecov
107-
if: matrix.os == 'ubuntu-latest' && matrix.python-version == 3.11
107+
if: matrix.os == 'ubuntu-latest' && matrix.python-version == 3.12
108108
uses: codecov/codecov-action@v4
109109
- name: Install graphviz
110-
if: matrix.os == 'ubuntu-latest' && matrix.python-version == 3.11
110+
if: matrix.os == 'ubuntu-latest' && matrix.python-version == 3.12
111111
uses: ts-graphviz/setup-graphviz@v2
112112
- name: Install pandoc
113-
if: matrix.os == 'ubuntu-latest' && matrix.python-version == 3.11
113+
if: matrix.os == 'ubuntu-latest' && matrix.python-version == 3.12
114114
uses: r-lib/actions/setup-pandoc@v2
115115
- name: Build documentation
116-
if: matrix.os == 'ubuntu-latest' && matrix.python-version == 3.11
116+
if: matrix.os == 'ubuntu-latest' && matrix.python-version == 3.12
117117
run: |
118118
cd docs && make html
119119
touch build/html/.nojekyll
120120
- name: Deploy documentation
121-
if: github.event_name == 'push' && matrix.os == 'ubuntu-latest' && matrix.python-version == 3.11
121+
if: github.event_name == 'push' && matrix.os == 'ubuntu-latest' && matrix.python-version == 3.12
122122
uses: crazy-max/ghaction-github-pages@v4
123123
with:
124124
target_branch: gh-pages
@@ -181,7 +181,7 @@ jobs:
181181
needs: [test, test-vine]
182182
strategy:
183183
matrix:
184-
python-version: ["3.11"]
184+
python-version: ["3.12"]
185185
name: deploy release
186186

187187
steps:

pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,6 @@ Homepage = "https://github.com/coffeateam/coffea"
6969
dask = [
7070
"distributed<2024.2.0,>=2023.4.0",
7171
"bokeh!=3.0.*,>=2.4.2",
72-
"blosc",
7372
]
7473
spark = [
7574
"ipywidgets",

0 commit comments

Comments
 (0)