Skip to content

Commit d09fe24

Browse files
committed
pystatgen to sgkit-dev rename
1 parent be13fa0 commit d09fe24

37 files changed

+105
-105
lines changed

.github/scripts/test_sgkit_bgen.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
if __name__ == "__main__":
66
urllib.request.urlretrieve(
7-
"https://github.com/pystatgen/sgkit/raw/main/sgkit/tests/io/bgen/data/example.bgen",
7+
"https://github.com/sgkit-dev/sgkit/raw/main/sgkit/tests/io/bgen/data/example.bgen",
88
"example.bgen",
99
)
1010
ds = read_bgen("example.bgen")

.github/scripts/test_sgkit_plink.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
if __name__ == "__main__":
66
for ext in (".bed", ".bim", ".fam"):
77
urllib.request.urlretrieve(
8-
f"https://github.com/pystatgen/sgkit/raw/main/sgkit/tests/io/plink/data/plink_sim_10s_100v_10pmiss{ext}",
8+
f"https://github.com/sgkit-dev/sgkit/raw/main/sgkit/tests/io/plink/data/plink_sim_10s_100v_10pmiss{ext}",
99
f"plink_sim_10s_100v_10pmiss{ext}",
1010
)
1111
ds = read_plink(path="plink_sim_10s_100v_10pmiss")

.github/scripts/test_sgkit_vcf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
if __name__ == "__main__":
88
for ext in (".gz", ".gz.tbi"):
99
urllib.request.urlretrieve(
10-
f"https://github.com/pystatgen/sgkit/raw/main/sgkit/tests/io/vcf/data/sample.vcf{ext}",
10+
f"https://github.com/sgkit-dev/sgkit/raw/main/sgkit/tests/io/vcf/data/sample.vcf{ext}",
1111
f"sample.vcf{ext}",
1212
)
1313
vcf_to_zarr("sample.vcf.gz", "out")

.github/workflows/benchmark.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ on:
77

88
env:
99
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
10-
BENCHMARKS_REPO: pystatgen/sgkit-benchmarks-asv
10+
BENCHMARKS_REPO: sgkit-dev/sgkit-benchmarks-asv
1111
ASV_CONFIG: benchmarks/asv.conf.json
1212
MACHINE_NAME: github-actions # to identify github actions machine as hostname changes everytime
1313

1414
jobs:
1515
build:
1616
# This workflow only runs on the origin org
17-
if: github.repository_owner == 'pystatgen'
17+
if: github.repository_owner == 'sgkit-dev'
1818
runs-on: ubuntu-latest
1919
steps:
2020
- uses: actions/checkout@v2
@@ -62,7 +62,7 @@ jobs:
6262
run: |
6363
cd ~/$BENCHMARKS_REPO
6464
git add .
65-
git config --global user.email "project@pystatgen.org"
65+
git config --global user.email "project@sgkit-dev.org"
6666
git config --global user.name "sgkit benchmark bot"
6767
git commit -m "Update benchmarks"
6868
git push origin main

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
jobs:
1111
build:
1212
# Scheduled runs only on the origin org
13-
if: (github.event_name == 'schedule' && github.repository_owner == 'pystatgen') || (github.event_name != 'schedule')
13+
if: (github.event_name == 'schedule' && github.repository_owner == 'sgkit-dev') || (github.event_name != 'schedule')
1414
runs-on: ubuntu-latest
1515
strategy:
1616
matrix:

.github/workflows/check-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
jobs:
1111
build:
1212
# Scheduled runs only on the origin org
13-
if: (github.event_name == 'schedule' && github.repository_owner == 'pystatgen') || (github.event_name != 'schedule')
13+
if: (github.event_name == 'schedule' && github.repository_owner == 'sgkit-dev') || (github.event_name != 'schedule')
1414
runs-on: ubuntu-latest
1515
strategy:
1616
matrix:

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
make html SPHINXOPTS="-W --keep-going -n"
2929
- name: Commit documentation changes to gh-pages branch
3030
run: |
31-
git clone https://github.com/pystatgen/sgkit.git --branch gh-pages --single-branch gh-pages
31+
git clone https://github.com/sgkit-dev/sgkit.git --branch gh-pages --single-branch gh-pages
3232
mkdir -p gh-pages/latest
3333
cp -r docs/_build/html/* gh-pages/latest
3434
cd gh-pages

.github/workflows/upstream.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
jobs:
1111
build:
1212
# This workflow only runs on the origin org
13-
if: github.repository_owner == 'pystatgen'
13+
if: github.repository_owner == 'sgkit-dev'
1414
runs-on: ubuntu-latest
1515
strategy:
1616
matrix:

.github/workflows/validation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
jobs:
1111
validation_suite:
1212
# This workflow only runs on the origin org
13-
if: github.repository_owner == 'pystatgen'
13+
if: github.repository_owner == 'sgkit-dev'
1414
runs-on: ubuntu-latest
1515
steps:
1616
- uses: actions/checkout@v2

.github/workflows/wheels.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313
jobs:
1414
build:
1515
# This workflow only runs on the origin org
16-
if: github.repository_owner == 'pystatgen'
16+
if: github.repository_owner == 'sgkit-dev'
1717
runs-on: ubuntu-latest
1818
strategy:
1919
matrix:
@@ -40,7 +40,7 @@ jobs:
4040

4141
unix-test:
4242
# This workflow only runs on the origin org
43-
if: github.repository_owner == 'pystatgen'
43+
if: github.repository_owner == 'sgkit-dev'
4444
needs: ['build']
4545
strategy:
4646
matrix:
@@ -72,7 +72,7 @@ jobs:
7272
# Windows doesn't support vcf
7373
windows-test:
7474
# This workflow only runs on the origin org
75-
if: github.repository_owner == 'pystatgen'
75+
if: github.repository_owner == 'sgkit-dev'
7676
runs-on: windows-latest
7777
needs: ['build']
7878
strategy:
@@ -100,7 +100,7 @@ jobs:
100100
python sgkit-copy/.github/scripts/test_sgkit_plink.py
101101
102102
pypi-upload:
103-
if: github.repository_owner == 'pystatgen'
103+
if: github.repository_owner == 'sgkit-dev'
104104
runs-on: ubuntu-latest
105105
needs: ['unix-test', 'windows-test']
106106
steps:

0 commit comments

Comments
 (0)