Skip to content

Commit

Permalink
Merge branch 'main' into pre-commit-ci-update-config
Browse files Browse the repository at this point in the history
  • Loading branch information
hugovk authored Jul 6, 2024
2 parents e1cf342 + 2964e07 commit 05db92d
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
# Temporarily remove 3.13 pending:
# https://github.com/pytest-dev/pyfakefs/issues/1017
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v4
Expand Down
1 change: 0 additions & 1 deletion LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
blurb version 1.0
Part of the blurb package.
Copyright 2015-2018 by Larry Hastings

Expand Down
3 changes: 3 additions & 0 deletions src/blurb/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import importlib.metadata

__version__ = importlib.metadata.version(__name__)
5 changes: 2 additions & 3 deletions src/blurb/blurb.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
#!/usr/bin/env python3
"""Command-line tool to manage CPython Misc/NEWS.d entries."""
__version__ = "1.1.0"

##
## blurb version 1.0
## Part of the blurb package.
## Copyright 2015-2018 by Larry Hastings
##
Expand Down Expand Up @@ -62,6 +59,8 @@
import time
import unittest

from . import __version__


#
# This template is the canonical list of acceptable section names!
Expand Down

0 comments on commit 05db92d

Please sign in to comment.