Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dev update libraries #19

Merged
merged 31 commits into from
Sep 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
a5b7c23
update ComfyUI commit
wl-zhao Sep 18, 2024
ff13d73
update
wl-zhao Sep 18, 2024
ccb15c3
add requirements.txt
wl-zhao Sep 18, 2024
6ce7977
remove useless package
wl-zhao Sep 19, 2024
8942146
re-organize packages
wl-zhao Sep 19, 2024
1e7eab3
fix folder path error
wl-zhao Sep 19, 2024
3044b2a
add x-flux-comfyui
wl-zhao Sep 19, 2024
e0ce98f
add openart top-30 comfyui nodes
wl-zhao Sep 19, 2024
e367146
update requirements.txt
wl-zhao Sep 19, 2024
eabf4a8
Merge branch 'main' of github.com-zwl:myshell-ai/ShellAgent into dev_…
wl-zhao Sep 19, 2024
70ecda8
update KJ version
wl-zhao Sep 19, 2024
04c0292
update environment
wl-zhao Sep 19, 2024
e394518
update environment
wl-zhao Sep 19, 2024
38496d8
rm pdb
wl-zhao Sep 19, 2024
9f561b3
update environment and fix bug
wl-zhao Sep 20, 2024
9aae1b4
support cpu
wl-zhao Sep 20, 2024
8e77aa2
support ComfyUI-Gemini and ComfyUI-Marigold
wl-zhao Sep 20, 2024
6763d44
fix merge conflict
wl-zhao Sep 20, 2024
2a4b65e
avoid conflict nodes, add QualityOfLifeSuit
wl-zhao Sep 20, 2024
060f8ae
avoid conflict nodes, add QualityOfLifeSuit
wl-zhao Sep 20, 2024
94ae1f5
fix insightface display bug
wl-zhao Sep 20, 2024
06b4218
rm useless files
wl-zhao Sep 20, 2024
5bee654
Merge branch 'main' of github.com-zwl:myshell-ai/ShellAgent into dev_…
wl-zhao Sep 20, 2024
9b3119b
chat bug fix
wl-zhao Sep 20, 2024
0b8afa0
Merge branch 'main' of github.com:myshell-ai/ShellAgent into dev_upda…
yuxumin Sep 20, 2024
802dac4
fix CrysTools bug
wl-zhao Sep 20, 2024
3656db7
update workflow for package release
yuxumin Sep 20, 2024
e9e1996
Merge branch 'dev_update_libraries' of github.com:myshell-ai/ShellAge…
yuxumin Sep 20, 2024
2db78b8
Rename stable-release.yml to stable-release.yaml
yuxumin Sep 20, 2024
fce8a92
rename the package workflow
yuxumin Sep 20, 2024
134914c
Merge branch 'dev_update_libraries' of github.com:myshell-ai/ShellAge…
yuxumin Sep 20, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file not shown.
148 changes: 148 additions & 0 deletions .ci/python_dependencies_wins/include/Python.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,148 @@
#ifndef Py_PYTHON_H
#define Py_PYTHON_H
/* Since this is a "meta-include" file, no #ifdef __cplusplus / extern "C" { */

/* Include nearly all Python header files */

#include "patchlevel.h"
#include "pyconfig.h"
#include "pymacconfig.h"

#include <limits.h>

#ifndef UCHAR_MAX
#error "Something's broken. UCHAR_MAX should be defined in limits.h."
#endif

#if UCHAR_MAX != 255
#error "Python's source code assumes C's unsigned char is an 8-bit type."
#endif

#if defined(__sgi) && !defined(_SGI_MP_SOURCE)
#define _SGI_MP_SOURCE
#endif

#include <stdio.h>
#ifndef NULL
# error "Python.h requires that stdio.h define NULL."
#endif

#include <string.h>
#ifdef HAVE_ERRNO_H
#include <errno.h>
#endif
#include <stdlib.h>
#ifndef MS_WINDOWS
#include <unistd.h>
#endif

/* For size_t? */
#ifdef HAVE_STDDEF_H
#include <stddef.h>
#endif

/* CAUTION: Build setups should ensure that NDEBUG is defined on the
* compiler command line when building Python in release mode; else
* assert() calls won't be removed.
*/
#include <assert.h>

#include "pyport.h"
#include "pymacro.h"

/* A convenient way for code to know if sanitizers are enabled. */
#if defined(__has_feature)
# if __has_feature(memory_sanitizer)
# if !defined(_Py_MEMORY_SANITIZER)
# define _Py_MEMORY_SANITIZER
# endif
# endif
# if __has_feature(address_sanitizer)
# if !defined(_Py_ADDRESS_SANITIZER)
# define _Py_ADDRESS_SANITIZER
# endif
# endif
#elif defined(__GNUC__)
# if defined(__SANITIZE_ADDRESS__)
# define _Py_ADDRESS_SANITIZER
# endif
#endif

#include "pymath.h"
#include "pymem.h"

#include "object.h"
#include "objimpl.h"
#include "typeslots.h"
#include "pyhash.h"

#include "cpython/pydebug.h"

#include "bytearrayobject.h"
#include "bytesobject.h"
#include "unicodeobject.h"
#include "longobject.h"
#include "longintrepr.h"
#include "boolobject.h"
#include "floatobject.h"
#include "complexobject.h"
#include "rangeobject.h"
#include "memoryobject.h"
#include "tupleobject.h"
#include "listobject.h"
#include "dictobject.h"
#include "cpython/odictobject.h"
#include "enumobject.h"
#include "setobject.h"
#include "methodobject.h"
#include "moduleobject.h"
#include "funcobject.h"
#include "classobject.h"
#include "fileobject.h"
#include "pycapsule.h"
#include "code.h"
#include "pyframe.h"
#include "traceback.h"
#include "sliceobject.h"
#include "cellobject.h"
#include "iterobject.h"
#include "cpython/initconfig.h"
#include "genobject.h"
#include "descrobject.h"
#include "genericaliasobject.h"
#include "warnings.h"
#include "weakrefobject.h"
#include "structseq.h"
#include "namespaceobject.h"
#include "cpython/picklebufobject.h"
#include "cpython/pytime.h"

#include "codecs.h"
#include "pyerrors.h"
#include "pythread.h"
#include "pystate.h"
#include "context.h"

#include "modsupport.h"
#include "compile.h"
#include "pythonrun.h"
#include "pylifecycle.h"
#include "ceval.h"
#include "sysmodule.h"
#include "osmodule.h"
#include "intrcheck.h"
#include "import.h"

#include "abstract.h"
#include "bltinmodule.h"

#include "eval.h"

#include "cpython/pyctype.h"
#include "pystrtod.h"
#include "pystrcmp.h"
#include "fileutils.h"
#include "cpython/pyfpe.h"
#include "tracemalloc.h"

#endif /* !Py_PYTHON_H */
Loading
Loading