Skip to content

Commit 6a31633

Browse files
0.3 (#1069)
* Bump version: 0.2.0 → 0.3.0
1 parent e262b27 commit 6a31633

File tree

6 files changed

+10
-8
lines changed

6 files changed

+10
-8
lines changed

.flake8

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ per-file-ignores =
99
__init__.py: F401
1010
rst-roles = class,const,func,meth,mod,ref
1111
rst-directives = deprecated
12-
exclude = tests/*, docs/*
12+
exclude = tests/*, docs/*, notebooks/*

.travis.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
language: python
22
python:
3+
- 3.11
34
- 3.10
45
- 3.9
56
- 3.8
6-
- 3.7
77
before_install:
88
- python -m pip install --upgrade virtualenv
99
install: pip install -U tox-travis
@@ -17,6 +17,6 @@ deploy:
1717
on:
1818
tags: true
1919
repo: andrewbolster/bolster
20-
python: 3.9
20+
python: 3.10
2121
password:
2222
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=

noxfile.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
raise SystemExit(dedent(message))
2020

2121
package = "bolster"
22-
python_versions = ["3.10", "3.9", "3.8"]
22+
python_versions = ["3.11", "3.10", "3.9", "3.8"]
2323
nox.needs_version = ">= 2021.6.6"
2424
nox.options.sessions = (
2525
"pre-commit",
@@ -213,7 +213,7 @@ def docs_build(session: Session) -> None:
213213
session.run("sphinx-build", *args)
214214

215215

216-
@session(python="3.9")
216+
@session(python="3.10")
217217
def docs(session: Session) -> None:
218218
"""Build and serve the documentation with live reloading on file changes."""
219219
args = session.posargs or ["--open-browser", "docs", "docs/_build"]

pyproject.toml

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "bolster"
3-
version = "0.2.0"
3+
version = "0.3.0"
44
description = "Bolster's Brain, you've been warned"
55
authors = ["Andrew Bolster <[email protected]>"]
66
readme = "README.rst"
@@ -15,6 +15,8 @@ classifiers = [
1515
'Programming Language :: Python :: 3',
1616
'Programming Language :: Python :: 3.8',
1717
'Programming Language :: Python :: 3.9',
18+
'Programming Language :: Python :: 3.10',
19+
'Programming Language :: Python :: 3.11',
1820
]
1921

2022
[tool.poetry.dependencies]

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.2.0
2+
current_version = 0.3.0
33
commit = True
44
tag = True
55

src/bolster/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
__author__ = """Andrew Bolster"""
55
__email__ = "[email protected]"
6-
__version__ = "0.2.0"
6+
__version__ = "0.3.0"
77

88
import base64
99
import contextlib

0 commit comments

Comments
 (0)