From af5829f72af58283d2e239b70c05a7350c40e736 Mon Sep 17 00:00:00 2001 From: dachengx Date: Thu, 17 Oct 2024 22:53:42 -0500 Subject: [PATCH] Update dependencies of strax, remove git repo from dependency list --- .github/workflows/pytest.yml | 2 +- pyproject.toml | 7 +------ 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index 32016a3f7..3f0b90fe0 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -60,7 +60,7 @@ jobs: - name: Install requirements run: | pip install pytest hypothesis coverage coveralls - pip install .[tests] --force-reinstall + pip install git+https://github.com/XENONnT/base_environment.git --force-reinstall pip install git+https://github.com/AxFoundation/strax.git --force-reinstall - name: Start MongoDB diff --git a/pyproject.toml b/pyproject.toml index 354482b86..386912a38 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -31,7 +31,7 @@ straxer = "straxen.scripts.straxer:main" [tool.poetry.dependencies] python = ">=3.9,<3.13" -strax = { git = "https://github.com/AxFoundation/strax.git" } +strax = ">=2.0.0" bokeh = "*" commentjson = "*" gitpython = "*" @@ -49,7 +49,6 @@ pymongo = "*" requests = "*" utilix = ">=0.11.0" xedocs = "*" -base_environment = { git = "https://github.com/XENONnT/base_environment.git", optional = true } commonmark = { version = "0.9.1", optional = true } nbsphinx = { version = "0.8.9", optional = true } recommonmark = { version = "0.7.1", optional = true } @@ -60,10 +59,6 @@ urllib3 = { version = "2.2.2", optional = true } lxml_html_clean = { version = "*", optional = true } [tool.poetry.extras] -tests = [ - "sharedarray", - "base_environment", -] docs = [ "commonmark", "nbsphinx",