We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 03b0004 + 59e0e19 commit cfda6feCopy full SHA for cfda6fe
3 files changed
.github/workflows/ci.yml
@@ -0,0 +1,21 @@
1
+name: Run test
2
+
3
+on:
4
+ push:
5
+ branches: '*'
6
+ pull_request:
7
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
setup.py
@@ -2,8 +2,6 @@
import sys
extra = {}
-if sys.version_info >= (3,):
- extra['use_2to3'] = True
setup(
name = 'microdata',
0 commit comments