martsberger / django-pivot

A module for pivoting Django Querysets
MIT License
210 stars 16 forks source link

Include missing files in sdist #16

Closed thatch closed 1 year ago

thatch commented 4 years ago

Include missing files in sdist for #15

Tested with

++ mktemp -d
+ D=/tmp/tmp.a77pmJgcLB
+ trap 'rm -rf /tmp/tmp.a77pmJgcLB' EXIT
+ python -m venv /tmp/tmp.a77pmJgcLB
+ python setup.py sdist -d /tmp/tmp.a77pmJgcLB
running sdist
running egg_info
writing django_pivot.egg-info/PKG-INFO
writing dependency_links to django_pivot.egg-info/dependency_links.txt
writing requirements to django_pivot.egg-info/requires.txt
writing top-level names to django_pivot.egg-info/top_level.txt
reading manifest file 'django_pivot.egg-info/SOURCES.txt'
reading manifest template 'MANIFEST.in'
writing manifest file 'django_pivot.egg-info/SOURCES.txt'
warning: sdist: standard file not found: should have one of README, README.rst, README.txt, README.md

running check
creating django-pivot-1.8.1
creating django-pivot-1.8.1/django_pivot
creating django-pivot-1.8.1/django_pivot.egg-info
creating django-pivot-1.8.1/django_pivot/tests
creating django-pivot-1.8.1/django_pivot/tests/pivot
copying files to django-pivot-1.8.1...
copying MANIFEST.in -> django-pivot-1.8.1
copying Readme.rst -> django-pivot-1.8.1
copying setup.py -> django-pivot-1.8.1
copying django_pivot/__init__.py -> django-pivot-1.8.1/django_pivot
copying django_pivot/histogram.py -> django-pivot-1.8.1/django_pivot
copying django_pivot/pivot.py -> django-pivot-1.8.1/django_pivot
copying django_pivot/utils.py -> django-pivot-1.8.1/django_pivot
copying django_pivot.egg-info/PKG-INFO -> django-pivot-1.8.1/django_pivot.egg-info
copying django_pivot.egg-info/SOURCES.txt -> django-pivot-1.8.1/django_pivot.egg-info
copying django_pivot.egg-info/dependency_links.txt -> django-pivot-1.8.1/django_pivot.egg-info
copying django_pivot.egg-info/requires.txt -> django-pivot-1.8.1/django_pivot.egg-info
copying django_pivot.egg-info/top_level.txt -> django-pivot-1.8.1/django_pivot.egg-info
copying django_pivot/tests/__init__.py -> django-pivot-1.8.1/django_pivot/tests
copying django_pivot/tests/test_mysql_settings.py -> django-pivot-1.8.1/django_pivot/tests
copying django_pivot/tests/test_postgres_settings.py -> django-pivot-1.8.1/django_pivot/tests
copying django_pivot/tests/test_sqlite_settings.py -> django-pivot-1.8.1/django_pivot/tests
copying django_pivot/tests/pivot/__init__.py -> django-pivot-1.8.1/django_pivot/tests/pivot
copying django_pivot/tests/pivot/models.py -> django-pivot-1.8.1/django_pivot/tests/pivot
copying django_pivot/tests/pivot/test.py -> django-pivot-1.8.1/django_pivot/tests/pivot
Writing django-pivot-1.8.1/setup.cfg
Creating tar archive
removing 'django-pivot-1.8.1' (and everything under it)
+ cd /
+ /tmp/tmp.a77pmJgcLB/bin/pip install /tmp/tmp.a77pmJgcLB/django-pivot-1.8.1.tar.gz
Processing /tmp/tmp.a77pmJgcLB/django-pivot-1.8.1.tar.gz
Collecting django>=1.10 (from django-pivot==1.8.1)
  Using cached https://files.pythonhosted.org/packages/9d/04/04abb097c84c770180eeebe7ed920ce42f9917ab5ad4de01ff8ed11bc25b/Django-3.0.6-py3-none-any.whl
Collecting six (from django-pivot==1.8.1)
  Using cached https://files.pythonhosted.org/packages/ee/ff/48bde5c0f013094d729fe4b0316ba2a24774b3ff1c52d924a8a4cb04078a/six-1.15.0-py2.py3-none-any.whl
Collecting sqlparse>=0.2.2 (from django>=1.10->django-pivot==1.8.1)
  Using cached https://files.pythonhosted.org/packages/85/ee/6e821932f413a5c4b76be9c5936e313e4fc626b33f16e027866e1d60f588/sqlparse-0.3.1-py2.py3-none-any.whl
Collecting asgiref~=3.2 (from django>=1.10->django-pivot==1.8.1)
  Using cached https://files.pythonhosted.org/packages/68/00/25013f7310a56d17e1ab6fd885d5c1f216b7123b550d295c93f8e29d372a/asgiref-3.2.7-py2.py3-none-any.whl
Collecting pytz (from django>=1.10->django-pivot==1.8.1)
  Using cached https://files.pythonhosted.org/packages/4f/a4/879454d49688e2fad93e59d7d4efda580b783c745fd2ec2a3adf87b0808d/pytz-2020.1-py2.py3-none-any.whl
Installing collected packages: sqlparse, asgiref, pytz, django, six, django-pivot
  Running setup.py install for django-pivot: started
    Running setup.py install for django-pivot: finished with status 'done'
Successfully installed asgiref-3.2.7 django-3.0.6 django-pivot-1.8.1 pytz-2020.1 six-1.15.0 sqlparse-0.3.1
WARNING: You are using pip version 19.2.3, however version 20.1.1 is available.
You should consider upgrading via the 'pip install --upgrade pip' command.
+ echo Success
Success
++ rm -rf /tmp/tmp.a77pmJgcLB
codecov-commenter commented 4 years ago

Codecov Report

Merging #16 into master will not change coverage. The diff coverage is n/a.

Impacted file tree graph

@@           Coverage Diff           @@
##           master      #16   +/-   ##
=======================================
  Coverage   99.00%   99.00%           
=======================================
  Files           3        3           
  Lines         101      101           
=======================================
  Hits          100      100           
  Misses          1        1           

Continue to review full report at Codecov.

Legend - Click here to learn more Δ = absolute <relative> (impact), ø = not affected, ? = missing data Powered by Codecov. Last update 256a928...b230376. Read the comment docs.

martsberger commented 1 year ago

Thanks for this, sorry it took so long to get around to looking at it.