Skip to content

Commit

Permalink
Remove CMT URLs (#101)
Browse files Browse the repository at this point in the history
  • Loading branch information
dachengx authored Jan 27, 2025
1 parent 2893cac commit e73d316
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pypi_install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Setup python
uses: actions/[email protected]
with:
python-version: "3.9"
python-version: "3.10"

- name: Checkout repo
uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
fail-fast: false
matrix:
os: [ "ubuntu-latest" ]
python-version: [ "3.9", "3.10" ]
python-version: [ "3.10", "3.11" ]
test: [ "coveralls" ]

steps:
Expand Down
2 changes: 1 addition & 1 deletion .readthedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ version: 2
build:
os: ubuntu-22.04
tools:
python: "3.9"
python: "3.10"

# Build documentation in the "docs/" directory with Sphinx
sphinx:
Expand Down
2 changes: 1 addition & 1 deletion axidence/plugins/pairing/peaks_paired.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ class PeaksPaired(ExhaustPlugin, DownChunkingPlugin):
)

electron_drift_velocity = straxen.URLConfig(
default="cmt://electron_drift_velocity?version=ONLINE&run_id=plugin.run_id",
default="xedocs://electron_drift_velocities?attr=value&run_id=plugin.run_id&version=ONLINE",
cache=True,
help="Vertical electron drift velocity in cm/ns (1e4 m/ms)",
)
Expand Down
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,18 @@ classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Physics",
]
repository = "https://github.com/XENONnT/axidence"
documentation = "https://readthedocs.org/projects/axidence/"

[tool.poetry.dependencies]
python = ">=3.9,<4.0"
strax = ">=2.0.2"
straxen = { git = "https://github.com/XENONnT/straxen.git@master"}
python = ">=3.10,<4.0"
strax = ">=2.0.5"
straxen = ">=3.0.3"
GOFevaluation = ">=0.1.5"

[build-system]
Expand Down

0 comments on commit e73d316

Please sign in to comment.