Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
refscrub
Manage
Activity
Members
Labels
Plan
Issues
1
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
Software Public
PASSOFT
refscrub
Compare revisions
master to 5-fix-build-issue-for-the-new-conda-build-version
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
software_public/passoft/refscrub
Select target project
No results found
5-fix-build-issue-for-the-new-conda-build-version
Select Git revision
Branches
5-fix-build-issue-for-the-new-conda-build-version
conda_package
master
Tags
Release
Swap
Target
software_public/passoft/refscrub
Select target project
software_public/passoft/refscrub
1 result
master
Select Git revision
Branches
5-fix-build-issue-for-the-new-conda-build-version
conda_package
master
Tags
Release
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
View open merge request
Commits on Source (2)
Fix the build issue
· d5c44ff7
Omid Hosseini
authored
4 months ago
d5c44ff7
Update version to 2024
· 3ba83844
Omid Hosseini
authored
3 months ago
3ba83844
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
.gitignore
+3
-0
3 additions, 0 deletions
.gitignore
conda.recipe/meta.yaml
+2
-1
2 additions, 1 deletion
conda.recipe/meta.yaml
refscrub/__init__.py
+1
-1
1 addition, 1 deletion
refscrub/__init__.py
refscrub/refscrub.py
+1
-1
1 addition, 1 deletion
refscrub/refscrub.py
setup.py
+1
-1
1 addition, 1 deletion
setup.py
with
8 additions
and
4 deletions
.gitignore
Edit
View file @
3ba83844
...
...
@@ -105,3 +105,6 @@ ENV/
.idea/
.DS_Store
# vscode
.vscode/
This diff is collapsed.
Click to expand it.
conda.recipe/meta.yaml
Edit
View file @
3ba83844
package
:
name
:
refscrub
version
:
202
3
.2.0.
0
version
:
202
4
.2.0.
1
source
:
path
:
../
...
...
@@ -13,6 +13,7 @@ requirements:
build
:
-
python >=3.9
-
pip
-
setuptools
run
:
-
python >=3.9
...
...
This diff is collapsed.
Click to expand it.
refscrub/__init__.py
Edit
View file @
3ba83844
...
...
@@ -4,4 +4,4 @@
__author__
=
"""
IRIS PASSCAL
"""
__email__
=
'
software-support@passcal.nmt.edu
'
__version__
=
'
202
3
.2.0.
0
'
__version__
=
'
202
4
.2.0.
1
'
This diff is collapsed.
Click to expand it.
refscrub/refscrub.py
Edit
View file @
3ba83844
...
...
@@ -28,7 +28,7 @@ import struct
import
sys
from
os.path
import
basename
,
getsize
,
isfile
PROG_VERSION
=
'
202
3
.2.0.
0
'
PROG_VERSION
=
'
202
4
.2.0.
1
'
VERBOSE
=
False
EXTRACT
=
False
SUMMARY_FILE
=
'
scrubsum.txt
'
...
...
This diff is collapsed.
Click to expand it.
setup.py
Edit
View file @
3ba83844
...
...
@@ -43,6 +43,6 @@ setup(
name
=
'
refscrub
'
,
packages
=
find_packages
(
include
=
[
'
refscrub
'
]),
url
=
'
https://git.passcal.nmt.edu/software_public/passoft/refscrub
'
,
version
=
'
202
3
.2.0.
0
'
,
version
=
'
202
4
.2.0.
1
'
,
zip_safe
=
False
,
)
This diff is collapsed.
Click to expand it.