Skip to content

Commit 08b7fb5

Browse files
authored
Merge pull request #16 from zalando-incubator/docs
Moving Sphinx dependencies back out of dev.
2 parents 0242d1a + 989f7aa commit 08b7fb5

File tree

4 files changed

+45
-31
lines changed

4 files changed

+45
-31
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.2.10][] - 2019-05-21
9+
10+
### Fixed
11+
12+
- Failing Read The Docs build.
13+
814
## [1.2.9][] - 2019-05-21
915

1016
### Added
@@ -75,6 +81,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7581
- Implemented `-v`/`--version` option to show Zelt version.
7682
- This changelog.
7783

84+
[1.2.10]: https://github.com/zalando-incubator/zelt/compare/v1.2.9...v1.2.10
7885
[1.2.9]: https://github.com/zalando-incubator/zelt/compare/v1.2.8...v1.2.9
7986
[1.2.8]: https://github.com/zalando-incubator/zelt/compare/v1.2.7...v1.2.8
8087
[1.2.7]: https://github.com/zalando-incubator/zelt/compare/v1.2.6...v1.2.7

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.PHONY: install
22
install:
3-
poetry install
3+
poetry install -E docs
44

55
.PHONY: test
66
test:

poetry.lock

Lines changed: 29 additions & 26 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "zelt"
3-
version = "1.2.9"
3+
version = "1.2.10"
44
description = "Zalando end-to-end load tester"
55
authors = [
66
"Brian Maher <brian.maher@zalando.de>",
@@ -31,14 +31,18 @@ tenacity = "^5.0"
3131
docopt = "^0.6.2"
3232
pyyaml = "^5.1"
3333

34+
sphinx = { version = "^1.8", optional = true }
35+
sphinx-autodoc-typehints = { version = "^1.6", optional = true }
36+
sphinx-issues = { version = "^1.2", optional = true }
37+
38+
[tool.poetry.extras]
39+
docs = ["sphinx", "sphinx-autodoc-typehints", "sphinx-issues"]
40+
3441
[tool.poetry.dev-dependencies]
3542
pytest-cov = "^2.6"
3643
pytest = "^4.3"
3744
pylint = "^2.3"
3845
pytest-watch = "^4.2"
39-
sphinx = "^1.8"
40-
sphinx-autodoc-typehints = "^1.6"
41-
sphinx-issues = "^1.2"
4246

4347
[tool.poetry.scripts]
4448
zelt = "main:cli"

0 commit comments

Comments
 (0)