Skip to content

Commit 724bd4d

Browse files
committed
Fix AppVeyor build
1 parent 8452df6 commit 724bd4d

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

appveyor.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,20 @@
11
image: ubuntu1804
22

3-
install:
4-
- sudo apt-get install -y python3-setuptools python3-wheel twine
5-
63
build: off
74

5+
install:
6+
- sudo apt-get install -y python3-pip
7+
88
build_script:
9+
- pip3 install --user -U pip setuptools wheel flake8
10+
- export PATH="$(python3 -m site --user-base)/bin:${PATH}"
911
- python3 setup.py build
1012

1113
test_script:
12-
- python3 setup.py flake8
14+
- flake8 .
1315

1416
after_test:
15-
- python3 setup.py bdist_wheel bdist_egg
17+
- python3 setup.py bdist_wheel
1618

1719
artifacts:
1820
- path: dist/*

0 commit comments

Comments
 (0)