Package Details: pytrainer 2.2.1-2

Git Clone URL: https://aur.archlinux.org/pytrainer.git (read-only, click to copy)
Package Base: pytrainer
Description: tool to log your sport activities.
Upstream URL: https://github.com/pytrainer/pytrainer/wiki
Licenses: GPL
Submitter: None
Maintainer: privong
Last Packager: privong
Votes: 20
Popularity: 0.000000
First Submitted: 2006-10-18 16:58 (UTC)
Last Updated: 2023-12-26 16:23 (UTC)

Dependencies (9)

Required by (0)

Sources (2)

Latest Comments

« First ‹ Previous 1 2 3 4 5 6 Next › Last »

zoe commented on 2018-01-10 12:46 (UTC)

Please, do NOT flag this package out-of-date, because version 1.11.0 is bugged : maps (Google and OpenStreetMap) are not available in 1.11.0 ; so I downgraded it to 1.10.0

zoe commented on 2015-03-09 09:23 (UTC)

I adopted this package ; added python2-sqlparse dependancy

xduugu commented on 2014-01-07 21:21 (UTC)

That's again an issue with python2-migrate and a new sqlalchemy release. Could you file a bug report? You can use https://bugs.archlinux.org/task/34776 as template.

lifo2 commented on 2014-01-06 22:38 (UTC)

I had the following error: Traceback (most recent call last): File "pytrainer", line 96, in <module> from pytrainer.main import pyTrainer File "/usr/lib/python2.7/site-packages/pytrainer/main.py", line 38, in <module> from upgrade.data import initialize_data File "/usr/lib/python2.7/site-packages/pytrainer/upgrade/data.py", line 23, in <module> from pytrainer.upgrade.migratedb import MigratableDb File "/usr/lib/python2.7/site-packages/pytrainer/upgrade/migratedb.py", line 19, in <module> from migrate.versioning.api import db_version, upgrade, version, version_control File "/usr/lib/python2.7/site-packages/migrate/__init__.py", line 9, in <module> from migrate.changeset import * File "/usr/lib/python2.7/site-packages/migrate/changeset/__init__.py", line 21, in <module> from migrate.changeset.schema import * File "/usr/lib/python2.7/site-packages/migrate/changeset/schema.py", line 15, in <module> from migrate.changeset.databases.visitor import (get_engine_visitor, File "/usr/lib/python2.7/site-packages/migrate/changeset/databases/visitor.py", line 6, in <module> from migrate.changeset import ansisql File "/usr/lib/python2.7/site-packages/migrate/changeset/ansisql.py", line 10, in <module> from sqlalchemy.schema import SchemaVisitor ImportError: cannot import name SchemaVisitor That I fixed by editing /usr/lib/python2.7/site-packages/migrate/changeset/ansisql.py to change the following line: from sqlalchemy.schema import SchemaVisitor by: from sqlalchemy.sql.base import SchemaVisitor

xduugu commented on 2013-08-30 08:06 (UTC)

Thanks for the hint, I didn't notice that they move the project. It will however take some time until I have updated everything (dependencies etc.).

privong commented on 2013-08-28 00:56 (UTC)

Flagged out of date as 1.10.0 is available (https://github.com/pytrainer/pytrainer/blob/master/CHANGES). The project appears to have also moved to github: https://github.com/pytrainer/pytrainer

<deleted-account> commented on 2013-04-15 10:55 (UTC)

Thanks, works great.

xduugu commented on 2013-04-14 12:00 (UTC)

The issue is that python2-migrate is not compatible with the version of python2-sqlalchemy. You can fix it by adjusting a line in /usr/lib/python2.7/site-packages/migrate/versioning/schema.py. I've filled a bug report against python2-migrate which includes a patch. https://bugs.archlinux.org/task/34776

<deleted-account> commented on 2013-04-14 06:45 (UTC)

When executed via console, I got the following error: running pytrainer from egg installation data_path: /usr/share/pytrainer/ gettext_path: /usr/share/locale site_path: /usr/share/lib/python2.7/site-packages Traceback (most recent call last): File "pytrainer", line 96, in <module> from pytrainer.main import pyTrainer File "/usr/lib/python2.7/site-packages/pytrainer/main.py", line 36, in <module> from upgrade.data import initialize_data File "/usr/lib/python2.7/site-packages/pytrainer/upgrade/data.py", line 23, in <module> from pytrainer.upgrade.migratedb import MigratableDb File "/usr/lib/python2.7/site-packages/pytrainer/upgrade/migratedb.py", line 19, in <module> from migrate.versioning.api import db_version, upgrade, version, version_control File "/usr/lib/python2.7/site-packages/migrate/versioning/api.py", line 33, in <module> from migrate.versioning import (repository, schema, version, File "/usr/lib/python2.7/site-packages/migrate/versioning/schema.py", line 10, in <module> from sqlalchemy import exceptions as sa_exceptions