mirror of
https://github.com/coddingtonbear/django-mailbox.git
synced 2026-07-09 22:38:19 +02:00
cleanup and update
This commit is contained in:
parent
7d2396bf56
commit
3ab51ac1c8
6 changed files with 10 additions and 62 deletions
46
.travis.yml
46
.travis.yml
|
|
@ -1,46 +0,0 @@
|
|||
version: ~> 1.0
|
||||
os: linux
|
||||
language: python
|
||||
|
||||
jobs:
|
||||
- env: TOX_ENV=docs
|
||||
python: 3.8
|
||||
# sort by django version, next to by python version
|
||||
# Django 1.11 support all supported Python interpreter
|
||||
- env: TOX_ENV=django111-py35
|
||||
python: 3.5
|
||||
- env: TOX_ENV=django111-py36
|
||||
python: 3.6
|
||||
# Django 2.0 support 3.5, 3.6
|
||||
- env: TOX_ENV=django20-py35
|
||||
python: 3.5
|
||||
- env: TOX_ENV=django20-py36
|
||||
python: 3.6
|
||||
|
||||
# Django 2.1 support Python 3.5, 3.6, 3.7
|
||||
- env: TOX_ENV=django21-py35
|
||||
python: 3.5
|
||||
- env: TOX_ENV=django21-py36
|
||||
python: 3.6
|
||||
- env: TOX_ENV=django21-py37
|
||||
python: 3.7
|
||||
# Django 2.2 support Python 3.5, 3.6, 3.7
|
||||
- env: TOX_ENV=django22-py35
|
||||
python: 3.5
|
||||
- env: TOX_ENV=django22-py36
|
||||
python: 3.6
|
||||
- env: TOX_ENV=django22-py37
|
||||
python: 3.7
|
||||
# Django 3.0 (beta) support Python 3.6, 3.7, 3.8
|
||||
- env: TOX_ENV=django30-py36
|
||||
python: 3.6
|
||||
- env: TOX_ENV=django30-py37
|
||||
python: 3.7
|
||||
- env: TOX_ENV=django30-py38 INTEGRATION=1
|
||||
python: 3.8
|
||||
|
||||
install:
|
||||
- pip install tox
|
||||
|
||||
script:
|
||||
- tox -e $TOX_ENV
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
Changelog
|
||||
=========
|
||||
|
||||
Unreleased
|
||||
4.9.0
|
||||
-----
|
||||
|
||||
* Add Django 3.2, 4.0, 4.1, 4.2, 5.0 support
|
||||
|
|
|
|||
|
|
@ -1,5 +1,4 @@
|
|||
include *.rst
|
||||
include .travis.yml
|
||||
include MANIFEST
|
||||
recursive-include django_mailbox *.eml
|
||||
recursive-include docs *.py
|
||||
|
|
|
|||
|
|
@ -6,8 +6,8 @@
|
|||
Django-mailbox
|
||||
==============
|
||||
|
||||
.. image:: https://travis-ci.org/coddingtonbear/django-mailbox.png?branch=master
|
||||
:target: https://travis-ci.org/coddingtonbear/django-mailbox
|
||||
.. image:: https://github.com/coddingtonbear/django-mailbox/actions/workflows/main.yml/badge.svg
|
||||
:target: https://github.com/coddingtonbear/django-mailbox/actions/workflows/main.yml
|
||||
|
||||
How many times have you had to consume some sort of POP3, IMAP, or local mailbox for incoming content,
|
||||
or had to otherwise construct an application driven by e-mail?
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ make it simple.
|
|||
How to file a ticket?
|
||||
---------------------
|
||||
|
||||
Just go to https://github.com/coddingtonbear/django-mailbox and create new
|
||||
Just go to https://github.com/coddingtonbear/django-mailbox/issues and create new
|
||||
one.
|
||||
|
||||
|
||||
|
|
@ -50,10 +50,8 @@ Changes are only necessary for new minor or major Django versions.
|
|||
|
||||
To add support for a new version perform the following task:
|
||||
|
||||
* Ensure that ``.github/workflows/main.yml`` file reflects support for new Python release.
|
||||
* Ensure that ``tox.ini`` file reflects support for new Django release.
|
||||
* Verify in tox that the code is executed correctly on all versions of the Python interpreter.
|
||||
* Ensure that ``.travis.yml`` file reflects support for new Django release. Note the excluded versions of the Python interpreter.
|
||||
* Verify by pushing changes on a separate branch to see if the changes in TravisCI are correct.
|
||||
* Verify by pushing changes on a separate branch to see if the changes in Github Actions are correct.
|
||||
* Proceed to the standard procedure for a new package release (see `How to do a new release?`_ ).
|
||||
|
||||
A `spreadsheet with generator is available <https://docs.google.com/spreadsheets/d/1YsVPDeOAgf_c_7XOXh6SZUO2ebMNoFXysxfj4r1tFiM/edit?usp=sharing>`_ that can assist this process.
|
||||
|
|
|
|||
11
readme.rst
11
readme.rst
|
|
@ -1,11 +1,8 @@
|
|||
.. image:: https://travis-ci.org/coddingtonbear/django-mailbox.png?branch=master
|
||||
:target: https://travis-ci.org/coddingtonbear/django-mailbox
|
||||
.. image:: https://github.com/coddingtonbear/django-mailbox/actions/workflows/main.yml/badge.svg
|
||||
:target: https://github.com/coddingtonbear/django-mailbox/actions/workflows/main.yml
|
||||
|
||||
.. image:: https://badge.fury.io/py/django-mailbox.png
|
||||
:target: http://badge.fury.io/py/django-mailbox
|
||||
|
||||
.. image:: https://pypip.in/d/django-mailbox/badge.png
|
||||
:target: https://pypi.python.org/pypi/django-mailbox
|
||||
:target: https://pypi.org/project/django-mailbox/
|
||||
|
||||
|
||||
Easily ingest messages from POP3, IMAP, Office365 API or local mailboxes into your Django application.
|
||||
|
|
@ -21,7 +18,7 @@ or -- if you're in a hurry -- by using a signal receiver.
|
|||
- Please post issues on
|
||||
`Github <http://github.com/coddingtonbear/django-mailbox/issues>`_.
|
||||
- Test status available on
|
||||
`Travis-CI <https://travis-ci.org/coddingtonbear/django-mailbox>`_.
|
||||
`Github-Actions <https://github.com/coddingtonbear/django-mailbox/actions/workflows/main.yml>`_.
|
||||
|
||||
|
||||
.. image:: https://badges.gitter.im/Join%20Chat.svg
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue