Skip to content

Commit 3868733

Browse files
authored
Minor cleanup (#81)
* Add clean command to Makefile * Fix date in CHANGE.txt * Add packaging to build_require
1 parent b436316 commit 3868733

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

CHANGE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ LabKey Python Client API News
55
What's New in the LabKey 3.4.0 package
66
==============================
77

8-
*Release date: TBD*
8+
*Release date: 04/22/2025*
99
- Add "valueExpression" to PropertyDescriptor class
1010
- needed for creating/adding domain calculated fields
1111
- update Domain class to append calculatedFields to the domain's fields

Makefile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,8 @@ install:
1717
.PHONY: uninstall
1818
uninstall:
1919
pip uninstall -y labkey
20+
21+
.PHONY: clean
22+
clean:
23+
rm -rf ./dist/
24+
rm -rf ./labkey.egg-info

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434

3535
tests_require = ["pytest", "requests", "mock", "pytest-cov"]
3636
dev_require = ["pytest", "requests", "mock", "pytest-cov", "black"]
37-
build_require = ["setuptools", "build", "twine", "wheel"]
37+
build_require = ["setuptools", "build", "twine", "wheel", "packaging"]
3838

3939
setup(
4040
name="labkey",

0 commit comments

Comments
 (0)