Skip to content

Commit 416edf6

Browse files
author
Stuart Bishop
committed
Test against Python 3.8 and Python 3.9
1 parent b25606a commit 416edf6

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

Makefile

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ PYTHON34=python3.4
1414
PYTHON35=python3.5
1515
PYTHON36=python3.6
1616
PYTHON37=python3.7
17+
PYTHON38=python3.8
18+
PYTHON39=python3.9
1719
PYTHON=/usr/bin/python
1820
PYTHON3=/usr/bin/python3
1921
IANA=./tz
@@ -75,7 +77,9 @@ test_lazy: .stamp-tzinfo
7577
&& ${PYTHON34} test_lazy.py ${TESTARGS} \
7678
&& ${PYTHON35} test_lazy.py ${TESTARGS} \
7779
&& ${PYTHON36} test_lazy.py ${TESTARGS} \
78-
&& ${PYTHON37} test_lazy.py ${TESTARGS}
80+
&& ${PYTHON37} test_lazy.py ${TESTARGS} \
81+
&& ${PYTHON38} test_lazy.py ${TESTARGS} \
82+
&& ${PYTHON39} test_lazy.py ${TESTARGS}
7983

8084
test_tzinfo: .stamp-tzinfo
8185
cd build/dist/pytz/tests \
@@ -89,7 +93,9 @@ test_tzinfo: .stamp-tzinfo
8993
&& ${PYTHON34} test_tzinfo.py ${TESTARGS} \
9094
&& ${PYTHON35} test_tzinfo.py ${TESTARGS} \
9195
&& ${PYTHON36} test_tzinfo.py ${TESTARGS} \
92-
&& ${PYTHON37} test_tzinfo.py ${TESTARGS}
96+
&& ${PYTHON37} test_tzinfo.py ${TESTARGS} \
97+
&& ${PYTHON38} test_tzinfo.py ${TESTARGS} \
98+
&& ${PYTHON39} test_tzinfo.py ${TESTARGS}
9399

94100
test_docs: .stamp-tzinfo
95101
cd build/dist/pytz/tests \
@@ -99,7 +105,8 @@ test_docs: .stamp-tzinfo
99105
test_zdump: dist
100106
${PYTHON} gen_tests.py ${TARGET} && \
101107
${PYTHON} test_zdump.py ${TESTARGS} && \
102-
${PYTHON3} test_zdump.py ${TESTARGS}
108+
${PYTHON3} test_zdump.py ${TESTARGS} && \
109+
${PYTHON39} test_zdump.py ${TESTARGS}
103110

104111
build/dist/test_zdump.py: .stamp-zoneinfo
105112

0 commit comments

Comments
 (0)