Bernie Hackett
cbc81ee793
PYTHON-1536 - PyMongo no longer supports PyPy3 < 3.5
2018-07-03 12:44:40 -07:00
Prayash Mohapatra
a537a711d1
Update README.rst - Support for MongoDB 4.0 ( #359 )
2018-07-03 09:45:13 -07:00
Bernie Hackett
749c1a2f0b
PYTHON-1467 - PyMongo no longer supports Python 2.6
2018-07-02 15:15:43 -07:00
Bernie Hackett
335cb97a34
PYTHON-1278, PYTHON-1553 - Support OP_COMPRESSED
2018-05-22 11:44:21 -07:00
Mateusz Piotrowski
d672c40524
Stylize GitHub correctly ( #351 )
...
Fix a link to PyMongo GitHub source
2018-04-06 13:30:32 -07:00
Bernie Hackett
3cd6f32e7c
PYTHON-1509 - Update auth docs for SCRAM-SHA-256
2018-03-30 19:17:35 -07:00
Bernie Hackett
2c932dfe77
PYTHON-1477 PYTHON-1478 PYTHON-1480 - Doc improvements
2018-02-22 17:14:28 -08:00
Bernie Hackett
86791d8e9b
Update docs and changelog
2017-11-14 16:39:12 -08:00
Bernie Hackett
732b0f15df
PYTHON-1378 - Implement DNS seedlist discovery
2017-10-19 13:53:02 -07:00
Shane Harvey
f0b18ccfc5
PYTHON-1364 Drop support for CPython 3.3.
2017-09-05 17:45:30 -07:00
A. Jesse Jiryu Davis
b49f1000c1
PYTHON-1299 - Remove MongoDB 2.4 notes from docs
2017-08-24 15:33:12 -04:00
Bernie Hackett
eb65239f1a
Minor README update
2017-08-16 10:23:27 -07:00
Bernie Hackett
747d6dcb4d
Minor README change
2016-09-19 11:18:32 -07:00
Bernie Hackett
9a76d827ad
Update supported MongoDB versions in README
2016-09-02 16:33:08 -07:00
Bernie Hackett
29196b6566
PYTHON-1129 - Support IP addresses in match_hostname
2016-08-25 16:28:19 -07:00
Bernie Hackett
7d81a01a81
Fix syntax highlighting in README
2016-07-07 11:00:06 -07:00
Bernie Hackett
057429cfca
PYTHON-1023 - Explicitly drop support for MongoDB 2.2
...
We haven't tested against anything older than MongoDB 2.2
in a long timei, but we've never been explicit about what
versions we actually support. As of this commit we are
no longer testing against MongoDB 2.2 either. MongoDB 2.2
reached EOL in February of 2014.
2016-06-15 10:49:00 -07:00
Bernie Hackett
53a7bea492
PYTHON-1022 - Drop support for Python 3.2
...
This change removes the u() helper from bson.py3compat
and all of its uses in the driver and tests. PyPy3 continues
to be supported since, even though it is based on python 3.2.5,
it has always supported the u string prefix.
The README and install docs are now explicit about PyPy(3) support.
2016-06-15 10:05:43 -07:00
Bernie Hackett
3025d68af0
PYTHON-1093 - Use extras_require to install optional dependencies
2016-05-26 16:47:23 -07:00
Felix Yan
13f86c598a
PYTHON-1009 Switch from "Monotime" to "monotonic"
2015-11-18 19:32:36 -08:00
Bernie Hackett
8b986a4f2c
PYTHON-967 - Call print as a function in README
2015-08-05 18:25:29 -07:00
Bernie Hackett
9e3662dddb
README fixes.
2015-04-20 16:04:06 -07:00
A. Jesse Jiryu Davis
7dbcc4b71a
PYTHON-726 - Test in gevent and eventlet.
2015-03-02 16:36:02 -05:00
Bernie Hackett
839893939e
PYTHON-821 - Deprecated legacy API.
...
This commit deprecates insert, update, save, and remove. Each
now raises DeprecationWarning at stacklevel 2. This change also
updates all tutorials and example documentation to use the new
CRUD API, tests the deprecations, and fixes up a few more tests
that were still using the legacy API.
2015-02-20 15:41:45 -08:00
Bernie Hackett
c3ea16b0ea
Update MongoDB version references from 2.8 to 3.0.
2015-01-24 09:42:24 -08:00
A. Jesse Jiryu Davis
22f7e29c24
Optional packages: backports.pbkdf2, pykerberos, monotime.
2014-11-21 21:09:07 -05:00
A. Jesse Jiryu Davis
c1c8e1c6ca
Typo in README.rst.
2014-11-10 21:36:49 -05:00
A. Jesse Jiryu Davis
b633496415
PYTHON-757 Warn against installing third-party "bson" package.
...
Do **not** install the "bson" package. PyMongo comes with its own bson package;
doing "pip install bson" installs a third-party package that is incompatible
with PyMongo.
(cherry picked from commit eb25125 )
2014-10-09 16:56:56 -04:00
Bernie Hackett
7e04bfea39
PYTHON-753 - Add "How To Ask For Help" in README.rst
2014-09-25 13:14:21 -07:00
A. Jesse Jiryu Davis
ccb79b1cda
PYTHON-726 Document how to run tests with Gevent.
2014-07-17 15:13:33 -04:00
Luke Lovett
327fdaa560
PYTHON-680 Remove all references to nose
2014-04-28 18:06:27 +00:00
Bernie Hackett
d2cde8719a
PYTHON-665 Drop support for Python 2.4, 2.5, and 3.1
...
If you need to continue to use any of these Python versions with MongoDB
the 2.x branch of PyMongo will continue to be minimally maintained for
some time.
2014-04-04 16:14:21 -07:00
A. Jesse Jiryu Davis
2fa1750b07
Update copyright notices and company name.
2014-01-31 09:36:46 -05:00
Bernie Hackett
64619ed865
Update README support information.
2013-11-05 13:57:22 -08:00
behackett
e0863c91e8
Switch back to setuptools from distribute.
...
Distibute is no longer developed or supported and
the merged setuptools project fixes a number of
Windows packaging bugs.
2013-08-27 13:31:21 -07:00
Artur Dryomov
845b165c83
Use syntax highlighting in the readme file.
2013-04-09 16:37:12 -07:00
A. Jesse Jiryu Davis
d2b23a535c
Update docs for Connection->MongoClient change PYTHON-452
2013-02-10 10:53:35 -05:00
Bernie Hackett
1d2118e66c
More Connection -> MongoClient in docs PYTHON-423
2012-11-16 18:07:37 -08:00
Bernie Hackett
b2e24c1581
We don't support python 2.3 at all.
2012-11-15 10:42:42 -08:00
behackett
8fb39f66cf
Minor MANIFEST and README changes.
2012-03-29 12:10:02 -07:00
Bernie Hackett
227c04a963
Fix README example.
2011-12-28 22:20:07 -08:00
behackett
8fd90457db
Make myself maintainer.
2011-03-18 09:41:48 -07:00
Mike Dirolf
53811e3b7f
minor: another note about where to report issues and ask questions
2010-09-29 09:59:23 -04:00
Mike Dirolf
381cd8cb80
docs for pymongo->bson move PYTHON-60
2010-09-14 16:34:46 -04:00
serbaut
b0aa2b3b17
bug in Examples section
2010-04-09 19:29:56 +08:00
Mike Dirolf
ebd0e530db
minor: remove references to examples dir
2010-02-04 17:11:52 -05:00
Mike Dirolf
80537456c3
BUMP 1.4 - see changelog for details
2010-01-27 12:07:42 -05:00
Mike Dirolf
4a8f1db2f9
update README - no longer supporting Python 2.3
2010-01-08 15:14:00 -05:00
Mike Dirolf
54be5db873
removing all support for mongo-qa tests
...
allows us to remove SON.from_xml
- not deprecating this as it was used internally only AFAIK
therefore eliminates driver dependency on elementtree
2010-01-05 14:20:12 -05:00
Mike Dirolf
55930d8f95
minor: fix link
2009-11-14 07:50:07 -08:00