Re: Request to join DPMT

2017-09-25 Thread Piotr Ożarowski
[James Valleroy, 2017-09-07]
> I would like to join the Debian Python Modules Team. I am working on a
> package for django-axes and would like it to maintain it within the team.
> 
> My Alioth login is jvalleroy-guest. I have read
> https://python-modules.alioth.debian.org/policy.html and accept it.

welcome on board!

(and sorry for the delay)
-- 
GPG: 1D2F A898 58DA AF62 1786 2DF7 AEF6 F1A2 A745 7645



Re: Python 3 Statsmodels & Pandas

2017-09-25 Thread Andreas Tille
Hi Diane,

On Sun, Sep 24, 2017 at 11:45:43PM -0700, Diane Trout wrote:
> The remaining issues are:
> 
> * Some of the doc pages call get_rdataset, and there's no network
> access in the builder so those calls fail. (ugliest error)

Can you pre-fetch the data and provide it in debian/datasets?

> * There's a lintian warning about no bindnow.

I would ignore this for the moment.

> * there's one intersphinx reference that's not in debian.

If it is not very important I would probably exclude the piece of
documentation which is affected.  What exact reference is this?  Can we
help by packaging something else that might be needed later not only
inside the docs but also in code?

Kind regards

  Andreas. 

-- 
http://fam-tille.de



Re: Python 3 Statsmodels & Pandas

2017-09-25 Thread Piotr Ożarowski
> > > I made larger changes to statsmodels, by using pybuild instead of the
> > > previous multiple targets in debian/rules.
> > you can simplify it even further by using pybuild's --ext-dest-dir:
> > (I didn't test as this branch FTBFS for me)
> how recent is that feature?

it's available since the initial release IIRC
-- 
GPG: 1D2F A898 58DA AF62 1786 2DF7 AEF6 F1A2 A745 7645



Re: subliminal

2017-09-25 Thread Piotr Ożarowski
[drebs, 2017-09-23]
> Hi, I am interested in updating the subliminal[2] package[1]. Is there
> someone else already working on that? If not, what would be the process
> for having it uploaded? (i am not a dm or dd) Should i send the source
> package to this list? Would someone sponsor it? :)

point us to this source package if you're not a PAPT member
(if you are PAPT member, just commit your changes in the repo and ping
me)
-- 
GPG: 1D2F A898 58DA AF62 1786 2DF7 AEF6 F1A2 A745 7645



Re: Python 3 Statsmodels & Pandas

2017-09-25 Thread Diane Trout
On Mon, 2017-09-25 at 09:44 +0200, Andreas Tille wrote:
> 
> > * Some of the doc pages call get_rdataset, and there's no network
> > access in the builder so those calls fail. (ugliest error)
> 
> Can you pre-fetch the data and provide it in debian/datasets?

Looks like it'll take a bit of patching. There is a caching mechanism,
but it's off by default.

> > * there's one intersphinx reference that's not in debian.
> 
> If it is not very important I would probably exclude the piece of
> documentation which is affected.  What exact reference is this?  Can
> we
> help by packaging something else that might be needed later not only
> inside the docs but also in code?

intersphinx is used for cross references, so there's two places in the
local docs which show plain text, and hyperlinks on the official site.

If you look at:

http://www.statsmodels.org/stable/dev/git_notes.html#merging-vs-rebasin
g

in the sentence "One great place to start learning about rebase is
rebasing without tears." the phrase "rebasing without tears" is a link
to the pydagogue site, and in my local package it's just plain text.

I'm planning on ignoring it for now.

Diane



Re: Python 3 Statsmodels & Pandas

2017-09-25 Thread Andreas Tille
Hi Diane,

On Mon, Sep 25, 2017 at 10:38:00AM -0700, Diane Trout wrote:
> 
> I'm planning on ignoring it for now.

Sounds sensible.  Thanks a lot for your work on this

  Andreas.

-- 
http://fam-tille.de



Re: Python 3 Statsmodels & Pandas

2017-09-25 Thread Diane Trout
On Mon, 2017-09-25 at 09:44 +0200, Andreas Tille wrote:
> Hi Diane,
> 
> On Sun, Sep 24, 2017 at 11:45:43PM -0700, Diane Trout wrote:
> > The remaining issues are:
> > 
> > * Some of the doc pages call get_rdataset, and there's no network
> > access in the builder so those calls fail. (ugliest error)
> 
> Can you pre-fetch the data and provide it in debian/datasets?

I made the changes and cached the downloaded zip files

and then realized isn't this redistributing datasets?

Don't we need to verify the license before uploading?

Below is what I've found so far, (before getting tired of licensing
issues)

Any thoughts about how to handle this?

Here's a list of the file names from the include-binaries file I
created via caching.

datasets.csv.zip
csv,HistData,Guerry.csv.zip 
doc,HistData,rst,Guerry.rst.zip 
csv,COUNT,medpar.csv.zip
doc,COUNT,rst,medpar.rst.zip
csv,car,Duncan.csv.zip  
doc,car,rst,Duncan.rst.zip  
csv,robustbase,starsCYG.csv.zip 
doc,robustbase,rst,starsCYG.rst.zip 
doc,car,rst,Moore.rst.zip   
csv,vcd,Arthritis.csv.zip   
doc,vcd,rst,Arthritis.rst.zip   
csv,MASS,epil.csv.zip   
doc,MASS,rst,epil.rst.zip   
csv,geepack,dietox.csv.zip  
doc,geepack,rst,dietox.rst.zip  

The files are being downloaded from this github repository.

https://github.com/vincentarelbundock/Rdatasets a useful index of the
datasets is 
http://vincentarelbundock.github.com/Rdatasets/datasets.html

Guerry.csv is probably safe as its from "Essay on the Moral Statistics
of France" published 1833.

medpar 2016's license is here:
https://www.healthdata.gov/dataset/medpar-limited-data-set-lds-hospital
-national
and is listed as "Open Data Commons Open Database License"
https://opendatacommons.org/licenses/odbl/1.0/

Duncan is the Duncan's Occupational Prestige Data from 1950.
Couldn't find a license

starsCYG is Data for the Hertzsprung-Russell Diagram of the star
cluster CYG OB1
http://ugrad.stat.ubc.ca/R/library/rrcov/html/stars.html
Couldn't find a license

Moore is from Moore, J. C., Jr. and Krupat, E. (1971) 
Relationship between source status, authoritarianism and conformity in
a social setting.
Couldn't find a license


Diane