Snapcraft Python plugin install wrong pip version during snap build

Hey guys,

when I create a snap with a python plugin, it runs fine, but this I find courious.

Fetching and installing pip...
Collecting pip
  Using cached https://files.pythonhosted.org/packages/0f/74/ecd13431bcc456ed390b44c8a6e917c1820365cbebcb6a8974d1cd045ab4/pip-10.0.1-py2.py3-none-any.whl
  Saved ./parts/pypart/python-packages/pip-10.0.1-py2.py3-none-any.whl
Successfully downloaded pip
Ignoring indexes: https://pypi.python.org/simple
Collecting pip
Installing collected packages: pip
Successfully installed pip-8.1.1

It says is downloading 10.0x but install 8.1x, any ideas?
I create this snap from an ubuntucore in classic mode

Cheers

Is there anyway I could see the project repo or snapcraft.yaml for this?

Here is the yaml file:

name: pyopcda
version: '0.1'
summary: Python opc da modul
description: Python opc da modul, Example config in $SNAP/config
architectures: [armhf]
grade: devel
confinement: strict
apps:
 pyopcda:
  command: python3 $SNAP/bin/main.py
  daemon: simple
  restart-condition: always
  plugs: [network]

parts:
 pyopcda:
   plugin: dump
   organize:
    'config.json' : config/
    'main.py' : bin/
 pypart:
  plugin: python
  stage-packages: [python3-schedule,python3-requests]
  source: https://github.com/tokurz/OpenOPC.git
  source-type: git
  source-tag: python3x