Skip to content

Commit

Permalink
Fix biblatex paths (#143)
Browse files Browse the repository at this point in the history
* Hopefully fix path.
* infer_latex_dependencies is default now.
* Adjust versions for new release.
  • Loading branch information
hmgaudecker committed Dec 11, 2023
1 parent 4c73fb0 commit eda143b
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 8 deletions.
7 changes: 6 additions & 1 deletion CHANGES.md
@@ -1,9 +1,14 @@
# Release Notes

## v0.7.1 -- December 2023

- Replace `Pdb++` by `Pdb+` (#142, @janosg).
- Fix a problem with LaTeX paths, noted by Berlin students (#143).

## v0.7.0 -- October 2023

- Update required pytask to version 0.4 and adjust code accordingly (only Python
example).
example) (#139).
- Pre-commit autoupdate / fix ruff complaints.

## v0.6.5 -- March 2023
Expand Down
4 changes: 2 additions & 2 deletions docs/source/conf.py
Expand Up @@ -107,8 +107,8 @@
# |version| and |release|, also used in various other places throughout the
# built documents.
#
release = "0.7.0"
version = "0.7.0"
release = "0.7.1"
version = "0.7.1"

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
4 changes: 2 additions & 2 deletions docs/source/faq.md
Expand Up @@ -118,7 +118,7 @@ but it is precise...).
Then type:

```bash
$ code ~/.cookiecutter_replay/econ-project-templates-0.7.0.json
$ code ~/.cookiecutter_replay/econ-project-templates-0.7.1.json
```

If you are not using VS Code as your editor of choice, adjust the line accordingly.
Expand All @@ -130,7 +130,7 @@ you have spaces or special characters in your path, you need to adjust your path
When done, launch a new shell if necessary and type:

```bash
$ cookiecutter --replay https://github.com/OpenSourceEconomics/econ-project-templates/archive/v0.7.0.zip
$ cookiecutter --replay https://github.com/OpenSourceEconomics/econ-project-templates/archive/v0.7.1.zip
```

(stata_failure_check_erase_log_file)=
Expand Down
2 changes: 1 addition & 1 deletion docs/source/getting_started/cookiecutter_dialogue.md
Expand Up @@ -10,7 +10,7 @@
1. Type (i.e., copy & paste):

```console
cookiecutter https://github.com/OpenSourceEconomics/econ-project-templates/archive/v0.7.0.zip
cookiecutter https://github.com/OpenSourceEconomics/econ-project-templates/archive/v0.7.1.zip
```

1. The dialogue will move you through the installation. **Make sure to keep this page
Expand Down
Expand Up @@ -34,7 +34,7 @@
\AtBeginDocument{\toggletrue{blx@useprefix}}
\AtBeginBibliography{\togglefalse{blx@useprefix}}
\setlength{\bibitemsep}{1.5ex}
\addbibresource{../../paper/refs.bib}
\addbibresource{refs.bib}

\usepackage[unicode=true]{hyperref}
\hypersetup{
Expand Down
1 change: 0 additions & 1 deletion {{cookiecutter.project_slug}}/pyproject.toml
Expand Up @@ -6,7 +6,6 @@ write_to = "src/{{ cookiecutter.project_slug }}/_version.py"

[tool.pytask.ini_options]
paths = ["./src/{{ cookiecutter.project_slug }}", "./paper"]
infer_latex_dependencies = true
pdbcls = "pdbp:Pdb"

[tool.ruff]
Expand Down

0 comments on commit eda143b

Please sign in to comment.