List of commits:
Subject Hash Author Date (UTC)
Drop the standard gcc test build on Travis (GH-853) ad2f9e2c8a0b44b3e6aec9d28ba59e13239236f7 Brett Cannon 2017-03-27 23:39:54
Fix ref cycles in TestCase.assertRaises() (#193) bbd3cf8f1ef1e91a8d6dac6411e18b4b9084abf5 Victor Stinner 2017-03-27 22:56:28
bpo-29677: DOC: clarify documentation for `round` (#357) 6003db7db5fec545c01923c198a5fdfca5a91538 Gerrit Holl 2017-03-27 22:15:20
bpo-29924: Remove useless argument (#854) d67a103702cf57de90a62c90f7ae969c23d96218 Sylvain 2017-03-27 21:36:08
bpo-29912: Remove redundant tests in list_tests that are found in seq_tests (GH-847) d702c50049207d825c1d5925fbc7306514fa9a0a Jim Fasarakis-Hilliard 2017-03-27 19:35:52
bpo-29919: Remove unused imports found by pyflakes (#137) d6debb24e06152a827769b0cac24c47deccdeac1 Victor Stinner 2017-03-27 14:05:26
bpo-20552: Use specific asserts in bytes tests (#790) 604e74c6beb2585c81083fa85f0e5a4d46965cbc Serhiy Storchaka 2017-03-27 10:59:07
Minor test cleanup (GH-837) b8a7daf077dab18e9e3701c5380b542ae0aa9a94 Zachary Ware 2017-03-27 05:08:31
Treat Sphinx warnings as errors (GH-832) 334e9ec938ea9876baadef15edb135d6d2aff30c Zachary Ware 2017-03-27 02:31:31
import sys before we use it on line 9 (#828) 0579e81f30d00da562f021760d5b6a9c35186520 Jelle Zijlstra 2017-03-27 02:17:39
Fixes sphinx warning in "changelog" misc/NEWS (#829) 5fb278fd58688177a113755e1996cd4c9706477c Michael Seifert 2017-03-27 01:25:57
Fix small exception typos in Lib (#818) 1e73dbbc29c96d0739ffef92db36f63aa1aa30da Jim Fasarakis-Hilliard 2017-03-26 20:59:08
bpo-29888: Fix the link referring to the "Python download page" (GH-824) f8beb9831acd5cf80b9c56aea5864e16118c5400 cocoatomo 2017-03-26 17:32:24
bpo-29900: Simplify pathlib implementation. (#814) 62a99515301fa250feba1a2e0f2d8ea2a29d700e Serhiy Storchaka 2017-03-25 11:42:11
bpo-29901: Improve support of path-like objects in zipapp. (#815) 4aec9a8be2f2574f249008eb8be76c070fea37eb Serhiy Storchaka 2017-03-25 11:05:23
Simplify partial.__new__. (#813) 3c749fc867f69deac75f866d5c1ba0f60e54c1fa Serhiy Storchaka 2017-03-25 10:10:16
bpo-29862: Fix grammar in importlib.reload() exception (GH-809) 9f0aa4843f8c26937d5817f27cac4aae9c0a034f Mandeep Bhutani 2017-03-25 04:51:21
bpo-29892: Fix wrong markup on doc-lib-functions (GH-802) 29540cdf6c66df9f806375a95078c0c63192ef78 NAKAMURA Osamu 2017-03-25 02:55:08
bpo-28810: Document remaining bytecode changes in 3.6 (GH-651) 8f9e1bbf2dbdf46a0bf920279568a31460043376 Ivan Levkivskyi 2017-03-24 21:05:04
bpo-29894: Deprecate returning an instance of complex subclass from __complex__. (#798) 671079ef6063fe227460a6c3114625fb6282bbd0 Serhiy Storchaka 2017-03-24 19:28:43
Commit ad2f9e2c8a0b44b3e6aec9d28ba59e13239236f7 - Drop the standard gcc test build on Travis (GH-853)
Instead have gcc be used for the coverage build so gcc is exercised in at least one place.
Author: Brett Cannon
Author date (UTC): 2017-03-27 23:39
Committer name: GitHub
Committer date (UTC): 2017-03-27 23:39
Parent(s): bbd3cf8f1ef1e91a8d6dac6411e18b4b9084abf5
Signer:
Signing key:
Signing status: N
Tree: 0a3266728ced686da1129eb64df7784088ab56f5
File Lines added Lines deleted
.travis.yml 4 4
File .travis.yml changed (mode: 100644) (index 8e99a383e0..e7e8694530)
... ... os:
15 15 - linux - linux
16 16 # macOS builds are disabled as the machines are under-provisioned on Travis, # macOS builds are disabled as the machines are under-provisioned on Travis,
17 17 # adding up to an extra hour completing a full CI run. # adding up to an extra hour completing a full CI run.
18 #- osx
19 18
20 19 compiler: compiler:
21 20 - clang - clang
22 - gcc
21 # gcc also works, but to keep the # of concurrent builds down, we use one C
22 # compiler here and the other to run the coverage build.
23 23
24 24 env: env:
25 25 - TESTING=cpython - TESTING=cpython
 
... ... matrix:
32 32 include: include:
33 33 - os: linux - os: linux
34 34 language: python language: python
35 python: 3.5
35 python: 3.6
36 36 env: env:
37 37 - TESTING=docs - TESTING=docs
38 38 before_script: before_script:
 
... ... matrix:
42 42 - make check suspicious html PYTHON="./venv/bin/python" SPHINXBUILD="./venv/bin/python -m sphinx" SPHINXOPTS="-q -W" - make check suspicious html PYTHON="./venv/bin/python" SPHINXBUILD="./venv/bin/python -m sphinx" SPHINXOPTS="-q -W"
43 43 - os: linux - os: linux
44 44 language: c language: c
45 compiler: clang
45 compiler: gcc
46 46 env: env:
47 47 - TESTING=coverage - TESTING=coverage
48 48 before_script: before_script:
Hints:
Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://rocketgit.com/user/benf_wspdigital/cpython

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@ssh.rocketgit.com/user/benf_wspdigital/cpython

Clone this repository using git:
git clone git://git.rocketgit.com/user/benf_wspdigital/cpython

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a merge request:
... clone the repository ...
... make some changes and some commits ...
git push origin main