Jelajahi Sumber

Merge branch 'release-0.0.5'

Arkadiusz Ryś 2 tahun lalu
induk
melakukan
8cca58d4a2
3 mengubah file dengan 8 tambahan dan 4 penghapusan
  1. 2 2
      .gitlab-ci.yml
  2. 5 1
      HISTORY.rst
  3. 1 1
      graph_exploring_tool/__init__.py

+ 2 - 2
.gitlab-ci.yml

@@ -57,12 +57,12 @@ build-windows-exe:
   script:
     - xvfb-run sh -c "wine pip install --no-warn-script-location -r requirements.py; wineserver -w"
 #    - xvfb-run sh -c "wine pyinstaller graph_exploring_tool/__main__.py --onefile --add-data data:data --collect-all graph-exploring-tool --windowed --noconfirm; wineserver -w"
-    - xvfb-run sh -c "wine pyinstaller graph_exploring_tool/__main__.py --onefile --add-data data:data --windowed --noconfirm; wineserver -w"
+    - xvfb-run sh -c "wine pyinstaller graph_exploring_tool/__main__.py --onefile --windowed --noconfirm; wineserver -w"
     - mkdir -p dist/data/
     - cp -r data/* dist/data/
   only:
     - tags
   artifacts:
-    name: "graph-exploring-tool-%$CI_COMMIT_TAG.zip"
+    name: "graph_exploring_tool%$CI_COMMIT_TAG"
     paths:
       - ./dist/*

+ 5 - 1
HISTORY.rst

@@ -2,7 +2,11 @@
 History
 =======
 
-0.0.3 (2023-05-04)
+0.0.5 (2023-05-04)
+------------------
+* Don't include data in exe.
+
+0.0.4 (2023-05-04)
 ------------------
 * Remove extra zip layer from artifact.
 

+ 1 - 1
graph_exploring_tool/__init__.py

@@ -1,3 +1,3 @@
 """Graph Exploring Tool."""
-__version__ = "0.0.4"
+__version__ = "0.0.5"
 __version_info__ = tuple((int(num) if num.isdigit() else num for num in __version__.replace("-", ".", 1).split(".")))