diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index d1743d1fb8d0783ed851447de1f9753752da5e1e..fb72df8370b87ef79c2558568251f185c6dbaf9b 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -52,7 +52,7 @@ python-linting:
   script:
     - . /cvmfs/lhcb.cern.ch/lib/LbEnv.sh
     # Only run the pyflakes linter and a few select pycodestyle errors
-    - flake8 --exclude '*.opts.py' --select=F,E71,E9,W1,W6 $(find {Hlt,PyConf} -name '*.py')
+    - flake8 --exclude '*.opts.py' --select=F,E71,E9,W1,W6 $(find Hlt -name '*.py')
 
 build:
   stage: build
diff --git a/CODEOWNERS b/CODEOWNERS
index 2fc0e73c9142c93b17a9a11e62c726706853ff41..4298fc914ab3a8bc4ac478ffc804f7abc56d1512 100644
--- a/CODEOWNERS
+++ b/CODEOWNERS
@@ -23,8 +23,6 @@
 
 # Documentation
 /doc/ @apearce
-# PyConf
-/doc/pyconf/ @apearce @nnolte @rmatev
 # Moore
 /doc/tutorials/developing.rst @apearce @rmatev
 /doc/moore/application.rst @apearce @rmatev
@@ -37,9 +35,6 @@
 /doc/tutorials/standalone.rst @sstahl
 /doc/tutorials/hltefficiencychecker.rst @rjhunter
 
-# PyConf
-/PyConf/ @apearce @nnolte @rmatev
-
 # Reconstruction configuration
 /Hlt/RecoConf/ @sstahl
 # Calorimeter
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index f7cd3db8cc5742c92d87637e140aae2a00f466ec..8cd4ec670f494dc94e34950b941f3f9176ca80d5 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -9,7 +9,7 @@ To simplify the workflow, you can format and lint locally using
 
 ```shell
 lb-format --reference origin/master .
-flake8 --exclude '*.opts.py' --select=F,E71,E9,W1,W6 $(find {Hlt,PyConf} -name '*.py')
+flake8 --exclude '*.opts.py' --select=F,E71,E9,W1,W6 $(find Hlt -name '*.py')
 ```
 
 Check [Git4LHCb](https://twiki.cern.ch/twiki/bin/view/LHCb/Git4LHCb) for more details.