Skip to content

Commit af113ab

Browse files
committed
increase daily print quota by 10, bump version
1 parent d7b4cc1 commit af113ab

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

default.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ in
7777

7878
buildPythonPackage {
7979
pname = "ocflib";
80-
version = "2025-08-28";
80+
version = "2025-10-16";
8181
format = "pyproject";
8282
disabled = pythonOlder "3.7";
8383
src = ./.;

ocflib/printing/quota.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
from ocflib.account.utils import is_in_group
88
from ocflib.infra import mysql
99

10-
WEEKDAY_QUOTA = 20
11-
WEEKEND_QUOTA = 20
10+
WEEKDAY_QUOTA = 30
11+
WEEKEND_QUOTA = 30
1212
SEMESTERLY_QUOTA = 200
1313

1414
# Per BoD decision of 2017-04-24, the rules for making changes to the printing

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "ocflib"
3-
version = "2025.8.30"
3+
version = "2025.10.16"
44
description = "libraries for account and server management"
55
authors = ["Open Computing Facility <[email protected]>"]
66
readme = "README.md"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
with open('.version') as f:
66
VERSION = f.readline().strip()
77
except IOError:
8-
VERSION = '2025.8.28'
8+
VERSION = '2025.10.16'
99

1010
setup(
1111
name='ocflib',

0 commit comments

Comments
 (0)