Changeset - 0bf4c5ab6570
[Not reviewed]
0 2 0
Branko Majic (branko) - 3 months ago 2025-09-07 00:17:27
branko@majic.rs
GC-48: Updated package and documentation requirements.
2 files changed with 4 insertions and 3 deletions:
0 comments (0 inline, 0 general)
docs/releasenotes.rst
Show inline comments
 
@@ -25,12 +25,13 @@ NEXT RELEASE
 

	
 
Resolved issues:
 

	
 
- **Tasks**:
 

	
 
  - `GC-50: Drop support for Python 3.8 <https://projects.majic.rs/gimmecert/issues/GC-50>`_
 
  - `GC-48: Update all requirements <https://projects.majic.rs/gimmecert/issues/GC-48>`_
 

	
 

	
 
1.0.0
 
-----
 

	
 
This release adds support for Python 3.10, 3.11, and 3.12, while
setup.py
Show inline comments
 
@@ -24,18 +24,18 @@ from setuptools import setup, find_packages
 

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

	
 
python_requirements = ">=3.9,<3.13"
 

	
 
install_requirements = [
 
    'cryptography>=42.0,<42.1',
 
    'python-dateutil>=2.8,<2.9',
 
    'cryptography>=45.0,<45.1',
 
    'python-dateutil>=2.9,<2.10',
 
]
 

	
 
doc_requirements = [
 
    'sphinx>=7.1,<7.2',
 
    'sphinx>=8.2,<8.3',
 
]
 

	
 
test_lint_requirements = [
 
    'flake8>=7.3,<7.4',
 
]
 

	
0 comments (0 inline, 0 general)