Skip to content

Commit 7e434c5

Browse files
Merge branch 'dev'
2 parents 36420a6 + 6ca0441 commit 7e434c5

File tree

4 files changed

+220
-1
lines changed

4 files changed

+220
-1
lines changed

.pre-commit-config.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
repos:
2+
# Black formats the Python code.
3+
- repo: https://github.com/psf/black
4+
rev: stable
5+
hooks:
6+
- id: black
7+
language_version: python3.8

Pipfile

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
[[source]]
2+
url = "https://pypi.org/simple"
3+
name = "pypi"
4+
verify_ssl = true
5+
6+
[dev-packages]
7+
"flake8" = "*"
8+
pytest = "*"
9+
asyncqt = {editable = true, path = "."}
10+
"pathlib2" = "*"
11+
pytest-cov = "*"
12+
codecov = "*"
13+
14+
[packages]

Pipfile.lock

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

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
environment:
22
matrix:
3-
- PYTHON: "C:\\Python35"
43
- PYTHON: "C:\\Python36"
54
- PYTHON: "C:\\Python37"
5+
- PYTHON: "C:\\Python38"
66

77
init:
88
- set PATH=%PYTHON%;%PYTHON%\Scripts;%PATH%

0 commit comments

Comments
 (0)