Преглед изворни кода

Merge branch 'release-0.0.6'

Arkadiusz Ryś пре 2 година
родитељ
комит
a43fb9586a
3 измењених фајлова са 8 додато и 3 уклоњено
  1. 3 2
      .gitlab-ci.yml
  2. 4 0
      HISTORY.rst
  3. 1 1
      graph_exploring_tool/__init__.py

+ 3 - 2
.gitlab-ci.yml

@@ -57,7 +57,7 @@ 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 --windowed --noconfirm; wineserver -w"
+    - xvfb-run sh -c "wine pyinstaller graph_exploring_tool/__main__.py --name get.exe --onefile --windowed --noconfirm; wineserver -w"
     - mkdir -p dist/data/
     - cp -r data/* dist/data/
   only:
@@ -65,4 +65,5 @@ build-windows-exe:
   artifacts:
     name: "graph_exploring_tool%$CI_COMMIT_TAG"
     paths:
-      - ./dist/*
+      - dist/data
+      - dist/get.exe

+ 4 - 0
HISTORY.rst

@@ -2,6 +2,10 @@
 History
 =======
 
+0.0.6 (2023-05-04)
+------------------
+* Rename windows exe.
+
 0.0.5 (2023-05-04)
 ------------------
 * Don't include data in exe.

+ 1 - 1
graph_exploring_tool/__init__.py

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