Skip to content

Commit

Permalink
Merge pull request #1327 from cta-observatory/r0g_r0v_compression
Browse files Browse the repository at this point in the history
Better R0g r0v compression, drop python 3.9
  • Loading branch information
moralejo authored Dec 18, 2024
2 parents 9aaa78b + fbcb44c commit a328e44
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:

strategy:
matrix:
python-version: ["3.9", "3.10", "3.11"]
python-version: ["3.10", "3.11"]
ctapipe-version: ["v0.19.2"]

steps:
Expand Down Expand Up @@ -107,7 +107,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.9
python-version: "3.10"

- name: Install doc dependencies
run: |
Expand Down
2 changes: 1 addition & 1 deletion environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ dependencies:
- iminuit>=2
- joblib~=1.2.0
- toml
- protozfits=2.5
- protozfits=2.6
- pyparsing
- scipy~=1.11.4
- scikit-learn=1.2
Expand Down
2 changes: 1 addition & 1 deletion lstchain/scripts/lstchain_r0_to_r0g.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ def main():
n_tiles=n_tiles,
rows_per_tile=rows_per_tile,
compression_block_size_kb=64*1024,
defaul_compression="zstd9"))
defaul_compression="lst-r1v1-uncalibrated"))
stream.open(str(name))

stream.move_to_new_table("DataStream")
Expand Down
2 changes: 1 addition & 1 deletion lstchain/scripts/lstchain_r0g_to_r0v.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ def main():
n_tiles=n_tiles,
rows_per_tile=rows_per_tile,
compression_block_size_kb=64*1024,
defaul_compression="zstd9"))
defaul_compression="lst-r1v1-uncalibrated"))
stream.open(str(name))

stream.move_to_new_table("DataStream")
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ long_description_content_type = text/markdown
github_project = cta-observatory/cta-lstchain

[options]
python_requires = >=3.9
python_requires = >=3.10
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def find_scripts(script_dir, prefix, suffix='.py'):
'scikit-learn~=1.2',
'tables',
'toml',
'protozfits>=2.5,<3',
'protozfits>=2.6.1,<3',
'pymongo',
'pyparsing',
'setuptools_scm',
Expand Down

0 comments on commit a328e44

Please sign in to comment.