orangeduck / BuildYourOwnLisp

Learn C and build your own programming language in under 1000 lines of code!
http://www.buildyourownlisp.com/
Other
2.9k stars 394 forks source link

Fix deprecated werkzeug.contrib.cache usage #146

Closed peanutbutterandcrackers closed 4 years ago

peanutbutterandcrackers commented 4 years ago

It appears that werkzeug.contrib.cache has been deprecated (see: https://werkzeug.palletsprojects.com/en/0.16.x/contrib/cache/) and the module is being maintained as a separate entity as cachelib (see: https://github.com/pallets/cachelib).

This change substitutes calls to werkzeug.contrib.cache with cachelib and also updates the README.md accordingly.

orangeduck commented 4 years ago

Thanks!