Skip to content

Commit

Permalink
More tests to unbreak PyPI releases
Browse files Browse the repository at this point in the history
  • Loading branch information
eigenhombre committed Jul 21, 2022
1 parent 125b72b commit 4e5e74c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
1 change: 0 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,5 @@ RUN apt-get -qq -y upgrade

RUN apt-get install -qq -y make

RUN echo
RUN pip install smallscheme
RUN echo '(+ 1 1)' | smallscheme
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ pypi-test:
pypi:
. venv/bin/activate && twine upload -r smallscheme dist/*.tar.gz

pip-docker-test:
docker build -t smallscheme .

release:
./bumpver
. venv/bin/activate && python setup.py sdist
2 changes: 0 additions & 2 deletions smallscheme/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,2 @@
from scheme import *

from . import _version
__version__ = _version.get_versions()['version']
2 changes: 1 addition & 1 deletion smallscheme/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import sys
import argparse
from scheme import evalu, repl, parse_str
from smallscheme.scheme import evalu, repl, parse_str

def run_file(filename):
env = {}
Expand Down

0 comments on commit 4e5e74c

Please sign in to comment.