Skip to content

Commit

Permalink
Moved development to github; updated to 0.19.0
Browse files Browse the repository at this point in the history
  • Loading branch information
codedstructure committed Jun 8, 2020
1 parent a9cd153 commit 4662ebe
Show file tree
Hide file tree
Showing 22 changed files with 39 additions and 30 deletions.
6 changes: 6 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
pylibftdi changes
=================

0.19.0
* Moved to GitHub (and git, obviously!) following deprecation of Mercurial
on bitbucket.org. No other changes beyond URL updates, docs pointing to
GitHub etc. Note that references to old bitbucket issues will stop being
helpful very soon, but there's not much I can do about this.

0.18.1
~~~~~~
* fixed - list_devices example was broken for Python3 following 0.18.0
Expand Down
2 changes: 1 addition & 1 deletion LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2010-2019 Ben Bass
Copyright (c) 2010-2020 Ben Bass

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ Plans
License
-------

Copyright (c) 2010-2019 Ben Bass <benbass@codedstructure.net>
Copyright (c) 2010-2020 Ben Bass <benbass@codedstructure.net>

pylibftdi is released under the MIT licence; see the file "LICENSE.txt"
for information.
Expand Down
6 changes: 3 additions & 3 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,16 +42,16 @@ def setup(app):

# General information about the project.
project = 'pylibftdi'
copyright = '2010-2019, Ben Bass'
copyright = '2010-2020, Ben Bass'

# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
# built documents.
#
# The short X.Y version.
version = '0.18.1'
version = '0.19.0'
# The full version, including alpha/beta/rc tags.
release = '0.18.1'
release = '0.19.0'

# List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files.
Expand Down
11 changes: 7 additions & 4 deletions docs/how_to.rst
Original file line number Diff line number Diff line change
Expand Up @@ -246,12 +246,15 @@ Developing pylibftdi
How do I checkout and use the latest development version?
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

pylibftdi is currently developed with a Mercurial repository on bitbucket.
To use / develop on that version, it must first be cloned locally, after
`pylibftdi` is currently developed on GitHub, though started out as a Mercurial
repository on bitbucket.org. There may still be references to old bitbucket issues
in the docs.

To use / develop on the latest version, it must first be cloned locally, after
which it can be 'installed'. Clone the repository to a local directory and
install (with the 'develop' target ideally) as follows::

$ hg clone https://bitbucket.org/codedstructure/pylibftdi
$ git clone https://github.com/codedstructure/pylibftdi
$ cd pylibftdi
$ python3 -m venv env
$ source env/bin/activate
Expand All @@ -272,7 +275,7 @@ Tests aren't included in the distutils distribution, so clone the
repository and run from there. pylibftdi supports Python 2.7 as well
as Python 3.4+, so these tests can be run for each Python version::

$ hg clone https://bitbucket.org/codedstructure/pylibftdi
$ git clone https://github.com/codedstructure/pylibftdi
<various output stuff>
$ cd pylibftdi
$ python2.7 -m unittest discover
Expand Down
2 changes: 1 addition & 1 deletion docs/introduction.rst
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ Plans
License
-------

Copyright (c) 2010-2019 Ben Bass <benbass@codedstructure.net>
Copyright (c) 2010-2020 Ben Bass <benbass@codedstructure.net>

pylibftdi is released under the MIT licence; see the file "LICENSE.txt"
for information.
Expand Down
4 changes: 2 additions & 2 deletions pylibftdi/__init__.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
"""
pylibftdi - python wrapper for libftdi
Copyright (c) 2010-2019 Ben Bass <benbass@codedstructure.net>
Copyright (c) 2010-2020 Ben Bass <benbass@codedstructure.net>
See LICENSE file for details and (absence of) warranty
pylibftdi: http://bitbucket.org/codedstructure/pylibftdi
pylibftdi: https://github.com/codedstructure/pylibftdi
libftdi can be found at: http://www.intra2net.com/en/developer/libftdi/
Expand Down
4 changes: 2 additions & 2 deletions pylibftdi/_base.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
"""
pylibftdi - python wrapper for libftdi
Copyright (c) 2010-2019 Ben Bass <benbass@codedstructure.net>
Copyright (c) 2010-2020 Ben Bass <benbass@codedstructure.net>
See LICENSE file for details and (absence of) warranty
pylibftdi: http://bitbucket.org/codedstructure/pylibftdi
pylibftdi: https://github.com/codedstructure/pylibftdi
"""

Expand Down
2 changes: 1 addition & 1 deletion pylibftdi/bitbang.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Copyright (c) 2010-2014 Ben Bass <benbass@codedstructure.net>
See LICENSE file for details and (absence of) warranty
pylibftdi: http://bitbucket.org/codedstructure/pylibftdi
pylibftdi: https://github.com/codedstructure/pylibftdi
"""
from pylibftdi.device import Device
Expand Down
4 changes: 2 additions & 2 deletions pylibftdi/device.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
"""
pylibftdi.device - access to individual FTDI devices
Copyright (c) 2010-2019 Ben Bass <benbass@codedstructure.net>
Copyright (c) 2010-2020 Ben Bass <benbass@codedstructure.net>
See LICENSE file for details and (absence of) warranty
pylibftdi: http://bitbucket.org/codedstructure/pylibftdi
pylibftdi: https://github.com/codedstructure/pylibftdi
"""

Expand Down
2 changes: 1 addition & 1 deletion pylibftdi/driver.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Copyright (c) 2010-2014 Ben Bass <benbass@codedstructure.net>
See LICENSE file for details and (absence of) warranty
pylibftdi: http://bitbucket.org/codedstructure/pylibftdi
pylibftdi: https://github.com/codedstructure/pylibftdi
"""

Expand Down
2 changes: 1 addition & 1 deletion pylibftdi/examples/info.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
Python version : 3.4.0
OS platform : Darwin-14.1.0-x86_64-i386-64bit
Copyright (c) 2015-2019 Ben Bass <benbass@codedstructure.net>
Copyright (c) 2015-2020 Ben Bass <benbass@codedstructure.net>
"""


Expand Down
2 changes: 1 addition & 1 deletion pylibftdi/examples/serial_loopback.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"""
test serial loopback; assumes Rx and Tx are connected
Copyright (c) 2010-2019 Ben Bass <benbass@codedstructure.net>
Copyright (c) 2010-2020 Ben Bass <benbass@codedstructure.net>
All rights reserved.
"""

Expand Down
2 changes: 1 addition & 1 deletion pylibftdi/examples/serial_transfer.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
Checksum TX: 1a957192b8219aa02ad374dd518e37fd RX: 1a957192b8219aa02ad374dd518e37fd
SUCCESS
Copyright (c) 2015-2019 Ben Bass <benbass@codedstructure.net>
Copyright (c) 2015-2020 Ben Bass <benbass@codedstructure.net>
All rights reserved.
"""

Expand Down
2 changes: 1 addition & 1 deletion pylibftdi/serial_device.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Copyright (c) 2010-2014 Ben Bass <benbass@codedstructure.net>
See LICENSE file for details and (absence of) warranty
pylibftdi: http://bitbucket.org/codedstructure/pylibftdi
pylibftdi: https://github.com/codedstructure/pylibftdi
"""
from pylibftdi.device import Device
Expand Down
2 changes: 1 addition & 1 deletion pylibftdi/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Copyright (c) 2010-2014 Ben Bass <benbass@codedstructure.net>
See LICENSE file for details and (absence of) warranty
pylibftdi: http://bitbucket.org/codedstructure/pylibftdi
pylibftdi: https://github.com/codedstructure/pylibftdi
"""

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@

setup_args = dict(
name="pylibftdi",
version="0.18.1",
version="0.19.0",
description="Pythonic interface to FTDI devices using libftdi",
long_description=open('README.rst').read(),
author="Ben Bass",
author_email="benbass@codedstructure.net",
url="http://bitbucket.org/codedstructure/pylibftdi",
url="https://github.com/codedstructure/pylibftdi",
packages=["pylibftdi", "pylibftdi.examples"],
classifiers=[
"Development Status :: 4 - Beta",
Expand Down
2 changes: 1 addition & 1 deletion tests/test_bitbang.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Copyright (c) 2010-2014 Ben Bass <benbass@codedstructure.net>
See LICENSE file for details and (absence of) warranty
pylibftdi: http://bitbucket.org/codedstructure/pylibftdi
pylibftdi: https://github.com/codedstructure/pylibftdi
This module contains some basic tests for the higher-level
functionality without requiring an actual hardware device
Expand Down
2 changes: 1 addition & 1 deletion tests/test_bus.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Copyright (c) 2010-2014 Ben Bass <benbass@codedstructure.net>
See LICENSE file for details and (absence of) warranty
pylibftdi: http://bitbucket.org/codedstructure/pylibftdi
pylibftdi: https://github.com/codedstructure/pylibftdi
This module contains some basic tests for the higher-level
functionality without requiring an actual hardware device
Expand Down
2 changes: 1 addition & 1 deletion tests/test_common.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Copyright (c) 2010-2014 Ben Bass <benbass@codedstructure.net>
See LICENSE file for details and (absence of) warranty
pylibftdi: http://bitbucket.org/codedstructure/pylibftdi
pylibftdi: https://github.com/codedstructure/pylibftdi
This module contains some basic tests for the higher-level
functionality without requiring an actual hardware device
Expand Down
2 changes: 1 addition & 1 deletion tests/test_device.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Copyright (c) 2010-2014 Ben Bass <benbass@codedstructure.net>
See LICENSE file for details and (absence of) warranty
pylibftdi: http://bitbucket.org/codedstructure/pylibftdi
pylibftdi: https://github.com/codedstructure/pylibftdi
This module contains some basic tests for the higher-level
functionality without requiring an actual hardware device
Expand Down
2 changes: 1 addition & 1 deletion tests/test_serial.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Copyright (c) 2010-2014 Ben Bass <benbass@codedstructure.net>
See LICENSE file for details and (absence of) warranty
pylibftdi: http://bitbucket.org/codedstructure/pylibftdi
pylibftdi: https://github.com/codedstructure/pylibftdi
This module contains some basic tests for the higher-level
functionality without requiring an actual hardware device
Expand Down

0 comments on commit 4662ebe

Please sign in to comment.