Skip to content

Commit 9f73d08

Browse files
authored
Merge pull request #486 from oist/develop-main
Fix bugs after pypi test
2 parents 3ab617b + 28e0f0f commit 9f73d08

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

optinist/__main__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1+
from optinist.__main_unit__ import main
2+
13
# run backend main module.
24
if __name__ == "__main__":
3-
from optinist.__main_unit__ import main
4-
55
main()

optinist/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
_MINOR = "3"
33
# On main and in a nightly release the patch should be one ahead of the last
44
# released build.
5-
_PATCH = "0"
5+
_PATCH = "2"
66
# This is mainly for nightly builds which have the suffix ".dev$DATE". See
77
# https://semver.org/#is-v123-a-semantic-version for the semantics.
88
_SUFFIX = ""

setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ def take_package_name(name):
5353
"frontend/build/static/css/*",
5454
"frontend/build/static/js/*",
5555
"frontend/build/static/media/*",
56+
"app_config/*.yaml",
5657
"config/*.yaml",
5758
"conda/*.yaml",
5859
"Snakefile",

0 commit comments

Comments
 (0)