Skip to content

Commit 616e278

Browse files
committed
Switch to poetry
1 parent d8a199c commit 616e278

File tree

5 files changed

+61
-55
lines changed

5 files changed

+61
-55
lines changed

CHANGELOG.md

+25-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
## 0.9.9 (17 November 2022)
2+
3+
### What's Changed
4+
5+
* Add query uid__range by @skulltech in https://github.com/martinrusev/imbox/pull/153
6+
* fix substring search of subjects in Gmail, add support for some Gmail extended IMAP by @zevaverbach in https://github.com/martinrusev/imbox/pull/155
7+
* Support filter message by mail body by @daassh in https://github.com/martinrusev/imbox/pull/166
8+
* Attachments now getting Content-ID by @Anderseta in https://github.com/martinrusev/imbox/pull/174
9+
* Update parser.py in https://github.com/martinrusev/imbox/pull/192
10+
* Avoiding the error - ValueError: invalid literal for int() with base 10 by @Anderseta in https://github.com/martinrusev/imbox/pull/201
11+
* fix false exception on unknown encoding #202 by @kapalex in https://github.com/martinrusev/imbox/pull/203
12+
* Fix binascii.Error: Incorrect padding by @Anderseta in https://github.com/martinrusev/imbox/pull/204
13+
* Preserve timezone info in date parsing by @AT0myks in https://github.com/martinrusev/imbox/pull/205
14+
* Fix ignored headers + unnecessary major version check by @AT0myks in https://github.com/martinrusev/imbox/pull/206
15+
* Local variable 'filename' value is not used by @tveronesi in https://github.com/martinrusev/imbox/pull/211
16+
* Date handling improvement and various fixes by @AT0myks in https://github.com/martinrusev/imbox/pull/218
17+
* Fix crash when semicolon present in attachment name by @nicknytko in https://github.com/martinrusev/imbox/pull/219
18+
* Base64 decode param and recognize single file mails as attachment by @engelant in https://github.com/martinrusev/imbox/pull/224
19+
* [Fix] parse_attachment > cannot parse name by @jimmi2051 in https://github.com/martinrusev/imbox/pull/228
20+
* Should first get content charset then str_encode with charset. by @sangkaka in https://github.com/martinrusev/imbox/pull/231
21+
* fix append and join of param parts by @oberix in https://github.com/martinrusev/imbox/pull/232
22+
23+
124
## 0.9.8 (02 June 2020)
225

326
IMPROVEMENTS:
@@ -43,15 +66,15 @@ IMPROVEMENTS:
4366

4467
* Permissively Decode Emails: ([#78](https://github.com/martinrusev/imbox/pull/78)) - Contributed by @AdamNiederer
4568
* "With" statement for automatic cleanup/logout ([#92](https://github.com/martinrusev/imbox/pull/92)) - Contributed by @sblondon
46-
69+
4770

4871

4972
## 0.8.6 (6 December 2016)
5073

5174
IMPROVEMENTS:
5275

5376
* Add support for Python 3.3+ Parsing policies: ([#75](https://github.com/martinrusev/imbox/pull/75)) - Contributed by @bhtucker
54-
77+
5578
BACKWARDS INCOMPATIBILITIES / NOTES:
5679

5780
* Remove support for Python 2.7

Makefile

+3-9
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,3 @@
1-
upload_to_pypi:
2-
pip install twine setuptools
3-
rm -rf dist/*
4-
rm -rf build/*
5-
python setup.py sdist build
6-
twine upload dist/*
7-
8-
test:
9-
nosetests -v
1+
publish:
2+
poetry build
3+
poetry publish

poetry.lock

+18
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
[tool.poetry]
2+
name = "imbox"
3+
version = "0.9.9"
4+
description = ""
5+
authors = ["Martin Rusev <[email protected]>"]
6+
readme = "README.md"
7+
8+
[tool.poetry.dependencies]
9+
python = "^3.7"
10+
chardet = "^5.0.0"
11+
12+
13+
[build-system]
14+
requires = ["poetry-core"]
15+
build-backend = "poetry.core.masonry.api"

setup.py

-44
This file was deleted.

0 commit comments

Comments
 (0)