From 55111e65909f5ed3f449896bc194349024668431 Mon Sep 17 00:00:00 2001 From: Frederic Blum Date: Tue, 21 Jan 2025 12:21:40 +0100 Subject: [PATCH] remove python3.8 support --- README.md | 2 +- examples/README.md | 0 pyproject.toml | 6 +++--- 3 files changed, 4 insertions(+), 4 deletions(-) delete mode 100644 examples/README.md diff --git a/README.md b/README.md index 925e466..4d28cd3 100644 --- a/README.md +++ b/README.md @@ -54,7 +54,7 @@ This will not only add support to all functionalities provided by LingPy (improv ## Getting Started on Windows -In order to get the EDICTOR application working on Windows, we have successfully carried out the following steps. First, you should download [Python](https://python.org) (we used Python 3.11.9, but you can use versions starting from 3.8). We also downloaded [GIT](https://www.git-scm.com/) for Windows (Version 2.45.2.windows.1). Having installed both programs successfully, you must also install the [Windows Powershell](https://learn.microsoft.com/en-us/powershell/?view=powershell-7.4) which offers commandline facilities. This program can then be opened as any other application (but you must open the application as administrator, you find information on doing this in German [here](https://www.heise.de/tipps-tricks/Windows-Powershell-Skript-ausfuehren-4672163.html)). +In order to get the EDICTOR application working on Windows, we have successfully carried out the following steps. First, you should download [Python](https://python.org) (we used Python 3.11.9, but you can use versions starting from 3.9). We also downloaded [GIT](https://www.git-scm.com/) for Windows (Version 2.45.2.windows.1). Having installed both programs successfully, you must also install the [Windows Powershell](https://learn.microsoft.com/en-us/powershell/?view=powershell-7.4) which offers commandline facilities. This program can then be opened as any other application (but you must open the application as administrator, you find information on doing this in German [here](https://www.heise.de/tipps-tricks/Windows-Powershell-Skript-ausfuehren-4672163.html)). Having opened the Powersheel terminal window, you will reside in the path `C:\windows\system32`. From here, you should got to your user path with the `cd` command. In the following example, the username is `edictor3`. diff --git a/examples/README.md b/examples/README.md deleted file mode 100644 index e69de29..0000000 diff --git a/pyproject.toml b/pyproject.toml index fde15a4..77ce5d0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,8 +7,8 @@ name = "edictor" version = "3.2.dev0" description = "Web-Based Tool for Computer-Assisted Language Comparison" keywords = [ "linguistics", "sequence alignment", "computational linguistics", "dialectology", "cognate detection",] -classifiers = [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "Intended Audience :: Science/Research", "Natural Language :: English", "Operating System :: OS Independent", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", "License :: OSI Approved :: GNU General Public License v3 (GPLv3)"] -requires-python = ">=3.8" +classifiers = [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "Intended Audience :: Science/Research", "Natural Language :: English", "Operating System :: OS Independent", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", "License :: OSI Approved :: GNU General Public License v3 (GPLv3)"] +requires-python = ">=3.9" dependencies = [] authors = [ {name = "Johann-Mattis List", email = "mattis.list@uni-passau.de"}, @@ -76,7 +76,7 @@ show_missing = true skip_covered = true [tool.tox.tox] -envlist = "py38, py39, py310, py311, py312" +envlist = "py39, py310, py311, py312" isolated_build = "true" skip_missing_interpreter = "true"