Skip to content

Commit e8c3a4f

Browse files
committed
Remove some deprication warnings and try to twqeak testing github action
1 parent 069c5e0 commit e8c3a4f

File tree

4 files changed

+17
-13
lines changed

4 files changed

+17
-13
lines changed

.github/workflows/run-tests-action.yaml

+13-10
Original file line numberDiff line numberDiff line change
@@ -14,21 +14,24 @@ jobs:
1414
os: ["ubuntu-latest"]
1515
steps:
1616
- name: Check out repository code
17-
uses: actions/checkout@v3
17+
uses: actions/checkout@v4
1818
- name: Install Conda environment with Micromamba
19-
uses: mamba-org/setup-micromamba@v1
19+
uses: conda-incubator/setup-miniconda@v3
2020
with:
2121
environment-file: tests/test-env.yml
22-
extra-specs: |
23-
python=${{ matrix.python-version }}
24-
channels: phygbu, conda-forge
22+
python: ${{ matrix.python-version }}
23+
channels: conda-forge,phygbu
24+
allow-softlinks: true
2525
channel-priority: flexible
26-
- name: Conda info
27-
run: ${MAMBA_EXE} info
28-
- name: Conda list
29-
run: ${MAMBA_EXE} list
26+
show-channel-urls: true
27+
run: |
28+
conda info
29+
conda list
30+
conda config --show-sources
31+
conda config --show
32+
conda activate test-environment
3033
- name: install package
31-
run: ${MAMBA_ROOT_PREFIX}/envs/test-environment/bin/pip install --no-deps .
34+
run: pip install --no-deps .
3235
- name: Install headless server
3336
run: |
3437
sudo apt-get install xvfb

Stoner/Image/widgets.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,7 @@ def keypress(self, event):
343343
plt.title(getattr(getattr(self, f"draw_{self.obj}", ""), "instructions", ""))
344344
return self.draw(event)
345345
if event.key.lower() == "i":
346-
self.invert = ~self.invert
346+
self.invert = not self.invert
347347
return self.draw(event)
348348
if event.key.lower() == "enter":
349349
self.vertices.append((event.xdata, event.ydata))
@@ -524,5 +524,5 @@ def get_mask(self):
524524
vertices = np.array(self.vertices)
525525
meth = getattr(self, f"draw_{self.obj}", lambda x: ([], []))
526526
rr, cc = meth(vertices)
527-
mask[rr, cc] = ~self.invert
527+
mask[rr, cc] = not self.invert
528528
return mask

Stoner/tools/widgets.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ def keypress(self, event):
230230
self.ax.patches[-1].remove()
231231
self.data.fig.canvas.draw()
232232
elif event.key.lower() == "i": # Invert selection
233-
self.invert = ~self.invert
233+
self.invert = not self.invert
234234
col = "red" if self.invert else "green"
235235
for p in self.ax.patches:
236236
p.update({"color": col, "facecolor": col})

tests/test-env.yml

+1
Original file line numberDiff line numberDiff line change
@@ -32,3 +32,4 @@ dependencies:
3232
- statsmodels
3333
- tabulate
3434
- urllib3
35+
- pip

0 commit comments

Comments
 (0)