Skip to content

Commit

Permalink
ignore src/ablog/_version.py
Browse files Browse the repository at this point in the history
  • Loading branch information
nabobalis committed Nov 1, 2024
1 parent 8f1f612 commit dc42d2a
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
python-version: "3.13"
- run: python -m pip install -U --user build
- run: python -m build . --sdist
- run: python -m pip install -U --user twine
Expand All @@ -113,8 +113,8 @@ jobs:
- uses: conda-incubator/setup-miniconda@v3
with:
activate-environment: sunpy-test
environment-file: sunpy-dev-env.yml
python-version: "3.12"
environment-file: ablog-conda-test-env
python-version: "3.13"
- name: Install sunpy
shell: bash -el {0}
run: |
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -195,3 +195,4 @@ test/
pydata-sphinx-theme/
_build
demo/
src/ablog/_version.py
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ Warning

**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**

**We strongly encourage users and interested in parties in submitting patches to ``ablog``**
**We strongly encourage users and interested in parties in submitting patches to ablog**
3 changes: 3 additions & 0 deletions src/ablog/tests/test_parallel.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
from pathlib import Path
from subprocess import run
import sys
import pytest


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

0 comments on commit dc42d2a

Please sign in to comment.