Skip to content

Commit

Permalink
packaging: bump to 0.9.9
Browse files Browse the repository at this point in the history
  • Loading branch information
linzuzeng committed Jun 25, 2024
1 parent be60185 commit e39d836
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 10 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
run: |
cd gui
dir
conda create --name ETA python=3.10
conda create --name ETA python=3.11
conda activate ETA
conda install conda-forge::conda-pack
pip install --find-links=.\ etabackend
Expand Down Expand Up @@ -122,7 +122,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.9", "3.10"]
python-version: ["3.9", "3.11"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
Expand All @@ -136,5 +136,5 @@ jobs:
path: dist
- name: Test with pytest
run: |
python -m pip install tox==3.28.0 tox-gh-actions==2.12.0 tox-external-wheels
tox --external_wheels 'dist/*.whl'
python -m pip install tox tox-gh-actions
tox
2 changes: 1 addition & 1 deletion etabackend/static/help.html
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
<a href="https://eta.readthedocs.io/" target="_blank">ONLINE
DOCUMENTATION</a>

<a href="https://github.com/timetag/ETA/releases" target="_blank" >ETA GUI Version: 0.9.8</a>
<a href="https://github.com/timetag/ETA/releases" target="_blank" >ETA GUI Version: 0.9.9</a>
<a href="#" class="menu-link" id="btn_close">Exit</a>
</div>
</div>
Expand Down
4 changes: 2 additions & 2 deletions gui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"author": "Zuzeng Lin",
"repository": "github:timetag/ETA",
"homepage": "http://timetag.github.io",
"version": "0.9.8",
"version": "0.9.9",
"description": "ETA is a graphical event-driven programming language for time-tag processing.",
"scripts": {
"dev": "electron .",
Expand All @@ -17,7 +17,7 @@
"build": {
"appId": "com.eta.client",
"productName": "ETA",
"copyright": "Copyright (C) 2023 Zuzeng Lin",
"copyright": "Copyright (C) 2024 Zuzeng Lin",
"mac": {
"category": "public.app-category.utilities",
"publish": [
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

setuptools.setup(
name="etabackend",
version="0.9.8",
version="0.9.9",
author="ETA Team",
description="Extensible Timetag Analyzer",
include_package_data=True,
Expand Down
5 changes: 3 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
# tox.ini
[tox]
envlist = py39, py310
envlist = py39, py311
[gh-actions]
python =
3.10: py310
3.11: py311
3.9: py39
[testenv]
description = Unit tests
deps =
pytest
-rrequirements.txt
package_glob = 'dist/*.whl'
commands = pytest

0 comments on commit e39d836

Please sign in to comment.