Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 3cf2552

Browse files
authored
Add Travis CI config (#1)
1 parent 9c75f81 commit 3cf2552

2 files changed

Lines changed: 19 additions & 0 deletions

File tree

.travis.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
language: python
2+
dist: bionic
3+
4+
jobs:
5+
fast_finish: true
6+
include:
7+
- python: '3.6'
8+
- python: '3.7'
9+
- python: '3.8'
10+
- python: '3.9-dev'
11+
- python: nightly
12+
13+
script:
14+
- python -VV
15+
- python tests/run_tests.py -v

README.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
Python C API compatibility
33
++++++++++++++++++++++++++
44

5+
.. image:: https://travis-ci.org/pythoncapi/pythoncapi_compat.svg?branch=master
6+
:alt: Build status of pyperf on Travis CI
7+
:target: https://travis-ci.org/pythoncapi/pythoncapi_compat
8+
59
Header file providing new functions of the Python C API for old Python versions.
610

711
Python 3.6 to Python 3.10 are supported. It requires a subset of C99 like

0 commit comments

Comments
 (0)