Skip to content

Commit

Permalink
Merge pull request #102 from nrccua/DS-387-add-support-for-python3-11
Browse files Browse the repository at this point in the history
Add support for python3.11
  • Loading branch information
nrccua-timr authored Mar 22, 2023
2 parents 25d015e + 2536160 commit 37120c0
Show file tree
Hide file tree
Showing 8 changed files with 32 additions and 1,230 deletions.
11 changes: 11 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@ History
=======


v0.18.0 (2023-03-22)

* Add support for python3.11.
* Make sure to pip install cython before installing the requirements file when using python3.11.
* Update ddtrace==1.9.4.
* Update dominodatalab==1.2.3.
* Update pandas==1.5.3.
* Update python-json-logger==2.0.7.
* Update wheel==0.40.0.


v0.17.36 (2023-03-13)

* Raise error instead of printing in file_ingestion function xlsx_to_tsv.
Expand Down
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ clean:

install:
. env/bin/activate; \
pip install cython==0.29.33; \
pip install -r aioradio/requirements.txt

setup:
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -116,20 +116,21 @@ asyncio.get_event_loop().run_until_complete(main())

## INSTALLING FOR DIRECT DEVELOPMENT OF AIORADIO

Install [python 3.10.X](https://www.python.org/downloads/)
Install [python 3.11.X](https://www.python.org/downloads/)

Make sure you've installed [ODBC drivers](https://docs.microsoft.com/en-us/sql/connect/python/pyodbc/step-1-configure-development-environment-for-pyodbc-python-development), required for using the python package pyodbc.

Clone aioradio locally and navigate to the root directory

Install and activate python VirtualEnv
```bash
python3.10 -m venv env
python3.11 -m venv env
source env/bin/activate
```

Install python modules included in requirements.txt
```bash
pip install cython
pip install -r aioradio/requirements.txt
```

Expand Down
Loading

0 comments on commit 37120c0

Please sign in to comment.