Skip to content

Commit 210d2f0

Browse files
committed
version bump
1 parent d4c0dad commit 210d2f0

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

mystbin/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,4 +40,4 @@ class VersionInfo(NamedTuple):
4040
serial: int
4141

4242

43-
version_info: VersionInfo = VersionInfo(major=6, minor=0, micro=1, releaselevel="final", serial=0)
43+
version_info: VersionInfo = VersionInfo(major=6, minor=0, micro=2, releaselevel="final", serial=0)

pyproject.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
[tool.poetry]
22
name = "mystbin-py"
3-
version = "6.0.1"
3+
version = "6.0.2"
44
description = "A small simple wrapper around the mystb.in API."
5-
authors = ["AbstractUmbra <Umbra@AbstractUmbra.dev>"]
5+
authors = ["AbstractUmbra <umbra@abstractumbra.dev>"]
66
license = "MIT"
77
readme = "README.md"
88
homepage = "https://github.com/PythonistaGuild/mystbin.py"
99
repository = "https://github.com/PythonistaGuild/mystbin.py"
10-
keywords = ["mystbin", "paste"]
10+
keywords = ["mystbin", "paste"]
1111
classifiers = [
1212
"License :: OSI Approved :: MIT License",
1313
"Intended Audience :: Developers",
@@ -20,13 +20,11 @@ classifiers = [
2020
"Topic :: Internet",
2121
"Typing :: Typed",
2222
]
23-
include = [
24-
"LICENSE"
25-
]
23+
include = ["LICENSE"]
2624
packages = [
2725
{ include = "mystbin" },
2826
{ include = "mystbin/**/*.py" },
29-
{ include = "mystbin/py.typed" }
27+
{ include = "mystbin/py.typed" },
3028
]
3129

3230
[tool.poetry.urls]
@@ -36,13 +34,15 @@ packages = [
3634
python = "^3.8"
3735
aiohttp = [
3836
{ version = "^3.8" },
39-
{ version = "^3.8", markers = "extra == 'speed'", extras= ["speedups"]},
37+
{ version = "^3.8", markers = "extra == 'speed'", extras = [
38+
"speedups",
39+
] },
4040
]
4141

4242
sphinx = { version = "^4.0.0", optional = true }
4343
sphinxcontrib-trio = { version = "*", optional = true }
4444
furo = { version = "*", optional = true }
45-
pytz = { version = "*", optional = true, python="<3.9" }
45+
pytz = { version = "*", optional = true, python = "<3.9" }
4646

4747
[tool.poetry.extras]
4848
speed = ["aiohttp"]

0 commit comments

Comments
 (0)