Skip to content

Commit

Permalink
Merge pull request #12 from kalefranz/executable-entry-points
Browse files Browse the repository at this point in the history
make sure entry points are executable
  • Loading branch information
sannykr authored Jul 9, 2018
2 parents aab90ac + 005313c commit 26a38d9
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{% set name = "tox" %}
{% set version = "2.9.1" %}
{% set sha256 = "752f5ec561c6c08c5ecb167d3b20f4f4ffc158c0ab78855701a75f5cef05f4b8" %}
{% set version = "3.0.0" %}
{% set sha256 = "96efa09710a3daeeb845561ebbe1497641d9cef2ee0aea30db6969058b2bda2f" %}

package:
name: {{ name|lower }}
Expand All @@ -15,6 +15,9 @@ build:
noarch: python
number: 0
script: python setup.py install --single-version-externally-managed --record record.txt
entry_points:
- tox = tox.session:run_main
- tox-quickstart = tox._quickstart:main

requirements:
build:
Expand All @@ -23,14 +26,17 @@ requirements:
- setuptools_scm
run:
- python
- py >=1.4.17
- py >=1.4.17
- pluggy >=0.3.0,<1.0
- virtualenv >=1.11.2
- setuptools

test:
imports:
- tox
commands:
- tox --version
- tox-quickstart --version

about:
home: https://github.com/tox-dev/tox
Expand All @@ -50,4 +56,5 @@ about:
extra:
recipe-maintainers:
- cshaley
- kalefranz
- sannykr

1 comment on commit 26a38d9

@conda-forge-linter
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi! This is the friendly automated conda-forge-webservice.

I updated the Github team because of this commit.

  • @kalefranz were added to this feedstock maintenance team.
    You should get push access to this feedstock and CI services.

Feel free to join the community chat room.

NOTE: Please make sure to not push to the repository directly.
Use branches in your fork for any changes and send a PR.
More details here

Please sign in to comment.