Skip to content

Commit

Permalink
Drop Python 3.8 and add Python 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
jrbourbeau committed Sep 6, 2023
1 parent 5f084d5 commit 238eab7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
fail-fast: false
matrix:
os: ["windows-latest", "ubuntu-latest", "macos-latest"]
python-version: ["3.8", "3.9", "3.10"]
python-version: ["3.9", "3.10", "3.11"]

steps:
- name: Checkout source
Expand Down
2 changes: 1 addition & 1 deletion ci/environment-3.8.yaml → ci/environment-3.11.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ channels:
- conda-forge
- nodefaults
dependencies:
- python=3.8
- python=3.11
- dask
- distributed
- pandas
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
packages=["dask_bigquery"],
long_description=long_description,
long_description_content_type="text/markdown",
python_requires=">=3.8",
python_requires=">=3.9",
install_requires=open("requirements.txt").read().strip().split("\n"),
extras_require={"test": ["pytest", "distributed", "google-auth>=1.30.0"]},
include_package_data=True,
Expand Down

0 comments on commit 238eab7

Please sign in to comment.