Skip to content

Commit 59c796c

Browse files
committed
'1214'
1 parent b92030f commit 59c796c

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

UQPyL/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from . import problem, surrogate, optimization, analysis, doe, util
22

3-
__version__ = "2.1.3"
3+
__version__ = "2.1.4"
44
__author__ = "wmtSky"
55

66
__all__=[

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ license-files = []
1616

1717
[project]
1818
name = "UQPyL"
19-
version = "2.1.3"
19+
version = "2.1.4"
2020
authors = [
2121
{name = "wmtSky", email = "[email protected]"}
2222
]
@@ -29,12 +29,12 @@ dependencies = [
2929
"h5py",
3030
]
3131
classifiers = [
32-
"Programming Language :: Python :: 3.7",
3332
"Programming Language :: Python :: 3.8",
3433
"Programming Language :: Python :: 3.9",
3534
"Programming Language :: Python :: 3.10",
3635
"Programming Language :: Python :: 3.11",
3736
"Programming Language :: Python :: 3.12",
37+
"Programming Language :: Python :: 3.13",
3838
"License :: OSI Approved :: MIT License",
3939
"Operating System :: OS Independent",
4040
]

setup.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,21 +32,20 @@
3232
setup(
3333
name="UQPyL",
3434
author="wmtSky",
35-
version="2.1.3",
35+
version="2.1.4",
3636
author_email="[email protected]",
3737
ext_modules=extensions,
3838
packages=find_packages(),
3939
description="A Python package for parameter uncertainty quantification and optimization",
4040
long_description=open("README.md", encoding="utf-8").read(),
4141
long_description_content_type="text/markdown",
4242
classifiers=[
43-
'Programming Language :: Python :: 3.6',
44-
'Programming Language :: Python :: 3.7',
4543
'Programming Language :: Python :: 3.8',
4644
'Programming Language :: Python :: 3.9',
4745
'Programming Language :: Python :: 3.10',
4846
'Programming Language :: Python :: 3.11',
4947
'Programming Language :: Python :: 3.12',
48+
'Programming Language :: Python :: 3.13',
5049
'License :: OSI Approved :: MIT License',
5150
'Operating System :: OS Independent',
5251
],

0 commit comments

Comments
 (0)