Skip to content

Commit 64ce895

Browse files
committed
2 parents 4e82b27 + 4e9a54f commit 64ce895

8 files changed

Lines changed: 15 additions & 15 deletions

File tree

PyPi/CodeProject.AI-SDK/build.bat

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
:: This file builds the package
22

3-
if exist dist del /s /q dist
3+
rd /s /q dist
4+
rd /s /q build
45

5-
robocopy /e "..\..\..\CodeProject.AI-Server-Dev\src\SDK\Python\src\codeproject_ai_sdk\ " ".\build\lib\codeproject_ai_sdk " > nul
6+
:: robocopy is doing something strange
7+
8+
robocopy /e ..\..\..\CodeProject.AI-Server-Dev\src\SDK\Python\src\codeproject_ai_sdk\ .\build\lib\codeproject_ai_sdk
9+
::rd /s /q build\lib\utils
610

711
python -m build --wheel

PyPi/CodeProject.AI-SDK/codeproject_ai_sdk.egg-info/PKG-INFO

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Metadata-Version: 2.1
22
Name: codeproject-ai-sdk
3-
Version: 0.0.13
3+
Version: 0.0.20
44
Summary: Python SDK for writing Modules for CodeProject AI Server
55
Author: Chris Maunder, Matthew Dennis
66
License: SSPL

PyPi/CodeProject.AI-SDK/codeproject_ai_sdk.egg-info/SOURCES.txt

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
pyproject.toml
22
readme.md
33
setup.cfg
4-
./build/lib/codeproject_ai_sdk/utils/__init__.py
5-
./build/lib/codeproject_ai_sdk/utils/cpuinfo.py
6-
./build/lib/codeproject_ai_sdk/utils/environment_check.py
7-
./build/lib/codeproject_ai_sdk/utils/image_utils.py
84
codeproject_ai_sdk.egg-info/PKG-INFO
95
codeproject_ai_sdk.egg-info/SOURCES.txt
106
codeproject_ai_sdk.egg-info/dependency_links.txt
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
utils
1+
codeproject_ai_sdk

PyPi/CodeProject.AI-SDK/pyproject.toml

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

22
[project]
33
name = "codeproject-ai-sdk"
4-
version = "0.0.13"
4+
version = "0.0.20"
55
description = "Python SDK for writing Modules for CodeProject AI Server"
66
authors = [
77
{name = "Chris Maunder"},

PyPi/CodeProject.AI-SDK/setup.cfg

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
[options]
22
package_dir =
3-
=.\build\lib\codeproject_ai_sdk
4-
packages = find:
3+
=./build/lib
4+
packages = codeproject_ai_sdk
55

66
[options.packages.find]
7-
where = .\build\lib\codeproject_ai_sdk
7+
where = ./build/lib
88

99
[egg_info]
1010
egg_base = .

Windows/Inno Setup/installer-template.iss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
; Define this if you wish to use the script in standalone (not script generated)
44
; mode. This will use hardcoded values and only work for x64, not arm64
55
#define STANDALONE False
6-
#define DO_SIGNING False
6+
#define DO_SIGNING True
77

88
; Define some constants to make thing easier
99
#if STANDALONE == True

Windows/Inno Setup/installer.iss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
; Define this if you wish to use the script in standalone (not script generated)
44
; mode. This will use hardcoded values and only work for x64, not arm64
55
#define STANDALONE False
6-
#define DO_SIGNING False
6+
#define DO_SIGNING True
77

88
; Define some constants to make thing easier
99
#if STANDALONE == True
@@ -15,7 +15,7 @@
1515
#define ServerRepoRelPath "..\..\..\CodeProject.AI-Server-Dev"
1616
#else
1717
#define AppName "CodeProject.AI Server"
18-
#define AppVersion "2.8.0"
18+
#define AppVersion "2.8.1"
1919
#define DotNetVersion "8.0"
2020
#define DotNetHostingVersion "8.0.6"
2121
#define SetupExeName "CodeProject.AI Server-win-x64"

0 commit comments

Comments
 (0)