Changeset - 5a918cd2502e
[Not reviewed]
Branko Majic (branko) - 21 months ago 2024-02-24 23:15:51
branko@majic.rs
Noticket: Switching to development version.
2 files changed with 5 insertions and 1 deletions:
0 comments (0 inline, 0 general)
docs/releasenotes.rst
Show inline comments
 
@@ -3,24 +3,28 @@
 
   This file is part of Gimmecert documentation.
 

	
 
   This work is licensed under the Creative Commons Attribution-ShareAlike 3.0
 
   Unported License. To view a copy of this license, visit
 
   http://creativecommons.org/licenses/by-sa/3.0/ or send a letter to Creative
 
   Commons, 444 Castro Street, Suite 900, Mountain View, California, 94041, USA.
 

	
 

	
 
Release notes
 
=============
 

	
 

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

	
 

	
 
1.0.0
 
-----
 

	
 
This release adds support for Python 3.10, 3.11, and 3.12, while
 
dropping support for Python 3.5, 3.6, and 3.7. Package dependencies
 
have been updated as well.
 

	
 
.. warning::
 

	
 
   This release contains the following breaking changes:
 

	
 
   - Support for Python 3.5, 3.6, and 3.7 has been dropped. Make sure
setup.py
Show inline comments
 
@@ -56,25 +56,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='1.0.0',
 
    version='0.0.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,
 
    tests_require=test_requirements,
 
    extras_require=extras_requirements,
0 comments (0 inline, 0 general)