Skip to content

fix cannot import name 'escape' from 'jinja2' #183

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

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
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
Prev Previous commit
Next Next commit
fix to_excel() got an unexpected keyword argument 'encoding'
pip freeze | grep pandas
pandas==2.0.3

but https://github.com/camelot-dev/camelot/blob/5c23e10702b1e53fefa71136d5e8ac2f0de9368a/pyproject.toml#L27 says ```pandas = "^1.5.3"
```

so i added requirement "pandas==1.5.3",
  • Loading branch information
sd3ntato committed May 14, 2024
commit fc49dedb5d6feb52d6e0cbc94df3b350396a0664
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@
"configparser>=3.5.0, <3.6.0",
"Flask>=2.1.1",
"SQLAlchemy>=1.2.12",
"PyPDF2==2.0"
"PyPDF2==2.0",
"pandas==1.5.3",
]
mysql = ["mysqlclient>=1.3.6"]
all_requires = requires + mysql
Expand Down