Commit 9985ef33 authored by Andreas Tille's avatar Andreas Tille
Browse files

New upstream version 1.4.1

parent cb5b8e3d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@ version: 2
jobs:
  build:
    docker:
      - image: circleci/python:3.6.2
      - image: circleci/python:3
    environment:
      # The github organization or username of the repository which hosts the
      # project and documentation.
+15 −11
Original line number Diff line number Diff line
comment: off

coverage:
  # number of digits after decimal point
  precision: 2
  # round coverage value down to `precision`
  round: down

  status:
    # master coverage
    project:
      default:
        # Commits pushed to master should not make the overall
        # project coverage decrease by more than 1%:
        # auto: use coverage from base commit
        target: auto
        # Allow coverage to drop by the following and still be success
        threshold: 1%

    # PR coverage
    patch:
      default:
        # Be tolerant on slight code coverage diff on PRs to limit
        # noisy red coverage status on github PRs.
        # Note The coverage stats are still uploaded
        # to codecov so that PR reviewers can see uncovered lines
        # in the github diff if they install the codecov browser
        # extension:
        # https://github.com/codecov/browser-extension
        target: auto
        threshold: 1%

# Ignore these paths when calculating the coverage
ignore:
  - "pydicom/tests"
  - "pydicom/benchmarks"

# Pull request comments, use `comment: off` to disable
comment: off

.github/ISSUE_TEMPLATE.md

deleted100644 → 0
+0 −50
Original line number Diff line number Diff line
<!-- Instructions For Filing a Bug: https://github.com/pydicom/pydicom/blob/master/CONTRIBUTING.md#filing-bugs -->

#### Description
<!-- Example: Attribute Error thrown when printing (0x0010, 0x0020) patient Id> 0-->

#### Steps/Code to Reproduce
<!--
Example:
```py
from io import BytesIO
from pydicom import dcmread

bytestream = b'\x02\x00\x02\x00\x55\x49\x16\x00\x31\x2e\x32\x2e\x38\x34\x30\x2e\x31' \
             b'\x30\x30\x30\x38\x2e\x35\x2e\x31\x2e\x31\x2e\x39\x00\x02\x00\x10\x00' \
             b'\x55\x49\x12\x00\x31\x2e\x32\x2e\x38\x34\x30\x2e\x31\x30\x30\x30\x38' \
             b'\x2e\x31\x2e\x32\x00\x20\x20\x10\x00\x02\x00\x00\x00\x01\x00\x20\x20' \
             b'\x20\x00\x06\x00\x00\x00\x4e\x4f\x52\x4d\x41\x4c'

fp = BytesIO(bytestream)
ds = dcmread(fp, force=True)

print(ds.PatientID)
```
If the code is too long, feel free to put it in a public gist and link
it in the issue: https://gist.github.com

When possible use pydicom testing examples to reproduce the errors. Otherwise, provide
an anonymous version of the data in order to replicate the errors.
-->

#### Expected Results
<!-- Please paste or describe the expected results.
Example: No error is thrown and the name of the patient is printed.-->

#### Actual Results
<!-- Please paste or specifically describe the actual output or traceback.
(Use %xmode to deactivate ipython's trace beautifier)
Example: ```AttributeError: 'FileDataset' object has no attribute 'PatientID'```
-->

#### Versions
<!--
Please run the following snippet and paste the output below.
import platform; print(platform.platform())
import sys; print("Python", sys.version)
import pydicom; print("pydicom", pydicom.__version__)
-->


<!-- Thanks for contributing! -->
+27 −0
Original line number Diff line number Diff line
---
name: Bug report
about: Create a report to help us improve
title: ''
labels: ''
assignees: ''

---

**Describe the bug**
A clear and concise description of what the bug is.

**Expected behavior**
What you expected to happen (please include a reference to the DICOM standard
if relevant).

**Steps To Reproduce**
How to reproduce the issue. Please include a minimum working code sample, the
traceback (if any) and the anonymized DICOM dataset (if relevant).

**Your environment**
Please run the following and paste the output.
```bash
$ python -c "import platform; print(platform.platform())"
$ python -c "import sys; print('Python ', sys.version)"
$ python -c "import pydicom; print('pydicom ', pydicom.__version__)"
```
+15 −0
Original line number Diff line number Diff line
---
name: Documentation issue
about: For issues with the documentation, no matter how small
title: ''
labels: Documentation
assignees: ''

---

**Link to the documentation**
A link to the documentation page containing the issue, ideally from the
[development version](https://pydicom.github.io/pydicom/dev/).

**Describe the issue**
A clear and concise description of what the issue is.
Loading