Skip to content

Commit

Permalink
build config
Browse files Browse the repository at this point in the history
  • Loading branch information
KinoxKlark committed Aug 25, 2021
1 parent 9ef8234 commit 560c416
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 2 deletions.
36 changes: 35 additions & 1 deletion .appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
version: 1.4.{build}
environment:
global:
DROPBOX_TOKEN:
Expand All @@ -9,16 +8,19 @@ environment:
- PYTHON: "C:\\Python27"
PYTHON_ARCH: 32
MSVC_VERSION: "Visual Studio 10"
appveyor_build_worker_image: Visual Studio 2015
job_group: "windows"

- PYTHON: "C:\\Python33"
PYTHON_ARCH: 32
MSVC_VERSION: "Visual Studio 10"
appveyor_build_worker_image: Visual Studio 2015
job_group: "windows"

- PYTHON: "C:\\Python34"
PYTHON_ARCH: 32
MSVC_VERSION: "Visual Studio 10"
appveyor_build_worker_image: Visual Studio 2015
job_group: "windows"

- PYTHON: "C:\\Python35"
Expand Down Expand Up @@ -52,17 +54,20 @@ environment:
- PYTHON: "C:\\Python27-x64"
PYTHON_ARCH: 64
MSVC_VERSION: "Visual Studio 10 Win64"
appveyor_build_worker_image: Visual Studio 2015
job_group: "windows"

- PYTHON: "C:\\Python33-x64"
PYTHON_ARCH: 64
MSVC_VERSION: "Visual Studio 10 Win64"
appveyor_build_worker_image: Visual Studio 2015
DISTUTILS_USE_SDK: "1"
job_group: "windows"

- PYTHON: "C:\\Python34-x64"
PYTHON_ARCH: 64
MSVC_VERSION: "Visual Studio 10 Win64"
appveyor_build_worker_image: Visual Studio 2015
DISTUTILS_USE_SDK: "1"
job_group: "windows"

Expand Down Expand Up @@ -121,6 +126,35 @@ environment:
job_group: "macos"
appveyor_build_worker_image: macos

# linux builds
- PY_VERSION: 2.7
job_group: "linux"
appveyor_build_worker_image: ubuntu

- PY_VERSION: 3.4
job_group: "linux"
appveyor_build_worker_image: ubuntu

- PY_VERSION: 3.5
job_group: "linux"
appveyor_build_worker_image: ubuntu

- PY_VERSION: 3.6
job_group: "linux"
appveyor_build_worker_image: ubuntu

- PY_VERSION: 3.7
job_group: "linux"
appveyor_build_worker_image: ubuntu

- PY_VERSION: 3.8
job_group: "linux"
appveyor_build_worker_image: ubuntu

- PY_VERSION: 3.9
job_group: "linux"
appveyor_build_worker_image: ubuntu


for:
- matrix:
Expand Down
2 changes: 1 addition & 1 deletion imgui/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
VERSION = (1, 3, 1) # PEP 386
VERSION = (1, 4, 0) # PEP 386
__version__ = ".".join([str(x) for x in VERSION])

from imgui.core import * # noqa
Expand Down

0 comments on commit 560c416

Please sign in to comment.