Skip to content

Commit c2ff8dd

Browse files
committed
Python 3.8 was missing in setup.py
PyYAML should not be a direct dependency. Also, update poetry lock file, and ignore virtual envs with specific names like .venv37.
1 parent a781325 commit c2ff8dd

File tree

4 files changed

+21
-43
lines changed

4 files changed

+21
-43
lines changed

.gitignore

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,12 @@
11

22
.cache
33
.coverage
4-
.env
5-
.env.bak
4+
.env*
65
.idea
76
.mypy_cache
87
.pytest_cache
98
.tox
10-
.venv
11-
.venv.bak
9+
.venv*
1210
.vs
1311

1412
build

poetry.lock

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

pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ pytest-asyncio = ">=0.10,<1"
3737
pytest-benchmark = "^3.2"
3838
pytest-cov = "^2.8"
3939
pytest-describe = ">=0.12,<1"
40-
pyyaml = "^5.2"
4140
black = "19.10b0"
4241
flake8 = "^3.7"
4342
mypy = ">=0.761,<0.770"

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
"Programming Language :: Python :: 3",
2828
"Programming Language :: Python :: 3.6",
2929
"Programming Language :: Python :: 3.7",
30+
"Programming Language :: Python :: 3.8",
3031
],
3132
install_requires=[],
3233
python_requires=">=3.6,<4",

0 commit comments

Comments
 (0)