Skip to content

Commit c24f3e3

Browse files
authored
Merge pull request #179 from hugovk/rm-travis
2 parents 184269e + 93119f2 commit c24f3e3

4 files changed

Lines changed: 1 addition & 37 deletions

File tree

.github/workflows/test.yml

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -8,35 +8,25 @@ jobs:
88
strategy:
99
fail-fast: false
1010
matrix:
11-
python-version: ["pypy3", "3.6", "3.7", "3.8", "3.9"]
11+
python-version: ["pypy3", "3.6", "3.7", "3.8", "3.9", "3.10-dev"]
1212
os: [ubuntu-latest, macos-latest, windows-latest]
1313
include:
1414
# Include new variables for Codecov
1515
- { codecov-flag: GHA_Ubuntu, os: ubuntu-latest }
1616
- { codecov-flag: GHA_macOS, os: macos-latest }
1717
- { codecov-flag: GHA_Windows, os: windows-latest }
18-
# Dev versions
19-
- { python-version: 3.10-dev, os: ubuntu-18.04 }
2018

2119
steps:
2220
- uses: actions/checkout@v2
2321

24-
- name: Set up Python ${{ matrix.python }} (deadsnakes)
25-
uses: deadsnakes/action@v1.0.0
26-
if: endsWith(matrix.python-version, '-dev')
27-
with:
28-
python-version: ${{ matrix.python-version }}
29-
3022
- name: Set up Python ${{ matrix.python-version }}
31-
if: "!endsWith(matrix.python-version, '-dev')"
3223
uses: actions/setup-python@v2
3324
with:
3425
python-version: ${{ matrix.python-version }}
3526

3627
- name: Get pip cache dir
3728
id: pip-cache
3829
run: |
39-
python -m pip install -U "pip>=20.1"
4030
echo "::set-output name=dir::$(pip cache dir)"
4131
4232
- name: pip cache

.travis.yml

Lines changed: 0 additions & 23 deletions
This file was deleted.

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
[![Supported Python versions](https://img.shields.io/pypi/pyversions/humanize.svg?logo=python&logoColor=FFE873)](https://pypi.org/project/humanize/)
55
[![Documentation Status](https://readthedocs.org/projects/python-humanize/badge/?version=latest)](https://python-humanize.readthedocs.io/en/latest/?badge=latest)
66
[![PyPI downloads](https://img.shields.io/pypi/dm/humanize.svg)](https://pypistats.org/packages/humanize)
7-
[![Travis CI Status](https://travis-ci.com/hugovk/humanize.svg?branch=master)](https://travis-ci.com/hugovk/humanize)
87
[![GitHub Actions status](https://github.com/jmoiron/humanize/workflows/Test/badge.svg)](https://github.com/jmoiron/humanize/actions)
98
[![codecov](https://codecov.io/gh/hugovk/humanize/branch/master/graph/badge.svg)](https://codecov.io/gh/hugovk/humanize)
109
[![MIT License](https://img.shields.io/github/license/jmoiron/humanize.svg)](LICENCE)

RELEASING.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
# Release Checklist
22

33
- [ ] Get master to the appropriate code release state.
4-
[Travis CI](https://travis-ci.org/hugovk/humanize) and
54
[GitHub Actions](https://github.com/jmoiron/humanize/actions) should be running
65
cleanly for all merges to master.
7-
[![Build Status](https://travis-ci.org/hugovk/humanize.svg?branch=master)](https://travis-ci.org/hugovk/humanize)
86
[![GitHub Actions status](https://github.com/jmoiron/humanize/workflows/Test/badge.svg)](https://github.com/jmoiron/humanize/actions)
97

108
* [ ] Start from a freshly cloned repo:

0 commit comments

Comments
 (0)