Skip to content

Commit

Permalink
'v2.0.6'
Browse files Browse the repository at this point in the history
  • Loading branch information
smasky committed Sep 19, 2024
1 parent ea62ac0 commit 6d40565
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ jobs:
fi
- name: Save Wheel Package as Artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: wheelhouse
path: wheelhouse/*.whl
Expand Down Expand Up @@ -117,7 +117,7 @@ jobs:
mv dist/*.tar.gz dist_sources/ # 移动生成的源码包到新的目录
- name: Upload source distribution as artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: source-distribution
path: dist_sources/*
Expand Down
2 changes: 1 addition & 1 deletion UQPyL/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from . import problems, surrogates, optimization, sensibility, DoE, utility

__version__ = "2.0.5"
__version__ = "2.0.6"
__author__ = "wmtSky"

__all__=[
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "UQPyL"
version = "2.0.5"
version = "2.0.6"
authors = [
{name = "wmtSky", email = "[email protected]"}
]
Expand All @@ -21,9 +21,9 @@ readme = "README.md"
dependencies = [
"numpy",
"scipy",
"prettytable",
]
classifiers = [
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
setup(
name="UQPyL",
author="wmtSky",
version="2.0.5",
version="2.0.6",
author_email="[email protected]",
ext_modules=extensions,
packages=find_packages(),
Expand Down

0 comments on commit 6d40565

Please sign in to comment.