Changeset - 37395e095210
[Not reviewed]
0 7 0
Branko Majic (branko) - 4 years ago 2020-05-13 15:11:34
branko@majic.rs
GC-35: Drop support for Python 3.4:

- Updated documentation, removing Python 3.4 as supported version.
- Updated documentation to include support for Python 3.7 (this was
already supported, but documentation did not list it in a couple of
places).
- Updated Tox configuration with list of supported Python
versions.
- Build Python 3.5.x for full test against all Python versions in
order to make it independent of underlying distribution Python
version.
- Update package requirements.
- Updated release notes.
7 files changed with 20 insertions and 8 deletions:
0 comments (0 inline, 0 general)
README.rst
Show inline comments
 
@@ -29,9 +29,9 @@ The tool is useful for issuing certificates in:
 
At time of this writing, Gimmecert is compatible with the following
 
Python versions:
 

	
 
- *Python 3.4*
 
- *Python 3.5*
 
- *Python 3.6*
 
- *Python 3.7*
 

	
 

	
 
Why was this tool created?
docs/development.rst
Show inline comments
 
@@ -28,7 +28,7 @@ tailored for a GNU/Linux system.
 
Before proceeding, ensure you have the following system-wide packages
 
installed:
 

	
 
- `Python, version 3.4+ <https://www.python.org/>`_.
 
- `Python, version 3.5+ <https://www.python.org/>`_.
 
- `virtualenvwrapper <https://virtualenvwrapper.readthedocs.io/>`_.
 

	
 
With those in place, do the following:
docs/installation.rst
Show inline comments
 
@@ -14,7 +14,7 @@ Installation
 
Gimmecert can be easily installed using ``pip``. Before installing it,
 
make sure the following requirements have been met:
 

	
 
- You are running *Python 3.4+*.
 
- You are running *Python 3.5+*.
 

	
 
In order to install latest stable release of *Gimmecert* using *pip*, run the
 
following command::
docs/releasenotes.rst
Show inline comments
 
@@ -5,6 +5,20 @@ Release notes
 
NEXT RELEASE
 
------------
 

	
 
.. warning::
 

	
 
   This release contains the following breaking changes:
 

	
 
   - Support for Python 3.4 has been dropped. Make sure that you are
 
     using one of the supported Python versions prior to upgrading
 
     *Gimmecert*.
 

	
 
Resolved issues:
 

	
 
- **Tasks**:
 

	
 
  - `GC-35: Drop support for Python 3.4 <https://projects.majic.rs/gimmecert/issues/GC-35>`_
 

	
 

	
 
0.2.0
 
-----
provision.sh
Show inline comments
 
@@ -27,7 +27,7 @@ apt-get install -qq -y make build-essential libssl1.0-dev zlib1g-dev libbz2-dev
 
sudo -i -u vagrant gpg -q --import /vagrant/provision/python_releases_signing_keys.pub
 

	
 
# Download and build additional Python versions.
 
python_versions=("3.4.9" "3.6.7" "3.7.1")
 
python_versions=("3.5.9" "3.6.10" "3.7.7")
 
work_directory="/home/vagrant/src"
 

	
 
echo "Setting-up work directory."
setup.py
Show inline comments
 
@@ -24,7 +24,7 @@ from setuptools import setup, find_packages
 

	
 
README = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read()
 

	
 
python_requirements = ">=3.4,<3.8"
 
python_requirements = ">=3.5,<3.8"
 

	
 
install_requirements = [
 
    'cryptography>=2.4,<2.5',
 
@@ -93,7 +93,6 @@ setup(
 
        'Intended Audience :: System Administrators',
 
        'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
 
        'Operating System :: OS Independent',
 
        'Programming Language :: Python :: 3.4',
 
        'Programming Language :: Python :: 3.5',
 
        'Programming Language :: Python :: 3.6',
 
        'Programming Language :: Python :: 3.7',
tox.ini
Show inline comments
 
[tox]
 
envlist = {py34,py35,py36,py37},lint,doc
 
envlist = {py35,py36,py37},lint,doc
 

	
 
[testenv]
 
whitelist_externals =
 
@@ -8,7 +8,6 @@ whitelist_externals =
 
basepython =
 
  doc: python3
 
  lint: python3
 
  py34: python3.4
 
  py35: python3.5
 
  py36: python3.6
 
  py37: python3.7
0 comments (0 inline, 0 general)