update to 1.1.0
This commit is contained in:
parent
e0e10b2d42
commit
db43cdd779
5 changed files with 72 additions and 34 deletions
|
|
@ -1,30 +1,35 @@
|
|||
diff --git a/setup.cfg b/setup.cfg
|
||||
index b3b3c2d..944ca52 100644
|
||||
--- a/setup.cfg
|
||||
+++ b/setup.cfg
|
||||
@@ -40,8 +40,6 @@ install_requires =
|
||||
tests_require =
|
||||
pytest-runner
|
||||
pytest-cov
|
||||
- pytest-flake8
|
||||
- pytest-isort
|
||||
python_requires = >= 3.5
|
||||
diff --git a/pyproject.toml b/pyproject.toml
|
||||
index 41535ed..30dbcd4 100644
|
||||
--- a/pyproject.toml
|
||||
+++ b/pyproject.toml
|
||||
@@ -32,7 +32,7 @@ classifiers = [
|
||||
|
||||
[options.package_data]
|
||||
@@ -56,8 +54,6 @@ doc =
|
||||
test =
|
||||
pytest-runner
|
||||
pytest-cov
|
||||
- pytest-flake8
|
||||
- pytest-isort
|
||||
[tool.flit.metadata.requires-extra]
|
||||
doc = ['sphinx', 'sphinx_rtd_theme']
|
||||
-test = ['pytest', 'pytest-cov', 'pytest-flake8', 'pytest-isort', 'coverage[toml]']
|
||||
+test = ['pytest', 'pytest-cov', 'coverage[toml]']
|
||||
|
||||
[bdist_wheel]
|
||||
python-tag = py3
|
||||
@@ -70,7 +66,6 @@ build-dir = docs/_build
|
||||
test = pytest
|
||||
[tool.flit.metadata.urls]
|
||||
Documentation = 'https://tinycss2.readthedocs.io/'
|
||||
@@ -44,7 +44,7 @@ Donation = 'https://opencollective.com/courtbouillon'
|
||||
exclude = ['.*']
|
||||
|
||||
[tool:pytest]
|
||||
-addopts = --flake8 --isort
|
||||
norecursedirs = build dist .cache .eggs .git
|
||||
[tool.pytest.ini_options]
|
||||
-addopts = '--isort --flake8 --cov'
|
||||
+addopts = '--cov'
|
||||
norecursedirs = ['tests/css-parsing-tests']
|
||||
|
||||
[coverage:run]
|
||||
[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',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue