瀏覽代碼

change version to 3.0.0

jrobinAV 1 年之前
父節點
當前提交
fbe2b037d2
共有 3 個文件被更改,包括 7 次插入8 次删除
  1. 3 4
      Pipfile
  2. 3 3
      setup.py
  3. 1 1
      src/taipy/version.json

+ 3 - 4
Pipfile

@@ -6,10 +6,9 @@ name = "pypi"
 [packages]
 "backports.zoneinfo" = {version="==0.2.1", markers="python_version < '3.9'", extras=["tzdata"]}
 cookiecutter = "==2.1.1"
-
-taipy-gui = {ref = "develop", git = "https://github.com/avaiga/taipy-gui.git"}
-taipy-rest = {ref = "develop", git = "https://github.com/avaiga/taipy-rest.git"}
-taipy-templates = {ref = "develop", git = "https://github.com/avaiga/taipy-templates.git"}
+taipy-gui = "==3.0"
+taipy-rest = "==3.0"
+taipy-templates = "==3.0"
 
 [dev-packages]
 autopep8 = "*"

+ 3 - 3
setup.py

@@ -33,9 +33,9 @@ with open(f"src{os.sep}taipy{os.sep}version.json") as version_file:
 requirements = [
     "backports.zoneinfo>=0.2.1,<0.3;python_version<'3.9'",
     "cookiecutter>=2.1.1,<2.2",
-    "taipy-gui@git+https://git@github.com/Avaiga/taipy-gui.git@develop",
-    "taipy-rest@git+https://git@github.com/Avaiga/taipy-rest.git@develop",
-    "taipy-templates@git+https://git@github.com/Avaiga/taipy-templates.git@develop",
+    "taipy-gui>=3.0,<3.1",
+    "taipy-rest>=3.0,<3.1",
+    "taipy-templates>=3.0,<3.1",
 ]
 
 setup_requirements = [(requirement for requirement in requirements if requirement.startswith("taipy-gui"))]

+ 1 - 1
src/taipy/version.json

@@ -1 +1 @@
-{"major": 3, "minor": 0, "patch": 0, "ext": "dev9"}
+{"major": 3, "minor": 0, "patch": 0}