Skip to content

Commit 30656ae

Browse files
committed
Merge branch 'release/v0.0.1'
2 parents 928840e + 9c22752 commit 30656ae

7 files changed

+11
-9
lines changed

.relay

Whitespace-only changes.

deploy.bat

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
python setup.py sdist
2+
twine upload dist/*

requirements.dist.txt

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
twine

requirements.jupyter.txt

-1
This file was deleted.

requirements.tests.txt

+2-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
coverage==5.0.4
1+
coverage==5.0.4
2+
dotrelay==0.2.1

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
setup(
33
name = 'pything', # How you named your package folder (MyLib)
44
packages = ['pything'], # Chose the same as "name"
5-
version = '0.0.0', # Start with a small number and increase it with every change you make
5+
version = '0.0.1', # Start with a small number and increase it with every change you make
66
license= 'MIT', # Chose a license from here: https://help.github.com/articles/licensing-a-repository
77
description = 'a Python library starter template', # Give a short description about your library
88
author = 'Jason Yung',
99
author_email = '[email protected]',
1010
url = 'https://github.com/json2d/pything', # Provide either the link to your github or to your website
11-
download_url = 'https://github.com/json2d/pything/archive/v0.0.0.tar.gz',
11+
download_url = 'https://github.com/json2d/pything/archive/v0.0.1.tar.gz',
1212
keywords = ['starter', 'template', 'python', 'thing'], # Keywords that define your package best
1313
install_requires= [],
1414
classifiers=[

tests/units.py

+4-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
1-
import sys
2-
from os import path
3-
sys.path.append( path.dirname( path.dirname( path.abspath(__file__) ) ) )
4-
51
import unittest
62

7-
import pything as pyt
3+
import dotrelay
4+
5+
with dotrelay.Radio(__file__): # 📻
6+
import pything as pyt
87

98
class TestEverything(unittest.TestCase):
109

0 commit comments

Comments
 (0)