From b57e74d4973feb6d920baedb0d0f374e322fd19c Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Piotr=20Ma=C5=9Blanka?= <piotr.maslanka@ericsson.com>
Date: Mon, 12 Aug 2024 22:30:42 +0200
Subject: [PATCH] remove satella

---
 .gitlab-ci.yml        | 10 ++++++++++
 .readthedocs.yaml     | 10 ----------
 README.md             |  2 ++
 requirements.txt      |  2 +-
 setup.cfg             |  4 ++--
 snakehouse/satella.py |  1 +
 6 files changed, 16 insertions(+), 13 deletions(-)
 delete mode 100644 .readthedocs.yaml

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 75f0ec3..a060c9c 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 93a38f6..0000000
--- 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 aefa23c..e9a526d 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 aed5c43..01ea1b0 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 3bb89eb..e2809c5 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 0803644..1b2909b 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:
-- 
GitLab