Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
AbstractUmbra committed Aug 2, 2023
1 parent d4c0dad commit 210d2f0
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion mystbin/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,4 @@ class VersionInfo(NamedTuple):
serial: int


version_info: VersionInfo = VersionInfo(major=6, minor=0, micro=1, releaselevel="final", serial=0)
version_info: VersionInfo = VersionInfo(major=6, minor=0, micro=2, releaselevel="final", serial=0)
18 changes: 9 additions & 9 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[tool.poetry]
name = "mystbin-py"
version = "6.0.1"
version = "6.0.2"
description = "A small simple wrapper around the mystb.in API."
authors = ["AbstractUmbra <Umbra@AbstractUmbra.dev>"]
authors = ["AbstractUmbra <umbra@abstractumbra.dev>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/PythonistaGuild/mystbin.py"
repository = "https://github.com/PythonistaGuild/mystbin.py"
keywords = ["mystbin", "paste"]
keywords = ["mystbin", "paste"]
classifiers = [
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
Expand All @@ -20,13 +20,11 @@ classifiers = [
"Topic :: Internet",
"Typing :: Typed",
]
include = [
"LICENSE"
]
include = ["LICENSE"]
packages = [
{ include = "mystbin" },
{ include = "mystbin/**/*.py" },
{ include = "mystbin/py.typed" }
{ include = "mystbin/py.typed" },
]

[tool.poetry.urls]
Expand All @@ -36,13 +34,15 @@ packages = [
python = "^3.8"
aiohttp = [
{ version = "^3.8" },
{ version = "^3.8", markers = "extra == 'speed'", extras= ["speedups"]},
{ version = "^3.8", markers = "extra == 'speed'", extras = [
"speedups",
] },
]

sphinx = { version = "^4.0.0", optional = true }
sphinxcontrib-trio = { version = "*", optional = true }
furo = { version = "*", optional = true }
pytz = { version = "*", optional = true, python="<3.9" }
pytz = { version = "*", optional = true, python = "<3.9" }

[tool.poetry.extras]
speed = ["aiohttp"]
Expand Down

0 comments on commit 210d2f0

Please sign in to comment.