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
 
@@ -32,6 +32,7 @@ Python versions:
 
- *Python 3.5*
 
- *Python 3.6*
 
- *Python 3.7*
 
- *Python 3.8*
 

	
 

	
 
Why was this tool created?
docs/releasenotes.rst
Show inline comments
 
@@ -5,6 +5,9 @@ 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:
 
@@ -17,8 +20,11 @@ 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
 
-----
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.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."
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.5,<3.8"
 
python_requirements = ">=3.5,<3.9"
 

	
 
install_requirements = [
 
    'cryptography>=2.9,<2.10',
 
@@ -96,6 +96,7 @@ setup(
 
        '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',
tox.ini
Show inline comments
 
[tox]
 
envlist = {py35,py36,py37},lint,doc
 
envlist = {py35,py36,py37,py38},lint,doc
 

	
 
[testenv]
 
whitelist_externals =
 
@@ -11,6 +11,7 @@ basepython =
 
  py35: python3.5
 
  py36: python3.6
 
  py37: python3.7
 
  py38: python3.8
 

	
 
deps =
 
  .[test]
0 comments (0 inline, 0 general)