Giter Site home page Giter Site logo

Comments (5)

zzzeek avatar zzzeek commented on June 16, 2024 1

twine is now replaced with tweel.sh:

#!/bin/bash

path=$1

tmp_dir=$(mktemp -d -t tweel-XXXXXXXXXX)

cp $path $tmp_dir/
pushd $tmp_dir/

fname=$( basename $path )

output=$( pip wheel -v ${fname} 2>&1 | grep -e "Created wheel" )

echo $output

if [[ $output =~ filename=([^ ]+) ]] ; then
    wheel=${BASH_REMATCH[1]}

    echo "uploading source build ${fname}"
    twine upload ${fname}

    echo "uploading wheel ${wheel}"
    twine upload ${wheel}
else
    echo "couldn't find wheel file"
fi

popd
rm -fr $tmp_dir

from sqlalchemy2-stubs.

zzzeek avatar zzzeek commented on June 16, 2024 1

the wheel should be on pypi

from sqlalchemy2-stubs.

CaselIT avatar CaselIT commented on June 16, 2024

Hi,

This package has only stub files. What's the advantage of publishing wheels?

from sqlalchemy2-stubs.

layday avatar layday commented on June 16, 2024

The wheel is the only distribution format that pip knows how to install. If there isn't a wheel, pip will build one from the sdist, locally. If you've opted into PEP 517 (which you do simply by having a pyproject.toml), this involves creating a temporary directory, downloading and installing setuptools and wheel in it and then calling a couple of PEP 517 hooks in a subprocess to invoke setup.py. Publishing a wheel is energy-efficient ;)

from sqlalchemy2-stubs.

cancan101 avatar cancan101 commented on June 16, 2024

@zzzeek, What do you mean by that snippet? That issue has already been fixed? Or a fix coming soon?

from sqlalchemy2-stubs.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.