diff --git a/README.md b/README.md index 9b7ed49..cdde2c0 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Computed Types in Python -See [spec-draft.rst](spec-draft.rst) for the specification draft and [pre-pep.rst](pre-pep.rst) for the PEP draft. +See [pep.rst](pep.rst) for the PEP draft and [design-qs.rst](design-qs.rst) for some design discussion not yet merged into the PEP. ## Development diff --git a/spec-draft.rst b/design-qs.rst similarity index 100% rename from spec-draft.rst rename to design-qs.rst diff --git a/pre-pep.rst b/pep.rst similarity index 100% rename from pre-pep.rst rename to pep.rst diff --git a/scripts/build-peps.sh b/scripts/build-peps.sh index e85ecf7..f6110b9 100755 --- a/scripts/build-peps.sh +++ b/scripts/build-peps.sh @@ -9,7 +9,7 @@ if [ ! -d peps ]; then fi cd peps/peps if [ ! -s pep-9999.rst ]; then - ln -s ../../../pre-pep.rst pep-9999.rst + ln -s ../../../pep.rst pep-9999.rst fi cd .. diff --git a/scripts/update-examples.sh b/scripts/update-examples.sh index 773b5b3..b845f35 100755 --- a/scripts/update-examples.sh +++ b/scripts/update-examples.sh @@ -1,8 +1,8 @@ #!/bin/sh scripts/py2rst.py tests/test_qblike_2.py --start "Begin PEP section" --end "End PEP section" \ - | scripts/rst_replace_section.py pre-pep.rst qb-impl -i + | scripts/rst_replace_section.py pep.rst qb-impl -i scripts/py2rst.py tests/test_fastapilike_2.py --start "Begin PEP section" --end "End PEP section" \ - | scripts/rst_replace_section.py pre-pep.rst init-impl -i + | scripts/rst_replace_section.py pep.rst init-impl -i