Skip to content

Commit dc540be

Browse files
Fixed windows workflow
1 parent 1445e1e commit dc540be

4 files changed

Lines changed: 4 additions & 3 deletions

File tree

.github/workflows/windows-github-actions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
with:
1212
python-version: '3.9'
1313
env:
14-
AGENT_TOOLSDIRECTORY: /opt/hostedtoolcache
14+
AGENT_TOOLSDIRECTORY: C:\hostedtoolcache\ # Updated path for Windo ws
1515
- name: Install
1616
run: |
1717
pip install --upgrade pip

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -158,6 +158,7 @@ You should see output similar to the following:
158158

159159

160160
# Version History
161+
* 1.0.8 7/21/2025 Improved example for using pySubnetSB and revised github actions workflows.
161162
* 1.0.7 7/20/2025 Finalized code and documentation
162163
* 1.0.6 7/19/2025 Workflows for Ubuntu, Windows, Macos and python 3.9,
163164
3.10, 3.11, 3.12

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "pySubnetSB"
3-
version = "1.0.7"
3+
version = "1.0.8"
44
description = "Python Subnet Discovery for Systems Biology"
55
authors = [{ name = "Joseph Hellerstein", email = "joseph.hellerstein@gmail.com" }]
66
license = { file = "LICENSE" }

src/pySubnetSB/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
A Network is a representation of a chemical reaction network that includes a NamedMatrix for reactants and products.
66
A Constraint describes numerical or categorical charateristics of a network that are organized as one or more NamedMatrix.
77
"""
8-
__version__ = "1.0.7"
8+
__version__ = "1.0.8"

0 commit comments

Comments
 (0)