Skip to content

Commit

Permalink
as default, use Python-3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
jrief committed Sep 22, 2023
1 parent 446327d commit 766a712
Show file tree
Hide file tree
Showing 6 changed files with 35 additions and 64 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

strategy:
matrix:
python-version: ["3.10"]
python-version: ["3.11"]
node-version: ["16.x"]

steps:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]
python-version: ["3.9", "3.10", "3.11"]
django-version: ["4.0.*", "4.1.*", "4.2.*"]
node-version: ["16.x"]
include:
- build-client: "esbuild"
- build-client: "rollup"
python-version: "3.8"
django-version: "4.0.*"
python-version: "3.11"
django-version: "4.2.*"

steps:
- uses: actions/checkout@v2
Expand All @@ -44,7 +44,7 @@ jobs:
run: |
npm install --include=dev
python -m pip install --upgrade pip
python -m pip install --pre "Django==${{ matrix.django-version }}"
python -m pip install "Django==${{ matrix.django-version }}"
python -m pip install -r testapp/requirements.txt
playwright install
- name: Build Parser
Expand Down
18 changes: 18 additions & 0 deletions Pipfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"

[packages]
django = "*"
pytest-django = "*"
pytest-mock = "*"
pillow = "*"
playwright = "*"
beautifulsoup4 = "*"
coverage = "*"

[dev-packages]

[requires]
python_version = "3.11"
5 changes: 4 additions & 1 deletion fly.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# fly.toml file generated for django-formset2 on 2023-09-08T22:13:46+02:00
# fly.toml file generated for django-formset on 2023-09-08T22:13:46+02:00

app = "django-formset"
kill_signal = "SIGINT"
Expand All @@ -15,6 +15,9 @@ processes = []
[build]
dockerfile = ".deployment/Dockerfile"

[mounts]
source="workdir"
destination="/web/workdir"

[[services]]
internal_port = 8080
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,14 @@


CLASSIFIERS = [
'Development Status :: 4 - Beta',
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
Expand Down
63 changes: 7 additions & 56 deletions testapp/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,65 +1,16 @@
alabaster==0.7.13
apeye==1.4.0
apeye-core==1.1.4
asgiref==3.7.2
autodocsumm==0.2.11
Babel==2.12.1
beautifulsoup4==4.12.2
CacheControl==0.13.1
certifi==2023.5.7
charset-normalizer==3.1.0
coverage==7.2.7
cssutils==2.7.1
dict2css==0.3.0
Django==4.2.2
docutils==0.18.1
domdf-python-tools==3.6.1
exceptiongroup==1.1.1
filelock==3.12.2
furo==2023.5.20
coverage==7.3.1
greenlet==2.0.2
html5lib==1.1
idna==3.4
imagesize==1.4.1
iniconfig==2.0.0
Jinja2==3.1.2
lockfile==0.12.2
MarkupSafe==2.1.3
msgpack==1.0.5
natsort==8.3.1
packaging==23.1
Pillow==9.5.0
platformdirs==3.5.3
playwright==1.35.0
pluggy==1.0.0
Pillow==10.0.1
playwright==1.38.0
pluggy==1.3.0
pyee==9.0.4
Pygments==2.15.1
pytest==7.3.2
pytest-cov==4.1.0
pytest==7.4.2
pytest-django==4.5.2
pytest-mock==3.11.1
requests==2.31.0
ruamel.yaml==0.17.31
ruamel.yaml.clib==0.2.7
six==1.16.0
snowballstemmer==2.2.0
soupsieve==2.4.1
Sphinx==7.0.1
sphinx-autodoc-typehints==1.23.1
sphinx-basic-ng==1.0.0b1
sphinx-jinja2-compat==0.2.0
sphinx-prompt==1.7.0
sphinx-tabs==3.4.1
sphinx-toolbox==3.4.0
sphinxcontrib-applehelp==1.0.4
sphinxcontrib-devhelp==1.0.2
sphinxcontrib-htmlhelp==2.0.1
sphinxcontrib-jsmath==1.0.1
sphinxcontrib-qthelp==1.0.3
sphinxcontrib-serializinghtml==1.1.5
soupsieve==2.5
sqlparse==0.4.4
tabulate==0.9.0
tomli==2.0.1
typing_extensions==4.6.3
urllib3==2.0.3
webencodings==0.5.1
typing_extensions==4.8.0

0 comments on commit 766a712

Please sign in to comment.