Skip to content
Merged
Show file tree
Hide file tree
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
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion ci/environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ channels:
- conda-forge
- defaults
dependencies:
- python=3.8
- python=3.9
- dask
- distributed
- flake8
Expand Down
2 changes: 1 addition & 1 deletion ci/htcondor.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion ci/pbs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ function jobqueue_before_install {

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

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

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

Expand Down
2 changes: 1 addition & 1 deletion ci/sge/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion ci/slurm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ function jobqueue_before_install {

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

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down