Skip to content

Commit eb7b4f5

Browse files
committed
bump to 2.3.0
1 parent 518c223 commit eb7b4f5

File tree

3 files changed

+11
-20
lines changed

3 files changed

+11
-20
lines changed

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ Features
7474
Installation
7575
============
7676

77-
Currently, ``pyfastx`` supports Python 3.6, 3.7, 3.8, 3.9, 3.10, 3.11. Make sure you have installed both `pip <https://pip.pypa.io/en/stable/installing/>`_ and Python before starting.
77+
Currently, ``pyfastx`` supports Python 3.8, 3.9, 3.10, 3.11, 3.12, 3.13, 3.14. Make sure you have installed both `pip <https://pip.pypa.io/en/stable/installing/>`_ and Python before starting.
7878

7979
You can install ``pyfastx`` via the Python Package Index (PyPI)
8080

docs/installation.rst

Lines changed: 9 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ You can install pyfastx via the Python Package Index (PyPI) (**recommended**) or
55

66
Make sure you have installed both `pip <https://pip.pypa.io/en/stable/installing/>`_ and Python before starting.
77

8-
Currently, ``pyfastx`` supports Python 3.6, 3.7, 3.8, 3.9, 3.10, 3.11 and can work on Windows, Linux, MacOS.
8+
Currently, ``pyfastx`` supports Python 3.8, 3.9, 3.10, 3.11, 3.12, 3.13, 3.14 and can work on Windows, Linux, MacOS.
99

1010
Install from PyPI
1111
-----------------
@@ -23,34 +23,25 @@ Update pyfastx using ``pip``
2323
Install from source
2424
-------------------
2525

26-
``pyfastx`` depends on `zlib <https://zlib.net/>`_ and `sqlite3 <https://www.sqlite.org/index.html>`_. If you want to compile and install pyfastx from source code. First, you should install zlib and sqlite3.
26+
``pyfastx`` depends on `zlib <https://zlib.net/>`_, `sqlite3 <https://www.sqlite.org/index.html>`_ and `indexed_gzip <https://github.com/pauldmccarthy/indexed_gzip>`_. In latest version, pyfastx will automatically download these libraries to build.
2727

28-
On Centos
2928

30-
::
31-
32-
yum install zlib-devel
33-
yum install sqlite-devel
34-
35-
On Ubuntu
29+
First, clone pyfastx using ``git`` or download latest `release <https://github.com/lmdu/pyfastx/releases>`_:
3630

3731
::
3832

39-
apt install zlib1g-dev
40-
apt install libsqlite3-dev
41-
42-
On Windows and MacOS, it will automatically download zlib and sqlite3 library to build.
43-
33+
git clone https://github.com/lmdu/pyfastx.git
4434

45-
Second, clone pyfastx using ``git`` or download latest `release <https://github.com/lmdu/pyfastx/releases>`_:
35+
Then, ``cd`` to the pyfastx folder and run install command:
4636

4737
::
4838

49-
git clone https://github.com/lmdu/pyfastx.git
39+
cd pyfastx
40+
python setup.py install
5041

51-
Then, ``cd`` to the pyfastx folder and run install command:
42+
Or just build:
5243

5344
::
5445

5546
cd pyfastx
56-
python setup.py install
47+
python setup.py build_ext -i

src/version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
#define PYFASTX_VERSION "2.3.0"
2-
#define ZRAN_VERSION "1.9.4"
2+
#define ZRAN_VERSION "1.10.3"

0 commit comments

Comments
 (0)