Skip to content

Commit 6719782

Browse files
committed
Remove references to Travis CI
1 parent 24748f9 commit 6719782

File tree

5 files changed

+7
-9
lines changed

5 files changed

+7
-9
lines changed

MANIFEST.in

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
include .travis.yml
21
include AUTHORS
32
include COPYING
43
include MANIFEST.in

README.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ The Python Benchmark Suite
66
:alt: Latest pyperformance release on the Python Cheeseshop (PyPI)
77
:target: https://pypi.python.org/pypi/pyperformance
88

9-
.. image:: https://travis-ci.com/python/pyperformance.svg?branch=master
10-
:alt: Build status of pyperformance on Travis CI
11-
:target: https://travis-ci.com/github/python/pyperformance
9+
.. image:: https://github.com/python/pyperformance/actions/workflows/build.yml/badge.svg
10+
:alt: Build status of pyperformance on GitHub Actions
11+
:target: https://github.com/python/pyperformance/actions
1212

1313
The ``pyperformance`` project is intended to be an authoritative source of
1414
benchmarks for all Python implementations. The focus is on real-world

doc/changelog.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ Version 1.0.2
66

77
* Reenable html5lib benchmark: html5lib 1.1 has been released.
88
* Update requirements.
9+
* Replace Travis CI with GitHub Actions.
910

1011
Version 1.0.1 (2020-03-26)
1112
--------------------------

pyperformance/venv.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def is_build_dir():
2727
class Requirements(object):
2828
def __init__(self, filename, optional):
2929
# if pip or setuptools is updated:
30-
# .travis.yml should be updated as well
30+
# .github/workflows/main.yml should be updated as well
3131

3232
# pip requirements
3333
self.pip = [

setup.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,8 @@
1919
# - git commit -a -m "prepare release x.y"
2020
# - run tests: tox --parallel auto
2121
# - git push
22-
# - check Travis CI status:
23-
# https://travis-ci.com/github/python/pyperformance
24-
# - check AppVeyor status:
25-
# https://ci.appveyor.com/project/lazka/pyperformance-rdqv8
22+
# - check the CI status:
23+
# https://github.com/python/pyperformance/actions
2624
#
2725
# Release a new version:
2826
#

0 commit comments

Comments
 (0)