Skip to content

Commit

Permalink
Downgrade required Python version to 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
hansegucker committed Jan 1, 2021
1 parent 48b2a46 commit 0f74ed9
Show file tree
Hide file tree
Showing 4 changed files with 83 additions and 44 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.8, 3.9]
python-version: [3.7, 3.8, 3.9]
os: [ubuntu-20.04]
runs-on: ${{ matrix.os }}
steps:
Expand Down
119 changes: 79 additions & 40 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description = "A tool to sync webdav files (only PDF) to the reMarkable cloud"
authors = ["Jonathan Weth <[email protected]>"]

[tool.poetry.dependencies]
python = "^3.8"
python = "^3.7"
dynaconf = "^3.1.2"
click = "^7.1.2"
webdavclient3 = "^3.14.5"
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tox]
skipsdist = True
skip_missing_interpreters = true
envlist = py38,py39
envlist = py37,py38,py39

[testenv]
whitelist_externals = poetry
Expand Down Expand Up @@ -48,7 +48,7 @@ sections = FUTURE,STDLIB,THIRDPARTY,FIRSTPARTY,LOCALFOLDER

[mypy]
plugins = mypy_django_plugin.main
python_version = 3.8
python_version = 3.7
platform = linux
show_column_numbers = True
follow_imports = skip
Expand Down

0 comments on commit 0f74ed9

Please sign in to comment.