Skip to content

Commit

Permalink
Version 1.0
Browse files Browse the repository at this point in the history
Setting version to 1.0, as the _items bug was corrected in the traits
patch
  • Loading branch information
ferdonline committed Aug 1, 2015
1 parent 69f3c42 commit f022b2a
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 4 deletions.
13 changes: 11 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,20 @@ class System(ClassModel):
users = UserList
location = Str
admin = ModelInstance( User )

mysystem = System() #Empty, but structure completely defined
mysystem = { #Structure defined by individual fields, mixed objects and base values

mysystem_alt = { #Structure defined by individual fields, mixed objects and base values
'users': ListClassModel(),
'location': '',
'admin': User()
}
```
For bug and other reports please contact

## Installation:
To provide Templates and work better with wxPython 3, a branch of traitsui shall be used.
```pip install https://github.com/ferdonline/traitsui/archive/gforms.zip```

Also make saur wxPython is installed and available. With virtualenv you might want to use the --system-site-packages flag.

For bug and other reports please contact.
2 changes: 1 addition & 1 deletion gforms.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ class System(ClassModel):

__author__ = "Fernando Pereira"
__email__ = "[email protected]"
__version__ = "0.2"
__version__ = "1.0"
__status__ = "Development" #"Prototype", "Development", or "Production".
__copyright__ = "Copyright (C) 2015 CERN"

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@
packages=['gforms_traits_patch'],
py_modules=['gforms'],
install_requires = ['traitsui'],
dependency_links=['https://github.com/ferdonline/traitsui/archive/netMan.zip']
dependency_links=['https://github.com/ferdonline/traitsui/archive/gforms.zip']
)

0 comments on commit f022b2a

Please sign in to comment.