Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix alias unresolvable warning #82

Merged
merged 2 commits into from
Nov 18, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# lbuild: generic, modular code generation in Python 3

The Library Builder (pronounced *lbuild*) is a BSD licensed [Python 3.5 tool][python]
The Library Builder (pronounced *lbuild*) is a BSD licensed [Python 3 tool][python]
for describing repositories containing modules which can copy or generate a set
of files based on the user provided data and options.

Expand Down
2 changes: 1 addition & 1 deletion lbuild/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

from lbuild.api import Builder

__version__ = '1.21.7'
__version__ = '1.21.8'


class InitAction:
Expand Down
2 changes: 1 addition & 1 deletion lbuild/node.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ def _get_node(self, key, check_dependencies=False, raise_on_fail=True):
try:
node = context_resolver._get_node(node._destination)
warning += node.description + "\n"
except LbuildException as e:
except le.LbuildException as e:
LOGGER.warning(warning)
raise e
if alias._print_warning:
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
setup(
name = "lbuild",
version = __version__,
python_requires=">=3.5.0",
python_requires=">=3.8.0",
entry_points={
"console_scripts": [
"lbuild = lbuild.main:main",
Expand Down Expand Up @@ -58,7 +58,6 @@
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Topic :: Software Development",
"Topic :: Software Development :: Code Generators",
"Topic :: Software Development :: Embedded Systems",
Expand Down
Loading