Skip to content

Commit

Permalink
Merge pull request #262 from Der-Henning/dev
Browse files Browse the repository at this point in the history
Bump Version 1.14.9
  • Loading branch information
Der-Henning authored Feb 2, 2023
2 parents e88bf77 + edd104b commit b801a58
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 9 deletions.
1 change: 1 addition & 0 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ RUN if [ "${NODE_VERSION}" != "none" ]; then su vscode -c "umask 0002 && . /usr/

# [Optional] If your pip requirements rarely change, uncomment this section to add them to the image.
COPY requirements.txt /tmp/pip-tmp/
COPY requirements-build.txt /tmp/pip-tmp/
COPY requirements-dev.txt /tmp/pip-tmp/

RUN pip3 --disable-pip-version-check --no-cache-dir install -r /tmp/pip-tmp/requirements-dev.txt \
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
with:
python-version: "3.10"
- name: Install dependencies
run: pip install -r requirements-dev.txt
run: pip install -r requirements-build.txt
- name: Run PyInstaller
run: |
pyinstaller scanner.spec
Expand Down
4 changes: 2 additions & 2 deletions DOCKER_README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ Readme, source and documentation on [https://github.com/Der-Henning/tgtg](https:

- [`edge`](https://github.com/Der-Henning/tgtg/blob/main/Dockerfile)
- [`edge-alpine`](https://github.com/Der-Henning/tgtg/blob/main/Dockerfile.alpine)
- [`v1`, `v1.14`, `v1.14.8`, `latest`](https://github.com/Der-Henning/tgtg/blob/v1.14.8/Dockerfile)
- [`v1-alpine`, `v1.14-alpine`, `v1.14.8-alpine`, `latest-alpine`](https://github.com/Der-Henning/tgtg/blob/v1.14.8/Dockerfile.alpine)
- [`v1`, `v1.14`, `v1.14.9`, `latest`](https://github.com/Der-Henning/tgtg/blob/v1.14.9/Dockerfile)
- [`v1-alpine`, `v1.14-alpine`, `v1.14.9-alpine`, `latest-alpine`](https://github.com/Der-Henning/tgtg/blob/v1.14.9/Dockerfile.alpine)

# Quick Start

Expand Down
4 changes: 4 additions & 0 deletions requirements-build.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
-r requirements.txt
altgraph==0.17.3
pyinstaller==5.7.0
pyinstaller-hooks-contrib==2022.15
6 changes: 1 addition & 5 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,12 +1,8 @@
-r requirements.txt
altgraph==0.17.3
-r requirements-build.txt
autopep8
flake8
ipykernel
pre-commit
pyinstaller==5.7.0
pyinstaller-hooks-contrib==2022.15

pytest
pytest-cov
responses
2 changes: 1 addition & 1 deletion src/_version.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
__title__ = "TGTG Scanner"
__description__ = "Provides notifications for TGTG magic bags"
__version__ = "1.14.8"
__version__ = "1.14.9"
__author__ = "Henning Merklinger"
__author_email__ = "[email protected]"
__license__ = "GPL"
Expand Down

0 comments on commit b801a58

Please sign in to comment.