Skip to content

Commit

Permalink
rm manitex dep
Browse files Browse the repository at this point in the history
  • Loading branch information
knaaptime committed Dec 24, 2023
1 parent d1416a9 commit 3a50e0b
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 4 deletions.
1 change: 0 additions & 1 deletion environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,3 @@ dependencies:
- pip:
- pandoc-include
- pandoc-latex-admonition
- manitex
2 changes: 1 addition & 1 deletion {{ cookiecutter.repo_name }}/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# the `--platform=linux/amd64` section could be removed if all packages build natively (still causes trouble on osx silicon)
FROM --platform=linux/amd64 condaforge/mambaforge:latest
# ignore this step if using non-linux...
RUN apt update && apt install make -y --no-install-recommends
RUN apt update && apt install build-essential -y --no-install-recommends
RUN mamba install --name base --yes conda-lock --channel conda-forge
COPY --chown=$MAMBA_USER:$MAMBA_USER conda-lock.yml /tmp/conda-lock.yml
RUN mamba lock install /tmp/conda-lock.yml --name {{ cookiecutter.conda_environment }} && \
Expand Down
1 change: 0 additions & 1 deletion {{ cookiecutter.repo_name }}/environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,4 @@ dependencies:
- pandoc-include # necessary to compile the paper
- pandoc-latex-admonition # necessary to compile the paper
- stargazer # good-looking regression tables
- manitex # create manifest file
# add any dependencies not available on conda here (e.g. specific git branch/hash)
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
description = 'Prepare single directory for submission'
parser = argparse.ArgumentParser(description=description)
parser.add_argument('main', default='compiled', help="path to directory with dep and tex files", type=str)
#parser.add_argument("--outputdir", help="output directory for manifest",default="manifest")
parser.add_argument("--extensions", help="image file extensions",
default=['pdf', 'pdf_tex', 'png', 'jpg'])

Expand Down

0 comments on commit 3a50e0b

Please sign in to comment.