Skip to content

Bump minimum Python to 3.9 #652

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Aug 6, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -40,6 +40,7 @@ jobs:
- name: Setup Job queuing system
if: matrix.jobqueue != 'none'
run: |
cp ci/environment.yml ci/${{ matrix.jobqueue }}/environment.yml
source ci/${{ matrix.jobqueue }}.sh
jobqueue_before_install
2 changes: 1 addition & 1 deletion ci/environment.yml
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@ channels:
- conda-forge
- defaults
dependencies:
- python=3.8
- python=3.9
- dask
- distributed
- flake8
2 changes: 1 addition & 1 deletion ci/htcondor.sh
Original file line number Diff line number Diff line change
@@ -6,7 +6,7 @@ function jobqueue_before_install {

# start htcondor cluster
cd ./ci/htcondor
docker compose pull
docker compose build
./start-htcondor.sh
docker compose exec -T submit /bin/bash -c "condor_status"
docker compose exec -T submit /bin/bash -c "condor_q"
2 changes: 1 addition & 1 deletion ci/pbs.sh
Original file line number Diff line number Diff line change
@@ -6,7 +6,7 @@ function jobqueue_before_install {

# start pbs cluster
cd ./ci/pbs
docker compose pull
docker compose build
./start-pbs.sh
cd -

2 changes: 1 addition & 1 deletion ci/sge.sh
Original file line number Diff line number Diff line change
@@ -6,7 +6,7 @@ function jobqueue_before_install {

# start sge cluster
cd ./ci/sge
docker compose pull
docker compose build
./start-sge.sh
cd -

2 changes: 1 addition & 1 deletion ci/sge/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -42,7 +42,7 @@ services:
context: .
target: slave
args:
PYTHON_VERSION: 3.8
PYTHON_VERSION: 3.9
container_name: slave_two
hostname: slave_two
#network_mode: host
2 changes: 1 addition & 1 deletion ci/slurm.sh
Original file line number Diff line number Diff line change
@@ -6,7 +6,7 @@ function jobqueue_before_install {

# start slurm cluster
cd ./ci/slurm
docker compose pull
docker compose build
./start-slurm.sh
cd -

2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -28,7 +28,7 @@
cmdclass=versioneer.get_cmdclass(),
description="Deploy Dask on job queuing systems like PBS, Slurm, SGE or LSF",
url="https://jobqueue.dask.org",
python_requires=">=3.8",
python_requires=">=3.9",
license="BSD 3-Clause",
packages=["dask_jobqueue"],
include_package_data=True,