Skip to content

Commit

Permalink
v0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
gpoore committed Oct 29, 2023
1 parent f383b99 commit 8039f85
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Change Log


## v0.7.0 (dev)
## v0.7.0 (2023-10-28)

* Switched packaging to `pyproject.toml`.

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ b) Another answer.

## Installation

Install **Python 3.6+** if it is not already available on your machine. See
Install **Python 3.8+** if it is not already available on your machine. See
https://www.python.org/, or use the package manager or app store for your
operating system. Depending on your use case, you may want to consider a
Python distribution like [Anaconda](https://www.anaconda.com/distribution/)
Expand Down
6 changes: 4 additions & 2 deletions make_gui_exe/make_tk_exe.bat
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ if not exist text2qti_tk.pyw (
)

REM Create and activate a conda env for packaging the .exe
call conda create -y --name make_text2qti_gui_exe python=3.9 --no-default-packages
call conda create -y --name make_text2qti_gui_exe python=3.11 --no-default-packages
call conda activate make_text2qti_gui_exe
REM List conda envs -- useful for debugging
call conda info --envs
Expand Down Expand Up @@ -40,7 +40,9 @@ REM List conda envs -- useful for debugging
call conda info --envs
REM Cleanup
move dist\text2qti_tk_%TEXT2QTI_VERSION%.exe text2qti_tk_%TEXT2QTI_VERSION%.exe
rd /s /q "__pycache__"
if exist "__pycache__" (
rd /s /q "__pycache__"
)
rd /s /q "build"
rd /s /q "dist"
del *.spec
Expand Down
2 changes: 1 addition & 1 deletion text2qti/version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# -*- coding: utf-8 -*-

from .fmtversion import get_version_plus_info
__version__, __version_info__ = get_version_plus_info(0, 7, 0, 'dev', 4)
__version__, __version_info__ = get_version_plus_info(0, 7, 0, 'final', 0)

0 comments on commit 8039f85

Please sign in to comment.