diff --git a/changes/2856-paxcodes.md b/changes/2856-paxcodes.md new file mode 100644 index 0000000..3592ee8 --- /dev/null +++ b/changes/2856-paxcodes.md @@ -0,0 +1 @@ +Update contrib docs re: python version to use for building docs. diff --git a/docs/contributing.md b/docs/contributing.md index b0e0dc5..01c3b44 100644 --- a/docs/contributing.md +++ b/docs/contributing.md @@ -41,9 +41,10 @@ git clone git@github.com:/pydantic.git cd pydantic # 2. Set up a virtualenv for running tests -virtualenv -p `which python3.7` env +virtualenv -p `which python3.8` env source env/bin/activate -# (or however you prefer to setup a python environment, 3.6 will work too) +# Building docs requires 3.8. If you don't need to build docs you can use +# whichever version; 3.6 will work too. # 3. Install pydantic, dependencies, test dependencies and doc dependencies make install