File tree Expand file tree Collapse file tree 3 files changed +9
-5
lines changed Expand file tree Collapse file tree 3 files changed +9
-5
lines changed Original file line number Diff line number Diff line change 13
13
runs-on : ubuntu-latest
14
14
15
15
steps :
16
- - uses : actions/checkout@v2
16
+ - uses : actions/checkout@v3
17
17
- name : Set up Python
18
- uses : actions/setup-python@v2
18
+ uses : actions/setup-python@v3
19
19
with :
20
20
python-version : ' 3.x'
21
21
- name : Install dependencies
Original file line number Diff line number Diff line change 1
1
import setuptools
2
- from sim_tools import __version__
2
+
3
+ # patch ed - build error due to imporing numpy into __init__
4
+ # from sim_tools import __version__
5
+ VERSION = "0.2.1"
6
+
3
7
4
8
# Read in the requirements.txt file
5
9
with open ("requirements.txt" ) as f :
12
16
13
17
setuptools .setup (
14
18
name = "sim-tools" ,
15
- version = __version__ ,
19
+ version = VERSION ,
16
20
author = "Thomas Monks" ,
17
21
author_email = "t.m.w.monks@exeter.ac.uk" ,
18
22
license = "The MIT License (MIT)" ,
Original file line number Diff line number Diff line change 1
- __version__ = '0.2.0 '
1
+ __version__ = '0.2.1 '
2
2
__author__ = 'Thomas Monks'
3
3
4
4
from . import distributions , ovs
You can’t perform that action at this time.
0 commit comments