[chirp_users] New chirp-next build

2023-03-09 Thread donotreply
Greetings,

A new build of CHIRP-next is available. This includes changes made directly to 
the tree since yesterday and may include additional features, bug fixes, etc. 
As a reminder, this is different from the "daily" CHIRP builds in that new 
development and features are happening here. It is the latest and greatest, but 
also may be less stable than the "daily" builds at this time. If it works for 
you, we recommend using CHIRP-next, but if your radio is not yet working on it, 
then you may prefer to use the "daily" builds for the time being.

You can get it from here:

http://trac.chirp.danplanet.com/chirp_next/

A list of changes since the last build are here:

Changes for Build #84
[3046399+kk7ds] Update es.po

[3046399+kk7ds] Move alinco delays to earlier in the loop

[3046399+kk7ds] Adjust TD-H6 valid bands up to 520MHz




--___
chirp_users mailing list
chirp_users@intrepid.danplanet.com
http://intrepid.danplanet.com/mailman/listinfo/chirp_users
This message was sent to arch...@mail-archive.com at arch...@mail-archive.com
To unsubscribe, send an email to chirp_users-unsubscr...@intrepid.danplanet.com
To report this email as off-topic, please email 
chirp_users-ow...@intrepid.danplanet.com
Searchable archive: 
https://www.mail-archive.com/chirp_users@intrepid.danplanet.com

[chirp_users] installing CHIRP-next problems

2023-03-09 Thread Jeffrey Vian
I run Fedpra Linux version 37 which has python 3.11

I have previously used CHIRP and am upgrading to the newer python3 version
but am encountering several issues.  Each time I try to launch the new
version I get an error, and have been working through them one at a time
(which mostly requires installing a python package not previously
installed).

I have, however, hit one that I cannot find the proper fix for.

File
"/home/USERNAME/.local/lib/python3.11/site-packages/attrdict/mapping.py",
line 4, in 
  from collections import Mapping
  ImportError: cannot import name 'Mapping' from 'collections'
(/usr/lib64/python3.11/collections/__init__.py)
  [end of output]

Looking at the collections module installed for the system it does not seem
to have the Mapping module as the error states and I cannot figure out how
to fix that issue.  Does someone with python experience have any
suggestions?

Jeff
KI7GJG
___
chirp_users mailing list
chirp_users@intrepid.danplanet.com
http://intrepid.danplanet.com/mailman/listinfo/chirp_users
This message was sent to arch...@mail-archive.com at arch...@mail-archive.com
To unsubscribe, send an email to chirp_users-unsubscr...@intrepid.danplanet.com
To report this email as off-topic, please email 
chirp_users-ow...@intrepid.danplanet.com
Searchable archive: 
https://www.mail-archive.com/chirp_users@intrepid.danplanet.com

Re: [chirp_users] installing CHIRP-next problems

2023-03-09 Thread Martin Cooper
As of Python 3.10:

> Remove deprecated aliases to Collections Abstract Base Classes from the
collections module.

They were originally deprecated in Python 3.3, a long time ago. This means
that the old (and now archived) attrdict package no longer works, and needs
to be replaced with attrdict3, which correctly uses 'collections.abc'
instead of 'collections' for Mapping and similar classes.

I believe attrdict is being used by wxPython. Replacing it with attrdict3
should work, though I don't have the environment to try it myself.

Martin.
KD6YAM

On Thu, Mar 9, 2023 at 8:08 AM Jeffrey Vian 
wrote:

> I run Fedpra Linux version 37 which has python 3.11
>
> I have previously used CHIRP and am upgrading to the newer python3 version
> but am encountering several issues.  Each time I try to launch the new
> version I get an error, and have been working through them one at a time
> (which mostly requires installing a python package not previously
> installed).
>
> I have, however, hit one that I cannot find the proper fix for.
> 
> File
> "/home/USERNAME/.local/lib/python3.11/site-packages/attrdict/mapping.py",
> line 4, in 
>   from collections import Mapping
>   ImportError: cannot import name 'Mapping' from 'collections'
> (/usr/lib64/python3.11/collections/__init__.py)
>   [end of output]
> 
> Looking at the collections module installed for the system it does not
> seem to have the Mapping module as the error states and I cannot figure out
> how to fix that issue.  Does someone with python experience have any
> suggestions?
>
> Jeff
> KI7GJG
>
> ___
> chirp_users mailing list
> chirp_users@intrepid.danplanet.com
> http://intrepid.danplanet.com/mailman/listinfo/chirp_users
> This message was sent to Martin Cooper at mfncoo...@gmail.com
> To unsubscribe, send an email to
> chirp_users-unsubscr...@intrepid.danplanet.com
> To report this email as off-topic, please email
> chirp_users-ow...@intrepid.danplanet.com
> Searchable archive:
> https://www.mail-archive.com/chirp_users@intrepid.danplanet.com
___
chirp_users mailing list
chirp_users@intrepid.danplanet.com
http://intrepid.danplanet.com/mailman/listinfo/chirp_users
This message was sent to arch...@mail-archive.com at arch...@mail-archive.com
To unsubscribe, send an email to chirp_users-unsubscr...@intrepid.danplanet.com
To report this email as off-topic, please email 
chirp_users-ow...@intrepid.danplanet.com
Searchable archive: 
https://www.mail-archive.com/chirp_users@intrepid.danplanet.com

Re: [chirp_users] installing CHIRP-next problems

2023-03-09 Thread Jeffrey Vian
attrdict was definitely used by wxpython.  I installed it using pip, then
the noted errors popped up.
I was able to work around the problem by adding the following lines to
`/usr/lib64/python3.11/collections/__init__.py`

"
from _collections_abc import Mapping
from _collections_abc import MutableMapping
from _collections_abc import Sequence
"

After adding those lines for the modules that wxpython was complaining
about the install completed.
Note that nothing I found in the install instructions said that wheel was
needed, but as a matter of course I always install wheel and wxpython also
used it, building several wheels for the packages installed.

Your note seems to indicate that those modules would not have erred with
python 3.10 but definitely did with python 3.11.

Jeff




On Thu, Mar 9, 2023 at 10:42 AM Martin Cooper  wrote:

> As of Python 3.10:
>
> > Remove deprecated aliases to Collections Abstract Base Classes from the
> collections module.
>
> They were originally deprecated in Python 3.3, a long time ago. This means
> that the old (and now archived) attrdict package no longer works, and needs
> to be replaced with attrdict3, which correctly uses 'collections.abc'
> instead of 'collections' for Mapping and similar classes.
>
> I believe attrdict is being used by wxPython. Replacing it with attrdict3
> should work, though I don't have the environment to try it myself.
>
> Martin.
> KD6YAM
>
> On Thu, Mar 9, 2023 at 8:08 AM Jeffrey Vian 
> wrote:
>
>> I run Fedpra Linux version 37 which has python 3.11
>>
>> I have previously used CHIRP and am upgrading to the newer python3
>> version but am encountering several issues.  Each time I try to launch the
>> new  version I get an error, and have been working through them one at a
>> time (which mostly requires installing a python package not previously
>> installed).
>>
>> I have, however, hit one that I cannot find the proper fix for.
>> 
>> File
>> "/home/USERNAME/.local/lib/python3.11/site-packages/attrdict/mapping.py",
>> line 4, in 
>>   from collections import Mapping
>>   ImportError: cannot import name 'Mapping' from 'collections'
>> (/usr/lib64/python3.11/collections/__init__.py)
>>   [end of output]
>> 
>> Looking at the collections module installed for the system it does not
>> seem to have the Mapping module as the error states and I cannot figure out
>> how to fix that issue.  Does someone with python experience have any
>> suggestions?
>>
>> Jeff
>> KI7GJG
>>
>> ___
>> chirp_users mailing list
>> chirp_users@intrepid.danplanet.com
>> http://intrepid.danplanet.com/mailman/listinfo/chirp_users
>> This message was sent to Martin Cooper at mfncoo...@gmail.com
>> To unsubscribe, send an email to
>> chirp_users-unsubscr...@intrepid.danplanet.com
>> To report this email as off-topic, please email
>> chirp_users-ow...@intrepid.danplanet.com
>> Searchable archive:
>> https://www.mail-archive.com/chirp_users@intrepid.danplanet.com
>
> ___
> chirp_users mailing list
> chirp_users@intrepid.danplanet.com
> http://intrepid.danplanet.com/mailman/listinfo/chirp_users
> This message was sent to sandhillsinvestm...@gmail.com at
> sandhillsinvestm...@gmail.com
> To unsubscribe, send an email to
> chirp_users-unsubscr...@intrepid.danplanet.com
> To report this email as off-topic, please email
> chirp_users-ow...@intrepid.danplanet.com
> Searchable archive:
> https://www.mail-archive.com/chirp_users@intrepid.danplanet.com
___
chirp_users mailing list
chirp_users@intrepid.danplanet.com
http://intrepid.danplanet.com/mailman/listinfo/chirp_users
This message was sent to arch...@mail-archive.com at arch...@mail-archive.com
To unsubscribe, send an email to chirp_users-unsubscr...@intrepid.danplanet.com
To report this email as off-topic, please email 
chirp_users-ow...@intrepid.danplanet.com
Searchable archive: 
https://www.mail-archive.com/chirp_users@intrepid.danplanet.com

Re: [chirp_users] installing CHIRP-next problems

2023-03-09 Thread Martin Cooper
Rather than changing Python code, removing attrdict and installing
attrdict3 should do the trick. But since you have it working now ...

It would fail with Python 3.10 too, since that's when the removals
happened. With 3.9 and earlier, it should be fine, albeit with some
deprecation warnings that have been there since 3.3.

Martin.
KD6YAM

On Thu, Mar 9, 2023 at 9:38 AM Jeffrey Vian 
wrote:

> attrdict was definitely used by wxpython.  I installed it using pip, then
> the noted errors popped up.
> I was able to work around the problem by adding the following lines to
> `/usr/lib64/python3.11/collections/__init__.py`
>
> "
> from _collections_abc import Mapping
> from _collections_abc import MutableMapping
> from _collections_abc import Sequence
> "
>
> After adding those lines for the modules that wxpython was complaining
> about the install completed.
> Note that nothing I found in the install instructions said that wheel was
> needed, but as a matter of course I always install wheel and wxpython also
> used it, building several wheels for the packages installed.
>
> Your note seems to indicate that those modules would not have erred with
> python 3.10 but definitely did with python 3.11.
>
> Jeff
>
>
>
>
> On Thu, Mar 9, 2023 at 10:42 AM Martin Cooper  wrote:
>
>> As of Python 3.10:
>>
>> > Remove deprecated aliases to Collections Abstract Base Classes from the
>> collections module.
>>
>> They were originally deprecated in Python 3.3, a long time ago. This
>> means that the old (and now archived) attrdict package no longer works, and
>> needs to be replaced with attrdict3, which correctly uses 'collections.abc'
>> instead of 'collections' for Mapping and similar classes.
>>
>> I believe attrdict is being used by wxPython. Replacing it with attrdict3
>> should work, though I don't have the environment to try it myself.
>>
>> Martin.
>> KD6YAM
>>
>> On Thu, Mar 9, 2023 at 8:08 AM Jeffrey Vian <
>> sandhillsinvestm...@gmail.com> wrote:
>>
>>> I run Fedpra Linux version 37 which has python 3.11
>>>
>>> I have previously used CHIRP and am upgrading to the newer python3
>>> version but am encountering several issues.  Each time I try to launch the
>>> new  version I get an error, and have been working through them one at a
>>> time (which mostly requires installing a python package not previously
>>> installed).
>>>
>>> I have, however, hit one that I cannot find the proper fix for.
>>> 
>>> File
>>> "/home/USERNAME/.local/lib/python3.11/site-packages/attrdict/mapping.py",
>>> line 4, in 
>>>   from collections import Mapping
>>>   ImportError: cannot import name 'Mapping' from 'collections'
>>> (/usr/lib64/python3.11/collections/__init__.py)
>>>   [end of output]
>>> 
>>> Looking at the collections module installed for the system it does not
>>> seem to have the Mapping module as the error states and I cannot figure out
>>> how to fix that issue.  Does someone with python experience have any
>>> suggestions?
>>>
>>> Jeff
>>> KI7GJG
>>>
>>> ___
>>> chirp_users mailing list
>>> chirp_users@intrepid.danplanet.com
>>> http://intrepid.danplanet.com/mailman/listinfo/chirp_users
>>> This message was sent to Martin Cooper at mfncoo...@gmail.com
>>> To unsubscribe, send an email to
>>> chirp_users-unsubscr...@intrepid.danplanet.com
>>> To report this email as off-topic, please email
>>> chirp_users-ow...@intrepid.danplanet.com
>>> Searchable archive:
>>> https://www.mail-archive.com/chirp_users@intrepid.danplanet.com
>>
>> ___
>> chirp_users mailing list
>> chirp_users@intrepid.danplanet.com
>> http://intrepid.danplanet.com/mailman/listinfo/chirp_users
>> This message was sent to sandhillsinvestm...@gmail.com at
>> sandhillsinvestm...@gmail.com
>> To unsubscribe, send an email to
>> chirp_users-unsubscr...@intrepid.danplanet.com
>> To report this email as off-topic, please email
>> chirp_users-ow...@intrepid.danplanet.com
>> Searchable archive:
>> https://www.mail-archive.com/chirp_users@intrepid.danplanet.com
>
> ___
> chirp_users mailing list
> chirp_users@intrepid.danplanet.com
> http://intrepid.danplanet.com/mailman/listinfo/chirp_users
> This message was sent to Martin Cooper at mfncoo...@gmail.com
> To unsubscribe, send an email to
> chirp_users-unsubscr...@intrepid.danplanet.com
> To report this email as off-topic, please email
> chirp_users-ow...@intrepid.danplanet.com
> Searchable archive:
> https://www.mail-archive.com/chirp_users@intrepid.danplanet.com
___
chirp_users mailing list
chirp_users@intrepid.danplanet.com
http://intrepid.danplanet.com/mailman/listinfo/chirp_users
This message was sent to arch...@mail-archive.com at arch...@mail-archive.com
To unsubscribe, send an email to chirp_users-unsubscr...@intrepid.danplanet.com
To report this email as off-topic, please email 
chirp_users-ow...@intrepid

[chirp_users] Chirp next, Ubuntu 22.04 no download window

2023-03-09 Thread Perneczky Miklós

Hi guys,

I have a pair of BF888, I wanted to do some changes in their config 
after a long time. I run into the problem that my old cable with 
PL2023TA is not compatible with w11, the chirp next does not open any 
window on ubuntu 22.04 if I click download from radio, and if I install 
here the old chirp version, that downloads crap (loads my saved files 
also with bad data). Chirp next loads the saved config files correctly.


I would like to focus on chirp next on u22.04 and make that work. If I 
run it from console, this is what I see, when I try to download from radio:


myuseronmylaptop:~$ chirp-snap.chirp
21:19:40: Debug: Failed to connect to session manager: Could not open 
network socket

21:19:40: Debug: Adding duplicate image handler for 'Windows bitmap file'
21:19:40: Debug: Adding duplicate image handler for 'Windows bitmap file'
21:19:40: Debug: Adding duplicate image handler for 'Windows bitmap file'
WARNING: Did not find localedir: 
/snap/chirp-snap/561/lib/python3.10/site-packages/chirp/locale

Traceback (most recent call last):
  File 
"/snap/chirp-snap/561/lib/python3.10/site-packages/chirp/wxui/main.py", 
line 1166, in _menu_download

    with clone.ChirpDownloadDialog(self) as d:
  File 
"/snap/chirp-snap/561/lib/python3.10/site-packages/chirp/wxui/clone.py", 
line 225, in __init__

    self.set_ports()
  File 
"/snap/chirp-snap/561/lib/python3.10/site-packages/chirp/wxui/clone.py", 
line 283, in set_ports

    system_ports = list_ports.comports()
  File 
"/snap/chirp-snap/561/lib/python3.10/site-packages/serial/tools/list_ports_linux.py", 
line 102, in comports

    for info in [SysFS(d) for d in devices]
  File 
"/snap/chirp-snap/561/lib/python3.10/site-packages/serial/tools/list_ports_linux.py", 
line 102, in 

    for info in [SysFS(d) for d in devices]
  File 
"/snap/chirp-snap/561/lib/python3.10/site-packages/serial/tools/list_ports_linux.py", 
line 48, in __init__

    num_if = int(self.read_line(self.usb_device_path, 'bNumInterfaces'))
TypeError: int() argument must be a string, a bytes-like object or a 
real number, not 'NoneType'


Do you have any hint what I should try?

Regards,

Miklós



___
chirp_users mailing list
chirp_users@intrepid.danplanet.com
http://intrepid.danplanet.com/mailman/listinfo/chirp_users
This message was sent to arch...@mail-archive.com at arch...@mail-archive.com
To unsubscribe, send an email to chirp_users-unsubscr...@intrepid.danplanet.com
To report this email as off-topic, please email 
chirp_users-ow...@intrepid.danplanet.com
Searchable archive: 
https://www.mail-archive.com/chirp_users@intrepid.danplanet.com

Re: [chirp_users] Chirp next, Ubuntu 22.04 no download window

2023-03-09 Thread Jim Unroe
On Thu, Mar 9, 2023 at 3:38 PM Perneczky Miklós  wrote:
> I run into the problem that my old cable with PL2023TA is not compatible with 
> w11,

It is compatible. You just have to download, install and select the
older Prolific V3.2.0.0 driver. I've been doing this with my Prolific
chipped programming cables used with Windows 7, 8, 10 and 11 since
2012. A link for the driver and instructions for selecting it are
here: https://www.miklor.com/COM/UV_Drivers.php

Jim KC9HI
___
chirp_users mailing list
chirp_users@intrepid.danplanet.com
http://intrepid.danplanet.com/mailman/listinfo/chirp_users
This message was sent to arch...@mail-archive.com at arch...@mail-archive.com
To unsubscribe, send an email to chirp_users-unsubscr...@intrepid.danplanet.com
To report this email as off-topic, please email 
chirp_users-ow...@intrepid.danplanet.com
Searchable archive: 
https://www.mail-archive.com/chirp_users@intrepid.danplanet.com

Re: [chirp_users] installing CHIRP-next problems

2023-03-09 Thread Jeffrey Vian
Thanks for the hint.  I removed attrdict and installed attrdict3, then
reverted my changes to the system file to original and chirp works well.

It would be nice if detailed instructions for Fedora and rpm based distros
were included since the site only shows how to do an install on Ubuntu.
Package names are not the same and several necessary dependencies are not
listed.

Luckily I have some experience with installing python packages, but not all
users do.

Jeff
KI7GJG



On Thu, Mar 9, 2023 at 11:51 AM Martin Cooper  wrote:

> Rather than changing Python code, removing attrdict and installing
> attrdict3 should do the trick. But since you have it working now ...
>
> It would fail with Python 3.10 too, since that's when the removals
> happened. With 3.9 and earlier, it should be fine, albeit with some
> deprecation warnings that have been there since 3.3.
>
> Martin.
> KD6YAM
>
> On Thu, Mar 9, 2023 at 9:38 AM Jeffrey Vian 
> wrote:
>
>> attrdict was definitely used by wxpython.  I installed it using pip, then
>> the noted errors popped up.
>> I was able to work around the problem by adding the following lines to
>> `/usr/lib64/python3.11/collections/__init__.py`
>>
>> "
>> from _collections_abc import Mapping
>> from _collections_abc import MutableMapping
>> from _collections_abc import Sequence
>> "
>>
>> After adding those lines for the modules that wxpython was complaining
>> about the install completed.
>> Note that nothing I found in the install instructions said that wheel was
>> needed, but as a matter of course I always install wheel and wxpython also
>> used it, building several wheels for the packages installed.
>>
>> Your note seems to indicate that those modules would not have erred with
>> python 3.10 but definitely did with python 3.11.
>>
>> Jeff
>>
>>
>>
>>
>> On Thu, Mar 9, 2023 at 10:42 AM Martin Cooper 
>> wrote:
>>
>>> As of Python 3.10:
>>>
>>> > Remove deprecated aliases to Collections Abstract Base Classes from
>>> the collections module.
>>>
>>> They were originally deprecated in Python 3.3, a long time ago. This
>>> means that the old (and now archived) attrdict package no longer works, and
>>> needs to be replaced with attrdict3, which correctly uses 'collections.abc'
>>> instead of 'collections' for Mapping and similar classes.
>>>
>>> I believe attrdict is being used by wxPython. Replacing it with
>>> attrdict3 should work, though I don't have the environment to try it myself.
>>>
>>> Martin.
>>> KD6YAM
>>>
>>> On Thu, Mar 9, 2023 at 8:08 AM Jeffrey Vian <
>>> sandhillsinvestm...@gmail.com> wrote:
>>>
 I run Fedpra Linux version 37 which has python 3.11

 I have previously used CHIRP and am upgrading to the newer python3
 version but am encountering several issues.  Each time I try to launch the
 new  version I get an error, and have been working through them one at a
 time (which mostly requires installing a python package not previously
 installed).

 I have, however, hit one that I cannot find the proper fix for.
 
 File
 "/home/USERNAME/.local/lib/python3.11/site-packages/attrdict/mapping.py",
 line 4, in 
   from collections import Mapping
   ImportError: cannot import name 'Mapping' from 'collections'
 (/usr/lib64/python3.11/collections/__init__.py)
   [end of output]
 
 Looking at the collections module installed for the system it does not
 seem to have the Mapping module as the error states and I cannot figure out
 how to fix that issue.  Does someone with python experience have any
 suggestions?

 Jeff
 KI7GJG

 ___
 chirp_users mailing list
 chirp_users@intrepid.danplanet.com
 http://intrepid.danplanet.com/mailman/listinfo/chirp_users
 This message was sent to Martin Cooper at mfncoo...@gmail.com
 To unsubscribe, send an email to
 chirp_users-unsubscr...@intrepid.danplanet.com
 To report this email as off-topic, please email
 chirp_users-ow...@intrepid.danplanet.com
 Searchable archive:
 https://www.mail-archive.com/chirp_users@intrepid.danplanet.com
>>>
>>> ___
>>> chirp_users mailing list
>>> chirp_users@intrepid.danplanet.com
>>> http://intrepid.danplanet.com/mailman/listinfo/chirp_users
>>> This message was sent to sandhillsinvestm...@gmail.com at
>>> sandhillsinvestm...@gmail.com
>>> To unsubscribe, send an email to
>>> chirp_users-unsubscr...@intrepid.danplanet.com
>>> To report this email as off-topic, please email
>>> chirp_users-ow...@intrepid.danplanet.com
>>> Searchable archive:
>>> https://www.mail-archive.com/chirp_users@intrepid.danplanet.com
>>
>> ___
>> chirp_users mailing list
>> chirp_users@intrepid.danplanet.com
>> http://intrepid.danplanet.com/mailman/listinfo/chirp_users
>> This message was sent to Martin Cooper at mfncoo...@gmail.com
>> To 

Re: [chirp_users] installing CHIRP-next problems

2023-03-09 Thread Jeffrey Vian
It still may impact the installation of wxpython though since that was
where I hit the snag.
It is already installed so I did not remove it and attempt a reinstall.

Jeff
KI7GJG



On Thu, Mar 9, 2023 at 3:50 PM Jeffrey Vian 
wrote:

> Thanks for the hint.  I removed attrdict and installed attrdict3, then
> reverted my changes to the system file to original and chirp works well.
>
> It would be nice if detailed instructions for Fedora and rpm based distros
> were included since the site only shows how to do an install on Ubuntu.
> Package names are not the same and several necessary dependencies are not
> listed.
>
> Luckily I have some experience with installing python packages, but not
> all users do.
>
> Jeff
> KI7GJG
>
>
>
> On Thu, Mar 9, 2023 at 11:51 AM Martin Cooper  wrote:
>
>> Rather than changing Python code, removing attrdict and installing
>> attrdict3 should do the trick. But since you have it working now ...
>>
>> It would fail with Python 3.10 too, since that's when the removals
>> happened. With 3.9 and earlier, it should be fine, albeit with some
>> deprecation warnings that have been there since 3.3.
>>
>> Martin.
>> KD6YAM
>>
>> On Thu, Mar 9, 2023 at 9:38 AM Jeffrey Vian <
>> sandhillsinvestm...@gmail.com> wrote:
>>
>>> attrdict was definitely used by wxpython.  I installed it using pip,
>>> then the noted errors popped up.
>>> I was able to work around the problem by adding the following lines to
>>> `/usr/lib64/python3.11/collections/__init__.py`
>>>
>>> "
>>> from _collections_abc import Mapping
>>> from _collections_abc import MutableMapping
>>> from _collections_abc import Sequence
>>> "
>>>
>>> After adding those lines for the modules that wxpython was complaining
>>> about the install completed.
>>> Note that nothing I found in the install instructions said that wheel
>>> was needed, but as a matter of course I always install wheel and wxpython
>>> also used it, building several wheels for the packages installed.
>>>
>>> Your note seems to indicate that those modules would not have erred with
>>> python 3.10 but definitely did with python 3.11.
>>>
>>> Jeff
>>>
>>>
>>>
>>>
>>> On Thu, Mar 9, 2023 at 10:42 AM Martin Cooper 
>>> wrote:
>>>
 As of Python 3.10:

 > Remove deprecated aliases to Collections Abstract Base Classes from
 the collections module.

 They were originally deprecated in Python 3.3, a long time ago. This
 means that the old (and now archived) attrdict package no longer works, and
 needs to be replaced with attrdict3, which correctly uses 'collections.abc'
 instead of 'collections' for Mapping and similar classes.

 I believe attrdict is being used by wxPython. Replacing it with
 attrdict3 should work, though I don't have the environment to try it 
 myself.

 Martin.
 KD6YAM

 On Thu, Mar 9, 2023 at 8:08 AM Jeffrey Vian <
 sandhillsinvestm...@gmail.com> wrote:

> I run Fedpra Linux version 37 which has python 3.11
>
> I have previously used CHIRP and am upgrading to the newer python3
> version but am encountering several issues.  Each time I try to launch the
> new  version I get an error, and have been working through them one at a
> time (which mostly requires installing a python package not previously
> installed).
>
> I have, however, hit one that I cannot find the proper fix for.
> 
> File
> "/home/USERNAME/.local/lib/python3.11/site-packages/attrdict/mapping.py",
> line 4, in 
>   from collections import Mapping
>   ImportError: cannot import name 'Mapping' from 'collections'
> (/usr/lib64/python3.11/collections/__init__.py)
>   [end of output]
> 
> Looking at the collections module installed for the system it does not
> seem to have the Mapping module as the error states and I cannot figure 
> out
> how to fix that issue.  Does someone with python experience have any
> suggestions?
>
> Jeff
> KI7GJG
>
> ___
> chirp_users mailing list
> chirp_users@intrepid.danplanet.com
> http://intrepid.danplanet.com/mailman/listinfo/chirp_users
> This message was sent to Martin Cooper at mfncoo...@gmail.com
> To unsubscribe, send an email to
> chirp_users-unsubscr...@intrepid.danplanet.com
> To report this email as off-topic, please email
> chirp_users-ow...@intrepid.danplanet.com
> Searchable archive:
> https://www.mail-archive.com/chirp_users@intrepid.danplanet.com

 ___
 chirp_users mailing list
 chirp_users@intrepid.danplanet.com
 http://intrepid.danplanet.com/mailman/listinfo/chirp_users
 This message was sent to sandhillsinvestm...@gmail.com at
 sandhillsinvestm...@gmail.com
 To unsubscribe, send an email to
 chirp_users-unsubscr...@intrepid.danplanet.com
 To report this email as

Re: [chirp_users] installing CHIRP-next problems

2023-03-09 Thread Dan Smith via chirp_users
> It would be nice if detailed instructions for Fedora and rpm based distros 
> were included since the site only shows how to do an install on Ubuntu.  
> Package names are not the same and several necessary dependencies are not 
> listed.

It would be nice if users of other distros would contribute instructions 
relevant to them for the good of the community. Please message me your username 
(privately) and I'll give you wiki edit access.

--Dan
___
chirp_users mailing list
chirp_users@intrepid.danplanet.com
http://intrepid.danplanet.com/mailman/listinfo/chirp_users
This message was sent to arch...@mail-archive.com at arch...@mail-archive.com
To unsubscribe, send an email to chirp_users-unsubscr...@intrepid.danplanet.com
To report this email as off-topic, please email 
chirp_users-ow...@intrepid.danplanet.com
Searchable archive: 
https://www.mail-archive.com/chirp_users@intrepid.danplanet.com


Re: [chirp_users] installing CHIRP-next problems

2023-03-09 Thread Richard Shaw
On Thu, Mar 9, 2023 at 4:31 PM Dan Smith via chirp_users <
chirp_users@intrepid.danplanet.com> wrote:

> > It would be nice if detailed instructions for Fedora and rpm based
> distros were included since the site only shows how to do an install on
> Ubuntu.  Package names are not the same and several necessary dependencies
> are not listed.
>
> It would be nice if users of other distros would contribute instructions
> relevant to them for the good of the community. Please message me your
> username (privately) and I'll give you wiki edit access.
>

I have very little time these days but if chirp-next is ready for packaging
I can try to take a look in the near future.

Thanks,
Richard
KF5OIM
___
chirp_users mailing list
chirp_users@intrepid.danplanet.com
http://intrepid.danplanet.com/mailman/listinfo/chirp_users
This message was sent to arch...@mail-archive.com at arch...@mail-archive.com
To unsubscribe, send an email to chirp_users-unsubscr...@intrepid.danplanet.com
To report this email as off-topic, please email 
chirp_users-ow...@intrepid.danplanet.com
Searchable archive: 
https://www.mail-archive.com/chirp_users@intrepid.danplanet.com