Skip to content

Commit

Permalink
chore: Add support for python3.8 #51
Browse files Browse the repository at this point in the history
  • Loading branch information
KeNaCo committed Nov 30, 2019
1 parent ca2a3ca commit 303d39f
Show file tree
Hide file tree
Showing 3 changed files with 48 additions and 34 deletions.
4 changes: 4 additions & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@ test-python3.7:
image: python:3.7
<<: *test

test-python3.8:
image: python:3.8
<<: *test

build:
image: python:3.7
stage: build
Expand Down
75 changes: 42 additions & 33 deletions poetry.lock

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

3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,14 @@ classifiers = [
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
]

include = ["auto_changelog/templates/*.jinja2"]

[tool.black]
line-length = 120
target-version = ['py35','py36','py37']
target-version = ['py35','py36','py37', 'py38']

[tool.poetry.dependencies]
python = ">=3.5"
Expand Down

0 comments on commit 303d39f

Please sign in to comment.