Skip to content

Commit dbf5a7b

Browse files
committed
feat: add python 3.13 support
1 parent e4d8729 commit dbf5a7b

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

.github/workflows/Deployment.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -33,15 +33,15 @@ jobs:
3333
runs-on: windows-2019
3434
strategy:
3535
matrix:
36-
python-version: [ 3.8, 3.9, "3.10", "3.11", "3.12" ]
36+
python-version: [ 3.8, 3.9, "3.10", "3.11", "3.12", "3.13" ]
3737

3838
steps:
3939

4040
- name: Checkout
4141
uses: actions/checkout@v4
4242

4343
- name: Setup Python ${{ matrix.python-version }}
44-
uses: actions/setup-python@v4
44+
uses: actions/setup-python@v5
4545
with:
4646
python-version: ${{ matrix.python-version }}
4747

@@ -77,15 +77,15 @@ jobs:
7777
runs-on: macos-12
7878
strategy:
7979
matrix:
80-
python-version: [ 3.8, 3.9, "3.10", "3.11", "3.12" ]
80+
python-version: [ 3.8, 3.9, "3.10", "3.11", "3.12", "3.13" ]
8181

8282
steps:
8383

8484
- name: Checkout
8585
uses: actions/checkout@v4
8686

8787
- name: Setup Python ${{ matrix.python-version }}
88-
uses: actions/setup-python@v4
88+
uses: actions/setup-python@v5
8989
with:
9090
python-version: ${{ matrix.python-version }}
9191

@@ -118,15 +118,15 @@ jobs:
118118
runs-on: macos-latest-xlarge
119119
strategy:
120120
matrix:
121-
python-version: [ "3.10", "3.11", "3.12" ]
121+
python-version: [ "3.10", "3.11", "3.12", "3.13" ]
122122

123123
steps:
124124

125125
- name: Checkout
126126
uses: actions/checkout@v4
127127

128128
- name: Setup Python ${{ matrix.python-version }}
129-
uses: actions/setup-python@v4
129+
uses: actions/setup-python@v5
130130
with:
131131
python-version: ${{ matrix.python-version }}
132132

@@ -161,15 +161,15 @@ jobs:
161161
CXX: g++-9
162162
strategy:
163163
matrix:
164-
python-version: [ 3.8, 3.9, "3.10", "3.11", "3.12" ]
164+
python-version: [ 3.8, 3.9, "3.10", "3.11", "3.12", "3.13" ]
165165

166166
steps:
167167

168168
- name: Checkout
169169
uses: actions/checkout@v4
170170

171171
- name: Setup Python ${{ matrix.python-version }}
172-
uses: actions/setup-python@v4
172+
uses: actions/setup-python@v5
173173
with:
174174
python-version: ${{ matrix.python-version }}
175175

@@ -210,7 +210,7 @@ jobs:
210210
uses: actions/checkout@v4
211211

212212
- name: Set up Python 3.9
213-
uses: actions/setup-python@v4
213+
uses: actions/setup-python@v5
214214
with:
215215
python-version: 3.9
216216

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
import shutil
1010
import subprocess
1111

12-
wip_version = "2.0.0b1"
12+
wip_version = "2.0.0b2"
1313

1414
def version_number():
1515
"""This function reads the version number which is populated by github actions"""
@@ -169,7 +169,7 @@ def setup_package():
169169
long_description_content_type='text/markdown', # Optional
170170
url='https://github.com/hoffstadt/DearPyGui', # Optional
171171
license = 'MIT',
172-
python_requires='>=3.7',
172+
python_requires='>=3.8',
173173
classifiers=[
174174
'Development Status :: 5 - Production/Stable',
175175
'Intended Audience :: Education',
@@ -180,12 +180,12 @@ def setup_package():
180180
'Operating System :: Microsoft :: Windows :: Windows 10',
181181
'Operating System :: POSIX',
182182
'Operating System :: Unix',
183-
'Programming Language :: Python :: 3.7',
184183
'Programming Language :: Python :: 3.8',
185184
'Programming Language :: Python :: 3.9',
186185
'Programming Language :: Python :: 3.10',
187186
'Programming Language :: Python :: 3.11',
188187
'Programming Language :: Python :: 3.12',
188+
'Programming Language :: Python :: 3.13',
189189
'Programming Language :: Python :: Implementation :: CPython',
190190
'Programming Language :: Python :: 3 :: Only',
191191
'Topic :: Software Development :: User Interfaces',

0 commit comments

Comments
 (0)