Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ "3.7", "3.8", "3.9", "3.10", "3.11", "3.12" ]
python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12" ]
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7

- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
uses: actions/setup-python@v7
with:
python-version: ${{ matrix.python-version }}

Expand All @@ -25,4 +25,6 @@ jobs:
run: tox -- -v --cov-report=xml

- name: Codecov upload
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v7
with:
token: ${{ secrets.CODECOV_TOKEN }}
8 changes: 5 additions & 3 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
image: Visual Studio 2022
environment:
matrix:
# For Python versions available on Appveyor, see
# https://www.appveyor.com/docs/windows-images-software/#python
- PYTHON: "C:\\Python314"
- PYTHON: "C:\\Python313-x64"
- PYTHON: "C:\\Python38"
- PYTHON: "C:\\Python37-x64"
- PYTHON: "C:\\Python36"

install:
- cinst nsis
- choco install nsis
- dir %PYTHON%
- "%PYTHON%\\python.exe -m pip install -U tox virtualenv codecov --no-warn-script-location"

build: off
Expand Down
2 changes: 1 addition & 1 deletion nsist/_system_path.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def sz_expand(value, value_type):
return value

def remove_from_system_path(pathname, allusers=True, path_env_var='PATH'):
"""Removes all entries from the path which match the value in 'pathname'
r"""Removes all entries from the path which match the value in 'pathname'

You must call broadcast_environment_settings_change() after you are finished
manipulating the environment with this and other functions.
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ authors = [
{name = "Thomas Kluyver", email = "thomas@kluyver.me.uk"},
]
readme = "README.rst"
requires-python = ">=3.6"
requires-python = ">=3.8"
dependencies = [
"requests",
"requests_download",
Expand Down