Skip to content

Commit

Permalink
0.3 (#1069)
Browse files Browse the repository at this point in the history
* Bump version: 0.2.0 → 0.3.0
  • Loading branch information
andrewbolster committed Feb 21, 2024
1 parent e262b27 commit 6a31633
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .flake8
Original file line number Diff line number Diff line change
Expand Up @@ -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/*
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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=
4 changes: 2 additions & 2 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -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"]
Expand Down
4 changes: 3 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <me@andrewbolster.info>"]
readme = "README.rst"
Expand All @@ -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]
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.2.0
current_version = 0.3.0
commit = True
tag = True

Expand Down
2 changes: 1 addition & 1 deletion src/bolster/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

__author__ = """Andrew Bolster"""
__email__ = "me@andrewbolster.info"
__version__ = "0.2.0"
__version__ = "0.3.0"

import base64
import contextlib
Expand Down

0 comments on commit 6a31633

Please sign in to comment.