Changeset - 35ef57faacc4
[Not reviewed]
0.5.0
0 2 0
Branko Majic (branko) - 3 years ago 2020-11-05 00:51:14
branko@majic.rs
Noticket: Preparing release 0.5.0.
2 files changed with 3 insertions and 3 deletions:
0 comments (0 inline, 0 general)
docs/releasenotes.rst
Show inline comments
 
Release notes
 
=============
 

	
 

	
 
NEXT RELEASE
 
------------
 
0.5.0
 
-----
 

	
 
This release adds support for Python 3.9, and updates the package
 
requirements.
 

	
 
Resolved issues:
 

	
 
- **Tasks**:
 

	
 
  - `GC-39: Support for Python 3.9 <https://projects.majic.rs/gimmecert/issues/GC-39>`_
 
  - `GC-40: Update all requirements <https://projects.majic.rs/gimmecert/issues/GC-40>`_
 

	
 

	
setup.py
Show inline comments
 
@@ -60,25 +60,25 @@ development_requirements = doc_requirements + test_requirements + test_lint_requ
 
extras_requirements = {
 
    'devel': development_requirements,
 
    'doc': doc_requirements,
 
    'test': test_requirements,
 
    'testlint': test_lint_requirements,
 
}
 

	
 
# allow setup.py to be run from any path
 
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
 

	
 
setup(
 
    name='gimmecert',
 
    version='0.0.0',
 
    version='0.5.0',
 
    packages=find_packages(exclude=['tests', 'functional_tests']),
 
    include_package_data=True,
 
    license='GPLv3+',
 
    description='A simple tool for quickly issuing server and client certificates.',
 
    long_description=README,
 
    url='http://projects.majic.rs/gimmecert',
 
    author='Branko Majic',
 
    author_email='branko@majic.rs',
 
    python_requires=python_requirements,
 
    install_requires=install_requirements,
 
    setup_requires=setup_requirements,
 
    tests_require=test_requirements,
0 comments (0 inline, 0 general)