update to 1.1.1

This commit is contained in:
Felix Schwarz 2021-11-22 21:18:29 +01:00
commit faa43997ae
3 changed files with 26 additions and 45 deletions

View file

@ -1,35 +1,20 @@
diff --git a/pyproject.toml b/pyproject.toml
index 41535ed..30dbcd4 100644
index 6050fbb..8981947 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -32,7 +32,7 @@ classifiers = [
@@ -41,13 +41,13 @@ Donation = 'https://opencollective.com/courtbouillon'
[tool.flit.metadata.requires-extra]
[project.optional-dependencies]
doc = ['sphinx', 'sphinx_rtd_theme']
-test = ['pytest', 'pytest-cov', 'pytest-flake8', 'pytest-isort', 'coverage[toml]']
+test = ['pytest', 'pytest-cov', 'coverage[toml]']
[tool.flit.metadata.urls]
Documentation = 'https://tinycss2.readthedocs.io/'
@@ -44,7 +44,7 @@ Donation = 'https://opencollective.com/courtbouillon'
[tool.flit.sdist]
exclude = ['.*']
[tool.pytest.ini_options]
-addopts = '--isort --flake8 --cov'
+addopts = '--cov'
-addopts = '--isort --flake8 --cov --no-cov-on-fail'
+addopts = '--cov --no-cov-on-fail'
norecursedirs = ['tests/css-parsing-tests']
[tool.coverage.run]
diff --git a/setup.py b/setup.py
index 8e8a09c..8901670 100644
--- a/setup.py
+++ b/setup.py
@@ -16,8 +16,6 @@ extras_require = \
{'doc': ['sphinx', 'sphinx_rtd_theme'],
'test': ['pytest',
'pytest-cov',
- 'pytest-flake8',
- 'pytest-isort',
'coverage[toml]']}
setup(name='tinycss2',