Skip to content

Commit

Permalink
2.0.5 - Add 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
vkottler committed Oct 26, 2024
1 parent 3ba3873 commit ce61e90
Show file tree
Hide file tree
Showing 14 changed files with 26 additions and 29 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,8 @@ jobs:
strategy:
matrix:
python-version:
- "3.10"
- "3.11"
- "3.12"
- "3.13"
system:
- ubuntu-latest
- macos-latest
Expand Down Expand Up @@ -74,7 +73,7 @@ jobs:
- run: |
mk python-release owner=vkottler \
repo=vmklib version=2.0.4
repo=vmklib version=2.0.5
if: |
matrix.python-version == '3.12'
&& matrix.system == 'ubuntu-latest'
Expand Down
1 change: 1 addition & 0 deletions .pylintrc
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
[DESIGN]
max-args=6
max-positional-arguments=6

[MESSAGES CONTROL]
disable=duplicate-code
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2024 Vaughn Kottler
Copyright (c) 2024 Libre Embedded

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
=====================================
generator=datazen
version=3.1.4
hash=43e9f25280d496418215c22cd0c49c7f
hash=6b34cd9966ea5866b40e45651045cb02
=====================================
-->

# vmklib ([2.0.4](https://pypi.org/project/vmklib/))
# vmklib ([2.0.5](https://pypi.org/project/vmklib/))

[![python](https://img.shields.io/pypi/pyversions/vmklib.svg)](https://pypi.org/project/vmklib/)
![Build Status](https://github.com/vkottler/vmklib/workflows/Python%20Package/badge.svg)
Expand All @@ -29,9 +29,8 @@

This package is tested with the following Python minor versions:

* [`python3.10`](https://docs.python.org/3.10/)
* [`python3.11`](https://docs.python.org/3.11/)
* [`python3.12`](https://docs.python.org/3.12/)
* [`python3.13`](https://docs.python.org/3.13/)

## Platform Support

Expand Down
2 changes: 1 addition & 1 deletion local/configs/license.yaml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
name: "Vaughn Kottler"
name: "Libre Embedded"
2 changes: 1 addition & 1 deletion local/configs/package.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description: "Simplify project workflows by standardizing use of GNU Make."
entry: {{entry}}

requirements:
- vcorelib>=2.4.0
- vcorelib>=3.4.3

# Adding this dependency simplifies project-specific workflow integrations
# that leverage interfaces from this package.
Expand Down
4 changes: 2 additions & 2 deletions local/configs/python.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
---
author_info:
name: "Vaughn Kottler"
email: "vaughnkottler@gmail.com"
email: "vaughn@libre-embedded.com"
username: "vkottler"

versions: ["3.10", "3.11", "3.12"]
versions: ["3.12", "3.13"]

systems:
- macos-latest
Expand Down
2 changes: 1 addition & 1 deletion local/variables/package.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
major: 2
minor: 0
patch: 4
patch: 5
entry: mk
13 changes: 6 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,27 +4,26 @@ build-backend = "setuptools.build_meta:__legacy__"

[project]
name = "vmklib"
version = "2.0.4"
version = "2.0.5"
description = "Simplify project workflows by standardizing use of GNU Make."
readme = "README.md"
requires-python = ">=3.10"
requires-python = ">=3.12"
license = {file = "LICENSE"}
keywords = [
"workflow",
"tool",
"make"
]
authors = [
{name = "Vaughn Kottler", email = "vaughnkottler@gmail.com"}
{name = "Vaughn Kottler", email = "vaughn@libre-embedded.com"}
]
maintainers = [
{name = "Vaughn Kottler", email = "vaughnkottler@gmail.com"}
{name = "Vaughn Kottler", email = "vaughn@libre-embedded.com"}
]
classifiers = [
"Topic :: Software Development :: Build Tools",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
Expand All @@ -44,7 +43,7 @@ test = [
"isort",
"yamllint",
"yambs",
"vmklib",
"vmklib>=2.0.3",
"sphinx",
"sphinx-book-theme",
"pytest-asyncio",
Expand Down
7 changes: 3 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# =====================================
# generator=datazen
# version=3.1.4
# hash=43286ed57052c2548361d2dcdd062187
# hash=d9c5aeff539a1d3629104db47fe763ca
# =====================================

"""
Expand All @@ -19,7 +19,7 @@

author_info = {
"name": "Vaughn Kottler",
"email": "vaughnkottler@gmail.com",
"email": "vaughn@libre-embedded.com",
"username": "vkottler",
}
pkg_info = {
Expand All @@ -28,9 +28,8 @@
"version": VERSION,
"description": DESCRIPTION,
"versions": [
"3.10",
"3.11",
"3.12",
"3.13",
],
}
setup(
Expand Down
4 changes: 2 additions & 2 deletions vmklib/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# =====================================
# generator=datazen
# version=3.1.4
# hash=54451b981a0a3faef0b7641dd6877695
# hash=b8a4e4a833c75fdb1b14c7f0d0c58dbf
# =====================================

"""
Expand All @@ -10,4 +10,4 @@

DESCRIPTION = "Simplify project workflows by standardizing use of GNU Make."
PKG_NAME = "vmklib"
VERSION = "2.0.4"
VERSION = "2.0.5"
2 changes: 1 addition & 1 deletion vmklib/dev_requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ mypy
isort
yamllint
yambs
vmklib
vmklib>=2.0.3
sphinx
sphinx-book-theme
pytest-asyncio
Expand Down
2 changes: 1 addition & 1 deletion vmklib/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
vcorelib>=2.4.0
vcorelib>=3.4.3
experimental-lowqa

0 comments on commit ce61e90

Please sign in to comment.