Skip to content

Commit

Permalink
Merge pull request #25 from vkottler/dev/1.5.1
Browse files Browse the repository at this point in the history
1.5.1 - Migrate to vcorelib function
  • Loading branch information
vkottler authored May 24, 2023
2 parents 902ddb7 + ce143b8 commit 62b56cd
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 15 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
=====================================
generator=datazen
version=3.1.2
hash=8bb20a7e710e9071d4cf11a5f065e18e
hash=744ace272d6f05ecee63ea172bf1a6bd
=====================================
-->

# rcmpy ([1.5.0](https://pypi.org/project/rcmpy/))
# rcmpy ([1.5.1](https://pypi.org/project/rcmpy/))

[![python](https://img.shields.io/pypi/pyversions/rcmpy.svg)](https://pypi.org/project/rcmpy/)
![Build Status](https://github.com/vkottler/rcmpy/workflows/Python%20Package/badge.svg)
Expand Down
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: A configuration-file management system.
entry: {{entry}}
requirements:
- datazen
- vcorelib>=1.6.5
- vcorelib>=1.6.6
dev_requirements:
- setuptools-wrapper
- types-setuptools
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: 1
minor: 5
patch: 0
patch: 1
entry: rcmpy
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta:__legacy__"

[project]
name = "rcmpy"
version = "1.5.0"
version = "1.5.1"
description = "A configuration-file management system."
readme = "README.md"
requires-python = ">=3.7"
Expand Down
4 changes: 2 additions & 2 deletions rcmpy/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# =====================================
# generator=datazen
# version=3.1.2
# hash=01f75a43f918c56d5ba1f831c029be03
# hash=aeee235f75b870ea235a1776f93f3717
# =====================================

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

DESCRIPTION = "A configuration-file management system."
PKG_NAME = "rcmpy"
VERSION = "1.5.0"
VERSION = "1.5.1"
8 changes: 1 addition & 7 deletions rcmpy/config/file.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,7 @@

# third-party
from vcorelib.logging import LoggerType
from vcorelib.paths import rel


def set_exec_flags(path: Path) -> None:
"""Set the executable bits, but respect the 'read' bits."""
mode = path.stat().st_mode
path.chmod(mode | ((mode & 0o444) >> 2))
from vcorelib.paths import rel, set_exec_flags


@dataclass
Expand Down
2 changes: 1 addition & 1 deletion rcmpy/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
datazen
vcorelib>=1.6.5
vcorelib>=1.6.6

0 comments on commit 62b56cd

Please sign in to comment.