From 459634f4d4e89c99aeec22249901526a659ea12d Mon Sep 17 00:00:00 2001 From: Rose Syrett <90774497+rosesyrett@users.noreply.github.com> Date: Tue, 14 Nov 2023 16:32:22 +0000 Subject: [PATCH] Update pyproject.toml (#15) * Update pyproject.toml to look at ophyd_async pypi version instead of main branch * Make default python version 3.9 for lint job --- .github/actions/install_requirements/action.yml | 3 +-- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/actions/install_requirements/action.yml b/.github/actions/install_requirements/action.yml index c5d4db4..f9c986d 100644 --- a/.github/actions/install_requirements/action.yml +++ b/.github/actions/install_requirements/action.yml @@ -9,7 +9,7 @@ inputs: required: true python_version: description: Python version to install - default: "3.x" + default: "3.9" runs: using: composite @@ -55,4 +55,3 @@ runs: fi fi shell: bash - diff --git a/pyproject.toml b/pyproject.toml index 05ca7d4..786f46e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,7 +14,7 @@ classifiers = [ description = "Common Diamond specific Bluesky plans and functions" dependencies = [ "ophyd", - "ophyd_async @ git+https://github.com/bluesky/ophyd-async.git@main", + "ophyd_async", "scanspec", ] # Add project dependencies here, e.g. ["click", "numpy"] dynamic = ["version"]