Skip to content

Commit cfd2da3

Browse files
authored
Merge pull request #453 from devsetgo/dev
moving to calendar versioning
2 parents a4d25ba + b8d5ac0 commit cfd2da3

File tree

12 files changed

+637
-686
lines changed

12 files changed

+637
-686
lines changed

.bumpversion.cfg

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
1-
[bumpversion]
2-
current_version = 0.14.4
3-
commit = False
4-
tag = False
5-
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(-(?P<release>[a-z]+)(?P<num>\d+))?
6-
serialize =
7-
{major}.{minor}.{patch}-{release}{num}
8-
{major}.{minor}.{patch}
1+
# [bumpversion]
2+
# current_version = 0.14.4
3+
# commit = False
4+
# tag = False
5+
# parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(-(?P<release>[a-z]+)(?P<num>\d+))?
6+
# serialize =
7+
# {major}.{minor}.{patch}-{release}{num}
8+
# {major}.{minor}.{patch}
99

10-
[bumpversion:part:release]
11-
optional_value = alpha
12-
values =
13-
alpha
14-
beta
15-
pre-release
10+
# [bumpversion:part:release]
11+
# optional_value = alpha
12+
# values =
13+
# alpha
14+
# beta
15+
# pre-release
1616

17-
[bumpversion:file:pyproject.toml]
17+
# [bumpversion:file:pyproject.toml]
1818

19-
[bumpversion:file:dsg_lib/__init__.py]
19+
# [bumpversion:file:dsg_lib/__init__.py]

.github/workflows/testing.yml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
max-parallel: 10
2525
matrix:
2626
os: [ubuntu-latest, windows-latest]
27-
python-version: ["3.12","3.9", "3.10", "3.11"]
27+
python-version: ["3.12","3.11", "3.10", "3.9"]
2828
steps:
2929
- uses: actions/checkout@v4
3030
- name: Wait for PostgreSQL to become ready
@@ -39,10 +39,15 @@ jobs:
3939
uses: actions/setup-python@v5
4040
with:
4141
python-version: ${{ matrix.python-version }}
42+
- name: Clear pip cache
43+
run: pip cache purge
44+
4245
- name: Install dependencies
43-
run: |
44-
python -m pip install --upgrade pip
45-
pip install -r requirements.txt --use-deprecated=legacy-resolver
46+
run: pip install --no-cache-dir -r requirements.txt
47+
# - name: Install dependencies
48+
# run: |
49+
# python -m pip install --upgrade pip
50+
# pip install -r requirements.txt --use-deprecated=legacy-resolver
4651
- name: Test with pytest
4752
run: |
4853
pip install pytest

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ Support Python Versions
99

1010
![Static Badge](https://img.shields.io/badge/Python-3.12%20%7C%203.11%20%7C%203.10%20%7C%203.9-blue)
1111
[![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff)
12+
[![Coverage Status](./coverage-badge.svg?dummy=8484744)](./reports/coverage/index.html)
13+
[![Tests Status](./tests-badge.svg?dummy=8484744)](./reports/coverage/index.html)
1214

1315
CI/CD Pipeline:
1416

coverage-badge.svg

Lines changed: 1 addition & 22 deletions
Loading

0 commit comments

Comments
 (0)