diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 848c411..6d3cd68 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,7 +6,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.8"] + python-version: ["3.10"] steps: - name: Checkout diff --git a/setup.cfg b/setup.cfg index b698068..1beed89 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = pacman -version = 0.0.1 +version = 0.4.0 author = Sebastian Zieba author_email = zieba@mpia.de description = Pipeline for reduction and analysis of HST/WFC3 G102 and G141 data @@ -22,7 +22,7 @@ package_dir = =src packages = find: include_package_data = true -python_requires= >=3.7 +python_requires= >=3.8 # Example of how to add dependencies: install_requires = diff --git a/src/pacman/s10_direct_images.py b/src/pacman/s10_direct_images.py index dc8cf19..5ef0dd0 100644 --- a/src/pacman/s10_direct_images.py +++ b/src/pacman/s10_direct_images.py @@ -95,6 +95,6 @@ def run10(eventlabel, workdir: Path, meta=None): # Save results print('Saving Metadata') me.saveevent(meta, meta.workdir / f'WFC3_{meta.eventlabel}_Meta_Save', save=[]) - print('tmp: ', 2+3) + print('tmp: ', 2+6) print('Finished s10 \n') return meta diff --git a/tests/test_all.py b/tests/test_all.py index 052247d..3b7a40e 100644 --- a/tests/test_all.py +++ b/tests/test_all.py @@ -24,8 +24,8 @@ from pacman.lib.gaussfitter import gaussfit as gaussfit from pacman.lib import optextr -#src_dir = Path.cwd() / 'src' -#sys.path.insert(0, src_dir) +src_dir = Path.cwd() / 'src' +sys.path.insert(0, src_dir) # HACK: Sets the encoding to utf-8 for the Github tests. sys.stdout.reconfigure(encoding='utf-8')