Codebase list python-popcon / 806b7ec
removed travis, bumped min python to py36 Bastian Venthur 2 years ago
4 changed file(s) with 6 addition(s) and 26 deletion(s). Raw diff Collapse all Expand all
1616 - macos-latest
1717 - windows-latest
1818 python-version:
19 - 3.4
20 - 3.5
2119 - 3.6
2220 - 3.7
2321 - 3.8
+0
-23
.travis.yml less more
0 language: python
1
2 # workaround to make travis work with python3.7
3 # https://github.com/travis-ci/travis-ci/issues/9069#issuecomment-425720905
4 sudo: required
5 dist: xenial
6
7 python:
8 - "3.4"
9 - "3.5"
10 - "3.6"
11 - "3.7"
12 - "nightly"
13
14 matrix:
15 allow_failures:
16 - python: "nightly"
17
18 install:
19 - pip install -e .['dev']
20
21 script:
22 - make
00 # Changelog
1 ## []
2
3 * updated build system
4 * use github actions instead of travis
5 * bumped minimal Python version to 3.6
16
27 ## [2.0.3] - 2020-02-11
38
1616 url='http://github.com/venthur/python-popcon',
1717 license='GPL2',
1818 packages=['popcon'],
19 python_requires='>=3.4, <4',
19 python_requires='>=3.6, <4',
2020 entry_points={
2121 'console_scripts': [
2222 'popcon = popcon.__main__:main'