Skip to content

Commit

Permalink
Merge pull request #139 from natekspencer/dev
Browse files Browse the repository at this point in the history
Release 2023.4.0
  • Loading branch information
natekspencer authored Apr 20, 2023
2 parents 54a11cd + c6acbd0 commit 04147fd
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10"]
python-version: ["3.8", "3.9", "3.10", "3.11"]

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion pylitterbot/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""pylitterbot module."""
__version__ = "2023.1.2"
__version__ = "2023.4.0"

from .account import Account
from .robot import Robot
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "pylitterbot"
version = "2023.1.2"
version = "2023.4.0"
description = "Python package for controlling Whisker automatic robots."
authors = ["Nathan Spencer <[email protected]>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion tests/test_init.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@

def test_version() -> None:
"""Test the version."""
assert __version__ == "2023.1.2"
assert __version__ == "2023.4.0"
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
isolated_build = True
envlist = lint, mypy, py38, py39, py310
envlist = lint, mypy, py38, py39, py310, py311
skip_missing_interpreters = True

[tox:.package]
Expand Down

0 comments on commit 04147fd

Please sign in to comment.