Skip to content

Commit cfda6fe

Browse files
authored
Merge pull request #41 from staeff/staeff-patch-1
Remove 'use_2to3'
2 parents 03b0004 + 59e0e19 commit cfda6fe

3 files changed

Lines changed: 21 additions & 16 deletions

File tree

.github/workflows/ci.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Run test
2+
3+
on:
4+
push:
5+
branches: '*'
6+
pull_request:
7+
branches: '*'
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v2
14+
- uses: actions/setup-python@v2
15+
with:
16+
python-version: 3.7
17+
- name: Upgrade setuptools
18+
run: |
19+
pip install --upgrade setuptools
20+
- name: Run tests
21+
run: python setup.py test

.travis.yml

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

setup.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
import sys
33

44
extra = {}
5-
if sys.version_info >= (3,):
6-
extra['use_2to3'] = True
75

86
setup(
97
name = 'microdata',

0 commit comments

Comments
 (0)