Skip to content
Snippets Groups Projects
Commit 92cfe837 authored by Jakub Ružička's avatar Jakub Ružička
Browse files

Merge branch 'release-0.5.1' into 'master'

pyproject: update requires-python to >=3.6

Closes #105

See merge request !171
parents 6aef5b00 06d10e7c
No related branches found
Tags v0.0.4
1 merge request!171pyproject: update requires-python to >=3.6
Pipeline #128368 passed
# hatchling uses this version when using python3 -m build
# setuptools read this version through setup.py
# scripts/make-archive.sh updates this using dunamai for `apkg make-archive`
__version__ = '0.5.0'
__version__ = '0.5.1'
......@@ -55,8 +55,8 @@ project compat level: 3
current apkg compat level: 4
latest apkg compat level: 4
current apkg version: 0.5.0
latest apkg version: 0.5.0
current apkg version: 0.5.1
latest apkg version: 0.5.1
⚠ project compat level 3 is older than current 4
......
......@@ -16,7 +16,7 @@ and then choose howto install:
apkg needs **Python**.
apkg [0.5.0](news.md#apkg-050) has been tested to work on all Python versions
apkg [0.5.1](news.md#apkg-051) has been tested to work on all Python versions
between **3.6** and **3.12**.
See [apkg Python support](platforms.md#python-support) for detailed information
......
# apkg news
## apkg 0.5.1
Released 2024-06-24
### Fixes
- update `requires-python` to `>=3.6` to enable installation on old systems
- small docs fixes
## apkg 0.5.0
Released 2024-04-03
......
......@@ -65,8 +65,5 @@ apkg.
[arch]: pkgstyles.md#arch
[nix]: pkgstyles.md#nix
[0.5.0]: news.md#050
*[Enterprise Linux]: RHEL and its clones: CentOS, Alma, Rocky, Oracle
......@@ -6,7 +6,7 @@ build-backend = "hatchling.build"
name = "apkg"
description = "cross-distro upstream packaging automation tool"
readme = "README.md"
requires-python = ">=3.7"
requires-python = ">=3.6"
license = {text = "MIT"}
keywords = ["packaging", "devops", "CI", "cli"]
authors = [
......@@ -15,11 +15,13 @@ authors = [
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment