Skip to content

Commit

Permalink
Fix deprecation warnings due to invalid escape sequences.
Browse files Browse the repository at this point in the history
  • Loading branch information
tirkarthi authored and jalan committed Jun 19, 2020
1 parent 5ee4b3a commit 8ae68ca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ def poppler_cpp_at_least(version):
if platform.system() == "Windows":
conda_prefix = os.getenv("CONDA_PREFIX")
if conda_prefix is not None:
include_dirs = [os.path.join(conda_prefix, "Library\include")]
library_dirs = [os.path.join(conda_prefix, "Library\lib")]
include_dirs = [os.path.join(conda_prefix, r"Library\include")]
library_dirs = [os.path.join(conda_prefix, r"Library\lib")]

extra_compile_args = ["-Wall"]
extra_link_args = []
Expand Down

0 comments on commit 8ae68ca

Please sign in to comment.