diff options
author | Melody Horn <melody@boringcactus.com> | 2020-10-14 18:17:04 -0600 |
---|---|---|
committer | Melody Horn <melody@boringcactus.com> | 2020-10-14 18:17:04 -0600 |
commit | 2c164abab59f22e102eed8695c70ca1124afb8ca (patch) | |
tree | 44aa1a3569867200a4fee6aacaf752a434cfc8f9 | |
parent | 732ef5e9787e618ead3a18f9f6aa2ed1f03f1670 (diff) | |
download | reference-compiler-2c164abab59f22e102eed8695c70ca1124afb8ca.tar.gz reference-compiler-2c164abab59f22e102eed8695c70ca1124afb8ca.zip |
debug CI
-rw-r--r-- | .build.yml | 21 | ||||
-rw-r--r-- | pyproject.toml | 4 |
2 files changed, 21 insertions, 4 deletions
@@ -1,11 +1,28 @@ -image: alpine/latest +image: alpine/edge packages: - python3 + - py3-pip + - py3-cryptography + - py3-mypy + - py3-cleo + - py3-clikit + - py3-requests + - py3-cachy + - py3-requests-toolbelt + - py3-pkginfo + - py3-html5lib + - py3-shellingham + - py3-tomlkit + - py3-pexpect + - py3-packaging + - py3-virtualenv + - py3-regex sources: - https://git.sr.ht/~boringcactus/crowbar-reference-compiler tasks: - setup: | - pip install poetry + pip install --progress-bar off --user poetry + PATH=$HOME/.local/bin:$PATH poetry config virtualenvs.create false cd crowbar-reference-compiler poetry install diff --git a/pyproject.toml b/pyproject.toml index ef013a4..5e80e91 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -16,10 +16,10 @@ classifiers = [ [tool.poetry.dependencies] python = "^3.7" parsimonious = "^0.8.1" -regex = "^2020.10.11" +regex = "^2020.9.27" [tool.poetry.dev-dependencies] -mypy = "^0.790" +mypy = "^0.782" [build-system] requires = ["poetry-core>=1.0.0"] |