Skip to content

Commit e03cefa

Browse files
committed
Add xmlschema dependency. #61
1 parent aaa9f0b commit e03cefa

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ jobs:
3333
- name: Install dependencies
3434
run: |
3535
python -m pip install --upgrade pip
36-
python -m pip install flake8 pytest==${{ matrix.pytest-version }} xmlschema==1.0.13
37-
python -m pip install -e .
36+
python -m pip install flake8 pytest==${{ matrix.pytest-version }}
37+
python -m pip install -e .[dev]
3838
- name: Test with pytest
3939
run: |
4040
pytest

setup.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,10 @@ def getversion():
3535
install_requires=['pytest>=4.6.0', 'attrs'],
3636
extras_require={
3737
':python_version=="2.7"': ['enum34>=1.1.6'],
38+
'dev': [
39+
'xmlschema==1.0.13',
40+
'pytest',
41+
],
3842
},
3943
classifiers=[
4044
'Development Status :: 4 - Beta',

0 commit comments

Comments
 (0)