diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 75f0ec3781ad144d94bafd3ed68ad027b9bcf0be..a060c9c5cb03ea1d0764e25d7c00b80855679c33 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -2,6 +2,16 @@ stages:
   - test
   - build
 
+pages:
+  stage: build
+  script:
+    - cd docs
+    - make html
+    - cd ..
+    - mv docs/_build/html public
+  artifacts:
+    paths:
+      - public
 
 .test:
   stage: test
diff --git a/.readthedocs.yaml b/.readthedocs.yaml
deleted file mode 100644
index 93a38f6cb014da082b655510f483acb28629acc8..0000000000000000000000000000000000000000
--- a/.readthedocs.yaml
+++ /dev/null
@@ -1,10 +0,0 @@
-version: 2
-build:
-  os: ubuntu-22.04
-  tools:
-    python: "3.9"
-python:
-  install:
-    - requirements: requirements.txt
-sphinx:
-  configuration: docs/conf.py
diff --git a/README.md b/README.md
index aefa23cf2c51ed2fb04c9ce25a4269b020b87e0b..e9a526d77941deec39a8b190f50ad48bac34fdc6 100644
--- a/README.md
+++ b/README.md
@@ -10,6 +10,8 @@ snakehouse
 [![Documentation Status](https://readthedocs.org/projects/snakehouse/badge/?version=latest)](http://snakehouse.readthedocs.io/en/latest/?badge=latest)
 [![License](https://img.shields.io/pypi/l/snakehouse)](https://github.com/smok-serwis/snakehouse)
 
+Docs are [here](https://smokserwis.docs.smok.co/snakehouse.
+
 **IMPORTANT!**
 
 Since for now we've lost our PyPI access, please install the packages in a following way:
diff --git a/requirements.txt b/requirements.txt
index aed5c43fc03c512c31bfe6d93ffcb72bfd91cbd7..01ea1b0dce39627705c8585bf9dd7f6198975e3b 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -1,2 +1,2 @@
 Cython
-MarkupSafe>=1.1.1
+
diff --git a/setup.cfg b/setup.cfg
index 3bb89eb2908d254a09266bf37f482b25090bc6b2..e2809c55f589f9eba2a732e9043c12b45989bbb8 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -11,8 +11,8 @@ author_email = pmaslanka@smok.co
 description = Utilities for packing multiple pyx files into a single Cython extension
 url = https://github.com/smok-serwis/snakehouse
 project_urls =
-    Code = https://github.com/smok-serwis/snakehouse
-    Issue tracker = https://github.com/smok-serwis/snakehouse/issues
+    Code = https://git.dms-serwis.com.pl/smokserwis/snakehouse
+    Issue tracker = https://git.dms-serwis.com.pl/smokserwis/snakehouse/-/issues
 classifier =
     Programming Language :: Python
     Programming Language :: Python :: 3.5
diff --git a/snakehouse/satella.py b/snakehouse/satella.py
index 08036443f656e68412a296f8126fe5a392895209..1b2909bf9bee6f4a1cbb1bf2320610cd79b2870c 100644
--- a/snakehouse/satella.py
+++ b/snakehouse/satella.py
@@ -5,6 +5,7 @@ snakehouse.
 """
 import typing as tp
 import os
+import re
 
 
 def _has_separator(path: str) -> bool: