Skip to content

Commit 4e62512

Browse files
authored
Merge pull request #431 from P2GX/release-0.9.9
Make release `0.9.9`
2 parents 5920854 + b049259 commit 4e62512

File tree

115 files changed

+2807
-2433
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

115 files changed

+2807
-2433
lines changed

.github/workflows/python_ci.yml

Lines changed: 32 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -7,19 +7,36 @@ on:
77
branches: [ main, develop ]
88

99
jobs:
10-
run-ci:
11-
runs-on: ubuntu-latest
12-
strategy:
13-
matrix:
14-
python-version: ['3.10', '3.11', '3.12']
10+
run-ci:
11+
runs-on: ubuntu-latest
12+
strategy:
13+
matrix:
14+
python-version: ['3.10', '3.11', '3.12']
1515

16-
steps:
17-
- uses: actions/checkout@v4
18-
- name: Initialize Python
19-
uses: actions/setup-python@v4.3.1
20-
with:
21-
python-version: ${{ matrix.python-version }}
22-
- name: Install package
23-
run: python3 -m pip install --editable .[test]
24-
- name: Run pytest tests
25-
run: MPLBACKEND=Agg GPSEA_CACHEDIR=.gpsea_ci_cachedir pytest
16+
steps:
17+
- uses: actions/checkout@v4
18+
- name: Initialize Python
19+
uses: actions/setup-python@v4.3.1
20+
with:
21+
python-version: ${{ matrix.python-version }}
22+
- name: Install package
23+
run: python3 -m pip install --editable .[test]
24+
- name: Run pytest tests
25+
run: MPLBACKEND=Agg GPSEA_CACHEDIR=.gpsea_ci_cachedir pytest
26+
27+
formatting:
28+
name: Check code formatting
29+
runs-on: ubuntu-latest
30+
timeout-minutes: 15
31+
steps:
32+
- name: Check out
33+
uses: actions/checkout@v4
34+
35+
- name: Initialize Python 3.12
36+
uses: actions/setup-python@v4.3.1
37+
with:
38+
python-version: "3.12"
39+
- name: Install package
40+
run: python3 -m pip install --editable .[test]
41+
- name: Check formatting
42+
run: ruff format --check

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2023, The Monarch Initiative
3+
Copyright (c) 2025, Lauren Rekerle, Daniel Danis, Peter N Robinson
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
# The short X.Y version.
6565
version = u'0.9'
6666
# The full version, including alpha/beta/rc tags.
67-
release = u'0.9.8'
67+
release = u'0.9.9-dev0'
6868

6969
# The language for content autogenerated by Sphinx. Refer to documentation
7070
# for a list of supported languages.
-476 Bytes
Loading

0 commit comments

Comments
 (0)