Skip to content

Commit

Permalink
remove 3.9 to 3.11 from ci for now
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastian-zieba committed Nov 9, 2023
1 parent 2b3c0fe commit f424cef
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.8"]

steps:
- name: Checkout
Expand Down
7 changes: 4 additions & 3 deletions src/pacman/lib/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -788,9 +788,10 @@ def create_res_dir(meta):
"""
Creates the result directory depending on which fitters were used.
"""
print('HALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLOOOOOOOOOOOOOOOOOOOOO????????????????????????????????', meta.workdir)
print('HALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLOOOOOOOOOOOOOOOOOOOOO????????????????????????????????222222', meta.fitdir)
print('HALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLOOOOOOOOOOOOOOOOOOOOO???????????????????????????????3333333333333?', os.path.join(meta.workdir, meta.fitdir, 'lsq_res'))
print('H11', meta.workdir)
print('H22', meta.fitdir)
print('H33', os.path.join(meta.workdir, meta.fitdir, 'lsq_res'))
print('DOES IT EXIST', os.path.isdir(os.path.join(meta.workdir, meta.fitdir, 'lsq_res')))
if meta.run_lsq:
if not os.path.isdir(os.path.join(meta.workdir, meta.fitdir, 'lsq_res')):
os.makedirs(os.path.join(meta.workdir, meta.fitdir, 'lsq_res'))
Expand Down

0 comments on commit f424cef

Please sign in to comment.