Skip to content

Commit f4c4780

Browse files
committed
Don't try to install pywinpty to test 32 bit Python
1 parent 5acc009 commit f4c4780

File tree

7 files changed

+48
-15
lines changed

7 files changed

+48
-15
lines changed

requirements/dev.txt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# This file is autogenerated by pip-compile
2+
# This file is autogenerated by pip-compile with python 3.10
33
# To update, run:
44
#
55
# pip-compile '.\requirements\dev.in'
@@ -86,12 +86,12 @@ pygments==2.10.0
8686
# via sphinx
8787
pyparsing==2.4.7
8888
# via packaging
89-
pytest-mock==3.6.1
90-
# via -r .\requirements\tests.in
9189
pytest==6.2.5
9290
# via
93-
# -r .\requirements\tests.in
91+
# -r .\requirements\tests-min.in
9492
# pytest-mock
93+
pytest-mock==3.6.1
94+
# via -r .\requirements\tests-min.in
9595
pytz==2021.3
9696
# via babel
9797
pywinpty==1.1.4
@@ -107,12 +107,12 @@ six==1.16.0
107107
# virtualenv
108108
snowballstemmer==2.1.0
109109
# via sphinx
110-
sphinx-autobuild==2021.3.14
111-
# via -r .\requirements\dev.in
112110
sphinx==4.2.0
113111
# via
114112
# -r .\requirements\docs.in
115113
# sphinx-autobuild
114+
sphinx-autobuild==2021.3.14
115+
# via -r .\requirements\dev.in
116116
sphinxcontrib-applehelp==1.0.2
117117
# via sphinx
118118
sphinxcontrib-devhelp==1.0.2

requirements/docs.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# This file is autogenerated by pip-compile
2+
# This file is autogenerated by pip-compile with python 3.10
33
# To update, run:
44
#
55
# pip-compile '.\requirements\docs.in'

requirements/tests-min.in

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
pytest
2+
pytest-mock

requirements/tests-min.txt

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
#
2+
# This file is autogenerated by pip-compile with python 3.10
3+
# To update, run:
4+
#
5+
# pip-compile '.\requirements\tests-min.in'
6+
#
7+
atomicwrites==1.4.0
8+
# via pytest
9+
attrs==21.2.0
10+
# via pytest
11+
colorama==0.4.4
12+
# via pytest
13+
iniconfig==1.1.1
14+
# via pytest
15+
packaging==21.0
16+
# via pytest
17+
pluggy==1.0.0
18+
# via pytest
19+
py==1.10.0
20+
# via pytest
21+
pyparsing==2.4.7
22+
# via packaging
23+
pytest==6.2.5
24+
# via
25+
# -r .\requirements\tests-min.in
26+
# pytest-mock
27+
pytest-mock==3.6.1
28+
# via -r .\requirements\tests-min.in
29+
toml==0.10.2
30+
# via pytest

requirements/tests.in

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
1-
pytest
2-
pytest-mock
1+
-r tests-min.in
32
pywinpty

requirements/tests.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# This file is autogenerated by pip-compile
2+
# This file is autogenerated by pip-compile with python 3.10
33
# To update, run:
44
#
55
# pip-compile '.\requirements\tests.in'
@@ -20,12 +20,12 @@ py==1.10.0
2020
# via pytest
2121
pyparsing==2.4.7
2222
# via packaging
23-
pytest-mock==3.6.1
24-
# via -r .\requirements\tests.in
2523
pytest==6.2.5
2624
# via
27-
# -r .\requirements\tests.in
25+
# -r .\requirements\tests-min.in
2826
# pytest-mock
27+
pytest-mock==3.6.1
28+
# via -r .\requirements\tests-min.in
2929
pywinpty==1.1.4
3030
# via -r .\requirements\tests.in
3131
toml==0.10.2

tox.ini

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tox]
22
envlist =
33
py{37,38,39,310}-64
4-
py38-32
4+
py310-32
55

66
[testenv]
77
basepython =
@@ -13,5 +13,7 @@ basepython =
1313
py39-64: python3.9-64
1414
py310-32: python3.10-32
1515
py310-64: python3.10-64
16-
deps = -r requirements/tests.txt
16+
deps =
17+
32: -r requirements/tests-min.txt
18+
64: -r requirements/tests.txt
1719
commands = python -m ahkpy -m pytest

0 commit comments

Comments
 (0)