Skip to content

Commit 29ea33b

Browse files
committed
Make sure Appveyor uses the latest versions
1 parent 1a2ed8f commit 29ea33b

File tree

2 files changed

+35
-34
lines changed

2 files changed

+35
-34
lines changed

appveyor.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ environment:
2323
- JOB: "2.7 64-bit"
2424
TOXENV: "py27"
2525
PYTHON: "C:\\Python27-x64"
26-
PYTHON_VERSION: "2.7.17"
26+
PYTHON_VERSION: "2.7.18"
2727
PYTHON_ARCH: "64"
2828

2929
- JOB: "3.5 64-bit"
@@ -35,33 +35,33 @@ environment:
3535
- JOB: "3.6 64-bit"
3636
TOXENV: "py36"
3737
PYTHON: "C:\\Python36-x64"
38-
PYTHON_VERSION: "3.6.9"
38+
PYTHON_VERSION: "3.6.11"
3939
PYTHON_ARCH: "64"
4040

4141
- JOB: "3.7 64-bit"
4242
TOXENV: "py37"
4343
PYTHON: "C:\\Python37-x64"
44-
PYTHON_VERSION: "3.7.5"
44+
PYTHON_VERSION: "3.7.8"
4545
PYTHON_ARCH: "64"
4646

4747
- JOB: "3.8 64-bit"
4848
TOXENV: "py38"
4949
PYTHON: "C:\\Python38-x64"
50-
PYTHON_VERSION: "3.8.0"
50+
PYTHON_VERSION: "3.8.3"
5151
PYTHON_ARCH: "64"
5252

5353
- JOB: "3.9 64-bit"
5454
TOXENV: "py39"
5555
PYTHON: "C:\\Python39-x64"
56-
PYTHON_VERSION: "3.9.0a3"
56+
PYTHON_VERSION: "3.9.0b4"
5757
PYTHON_ARCH: "64"
5858

5959
# 32-bit jobs don't run the tests under the Python tracer, since that should
6060
# be exactly the same as 64-bit.
6161
- JOB: "2.7 32-bit"
6262
TOXENV: "py27"
6363
PYTHON: "C:\\Python27"
64-
PYTHON_VERSION: "2.7.17"
64+
PYTHON_VERSION: "2.7.18"
6565
PYTHON_ARCH: "32"
6666
COVERAGE_NO_PYTRACER: "1"
6767

@@ -75,43 +75,43 @@ environment:
7575
- JOB: "3.6 32-bit"
7676
TOXENV: "py36"
7777
PYTHON: "C:\\Python36"
78-
PYTHON_VERSION: "3.6.9"
78+
PYTHON_VERSION: "3.6.11"
7979
PYTHON_ARCH: "32"
8080
COVERAGE_NO_PYTRACER: "1"
8181

8282
- JOB: "3.7 32-bit"
8383
TOXENV: "py37"
8484
PYTHON: "C:\\Python37"
85-
PYTHON_VERSION: "3.7.5"
85+
PYTHON_VERSION: "3.7.8"
8686
PYTHON_ARCH: "32"
8787
COVERAGE_NO_PYTRACER: "1"
8888

8989
- JOB: "3.8 32-bit"
9090
TOXENV: "py38"
9191
PYTHON: "C:\\Python38"
92-
PYTHON_VERSION: "3.8.0"
92+
PYTHON_VERSION: "3.8.3"
9393
PYTHON_ARCH: "32"
9494
COVERAGE_NO_PYTRACER: "1"
9595

9696
- JOB: "3.9 32-bit"
9797
TOXENV: "py39"
9898
PYTHON: "C:\\Python39"
99-
PYTHON_VERSION: "3.9.0a3"
99+
PYTHON_VERSION: "3.9.0b4"
100100
PYTHON_ARCH: "32"
101101
COVERAGE_NO_PYTRACER: "1"
102102

103103
# Meta coverage
104104
- JOB: "Meta 2.7"
105105
TOXENV: "py27"
106106
PYTHON: "C:\\Python27"
107-
PYTHON_VERSION: "2.7.17"
107+
PYTHON_VERSION: "2.7.18"
108108
PYTHON_ARCH: "32"
109109
COVERAGE_COVERAGE: "yes"
110110

111111
- JOB: "Meta 3.6"
112112
TOXENV: "py36"
113113
PYTHON: "C:\\Python36"
114-
PYTHON_VERSION: "3.6.9"
114+
PYTHON_VERSION: "3.6.11"
115115
PYTHON_ARCH: "32"
116116
COVERAGE_COVERAGE: "yes"
117117

howto.txt

Lines changed: 23 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
version_info = (4, 0, 2, 'final', 0)
99
- Python version number in classifiers in setup.py
1010
- Copyright date in NOTICE.txt
11+
- Update specific Python versions in appveyor.yml ("PYTHON_VERSION")
1112
- Update CHANGES.rst, including release date.
1213
- don't forget the jump target
1314
- Update README.rst
@@ -21,28 +22,28 @@
2122
- Don't forget the man page: doc/python-coverage.1.txt
2223
- Check that the docs build correctly:
2324
$ tox -e doc
24-
- Done with changes to source files, check them in.
25-
- git push
26-
- Generate new sample_html to get the latest, incl footer version number:
27-
make clean
28-
pip install -e .
29-
cd ~/cog/trunk
30-
rm -rf htmlcov
31-
coverage run --branch --source=cogapp -m pytest -k CogTestsInMemory; coverage combine; coverage html
32-
- IF PRE-RELEASE:
33-
rm -f ~/coverage/trunk/doc/sample_html_beta/*.*
34-
cp -r htmlcov/ ~/coverage/trunk/doc/sample_html_beta/
35-
- IF NOT PRE-RELEASE:
36-
rm -f ~/coverage/trunk/doc/sample_html/*.*
37-
cp -r htmlcov/ ~/coverage/trunk/doc/sample_html/
38-
cd ~/coverage/trunk
39-
- IF NOT PRE-RELEASE:
40-
check in the new sample html
41-
- Build and publish docs:
42-
- IF PRE-RELEASE:
43-
$ make publishbeta
44-
- ELSE:
45-
$ make publish
25+
- Done with changes to source files, check them in.
26+
- git push
27+
- Generate new sample_html to get the latest, incl footer version number:
28+
make clean
29+
pip install -e .
30+
cd ~/cog/trunk
31+
rm -rf htmlcov
32+
coverage run --branch --source=cogapp -m pytest -k CogTestsInMemory; coverage combine; coverage html
33+
- IF PRE-RELEASE:
34+
rm -f ~/coverage/trunk/doc/sample_html_beta/*.*
35+
cp -r htmlcov/ ~/coverage/trunk/doc/sample_html_beta/
36+
- IF NOT PRE-RELEASE:
37+
rm -f ~/coverage/trunk/doc/sample_html/*.*
38+
cp -r htmlcov/ ~/coverage/trunk/doc/sample_html/
39+
cd ~/coverage/trunk
40+
- IF NOT PRE-RELEASE:
41+
check in the new sample html
42+
- Build and publish docs:
43+
- IF PRE-RELEASE:
44+
$ make publishbeta
45+
- ELSE:
46+
$ make publish
4647
- Kits:
4748
- Start fresh:
4849
- $ make sterile

0 commit comments

Comments
 (0)