From 6a31633054f3b2abf671d62102f2de9f4f2f3c02 Mon Sep 17 00:00:00 2001 From: Andrew Bolster Date: Wed, 21 Feb 2024 17:52:06 +0000 Subject: [PATCH] 0.3 (#1069) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Bump version: 0.2.0 → 0.3.0 --- .flake8 | 2 +- .travis.yml | 4 ++-- noxfile.py | 4 ++-- pyproject.toml | 4 +++- setup.cfg | 2 +- src/bolster/__init__.py | 2 +- 6 files changed, 10 insertions(+), 8 deletions(-) diff --git a/.flake8 b/.flake8 index a3edd3ca..0bf79f1a 100644 --- a/.flake8 +++ b/.flake8 @@ -9,4 +9,4 @@ per-file-ignores = __init__.py: F401 rst-roles = class,const,func,meth,mod,ref rst-directives = deprecated -exclude = tests/*, docs/* +exclude = tests/*, docs/*, notebooks/* diff --git a/.travis.yml b/.travis.yml index 9f7be003..bf806404 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,9 +1,9 @@ language: python python: + - 3.11 - 3.10 - 3.9 - 3.8 - - 3.7 before_install: - python -m pip install --upgrade virtualenv install: pip install -U tox-travis @@ -17,6 +17,6 @@ deploy: on: tags: true repo: andrewbolster/bolster - python: 3.9 + python: 3.10 password: secure: mS1gicG0LfQXU5PjygB0/TifGJnEgfmczcdBNTukoJIBQ9V5J78BwcXOKswovKEJbXaVW7/71usVKJvCbOAyLJRRzisGTbvS3GhF3+xZWWpqUAlN6gkwN9tcZc6eOIkL7hMJIk3WEuE7TLKoubVMkpmDKAIlIAZRN0DIVPk56AfpcUqZqbY9oCUS2rYKf9Ig2Df/HykFlEH+JwVzgoyruVgFqWs1Qt70T28QAcdTklkRssIUuMk+oTi+tqdVceq7ib+b2RPAT9SHNT4IwuF2OPNQq1zajLqXi0d0Cbs6Kiy6c29Ic/uTO2g76mpV2dTfEosn2ygFWr314ANql3rRE3vslYCjWWN8e7wsSa3Dy+dOwQQ7eH0h+jmfRkzvbrS+Ynd3yw1NDn+Nkp7Q/ygwVVRiOVl3o10aWixIl/VF2xku5zlqm5v+gq76WY7u6m0K+VdXEwS96JEWoaxk6FB+QijAEmq/SPATdQOBJaDfP3qbKWL/7zeAkrMWYd91Bo1LiDwftTIpplDV1di8XGA8Uyh/H9XeEndrfRik6gP6Y5TnYFYr6tmxmnGbPWdN7z+xb6Wu+RoWEcipXvQjsFCAOFDu3cE0t/G9HRK9cSHLNC7yvuUvDO5TLUDaR+GNpqLtlcoNaD8/rVdRe0tWwRPzg34nB7rbvYnWElfWPzoAXYw= diff --git a/noxfile.py b/noxfile.py index 7b3230e2..f80b84d7 100644 --- a/noxfile.py +++ b/noxfile.py @@ -19,7 +19,7 @@ raise SystemExit(dedent(message)) package = "bolster" -python_versions = ["3.10", "3.9", "3.8"] +python_versions = ["3.11", "3.10", "3.9", "3.8"] nox.needs_version = ">= 2021.6.6" nox.options.sessions = ( "pre-commit", @@ -213,7 +213,7 @@ def docs_build(session: Session) -> None: session.run("sphinx-build", *args) -@session(python="3.9") +@session(python="3.10") def docs(session: Session) -> None: """Build and serve the documentation with live reloading on file changes.""" args = session.posargs or ["--open-browser", "docs", "docs/_build"] diff --git a/pyproject.toml b/pyproject.toml index 13f26ff7..6fe2499a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "bolster" -version = "0.2.0" +version = "0.3.0" description = "Bolster's Brain, you've been warned" authors = ["Andrew Bolster "] readme = "README.rst" @@ -15,6 +15,8 @@ classifiers = [ 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', + 'Programming Language :: Python :: 3.10', + 'Programming Language :: Python :: 3.11', ] [tool.poetry.dependencies] diff --git a/setup.cfg b/setup.cfg index 18964946..731a2c55 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.2.0 +current_version = 0.3.0 commit = True tag = True diff --git a/src/bolster/__init__.py b/src/bolster/__init__.py index 499d17a0..1701e9e9 100644 --- a/src/bolster/__init__.py +++ b/src/bolster/__init__.py @@ -3,7 +3,7 @@ __author__ = """Andrew Bolster""" __email__ = "me@andrewbolster.info" -__version__ = "0.2.0" +__version__ = "0.3.0" import base64 import contextlib