Skip to content

Commit

Permalink
udpate build numbers and recipes
Browse files Browse the repository at this point in the history
  • Loading branch information
phobson committed Jun 2, 2016
1 parent c78a7cd commit 4c45b5c
Show file tree
Hide file tree
Showing 8 changed files with 22 additions and 56 deletions.
8 changes: 0 additions & 8 deletions conda.recipe/dev/bld.bat

This file was deleted.

9 changes: 0 additions & 9 deletions conda.recipe/dev/build.sh

This file was deleted.

17 changes: 9 additions & 8 deletions conda.recipe/dev/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package:
name: pybmpdb
version: 0.1.x
version: "0.1.x"

source:
path: ../../
Expand All @@ -10,37 +10,38 @@ source:
# - fix.patch

build:
number: 1
number: 2
script: python setup.py install

requirements:
build:
- python
- setuptools
- pandas
- numexpr
- seaborn
- wqio
- pyodbc
- wqio 0.3.2

run:
- python
- setuptools
- wqio
- pandas
- numexpr
- pyodbc
- seaborn
- statsmodels
- openpyxl
- xlrd
- six
- wqio 0.3.2

test:
imports:
- pybmpdb

commands:
- python -c "import pybmpdb; pybmpdb.test()"

requires:
- nose
- mock
- wqio

about:
Expand Down
8 changes: 0 additions & 8 deletions conda.recipe/release/bld.bat

This file was deleted.

9 changes: 0 additions & 9 deletions conda.recipe/release/build.sh

This file was deleted.

17 changes: 9 additions & 8 deletions conda.recipe/release/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package:
name: pybmpdb
version: !!str 0.1.2
version: "0.1.2"

source:
git_url: https://github.com/Geosyntec/pybmpdb.git
Expand All @@ -11,36 +11,37 @@ source:

build:
number: 1
script: python setup.py install

requirements:
build:
- python
- setuptools
- pandas
- numexpr
- seaborn
- pyodbc
- wqio
- wqio 0.3.2

run:
- python
- setuptools
- wqio
- seaborn
- pandas
- numexpr
- pyodbc
- seaborn
- statsmodels
- openpyxl
- xlrd
- six
- wqio 0.3.2

test:
imports:
- pybmpdb

commands:
- python -c "import pybmpdb; pybmpdb.test()"

requires:
- nose
- mock
- wqio

about:
Expand Down
3 changes: 1 addition & 2 deletions pybmpdb/summary.py
Original file line number Diff line number Diff line change
Expand Up @@ -181,8 +181,7 @@ def getSummaryData(dbpath=None, catanalysis=False,
dbpath = resource_filename("pybmpdb.data", 'bmpdata.csv')

db = dataAccess.Database(dbpath, catanalysis=catanalysis)
import pdb
pdb.set_trace()

# astable must be true here. The input value is respected later
table = db.selectData(astable=True, useTex=useTex, **selection)

Expand Down
7 changes: 3 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,23 +18,22 @@ def getDataFiles(folder):
DESCRIPTION = "pybmpdb: Analyze data from the International Stormwater BMP Database"
LONG_DESCRIPTION = DESCRIPTION
NAME = "pybmpdb"
VERSION = "0.1"
VERSION = "0.1.x"
AUTHOR = "Paul Hobson (Geosyntec Consultants)"
AUTHOR_EMAIL = "phobson@geosyntec.com"
URL = "https://github.com/Geosyntec/pybmpdb"
DOWNLOAD_URL = "https://github.com/Geosyntec/pybmpdb/archive/master.zip"
LICENSE = "BSD 3-clause"
PACKAGES = find_packages(exclude=[])
PLATFORMS = "Python 2.7, 3.3 and later."
PLATFORMS = "Python 3.4, 3.5 and later."
CLASSIFIERS = [
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Intended Audience :: Science/Research",
"Topic :: Software Development :: Libraries :: Python Modules",
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
]
INSTALL_REQUIRES = ['wqio']
PACKAGE_DATA = {
Expand Down

0 comments on commit 4c45b5c

Please sign in to comment.