Skip to content

Commit

Permalink
Merge pull request #100 from RhetTbull/release_v1_3_1
Browse files Browse the repository at this point in the history
Release 1.3.1 to fix for python 3.11 #98
  • Loading branch information
RhetTbull committed Sep 15, 2023
2 parents 3489025 + 046ae5a commit 4eed0ef
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 18 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.3.0
current_version = 1.3.1
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)
serialize = {major}.{minor}.{patch}

Expand Down
6 changes: 3 additions & 3 deletions dodo.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ def task_update_readme():
return {"actions": ["poetry run cog -r README.md"]}


def task_test():
"""Run tests"""
return {"actions": ["poetry run pytest --doctest-glob=README.md tests/"]}
# def task_test():
# """Run tests"""
# return {"actions": ["poetry run pytest --doctest-glob=README.md tests/"]}


def task_docs():
Expand Down
2 changes: 1 addition & 1 deletion osxmetadata/_version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
""" osxmetadata version """

__version__ = "1.3.0"
__version__ = "1.3.1"
24 changes: 13 additions & 11 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "osxmetadata"
version = "1.3.0"
version = "1.3.1"
description = "Read and write meta data, such as tags/keywords, Finder comments, etc. on MacOS files"
authors = ["Rhet Turnbull <rturnbull+git@gmail.com>"]
license = "MIT License"
Expand Down Expand Up @@ -41,7 +41,7 @@ cogapp = "^3.3.0"
doit = "^0.36.0"
mkdocs = "^1.4.0"
mkdocs-material = "^8.5.4"
mkdocstrings = { extras = ["python"], version = "^0.19.0" }
mkdocstrings = { extras = ["python"], version = "^0.23.0" }
pyinstaller = "^5.6.2"
pytest = "^7.1.3"
pytest-cov = "^4.0.0"
Expand Down

0 comments on commit 4eed0ef

Please sign in to comment.