Skip to content

Commit

Permalink
0.7.4 - Update Python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
vkottler committed Nov 21, 2024
1 parent c92a576 commit cecbd38
Show file tree
Hide file tree
Showing 8 changed files with 19 additions and 19 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ jobs:
strategy:
matrix:
python-version:
- "3.11"
- "3.12"
- "3.13"
system:
- ubuntu-latest
- macos-latest
Expand Down Expand Up @@ -77,7 +77,7 @@ jobs:
- run: |
mk python-release owner=vkottler \
repo=svgen version=0.7.3
repo=svgen version=0.7.4
if: |
matrix.python-version == '3.12'
&& matrix.system == 'ubuntu-latest'
Expand Down
6 changes: 3 additions & 3 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=29bb10f1b4ff2e59a4494421f8b4e3bd
hash=2e90b73ad112eb8760c0d2a8a9275a9a
=====================================
-->

# svgen ([0.7.3](https://pypi.org/project/svgen/))
# svgen ([0.7.4](https://pypi.org/project/svgen/))

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

This package is tested with the following Python minor versions:

* [`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 config
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.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: 0
minor: 7
patch: 3
patch: 4
entry: svgen
10 changes: 5 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,19 @@ build-backend = "setuptools.build_meta:__legacy__"

[project]
name = "svgen"
version = "0.7.3"
version = "0.7.4"
description = "A tool for working with scalable vector graphics."
readme = "README.md"
requires-python = ">=3.11"
requires-python = ">=3.12"
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 = [
"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 Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# =====================================
# generator=datazen
# version=3.1.4
# hash=6d153dc423cef1450e9b2cd28628b27c
# hash=2c50dc726c2b9ac8def8ad8b6a415bc8
# =====================================

"""
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,8 +28,8 @@
"version": VERSION,
"description": DESCRIPTION,
"versions": [
"3.11",
"3.12",
"3.13",
],
}
setup(
Expand Down
4 changes: 2 additions & 2 deletions svgen/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# =====================================
# generator=datazen
# version=3.1.4
# hash=4a9d6524eb23c9bce3184c85e0a13fc3
# hash=c4e94d744b865ee8bfb68a6dcb95bc29
# =====================================

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

DESCRIPTION = "A tool for working with scalable vector graphics."
PKG_NAME = "svgen"
VERSION = "0.7.3"
VERSION = "0.7.4"

0 comments on commit cecbd38

Please sign in to comment.