Skip to content

Commit

Permalink
fix markdown rendering to fix pypi upload (man-group#943)
Browse files Browse the repository at this point in the history
fix CHANGES.md.
test rendering in build
  • Loading branch information
dunckerr authored Jan 21, 2022
1 parent 97947b2 commit f1759c0
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 7 deletions.
9 changes: 9 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,15 @@ defaults: &defaults
pip install pytest-server-fixtures[mongodb]
pip freeze
python --version
- run:
name: Check Markdown rendering
command: |
pip install --upgrade pip
pip install readme_renderer
echo CHANGES.md
python -m readme_renderer CHANGES.md -o c.html
echo README.md
python -m readme_renderer README.md -o r.html
# Save dependency cache
- save_cache:
key: v1-dep-{{ .Branch }}-{{ epoch }}
Expand Down
16 changes: 9 additions & 7 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
* BugFix: #670 Lots of pycodestyle fixes
* BugFix: #691 Fix arrays_to_mgr for pandas 0.23.4+
* BugFix: #698 Fix no handler in logging warning
* BugFix: #705 Use sort_index instead of sortlevel_
* BugFix: #705 Use sort_index instead of sortlevel\_
* BugFix: #710: Initialize SEGMENT_SHA in versions for writes and appends
* Feature: #669 Experimental initial implementation of async arctic
* Feature: #704 Do not enable sharding by default in BSONStore.
Expand Down Expand Up @@ -377,12 +377,14 @@
### 1.16 (2015-12-15)

* Feature: ArticTransaction now supports non-audited 'transactions': `audit=False`
```
with ArcticTransaction(Arctic('hostname')['some_library'], 'symbol', audit=False) as at:
...
```
This is useful for batch jobs which read-modify-write and don't want to clash with
concurrent writers, and which don't require keeping all versions of a symbol.

```
with ArcticTransaction(Arctic('hostname')['some_library'], 'symbol', audit=False) as at:
...
```

This is useful for batch jobs which read-modify-write and don't want to clash with
concurrent writers, and which don't require keeping all versions of a symbol.

### 1.15 (2015-11-25)

Expand Down

0 comments on commit f1759c0

Please sign in to comment.