Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move another module to the expansion library #685

Merged
merged 2 commits into from
May 31, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
232 changes: 0 additions & 232 deletions compiler/env_vars_util.py

This file was deleted.

3 changes: 2 additions & 1 deletion compiler/pash_compilation_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@
from datetime import datetime, timedelta
# import queue

from sh_expand import env_vars_util

import config
import env_vars_util
from pash_graphviz import maybe_generate_graphviz
import pash_compiler
from util import *
Expand Down
3 changes: 2 additions & 1 deletion compiler/pash_compiler.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,9 @@

from pash_annotations.annotation_generation.datatypes.parallelizability.AggregatorKind import AggregatorKindEnum

from sh_expand import env_vars_util

import config
import env_vars_util
from ir import *
from ast_to_ir import compile_asts
from ir_to_ast import to_shell
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ graphviz
libdash
pash-annotations>=0.2.0
shasta==0.1.0
sh-expand
sh-expand>=0.1.3