Skip to content

Commit

Permalink
Drop support for Python 3.8 (#1291)
Browse files Browse the repository at this point in the history
  • Loading branch information
ianthomas23 authored Oct 17, 2023
1 parent 9e20700 commit ebae7d0
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
run:
shell: bash -l {0}
env:
PKG_TEST_PYTHON: "--test-python=py38"
PKG_TEST_PYTHON: "--test-python=py39"
MPLBACKEND: "Agg"
CONDA_UPLOAD_TOKEN: ${{ secrets.CONDA_UPLOAD_TOKEN }}
steps:
Expand All @@ -30,7 +30,7 @@ jobs:
- uses: conda-incubator/setup-miniconda@v2
with:
miniconda-version: "latest"
python-version: 3.8
python-version: 3.9
channels: pyviz/label/dev,conda-forge,nodefaults
- name: Fetch unshallow
run: git fetch --prune --tags --unshallow -f
Expand Down Expand Up @@ -65,8 +65,8 @@ jobs:
run:
shell: bash -l {0}
env:
PKG_TEST_PYTHON: "--test-python=py38"
PYTHON_VERSION: "3.8"
PKG_TEST_PYTHON: "--test-python=py39"
PYTHON_VERSION: "3.9"
MPLBACKEND: "Agg"
PPU: ${{ secrets.PPU }}
PPP: ${{ secrets.PPP }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
fail-fast: false
matrix:
os: ['ubuntu-latest', 'macos-latest', 'windows-latest']
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.9", "3.10", "3.11"]
timeout-minutes: 180
defaults:
run:
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@
},
maintainer='Datashader developers',
maintainer_email='[email protected]',
python_requires=">=3.8",
python_requires=">=3.9",
install_requires=install_requires,
extras_require=extras_require,
tests_require=extras_require['tests'],
Expand All @@ -117,7 +117,6 @@
"License :: OSI Approved :: BSD License",
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

[tox]
# python version test group extra envs extra commands
envlist = {py38,py39,py310,py311}-{lint,unit,unit_nojit,unit_deploy,examples,all,examples_extra}-{default}-{dev,pkg}
envlist = {py39,py310,py311}-{lint,unit,unit_nojit,unit_deploy,examples,all,examples_extra}-{default}-{dev,pkg}
build = wheel

[_lint]
Expand Down

0 comments on commit ebae7d0

Please sign in to comment.