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

1.5.1 - Migrate to vcorelib function #25

Merged
merged 1 commit into from
May 24, 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
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