Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
particle-filter-for-python
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Rob Moss
particle-filter-for-python
Commits
0285ae3d
Commit
0285ae3d
authored
3 years ago
by
Rob Moss
Browse files
Options
Downloads
Patches
Plain Diff
Replace setup.py with pyproject.toml
parent
8bb641b2
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Pipeline
#17384
passed
3 years ago
Stage: test
Changes
6
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
.gitlab-ci.yml
+1
-1
1 addition, 1 deletion
.gitlab-ci.yml
.readthedocs.yml
+1
-1
1 addition, 1 deletion
.readthedocs.yml
pyproject.toml
+8
-0
8 additions, 0 deletions
pyproject.toml
setup.cfg
+0
-2
0 additions, 2 deletions
setup.cfg
setup.py
+0
-7
0 additions, 7 deletions
setup.py
tox.ini
+1
-0
1 addition, 0 deletions
tox.ini
with
11 additions
and
11 deletions
.gitlab-ci.yml
+
1
−
1
View file @
0285ae3d
...
@@ -20,7 +20,7 @@ tox-36:
...
@@ -20,7 +20,7 @@ tox-36:
-
tox
-
tox
artifacts
:
artifacts
:
paths
:
paths
:
-
.tox/dist/pypfilt-*
.zip
-
.tox/dist/pypfilt-*
# Run all of the test activities in tox.ini using Python 3.7.
# Run all of the test activities in tox.ini using Python 3.7.
tox-37
:
tox-37
:
...
...
This diff is collapsed.
Click to expand it.
.readthedocs.yml
+
1
−
1
View file @
0285ae3d
...
@@ -8,7 +8,7 @@ python:
...
@@ -8,7 +8,7 @@ python:
install
:
install
:
-
requirements
:
requirements.txt
-
requirements
:
requirements.txt
-
requirements
:
requirements-rtd.txt
-
requirements
:
requirements-rtd.txt
-
method
:
setuptools
-
method
:
pip
path
:
.
path
:
.
sphinx
:
sphinx
:
...
...
This diff is collapsed.
Click to expand it.
pyproject.toml
0 → 100644
+
8
−
0
View file @
0285ae3d
# NOTE: setuptools 40.9.0 added support for projects without setup.py.
[build-system]
requires
=
[
"setuptools >= 40.9"
,
"wheel"
,
]
build-backend
=
"setuptools.build_meta"
This diff is collapsed.
Click to expand it.
setup.cfg
+
0
−
2
View file @
0285ae3d
...
@@ -33,8 +33,6 @@ install_requires =
...
@@ -33,8 +33,6 @@ install_requires =
numpy
>=
1.17
numpy
>=
1.17
scipy
>=
0.11
scipy
>=
0.11
toml
>=
0.10
toml
>=
0.10
setup_requires
=
setuptools
>=
38.3.0
[options.extras_require]
[options.extras_require]
plot
=
matplotlib >= 1.5
plot
=
matplotlib >= 1.5
...
...
This diff is collapsed.
Click to expand it.
setup.py
deleted
100755 → 0
+
0
−
7
View file @
8bb641b2
#!/usr/bin/env python3
from
setuptools
import
setup
if
__name__
==
"
__main__
"
:
setup
()
This diff is collapsed.
Click to expand it.
tox.ini
+
1
−
0
View file @
0285ae3d
...
@@ -14,6 +14,7 @@
...
@@ -14,6 +14,7 @@
#
#
[tox]
[tox]
envlist
=
test,docs
envlist
=
test,docs
isolated_build
=
True
[base]
[base]
pkg
=
pypfilt
pkg
=
pypfilt
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment