Skip to content

Commit

Permalink
ci: Fix CI (jinja2 dep in pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
pawamoy committed Feb 20, 2019
1 parent a838ee6 commit bbccefa
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 12 deletions.
3 changes: 2 additions & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ check-bandit:
check-safety:
<<: *quality
before_script:
- apt-get install -y make
- apt-get update
- apt-get install -y python-enchant
- pip install poetry
- poetry install -vv
- poetry --version
Expand Down
22 changes: 11 additions & 11 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,22 +23,22 @@ python = "^3.6"
requests = "*"

[tool.poetry.dev-dependencies]
bandit = "^1.5"
black = { version = "*", allows-prereleases = true }
pytest = "*"
pytest-cov = "*"
pytest-sugar = "*"
flake8 = "^3.6"
ipython = "^7.2"
isort = "^4.3"
jinja2-cli = { git = "https://github.com/mattrobenolt/jinja2-cli.git" }
pytest = "^4.3"
pytest-cov = "^2.6"
pytest-sugar = "^0.9.2"
pytest-xdist = "^1.26"
recommonmark = "^0.4.0"
sphinx = "^1.8"
sphinx-rtd-theme = "^0.4.2"
sphinxcontrib-spelling = "^4.2"
responses = "^0.10.5"
pytest-xdist = "^1.26"
isort = "^4.3"
flake8 = "^3.6"
jinja2-cli = { git = "[email protected]:mattrobenolt/jinja2-cli.git" }
bandit = "^1.5"
safety = "^1.8"
sphinx = "^1.8"
sphinxcontrib-spelling = "^4.2"
sphinx-rtd-theme = "^0.4.2"

[tool.poetry.scripts]
aria2p = 'aria2p.cli:main'
Expand Down

0 comments on commit bbccefa

Please sign in to comment.