Skip to content

Commit e97efaf

Browse files
authored
Merge pull request #12 from karellen/release_0.0.2
Release 0.0.2
2 parents 1002aa5 + 7148d81 commit e97efaf

File tree

3 files changed

+14
-7
lines changed

3 files changed

+14
-7
lines changed

.github/workflows/build.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,15 @@ jobs:
1616
os:
1717
- ubuntu-latest
1818
# - windows-latest
19-
# - macosx-latest
19+
# - macos-latest
2020
python-version:
2121
- '3.10'
2222
- '3.9'
2323
- '3.8'
2424
- '3.7'
2525
- '3.6'
2626
- 'pypy-3.7'
27+
- 'pypy-3.8'
2728
env:
2829
DEPLOY_PYTHONS: "3.9"
2930
DEPLOY_OSES: "Linux"

README.rst

+9-4
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,15 @@
3535
.. warning::
3636
HIC SUNT DRACONES!!!
3737

38-
This code is extremely experimental (pre-pre-alpha). There is very little testing, lots of things are in flux,
38+
This code is experimental (beta). There is some testing, but a lots of things are in flux, and
3939
some platforms don't work at all.
4040

41-
DO NOT use in production. This code may crash your server, bankrupt your company, burn your house down and be mean
42-
to your puppy. You've been warned.
41+
You MAY try to use this in production with the understanding that this is a beta-quality software.
42+
43+
That said, this code may crash your server, bankrupt your company, burn your house down and be mean
44+
to your puppy.
45+
46+
You've been warned.
4347

4448
Problem
4549
=======
@@ -114,7 +118,8 @@ Supported Platforms
114118
All claims of support may not be real at all. You're welcome to experiment. See warnings on top.
115119

116120
* Linux and Darwin.
117-
* CPython 2.7, 3.5, 3.6, 3.7, 3.8.
121+
* CPython 3.6, 3.7, 3.8, 3.9, 3.10
122+
* PyPy 3.7, 3.8
118123

119124
Known Issues
120125
============

build.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
use_plugin("copy_resources")
2626

2727
name = "geventmp"
28-
version = "0.0.2.dev"
28+
version = "0.0.2"
2929

3030
summary = "Multiprocessing Gevent Extension"
3131
authors = [Author("Karellen, Inc.", "supervisor@karellen.co")]
@@ -83,12 +83,13 @@ def set_properties(project):
8383
"Programming Language :: Python :: 3.9",
8484
"Programming Language :: Python :: 3.10",
8585
"Programming Language :: Python :: Implementation :: CPython",
86+
"Programming Language :: Python :: Implementation :: PyPy",
8687
"Operating System :: MacOS :: MacOS X",
8788
"Operating System :: POSIX",
8889
"Topic :: Internet",
8990
"Topic :: Software Development :: Libraries :: Python Modules",
9091
"Intended Audience :: Developers",
91-
"Development Status :: 3 - Alpha"
92+
"Development Status :: 4 - Beta"
9293
])
9394

9495

0 commit comments

Comments
 (0)