Skip to content

Commit 1e0ff09

Browse files
authored
Merge pull request #1187 from arnaudbore/fixes_before_release
Ready for scilpy 2.1.0
2 parents e1bd579 + c3ac134 commit 1e0ff09

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

.github/workflows/publish_to_testpypi.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,5 @@ jobs:
6868
- name: Publish package distributions to PyPI
6969
uses: pypa/gh-action-pypi-publish@release/v1
7070
with:
71-
password: ${{ secrets.TESTPYPI_PASSWORD }}
72-
repository-url: https://test.pypi.org/legacy/
71+
password: ${{ secrets.PYPI_PASSWORD }}
7372
packages-dir: ${{ steps.workspace.outputs.path }}/sdist/

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@ pip install scilpy
2525

2626
## Install scilpy as a developer
2727

28-
The library is now built for Python 3.10 so be sure to create a virtual environnement for Python 3.10. If this version is not installed on your computer:
28+
The library is now built for Python 3.9/3.10 and 3.11. Please, be sure to create a virtual environnement.
29+
If none of these versions are installed on your computer, we suggest you to install python3.10:
2930
```
3031
sudo add-apt-repository ppa:deadsnakes/ppa
3132
sudo apt-get install python3.10 python3.10-dev python3.10-venv python3.10-minimal python3.10-tk
3233
```
33-
Python3.11 can work, Python3.12 is not supported.
3434

3535
Make sure your pip is up-to-date before trying to install:
3636
```

scilpy/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
_version_major = 2
99
_version_minor = 1
1010
_version_micro = 0
11-
_version_extra = 'rc-2'
11+
_version_extra = 'rc1'
1212

1313
# Construct full version string from these.
1414
_ver = [_version_major, _version_minor, _version_micro]

0 commit comments

Comments
 (0)