Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGabriel Mazetto <brodock@gmail.com>2019-03-17 00:49:59 +0300
committerGabriel Mazetto <brodock@gmail.com>2019-03-27 18:29:22 +0300
commite5af7d83962934fc0463657a006acb54d4f85e85 (patch)
tree72236fc27e86832ebe307af0a4d503c5be8d69f5 /Pipfile
parent98824f3e97e24a5d6cb0688167bc8411a74739fc (diff)
Upgrade `gitlab-markup` to 1.7.0
The new version requires `python3` to be available. In omnibus installation this is already a reality as we are currently pathing previous `gitlab-markup` version to use `python3` instead of `python2`. We are now requiring `python3` with the gem without having to patch it. As a consequence to also make it easy to use it in development, we've introduced a `Pipfile` and `Pipfile.lock`, working similarly to `Gemfile` and `Gemfile.lock`, and added documentation on how to use them.
Diffstat (limited to 'Pipfile')
-rw-r--r--Pipfile12
1 files changed, 12 insertions, 0 deletions
diff --git a/Pipfile b/Pipfile
new file mode 100644
index 00000000000..2afbe5fc3f2
--- /dev/null
+++ b/Pipfile
@@ -0,0 +1,12 @@
+[[source]]
+name = "pypi"
+url = "https://pypi.org/simple"
+verify_ssl = true
+
+[dev-packages]
+
+[packages]
+docutils = "==0.13.1"
+
+[requires]
+python_version = "3.4"