Compare commits

..

4 Commits

Author SHA1 Message Date
psychedelicious
1f7d108cac chore: bump version to v5.10.0dev2
Doing a dev build so I can test the launcher.
2025-04-03 10:33:17 +10:00
psychedelicious
d06cc71cd9 build: downgrade python to 3.11 in pins 2025-04-03 10:31:56 +10:00
psychedelicious
ecbc1cf85d build: restore prev setuptools config to fix wheel build 2025-04-03 09:43:31 +10:00
psychedelicious
dcad306aee ci: use py3.12 to build installer 2025-04-03 09:30:17 +10:00
4 changed files with 16 additions and 4 deletions

View File

@@ -17,7 +17,7 @@ jobs:
- name: setup python
uses: actions/setup-python@v5
with:
python-version: '3.10'
python-version: '3.12'
cache: pip
cache-dependency-path: pyproject.toml

View File

@@ -1 +1 @@
__version__ = "5.10.0dev1"
__version__ = "5.10.0dev2"

View File

@@ -1,5 +1,5 @@
{
"python": "3.12",
"python": "3.11",
"torchIndexUrl": {
"win32": {
"cuda": "https://download.pytorch.org/whl/cu126"

View File

@@ -142,7 +142,19 @@ dependencies = [
version = { attr = "invokeai.version.__version__" }
[tool.setuptools.packages.find]
"include" = ["invokeai"]
"where" = ["."]
"include" = [
"invokeai.assets.fonts*",
"invokeai.version*",
"invokeai.generator*",
"invokeai.backend*",
"invokeai.frontend*",
"invokeai.frontend.web.dist*",
"invokeai.frontend.web.static*",
"invokeai.configs*",
"invokeai.app*",
"invokeai.invocation_api*",
]
[tool.setuptools.package-data]
"invokeai.app.assets" = ["**/*.png"]