Skip to content

Commit b452a5c

Browse files
committed
ignore src/ablog/_version.py
1 parent 8f1f612 commit b452a5c

File tree

4 files changed

+10
-6
lines changed

4 files changed

+10
-6
lines changed

.github/workflows/ci.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ jobs:
9696
- uses: actions/checkout@v4
9797
- uses: actions/setup-python@v5
9898
with:
99-
python-version: "3.12"
99+
python-version: "3.13"
100100
- run: python -m pip install -U --user build
101101
- run: python -m build . --sdist
102102
- run: python -m pip install -U --user twine
@@ -112,10 +112,10 @@ jobs:
112112
lfs: true
113113
- uses: conda-incubator/setup-miniconda@v3
114114
with:
115-
activate-environment: sunpy-test
116-
environment-file: sunpy-dev-env.yml
117-
python-version: "3.12"
118-
- name: Install sunpy
115+
activate-environment: ablog-test
116+
environment-file: ablog-conda-test-env.yml
117+
python-version: "3.13"
118+
- name: Install ablog
119119
shell: bash -el {0}
120120
run: |
121121
pip install --no-deps --no-build-isolation .

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -195,3 +195,4 @@ test/
195195
pydata-sphinx-theme/
196196
_build
197197
demo/
198+
src/ablog/_version.py

README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@ Warning
2323

2424
**This version is maintained with the aim to keep it working for SunPy Project website and thus new features or bugfixes are highly unlikely unless they directly impact the SunPy Project**
2525

26-
**We strongly encourage users and interested in parties in submitting patches to ``ablog``**
26+
**We strongly encourage users and interested in parties in submitting patches to ablog**

src/ablog/tests/test_parallel.py

+3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
from pathlib import Path
22
from subprocess import run
3+
import sys
4+
import pytest
35

46

7+
@pytest.mark.xfail("win" in sys.platform, reason="Passes on Windows")
58
def test_not_safe_for_parallel_read(rootdir: Path, tmp_path: Path):
69
"""
710
Ablog is NOT safe for parallel read.

0 commit comments

Comments
 (0)