Skip to content

Commit

Permalink
drop support 3.5 & add 3.9. remove appveyor and travis.
Browse files Browse the repository at this point in the history
  • Loading branch information
schettino72 committed Mar 14, 2021
1 parent 3121d67 commit 12456b9
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 78 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu, windows, macos]
python-version: ['3.5', '3.6', '3.7', '3.8', '3.9', 'pypy3']
python-version: ['3.6', '3.7', '3.8', '3.9', 'pypy3']
include:
# https://github.com/pydoit/doit/issues/372
- os: macos
Expand Down Expand Up @@ -41,12 +41,13 @@ jobs:
restore-keys: |
${{ runner.os }}-pip-${{ matrix.python-version }}-
${{ runner.os }}-pip-
- run: pip install . -r dev_requirements.txt codecov
- run: pip install . -r dev_requirements.txt
- run: pip freeze
- run: pip check
- run: doit pyflakes
- run: py.test -vv ${{ matrix.pytest-args }}
- if: ${{ matrix.os == 'ubuntu' && matrix.python-version == '3.8' }}
run: |
pip install codecov
doit coverage
codecov
42 changes: 0 additions & 42 deletions .travis.yml

This file was deleted.

2 changes: 2 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ Changes
0.34.0 (*unreleased*)
=====================

- BACKWARD INCOMPATIBLE: Drop Python 3.5 support
- python 3.9 support
- Fix #381: Allow Delayed tasks to be executed multiple times in same process.
- Fix #382: TaskResult make sure `started` include microsecond as decimal number.

Expand Down
10 changes: 2 additions & 8 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,6 @@ README
.. image:: https://img.shields.io/pypi/v/doit.svg
:target: https://pypi.python.org/pypi/doit

.. image:: https://travis-ci.org/pydoit/doit.png?branch=master
:target: https://travis-ci.org/pydoit/doit

.. image:: https://ci.appveyor.com/api/projects/status/f7f97iywo8y7fe4d/branch/master?svg=true
:target: https://ci.appveyor.com/project/schettino72/doit/branch/master

.. image:: https://github.com/pydoit/doit/actions/workflows/ci.yml/badge.svg?branch=master
:target: https://github.com/pydoit/doit/actions/workflows/ci.yml?query=branch%3Amaster

Expand Down Expand Up @@ -95,7 +89,7 @@ license
=======

The MIT License
Copyright (c) 2008-2018 Eduardo Naufel Schettino
Copyright (c) 2008-2021 Eduardo Naufel Schettino

see LICENSE file

Expand All @@ -109,7 +103,7 @@ see AUTHORS file
install
=======

*doit* is tested on python 3.5 to 3.8.
*doit* is tested on python 3.6 to 3.9.

The last version supporting python 2 is version 0.29.

Expand Down
25 changes: 0 additions & 25 deletions appveyor.yml

This file was deleted.

2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@
'Operating System :: OS Independent',
'Operating System :: POSIX',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: Science/Research',
Expand Down

0 comments on commit 12456b9

Please sign in to comment.