From 210d2f080c4878bd6f4cfbdb5eb27b601a12557a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alex=20N=C3=B8rgaard?= Date: Wed, 2 Aug 2023 19:52:39 +0100 Subject: [PATCH] version bump --- mystbin/__init__.py | 2 +- pyproject.toml | 18 +++++++++--------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/mystbin/__init__.py b/mystbin/__init__.py index 0266d6b..07502fb 100755 --- a/mystbin/__init__.py +++ b/mystbin/__init__.py @@ -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) diff --git a/pyproject.toml b/pyproject.toml index f452621..f561581 100755 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 "] +authors = ["AbstractUmbra "] 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", @@ -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] @@ -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"]