Skip to content

Commit

Permalink
Fixed binary path
Browse files Browse the repository at this point in the history
  • Loading branch information
dalmijn committed Nov 8, 2023
1 parent dc69b19 commit b8672d6
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .build/runtime_hooks.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import sys
from pathlib import Path

cwd = Path(sys.argv[0]).parent
cwd = Path(sys.executable).parent

os.environ["PROJ_LIB"] = str(Path(cwd, "bin", "share"))
sys.path.append(str(Path(cwd, "bin", "share")))
10 changes: 5 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ __pycache__/
*$py.class

# Local documentation and temporary files (calculation etc.)
.cov/
.docs/
tmp/
whl/
Expand Down Expand Up @@ -72,11 +73,6 @@ cover/
# Scrapy stuff:
.scrapy

# Sphinx documentation
.docs/_build/
.docs/source/_generated/
.docs/_examples/

# PyBuilder
.pybuilder/
target/
Expand Down Expand Up @@ -112,3 +108,7 @@ environment.yml

# Cython debug symbols
cython_debug/

# example output data
docs/examples/example_output
docs/PDF_Documentation_files
7 changes: 6 additions & 1 deletion docs/.gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
/.quarto/
/_site/
/_freeze/
/_inv/
/_site/
/api/*
!api/.gitkeep
*.jupyter_cache/
objects.json
Empty file added docs/api/.gitkeep
Empty file.
3 changes: 0 additions & 3 deletions docs/api/index.qmd

This file was deleted.

0 comments on commit b8672d6

Please sign in to comment.