From a1976b05f89df4679c9136a3c310b6f033d51d36 Mon Sep 17 00:00:00 2001 From: Ben Parsons-Willis Date: Wed, 10 Feb 2021 16:02:59 +0000 Subject: [PATCH 01/27] Testing action (Looking at workspace filesystem) --- .github/workflows/build_docs.yaml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/workflows/build_docs.yaml diff --git a/.github/workflows/build_docs.yaml b/.github/workflows/build_docs.yaml new file mode 100644 index 0000000..31ab8d5 --- /dev/null +++ b/.github/workflows/build_docs.yaml @@ -0,0 +1,27 @@ +# Triggers the workflows on push or pull request events but only for the main branch +name: Generate new docs. +on: + # Allows you to run this workflows manually from the Actions tab + workflow_dispatch: + +# A workflows run is made up of one or more jobs that can run sequentially or in parallel +jobs: + # This workflows contains a single job called "build" + build: + # The type of runner that the job will run on + runs-on: ubuntu-latest + + # Steps represent a sequence of tasks that will be executed as part of the job + steps: + # Runs a set of commands using the runners shell + - uses: actions/checkout@v2 + with: + ref: main + - uses: extractions/setup-just@v1 + + - name: Run a multi-line script + run: | + pip install sphinx + just docs + ls + git config --global user.name "Serde Docs Auto-Generator" From f8ee7e5ce269be21c87be4953889791371463a0a Mon Sep 17 00:00:00 2001 From: Ben Parsons-Willis Date: Wed, 10 Feb 2021 16:06:13 +0000 Subject: [PATCH 02/27] Testing action (Fixing invalid branchname) --- .github/workflows/build_docs.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build_docs.yaml b/.github/workflows/build_docs.yaml index 31ab8d5..cce6870 100644 --- a/.github/workflows/build_docs.yaml +++ b/.github/workflows/build_docs.yaml @@ -16,7 +16,7 @@ jobs: # Runs a set of commands using the runners shell - uses: actions/checkout@v2 with: - ref: main + ref: master - uses: extractions/setup-just@v1 - name: Run a multi-line script From 45f8be46918653baffe7bb79f1ad2e4f27bade4a Mon Sep 17 00:00:00 2001 From: Ben Parsons-Willis Date: Wed, 10 Feb 2021 16:08:35 +0000 Subject: [PATCH 03/27] Testing action (Changed sphinx install method) - When installing through pip, no sphinx-build command was installed --- .github/workflows/build_docs.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build_docs.yaml b/.github/workflows/build_docs.yaml index cce6870..3266356 100644 --- a/.github/workflows/build_docs.yaml +++ b/.github/workflows/build_docs.yaml @@ -21,7 +21,7 @@ jobs: - name: Run a multi-line script run: | - pip install sphinx + apt-get install python3-sphinx just docs ls git config --global user.name "Serde Docs Auto-Generator" From 9a995f9aea49a2c4207b2f20811c058e161cb17f Mon Sep 17 00:00:00 2001 From: Ben Parsons-Willis Date: Wed, 10 Feb 2021 16:09:56 +0000 Subject: [PATCH 04/27] Testing action (Sudoing apt) --- .github/workflows/build_docs.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build_docs.yaml b/.github/workflows/build_docs.yaml index 3266356..5837943 100644 --- a/.github/workflows/build_docs.yaml +++ b/.github/workflows/build_docs.yaml @@ -21,7 +21,7 @@ jobs: - name: Run a multi-line script run: | - apt-get install python3-sphinx + sudo apt-get install python3-sphinx just docs ls git config --global user.name "Serde Docs Auto-Generator" From 2add9c2ae3a919d1f6f7fb7ae37520f1a601f5f3 Mon Sep 17 00:00:00 2001 From: Ben Parsons-Willis Date: Wed, 10 Feb 2021 16:14:45 +0000 Subject: [PATCH 05/27] Testing Action (Changing import of serde for docs conf) - I think it was importing the pip installed serde package from your pip install library, now imports the local library from the directory - Caveat: Now just docs must be run from the project root. --- docs/conf.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 54141f6..6b2642f 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -1,8 +1,7 @@ import doctest from datetime import datetime -import serde - +import src as serde # Project configuration project = 'Serde' From d08a5dacbdb2274b7f19eeb216427b1b5c894ded Mon Sep 17 00:00:00 2001 From: Ben Parsons-Willis Date: Wed, 10 Feb 2021 16:24:45 +0000 Subject: [PATCH 06/27] Testing Action (Investigating what directory is being worked in) --- .github/workflows/build_docs.yaml | 1 + docs/conf.py | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build_docs.yaml b/.github/workflows/build_docs.yaml index 5837943..46a5730 100644 --- a/.github/workflows/build_docs.yaml +++ b/.github/workflows/build_docs.yaml @@ -22,6 +22,7 @@ jobs: - name: Run a multi-line script run: | sudo apt-get install python3-sphinx + pwd just docs ls git config --global user.name "Serde Docs Auto-Generator" diff --git a/docs/conf.py b/docs/conf.py index 6b2642f..666c3d7 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -1,9 +1,11 @@ import doctest from datetime import datetime -import src as serde +import serde +import os # Project configuration +print(os.getcwd()) project = 'Serde' copyright = f' {datetime.now().year:d}, {serde.__author__}' author = serde.__author__ From fa01a6e6c402f863b8c615737a6f46d9204d9105 Mon Sep 17 00:00:00 2001 From: Ben Parsons-Willis Date: Wed, 10 Feb 2021 16:25:15 +0000 Subject: [PATCH 07/27] Testing Action (Investigating what directory is being worked in) --- docs/conf.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 666c3d7..8090526 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -1,11 +1,11 @@ import doctest from datetime import datetime -import serde -import os -# Project configuration +import os print(os.getcwd()) +import serde +# Project configuration project = 'Serde' copyright = f' {datetime.now().year:d}, {serde.__author__}' author = serde.__author__ From 035ef57c4ff43d196ac4bb7928c183868d5ceec0 Mon Sep 17 00:00:00 2001 From: Ben Parsons-Willis Date: Wed, 10 Feb 2021 16:28:28 +0000 Subject: [PATCH 08/27] Testing Action (Trying to get serde to import properly) --- docs/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index 8090526..6dc0824 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -4,7 +4,7 @@ import os print(os.getcwd()) -import serde +from src import serde # Project configuration project = 'Serde' copyright = f' {datetime.now().year:d}, {serde.__author__}' From aa12d99c806205aac5408d7502424367ff812fc0 Mon Sep 17 00:00:00 2001 From: Ben Parsons-Willis Date: Wed, 10 Feb 2021 16:31:34 +0000 Subject: [PATCH 09/27] Testing Action (Investigating runner file-system more) --- docs/conf.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index 6dc0824..30cbee8 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -3,7 +3,8 @@ import os -print(os.getcwd()) +print(os.system("ls")) +print(os.system("pwd")) from src import serde # Project configuration project = 'Serde' From 729f8999ad16b4618a776864bcb2a68592019e3d Mon Sep 17 00:00:00 2001 From: Ben Parsons-Willis Date: Wed, 10 Feb 2021 16:35:03 +0000 Subject: [PATCH 10/27] Testing Action (Investigating runner file-system more) --- .github/workflows/build_docs.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build_docs.yaml b/.github/workflows/build_docs.yaml index 46a5730..7ccc412 100644 --- a/.github/workflows/build_docs.yaml +++ b/.github/workflows/build_docs.yaml @@ -22,7 +22,7 @@ jobs: - name: Run a multi-line script run: | sudo apt-get install python3-sphinx + echo $WORKSPACE pwd just docs - ls git config --global user.name "Serde Docs Auto-Generator" From 6709f38212773ff98f57fbc24d5f8feb05f28d71 Mon Sep 17 00:00:00 2001 From: Ben Parsons-Willis Date: Wed, 10 Feb 2021 16:36:30 +0000 Subject: [PATCH 11/27] Testing Action (Investigating runner file-system more) --- .github/workflows/build_docs.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/build_docs.yaml b/.github/workflows/build_docs.yaml index 7ccc412..bfd91d0 100644 --- a/.github/workflows/build_docs.yaml +++ b/.github/workflows/build_docs.yaml @@ -22,7 +22,6 @@ jobs: - name: Run a multi-line script run: | sudo apt-get install python3-sphinx - echo $WORKSPACE - pwd + echo $GITHUB_WORKSPACE just docs git config --global user.name "Serde Docs Auto-Generator" From d872f361f39162641906e905ee8bffe8b3c2ec4e Mon Sep 17 00:00:00 2001 From: Ben Parsons-Willis Date: Wed, 10 Feb 2021 16:39:12 +0000 Subject: [PATCH 12/27] Testing Action (Trying to make serde package available in PATH) --- .github/workflows/build_docs.yaml | 2 +- docs/conf.py | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build_docs.yaml b/.github/workflows/build_docs.yaml index bfd91d0..db2b13f 100644 --- a/.github/workflows/build_docs.yaml +++ b/.github/workflows/build_docs.yaml @@ -22,6 +22,6 @@ jobs: - name: Run a multi-line script run: | sudo apt-get install python3-sphinx - echo $GITHUB_WORKSPACE + export PATH=$GITHUB_WORKSPACE/src:$PATH just docs git config --global user.name "Serde Docs Auto-Generator" diff --git a/docs/conf.py b/docs/conf.py index 30cbee8..1bab748 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -3,9 +3,9 @@ import os -print(os.system("ls")) -print(os.system("pwd")) -from src import serde +import serde + + # Project configuration project = 'Serde' copyright = f' {datetime.now().year:d}, {serde.__author__}' From 4ae2996e962e43304afbb1aeeab31c2a5b9d3d27 Mon Sep 17 00:00:00 2001 From: Ben Parsons-Willis Date: Wed, 10 Feb 2021 16:42:02 +0000 Subject: [PATCH 13/27] Testing Action (Trying to make serde package available in PATH) --- .github/workflows/build_docs.yaml | 7 +++++-- docs/test_availability.py | 3 +++ 2 files changed, 8 insertions(+), 2 deletions(-) create mode 100644 docs/test_availability.py diff --git a/.github/workflows/build_docs.yaml b/.github/workflows/build_docs.yaml index db2b13f..a5af5b5 100644 --- a/.github/workflows/build_docs.yaml +++ b/.github/workflows/build_docs.yaml @@ -23,5 +23,8 @@ jobs: run: | sudo apt-get install python3-sphinx export PATH=$GITHUB_WORKSPACE/src:$PATH - just docs - git config --global user.name "Serde Docs Auto-Generator" + echo $PATH + cd docs + python3 test_availability.py + # just docs + # git config --global user.name "Serde Docs Auto-Generator" diff --git a/docs/test_availability.py b/docs/test_availability.py new file mode 100644 index 0000000..2cc9b07 --- /dev/null +++ b/docs/test_availability.py @@ -0,0 +1,3 @@ +import serde + +print("SUCCEEDED") \ No newline at end of file From be4059d2faf3d14c42da60ebe561939037ccb46f Mon Sep 17 00:00:00 2001 From: Ben Parsons-Willis Date: Wed, 10 Feb 2021 16:46:22 +0000 Subject: [PATCH 14/27] Testing Action (Trying to make serde package available in PYTHONPATH) --- .github/workflows/build_docs.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build_docs.yaml b/.github/workflows/build_docs.yaml index a5af5b5..0dbba2f 100644 --- a/.github/workflows/build_docs.yaml +++ b/.github/workflows/build_docs.yaml @@ -22,7 +22,7 @@ jobs: - name: Run a multi-line script run: | sudo apt-get install python3-sphinx - export PATH=$GITHUB_WORKSPACE/src:$PATH + export PYTHONPATH=$GITHUB_WORKSPACE/src:$PYTHONPATH echo $PATH cd docs python3 test_availability.py From c4babb443688f608ed18c7812f2eb9ac9008bb34 Mon Sep 17 00:00:00 2001 From: Ben Parsons-Willis Date: Wed, 10 Feb 2021 16:48:27 +0000 Subject: [PATCH 15/27] Testing Action (Path works -> Testing docs build) --- .github/workflows/build_docs.yaml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build_docs.yaml b/.github/workflows/build_docs.yaml index 0dbba2f..a41b80e 100644 --- a/.github/workflows/build_docs.yaml +++ b/.github/workflows/build_docs.yaml @@ -23,8 +23,7 @@ jobs: run: | sudo apt-get install python3-sphinx export PYTHONPATH=$GITHUB_WORKSPACE/src:$PYTHONPATH - echo $PATH - cd docs - python3 test_availability.py - # just docs - # git config --global user.name "Serde Docs Auto-Generator" + just docs + git config --global user.name "Serde Docs Auto-Generator" + cd docs/_build/html + ls \ No newline at end of file From b6b6f7c2f119d4fcf1d0d71583577708dec0e444 Mon Sep 17 00:00:00 2001 From: Ben Parsons-Willis Date: Wed, 10 Feb 2021 16:48:46 +0000 Subject: [PATCH 16/27] Cleaning test files --- docs/test_availability.py | 3 --- 1 file changed, 3 deletions(-) delete mode 100644 docs/test_availability.py diff --git a/docs/test_availability.py b/docs/test_availability.py deleted file mode 100644 index 2cc9b07..0000000 --- a/docs/test_availability.py +++ /dev/null @@ -1,3 +0,0 @@ -import serde - -print("SUCCEEDED") \ No newline at end of file From 00c468d61f04d9cd67a0dddebd1059edfb827127 Mon Sep 17 00:00:00 2001 From: Ben Parsons-Willis Date: Wed, 10 Feb 2021 16:54:02 +0000 Subject: [PATCH 17/27] Testing Action: (Full test) --- .github/workflows/build_docs.yaml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build_docs.yaml b/.github/workflows/build_docs.yaml index a41b80e..f3410da 100644 --- a/.github/workflows/build_docs.yaml +++ b/.github/workflows/build_docs.yaml @@ -26,4 +26,10 @@ jobs: just docs git config --global user.name "Serde Docs Auto-Generator" cd docs/_build/html - ls \ No newline at end of file + git init + git remote add origin git@github.com:vyrzdev/serde.git + git fetch + git reset origin/gh-pages + git add . + git commit -m "publish docs for $(git -C ../../.. rev-parse --short HEAD)" + git push origin HEAD:gh-pages \ No newline at end of file From 23d2d3f5eb5c1d15b659873238c7664faf843cd2 Mon Sep 17 00:00:00 2001 From: Ben Parsons-Willis Date: Wed, 10 Feb 2021 17:01:20 +0000 Subject: [PATCH 18/27] Testing Action: (testing swap space method) --- .github/workflows/build_docs.yaml | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build_docs.yaml b/.github/workflows/build_docs.yaml index f3410da..0517090 100644 --- a/.github/workflows/build_docs.yaml +++ b/.github/workflows/build_docs.yaml @@ -25,11 +25,6 @@ jobs: export PYTHONPATH=$GITHUB_WORKSPACE/src:$PYTHONPATH just docs git config --global user.name "Serde Docs Auto-Generator" - cd docs/_build/html - git init - git remote add origin git@github.com:vyrzdev/serde.git - git fetch - git reset origin/gh-pages - git add . - git commit -m "publish docs for $(git -C ../../.. rev-parse --short HEAD)" - git push origin HEAD:gh-pages \ No newline at end of file + cp docs/_build/html/* ../html_docs_swap_folder/ + ls .. + ls ../html_docs_swap_folder \ No newline at end of file From 9782137cafc9be14322101101bba10ab6c7fff3f Mon Sep 17 00:00:00 2001 From: Ben Parsons-Willis Date: Wed, 10 Feb 2021 17:02:49 +0000 Subject: [PATCH 19/27] Testing Action: (testing swap space method) --- .github/workflows/build_docs.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/build_docs.yaml b/.github/workflows/build_docs.yaml index 0517090..3174e16 100644 --- a/.github/workflows/build_docs.yaml +++ b/.github/workflows/build_docs.yaml @@ -25,6 +25,7 @@ jobs: export PYTHONPATH=$GITHUB_WORKSPACE/src:$PYTHONPATH just docs git config --global user.name "Serde Docs Auto-Generator" + mkdir ../html_docs_swap_folder cp docs/_build/html/* ../html_docs_swap_folder/ ls .. ls ../html_docs_swap_folder \ No newline at end of file From 7ab581ce74a7d8c1b616f619edc58a924910fa42 Mon Sep 17 00:00:00 2001 From: Ben Parsons-Willis Date: Wed, 10 Feb 2021 17:05:09 +0000 Subject: [PATCH 20/27] Testing Action: (testing swap space method) --- .github/workflows/build_docs.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build_docs.yaml b/.github/workflows/build_docs.yaml index 3174e16..8020606 100644 --- a/.github/workflows/build_docs.yaml +++ b/.github/workflows/build_docs.yaml @@ -26,6 +26,6 @@ jobs: just docs git config --global user.name "Serde Docs Auto-Generator" mkdir ../html_docs_swap_folder - cp docs/_build/html/* ../html_docs_swap_folder/ + cp -r docs/_build/html/* ../html_docs_swap_folder/ ls .. ls ../html_docs_swap_folder \ No newline at end of file From 723175a0bd72e4d288535cdf9a6520ba9bc05ac2 Mon Sep 17 00:00:00 2001 From: Ben Parsons-Willis Date: Wed, 10 Feb 2021 17:09:46 +0000 Subject: [PATCH 21/27] Testing Action: (checking gh-pages branch already in local) --- .github/workflows/build_docs.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/build_docs.yaml b/.github/workflows/build_docs.yaml index 8020606..209922c 100644 --- a/.github/workflows/build_docs.yaml +++ b/.github/workflows/build_docs.yaml @@ -27,5 +27,4 @@ jobs: git config --global user.name "Serde Docs Auto-Generator" mkdir ../html_docs_swap_folder cp -r docs/_build/html/* ../html_docs_swap_folder/ - ls .. - ls ../html_docs_swap_folder \ No newline at end of file + git branch -a From 67201d39aa589adf2386730a5e3061d61f02c913 Mon Sep 17 00:00:00 2001 From: Ben Parsons-Willis Date: Wed, 10 Feb 2021 17:12:49 +0000 Subject: [PATCH 22/27] Testing Action: (testing git staging) --- .github/workflows/build_docs.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build_docs.yaml b/.github/workflows/build_docs.yaml index 209922c..d652424 100644 --- a/.github/workflows/build_docs.yaml +++ b/.github/workflows/build_docs.yaml @@ -27,4 +27,6 @@ jobs: git config --global user.name "Serde Docs Auto-Generator" mkdir ../html_docs_swap_folder cp -r docs/_build/html/* ../html_docs_swap_folder/ - git branch -a + git fetch + git checkout -t origin/gh-pages + ls \ No newline at end of file From 4e2306a4aca0b41663e19e0edabbee5255b7ba64 Mon Sep 17 00:00:00 2001 From: Ben Parsons-Willis Date: Wed, 10 Feb 2021 17:17:11 +0000 Subject: [PATCH 23/27] Testing Action: (Full workflow test) --- .github/workflows/build_docs.yaml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build_docs.yaml b/.github/workflows/build_docs.yaml index d652424..229ba90 100644 --- a/.github/workflows/build_docs.yaml +++ b/.github/workflows/build_docs.yaml @@ -29,4 +29,8 @@ jobs: cp -r docs/_build/html/* ../html_docs_swap_folder/ git fetch git checkout -t origin/gh-pages - ls \ No newline at end of file + rm -rf ./* + cp -r ../html_docs_swap_folder/* ./ + git add . + git commit -m "Testing Pages Generation" + git push \ No newline at end of file From 326828b1abc21c75d2a16523f9f72f35a0bcfc16 Mon Sep 17 00:00:00 2001 From: Ben Parsons-Willis Date: Wed, 10 Feb 2021 17:20:27 +0000 Subject: [PATCH 24/27] Testing Action: (Added fancy version number thing) --- .github/workflows/build_docs.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build_docs.yaml b/.github/workflows/build_docs.yaml index 229ba90..9de8d02 100644 --- a/.github/workflows/build_docs.yaml +++ b/.github/workflows/build_docs.yaml @@ -32,5 +32,5 @@ jobs: rm -rf ./* cp -r ../html_docs_swap_folder/* ./ git add . - git commit -m "Testing Pages Generation" + git commit -m "publish docs for $(git -C ../../.. rev-parse --short HEAD)" git push \ No newline at end of file From bf7a4bcd9df7842bfd79610bb779ccb587949bc2 Mon Sep 17 00:00:00 2001 From: Ben Parsons-Willis Date: Wed, 10 Feb 2021 17:22:24 +0000 Subject: [PATCH 25/27] Silenced fail exit code on no changes --- .github/workflows/build_docs.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build_docs.yaml b/.github/workflows/build_docs.yaml index 9de8d02..7539e17 100644 --- a/.github/workflows/build_docs.yaml +++ b/.github/workflows/build_docs.yaml @@ -32,5 +32,5 @@ jobs: rm -rf ./* cp -r ../html_docs_swap_folder/* ./ git add . - git commit -m "publish docs for $(git -C ../../.. rev-parse --short HEAD)" + git diff-index --quiet HEAD || git commit -m "publish docs for $(git -C ../../.. rev-parse --short HEAD)" git push \ No newline at end of file From 667aa74d1f2ffaeab77addd594d14450d9f95795 Mon Sep 17 00:00:00 2001 From: Ben Parsons-Willis Date: Wed, 10 Feb 2021 17:23:51 +0000 Subject: [PATCH 26/27] Cleaned test imports --- docs/conf.py | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index 1bab748..90e6490 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -2,7 +2,6 @@ from datetime import datetime -import os import serde From 47ab0d0f4fa0eeb86a8d655cc7860f754d6c04c1 Mon Sep 17 00:00:00 2001 From: Ben Parsons-Willis Date: Wed, 10 Feb 2021 17:29:17 +0000 Subject: [PATCH 27/27] Cleaned accidental added line --- docs/conf.py | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index 90e6490..54141f6 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -1,7 +1,6 @@ import doctest from datetime import datetime - import serde