diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2020-12-11 16:56:26 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2021-01-05 12:47:10 -0800 |
commit | ad368007881bac4a060de6915fab609d5631e60c (patch) | |
tree | 493819d109c13239a408bdb7eddb2f0c12fc2dd4 | |
parent | 7c2501542395296ba0c2791f74ba3036a342a45a (diff) | |
download | fatcat-ad368007881bac4a060de6915fab609d5631e60c.tar.gz fatcat-ad368007881bac4a060de6915fab609d5631e60c.zip |
small python 3.7 -> 3.8 tweaks
-rw-r--r-- | python/.coveragerc | 2 | ||||
-rw-r--r-- | python/README.md | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/python/.coveragerc b/python/.coveragerc index 50853426..4ef4dfb7 100644 --- a/python/.coveragerc +++ b/python/.coveragerc @@ -2,4 +2,4 @@ source = fatcat_tools fatcat_web - .venv/lib/python3.7/site-packages/fatcat_openapi_client + .venv/lib/python3.8/site-packages/fatcat_openapi_client diff --git a/python/README.md b/python/README.md index bed8a028..a7306924 100644 --- a/python/README.md +++ b/python/README.md @@ -11,9 +11,9 @@ pypi.org. ## Dependencies -This project uses `pipenv` to manage dependencies, and requires Python 3.7. +This project uses `pipenv` to manage dependencies, and requires Python 3.8. You can can install `pipenv` with `pip` (or `pip3`). If you also install -`pyenv`, `pipenv` will automatically install Python 3.7 for you if needed. You +`pyenv`, `pipenv` will automatically install Python 3.8 for you if needed. You may want to set the `PIPENV_VENV_IN_PROJECT` environment variable on your development machine (see pipenv docs for details). |