Anders Kaseorg
|
28cae1a71c
|
Release version 0.9.0.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
|
2023-11-14 16:16:17 -08:00 |
|
Anders Kaseorg
|
ca3e5a2746
|
ruff: Fix EXE001 Shebang is present but file is not executable.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
|
2023-10-29 16:54:40 -07:00 |
|
Anders Kaseorg
|
6cb1d5f775
|
mypy: Enable explicit-override error.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
|
2023-10-26 14:03:17 -07:00 |
|
Anders Kaseorg
|
f55d5ea555
|
Mark Python 3.11 supported.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
|
2023-10-25 16:00:47 -07:00 |
|
Anders Kaseorg
|
98e23bdfd4
|
Remove Python 3.7 support.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
|
2023-10-25 13:23:37 -07:00 |
|
Anders Kaseorg
|
c94da617ed
|
Remove Python 3.6; add Python 3.10.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
|
2023-01-24 12:04:59 -08:00 |
|
Anders Kaseorg
|
d26416a1e7
|
Release version 0.8.2.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
|
2022-03-15 17:44:12 -07:00 |
|
Anders Kaseorg
|
05d591a906
|
Remove legacy distutils support.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
|
2022-02-28 10:35:58 -08:00 |
|
Eeshan Garg
|
fec8cc50c4
|
pypi: Release version 0.8.1.
|
2021-10-19 18:03:52 -04:00 |
|
PIG208
|
9ce7c52a10
|
pyupgrade: Reformat with --py36-plus.
This includes mainly fixes of string literals using f-strings or
.format(...), as well as unpacking of list comprehensions.
|
2021-06-02 18:45:57 -07:00 |
|
PIG208
|
6f3f9bf7e4
|
black: Reformat without skipping string normalization.
|
2021-06-02 18:45:57 -07:00 |
|
PIG208
|
fba21bb00d
|
black: Reformat skipping string normalization.
|
2021-06-02 18:45:57 -07:00 |
|
PIG208
|
5580c68ae5
|
isort: Reformat using isort.
|
2021-06-02 18:45:57 -07:00 |
|
Eeshan Garg
|
63fefd2a0f
|
pypi: Release version 0.8.0.
|
2021-05-19 22:44:45 -02:30 |
|
LoopThrough-i-j
|
3887ad102e
|
python-zulip-api: Drop python3.5 support.
Fixes Part of #655
|
2021-02-26 07:32:47 -08:00 |
|
Eeshan Garg
|
befbb953dd
|
pypi: Release version 0.7.1.
|
2020-10-09 15:50:43 -02:30 |
|
Anders Kaseorg
|
5f81eb3a70
|
Update zulipchat.com links to zulip.com.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
|
2020-06-11 21:06:58 -07:00 |
|
neiljp (Neil Pilgrim)
|
540d453237
|
setup.py: Add Source & Documentation project_urls.
The only existing url points to zulip.org -> zulipchat.com
|
2020-05-05 09:20:50 -04:00 |
|
Eeshan Garg
|
1dac75f979
|
pypi: Release version 0.7.0.
|
2020-04-20 23:23:58 -02:30 |
|
Anders Kaseorg
|
5428c5f296
|
typing: Convert function type annotations to Python 3 style.
Generated by com2ann (slightly patched to avoid also converting
assignment type annotations, which require Python 3.6), followed by
some manual whitespace adjustment, and two fixes for use-before-define
issues:
- def set_zulip_client(self, zulipToJabberClient: ZulipToJabberBot) -> None:
+ def set_zulip_client(self, zulipToJabberClient: 'ZulipToJabberBot') -> None:
-def init_from_options(options: Any, client: Optional[str] = None) -> Client:
+def init_from_options(options: Any, client: Optional[str] = None) -> 'Client':
Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
|
2020-04-18 20:31:14 -07:00 |
|
Anders Kaseorg
|
fe72f3b131
|
typing: Remove ‘if False’ guard for typing imports.
typing is in the Python 3.5 standard library.
Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
|
2020-04-18 20:31:14 -07:00 |
|
Anders Kaseorg
|
e30b3b094b
|
Modernize legacy Python 2 syntax with pyupgrade.
Generated by `pyupgrade --py3-plus --keep-percent-format` followed by
manual indentation fixes.
Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
|
2020-04-18 15:04:36 -07:00 |
|
Eeshan Garg
|
dd201926fa
|
pypi_packages: Use README files for long descriptions.
|
2020-04-16 19:35:54 -07:00 |
|
Eeshan Garg
|
c55bf78c6b
|
pypi: Specify the correct license classifier for all packages.
|
2020-04-16 19:35:54 -07:00 |
|
rht
|
4600ce59a3
|
Remove all remaining from __future__ imports.
|
2020-04-03 08:18:08 -04:00 |
|
rht
|
204871b518
|
Finish the remaining migration of shebang to python3.
|
2020-04-03 08:18:08 -04:00 |
|
Eeshan Garg
|
ce73dab121
|
pypi: Release version 0.6.4.
|
2020-03-26 19:52:46 -02:30 |
|
Eeshan Garg
|
0b930cfe86
|
pypi: Add support for Python 3.8.
|
2020-03-26 13:38:08 -07:00 |
|
Eeshan Garg
|
957b5e7ad8
|
pypi: Release version 0.6.3.
|
2019-12-16 11:48:56 -03:30 |
|
Eeshan Garg
|
efcc89da9d
|
pypi: Release version 0.6.2.
|
2019-12-14 16:38:48 -03:30 |
|
neiljp (Neil Pilgrim)
|
0427d962b0
|
setup.py: Add supported python versions for all packages.
|
2019-09-03 13:28:32 -07:00 |
|
Anders Kaseorg
|
c6a52d798e
|
zulip_bots, zulip_botserver: Add PEP 561 type annotation markers.
Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
|
2019-08-09 17:29:04 -07:00 |
|
Eeshan Garg
|
e5bcd095fd
|
pypi: Release version 0.6.1.
|
2019-07-14 21:17:53 -02:30 |
|
Eeshan Garg
|
accfa8ddaf
|
pypi: Release version 0.6.0.
|
2019-03-19 19:43:23 -02:30 |
|
Eeshan Garg
|
d43b9328f0
|
pypi: Release version 0.5.9.
|
2019-02-17 02:49:27 -03:30 |
|
Eeshan Garg
|
9931de2c6b
|
pypi: Release version 0.5.8.
|
2019-01-22 22:35:37 -03:30 |
|
Eeshan Garg
|
ed6c797d19
|
pypi: Release version 0.5.7.
|
2019-01-16 20:50:46 -03:30 |
|
Eeshan Garg
|
d478c91965
|
pypi: Release version 0.5.6.
|
2018-12-17 17:07:32 -03:30 |
|
Eeshan Garg
|
09deda9466
|
pypi: Release version 0.5.5.
|
2018-09-25 22:36:57 -02:30 |
|
Eeshan Garg
|
048fa79a7c
|
pypi: Release version 0.5.4.
Starting now, we now also have a CHANGELOG to record major changes
to the zulip package.
|
2018-08-31 17:25:55 -02:30 |
|
Eeshan Garg
|
6151f2db40
|
pypi: Release version 0.5.3.
|
2018-08-17 22:21:01 -02:30 |
|
Eeshan Garg
|
1127f973aa
|
pypi: Release version 0.5.2.
|
2018-07-26 21:19:12 -02:30 |
|
Eeshan Garg
|
c2fdd547f7
|
PyPI: Release 0.5.1.
|
2018-07-01 12:05:59 -02:30 |
|
Eeshan Garg
|
c636a5ac49
|
pypi: Release 0.5.0.
|
2018-06-07 12:05:18 -02:30 |
|
Robert Hönig
|
3d05b88cc2
|
botserver: Rename zulip-bot-server to zulip-botserver.
This is consistent with the correct prose "Botserver"
(instead of "Bot-server").
|
2018-06-04 10:14:17 -07:00 |
|
Eeshan Garg
|
00f22e175c
|
pypi: Release 0.4.7.
|
2018-05-21 20:02:43 -02:30 |
|
dkvasov
|
ce95f9f4d5
|
zulip_bots and zulip_botserver: Remove unused imports.
|
2018-05-16 10:50:43 -07:00 |
|
Eeshan Garg
|
f4bdb059db
|
pypi: Release version 0.4.6.
This includes a critical bug fix for call_on_each_event.
|
2018-04-27 01:43:42 -02:30 |
|
Eeshan Garg
|
0f448579ab
|
pypi: Release 0.4.5.
We just made a minor change to our Git integration, so that warranted
a new release so I could update the docs on the zulip/zulip repo.
|
2018-04-23 18:50:56 -02:30 |
|
Eeshan Garg
|
2d46445ab5
|
pypi: Release version 0.4.4.
This includes some important changes after the release of pip 10.
|
2018-04-16 17:05:27 -02:30 |
|