Skip to content

Commit

Permalink
Add testing for Python 3.10 and 3.11 (#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
jrbourbeau committed Jun 5, 2023
1 parent cd731a9 commit 618fc05
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
fail-fast: false
matrix:
os: ["windows-latest", "ubuntu-latest", "macos-latest"]
python-version: ["3.7", "3.8", "3.9"]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]

steps:
- name: Checkout source
Expand Down
10 changes: 10 additions & 0 deletions continous_integeration/environment-3.10.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
name: test-environment
channels:
- conda-forge
dependencies:
- python=3.10
- dask
- pyarrow
- pytest
- pytest-cov
- mock
10 changes: 10 additions & 0 deletions continous_integeration/environment-3.11.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
name: test-environment
channels:
- conda-forge
dependencies:
- python=3.11
- dask
- pyarrow
- pytest
- pytest-cov
- mock
2 changes: 1 addition & 1 deletion continous_integeration/environment-3.7.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ channels:
- conda-forge
dependencies:
- python=3.7
- dask[dataframe,distributed]
- dask
- pyarrow
- pytest
- pytest-cov
Expand Down
2 changes: 1 addition & 1 deletion continous_integeration/environment-3.8.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ channels:
- conda-forge
dependencies:
- python=3.8
- dask[dataframe,distributed]
- dask
- pyarrow
- pytest
- pytest-cov
Expand Down
2 changes: 1 addition & 1 deletion continous_integeration/environment-3.9.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ channels:
- conda-forge
dependencies:
- python=3.9
- dask[dataframe,distributed]
- dask
- pyarrow
- pytest
- pytest-cov
Expand Down

0 comments on commit 618fc05

Please sign in to comment.