Skip to content

Commit d3ccd24

Browse files
authored
Fixed dodgy requirement for python
1 parent 0ac46bc commit d3ccd24

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,10 @@
5454
## To-Do
5555

5656
* ~~Make the calculation work~~
57-
* ~~Pull from config file~~
58-
* ~~Allow selection of pixel_pitch states~~
59-
* ~~Incorporate Pathlib~~
6057
* Unit Test
58+
* ~~Pull from config file~~
59+
* Allow selection of pixel_pitch states
60+
* Make 32-bit version work with 64-bit Python
6161

6262
<!-- GETTING STARTED -->
6363
## Getting Started
@@ -67,8 +67,8 @@
6767
### Prerequisites
6868

6969
<ul>
70-
<li><a href="https://www.python.org/downloads/">Python > 3.7.2 32-bit</a></li>
71-
<li><a href="https://docs.python.org/3/library/configparser.html">ConfigParser 4.1</a></li>
70+
<li><a href="https://www.python.org/downloads/">Python > 3.8.5 64-bit (Other versions not tested - YMMV)</a></li>
71+
<li><a href="https://docs.python.org/3/library/configparser.html">ConfigParser > 4.1</a></li>
7272
<li><a href="https://docs.python.org/3/library/pathlib.html">PathLib</a></li>
7373
</ul>
7474

@@ -104,7 +104,7 @@
104104
FOCAL_LENGTH = 300
105105
```
106106
<ul>
107-
<li>APERTURE > Has to be a float in this format 1.0&ltA&lt22.0</li>
107+
<li>APERTURE > Has to be a float in this format 1&ltA&lt22</li>
108108
<li>FOCAL_LENGTH > has to be an int in this format 1&ltF&lt1000</li>
109109
</ul>
110110

@@ -119,29 +119,29 @@
119119
PHYSICAL_WIDTH = 22.2
120120
```
121121
<ul>
122-
<li>PIXEL_PITCH > Has to be a float in this format 0.1&ltA&lt100.0</li>
122+
<li>PIXEL_PITCH > Has to be a float in this format 0.1&ltA&lt100</li>
123123
<li>PIXEL_WIDTH > has to be an int in this format 1&ltF&lt8192</li>
124-
<li>PHYSICAL_WIDTH > has to be a float in this format 0.1&ltP&lt100.0</li>
124+
<li>PHYSICAL_WIDTH > has to be a float in this format 0.1&ltP&lt100</li>
125125
</ul>
126126

127-
#### Pixel Pitch Differentiation
127+
#### ~~Pixel Pitch Differentiation~~
128128

129-
##### Know Pixel Pitch
129+
##### ~~Know Pixel Pitch~~
130130
```python
131131
PIXEL_PITCH = 6.423611111111111
132132

133133
PIXEL_WIDTH = ""
134134
PHYSICAL_WIDTH = ""
135135
```
136136

137-
##### Don't Know Pixel Pitch
137+
##### ~~Don't Know Pixel Pitch~~
138138
```python
139139
PIXEL_PITCH = ""
140140

141141
PIXEL_WIDTH = 3456
142142
PHYSICAL_WIDTH = 22.2
143143
```
144-
Essentially - If you enter a manual value for pixel pitch, the programme will use this - and ignore the values for Pixel and Physical Width.
144+
<h3>Not Currently implemented</h3>
145145

146146
<!-- CONTRIBUTING -->
147147
## Contributing

0 commit comments

Comments
 (0)