Skip to content

Commit

Permalink
Merge branch 'main' into joss-paper
Browse files Browse the repository at this point in the history
  • Loading branch information
jmafoster1 authored Dec 5, 2024
2 parents 25d6914 + bb2527b commit 97ae1bf
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish-to-dafni.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
with:
python-version: 3.9
python-version: '3.10'

- name: Build the container
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish-to-pypi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: 3.9
python-version: '3.10'
- name: Installing package
run: |
pip3 install .
Expand All @@ -30,4 +30,4 @@ jobs:
- name: Publish package to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_API_TOKEN }}
password: ${{ secrets.PYPI_API_TOKEN }}
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ system-under-test that is expected to cause a change to some output(s).
## Installation

### Requirements
- Python 3.9, 3.10, 3.11 and 3.12
- Python 3.10, 3.11 and 3.12

- Microsoft Visual C++ 14.0+ (Windows only).

Expand Down Expand Up @@ -121,4 +121,4 @@ To find the other (optional) developer dependencies, please check `pyproject.tom

The Causal Testing Framework is supported by the UK's Engineering and Physical Sciences Research Council (EPSRC),
with the project name [CITCOM](https://gow.epsrc.ukri.org/NGBOViewGrant.aspx?GrantRef=EP/T030526/1) - "_Causal Inference for Testing of Computational Models_"
under the grant EP/T030526/1.
under the grant EP/T030526/1.
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ name = "causal_testing_framework"
authors = [{ name = "The CITCOM team" }]
description = "A framework for causal testing using causal directed acyclic graphs."
readme = "README.md"
requires-python = ">=3.9"
requires-python = ">=3.10"
license = { text = "MIT" }
keywords = ["causal inference", "verification"]
dependencies = [
Expand Down Expand Up @@ -63,7 +63,7 @@ find = { }
[tool.black]
# https://github.com/psf/black
line-length = 120
target-version = ["py39"]
target-version = ["py310"]

[tool.autopep8]
max_line_length = 120
Expand Down

0 comments on commit 97ae1bf

Please sign in to comment.