Skip to content

Commit dc47fdc

Browse files
committed
Fix some bitrot
1 parent c0110c1 commit dc47fdc

6 files changed

+21
-27
lines changed

.pre-commit-config.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
- repo: https://github.com/pre-commit/pre-commit-hooks.git
2-
sha: 97b88d9610bcc03982ddac33caba98bb2b751f5f
2+
sha: v0.7.0
33
hooks:
44
- id: trailing-whitespace
55
- id: end-of-file-fixer
@@ -10,7 +10,7 @@
1010
- id: requirements-txt-fixer
1111
- id: flake8
1212
- repo: https://github.com/asottile/reorder_python_imports.git
13-
sha: 50e0be95e292cac913cc3c6fd44b3d6b51d104c5
13+
sha: v0.3.1
1414
hooks:
1515
- id: reorder-python-imports
1616
- repo: local

.travis.yml

+13-18
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,21 @@
11
language: python
2-
env:
3-
- TOXENV=py27 GO=1.5
4-
- TOXENV=py27 GO=1.6
5-
- TOXENV=py34 GO=1.6
6-
- TOXENV=py35 GO=1.6
7-
- TOXENV=pypy GO=1.6
2+
sudo: false
3+
matrix:
4+
include:
5+
- env: TOXENV=py27 GO=1.6
6+
- env: TOXENV=py27 GO=1.7
7+
- env: TOXENV=py35 GO=1.7
8+
python: 3.5
9+
- env: TOXENV=py36 GO=1.7
10+
python: 3.6
11+
- env: TOXENV=pypy GO=1.7
12+
python: pypy
813
install:
914
- eval "$(gimme $GO)"
1015
- pip install coveralls tox
11-
script:
12-
- tox
13-
after_success:
14-
- coveralls
15-
sudo: false
16+
script: tox
17+
after_success: coveralls
1618
cache:
1719
directories:
1820
- $HOME/.cache/pip
1921
- $HOME/.pre-commit
20-
addons:
21-
apt:
22-
sources:
23-
- deadsnakes
24-
packages:
25-
- python3.4-dev
26-
- python3.5-dev

Makefile

+2-3
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@ all: venv test
77
venv: .venv.touch
88
tox -e venv $(REBUILD_FLAG)
99

10-
.PHONY: tests test
11-
tests: test
10+
.PHONY: test
1211
test: .venv.touch
1312
tox $(REBUILD_FLAG)
1413

@@ -18,7 +17,7 @@ test: .venv.touch
1817

1918
.PHONY: clean
2019
clean:
21-
find . -name '*.pyc' -delete
20+
find -name '*.pyc' -delete
2221
rm -rf .tox
2322
rm -rf ./venv-*
2423
rm -f .venv.touch

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ A setuptools extension for building cpython extensions written in golang.
88

99
## Requirements
1010

11-
This requires golang >= 1.5. It is currently tested against 1.5 and 1.6.
11+
This requires golang >= 1.5. It is currently tested against 1.6 and 1.7.
1212

13-
This requires python >= 2.7. It is currently tested against 2.7, 3.4, 3.5,
13+
This requires python >= 2.7. It is currently tested against 2.7, 3.5, 3.6,
1414
and pypy.
1515

1616
It is incompatible with pypy3 (for now) due to a lack of c-api.

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
'Programming Language :: Python :: 2',
1717
'Programming Language :: Python :: 2.7',
1818
'Programming Language :: Python :: 3',
19-
'Programming Language :: Python :: 3.4',
2019
'Programming Language :: Python :: 3.5',
20+
'Programming Language :: Python :: 3.6',
2121
'Programming Language :: Python :: Implementation :: CPython',
2222
'Programming Language :: Python :: Implementation :: PyPy',
2323
],

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tox]
22
project = setuptools-golang
33
# These should match the travis env list
4-
envlist = py27,py34,py35,pypy
4+
envlist = py27,py35,py36,pypy
55

66
[testenv]
77
deps = -rrequirements-dev.txt

0 commit comments

Comments
 (0)