Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version: 2
jobs:
build:
docker:
- image: cimg/python:3.9.2
- image: cimg/python:3.11

steps:
- checkout # checkout source code to working directory
Expand Down
2 changes: 1 addition & 1 deletion cryptorandom/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@
See https://statlab.github.io/cryptorandom/ for complete documentation.
"""

__version__ = "0.4rc1.dev0"
__version__ = "0.4"

from cryptorandom import *
39 changes: 39 additions & 0 deletions doc/release/release_0.4.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
Announcement: cryptorandom 0.4.0
================================

We're happy to announce the release of cryptorandom v0.4.0!

cryptorandom is a cryptographic quality PRNG and sampling module for Python.

For more information, examples, and documentation, please visit our website:

http://statlab.github.io/cryptorandom/


New Features
------------



Improvements
------------
sample.random_allocation() returns the samples in the size-order requested. The previous version returned them from smallest to largest.




API Changes
-----------




Deprecations
------------


Contributors to this release
----------------------------
(Listed alphabetically by last name)
Stark, Philip B.

2 changes: 1 addition & 1 deletion doc/release/release_dev.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Announcement: cryptorandom 0.4.0
================================

We're happy to announce the release of cryptorandom v0.4.0!
We're happy to announce the release of cryptorandom v0.5.0!

cryptorandom is a cryptographic quality PRNG and sampling module for Python.

Expand Down
12 changes: 6 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@



if sys.version_info[:2] < (3, 7):
if sys.version_info[:2] < (3, 11):
error = (
"cryptorandom 0.3+ requires Python 3.7 or later (%d.%d detected). \n"
"cryptorandom 0.4+ requires Python 3.11 or later (%d.%d detected). \n"
% sys.version_info[:2]
)
sys.stderr.write(error + "\n")
Expand Down Expand Up @@ -53,15 +53,15 @@ def parse_requirements_file(filename):
download_url=DOWNLOAD_URL,

classifiers=[
'Development Status :: 3 - Alpha',
'Development Status :: 4 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Topic :: Scientific/Engineering',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
Expand Down