Skip to content

Commit ef415d0

Browse files
committed
debugging conda workflow
1 parent 5644954 commit ef415d0

File tree

3 files changed

+16
-4
lines changed

3 files changed

+16
-4
lines changed

.github/workflows/create-release.yml

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ jobs:
165165
strategy:
166166
matrix:
167167
python-version:
168-
- "3.7"
168+
# - "3.7" # skip for now
169169
- "3.8"
170170
- "3.9"
171171
- "3.10"
@@ -180,6 +180,18 @@ jobs:
180180
with:
181181
tag: "conda-${{ needs.version_check.outputs.PCAPKIT_VERSION }}+0"
182182

183+
- uses: actions/setup-python@v4
184+
with:
185+
python-version: ${{ matrix.python-version }}
186+
187+
- name: Install and Setup
188+
run: |
189+
set -x
190+
191+
python -m pip install -U pip setuptools wheel
192+
python -m pip install -e .[all]
193+
python -m pip install pathlib2 typing_extensions
194+
183195
- name: Setup Conda Distribution
184196
run: |
185197
export PCAPKIT_DEVMODE=1

.github/workflows/cron-conda.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ name: "Conda Update"
33
on:
44
schedule:
55
- cron: '0 10 * * 6' # everyday at 10am
6-
push:
7-
branches: [main, ]
6+
# push:
7+
# branches: [main, ]
88

99
jobs:
1010
conda-update:

conda/build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
-1
1+
0

0 commit comments

Comments
 (0)