Skip to content

Commit 83302ee

Browse files
committed
prep for v2.0.1
1 parent 272a566 commit 83302ee

File tree

4 files changed

+13
-97
lines changed

4 files changed

+13
-97
lines changed

RELEASE

Lines changed: 10 additions & 47 deletions
Original file line numberDiff line numberDiff line change
@@ -1,47 +1,10 @@
1-
Man files
2-
pkg index
3-
- License
4-
- Description
5-
- Platform
6-
Documentation
7-
- epydoc (cd pyx12; make doc)
8-
- map files (cd map; make all)
9-
- man pages (cd bin; make all)
10-
- update web site (cd pyx12/htdocs/; svn export --force https://pyx12.svn.sourceforge.net/svnroot/pyx12/pyx12-web/trunk/ .)
11-
12-
make packages
13-
- python setup.py sdist --force-manifest
14-
- python setup.py sdist --formats=gztar,bztar,zip
15-
- python setup.py bdist_wininst
16-
- python setup.py bdist_egg
17-
package index
18-
release notes
19-
Copy bzip to /usr/ports/distfiles/
20-
21-
FreeBSD Port
22-
make port
23-
- #plist.py > pkg-plist; cp pkg-plist to port
24-
- #make makesum
25-
- make describe (string should look ok)
26-
- port test .
27-
28-
Upload packages to sf
29-
post release to sf, python-announce
30-
python package index (http://cheeseshop.python.org/)
31-
Tag tree
32-
svn copy https://pyx12.svn.sourceforge.net/svnroot/pyx12/pyx12/trunk/ \
33-
https://pyx12.svn.sourceforge.net/svnroot/pyx12/pyx12/tags/RELEASE_1_5_0 \
34-
-m "Tag release 1.5.0"
35-
36-
install/test port from sf download
37-
run unit/functional tests on installed port
38-
check performance
39-
submit FreeBSD port
40-
[UPDATE] textproc/py-pyx12 to 1.5.0
41-
non-critical
42-
low
43-
maintainer-update
44-
45-
install port on local machines
46-
pip install ...
47-
virtualenv
1+
$ python setup.py test
2+
# update version in setup.py, pyx12.__init__.py
3+
# verify test is passing on travis
4+
$ git tag v2.0.1
5+
$python setup.py sdist upload -r ppt
6+
$python setup.py sdist upload
7+
8+
mkvirtualenv pyx12-dist -i pyx12
9+
python setup.py test
10+
functional tests

plist.py

Lines changed: 0 additions & 45 deletions
This file was deleted.

pyx12/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "2.0.0"
1+
__version__ = "2.0.1"

setup.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,21 @@
11
from setuptools import setup
22

33

4-
__version__ = ""
5-
execfile('pyx12/version.py')
64
long_description = """Pyx12 is a HIPAA X12 document validator and converter. It parses an ANSI X12N data file and
75
validates it against a representation of the Implementation Guidelines for a HIPAA transaction. By default, it
86
creates a 997 response for 4010 and a 999 response for 5010. It can create an html representation of the X12
97
document or can translate to and from an XML representation of the data file."""
108

119
setup(
1210
name="pyx12",
13-
version=__version__,
11+
version="2.0.1",
1412
long_description=long_description,
1513
license='BSD',
1614
description="HIPAA X12 validator, parser and converter",
1715
keywords='x12 hipaa healthcare edi',
1816
author="John Holland",
1917
author_email="[email protected]",
20-
url="http://github.com/azoner/pyx12#pyx12",
18+
url="http://github.com/azoner/pyx12",
2119
platforms='All',
2220
packages=['pyx12', 'pyx12.scripts'],
2321
package_data={

0 commit comments

Comments
 (0)