Skip to content

Commit 0fba9b2

Browse files
committed
Merge branch 'dev'
2 parents fb2ff5c + 3602bc1 commit 0fba9b2

File tree

13 files changed

+80
-52
lines changed

13 files changed

+80
-52
lines changed

.copier-answers.yml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,21 @@
11
# Changes here will be overwritten by Copier
2-
_commit: 8d1a17d
2+
_commit: a01a11e
33
_src_path: https://codeberg.org/Fresh2dev/copier-f2dv-project.git
4-
author_email: hello@Fresh2.dev
4+
author_email: hello@f2dv.com
55
author_name: Donald Mellenbruch
66
ci_domain_name: lokalhost.net
7-
docs_url: https://www.Fresh2.dev/code/r/ppqueue/i
8-
funding_url: https://www.Fresh2.dev/funding
9-
home_page: https://www.Fresh2.dev
7+
docs_url: https://www.f2dv.com/r/ppqueue
8+
funding_url: https://www.f2dv.com/fund
9+
home_domain: f2dv.com
10+
home_page: https://www.f2dv.com
1011
is_minimal: false
1112
is_python: true
1213
license_type: MIT
1314
package_name: ppqueue
14-
project_description: Parallel Process Queue (ppqueue) for Python
15+
project_description: A Parallel Process Queue for Python.
1516
project_name: ppqueue
1617
python_version: '3.8'
17-
repo_mirror: https://www.Fresh2.dev/code/r/ppqueue
18+
repo_mirror: https://www.f2dv.com/r/ppqueue
1819
repo_name: fresh2dev/ppqueue
1920
repo_owner: fresh2dev
2021
repo_url: https://www.github.com/fresh2dev/ppqueue

.dockerignore

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,16 @@
22

33
**/secrets
44
!**/*.keep
5-
**/*.tmp/build
5+
**/*.tmp
6+
**/.vscode
7+
**/.DS_store
8+
/build
9+
**/.ipynb_checkpoints
610
**/.coverage
711
**/.hypothesis
812
**/.tox
913
**/.idea
10-
**/.vscode
1114
**/*.egg-info
1215
**/.mypy_cache
1316
**/__pycache__
14-
**/.pytest_cache
17+
**/.pytest_cache

.drone.yml

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,11 @@ data:
55
["lokalhost.net", "fresh2.dev"]
66
domainTriggers: >-
77
{
8-
"lokalhost.net": {},
8+
"lokalhost.net": {
9+
"event": {"exclude": ["promote"]}
10+
},
911
"fresh2.dev": {
10-
"ref": ["refs/heads/main", "refs/tags/*"]
12+
"event": ["promote", "tag"]
1113
}
1214
}
1315
domainClusterMap: >-
@@ -26,7 +28,7 @@ data:
2628
[
2729
{
2830
"name": "py-test",
29-
"image": "registry.lokalhost.net/fresh2dev/mykefiles:5de40c3",
31+
"image": "registry.lokalhost.net/fresh2dev/mykefiles:a43f1d5",
3032
"environment": {
3133
"PIP_CONF": {"from_secret": "PIP_CONF"},
3234
"MYKE_MODULE": "mykefiles.python"
@@ -46,7 +48,7 @@ data:
4648
[
4749
{
4850
"name": "py-build-package",
49-
"image": "registry.lokalhost.net/fresh2dev/mykefiles:5de40c3",
51+
"image": "registry.lokalhost.net/fresh2dev/mykefiles:a43f1d5",
5052
"environment": {
5153
"PYPI_CREDS": {"from_secret": "PYPI_CREDS"},
5254
"PIP_CONF": {"from_secret": "PIP_CONF"},
@@ -62,7 +64,7 @@ data:
6264
},
6365
{
6466
"name": "py-publish-sandbox",
65-
"image": "registry.lokalhost.net/fresh2dev/mykefiles:5de40c3",
67+
"image": "registry.lokalhost.net/fresh2dev/mykefiles:a43f1d5",
6668
"environment": {
6769
"PYPI_CREDS": {"from_secret": "PYPI_CREDS"},
6870
"PIP_CONF": {"from_secret": "PIP_CONF"},
@@ -78,7 +80,7 @@ data:
7880
},
7981
{
8082
"name": "py-publish-dev",
81-
"image": "registry.lokalhost.net/fresh2dev/mykefiles:5de40c3",
83+
"image": "registry.lokalhost.net/fresh2dev/mykefiles:a43f1d5",
8284
"environment": {
8385
"PYPI_CREDS": {"from_secret": "PYPI_CREDS"},
8486
"PIP_CONF": {"from_secret": "PIP_CONF"},
@@ -96,7 +98,7 @@ data:
9698
},
9799
{
98100
"name": "py-publish-test",
99-
"image": "registry.lokalhost.net/fresh2dev/mykefiles:5de40c3",
101+
"image": "registry.lokalhost.net/fresh2dev/mykefiles:a43f1d5",
100102
"environment": {
101103
"PYPI_CREDS": {"from_secret": "PYPI_CREDS"},
102104
"PIP_CONF": {"from_secret": "PIP_CONF"},
@@ -114,7 +116,7 @@ data:
114116
},
115117
{
116118
"name": "py-publish-prod",
117-
"image": "registry.lokalhost.net/fresh2dev/mykefiles:5de40c3",
119+
"image": "registry.lokalhost.net/fresh2dev/mykefiles:a43f1d5",
118120
"environment": {
119121
"PYPI_CREDS": {"from_secret": "PYPI_CREDS"},
120122
"PIP_CONF": {"from_secret": "PIP_CONF"},

.github/FUNDING.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
custom: ["https://www.f2dv.com/fund", "https://www.f2dv.com/paypal"]

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
**/secrets
22
!**/*.keep
33
**/*.tmp
4+
**/.vscode
5+
**/.DS_store
46
.python-version
57

68
/public
@@ -9,12 +11,12 @@
911
/dist
1012
/build
1113

14+
*.pyc
1215
**/.ipynb_checkpoints
1316
**/.coverage
1417
**/.hypothesis
1518
**/.tox
1619
**/.idea
17-
**/.vscode
1820
**/*.egg-info
1921
**/.mypy_cache
2022
**/__pycache__

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
## Unreleased
3+
## 0.3.0
44

55
- rename from `ezpq` to `ppqueue`
66
- replaced `queue.get` with `queue.dequeue` / `queue.pop`

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
ARG HB_IMAGE_REGISTRY=docker.io
22
FROM ${HB_IMAGE_REGISTRY}/python:3.10.10-slim-bullseye as build
33
LABEL org.opencontainers.image.source=https://www.github.com/fresh2dev/ppqueue
4-
LABEL org.opencontainers.image.description="Parallel Process Queue (ppqueue) for Python"
4+
LABEL org.opencontainers.image.description="A Parallel Process Queue for Python."
55
LABEL org.opencontainers.image.licenses=MIT
66
RUN apt-get update && apt-get install --upgrade -y build-essential git
77
WORKDIR /app

Dockerfile-docs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
ARG HB_IMAGE_REGISTRY=docker.io
22
FROM ${HB_IMAGE_REGISTRY}/nginx:1
33
LABEL org.opencontainers.image.source=https://www.github.com/fresh2dev/ppqueue
4-
LABEL org.opencontainers.image.description="Parallel Process Queue (ppqueue) for Python"
4+
LABEL org.opencontainers.image.description="A Parallel Process Queue for Python."
55
LABEL org.opencontainers.image.licenses=MIT
66
ARG CONTENT_PATH=public
77
COPY $CONTENT_PATH /usr/share/nginx/html

README.md

Lines changed: 24 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,28 @@
11
# ppqueue
22

3-
> Parallel Process Queue (ppqueue) for Python
4-
5-
> Formerly known as `ezpq`
6-
7-
| Links | |
8-
|---------------|------------------------|
9-
| Code Repo | https://www.github.com/fresh2dev/ppqueue |
10-
| Mirror Repo | https://www.Fresh2.dev/code/r/ppqueue |
11-
| Documentation | https://www.Fresh2.dev/code/r/ppqueue/i |
12-
| Changelog | https://www.Fresh2.dev/code/r/ppqueue/i/changelog |
13-
| License | https://www.Fresh2.dev/code/r/ppqueue/i/license |
14-
| Funding | https://www.Fresh2.dev/funding |
15-
16-
[![GitHub release (latest SemVer)](https://img.shields.io/github/v/release/fresh2dev/ppqueue?color=blue&style=for-the-badge)](https://www.github.com/fresh2dev/ppqueue/releases)
17-
[![GitHub Release Date](https://img.shields.io/github/release-date/fresh2dev/ppqueue?color=blue&style=for-the-badge)](https://www.github.com/fresh2dev/ppqueue/releases)
18-
[![License](https://img.shields.io/github/license/fresh2dev/ppqueue?color=blue&style=for-the-badge)](https://www.Fresh2.dev/code/r/ppqueue/i/license)
3+
> A Parallel Process Queue for Python.
4+
5+
| Links | |
6+
|---------------|------------------------------------------|
7+
| Code Repo | https://www.github.com/fresh2dev/ppqueue |
8+
| Mirror Repo | https://www.f2dv.com/r/ppqueue |
9+
| Documentation | https://www.f2dv.com/r/ppqueue |
10+
| Changelog | https://www.f2dv.com/r/ppqueue/changelog |
11+
| License | https://www.f2dv.com/r/ppqueue/license |
12+
| Funding | https://www.f2dv.com/fund |
13+
14+
[![GitHub release (latest SemVer)](https://img.shields.io/github/v/release/fresh2dev/ppqueue?color=blue&style=for-the-badge)](https://www.f2dv.com/r/ppqueue/changelog)
15+
[![GitHub Release Date](https://img.shields.io/github/release-date/fresh2dev/ppqueue?color=blue&style=for-the-badge)](https://www.f2dv.com/r/ppqueue/changelog)
16+
[![License](https://img.shields.io/github/license/fresh2dev/ppqueue?color=blue&style=for-the-badge)](https://www.f2dv.com/r/ppqueue/license)
17+
[![GitHub Repo stars](https://img.shields.io/github/stars/fresh2dev/ppqueue?color=blue&style=for-the-badge)](https://star-history.com/#fresh2dev/ppqueue&Date)
1918
[![GitHub issues](https://img.shields.io/github/issues-raw/fresh2dev/ppqueue?color=blue&style=for-the-badge)](https://www.github.com/fresh2dev/ppqueue/issues)
2019
[![GitHub pull requests](https://img.shields.io/github/issues-pr-raw/fresh2dev/ppqueue?color=blue&style=for-the-badge)](https://www.github.com/fresh2dev/ppqueue/pulls)
21-
[![GitHub Repo stars](https://img.shields.io/github/stars/fresh2dev/ppqueue?color=blue&style=for-the-badge)](https://star-history.com/#fresh2dev/ppqueue&Date)
2220
[![PyPI - Downloads](https://img.shields.io/pypi/dm/ppqueue?color=blue&style=for-the-badge)](https://pypi.org/project/ppqueue)
23-
[![Docs Website](https://img.shields.io/website?down_message=unavailable&label=docs&style=for-the-badge&up_color=blue&up_message=available&url=https://www.Fresh2.dev/code/r/ppqueue/i)](https://www.Fresh2.dev/code/r/ppqueue/i)
24-
[![Coverage Website](https://img.shields.io/website?down_message=unavailable&label=coverage&style=for-the-badge&up_color=blue&up_message=available&url=https://www.Fresh2.dev/code/r/ppqueue/i/tests/coverage)](https://www.Fresh2.dev/code/r/ppqueue/i/tests/coverage)
25-
[![Funding](https://img.shields.io/badge/funding-%24%24%24-blue?style=for-the-badge)](https://www.Fresh2.dev/funding)
21+
[![Docker Pulls](https://img.shields.io/docker/pulls/fresh2dev/ppqueue?color=blue&style=for-the-badge)](https://hub.docker.com/r/fresh2dev/ppqueue)
22+
[![Changelog](https://img.shields.io/website?down_message=unavailable&label=docs&style=for-the-badge&up_color=blue&up_message=available&url=https://www.f2dv.com/r/ppqueue/changelog)](https://www.f2dv.com/r/ppqueue/changelog)
23+
[![Funding](https://img.shields.io/badge/funding-%24%24%24-blue?style=for-the-badge)](https://www.f2dv.com/fund)
2624

25+
---
2726

2827
## Overview
2928

@@ -54,8 +53,12 @@ And more examples are provided in the reference docs:
5453

5554
https://www.f2dv.com/code/r/ppqueue/i/reference/
5655

56+
## Support
57+
58+
If this project delivers value to you, please [provide feedback](https://www.github.com/fresh2dev/ppqueue/issues), code contributions, and/or [funding](https://www.f2dv.com/fund).
59+
5760
---
5861

5962
*Brought to you by...*
6063

61-
<a href="https://www.fresh2.dev"><img src="https://img.fresh2.dev/fresh2dev.svg" style="filter: invert(50%);"></img></a>
64+
<a href="https://www.f2dv.com"><img src="https://img.fresh2.dev/fresh2dev.svg" style="filter: invert(50%);"></img></a>

config/mkdocs.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
site_name: "ppqueue"
22
site_description: "ppqueue Docs"
3-
site_url: !ENV [MKDOCS_SITE_URL, "https://www.Fresh2.dev/code/r/ppqueue/i"]
3+
site_url: !ENV [MKDOCS_SITE_URL, "https://www.f2dv.com/r/ppqueue"]
44
repo_url: "https://www.github.com/fresh2dev/ppqueue"
55
repo_name: "fresh2dev/ppqueue"
66
edit_uri: "edit/main/docs"
@@ -26,6 +26,10 @@ nav:
2626
- Changelog: changelog.md
2727
- License: license.md
2828
- Discussion: comments.md
29+
- '<- f2dv.com':
30+
- '/home': 'https://www.f2dv.com'
31+
- '/code': 'https://www.f2dv.com/projects'
32+
- '/fund': 'https://www.f2dv.com/fund'
2933

3034
watch:
3135
- ../src

0 commit comments

Comments
 (0)