Changeset - e982e9c89e10
[Not reviewed]
0 5 0
Branko Majic (branko) - 4 years ago 2020-05-13 17:11:08
branko@majic.rs
GC-33: Added support for Python 3.8:

- Updated release notes.
- Updated documentation.
- Updated Python versions used for tests.
- Updated supported Python versions in package configuration file.
5 files changed with 13 insertions and 4 deletions:
0 comments (0 inline, 0 general)
README.rst
Show inline comments
 
@@ -29,12 +29,13 @@ The tool is useful for issuing certificates in:
 
At time of this writing, Gimmecert is compatible with the following
 
Python versions:
 

	
 
- *Python 3.5*
 
- *Python 3.6*
 
- *Python 3.7*
 
- *Python 3.8*
 

	
 

	
 
Why was this tool created?
 
--------------------------
 

	
 
The tool was created to remove the pain of setting-up a CA hierarchy,
docs/releasenotes.rst
Show inline comments
 
@@ -2,26 +2,32 @@ Release notes
 
=============
 

	
 

	
 
NEXT RELEASE
 
------------
 

	
 
This release adds support for Python 3.8, drops support for Python
 
3.4, and updates the package requirements.
 

	
 
.. 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>`_
 
  - `GC-32: Support for Python 3.8 <https://projects.majic.rs/gimmecert/issues/GC-32>`_
 
  - `GC-33: Update all requirements <https://projects.majic.rs/gimmecert/issues/GC-33>`_
 
  - `GC-35: Drop support for Python 3.4 <https://projects.majic.rs/gimmecert/issues/GC-35>`_
 

	
 

	
 

	
 
0.2.0
 
-----
 

	
 
This release is mostly oriented towards smaller bug-fixes, updates of
 
package dependencies, and improving the ease of testing during
provision.sh
Show inline comments
 
@@ -24,13 +24,13 @@ apt-get install -qq -y git virtualenv
 
apt-get install -qq -y make build-essential libssl1.0-dev zlib1g-dev libbz2-dev libreadline-dev libsqlite3-dev wget curl llvm libncurses5-dev xz-utils tk-dev libxml2-dev libffi-dev
 

	
 
# Import public keys for validating Python releases.
 
sudo -i -u vagrant gpg -q --import /vagrant/provision/python_releases_signing_keys.pub
 

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

	
 
echo "Setting-up work directory."
 
sudo -i -u vagrant mkdir -p "$work_directory"
 

	
 
for version in "${python_versions[@]}"; do
setup.py
Show inline comments
 
@@ -21,13 +21,13 @@
 

	
 
import os
 
from setuptools import setup, find_packages
 

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

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

	
 
install_requirements = [
 
    'cryptography>=2.9,<2.10',
 
    'python-dateutil>=2.8,<2.9',
 
]
 

	
 
@@ -93,12 +93,13 @@ setup(
 
        'Intended Audience :: System Administrators',
 
        'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
 
        'Operating System :: OS Independent',
 
        'Programming Language :: Python :: 3.5',
 
        'Programming Language :: Python :: 3.6',
 
        'Programming Language :: Python :: 3.7',
 
        'Programming Language :: Python :: 3.8',
 
        'Topic :: Internet :: WWW/HTTP',
 
        'Topic :: Internet :: WWW/HTTP :: Site Management',
 
        'Topic :: Security',
 
        'Topic :: Software Development :: Testing',
 
        'Topic :: Utilities',
 
    ],
tox.ini
Show inline comments
 
[tox]
 
envlist = {py35,py36,py37},lint,doc
 
envlist = {py35,py36,py37,py38},lint,doc
 

	
 
[testenv]
 
whitelist_externals =
 
  make
 

	
 
basepython =
 
  doc: python3
 
  lint: python3
 
  py35: python3.5
 
  py36: python3.6
 
  py37: python3.7
 
  py38: python3.8
 

	
 
deps =
 
  .[test]
 

	
 
commands =
 
  # Must specify cov-report explicitly, otherwise coverage starts
0 comments (0 inline, 0 general)