Skip to content

Commit bb2527b

Browse files
authored
Merge pull request #298 from CITCOM-project/fix-pypi
Fix: Python Version Updates to CI/CD Workflows
2 parents 180a199 + 18d0356 commit bb2527b

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/publish-to-dafni.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
- uses: actions/checkout@v3
3737
- uses: actions/setup-python@v3
3838
with:
39-
python-version: 3.10
39+
python-version: '3.10'
4040

4141
- name: Build the container
4242
run: |

.github/workflows/publish-to-pypi.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Set up Python
1717
uses: actions/setup-python@v3
1818
with:
19-
python-version: 3.10
19+
python-version: '3.10'
2020
- name: Installing package
2121
run: |
2222
pip3 install .

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ system-under-test that is expected to cause a change to some output(s).
2525
## Installation
2626

2727
### Requirements
28-
- Python 3.9, 3.10, 3.11 and 3.12
28+
- Python 3.10, 3.11 and 3.12
2929

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

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

122122
The Causal Testing Framework is supported by the UK's Engineering and Physical Sciences Research Council (EPSRC),
123123
with the project name [CITCOM](https://gow.epsrc.ukri.org/NGBOViewGrant.aspx?GrantRef=EP/T030526/1) - "_Causal Inference for Testing of Computational Models_"
124-
under the grant EP/T030526/1.
124+
under the grant EP/T030526/1.

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ name = "causal_testing_framework"
1111
authors = [{ name = "The CITCOM team" }]
1212
description = "A framework for causal testing using causal directed acyclic graphs."
1313
readme = "README.md"
14-
requires-python = ">=3.9"
14+
requires-python = ">=3.10"
1515
license = { text = "MIT" }
1616
keywords = ["causal inference", "verification"]
1717
dependencies = [
@@ -63,7 +63,7 @@ find = { }
6363
[tool.black]
6464
# https://github.com/psf/black
6565
line-length = 120
66-
target-version = ["py39"]
66+
target-version = ["py310"]
6767

6868
[tool.autopep8]
6969
max_line_length = 120

0 commit comments

Comments
 (0)